diff --git a/.buildinfo b/.buildinfo index 88b87bee76..40477a718c 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: b5f2ce9acaa5f47f79bb65a7af64d2e7 +config: 4768ebd3e5acc4f1ced61493bc610407 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_sources/library/contextlib.rst.txt b/_sources/library/contextlib.rst.txt index bad9da52d6..27cf99446e 100644 --- a/_sources/library/contextlib.rst.txt +++ b/_sources/library/contextlib.rst.txt @@ -314,7 +314,9 @@ Functions and classes provided: If the code within the :keyword:`!with` block raises a :exc:`BaseExceptionGroup`, suppressed exceptions are removed from the - group. If any exceptions in the group are not suppressed, a group containing them is re-raised. + group. Any exceptions of the group which are not suppressed are re-raised in + a new group which is created using the original group's :meth:`~BaseExceptionGroup.derive` + method. .. versionadded:: 3.4 diff --git a/_sources/library/email.header.rst.txt b/_sources/library/email.header.rst.txt index 6e230d5faf..219fad0d2f 100644 --- a/_sources/library/email.header.rst.txt +++ b/_sources/library/email.header.rst.txt @@ -77,7 +77,7 @@ Here is the :class:`Header` class description: The maximum line length can be specified explicitly via *maxlinelen*. For splitting the first line to a shorter value (to account for the field header which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the - field in *header_name*. The default *maxlinelen* is 76, and the default value + field in *header_name*. The default *maxlinelen* is 78, and the default value for *header_name* is ``None``, meaning it is not taken into account for the first line of a long, split header. diff --git a/_sources/library/exceptions.rst.txt b/_sources/library/exceptions.rst.txt index 60600b2436..de46518e67 100644 --- a/_sources/library/exceptions.rst.txt +++ b/_sources/library/exceptions.rst.txt @@ -967,7 +967,8 @@ their subgroups based on the types of the contained exceptions. Returns an exception group with the same :attr:`message`, but which wraps the exceptions in ``excs``. - This method is used by :meth:`subgroup` and :meth:`split`. A + This method is used by :meth:`subgroup` and :meth:`split`, which + are used in various contexts to break up an exception group. A subclass needs to override it in order to make :meth:`subgroup` and :meth:`split` return instances of the subclass rather than :exc:`ExceptionGroup`. diff --git a/_sources/library/functions.rst.txt b/_sources/library/functions.rst.txt index 6901c021d7..f7fda9dcba 100644 --- a/_sources/library/functions.rst.txt +++ b/_sources/library/functions.rst.txt @@ -1496,7 +1496,9 @@ are always available. They are listed here in alphabetical order. returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of type :class:`int` or :class:`float` and a non-integral exponent, a complex result is delivered. For example, ``pow(-9, 0.5)`` returns a value close - to ``3j``. + to ``3j``. Whereas, for a negative base of type :class:`int` or :class:`float` + with an integral exponent, a float result is delivered. For example, + ``pow(-9, 2.0)`` returns ``81.0``. For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must also be of integer type and *mod* must be nonzero. If *mod* is present and diff --git a/_sources/library/pathlib.rst.txt b/_sources/library/pathlib.rst.txt index a44c52db56..c7821740ed 100644 --- a/_sources/library/pathlib.rst.txt +++ b/_sources/library/pathlib.rst.txt @@ -789,13 +789,12 @@ bugs or failures in your application):: % (cls.__name__,)) NotImplementedError: cannot instantiate 'WindowsPath' on your system +Some concrete path methods can raise an :exc:`OSError` if a system call fails +(for example because the path doesn't exist). -Methods -^^^^^^^ -Concrete paths provide the following methods in addition to pure paths -methods. Many of these methods can raise an :exc:`OSError` if a system -call fails (for example because the path doesn't exist). +Querying file type and status +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. versionchanged:: 3.8 @@ -807,29 +806,6 @@ call fails (for example because the path doesn't exist). unrepresentable at the OS level. -.. classmethod:: Path.cwd() - - Return a new path object representing the current directory (as returned - by :func:`os.getcwd`):: - - >>> Path.cwd() - PosixPath('/home/antoine/pathlib') - - -.. classmethod:: Path.home() - - Return a new path object representing the user's home directory (as - returned by :func:`os.path.expanduser` with ``~`` construct). If the home - directory can't be resolved, :exc:`RuntimeError` is raised. - - :: - - >>> Path.home() - PosixPath('/home/antoine') - - .. versionadded:: 3.5 - - .. method:: Path.stat(*, follow_symlinks=True) Return a :class:`os.stat_result` object containing information about this path, like :func:`os.stat`. @@ -849,25 +825,12 @@ call fails (for example because the path doesn't exist). .. versionchanged:: 3.10 The *follow_symlinks* parameter was added. -.. method:: Path.chmod(mode, *, follow_symlinks=True) - Change the file mode and permissions, like :func:`os.chmod`. - - This method normally follows symlinks. Some Unix flavours support changing - permissions on the symlink itself; on these platforms you may add the - argument ``follow_symlinks=False``, or use :meth:`~Path.lchmod`. - - :: +.. method:: Path.lstat() - >>> p = Path('setup.py') - >>> p.stat().st_mode - 33277 - >>> p.chmod(0o444) - >>> p.stat().st_mode - 33060 + Like :meth:`Path.stat` but, if the path points to a symbolic link, return + the symbolic link's information rather than its target's. - .. versionchanged:: 3.10 - The *follow_symlinks* parameter was added. .. method:: Path.exists(*, follow_symlinks=True) @@ -890,69 +853,14 @@ call fails (for example because the path doesn't exist). .. versionchanged:: 3.12 The *follow_symlinks* parameter was added. -.. method:: Path.expanduser() - - Return a new path with expanded ``~`` and ``~user`` constructs, - as returned by :meth:`os.path.expanduser`. If a home directory can't be - resolved, :exc:`RuntimeError` is raised. - - :: - - >>> p = PosixPath('~/films/Monty Python') - >>> p.expanduser() - PosixPath('/home/eric/films/Monty Python') - - .. versionadded:: 3.5 - - -.. method:: Path.glob(pattern, *, case_sensitive=None) - - Glob the given relative *pattern* in the directory represented by this path, - yielding all matching files (of any kind):: - - >>> sorted(Path('.').glob('*.py')) - [PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')] - >>> sorted(Path('.').glob('*/*.py')) - [PosixPath('docs/conf.py')] - - Patterns are the same as for :mod:`fnmatch`, with the addition of "``**``" - which means "this directory and all subdirectories, recursively". In other - words, it enables recursive globbing:: - - >>> sorted(Path('.').glob('**/*.py')) - [PosixPath('build/lib/pathlib.py'), - PosixPath('docs/conf.py'), - PosixPath('pathlib.py'), - PosixPath('setup.py'), - PosixPath('test_pathlib.py')] - - This method calls :meth:`Path.is_dir` on the top-level directory and - propagates any :exc:`OSError` exception that is raised. Subsequent - :exc:`OSError` exceptions from scanning directories are suppressed. - - By default, or when the *case_sensitive* keyword-only argument is set to - ``None``, this method matches paths using platform-specific casing rules: - typically, case-sensitive on POSIX, and case-insensitive on Windows. - Set *case_sensitive* to ``True`` or ``False`` to override this behaviour. - - .. note:: - Using the "``**``" pattern in large directory trees may consume - an inordinate amount of time. - - .. audit-event:: pathlib.Path.glob self,pattern pathlib.Path.glob - - .. versionchanged:: 3.11 - Return only directories if *pattern* ends with a pathname components - separator (:data:`~os.sep` or :data:`~os.altsep`). - - .. versionchanged:: 3.12 - The *case_sensitive* parameter was added. +.. method:: Path.is_file() -.. method:: Path.group() + Return ``True`` if the path points to a regular file (or a symbolic link + pointing to a regular file), ``False`` if it points to another kind of file. - Return the name of the group owning the file. :exc:`KeyError` is raised - if the file's gid isn't found in the system database. + ``False`` is also returned if the path doesn't exist or is a broken symlink; + other errors (such as permission errors) are propagated. .. method:: Path.is_dir() @@ -964,13 +872,12 @@ call fails (for example because the path doesn't exist). other errors (such as permission errors) are propagated. -.. method:: Path.is_file() +.. method:: Path.is_symlink() - Return ``True`` if the path points to a regular file (or a symbolic link - pointing to a regular file), ``False`` if it points to another kind of file. + Return ``True`` if the path points to a symbolic link, ``False`` otherwise. - ``False`` is also returned if the path doesn't exist or is a broken symlink; - other errors (such as permission errors) are propagated. + ``False`` is also returned if the path doesn't exist; other errors (such + as permission errors) are propagated. .. method:: Path.is_junction() @@ -998,14 +905,6 @@ call fails (for example because the path doesn't exist). Windows support was added. -.. method:: Path.is_symlink() - - Return ``True`` if the path points to a symbolic link, ``False`` otherwise. - - ``False`` is also returned if the path doesn't exist; other errors (such - as permission errors) are propagated. - - .. method:: Path.is_socket() Return ``True`` if the path points to a Unix socket (or a symbolic link @@ -1042,6 +941,111 @@ call fails (for example because the path doesn't exist). other errors (such as permission errors) are propagated. +.. method:: Path.samefile(other_path) + + Return whether this path points to the same file as *other_path*, which + can be either a Path object, or a string. The semantics are similar + to :func:`os.path.samefile` and :func:`os.path.samestat`. + + An :exc:`OSError` can be raised if either file cannot be accessed for some + reason. + + :: + + >>> p = Path('spam') + >>> q = Path('eggs') + >>> p.samefile(q) + False + >>> p.samefile('spam') + True + + .. versionadded:: 3.5 + + +Reading and writing files +^^^^^^^^^^^^^^^^^^^^^^^^^ + + +.. method:: Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None) + + Open the file pointed to by the path, like the built-in :func:`open` + function does:: + + >>> p = Path('setup.py') + >>> with p.open() as f: + ... f.readline() + ... + '#!/usr/bin/env python3\n' + + +.. method:: Path.read_text(encoding=None, errors=None) + + Return the decoded contents of the pointed-to file as a string:: + + >>> p = Path('my_text_file') + >>> p.write_text('Text file contents') + 18 + >>> p.read_text() + 'Text file contents' + + The file is opened and then closed. The optional parameters have the same + meaning as in :func:`open`. + + .. versionadded:: 3.5 + + +.. method:: Path.read_bytes() + + Return the binary contents of the pointed-to file as a bytes object:: + + >>> p = Path('my_binary_file') + >>> p.write_bytes(b'Binary file contents') + 20 + >>> p.read_bytes() + b'Binary file contents' + + .. versionadded:: 3.5 + + +.. method:: Path.write_text(data, encoding=None, errors=None, newline=None) + + Open the file pointed to in text mode, write *data* to it, and close the + file:: + + >>> p = Path('my_text_file') + >>> p.write_text('Text file contents') + 18 + >>> p.read_text() + 'Text file contents' + + An existing file of the same name is overwritten. The optional parameters + have the same meaning as in :func:`open`. + + .. versionadded:: 3.5 + + .. versionchanged:: 3.10 + The *newline* parameter was added. + + +.. method:: Path.write_bytes(data) + + Open the file pointed to in bytes mode, write *data* to it, and close the + file:: + + >>> p = Path('my_binary_file') + >>> p.write_bytes(b'Binary file contents') + 20 + >>> p.read_bytes() + b'Binary file contents' + + An existing file of the same name is overwritten. + + .. versionadded:: 3.5 + + +Reading directories +^^^^^^^^^^^^^^^^^^^ + .. method:: Path.iterdir() When the path points to a directory, yield path objects of the directory @@ -1060,8 +1064,83 @@ call fails (for example because the path doesn't exist). The children are yielded in arbitrary order, and the special entries ``'.'`` and ``'..'`` are not included. If a file is removed from or added - to the directory after creating the iterator, whether a path object for - that file be included is unspecified. + to the directory after creating the iterator, it is unspecified whether + a path object for that file is included. + + If the path is not a directory or otherwise inaccessible, :exc:`OSError` is + raised. + +.. method:: Path.glob(pattern, *, case_sensitive=None) + + Glob the given relative *pattern* in the directory represented by this path, + yielding all matching files (of any kind):: + + >>> sorted(Path('.').glob('*.py')) + [PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')] + >>> sorted(Path('.').glob('*/*.py')) + [PosixPath('docs/conf.py')] + + Patterns are the same as for :mod:`fnmatch`, with the addition of "``**``" + which means "this directory and all subdirectories, recursively". In other + words, it enables recursive globbing:: + + >>> sorted(Path('.').glob('**/*.py')) + [PosixPath('build/lib/pathlib.py'), + PosixPath('docs/conf.py'), + PosixPath('pathlib.py'), + PosixPath('setup.py'), + PosixPath('test_pathlib.py')] + + This method calls :meth:`Path.is_dir` on the top-level directory and + propagates any :exc:`OSError` exception that is raised. Subsequent + :exc:`OSError` exceptions from scanning directories are suppressed. + + By default, or when the *case_sensitive* keyword-only argument is set to + ``None``, this method matches paths using platform-specific casing rules: + typically, case-sensitive on POSIX, and case-insensitive on Windows. + Set *case_sensitive* to ``True`` or ``False`` to override this behaviour. + + .. note:: + Using the "``**``" pattern in large directory trees may consume + an inordinate amount of time. + + .. audit-event:: pathlib.Path.glob self,pattern pathlib.Path.glob + + .. versionchanged:: 3.11 + Return only directories if *pattern* ends with a pathname components + separator (:data:`~os.sep` or :data:`~os.altsep`). + + .. versionchanged:: 3.12 + The *case_sensitive* parameter was added. + + +.. method:: Path.rglob(pattern, *, case_sensitive=None) + + Glob the given relative *pattern* recursively. This is like calling + :func:`Path.glob` with "``**/``" added in front of the *pattern*, where + *patterns* are the same as for :mod:`fnmatch`:: + + >>> sorted(Path().rglob("*.py")) + [PosixPath('build/lib/pathlib.py'), + PosixPath('docs/conf.py'), + PosixPath('pathlib.py'), + PosixPath('setup.py'), + PosixPath('test_pathlib.py')] + + By default, or when the *case_sensitive* keyword-only argument is set to + ``None``, this method matches paths using platform-specific casing rules: + typically, case-sensitive on POSIX, and case-insensitive on Windows. + Set *case_sensitive* to ``True`` or ``False`` to override this behaviour. + + .. audit-event:: pathlib.Path.rglob self,pattern pathlib.Path.rglob + + .. versionchanged:: 3.11 + Return only directories if *pattern* ends with a pathname components + separator (:data:`~os.sep` or :data:`~os.altsep`). + + .. versionchanged:: 3.12 + The *case_sensitive* parameter was added. + .. method:: Path.walk(top_down=True, on_error=None, follow_symlinks=False) @@ -1158,16 +1237,79 @@ call fails (for example because the path doesn't exist). .. versionadded:: 3.12 -.. method:: Path.lchmod(mode) - Like :meth:`Path.chmod` but, if the path points to a symbolic link, the - symbolic link's mode is changed rather than its target's. +Other methods +^^^^^^^^^^^^^ +.. classmethod:: Path.cwd() -.. method:: Path.lstat() + Return a new path object representing the current directory (as returned + by :func:`os.getcwd`):: + + >>> Path.cwd() + PosixPath('/home/antoine/pathlib') - Like :meth:`Path.stat` but, if the path points to a symbolic link, return - the symbolic link's information rather than its target's. + +.. classmethod:: Path.home() + + Return a new path object representing the user's home directory (as + returned by :func:`os.path.expanduser` with ``~`` construct). If the home + directory can't be resolved, :exc:`RuntimeError` is raised. + + :: + + >>> Path.home() + PosixPath('/home/antoine') + + .. versionadded:: 3.5 + + +.. method:: Path.chmod(mode, *, follow_symlinks=True) + + Change the file mode and permissions, like :func:`os.chmod`. + + This method normally follows symlinks. Some Unix flavours support changing + permissions on the symlink itself; on these platforms you may add the + argument ``follow_symlinks=False``, or use :meth:`~Path.lchmod`. + + :: + + >>> p = Path('setup.py') + >>> p.stat().st_mode + 33277 + >>> p.chmod(0o444) + >>> p.stat().st_mode + 33060 + + .. versionchanged:: 3.10 + The *follow_symlinks* parameter was added. + + +.. method:: Path.expanduser() + + Return a new path with expanded ``~`` and ``~user`` constructs, + as returned by :meth:`os.path.expanduser`. If a home directory can't be + resolved, :exc:`RuntimeError` is raised. + + :: + + >>> p = PosixPath('~/films/Monty Python') + >>> p.expanduser() + PosixPath('/home/eric/films/Monty Python') + + .. versionadded:: 3.5 + + +.. method:: Path.group() + + Return the name of the group owning the file. :exc:`KeyError` is raised + if the file's gid isn't found in the system database. + + +.. method:: Path.lchmod(mode) + + Like :meth:`Path.chmod` but, if the path points to a symbolic link, the + symbolic link's mode is changed rather than its target's. .. method:: Path.mkdir(mode=0o777, parents=False, exist_ok=False) @@ -1195,53 +1337,12 @@ call fails (for example because the path doesn't exist). The *exist_ok* parameter was added. -.. method:: Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None) - - Open the file pointed to by the path, like the built-in :func:`open` - function does:: - - >>> p = Path('setup.py') - >>> with p.open() as f: - ... f.readline() - ... - '#!/usr/bin/env python3\n' - - .. method:: Path.owner() Return the name of the user owning the file. :exc:`KeyError` is raised if the file's uid isn't found in the system database. -.. method:: Path.read_bytes() - - Return the binary contents of the pointed-to file as a bytes object:: - - >>> p = Path('my_binary_file') - >>> p.write_bytes(b'Binary file contents') - 20 - >>> p.read_bytes() - b'Binary file contents' - - .. versionadded:: 3.5 - - -.. method:: Path.read_text(encoding=None, errors=None) - - Return the decoded contents of the pointed-to file as a string:: - - >>> p = Path('my_text_file') - >>> p.write_text('Text file contents') - 18 - >>> p.read_text() - 'Text file contents' - - The file is opened and then closed. The optional parameters have the same - meaning as in :func:`open`. - - .. versionadded:: 3.5 - - .. method:: Path.readlink() Return the path to which the symbolic link points (as returned by @@ -1334,60 +1435,12 @@ call fails (for example because the path doesn't exist). .. versionchanged:: 3.6 The *strict* parameter was added (pre-3.6 behavior is strict). -.. method:: Path.rglob(pattern, *, case_sensitive=None) - - Glob the given relative *pattern* recursively. This is like calling - :func:`Path.glob` with "``**/``" added in front of the *pattern*, where - *patterns* are the same as for :mod:`fnmatch`:: - - >>> sorted(Path().rglob("*.py")) - [PosixPath('build/lib/pathlib.py'), - PosixPath('docs/conf.py'), - PosixPath('pathlib.py'), - PosixPath('setup.py'), - PosixPath('test_pathlib.py')] - - By default, or when the *case_sensitive* keyword-only argument is set to - ``None``, this method matches paths using platform-specific casing rules: - typically, case-sensitive on POSIX, and case-insensitive on Windows. - Set *case_sensitive* to ``True`` or ``False`` to override this behaviour. - - .. audit-event:: pathlib.Path.rglob self,pattern pathlib.Path.rglob - - .. versionchanged:: 3.11 - Return only directories if *pattern* ends with a pathname components - separator (:data:`~os.sep` or :data:`~os.altsep`). - - .. versionchanged:: 3.12 - The *case_sensitive* parameter was added. - .. method:: Path.rmdir() Remove this directory. The directory must be empty. -.. method:: Path.samefile(other_path) - - Return whether this path points to the same file as *other_path*, which - can be either a Path object, or a string. The semantics are similar - to :func:`os.path.samefile` and :func:`os.path.samestat`. - - An :exc:`OSError` can be raised if either file cannot be accessed for some - reason. - - :: - - >>> p = Path('spam') - >>> q = Path('eggs') - >>> p.samefile(q) - False - >>> p.samefile('spam') - True - - .. versionadded:: 3.5 - - .. method:: Path.symlink_to(target, target_is_directory=False) Make this path a symbolic link pointing to *target*. @@ -1448,41 +1501,6 @@ call fails (for example because the path doesn't exist). The *missing_ok* parameter was added. -.. method:: Path.write_bytes(data) - - Open the file pointed to in bytes mode, write *data* to it, and close the - file:: - - >>> p = Path('my_binary_file') - >>> p.write_bytes(b'Binary file contents') - 20 - >>> p.read_bytes() - b'Binary file contents' - - An existing file of the same name is overwritten. - - .. versionadded:: 3.5 - - -.. method:: Path.write_text(data, encoding=None, errors=None, newline=None) - - Open the file pointed to in text mode, write *data* to it, and close the - file:: - - >>> p = Path('my_text_file') - >>> p.write_text('Text file contents') - 18 - >>> p.read_text() - 'Text file contents' - - An existing file of the same name is overwritten. The optional parameters - have the same meaning as in :func:`open`. - - .. versionadded:: 3.5 - - .. versionchanged:: 3.10 - The *newline* parameter was added. - Correspondence to tools in the :mod:`os` module ----------------------------------------------- diff --git a/_sources/library/time.rst.txt b/_sources/library/time.rst.txt index c53579bdd1..d792d5633d 100644 --- a/_sources/library/time.rst.txt +++ b/_sources/library/time.rst.txt @@ -594,7 +594,7 @@ Functions - range [1, 12] * - 2 - - .. attribute:: tm_day + - .. attribute:: tm_mday - range [1, 31] * - 3 diff --git a/_sources/library/typing.rst.txt b/_sources/library/typing.rst.txt index a39c2092e5..1a5c21d3c9 100644 --- a/_sources/library/typing.rst.txt +++ b/_sources/library/typing.rst.txt @@ -2203,9 +2203,9 @@ types. Point2D = TypedDict('Point2D', x=int, y=int, label=str) - .. deprecated-removed:: 3.11 3.13 - The keyword-argument syntax is deprecated in 3.11 and will be removed - in 3.13. It may also be unsupported by static type checkers. + .. deprecated-removed:: 3.11 3.13 + The keyword-argument syntax is deprecated in 3.11 and will be removed + in 3.13. It may also be unsupported by static type checkers. The functional syntax should also be used when any of the keys are not valid :ref:`identifiers `, for example because they are keywords or contain hyphens. @@ -2883,35 +2883,37 @@ Introspection helpers Return a dictionary containing type hints for a function, method, module or class object. - This is often the same as ``obj.__annotations__``. In addition, - forward references encoded as string literals are handled by evaluating - them in ``globals``, ``locals`` and (where applicable) - :ref:`type parameter ` namespaces. - For a class ``C``, return - a dictionary constructed by merging all the ``__annotations__`` along - ``C.__mro__`` in reverse order. - - The function recursively replaces all ``Annotated[T, ...]`` with ``T``, - unless ``include_extras`` is set to ``True`` (see :class:`Annotated` for - more information). For example: - - .. testcode:: - - class Student(NamedTuple): - name: Annotated[str, 'some marker'] - - assert get_type_hints(Student) == {'name': str} - assert get_type_hints(Student, include_extras=False) == {'name': str} - assert get_type_hints(Student, include_extras=True) == { - 'name': Annotated[str, 'some marker'] - } + This is often the same as ``obj.__annotations__``, but this function makes + the following changes to the annotations dictionary: + + * Forward references encoded as string literals or :class:`ForwardRef` + objects are handled by evaluating them in *globalns*, *localns*, and + (where applicable) *obj*'s :ref:`type parameter ` namespace. + If *globalns* or *localns* is not given, appropriate namespace + dictionaries are inferred from *obj*. + * ``None`` is replaced with :class:`types.NoneType`. + * If :func:`@no_type_check ` has been applied to *obj*, an + empty dictionary is returned. + * If *obj* is a class ``C``, the function returns a dictionary that merges + annotations from ``C``'s base classes with those on ``C`` directly. This + is done by traversing ``C.__mro__`` and iteratively combining + ``__annotations__`` dictionaries. Annotations on classes appearing + earlier in the :term:`method resolution order` always take precedence over + annotations on classes appearing later in the method resolution order. + * The function recursively replaces all occurrences of ``Annotated[T, ...]`` + with ``T``, unless *include_extras* is set to ``True`` (see + :class:`Annotated` for more information). + + See also :func:`inspect.get_annotations`, a lower-level function that + returns annotations more directly. .. note:: - :func:`get_type_hints` does not work with imported - :ref:`type aliases ` that include forward references. - Enabling postponed evaluation of annotations (:pep:`563`) may remove - the need for most forward references. + If any forward references in the annotations of *obj* are not resolvable + or are not valid Python code, this function will raise an exception + such as :exc:`NameError`. For example, this can happen with imported + :ref:`type aliases ` that include forward references, + or with names imported under :data:`if TYPE_CHECKING `. .. versionchanged:: 3.9 Added ``include_extras`` parameter as part of :pep:`593`. diff --git a/_sources/tutorial/inputoutput.rst.txt b/_sources/tutorial/inputoutput.rst.txt index 857068a51a..b93a0e8cec 100644 --- a/_sources/tutorial/inputoutput.rst.txt +++ b/_sources/tutorial/inputoutput.rst.txt @@ -279,9 +279,11 @@ left with zeros. It understands about plus and minus signs:: Old string formatting --------------------- -The % operator (modulo) can also be used for string formatting. Given ``'string' -% values``, instances of ``%`` in ``string`` are replaced with zero or more -elements of ``values``. This operation is commonly known as string +The % operator (modulo) can also be used for string formatting. +Given ``format % values`` (where *format* is a string), +``%`` conversion specifications in *format* are replaced with +zero or more elements of *values*. +This operation is commonly known as string interpolation. For example:: >>> import math diff --git a/_static/documentation_options.js b/_static/documentation_options.js index 84cd1c4357..49686c1abc 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '3.12.3', + VERSION: '3.12.4', LANGUAGE: 'zh-TW', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/_static/glossary.json b/_static/glossary.json index 13e6724379..d6dac3c8f3 100644 --- a/_static/glossary.json +++ b/_static/glossary.json @@ -1 +1 @@ -{">>>": {"title": ">>>", "body": "
\n

\u4e92\u52d5\u5f0f shell \u7684\u9810\u8a2d Python \u63d0\u793a\u5b57\u5143\u3002\u5e38\u898b\u65bc\u80fd\u5728\u76f4\u8b6f\u5668\u4e2d\u4ee5\u4e92\u52d5\u65b9\u5f0f\u88ab\u57f7\u884c\u7684\u7a0b\u5f0f\u78bc\u7bc4\u4f8b\u3002

\n
\n
\n"}, "...": {"title": "...", "body": "
\n

\u53ef\u4ee5\u8868\u793a\uff1a

\n
    \n
  • \u5728\u4e00\u500b\u88ab\u7e2e\u6392\u7684\u7a0b\u5f0f\u78bc\u5340\u584a\u3001\u5728\u4e00\u5c0d\u5339\u914d\u7684\u5de6\u53f3\u5b9a\u754c\u7b26\uff08delimiter\uff0c\u4f8b\u5982\u62ec\u865f\u3001\u65b9\u62ec\u865f\u3001\u82b1\u62ec\u865f\u6216\u4e09\u5f15\u865f\uff09\u5167\u90e8\uff0c\u6216\u662f\u5728\u6307\u5b9a\u4e00\u500b\u88dd\u98fe\u5668 (decorator) \u4e4b\u5f8c\uff0c\u8981\u8f38\u5165\u7a0b\u5f0f\u78bc\u6642\uff0c\u4e92\u52d5\u5f0f shell \u986f\u793a\u7684\u9810\u8a2d Python \u63d0\u793a\u5b57\u5143\u3002

  • \n
  • \u5167\u5efa\u5e38\u6578 Ellipsis\u3002

  • \n
\n
\n
\n"}, "2to3": {"title": "2to3", "body": "
\n

\u4e00\u500b\u8a66\u8457\u5c07 Python 2.x \u7a0b\u5f0f\u78bc\u8f49\u63db\u70ba Python 3.x \u7a0b\u5f0f\u78bc\u7684\u5de5\u5177\uff0c\u5b83\u662f\u900f\u904e\u8655\u7406\u5927\u90e8\u5206\u7684\u4e0d\u76f8\u5bb9\u6027\u4f86\u9054\u6210\u6b64\u76ee\u7684\uff0c\u800c\u9019\u4e9b\u4e0d\u76f8\u5bb9\u6027\u80fd\u5920\u900f\u904e\u5256\u6790\u539f\u59cb\u78bc\u548c\u904d\u6b77\u5256\u6790\u6a39\u800c\u88ab\u6aa2\u6e2c\u51fa\u4f86\u3002

\n

2to3 \u5728\u53ef\u4ee5\u6a19\u6e96\u51fd\u5f0f\u5eab\u4e2d\u4ee5 lib2to3 \u88ab\u4f7f\u7528\uff1b\u5b83\u63d0\u4f9b\u4e86\u4e00\u500b\u7368\u7acb\u7684\u5165\u53e3\u9ede\uff0c\u5728 Tools/scripts/2to3\u3002\u8acb\u53c3\u95b1 2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3\u3002

\n
\n
\n"}, "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09": {"title": "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09", "body": "
\n

\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff08\u53c8\u7a31\u70ba ABC\uff09\u63d0\u4f9b\u4e86\u4e00\u7a2e\u5b9a\u7fa9\u4ecb\u9762\u7684\u65b9\u6cd5\uff0c\u4f5c\u70ba duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09\u7684\u88dc\u5145\u3002\u5176\u4ed6\u985e\u4f3c\u7684\u6280\u8853\uff0c\u50cf\u662f hasattr()\uff0c\u5247\u986f\u5f97\u7b28\u62d9\u6216\u662f\u5e36\u6709\u7d30\u5fae\u7684\u932f\u8aa4\uff08\u4f8b\u5982\u4f7f\u7528\u9b54\u8853\u65b9\u6cd5 (magic method)\uff09\u3002ABC \u63a1\u7528\u865b\u64ec\u7684 subclass\uff08\u5b50\u985e\u5225\uff09\uff0c\u5b83\u5011\u4e26\u4e0d\u7e7c\u627f\u81ea\u53e6\u4e00\u500b class\uff08\u985e\u5225\uff09\uff0c\u4f46\u4ecd\u53ef\u88ab isinstance() \u53ca issubclass() \u8fa8\u8b58\uff1b\u8acb\u53c3\u95b1 abc \u6a21\u7d44\u7684\u8aaa\u660e\u6587\u4ef6\u3002Python \u6709\u8a31\u591a\u5167\u5efa\u7684 ABC\uff0c\u7528\u65bc\u8cc7\u6599\u7d50\u69cb\uff08\u5728 collections.abc \u6a21\u7d44\uff09\u3001\u6578\u5b57\uff08\u5728 numbers \u6a21\u7d44\uff09\u3001\u4e32\u6d41\uff08\u5728 io \u6a21\u7d44\uff09\u53ca import \u5c0b\u6aa2\u5668\u548c\u8f09\u5165\u5668\uff08\u5728 importlib.abc \u6a21\u7d44\uff09\u3002\u4f60\u53ef\u4ee5\u4f7f\u7528 abc \u6a21\u7d44\u5efa\u7acb\u81ea\u5df1\u7684 ABC\u3002

\n
\n
\n"}, "annotation\uff08\u8a3b\u91cb\uff09": {"title": "annotation\uff08\u8a3b\u91cb\uff09", "body": "
\n

\u4e00\u500b\u8207\u8b8a\u6578\u3001class \u5c6c\u6027\u3001\u51fd\u5f0f\u7684\u53c3\u6578\u6216\u56de\u50b3\u503c\u76f8\u95dc\u806f\u7684\u6a19\u7c64\u3002\u7167\u6163\u4f8b\uff0c\u5b83\u88ab\u7528\u4f86\u4f5c\u70ba type hint\uff08\u578b\u5225\u63d0\u793a\uff09\u3002

\n

\u5728\u57f7\u884c\u74b0\u5883 (runtime)\uff0c\u5340\u57df\u8b8a\u6578\u7684\u8a3b\u91cb\u7121\u6cd5\u88ab\u5b58\u53d6\uff0c\u4f46\u5168\u57df\u8b8a\u6578\u3001class \u5c6c\u6027\u548c\u51fd\u5f0f\u7684\u8a3b\u89e3\uff0c\u6703\u5206\u5225\u88ab\u5132\u5b58\u5728\u6a21\u7d44\u3001class \u548c\u51fd\u5f0f\u7684 __annotations__ \u7279\u6b8a\u5c6c\u6027\u4e2d\u3002

\n

\u8acb\u53c3\u95b1 variable annotation\u3001function annotation\u3001PEP 484 \u548c PEP 526\uff0c\u9019\u4e9b\u7ae0\u7bc0\u7686\u6709\u6b64\u529f\u80fd\u7684\u8aaa\u660e\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\u4e5f\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "argument\uff08\u5f15\u6578\uff09": {"title": "argument\uff08\u5f15\u6578\uff09", "body": "
\n

\u547c\u53eb\u51fd\u5f0f\u6642\u88ab\u50b3\u905e\u7d66 function\uff08\u6216 method\uff09\u7684\u503c\u3002\u5f15\u6578\u6709\u5169\u7a2e\uff1a

\n
    \n
  • \u95dc\u9375\u5b57\u5f15\u6578 (keyword argument)\uff1a\u5728\u51fd\u5f0f\u547c\u53eb\u4e2d\uff0c\u4ee5\u8b58\u5225\u5b57\uff08identifier\uff0c\u4f8b\u5982 name=\uff09\u958b\u982d\u7684\u5f15\u6578\uff0c\u6216\u662f\u4ee5 ** \u5f8c\u9762 dictionary\uff08\u5b57\u5178\uff09\u5167\u7684\u503c\u88ab\u50b3\u905e\u7684\u5f15\u6578\u3002\u4f8b\u5982\uff0c3 \u548c 5 \u90fd\u662f\u4ee5\u4e0b complex() \u547c\u53eb\u4e2d\u7684\u95dc\u9375\u5b57\u5f15\u6578\uff1a

    \n
    complex(real=3, imag=5)\ncomplex(**{'real': 3, 'imag': 5})\n
    \n
    \n
  • \n
  • \u4f4d\u7f6e\u5f15\u6578 (positional argument)\uff1a\u4e0d\u662f\u95dc\u9375\u5b57\u5f15\u6578\u7684\u5f15\u6578\u3002\u4f4d\u7f6e\u5f15\u6578\u53ef\u5728\u4e00\u500b\u5f15\u6578\u5217\u8868\u7684\u8d77\u59cb\u8655\u51fa\u73fe\uff0c\u548c\uff08\u6216\uff09\u4f5c\u70ba * \u4e4b\u5f8c\u7684 iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09\u4e2d\u7684\u5143\u7d20\u88ab\u50b3\u905e\u3002\u4f8b\u5982\uff0c3 \u548c 5 \u90fd\u662f\u4ee5\u4e0b\u547c\u53eb\u4e2d\u7684\u4f4d\u7f6e\u5f15\u6578\uff1a

    \n
    complex(3, 5)\ncomplex(*(3, 5))\n
    \n
    \n
  • \n
\n

\u5f15\u6578\u6703\u88ab\u6307\u5b9a\u7d66\u51fd\u5f0f\u4e3b\u9ad4\u4e2d\u7684\u9644\u540d\u5340\u57df\u8b8a\u6578\u3002\u95dc\u65bc\u652f\u914d\u9019\u500b\u6307\u5b9a\u904e\u7a0b\u7684\u898f\u5247\uff0c\u8acb\u53c3\u95b1Calls\u7ae0\u7bc0\u3002\u5728\u8a9e\u6cd5\u4e0a\uff0c\u4efb\u4f55\u904b\u7b97\u5f0f\u90fd\u53ef\u4ee5\u88ab\u7528\u4f86\u8868\u793a\u4e00\u500b\u5f15\u6578\uff1b\u5176\u8a55\u4f30\u503c\u6703\u88ab\u6307\u5b9a\u7d66\u5340\u57df\u8b8a\u6578\u3002

\n

\u53e6\u8acb\u53c3\u95b1\u8853\u8a9e\u8868\u7684 parameter\uff08\u53c3\u6578\uff09\u689d\u76ee\u3001\u5e38\u898b\u554f\u984c\u4e2d\u7684\u5f15\u6578\u548c\u53c3\u6578\u4e4b\u9593\u7684\u5dee\u7570\uff0c\u4ee5\u53ca PEP 362\u3002

\n
\n
\n"}, "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09": {"title": "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u63a7\u5236 async with \u9673\u8ff0\u5f0f\u4e2d\u6240\u898b\u74b0\u5883\u7684\u7269\u4ef6\uff0c\u800c\u5b83\u662f\u900f\u904e\u5b9a\u7fa9 __aenter__() \u548c __aexit__() method\uff08\u65b9\u6cd5\uff09\u4f86\u63a7\u5236\u7684\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": {"title": "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3 asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09\u7684\u51fd\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u4ee5 async def \u5b9a\u7fa9\u7684\u5354\u7a0b\u51fd\u5f0f (coroutine function)\uff0c\u4f46\u4e0d\u540c\u7684\u662f\u5b83\u5305\u542b\u4e86 yield \u904b\u7b97\u5f0f\uff0c\u80fd\u751f\u6210\u4e00\u7cfb\u5217\u53ef\u7528\u65bc async for \u8ff4\u5708\u7684\u503c\u3002

\n

\u9019\u500b\u8853\u8a9e\u901a\u5e38\u7528\u4f86\u8868\u793a\u4e00\u500b\u975e\u540c\u6b65\u7522\u751f\u5668\u51fd\u5f0f\uff0c\u4f46\u5728\u67d0\u4e9b\u60c5\u5883\u4e2d\uff0c\u4e5f\u53ef\u80fd\u662f\u8868\u793a\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668 (asynchronous generator iterator)\u3002\u842c\u4e00\u60f3\u8868\u9054\u7684\u610f\u601d\u4e0d\u5920\u6e05\u695a\uff0c\u90a3\u5c31\u4f7f\u7528\u5b8c\u6574\u7684\u8853\u8a9e\uff0c\u4ee5\u907f\u514d\u6b67\u7fa9\u3002

\n

\u4e00\u500b\u975e\u540c\u6b65\u7522\u751f\u5668\u51fd\u5f0f\u53ef\u80fd\u5305\u542b await \u904b\u7b97\u5f0f\uff0c\u4ee5\u53ca async for \u548c async with \u9673\u8ff0\u5f0f\u3002

\n
\n
\n"}, "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": {"title": "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u7531 asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09\u51fd\u5f0f\u6240\u5efa\u7acb\u7684\u7269\u4ef6\u3002

\n

\u9019\u662f\u4e00\u500b asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09\uff0c\u7576\u5b83\u4ee5 __anext__() method \u88ab\u547c\u53eb\u6642\uff0c\u6703\u56de\u50b3\u4e00\u500b\u53ef\u7b49\u5f85\u7269\u4ef6 (awaitable object)\uff0c\u8a72\u7269\u4ef6\u5c07\u57f7\u884c\u975e\u540c\u6b65\u7522\u751f\u5668\u7684\u51fd\u5f0f\u4e3b\u9ad4\uff0c\u76f4\u5230\u9047\u5230\u4e0b\u4e00\u500b yield \u904b\u7b97\u5f0f\u3002

\n

\u6bcf\u500b yield \u6703\u66ab\u505c\u8655\u7406\u7a0b\u5e8f\uff0c\u4e26\u8a18\u4f4f\u4f4d\u7f6e\u57f7\u884c\u72c0\u614b\uff08\u5305\u62ec\u5340\u57df\u8b8a\u6578\u53ca\u64f1\u7f6e\u4e2d\u7684 try \u9673\u8ff0\u5f0f\uff09\u3002\u7576\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\u4ee5\u53e6\u4e00\u500b\u88ab __anext__() \u56de\u50b3\u7684\u53ef\u7b49\u5f85\u7269\u4ef6\u6709\u6548\u5730\u56de\u5fa9\u6642\uff0c\u5b83\u6703\u5f9e\u505c\u6b62\u7684\u5730\u65b9\u7e7c\u7e8c\u57f7\u884c\u3002\u8acb\u53c3\u95b1 PEP 492 \u548c PEP 525\u3002

\n
\n
\n"}, "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": {"title": "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u53ef\u4ee5\u5728 async for \u9673\u8ff0\u5f0f\u4e2d\u88ab\u4f7f\u7528\u3002\u5fc5\u9808\u5f9e\u5b83\u7684 __aiter__() method \u56de\u50b3\u4e00\u500b asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09": {"title": "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u5be6\u4f5c __aiter__() \u548c __anext__() method \u7684\u7269\u4ef6\u3002__anext__() \u5fc5\u9808\u56de\u50b3\u4e00\u500b awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09\u3002async for \u6703\u89e3\u6790\u975e\u540c\u6b65\u758a\u4ee3\u5668\u7684 __anext__() method \u6240\u56de\u50b3\u7684\u53ef\u7b49\u5f85\u7269\u4ef6\uff0c\u76f4\u5230\u5b83\u5f15\u767c StopAsyncIteration \u4f8b\u5916\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "attribute\uff08\u5c6c\u6027\uff09": {"title": "attribute\uff08\u5c6c\u6027\uff09", "body": "
\n

\u4e00\u500b\u8207\u67d0\u7269\u4ef6\u76f8\u95dc\u806f\u7684\u503c\uff0c\u8a72\u503c\u5927\u591a\u80fd\u900f\u904e\u4f7f\u7528\u9ede\u5206\u9694\u904b\u7b97\u5f0f (dotted expression) \u7684\u540d\u7a31\u88ab\u53c3\u7167\u3002\u4f8b\u5982\uff0c\u5982\u679c\u7269\u4ef6 o \u6709\u4e00\u500b\u5c6c\u6027 a\uff0c\u5247\u8a72\u5c6c\u6027\u80fd\u4ee5 o.a \u88ab\u53c3\u7167\u3002

\n

\u5982\u679c\u4e00\u500b\u7269\u4ef6\u5141\u8a31\uff0c\u7d66\u4e88\u8a72\u7269\u4ef6\u4e00\u500b\u540d\u7a31\u4e0d\u662f\u7531Identifiers and keywords\u6240\u5b9a\u7fa9\u4e4b\u8b58\u5225\u7b26 (identifier) \u7684\u5c6c\u6027\u662f\u6709\u53ef\u80fd\u7684\uff0c\u4f8b\u5982\u4f7f\u7528 setattr()\u3002\u50cf\u9019\u6a23\u7684\u5c6c\u6027\u5c07\u7121\u6cd5\u4f7f\u7528\u9ede\u5206\u9694\u904b\u7b97\u5f0f\u4f86\u5b58\u53d6\uff0c\u800c\u662f\u9700\u8981\u4f7f\u7528 getattr() \u4f86\u53d6\u5f97\u5b83\u3002

\n
\n
\n"}, "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09": {"title": "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u5728 await \u904b\u7b97\u5f0f\u4e2d\u88ab\u4f7f\u7528\u7684\u7269\u4ef6\u3002\u5b83\u53ef\u4ee5\u662f\u4e00\u500b coroutine\uff08\u5354\u7a0b\uff09\uff0c\u6216\u662f\u4e00\u500b\u6709 __await__() method \u7684\u7269\u4ef6\u3002\u53e6\u8acb\u53c3\u95b1 PEP 492\u3002

\n
\n
\n"}, "bdfl": {"title": "BDFL", "body": "
\n

Benevolent Dictator For Life\uff08\u7d42\u8eab\u4ec1\u6148\u7368\u88c1\u8005\uff09\uff0c\u53c8\u540d Guido van Rossum\uff0cPython \u7684\u5275\u9020\u8005\u3002

\n
\n
\n"}, "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09": {"title": "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 bytes-like objects\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09\u7684 file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u3002\u4e8c\u9032\u4f4d\u6a94\u6848\u7684\u4f8b\u5b50\u6709\uff1a\u4ee5\u4e8c\u9032\u4f4d\u6a21\u5f0f\uff08'rb'\u3001'wb' \u6216 'rb+'\uff09\u958b\u555f\u7684\u6a94\u6848\u3001sys.stdin.buffer\u3001sys.stdout.buffer\uff0c\u4ee5\u53ca io.BytesIO \u548c gzip.GzipFile \u5be6\u4f8b\u3002

\n

\u53e6\u8acb\u53c3\u95b1 text file\uff08\u6587\u5b57\u6a94\u6848\uff09\uff0c\u5b83\u662f\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 str \u7269\u4ef6\u7684\u6a94\u6848\u7269\u4ef6\u3002

\n
\n
\n"}, "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09": {"title": "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09", "body": "
\n

\u5728 Python \u7684 C API \u4e2d\uff0c\u501f\u7528\u53c3\u7167\u662f\u4e00\u500b\u5c0d\u7269\u4ef6\u7684\u53c3\u7167\uff0c\u5176\u4e2d\u4f7f\u7528\u8a72\u7269\u4ef6\u7684\u7a0b\u5f0f\u78bc\u4e26\u4e0d\u64c1\u6709\u9019\u500b\u53c3\u7167\u3002\u5982\u679c\u8a72\u7269\u4ef6\u88ab\u92b7\u6bc0\uff0c\u5b83\u6703\u6210\u70ba\u4e00\u500b\u8ff7\u9014\u6307\u6a19 (dangling pointer)\u3002\u4f8b\u5982\uff0c\u4e00\u6b21\u5783\u573e\u56de\u6536 (garbage collection) \u53ef\u4ee5\u79fb\u9664\u5c0d\u7269\u4ef6\u7684\u6700\u5f8c\u4e00\u500b strong reference\uff08\u5f37\u53c3\u7167\uff09\uff0c\u800c\u5c07\u8a72\u7269\u4ef6\u92b7\u6bc0\u3002

\n

\u5c0d borrowed reference \u547c\u53eb Py_INCREF() \u4ee5\u5c07\u5b83\u539f\u5730 (in-place) \u8f49\u63db\u70ba strong reference \u662f\u88ab\u5efa\u8b70\u7684\u505a\u6cd5\uff0c\u9664\u975e\u8a72\u7269\u4ef6\u4e0d\u80fd\u5728\u6700\u5f8c\u4e00\u6b21\u4f7f\u7528\u501f\u7528\u53c3\u7167\u4e4b\u524d\u88ab\u92b7\u6bc0\u3002Py_NewRef() \u51fd\u5f0f\u53ef\u7528\u65bc\u5efa\u7acb\u4e00\u500b\u65b0\u7684 strong reference\u3002

\n
\n
\n"}, "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09": {"title": "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u652f\u63f4\u7de9\u885d\u5354\u5b9a (Buffer Protocol)\u4e14\u80fd\u5920\u532f\u51fa C-contiguous \u7de9\u885d\u5340\u7684\u7269\u4ef6\u3002\u9019\u5305\u62ec\u6240\u6709\u7684 bytes\u3001bytearray \u548c array.array \u7269\u4ef6\uff0c\u4ee5\u53ca\u8a31\u591a\u5e38\u898b\u7684 memoryview \u7269\u4ef6\u3002\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u53ef\u7528\u65bc\u8655\u7406\u4e8c\u9032\u4f4d\u8cc7\u6599\u7684\u5404\u7a2e\u904b\u7b97\uff1b\u9019\u4e9b\u904b\u7b97\u5305\u62ec\u58d3\u7e2e\u3001\u5132\u5b58\u81f3\u4e8c\u9032\u4f4d\u6a94\u6848\u548c\u900f\u904e socket\uff08\u63d2\u5ea7\uff09\u767c\u9001\u3002

\n

\u6709\u4e9b\u904b\u7b97\u9700\u8981\u4e8c\u9032\u4f4d\u8cc7\u6599\u662f\u53ef\u8b8a\u7684\u3002\u8aaa\u660e\u6587\u4ef6\u901a\u5e38\u6703\u5c07\u9019\u4e9b\u7269\u4ef6\u7a31\u70ba\u300c\u53ef\u8b80\u5beb\u7684\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u300d\u3002\u53ef\u8b8a\u7de9\u885d\u5340\u7684\u7269\u4ef6\u5305\u62ec bytearray\uff0c\u4ee5\u53ca bytearray \u7684 memoryview\u3002\u5176\u4ed6\u7684\u904b\u7b97\u9700\u8981\u8b93\u4e8c\u9032\u4f4d\u8cc7\u6599\u88ab\u5132\u5b58\u5728\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff08\u300c\u552f\u8b80\u7684\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u300d\uff09\u4e2d\uff1b\u9019\u4e9b\u7269\u4ef6\u5305\u62ec bytes\uff0c\u4ee5\u53ca bytes \u7269\u4ef6\u7684 memoryview\u3002

\n
\n
\n"}, "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09": {"title": "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09", "body": "
\n

Python \u7684\u539f\u59cb\u78bc\u6703\u88ab\u7de8\u8b6f\u6210\u4f4d\u5143\u7d44\u78bc\uff0c\u5b83\u662f Python \u7a0b\u5f0f\u5728 CPython \u76f4\u8b6f\u5668\u4e2d\u7684\u5167\u90e8\u8868\u793a\u6cd5\u3002\u8a72\u4f4d\u5143\u7d44\u78bc\u4e5f\u6703\u88ab\u66ab\u5b58\u5728 .pyc \u6a94\u6848\u4e2d\uff0c\u4ee5\u4fbf\u7b2c\u4e8c\u6b21\u57f7\u884c\u540c\u4e00\u500b\u6a94\u6848\u6642\u80fd\u5920\u66f4\u5feb\u901f\uff08\u53ef\u4ee5\u4e0d\u7528\u5f9e\u539f\u59cb\u78bc\u91cd\u65b0\u7de8\u8b6f\u70ba\u4f4d\u5143\u7d44\u78bc\uff09\u3002\u9019\u7a2e\u300c\u4e2d\u9593\u8a9e\u8a00 (intermediate language)\u300d\u64da\u8aaa\u662f\u904b\u884c\u5728\u4e00\u500b virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09\u4e0a\uff0c\u8a72\u865b\u64ec\u6a5f\u5668\u6703\u57f7\u884c\u8207\u6bcf\u500b\u4f4d\u5143\u7d44\u78bc\u5c0d\u61c9\u7684\u6a5f\u5668\u78bc (machine code)\u3002\u8981\u6ce8\u610f\u7684\u662f\uff0c\u4f4d\u5143\u7d44\u78bc\u7406\u8ad6\u4e0a\u662f\u7121\u6cd5\u5728\u4e0d\u540c\u7684 Python \u865b\u64ec\u6a5f\u5668\u4e4b\u9593\u904b\u4f5c\u7684\uff0c\u4e5f\u4e0d\u80fd\u5728\u4e0d\u540c\u7248\u672c\u7684 Python \u4e4b\u9593\u4fdd\u6301\u7a69\u5b9a\u3002

\n

\u4f4d\u5143\u7d44\u78bc\u7684\u6307\u4ee4\u5217\u8868\u53ef\u4ee5\u5728 dis \u6a21\u7d44\u7684\u8aaa\u660e\u6587\u4ef6\u4e2d\u627e\u5230\u3002

\n
\n
\n"}, "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09": {"title": "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b callable \u662f\u53ef\u4ee5\u88ab\u547c\u53eb\u7684\u7269\u4ef6\uff0c\u547c\u53eb\u6642\u53ef\u80fd\u4ee5\u4e0b\u5217\u5f62\u5f0f\u5e36\u6709\u4e00\u7d44\u5f15\u6578\uff08\u8acb\u898b argument\uff09\uff1a

\n
callable(argument1, argument2, argumentN)\n
\n
\n

\u4e00\u500b function \u8207\u5176\u5ef6\u4f38\u7684 method \u90fd\u662f callable\u3002\u4e00\u500b\u6709\u5be6\u4f5c __call__() \u65b9\u6cd5\u7684 class \u4e4b\u5be6\u4f8b\u4e5f\u662f\u500b callable\u3002

\n
\n
\n"}, "callback\uff08\u56de\u547c\uff09": {"title": "callback\uff08\u56de\u547c\uff09", "body": "
\n

\u4f5c\u70ba\u5f15\u6578\u88ab\u50b3\u905e\u7684\u4e00\u500b\u526f\u7a0b\u5f0f (subroutine) \u51fd\u5f0f\uff0c\u6703\u5728\u672a\u4f86\u7684\u67d0\u500b\u6642\u9593\u9ede\u88ab\u57f7\u884c\u3002

\n
\n
\n"}, "class\uff08\u985e\u5225\uff09": {"title": "class\uff08\u985e\u5225\uff09", "body": "
\n

\u4e00\u500b\u7528\u65bc\u5efa\u7acb\u4f7f\u7528\u8005\u5b9a\u7fa9\u7269\u4ef6\u7684\u6a21\u677f\u3002Class \u7684\u5b9a\u7fa9\u901a\u5e38\u6703\u5305\u542b method \u7684\u5b9a\u7fa9\uff0c\u9019\u4e9b method \u53ef\u4ee5\u5728 class \u7684\u5be6\u4f8b\u4e0a\u9032\u884c\u64cd\u4f5c\u3002

\n
\n
\n"}, "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09": {"title": "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09", "body": "
\n

\u4e00\u500b\u5728 class \u4e2d\u88ab\u5b9a\u7fa9\uff0c\u4e14\u61c9\u8a72\u53ea\u80fd\u5728 class \u5c64\u6b21\uff08\u610f\u5373\u4e0d\u662f\u5728 class \u7684\u5be6\u4f8b\u4e2d\uff09\u88ab\u4fee\u6539\u7684\u8b8a\u6578\u3002

\n
\n
\n"}, "complex number\uff08\u8907\u6578\uff09": {"title": "complex number\uff08\u8907\u6578\uff09", "body": "
\n

\u4e00\u500b\u6211\u5011\u719f\u6089\u7684\u5be6\u6578\u7cfb\u7d71\u7684\u64f4\u5145\uff0c\u5728\u6b64\u6240\u6709\u6578\u5b57\u90fd\u6703\u88ab\u8868\u793a\u70ba\u4e00\u500b\u5be6\u90e8\u548c\u4e00\u500b\u865b\u90e8\u4e4b\u548c\u3002\u865b\u6578\u5c31\u662f\u865b\u6578\u55ae\u4f4d\uff08-1 \u7684\u5e73\u65b9\u6839\uff09\u7684\u5be6\u6578\u500d\uff0c\u6b64\u55ae\u4f4d\u901a\u5e38\u5728\u6578\u5b78\u4e2d\u88ab\u5beb\u70ba i\uff0c\u5728\u5de5\u7a0b\u5b78\u4e2d\u88ab\u5beb\u70ba j\u3002Python \u5167\u5efa\u4e86\u5c0d\u8907\u6578\u7684\u652f\u63f4\uff0c\u5b83\u662f\u7528\u5f8c\u8005\u7684\u8a18\u6cd5\u4f86\u8868\u793a\u8907\u6578\uff1b\u865b\u90e8\u6703\u5e36\u8457\u4e00\u500b\u5f8c\u7db4\u7684 j \u88ab\u7de8\u5beb\uff0c\u4f8b\u5982 3+1j\u3002\u82e5\u8981\u5c07 math \u6a21\u7d44\u5167\u7684\u5de5\u5177\u7b49\u6548\u5730\u7528\u65bc\u8907\u6578\uff0c\u8acb\u4f7f\u7528 cmath \u6a21\u7d44\u3002\u8907\u6578\u7684\u4f7f\u7528\u662f\u4e00\u500b\u76f8\u7576\u9032\u968e\u7684\u6578\u5b78\u529f\u80fd\u3002\u5982\u679c\u4f60\u6c92\u6709\u5bdf\u89ba\u5230\u5c0d\u5b83\u5011\u7684\u9700\u6c42\uff0c\u90a3\u9ebc\u5e7e\u4e4e\u80fd\u78ba\u5b9a\u4f60\u53ef\u4ee5\u5b89\u5168\u5730\u5ffd\u7565\u5b83\u5011\u3002

\n
\n
\n"}, "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09": {"title": "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u63a7\u5236 with \u9673\u8ff0\u5f0f\u4e2d\u6240\u898b\u74b0\u5883\u7684\u7269\u4ef6\uff0c\u800c\u5b83\u662f\u900f\u904e\u5b9a\u7fa9 __enter__() \u548c __exit__() method \u4f86\u63a7\u5236\u7684\u3002\u8acb\u53c3\u95b1 PEP 343\u3002

\n
\n
\n"}, "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09": {"title": "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09", "body": "
\n

\u4e00\u500b\u8b8a\u6578\uff0c\u5176\u503c\u53ef\u4ee5\u6839\u64da\u4e0a\u4e0b\u6587\u7684\u60c5\u5883\u800c\u6709\u6240\u4e0d\u540c\u3002\u9019\u985e\u4f3c\u57f7\u884c\u7dd2\u5340\u57df\u5132\u5b58\u5340 (Thread-Local Storage)\uff0c\u5728\u5176\u4e2d\uff0c\u4e00\u500b\u8b8a\u6578\u5728\u6bcf\u500b\u57f7\u884c\u7dd2\u53ef\u80fd\u5177\u6709\u4e0d\u540c\u7684\u503c\u3002\u7136\u800c\uff0c\u95dc\u65bc\u60c5\u5883\u8b8a\u6578\uff0c\u5728\u4e00\u500b\u57f7\u884c\u7dd2\u4e2d\u53ef\u80fd\u6703\u6709\u591a\u500b\u60c5\u5883\uff0c\u800c\u60c5\u5883\u8b8a\u6578\u7684\u4e3b\u8981\u7528\u9014\uff0c\u662f\u5728\u4e26\u884c\u7684\u975e\u540c\u6b65\u4efb\u52d9 (concurrent asynchronous task) \u4e2d\uff0c\u5c0d\u65bc\u8b8a\u6578\u72c0\u614b\u7684\u8ffd\u8e64\u3002\u8acb\u53c3\u95b1 contextvars\u3002

\n
\n
\n"}, "contiguous\uff08\u9023\u7e8c\u7684\uff09": {"title": "contiguous\uff08\u9023\u7e8c\u7684\uff09", "body": "
\n

\u5982\u679c\u4e00\u500b\u7de9\u885d\u5340\u662f C-contiguous \u6216\u662f Fortran contiguous\uff0c\u5247\u5b83\u6703\u78ba\u5207\u5730\u88ab\u8996\u70ba\u662f\u9023\u7e8c\u7684\u3002\u96f6\u7dad (zero-dimensional) \u7684\u7de9\u885d\u5340\u90fd\u662f C \u53ca Fortran contiguous\u3002\u5728\u4e00\u7dad (one-dimensional) \u9663\u5217\u4e2d\uff0c\u5404\u9805\u76ee\u5fc5\u9808\u5728\u8a18\u61b6\u9ad4\u4e2d\u5f7c\u6b64\u76f8\u9130\u5730\u6392\u5217\uff0c\u800c\u5176\u7d22\u5f15\u9806\u5e8f\u662f\u5f9e\u96f6\u958b\u59cb\u905e\u589e\u3002\u5728\u591a\u7dad\u7684 (multidimensional) C-contiguous \u9663\u5217\u4e2d\uff0c\u6309\u8a18\u61b6\u9ad4\u4f4d\u5740\u7684\u9806\u5e8f\u8a2a\u554f\u5404\u500b\u9805\u76ee\u6642\uff0c\u6700\u5f8c\u4e00\u500b\u7d22\u5f15\u7684\u8b8a\u5316\u6700\u5feb\u3002\u7136\u800c\uff0c\u5728 Fortran contiguous \u9663\u5217\u4e2d\uff0c\u7b2c\u4e00\u500b\u7d22\u5f15\u7684\u8b8a\u5316\u6700\u5feb\u3002

\n
\n
\n"}, "coroutine\uff08\u5354\u7a0b\uff09": {"title": "coroutine\uff08\u5354\u7a0b\uff09", "body": "
\n

\u5354\u7a0b\u662f\u526f\u7a0b\u5f0f (subroutine) \u7684\u4e00\u7a2e\u66f4\u70ba\u5ee3\u7fa9\u7684\u5f62\u5f0f\u3002\u526f\u7a0b\u5f0f\u662f\u5728\u67d0\u500b\u6642\u9593\u9ede\u88ab\u9032\u5165\u4e26\u5728\u53e6\u4e00\u500b\u6642\u9593\u9ede\u88ab\u9000\u51fa\u3002\u5354\u7a0b\u53ef\u4ee5\u5728\u8a31\u591a\u4e0d\u540c\u7684\u6642\u9593\u9ede\u88ab\u9032\u5165\u3001\u9000\u51fa\u548c\u56de\u5fa9\u3002\u5b83\u5011\u80fd\u5920\u4ee5 async def \u9673\u8ff0\u5f0f\u88ab\u5be6\u4f5c\u3002\u53e6\u8acb\u53c3\u95b1 PEP 492\u3002

\n
\n
\n"}, "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09": {"title": "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u56de\u50b3 coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6\u7684\u51fd\u5f0f\u3002\u4e00\u500b\u5354\u7a0b\u51fd\u5f0f\u80fd\u4ee5 async def \u9673\u8ff0\u5f0f\u88ab\u5b9a\u7fa9\uff0c\u4e26\u53ef\u80fd\u6703\u5305\u542b await\u3001async for \u548c async with \u95dc\u9375\u5b57\u3002\u9019\u4e9b\u95dc\u9375\u5b57\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "cpython": {"title": "CPython", "body": "
\n

Python \u7a0b\u5f0f\u8a9e\u8a00\u7684\u6a19\u6e96\u5be6\u4f5c (canonical implementation)\uff0c\u88ab\u767c\u5e03\u5728 python.org \u4e0a\u3002\u300cCPython\u300d\u9019\u500b\u8853\u8a9e\u5728\u5fc5\u8981\u6642\u88ab\u4f7f\u7528\uff0c\u4ee5\u5340\u5206\u6b64\u5be6\u4f5c\u8207\u5176\u5b83\u8a9e\u8a00\u7684\u5be6\u4f5c\uff0c\u4f8b\u5982 Jython \u6216 IronPython\u3002

\n
\n
\n"}, "decorator\uff08\u88dd\u98fe\u5668\uff09": {"title": "decorator\uff08\u88dd\u98fe\u5668\uff09", "body": "
\n

\u4e00\u500b\u51fd\u5f0f\uff0c\u5b83\u6703\u56de\u50b3\u53e6\u4e00\u500b\u51fd\u5f0f\uff0c\u901a\u5e38\u5b83\u6703\u4f7f\u7528 @wrapper \u8a9e\u6cd5\uff0c\u88ab\u61c9\u7528\u70ba\u4e00\u7a2e\u51fd\u5f0f\u7684\u8b8a\u63db (function transformation)\u3002\u88dd\u98fe\u5668\u7684\u5e38\u898b\u7bc4\u4f8b\u662f classmethod() \u548c staticmethod()\u3002

\n

\u88dd\u98fe\u5668\u8a9e\u6cd5\u53ea\u662f\u8a9e\u6cd5\u7cd6\u3002\u4ee5\u4e0b\u5169\u500b\u51fd\u5f0f\u5b9a\u7fa9\u5728\u8a9e\u7fa9\u4e0a\u662f\u7b49\u6548\u7684\uff1a

\n
def f(arg):\n    ...\nf = staticmethod(f)\n\n@staticmethod\ndef f(arg):\n    ...\n
\n
\n

Class \u4e5f\u5b58\u5728\u76f8\u540c\u7684\u6982\u5ff5\uff0c\u4f46\u5728\u90a3\u88e1\u6bd4\u8f03\u4e0d\u5e38\u7528\u3002\u95dc\u65bc\u88dd\u98fe\u5668\u7684\u66f4\u591a\u5167\u5bb9\uff0c\u8acb\u53c3\u95b1\u51fd\u5f0f\u5b9a\u7fa9\u548c class \u5b9a\u7fa9\u7684\u8aaa\u660e\u6587\u4ef6\u3002

\n
\n
\n"}, "descriptor\uff08\u63cf\u8ff0\u5668\uff09": {"title": "descriptor\uff08\u63cf\u8ff0\u5668\uff09", "body": "
\n

\u4efb\u4f55\u5b9a\u7fa9\u4e86 __get__()\u3001__set__() \u6216 __delete__() method \u7684\u7269\u4ef6\u3002\u7576\u4e00\u500b class \u5c6c\u6027\u662f\u4e00\u500b\u63cf\u8ff0\u5668\u6642\uff0c\u5b83\u7684\u7279\u6b8a\u9023\u7d50\u884c\u70ba\u6703\u5728\u5c6c\u6027\u67e5\u627e\u6642\u88ab\u89f8\u767c\u3002\u901a\u5e38\uff0c\u4f7f\u7528 a.b \u4f86\u53d6\u5f97\u3001\u8a2d\u5b9a\u6216\u522a\u9664\u67d0\u500b\u5c6c\u6027\u6642\uff0c\u6703\u5728 a \u7684 class \u5b57\u5178\u4e2d\u67e5\u627e\u540d\u7a31\u70ba b \u7684\u7269\u4ef6\uff0c\u4f46\u5982\u679c b \u662f\u4e00\u500b\u63cf\u8ff0\u5668\uff0c\u5247\u76f8\u5c0d\u61c9\u7684\u63cf\u8ff0\u5668 method \u6703\u88ab\u547c\u53eb\u3002\u5c0d\u63cf\u8ff0\u5668\u7684\u7406\u89e3\u662f\u6df1\u5165\u7406\u89e3 Python \u7684\u95dc\u9375\uff0c\u56e0\u70ba\u5b83\u5011\u662f\u8a31\u591a\u529f\u80fd\u7684\u57fa\u790e\uff0c\u9019\u4e9b\u529f\u80fd\u5305\u62ec\u51fd\u5f0f\u3001method\u3001\u5c6c\u6027 (property)\u3001class method\u3001\u975c\u614b method\uff0c\u4ee5\u53ca\u5c0d super class\uff08\u7236\u985e\u5225\uff09\u7684\u53c3\u7167\u3002

\n

\u95dc\u65bc\u63cf\u8ff0\u5668 method \u7684\u66f4\u591a\u8cc7\u8a0a\uff0c\u8acb\u53c3\u95b1Implementing Descriptors\u6216\u63cf\u8ff0\u5668\u4f7f\u7528\u6307\u5357\u3002

\n
\n
\n"}, "dictionary\uff08\u5b57\u5178\uff09": {"title": "dictionary\uff08\u5b57\u5178\uff09", "body": "
\n

\u4e00\u500b\u95dc\u806f\u9663\u5217 (associative array)\uff0c\u5176\u4e2d\u4efb\u610f\u7684\u9375\u6703\u88ab\u6620\u5c04\u5230\u503c\u3002\u9375\u53ef\u4ee5\u662f\u4efb\u4f55\u5e36\u6709 __hash__() \u548c __eq__() method \u7684\u7269\u4ef6\u3002\u5728 Perl \u4e2d\u88ab\u7a31\u70ba\u96dc\u6e4a (hash)\u3002

\n
\n
\n"}, "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09": {"title": "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7dca\u5bc6\u7684\u65b9\u6cd5\uff0c\u7528\u4f86\u8655\u7406\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b\u5b57\u5178\u56de\u50b3\u3002results = {n: n ** 2 for n in range(10)} \u6703\u7522\u751f\u4e00\u500b\u5b57\u5178\uff0c\u5b83\u5305\u542b\u4e86\u9375 n \u6620\u5c04\u5230\u503c n ** 2\u3002\u8acb\u53c3\u95b1Displays for lists, sets and dictionaries\u3002

\n
\n
\n"}, "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09": {"title": "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09", "body": "
\n

\u5f9e dict.keys()\u3001dict.values() \u53ca dict.items() \u56de\u50b3\u7684\u7269\u4ef6\u88ab\u7a31\u70ba\u5b57\u5178\u6aa2\u8996\u3002\u5b83\u5011\u63d0\u4f9b\u4e86\u5b57\u5178\u4e2d\u9805\u76ee\u7684\u52d5\u614b\u6aa2\u8996\uff0c\u9019\u8868\u793a\u7576\u5b57\u5178\u6709\u8b8a\u52d5\u6642\uff0c\u8a72\u6aa2\u8996\u6703\u53cd\u6620\u9019\u4e9b\u8b8a\u52d5\u3002\u82e5\u8981\u5f37\u5236\u5c07\u5b57\u5178\u6aa2\u8996\u8f49\u70ba\u5b8c\u6574\u7684 list\uff08\u4e32\u5217\uff09\uff0c\u9808\u4f7f\u7528 list(dictview)\u3002\u8acb\u53c3\u95b1\u5b57\u5178\u8996\u5716\u7269\u4ef6\u3002

\n
\n
\n"}, "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09": {"title": "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09", "body": "
\n

\u4e00\u500b\u5728 class\u3001\u51fd\u5f0f\u6216\u6a21\u7d44\u4e2d\uff0c\u4f5c\u70ba\u7b2c\u4e00\u500b\u904b\u7b97\u5f0f\u51fa\u73fe\u7684\u5b57\u4e32\u6587\u672c\u3002\u96d6\u7136\u5b83\u5728\u5957\u4ef6\u57f7\u884c\u6642\u6703\u88ab\u5ffd\u7565\uff0c\u4f46\u5b83\u6703\u88ab\u7de8\u8b6f\u5668\u8fa8\u8b58\uff0c\u4e26\u88ab\u653e\u5165\u6240\u5c6c class\u3001\u51fd\u5f0f\u6216\u6a21\u7d44\u7684 __doc__ \u5c6c\u6027\u4e2d\u3002\u7531\u65bc\u8aaa\u660e\u5b57\u4e32\u53ef\u4ee5\u900f\u904e\u5167\u7701 (introspection) \u4f86\u700f\u89bd\uff0c\u56e0\u6b64\u5b83\u662f\u7269\u4ef6\u7684\u8aaa\u660e\u6587\u4ef6\u5b58\u653e\u7684\u6a19\u6e96\u4f4d\u7f6e\u3002

\n
\n
\n"}, "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09": {"title": "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09", "body": "
\n

\u4e00\u7a2e\u7a0b\u5f0f\u8a2d\u8a08\u98a8\u683c\uff0c\u5b83\u4e0d\u662f\u85c9\u7531\u6aa2\u67e5\u4e00\u500b\u7269\u4ef6\u7684\u578b\u5225\u4f86\u78ba\u5b9a\u5b83\u662f\u5426\u5177\u6709\u6b63\u78ba\u7684\u4ecb\u9762\uff1b\u53d6\u800c\u4ee3\u4e4b\u7684\u662f\uff0cmethod \u6216\u5c6c\u6027\u6703\u55ae\u7d14\u5730\u88ab\u547c\u53eb\u6216\u4f7f\u7528\u3002\uff08\u300c\u5982\u679c\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u96bb\u9d28\u5b50\u800c\u4e14\u53eb\u8d77\u4f86\u50cf\u4e00\u96bb\u9d28\u5b50\uff0c\u90a3\u9ebc\u5b83\u4e00\u5b9a\u662f\u4e00\u96bb\u9d28\u5b50\u3002\u300d\uff09\u56e0\u70ba\u5f37\u8abf\u4ecb\u9762\u800c\u975e\u7279\u5b9a\u578b\u5225\uff0c\u7cbe\u5fc3\u8a2d\u8a08\u7684\u7a0b\u5f0f\u78bc\u80fd\u8b93\u591a\u5f62\u66ff\u4ee3 (polymorphic substitution) \u4f86\u589e\u9032\u5b83\u7684\u9748\u6d3b\u6027\u3002\u9d28\u5b50\u578b\u5225\u8981\u907f\u514d\u4f7f\u7528 type() \u6216 isinstance() \u9032\u884c\u6e2c\u8a66\u3002\uff08\u4f46\u662f\u8acb\u6ce8\u610f\uff0c\u9d28\u5b50\u578b\u5225\u53ef\u4ee5\u7528\u62bd\u8c61\u57fa\u5e95\u985e\u5225 (abstract base class) \u4f86\u88dc\u5145\u3002\uff09\u7136\u800c\uff0c\u5b83\u901a\u5e38\u6703\u63a1\u7528 hasattr() \u6e2c\u8a66\uff0c\u6216\u662f EAFP \u7a0b\u5f0f\u8a2d\u8a08\u98a8\u683c\u3002

\n
\n
\n"}, "eafp": {"title": "EAFP", "body": "
\n

Easier to ask for forgiveness than permission.\uff08\u8acb\u6c42\u5bec\u6055\u6bd4\u8acb\u6c42\u8a31\u53ef\u66f4\u5bb9\u6613\u3002\uff09\u9019\u7a2e\u5e38\u898b\u7684 Python \u7de8\u78bc\u98a8\u683c\u6703\u5148\u5047\u8a2d\u6709\u6548\u7684\u9375\u6216\u5c6c\u6027\u7684\u5b58\u5728\uff0c\u4e26\u5728\u8a72\u5047\u8a2d\u88ab\u63a8\u7ffb\u6642\u518d\u6355\u7372\u4f8b\u5916\u3002\u9019\u7a2e\u4e7e\u6de8\u4e14\u5feb\u901f\u7684\u98a8\u683c\uff0c\u5176\u7279\u8272\u662f\u5b58\u5728\u8a31\u591a\u7684 try \u548c except \u9673\u8ff0\u5f0f\u3002\u8a72\u6280\u8853\u8207\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\uff08\u4f8b\u5982 C\uff09\u5e38\u898b\u7684 LBYL \u98a8\u683c\u5f62\u6210\u4e86\u5c0d\u6bd4\u3002

\n
\n
\n"}, "expression\uff08\u904b\u7b97\u5f0f\uff09": {"title": "expression\uff08\u904b\u7b97\u5f0f\uff09", "body": "
\n

\u4e00\u6bb5\u53ef\u4ee5\u88ab\u8a55\u4f30\u4e26\u6c42\u503c\u7684\u8a9e\u6cd5\u3002\u63db\u53e5\u8a71\u8aaa\uff0c\u4e00\u500b\u904b\u7b97\u5f0f\u5c31\u662f\u6587\u5b57\u3001\u540d\u7a31\u3001\u5c6c\u6027\u5b58\u53d6\u3001\u904b\u7b97\u5b50\u6216\u51fd\u5f0f\u547c\u53eb\u7b49\u904b\u7b97\u5f0f\u5143\u4ef6\u7684\u7d2f\u7a4d\uff0c\u800c\u9019\u4e9b\u5143\u4ef6\u90fd\u80fd\u56de\u50b3\u4e00\u500b\u503c\u3002\u8207\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\u4e0d\u540c\u7684\u662f\uff0c\u4e26\u975e\u6240\u6709\u7684 Python \u8a9e\u8a00\u69cb\u9020\u90fd\u662f\u904b\u7b97\u5f0f\u3002\u53e6\u5916\u6709\u4e00\u4e9b statement\uff08\u9673\u8ff0\u5f0f\uff09\u4e0d\u80fd\u88ab\u7528\u4f5c\u904b\u7b97\u5f0f\uff0c\u4f8b\u5982 while\u3002\u8ce6\u503c (assignment) \u4e5f\u662f\u9673\u8ff0\u5f0f\uff0c\u800c\u4e0d\u662f\u904b\u7b97\u5f0f\u3002

\n
\n
\n"}, "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09": {"title": "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09", "body": "
\n

\u4e00\u500b\u4ee5 C \u6216 C++ \u7de8\u5beb\u7684\u6a21\u7d44\uff0c\u5b83\u4f7f\u7528 Python \u7684 C API \u4f86\u8207\u6838\u5fc3\u53ca\u4f7f\u7528\u8005\u7a0b\u5f0f\u78bc\u9032\u884c\u4e92\u52d5\u3002

\n
\n
\n"}, "f-string\uff08f \u5b57\u4e32\uff09": {"title": "f-string\uff08f \u5b57\u4e32\uff09", "body": "
\n

\u4ee5 'f' \u6216 'F' \u70ba\u524d\u7db4\u7684\u5b57\u4e32\u6587\u672c\u901a\u5e38\u88ab\u7a31\u70ba\u300cf \u5b57\u4e32\u300d\uff0c\u5b83\u662f\u683c\u5f0f\u5316\u7684\u5b57\u4e32\u6587\u672c\u7684\u7e2e\u5beb\u3002\u53e6\u8acb\u53c3\u95b1 PEP 498\u3002

\n
\n
\n"}, "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09": {"title": "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u8b93\u4f7f\u7528\u8005\u900f\u904e\u6a94\u6848\u5c0e\u5411 (file-oriented) API\uff08\u5982 read() \u6216 write() \u7b49 method\uff09\u4f86\u64cd\u4f5c\u5e95\u5c64\u8cc7\u6e90\u7684\u7269\u4ef6\u3002\u6839\u64da\u6a94\u6848\u7269\u4ef6\u88ab\u5efa\u7acb\u7684\u65b9\u5f0f\uff0c\u5b83\u80fd\u5920\u5354\u8abf\u5c0d\u771f\u5be6\u78c1\u789f\u6a94\u6848\u6216\u662f\u5176\u4ed6\u985e\u578b\u7684\u5132\u5b58\u5668\u6216\u901a\u8a0a\u88dd\u7f6e\uff08\u4f8b\u5982\u6a19\u6e96\u8f38\u5165\uff0f\u8f38\u51fa\u3001\u8a18\u61b6\u9ad4\u5167\u7de9\u885d\u5340\u3001socket\uff08\u63d2\u5ea7\uff09\u3001\u7ba1\u7dda (pipe) \u7b49\uff09\u7684\u5b58\u53d6\u3002\u6a94\u6848\u7269\u4ef6\u4e5f\u88ab\u7a31\u70ba\u985e\u6a94\u6848\u7269\u4ef6 (file-like object) \u6216\u4e32\u6d41 (stream)\u3002

\n

\u5be6\u969b\u4e0a\uff0c\u6709\u4e09\u7a2e\u6a94\u6848\u7269\u4ef6\uff1a\u539f\u59cb\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\u3001\u7de9\u885d\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\u548c\u6587\u5b57\u6a94\u6848\u3002\u5b83\u5011\u7684\u4ecb\u9762\u5728 io \u6a21\u7d44\u4e2d\u88ab\u5b9a\u7fa9\u3002\u5efa\u7acb\u6a94\u6848\u7269\u4ef6\u7684\u6a19\u6e96\u65b9\u6cd5\u662f\u4f7f\u7528 open() \u51fd\u5f0f\u3002

\n
\n
\n"}, "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09": {"title": "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09", "body": "
\n

file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u7684\u540c\u7fa9\u5b57\u3002

\n
\n
\n"}, "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09": {"title": "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09", "body": "
\n

Python \u6240\u4f7f\u7528\u7684\u4e00\u7a2e\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff0c\u7528\u4f86\u89e3\u78bc\u4f86\u81ea\u4f5c\u696d\u7cfb\u7d71\u7684\u4f4d\u5143\u7d44\uff0c\u4ee5\u53ca\u5c07 Unicode \u7de8\u78bc\u5230\u4f5c\u696d\u7cfb\u7d71\u3002

\n

\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u5fc5\u9808\u4fdd\u8b49\u80fd\u6210\u529f\u89e3\u78bc\u6240\u6709\u5c0f\u65bc 128 \u7684\u4f4d\u5143\u7d44\u3002\u5982\u679c\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u7121\u6cd5\u63d0\u4f9b\u6b64\u4fdd\u8b49\uff0c\u5247 API \u51fd\u5f0f\u6703\u5f15\u767c UnicodeError\u3002

\n

sys.getfilesystemencoding() \u548c sys.getfilesystemencodeerrors() \u51fd\u5f0f\u53ef\u7528\u65bc\u53d6\u5f97\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\u3002

\n

filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09\u6703\u5728 Python \u555f\u52d5\u6642\u7531 PyConfig_Read() \u51fd\u5f0f\u4f86\u914d\u7f6e\uff1a\u8acb\u53c3\u95b1 filesystem_encoding\uff0c\u4ee5\u53ca PyConfig \u7684\u6210\u54e1 filesystem_errors\u3002

\n

\u53e6\u8acb\u53c3\u95b1 locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09\u3002

\n
\n
\n"}, "finder\uff08\u5c0b\u6aa2\u5668\uff09": {"title": "finder\uff08\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u6703\u5617\u8a66\u70ba\u6b63\u5728\u88ab import \u7684\u6a21\u7d44\u5c0b\u627e loader\uff08\u8f09\u5165\u5668\uff09\u3002

\n

There are two types of finder: meta path finders for use with sys.meta_path, and path\nentry finders for use with sys.path_hooks.

\n

See \u6a21\u7d44\u5f15\u5165\u7cfb\u7d71 and importlib for much more detail.

\n
\n
\n"}, "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09": {"title": "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09", "body": "
\n

\u5411\u4e0b\u7121\u689d\u4ef6\u6368\u53bb\u5230\u6700\u63a5\u8fd1\u6574\u6578\u7684\u6578\u5b78\u9664\u6cd5\u3002\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\u7684\u904b\u7b97\u5b50\u662f //\u3002\u4f8b\u5982\uff0c\u904b\u7b97\u5f0f 11 // 4 \u7684\u8a08\u7b97\u7d50\u679c\u70ba 2\uff0c\u8207 float\uff08\u6d6e\u9ede\u6578\uff09\u771f\u9664\u6cd5\u6240\u56de\u50b3\u7684 2.75 \u4e0d\u540c\u3002\u8acb\u6ce8\u610f\uff0c(-11) // 4 \u7684\u7d50\u679c\u662f -3\uff0c\u56e0\u70ba\u662f -2.75 \u88ab\u5411\u4e0b\u7121\u689d\u4ef6\u6368\u53bb\u3002\u8acb\u53c3\u95b1 PEP 238\u3002

\n
\n
\n"}, "function\uff08\u51fd\u5f0f\uff09": {"title": "function\uff08\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u9023\u4e32\u7684\u9673\u8ff0\u5f0f\uff0c\u5b83\u80fd\u5920\u5411\u547c\u53eb\u8005\u56de\u50b3\u4e00\u4e9b\u503c\u3002\u5b83\u4e5f\u53ef\u4ee5\u88ab\u50b3\u905e\u96f6\u500b\u6216\u591a\u500b\u5f15\u6578\uff0c\u9019\u4e9b\u5f15\u6578\u53ef\u88ab\u4f7f\u7528\u65bc\u51fd\u5f0f\u672c\u9ad4\u7684\u57f7\u884c\u3002\u53e6\u8acb\u53c3\u95b1 parameter\uff08\u53c3\u6578\uff09\u3001method\uff08\u65b9\u6cd5\uff09\uff0c\u4ee5\u53ca\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\u3002

\n
\n
\n"}, "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": {"title": "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09", "body": "
\n

\u51fd\u5f0f\u53c3\u6578\u6216\u56de\u50b3\u503c\u7684\u4e00\u500b annotation\uff08\u8a3b\u91cb\uff09\u3002

\n

\u51fd\u5f0f\u8a3b\u91cb\u901a\u5e38\u88ab\u4f7f\u7528\u65bc\u578b\u5225\u63d0\u793a\uff1a\u4f8b\u5982\uff0c\u9019\u500b\u51fd\u5f0f\u9810\u671f\u6703\u5f97\u5230\u5169\u500b int \u5f15\u6578\uff0c\u4e26\u6703\u6709\u4e00\u500b int \u56de\u50b3\u503c\uff1a

\n
def sum_two_numbers(a: int, b: int) -> int:\n   return a + b\n
\n
\n

\u51fd\u5f0f\u8a3b\u91cb\u7684\u8a9e\u6cd5\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\u6709\u8a73\u7d30\u89e3\u91cb\u3002

\n

\u8acb\u53c3\u95b1 variable annotation \u548c PEP 484\uff0c\u7686\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\uff0c\u53e6\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "__future__": {"title": "__future__", "body": "
\n

future \u9673\u8ff0\u5f0f\uff1afrom __future__ import <feature>\uff0c\u6703\u6307\u793a\u7de8\u8b6f\u5668\u4f7f\u7528\u90a3\u4e9b\u5728 Python \u672a\u4f86\u7684\u767c\u5e03\u7248\u672c\u4e2d\u5c07\u6210\u70ba\u6a19\u6e96\u7684\u8a9e\u6cd5\u6216\u8a9e\u7fa9\uff0c\u4f86\u7de8\u8b6f\u7576\u524d\u7684\u6a21\u7d44\u3002\u800c __future__ \u6a21\u7d44\u5247\u8a18\u9304\u4e86 feature\uff08\u529f\u80fd\uff09\u53ef\u80fd\u7684\u503c\u3002\u900f\u904e import \u6b64\u6a21\u7d44\u4e26\u5c0d\u5176\u8b8a\u6578\u6c42\u503c\uff0c\u4f60\u53ef\u4ee5\u770b\u898b\u4e00\u500b\u65b0\u7684\u529f\u80fd\u662f\u4f55\u6642\u9996\u6b21\u88ab\u65b0\u589e\u5230\u6b64\u8a9e\u8a00\u4e2d\uff0c\u4ee5\u53ca\u5b83\u4f55\u6642\u5c07\u6703\uff08\u6216\u5df2\u7d93\uff09\u6210\u70ba\u9810\u8a2d\u7684\u529f\u80fd\uff1a

\n
>>> import __future__\n>>> __future__.division\n_Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)\n
\n
\n
\n
\n"}, "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09": {"title": "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09", "body": "
\n

\u7576\u8a18\u61b6\u9ad4\u4e0d\u518d\u88ab\u4f7f\u7528\u6642\uff0c\u5c07\u5176\u91cb\u653e\u7684\u904e\u7a0b\u3002Python \u57f7\u884c\u5783\u573e\u56de\u6536\uff0c\u662f\u900f\u904e\u53c3\u7167\u8a08\u6578 (reference counting)\uff0c\u4ee5\u53ca\u4e00\u500b\u80fd\u5920\u6aa2\u6e2c\u548c\u4e2d\u65b7\u53c3\u7167\u5faa\u74b0 (reference cycle) \u7684\u5faa\u74b0\u5783\u573e\u56de\u6536\u5668 (cyclic garbage collector) \u4f86\u5b8c\u6210\u3002\u5783\u573e\u56de\u6536\u5668\u53ef\u4ee5\u4f7f\u7528 gc \u6a21\u7d44\u5c0d\u5176\u9032\u884c\u63a7\u5236\u3002

\n
\n
\n"}, "generator\uff08\u7522\u751f\u5668\uff09": {"title": "generator\uff08\u7522\u751f\u5668\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3 generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09\u7684\u51fd\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u6b63\u5e38\u7684\u51fd\u5f0f\uff0c\u4f46\u4e0d\u540c\u7684\u662f\u5b83\u5305\u542b\u4e86 yield \u904b\u7b97\u5f0f\uff0c\u80fd\u7522\u751f\u4e00\u7cfb\u5217\u7684\u503c\uff0c\u9019\u4e9b\u503c\u53ef\u7528\u65bc for \u8ff4\u5708\uff0c\u6216\u662f\u4ee5 next() \u51fd\u5f0f\uff0c\u6bcf\u6b21\u6aa2\u7d22\u5176\u4e2d\u7684\u4e00\u500b\u503c\u3002

\n

\u9019\u500b\u8853\u8a9e\u901a\u5e38\u7528\u4f86\u8868\u793a\u4e00\u500b\u7522\u751f\u5668\u51fd\u5f0f\uff0c\u4f46\u5728\u67d0\u4e9b\u60c5\u5883\u4e2d\uff0c\u4e5f\u53ef\u80fd\u662f\u8868\u793a\u7522\u751f\u5668\u758a\u4ee3\u5668\u3002\u842c\u4e00\u60f3\u8868\u9054\u7684\u610f\u601d\u4e0d\u5920\u6e05\u695a\uff0c\u90a3\u5c31\u4f7f\u7528\u5b8c\u6574\u7684\u8853\u8a9e\uff0c\u4ee5\u907f\u514d\u6b67\u7fa9\u3002

\n
\n
\n"}, "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": {"title": "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u7531 generator\uff08\u7522\u751f\u5668\uff09\u51fd\u5f0f\u6240\u5efa\u7acb\u7684\u7269\u4ef6\u3002

\n

\u6bcf\u500b yield \u6703\u66ab\u505c\u8655\u7406\u7a0b\u5e8f\uff0c\u4e26\u8a18\u4f4f\u4f4d\u7f6e\u57f7\u884c\u72c0\u614b\uff08\u5305\u62ec\u5340\u57df\u8b8a\u6578\u53ca\u64f1\u7f6e\u4e2d\u7684 try \u9673\u8ff0\u5f0f\uff09\u3002\u7576\u7522\u751f\u5668\u758a\u4ee3\u5668\u56de\u5fa9\u6642\uff0c\u5b83\u6703\u5f9e\u505c\u6b62\u7684\u5730\u65b9\u7e7c\u7e8c\u57f7\u884c\uff08\u8207\u90a3\u4e9b\u6bcf\u6b21\u8abf\u7528\u6642\u90fd\u8981\u91cd\u65b0\u958b\u59cb\u7684\u51fd\u5f0f\u6709\u6240\u4e0d\u540c\uff09\u3002

\n
\n
\n"}, "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09": {"title": "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3\u758a\u4ee3\u5668\u7684\u904b\u7b97\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u6b63\u5e38\u7684\u904b\u7b97\u5f0f\uff0c\u5f8c\u9762\u63a5\u8457\u4e00\u500b for \u5b50\u53e5\uff0c\u8a72\u5b50\u53e5\u5b9a\u7fa9\u4e86\u8ff4\u5708\u8b8a\u6578\u3001\u7bc4\u570d\u4ee5\u53ca\u4e00\u500b\u9078\u64c7\u6027\u7684 if \u5b50\u53e5\u3002\u8a72\u7d44\u5408\u904b\u7b97\u5f0f\u6703\u70ba\u5916\u5c64\u51fd\u5f0f\u7522\u751f\u591a\u500b\u503c\uff1a

\n
>>> sum(i*i for i in range(10))         # sum of squares 0, 1, 4, ... 81\n285\n
\n
\n
\n
\n"}, "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09": {"title": "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u7531\u591a\u500b\u51fd\u5f0f\u7d44\u6210\u7684\u51fd\u5f0f\uff0c\u8a72\u51fd\u5f0f\u6703\u5c0d\u4e0d\u540c\u7684\u578b\u5225\u5be6\u4f5c\u76f8\u540c\u7684\u904b\u7b97\u3002\u547c\u53eb\u671f\u9593\u61c9\u8a72\u4f7f\u7528\u54ea\u7a2e\u5be6\u4f5c\uff0c\u662f\u7531\u8abf\u5ea6\u6f14\u7b97\u6cd5 (dispatch algorithm) \u4f86\u6c7a\u5b9a\u3002

\n

\u53e6\u8acb\u53c3\u95b1 single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09\u8853\u8a9e\u8868\u689d\u76ee\u3001functools.singledispatch() \u88dd\u98fe\u5668\u548c PEP 443\u3002

\n
\n
\n"}, "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09": {"title": "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u88ab\u53c3\u6578\u5316 (parameterized) \u7684 type\uff08\u578b\u5225\uff09\uff1b\u901a\u5e38\u662f\u4e00\u500b \u5bb9\u5668\u578b\u5225\uff0c\u50cf\u662f list \u548c dict\u3002\u5b83\u88ab\u7528\u65bc\u578b\u5225\u63d0\u793a\u548c\u8a3b\u91cb\u3002

\n

\u8a73\u60c5\u8acb\u53c3\u95b1\u6cdb\u578b\u5225\u540d\u578b\u5225\u3001PEP 483\u3001PEP 484\u3001PEP 585 \u548c typing \u6a21\u7d44\u3002

\n
\n
\n"}, "gil": {"title": "GIL", "body": "
\n

\u8acb\u53c3\u95b1 global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09\u3002

\n
\n
\n"}, "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09": {"title": "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09", "body": "
\n

CPython \u76f4\u8b6f\u5668\u6240\u4f7f\u7528\u7684\u6a5f\u5236\uff0c\u7528\u4ee5\u78ba\u4fdd\u6bcf\u6b21\u90fd\u53ea\u6709\u4e00\u500b\u57f7\u884c\u7dd2\u80fd\u57f7\u884c Python \u7684 bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09\u3002\u900f\u904e\u4f7f\u7269\u4ef6\u6a21\u578b\uff08\u5305\u62ec\u95dc\u9375\u7684\u5167\u5efa\u578b\u5225\uff0c\u5982 dict\uff09\u81ea\u52d5\u5730\u907f\u514d\u4e26\u884c\u5b58\u53d6 (concurrent access) \u7684\u5371\u96aa\uff0c\u6b64\u6a5f\u5236\u53ef\u4ee5\u7c21\u5316 CPython \u7684\u5be6\u4f5c\u3002\u9396\u5b9a\u6574\u500b\u76f4\u8b6f\u5668\uff0c\u6703\u4f7f\u76f4\u8b6f\u5668\u66f4\u5bb9\u6613\u6210\u70ba\u591a\u57f7\u884c\u7dd2 (multi-threaded)\uff0c\u4f46\u4ee3\u50f9\u662f\u6703\u72a7\u7272\u6389\u591a\u8655\u7406\u5668\u7684\u6a5f\u5668\u80fd\u5920\u63d0\u4f9b\u7684\u4e00\u5927\u90e8\u5206\u5e73\u884c\u6027 (parallelism)\u3002

\n

\u7136\u800c\uff0c\u6709\u4e9b\u64f4\u5145\u6a21\u7d44\uff0c\u7121\u8ad6\u662f\u6a19\u6e96\u7684\u6216\u662f\u7b2c\u4e09\u65b9\u7684\uff0c\u5b83\u5011\u88ab\u8a2d\u8a08\u6210\u5728\u57f7\u884c\u58d3\u7e2e\u6216\u96dc\u6e4a\u7b49\u8a08\u7b97\u5bc6\u96c6 (computationally intensive) \u7684\u4efb\u52d9\u6642\uff0c\u53ef\u4ee5\u89e3\u9664 GIL\u3002\u53e6\u5916\uff0c\u5728\u57f7\u884c I/O \u6642\uff0cGIL \u7e3d\u662f\u6703\u88ab\u89e3\u9664\u3002

\n

\u904e\u53bb\u5c0d\u65bc\u5efa\u7acb\u300c\u7121\u9650\u5236\u57f7\u884c\u7dd2\u300d\u76f4\u8b6f\u5668\uff08\u4ee5\u66f4\u9ad8\u7684\u7cbe\u7d30\u5ea6\u9396\u5b9a\u5171\u4eab\u8cc7\u6599\u7684\u76f4\u8b6f\u5668\uff09\u7684\u52aa\u529b\u4e26\u672a\u6210\u529f\uff0c\u56e0\u70ba\u5728\u4e00\u822c\u7684\u55ae\u4e00\u8655\u7406\u5668\u60c5\u6cc1\u4e0b\uff0c\u6548\u80fd\u6703\u6709\u6240\u640d\u5931\u3002\u4e00\u822c\u8a8d\u70ba\uff0c\u82e5\u8981\u514b\u670d\u9019\u500b\u6548\u80fd\u554f\u984c\uff0c\u6703\u4f7f\u5be6\u4f5c\u8b8a\u5f97\u8907\u96dc\u8a31\u591a\uff0c\u9032\u800c\u4ed8\u51fa\u66f4\u9ad8\u7684\u7dad\u8b77\u6210\u672c\u3002

\n
\n
\n"}, "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09": {"title": "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09", "body": "
\n

\u4e00\u500b\u4f4d\u5143\u7d44\u78bc (bytecode) \u66ab\u5b58\u6a94\uff0c\u5b83\u4f7f\u7528\u96dc\u6e4a\u503c\u800c\u4e0d\u662f\u5c0d\u61c9\u539f\u59cb\u6a94\u6848\u7684\u6700\u5f8c\u4fee\u6539\u6642\u9593\uff0c\u4f86\u78ba\u5b9a\u5176\u6709\u6548\u6027\u3002\u8acb\u53c3\u95b1Cached bytecode invalidation\u3002

\n
\n
\n"}, "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09": {"title": "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09", "body": "
\n

\u5982\u679c\u4e00\u500b\u7269\u4ef6\u6709\u4e00\u500b\u96dc\u6e4a\u503c\uff0c\u8a72\u503c\u5728\u5176\u751f\u547d\u9031\u671f\u4e2d\u6c38\u4e0d\u6539\u8b8a\uff08\u5b83\u9700\u8981\u4e00\u500b __hash__() method\uff09\uff0c\u4e14\u53ef\u8207\u5176\u4ed6\u7269\u4ef6\u4e92\u76f8\u6bd4\u8f03\uff08\u5b83\u9700\u8981\u4e00\u500b __eq__() method\uff09\uff0c\u90a3\u9ebc\u5b83\u5c31\u662f\u4e00\u500b\u53ef\u96dc\u6e4a\u7269\u4ef6\u3002\u6bd4\u8f03\u7d50\u679c\u70ba\u76f8\u7b49\u7684\u591a\u500b\u53ef\u96dc\u6e4a\u7269\u4ef6\uff0c\u5b83\u5011\u5fc5\u9808\u64c1\u6709\u76f8\u540c\u7684\u96dc\u6e4a\u503c\u3002

\n

\u53ef\u96dc\u6e4a\u6027 (hashability) \u4f7f\u4e00\u500b\u7269\u4ef6\u53ef\u7528\u4f5c dictionary\uff08\u5b57\u5178\uff09\u7684\u9375\u548c set\uff08\u96c6\u5408\uff09\u7684\u6210\u54e1\uff0c\u56e0\u70ba\u9019\u4e9b\u8cc7\u6599\u7d50\u69cb\u90fd\u5728\u5176\u5167\u90e8\u4f7f\u7528\u4e86\u96dc\u6e4a\u503c\u3002

\n

\u5927\u591a\u6578\u7684 Python \u4e0d\u53ef\u8b8a\u5167\u5efa\u7269\u4ef6\u90fd\u662f\u53ef\u96dc\u6e4a\u7684\uff1b\u53ef\u8b8a\u7684\u5bb9\u5668\uff08\u4f8b\u5982 list \u6216 dictionary\uff09\u4e26\u4e0d\u662f\uff1b\u800c\u4e0d\u53ef\u8b8a\u7684\u5bb9\u5668\uff08\u4f8b\u5982 tuple\uff08\u5143\u7d44\uff09\u548c frozenset\uff09\uff0c\u53ea\u6709\u7576\u5b83\u5011\u7684\u5143\u7d20\u662f\u53ef\u96dc\u6e4a\u7684\uff0c\u5b83\u5011\u672c\u8eab\u624d\u662f\u53ef\u96dc\u6e4a\u7684\u3002\u82e5\u7269\u4ef6\u662f\u4f7f\u7528\u8005\u81ea\u5b9a class \u7684\u5be6\u4f8b\uff0c\u5247\u9019\u4e9b\u7269\u4ef6\u6703\u88ab\u9810\u8a2d\u70ba\u53ef\u96dc\u6e4a\u7684\u3002\u5b83\u5011\u5728\u4e92\u76f8\u6bd4\u8f03\u6642\u90fd\u662f\u4e0d\u76f8\u7b49\u7684\uff08\u9664\u975e\u5b83\u5011\u8207\u81ea\u5df1\u6bd4\u8f03\uff09\uff0c\u800c\u5b83\u5011\u7684\u96dc\u6e4a\u503c\u5247\u662f\u884d\u751f\u81ea\u5b83\u5011\u7684 id()\u3002

\n
\n
\n"}, "idle": {"title": "IDLE", "body": "
\n

Python \u7684 Integrated Development and Learning Environment\uff08\u6574\u5408\u958b\u767c\u8207\u5b78\u7fd2\u74b0\u5883\uff09\u3002IDLE \u662f\u4e00\u500b\u57fa\u672c\u7684\u7de8\u8f2f\u5668\u548c\u76f4\u8b6f\u5668\u74b0\u5883\uff0c\u5b83\u548c Python \u7684\u6a19\u6e96\u767c\u884c\u7248\u672c\u4e00\u8d77\u88ab\u63d0\u4f9b\u3002

\n
\n
\n"}, "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": {"title": "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u5177\u6709\u56fa\u5b9a\u503c\u7684\u7269\u4ef6\u3002\u4e0d\u53ef\u8b8a\u7269\u4ef6\u5305\u62ec\u6578\u5b57\u3001\u5b57\u4e32\u548c tuple\uff08\u5143\u7d44\uff09\u3002\u9019\u985e\u7269\u4ef6\u662f\u4e0d\u80fd\u88ab\u6539\u8b8a\u7684\u3002\u5982\u679c\u4e00\u500b\u4e0d\u540c\u7684\u503c\u5fc5\u9808\u88ab\u5132\u5b58\uff0c\u5247\u5fc5\u9808\u5efa\u7acb\u4e00\u500b\u65b0\u7684\u7269\u4ef6\u3002\u5b83\u5011\u5728\u9700\u8981\u6046\u5b9a\u96dc\u6e4a\u503c\u7684\u5730\u65b9\uff0c\u626e\u6f14\u91cd\u8981\u7684\u89d2\u8272\uff0c\u4f8b\u5982 dictionary\uff08\u5b57\u5178\uff09\u4e2d\u7684\u4e00\u500b\u9375\u3002

\n
\n
\n"}, "import path\uff08\u5f15\u5165\u8def\u5f91\uff09": {"title": "import path\uff08\u5f15\u5165\u8def\u5f91\uff09", "body": "
\n

\u4e00\u500b\u4f4d\u7f6e\uff08\u6216\u8def\u5f91\u9805\u76ee\uff09\u7684\u5217\u8868\uff0c\u800c\u90a3\u4e9b\u4f4d\u7f6e\u5c31\u662f\u5728 import \u6a21\u7d44\u6642\uff0c\u6703\u88ab path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09\u641c\u5c0b\u6a21\u7d44\u7684\u4f4d\u7f6e\u3002\u5728 import \u671f\u9593\uff0c\u6b64\u4f4d\u7f6e\u5217\u8868\u901a\u5e38\u662f\u4f86\u81ea sys.path\uff0c\u4f46\u5c0d\u65bc\u5b50\u5957\u4ef6 (subpackage) \u800c\u8a00\uff0c\u5b83\u4e5f\u53ef\u80fd\u662f\u4f86\u81ea\u7236\u5957\u4ef6\u7684 __path__ \u5c6c\u6027\u3002

\n
\n
\n"}, "importing\uff08\u5f15\u5165\uff09": {"title": "importing\uff08\u5f15\u5165\uff09", "body": "
\n

\u4e00\u500b\u904e\u7a0b\u3002\u4e00\u500b\u6a21\u7d44\u4e2d\u7684 Python \u7a0b\u5f0f\u78bc\u53ef\u4ee5\u900f\u904e\u6b64\u904e\u7a0b\uff0c\u88ab\u53e6\u4e00\u500b\u6a21\u7d44\u4e2d\u7684 Python \u7a0b\u5f0f\u78bc\u4f7f\u7528\u3002

\n
\n
\n"}, "importer\uff08\u5f15\u5165\u5668\uff09": {"title": "importer\uff08\u5f15\u5165\u5668\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u5c0b\u627e\u53ca\u8f09\u5165\u6a21\u7d44\u7684\u7269\u4ef6\uff1b\u5b83\u65e2\u662f finder\uff08\u5c0b\u6aa2\u5668\uff09\u4e5f\u662f loader\uff08\u8f09\u5165\u5668\uff09\u7269\u4ef6\u3002

\n
\n
\n"}, "interactive\uff08\u4e92\u52d5\u7684\uff09": {"title": "interactive\uff08\u4e92\u52d5\u7684\uff09", "body": "
\n

Python \u6709\u4e00\u500b\u4e92\u52d5\u5f0f\u76f4\u8b6f\u5668\uff0c\u9019\u8868\u793a\u4f60\u53ef\u4ee5\u5728\u76f4\u8b6f\u5668\u7684\u63d0\u793a\u5b57\u5143\u8f38\u5165\u9673\u8ff0\u5f0f\u548c\u904b\u7b97\u5f0f\uff0c\u7acb\u5373\u57f7\u884c\u5b83\u5011\u4e26\u4e14\u770b\u5230\u5b83\u5011\u7684\u7d50\u679c\u3002\u53ea\u8981\u555f\u52d5 python\uff0c\u4e0d\u9700\u8981\u4efb\u4f55\u5f15\u6578\uff08\u53ef\u80fd\u85c9\u7531\u5f9e\u4f60\u7684\u96fb\u8166\u7684\u4e3b\u9078\u55ae\u9078\u64c7\u5b83\uff09\u3002\u9019\u662f\u6e2c\u8a66\u65b0\u60f3\u6cd5\u6216\u6aa2\u67e5\u6a21\u584a\u548c\u5305\u7684\u975e\u5e38\u5f37\u5927\u7684\u65b9\u6cd5\uff08\u8acb\u8a18\u4f4fhelp(x)\uff09\u3002

\n
\n
\n"}, "interpreted\uff08\u76f4\u8b6f\u7684\uff09": {"title": "interpreted\uff08\u76f4\u8b6f\u7684\uff09", "body": "
\n

Python \u662f\u4e00\u7a2e\u76f4\u8b6f\u8a9e\u8a00\uff0c\u800c\u4e0d\u662f\u7de8\u8b6f\u8a9e\u8a00\uff0c\u4e0d\u904e\u9019\u500b\u5340\u5206\u53ef\u80fd\u6709\u4e9b\u6a21\u7cca\uff0c\u56e0\u70ba\u6709\u4f4d\u5143\u7d44\u78bc (bytecode) \u7de8\u8b6f\u5668\u7684\u5b58\u5728\u3002\u9019\u8868\u793a\u539f\u59cb\u6a94\u6848\u53ef\u4ee5\u76f4\u63a5\u88ab\u904b\u884c\uff0c\u800c\u4e0d\u9700\u660e\u78ba\u5730\u5efa\u7acb\u53e6\u4e00\u500b\u57f7\u884c\u6a94\uff0c\u7136\u5f8c\u518d\u57f7\u884c\u5b83\u3002\u76f4\u8b6f\u8a9e\u8a00\u901a\u5e38\u6bd4\u7de8\u8b6f\u8a9e\u8a00\u6709\u66f4\u77ed\u7684\u958b\u767c\uff0f\u9664\u932f\u9031\u671f\uff0c\u4e0d\u904e\u5b83\u5011\u7684\u7a0b\u5f0f\u901a\u5e38\u4e5f\u904b\u884c\u5f97\u8f03\u6162\u3002\u53e6\u8acb\u53c3\u95b1 interactive\uff08\u4e92\u52d5\u7684\uff09\u3002

\n
\n
\n"}, "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09": {"title": "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09", "body": "
\n

\u7576 Python \u76f4\u8b6f\u5668\u88ab\u8981\u6c42\u95dc\u9589\u6642\uff0c\u5b83\u6703\u9032\u5165\u4e00\u500b\u7279\u6b8a\u968e\u6bb5\uff0c\u5728\u6b64\u5b83\u9010\u6f38\u91cb\u653e\u6240\u6709\u88ab\u914d\u7f6e\u7684\u8cc7\u6e90\uff0c\u4f8b\u5982\u6a21\u7d44\u548c\u5404\u7a2e\u95dc\u9375\u5167\u90e8\u7d50\u69cb\u3002\u5b83\u4e5f\u6703\u591a\u6b21\u547c\u53eb\u5783\u573e\u56de\u6536\u5668 (garbage collector)\u3002\u9019\u80fd\u5920\u89f8\u767c\u4f7f\u7528\u8005\u81ea\u5b9a\u7684\u89e3\u69cb\u51fd\u5f0f (destructor) \u6216\u5f31\u5f15\u7528\u7684\u56de\u547c (weakref callback)\uff0c\u4e26\u57f7\u884c\u5176\u4e2d\u7684\u7a0b\u5f0f\u78bc\u3002\u5728\u95dc\u9589\u968e\u6bb5\u88ab\u57f7\u884c\u7684\u7a0b\u5f0f\u78bc\u6703\u9047\u5230\u5404\u7a2e\u4f8b\u5916\uff0c\u56e0\u70ba\u5b83\u6240\u4f9d\u8cf4\u7684\u8cc7\u6e90\u53ef\u80fd\u4e0d\u518d\u6709\u4f5c\u7528\u4e86\uff08\u5e38\u898b\u7684\u4f8b\u5b50\u662f\u51fd\u5f0f\u5eab\u6a21\u7d44\u6216\u662f\u8b66\u544a\u6a5f\u5236\uff09\u3002

\n

\u76f4\u8b6f\u5668\u95dc\u9589\u7684\u4e3b\u8981\u539f\u56e0\uff0c\u662f __main__ \u6a21\u7d44\u6216\u6b63\u88ab\u904b\u884c\u7684\u8173\u672c\u5df2\u7d93\u57f7\u884c\u5b8c\u6210\u3002

\n
\n
\n"}, "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": {"title": "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u7a2e\u80fd\u5920\u4e00\u6b21\u56de\u50b3\u4e00\u500b\u5176\u4e2d\u6210\u54e1\u7684\u7269\u4ef6\u3002\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u4f8b\u5b50\u5305\u62ec\u6240\u6709\u7684\u5e8f\u5217\u578b\u5225\uff08\u50cf\u662f list\u3001str \u548c tuple\uff09\u548c\u67d0\u4e9b\u975e\u5e8f\u5217\u578b\u5225\uff0c\u50cf\u662f dict\u3001\u6a94\u6848\u7269\u4ef6\uff0c\u4ee5\u53ca\u4f60\u6240\u5b9a\u7fa9\u7684\u4efb\u4f55 class \u7269\u4ef6\uff0c\u53ea\u8981\u90a3\u4e9b class \u6709 __iter__() method \u6216\u662f\u5be6\u4f5c sequence\uff08\u5e8f\u5217\uff09\u8a9e\u610f\u7684 __getitem__() method\uff0c\u8a72\u7269\u4ef6\u5c31\u662f\u53ef\u758a\u4ee3\u7269\u4ef6\u3002

\n

\u53ef\u758a\u4ee3\u7269\u4ef6\u53ef\u7528\u65bc for \u8ff4\u5708\u548c\u8a31\u591a\u5176\u4ed6\u9700\u8981\u4e00\u500b\u5e8f\u5217\u7684\u5730\u65b9 (zip()\u3001map()...)\u3002\u7576\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4f5c\u70ba\u5f15\u6578\u88ab\u50b3\u905e\u7d66\u5167\u5efa\u51fd\u5f0f iter() \u6642\uff0c\u5b83\u6703\u70ba\u8a72\u7269\u4ef6\u56de\u50b3\u4e00\u500b\u758a\u4ee3\u5668\u3002\u6b64\u758a\u4ee3\u5668\u9069\u7528\u65bc\u91dd\u5c0d\u4e00\u7d44\u503c\u9032\u884c\u4e00\u904d (one pass) \u904b\u7b97\u3002\u4f7f\u7528\u758a\u4ee3\u5668\u6642\uff0c\u901a\u5e38\u4e0d\u4e00\u5b9a\u8981\u547c\u53eb iter() \u6216\u81ea\u884c\u8655\u7406\u758a\u4ee3\u5668\u7269\u4ef6\u3002for \u9673\u8ff0\u5f0f\u6703\u81ea\u52d5\u5730\u70ba\u4f60\u8655\u7406\u9019\u4e9b\u4e8b\uff0c\u5b83\u6703\u5efa\u7acb\u4e00\u500b\u66ab\u6642\u6027\u7684\u672a\u547d\u540d\u8b8a\u6578\uff0c\u7528\u65bc\u5728\u8ff4\u5708\u671f\u9593\u4fdd\u6709\u8a72\u758a\u4ee3\u5668\u3002\u53e6\u8acb\u53c3\u95b1 iterator\uff08\u758a\u4ee3\u5668\uff09\u3001sequence\uff08\u5e8f\u5217\uff09\u548c generator\uff08\u7522\u751f\u5668\uff09\u3002

\n
\n
\n"}, "iterator\uff08\u758a\u4ee3\u5668\uff09": {"title": "iterator\uff08\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u8868\u793a\u8cc7\u6599\u6d41\u7684\u7269\u4ef6\u3002\u91cd\u8907\u5730\u547c\u53eb\u758a\u4ee3\u5668\u7684 __next__() method\uff08\u6216\u662f\u5c07\u5b83\u50b3\u905e\u7d66\u5167\u5efa\u51fd\u5f0f next()\uff09\u6703\u4f9d\u5e8f\u56de\u50b3\u8cc7\u6599\u6d41\u4e2d\u7684\u5404\u9805\u76ee\u3002\u7576\u4e0d\u518d\u6709\u8cc7\u6599\u6642\uff0c\u5247\u6703\u5f15\u767c StopIteration \u4f8b\u5916\u3002\u6b64\u6642\uff0c\u8a72\u758a\u4ee3\u5668\u7269\u4ef6\u5df2\u88ab\u7528\u76e1\uff0c\u800c\u4efb\u4f55\u5c0d\u5176 __next__() method \u7684\u9032\u4e00\u6b65\u547c\u53eb\uff0c\u90fd\u53ea\u6703\u518d\u6b21\u5f15\u767c StopIteration\u3002\u758a\u4ee3\u5668\u5fc5\u9808\u6709\u4e00\u500b __iter__() method\uff0c\u5b83\u6703\u56de\u50b3\u758a\u4ee3\u5668\u7269\u4ef6\u672c\u8eab\uff0c\u6240\u4ee5\u6bcf\u500b\u758a\u4ee3\u5668\u4e5f\u90fd\u662f\u53ef\u758a\u4ee3\u7269\u4ef6\uff0c\u4e14\u53ef\u4ee5\u7528\u65bc\u5927\u591a\u6578\u9069\u7528\u5176\u4ed6\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u5834\u5408\u3002\u4e00\u500b\u660e\u986f\u7684\u4f8b\u5916\uff0c\u662f\u5617\u8a66\u591a\u904d\u758a\u4ee3 (multiple iteration passes) \u7684\u7a0b\u5f0f\u78bc\u3002\u4e00\u500b\u5bb9\u5668\u7269\u4ef6\uff08\u50cf\u662f list\uff09\u5728\u6bcf\u6b21\u4f60\u5c07\u5b83\u50b3\u905e\u7d66 iter() \u51fd\u5f0f\u6216\u5728 for \u8ff4\u5708\u4e2d\u4f7f\u7528\u5b83\u6642\uff0c\u90fd\u6703\u7522\u751f\u4e00\u500b\u5168\u65b0\u7684\u758a\u4ee3\u5668\u3002\u4f7f\u7528\u758a\u4ee3\u5668\u5617\u8a66\u6b64\u4e8b\uff08\u591a\u904d\u758a\u4ee3\uff09\u6642\uff0c\u53ea\u6703\u56de\u50b3\u5728\u524d\u4e00\u904d\u758a\u4ee3\u4e2d\u88ab\u7528\u904e\u7684\u3001\u540c\u4e00\u500b\u5df2\u88ab\u7528\u76e1\u7684\u758a\u4ee3\u5668\u7269\u4ef6\uff0c\u4f7f\u5176\u770b\u8d77\u4f86\u5c31\u50cf\u4e00\u500b\u7a7a\u7684\u5bb9\u5668\u3002

\n

\u5728\u758a\u4ee3\u5668\u578b\u5225\u6587\u4e2d\u53ef\u4ee5\u627e\u5230\u66f4\u591a\u8cc7\u8a0a\u3002

\n
\n

CPython \u5be6\u4f5c\u7d30\u7bc0\uff1a CPython \u4e26\u4e0d\u662f\u59cb\u7d42\u5982\u4e00\u5730\u90fd\u6703\u6aa2\u67e5\u300c\u758a\u4ee3\u5668\u6709\u5b9a\u7fa9 __iter__()\u300d\u9019\u500b\u898f\u5b9a\u3002

\n
\n
\n
\n"}, "key function\uff08\u9375\u51fd\u5f0f\uff09": {"title": "key function\uff08\u9375\u51fd\u5f0f\uff09", "body": "
\n

\u9375\u51fd\u5f0f\u6216\u7406\u5e8f\u51fd\u5f0f (collation function) \u662f\u4e00\u500b\u53ef\u547c\u53eb (callable) \u51fd\u5f0f\uff0c\u5b83\u6703\u56de\u50b3\u4e00\u500b\u7528\u65bc\u6392\u5e8f (sorting) \u6216\u5b9a\u5e8f (ordering) \u7684\u503c\u3002\u4f8b\u5982\uff0clocale.strxfrm() \u88ab\u7528\u4f86\u7522\u751f\u4e00\u500b\u4e86\u89e3\u5340\u57df\u7279\u5b9a\u6392\u5e8f\u6163\u4f8b\u7684\u6392\u5e8f\u9375\u3002

\n

Python \u4e2d\u7684\u8a31\u591a\u5de5\u5177\uff0c\u90fd\u63a5\u53d7\u4ee5\u9375\u51fd\u5f0f\u4f86\u63a7\u5236\u5143\u7d20\u88ab\u5b9a\u5e8f\u6216\u5206\u7d44\u7684\u65b9\u5f0f\u3002\u5b83\u5011\u5305\u62ec min()\u3001max()\u3001sorted()\u3001list.sort()\u3001heapq.merge()\u3001heapq.nsmallest()\u3001heapq.nlargest() \u548c itertools.groupby()\u3002

\n

\u6709\u5e7e\u7a2e\u65b9\u6cd5\u53ef\u4ee5\u5efa\u7acb\u4e00\u500b\u9375\u51fd\u5f0f\u3002\u4f8b\u5982\uff0cstr.lower() method \u53ef\u4ee5\u4f5c\u70ba\u4e0d\u5206\u5927\u5c0f\u5beb\u6392\u5e8f\u7684\u9375\u51fd\u5f0f\u3002\u6216\u8005\uff0c\u4e00\u500b\u9375\u51fd\u5f0f\u4e5f\u53ef\u4ee5\u5f9e lambda \u904b\u7b97\u5f0f\u88ab\u5efa\u9020\uff0c\u4f8b\u5982 lambda r: (r[0], r[2])\u3002\u53e6\u5916\uff0coperator.attrgetter()\u3001operator.itemgetter() \u548c operator.methodcaller() \u70ba\u4e09\u500b\u9375\u51fd\u5f0f\u7684\u5efa\u69cb\u51fd\u5f0f (constructor)\u3002\u95dc\u65bc\u5982\u4f55\u5efa\u7acb\u548c\u4f7f\u7528\u9375\u51fd\u5f0f\u7684\u7bc4\u4f8b\uff0c\u8acb\u53c3\u95b1\u5982\u4f55\u6392\u5e8f\u3002

\n
\n
\n"}, "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09": {"title": "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09", "body": "
\n

\u8acb\u53c3\u95b1 argument\uff08\u5f15\u6578\uff09\u3002

\n
\n
\n"}, "lambda": {"title": "lambda", "body": "
\n

\u7531\u55ae\u4e00 expression\uff08\u904b\u7b97\u5f0f\uff09\u6240\u7d44\u6210\u7684\u4e00\u500b\u533f\u540d\u884c\u5167\u51fd\u5f0f (inline function)\uff0c\u65bc\u8a72\u51fd\u5f0f\u88ab\u547c\u53eb\u6642\u6c42\u503c\u3002\u5efa\u7acb lambda \u51fd\u5f0f\u7684\u8a9e\u6cd5\u662f lambda [parameters]: expression

\n
\n
\n"}, "lbyl": {"title": "LBYL", "body": "
\n

Look before you leap.\uff08\u4e09\u601d\u800c\u5f8c\u884c\u3002\uff09\u9019\u7a2e\u7de8\u78bc\u98a8\u683c\u6703\u5728\u9032\u884c\u547c\u53eb\u6216\u67e5\u627e\u4e4b\u524d\uff0c\u660e\u78ba\u5730\u6e2c\u8a66\u5148\u6c7a\u689d\u4ef6\u3002\u9019\u7a2e\u98a8\u683c\u8207 EAFP \u65b9\u5f0f\u5f62\u6210\u5c0d\u6bd4\uff0c\u4e14\u5b83\u7684\u7279\u8272\u662f\u6703\u6709\u8a31\u591a if \u9673\u8ff0\u5f0f\u7684\u5b58\u5728\u3002

\n

\u5728\u4e00\u500b\u591a\u57f7\u884c\u7dd2\u74b0\u5883\u4e2d\uff0cLBYL \u65b9\u5f0f\u6709\u5728\u300c\u4e09\u601d\u300d\u548c\u300c\u5f8c\u884c\u300d\u4e4b\u9593\u5f15\u5165\u4e86\u7af6\u722d\u689d\u4ef6 (race condition) \u7684\u98a8\u96aa\u3002\u4f8b\u5982\u4ee5\u4e0b\u7a0b\u5f0f\u78bc if key in mapping: return mapping[key]\uff0c\u5982\u679c\u53e6\u4e00\u500b\u57f7\u884c\u7dd2\u5728\u6e2c\u8a66\u4e4b\u5f8c\u4f46\u5728\u67e5\u627e\u4e4b\u524d\uff0c\u5f9e mapping \u4e2d\u79fb\u9664\u4e86 key\uff0c\u5247\u8a72\u7a0b\u5f0f\u78bc\u5c31\u6703\u5931\u6548\u3002\u9019\u500b\u554f\u984c\u53ef\u4ee5\u7528\u9396 (lock) \u6216\u4f7f\u7528 EAFP \u7de8\u78bc\u65b9\u5f0f\u4f86\u89e3\u6c7a\u3002

\n
\n
\n"}, "list\uff08\u4e32\u5217\uff09": {"title": "list\uff08\u4e32\u5217\uff09", "body": "
\n

\u4e00\u500b Python \u5167\u5efa\u7684 sequence \uff08\u5e8f\u5217\uff09\u3002\u5118\u7ba1\u5b83\u7684\u540d\u5b57\u662f list\uff0c\u5b83\u5176\u5be6\u66f4\u985e\u4f3c\u5176\u4ed6\u8a9e\u8a00\u4e2d\u7684\u4e00\u500b\u9663\u5217 (array) \u800c\u8f03\u4e0d\u50cf\u4e00\u500b\u93c8\u7d50\u4e32\u5217 (linked list)\uff0c\u56e0\u70ba\u5b58\u53d6\u5143\u7d20\u7684\u6642\u9593\u8907\u96dc\u5ea6\u662f O(1)\u3002

\n
\n
\n"}, "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": {"title": "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7528\u4f86\u8655\u7406\u4e00\u500b\u5e8f\u5217\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b list \u56de\u50b3\u7684\u7c21\u8981\u65b9\u6cd5\u3002result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0] \u6703\u7522\u751f\u4e00\u500b\u5b57\u4e32 list\uff0c\u5176\u4e2d\u5305\u542b 0 \u5230 255 \u7bc4\u570d\u5167\uff0c\u6240\u6709\u5076\u6578\u7684\u5341\u516d\u9032\u4f4d\u6578 (0x..)\u3002if \u5b50\u53e5\u662f\u9078\u64c7\u6027\u7684\u3002\u5982\u679c\u7701\u7565\u5b83\uff0c\u5247 range(256) \u4e2d\u7684\u6240\u6709\u5143\u7d20\u90fd\u6703\u88ab\u8655\u7406\u3002

\n
\n
\n"}, "loader\uff08\u8f09\u5165\u5668\uff09": {"title": "loader\uff08\u8f09\u5165\u5668\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8f09\u5165\u6a21\u7d44\u7684\u7269\u4ef6\u3002\u5b83\u5fc5\u9808\u5b9a\u7fa9\u4e00\u500b\u540d\u70ba load_module() \u7684 method\uff08\u65b9\u6cd5\uff09\u3002\u8f09\u5165\u5668\u901a\u5e38\u662f\u88ab finder\uff08\u5c0b\u6aa2\u5668\uff09\u56de\u50b3\u3002\u66f4\u591a\u7d30\u7bc0\u8acb\u53c3\u95b1 PEP 302\uff0c\u95dc\u65bc abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09\uff0c\u8acb\u53c3\u95b1 importlib.abc.Loader\u3002

\n
\n
\n"}, "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09": {"title": "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09", "body": "
\n

\u5728 Unix \u4e0a\uff0c\u5b83\u662f LC_CTYPE \u5340\u57df\u8a2d\u5b9a\u7684\u7de8\u78bc\u3002\u5b83\u53ef\u4ee5\u7528 locale.setlocale(locale.LC_CTYPE, new_locale) \u4f86\u8a2d\u5b9a\u3002

\n

\u5728 Windows \u4e0a\uff0c\u5b83\u662f ANSI \u4ee3\u78bc\u9801\uff08code page\uff0c\u4f8b\u5982 "cp1252"\uff09\u3002

\n

\u5728 Android \u548c VxWorks \u4e0a\uff0cPython \u4f7f\u7528 "utf-8" \u4f5c\u70ba\u5340\u57df\u7de8\u78bc\u3002

\n

locale.getencoding() \u53ef\u4ee5\u7528\u4f86\u53d6\u5f97\u5340\u57df\u7de8\u78bc\u3002

\n

\u4e5f\u8acb\u53c3\u8003 filesystem encoding and error handler\u3002

\n
\n
\n"}, "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09": {"title": "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09", "body": "
\n

special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09\u7684\u4e00\u500b\u975e\u6b63\u5f0f\u540c\u7fa9\u8a5e\u3002

\n
\n
\n"}, "mapping\uff08\u5c0d\u6620\uff09": {"title": "mapping\uff08\u5c0d\u6620\uff09", "body": "
\n

\u4e00\u500b\u5bb9\u5668\u7269\u4ef6\uff0c\u5b83\u652f\u63f4\u4efb\u610f\u9375\u7684\u67e5\u627e\uff0c\u4e14\u80fd\u5be6\u4f5c abstract base classes\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09\u4e2d\uff0ccollections.abc.Mapping \u6216 collections.abc.MutableMapping \u6240\u6307\u5b9a\u7684 method\u3002\u7bc4\u4f8b\u5305\u62ec dict\u3001collections.defaultdict\u3001collections.OrderedDict \u548c collections.Counter\u3002

\n
\n
\n"}, "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09": {"title": "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u4e00\u7a2e\u7d93\u7531\u641c\u5c0b sys.meta_path \u800c\u56de\u50b3\u7684 finder\uff08\u5c0b\u6aa2\u5668\uff09\u3002\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\u8207\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668 (path entry finder) \u76f8\u95dc\u4f46\u662f\u4e0d\u540c\u3002

\n

\u95dc\u65bc\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\u5be6\u4f5c\u7684 method\uff0c\u8acb\u53c3\u95b1 importlib.abc.MetaPathFinder\u3002

\n
\n
\n"}, "metaclass\uff08\u5143\u985e\u5225\uff09": {"title": "metaclass\uff08\u5143\u985e\u5225\uff09", "body": "
\n

\u4e00\u7a2e class \u7684 class\u3002Class \u5b9a\u7fa9\u904e\u7a0b\u6703\u5efa\u7acb\u4e00\u500b class \u540d\u7a31\u3001\u4e00\u500b class dictionary\uff08\u5b57\u5178\uff09\uff0c\u4ee5\u53ca\u4e00\u500b base class\uff08\u57fa\u5e95\u985e\u5225\uff09\u7684\u5217\u8868\u3002Metaclass \u8ca0\u8cac\u63a5\u53d7\u9019\u4e09\u500b\u5f15\u6578\uff0c\u4e26\u5efa\u7acb\u8a72 class\u3002\u5927\u591a\u6578\u7684\u7269\u4ef6\u5c0e\u5411\u7a0b\u5f0f\u8a9e\u8a00\u6703\u63d0\u4f9b\u4e00\u500b\u9810\u8a2d\u7684\u5be6\u4f5c\u3002Python \u7684\u7279\u5225\u4e4b\u8655\u5728\u65bc\u5b83\u80fd\u5920\u5efa\u7acb\u81ea\u8a02\u7684 metaclass\u3002\u5927\u90e8\u5206\u7684\u4f7f\u7528\u8005\u5f9e\u672a\u9700\u8981\u6b64\u5de5\u5177\uff0c\u4f46\u662f\u7576\u9700\u8981\u6642\uff0cmetaclass \u53ef\u4ee5\u63d0\u4f9b\u5f37\u5927\u4e14\u512a\u96c5\u7684\u89e3\u6c7a\u65b9\u6848\u3002\u5b83\u5011\u5df2\u88ab\u7528\u65bc\u8a18\u9304\u5c6c\u6027\u5b58\u53d6\u3001\u589e\u52a0\u57f7\u884c\u7dd2\u5b89\u5168\u6027\u3001\u8ffd\u8e64\u7269\u4ef6\u5efa\u7acb\u3001\u5be6\u4f5c\u55ae\u4f8b\u6a21\u5f0f (singleton)\uff0c\u4ee5\u53ca\u8a31\u591a\u5176\u4ed6\u7684\u4efb\u52d9\u3002

\n

\u66f4\u591a\u8cc7\u8a0a\u53ef\u4ee5\u5728Metaclasses\u7ae0\u7bc0\u4e2d\u627e\u5230\u3002

\n
\n
\n"}, "method\uff08\u65b9\u6cd5\uff09": {"title": "method\uff08\u65b9\u6cd5\uff09", "body": "
\n

\u4e00\u500b\u5728 class \u672c\u9ad4\u5167\u88ab\u5b9a\u7fa9\u7684\u51fd\u5f0f\u3002\u5982\u679c method \u4f5c\u70ba\u5176 class \u5be6\u4f8b\u7684\u4e00\u500b\u5c6c\u6027\u88ab\u547c\u53eb\uff0c\u5247\u5b83\u5c07\u6703\u5f97\u5230\u8a72\u5be6\u4f8b\u7269\u4ef6\u6210\u70ba\u5b83\u7684\u7b2c\u4e00\u500b argument\uff08\u5f15\u6578\uff09\uff08\u6b64\u5f15\u6578\u901a\u5e38\u88ab\u7a31\u70ba self\uff09\u3002\u8acb\u53c3\u95b1 function\uff08\u51fd\u5f0f\uff09\u548c nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09\u3002

\n
\n
\n"}, "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09": {"title": "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09", "body": "
\n

\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\u662f\u5728\u67e5\u627e\u67d0\u500b\u6210\u54e1\u7684\u904e\u7a0b\u4e2d\uff0cbase class\uff08\u57fa\u5e95\u985e\u5225\uff09\u88ab\u641c\u5c0b\u7684\u9806\u5e8f\u3002\u95dc\u65bc Python \u81ea 2.3 \u7248\u76f4\u8b6f\u5668\u6240\u4f7f\u7528\u7684\u6f14\u7b97\u6cd5\u7d30\u7bc0\uff0c\u8acb\u53c3\u95b1 The Python 2.3 Method Resolution Order\u3002

\n
\n
\n"}, "module\uff08\u6a21\u7d44\uff09": {"title": "module\uff08\u6a21\u7d44\uff09", "body": "
\n

\u4e00\u500b\u64d4\u4efb Python \u7a0b\u5f0f\u78bc\u7684\u7d44\u7e54\u55ae\u4f4d (organizational unit) \u7684\u7269\u4ef6\u3002\u6a21\u7d44\u6709\u4e00\u500b\u547d\u540d\u7a7a\u9593\uff0c\u5b83\u5305\u542b\u4efb\u610f\u7684 Python \u7269\u4ef6\u3002\u6a21\u7d44\u662f\u85c9\u7531 importing \u7684\u904e\u7a0b\uff0c\u88ab\u8f09\u5165\u81f3 Python\u3002

\n

\u53e6\u8acb\u53c3\u95b1 package\uff08\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09": {"title": "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09", "body": "
\n

\u4e00\u500b\u547d\u540d\u7a7a\u9593\uff0c\u5b83\u5305\u542b\u7528\u65bc\u8f09\u5165\u6a21\u7d44\u7684 import \u76f8\u95dc\u8cc7\u8a0a\u3002\u5b83\u662f importlib.machinery.ModuleSpec \u7684\u4e00\u500b\u5be6\u4f8b\u3002

\n
\n
\n"}, "mro": {"title": "MRO", "body": "
\n

\u8acb\u53c3\u95b1 method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09\u3002

\n
\n
\n"}, "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": {"title": "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09", "body": "
\n

\u53ef\u8b8a\u7269\u4ef6\u53ef\u4ee5\u6539\u8b8a\u5b83\u5011\u7684\u503c\uff0c\u4f46\u7dad\u6301\u5b83\u5011\u7684 id()\u3002\u53e6\u8acb\u53c3\u95b1 immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09\u3002

\n
\n
\n"}, "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09": {"title": "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09", "body": "
\n

\u8853\u8a9e\u300cnamed tuple\uff08\u9644\u540d\u5143\u7d44\uff09\u300d\u662f\u6307\u5f9e tuple \u7e7c\u627f\u7684\u4efb\u4f55\u578b\u5225\u6216 class\uff0c\u4e14\u5b83\u7684\u53ef\u7d22\u5f15 (indexable) \u5143\u7d20\u4e5f\u53ef\u4ee5\u7528\u9644\u540d\u5c6c\u6027\u4f86\u5b58\u53d6\u3002\u9019\u4e9b\u578b\u5225\u6216 class \u4e5f\u53ef\u4ee5\u5177\u6709\u5176\u4ed6\u7684\u7279\u6027\u3002

\n

\u6709\u4e9b\u5167\u5efa\u578b\u5225\u662f named tuple\uff0c\u5305\u62ec\u7531 time.localtime() \u548c os.stat() \u56de\u50b3\u7684\u503c\u3002\u53e6\u4e00\u500b\u4f8b\u5b50\u662f sys.float_info\uff1a

\n
>>> sys.float_info[1]                   # indexed access\n1024\n>>> sys.float_info.max_exp              # named field access\n1024\n>>> isinstance(sys.float_info, tuple)   # kind of tuple\nTrue\n
\n
\n

\u6709\u4e9b named tuple \u662f\u5167\u5efa\u578b\u5225\uff08\u5982\u4e0a\u4f8b\uff09\u3002\u6216\u8005\uff0c\u4e00\u500b named tuple \u4e5f\u53ef\u4ee5\u5f9e\u4e00\u500b\u6b63\u898f\u7684 class \u5b9a\u7fa9\u4f86\u5efa\u7acb\uff0c\u53ea\u8981\u8a72 class \u662f\u7e7c\u627f\u81ea tuple\uff0c\u4e14\u5b9a\u7fa9\u4e86\u9644\u540d\u6b04\u4f4d (named field) \u5373\u53ef\u3002\u9019\u985e\u7684 class \u53ef\u4ee5\u624b\u5de5\u7de8\u5beb\u3001\u53ef\u4ee5\u7e7c\u627f\u81ea typing.NamedTuple \u4f86\u5efa\u7acb\uff0c\u4e5f\u53ef\u4ee5\u4f7f\u7528\u5de5\u5ee0\u51fd\u5f0f (factory function) collections.namedtuple() \u4f86\u5efa\u7acb\u3002\u5f8c\u8005\u6280\u8853\u4e5f\u589e\u52a0\u4e86\u4e00\u4e9b\u984d\u5916\u7684 method\uff0c\u9019\u4e9b method \u53ef\u80fd\u662f\u5728\u624b\u5beb\u6216\u5167\u5efa\u7684 named tuple \u4e2d\uff0c\u7121\u6cd5\u627e\u5230\u7684\u3002

\n
\n
\n"}, "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09": {"title": "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09", "body": "
\n

\u8b8a\u6578\u88ab\u5132\u5b58\u7684\u5730\u65b9\u3002\u547d\u540d\u7a7a\u9593\u662f\u4ee5 dictionary\uff08\u5b57\u5178\uff09\u88ab\u5be6\u4f5c\u3002\u6709\u5340\u57df\u7684\u3001\u5168\u57df\u7684\u53ca\u5167\u5efa\u7684\u547d\u540d\u7a7a\u9593\uff0c\u800c\u5728\u7269\u4ef6\u4e2d\uff08\u5728 method \u4e2d\uff09\u4e5f\u6709\u5de2\u72c0\u7684\u547d\u540d\u7a7a\u9593\u3002\u547d\u540d\u7a7a\u9593\u85c9\u7531\u9632\u6b62\u547d\u540d\u885d\u7a81\uff0c\u4f86\u652f\u63f4\u6a21\u7d44\u5316\u3002\u4f8b\u5982\uff0c\u51fd\u5f0f builtins.open \u548c os.open() \u662f\u900f\u904e\u5b83\u5011\u7684\u547d\u540d\u7a7a\u9593\u4f86\u5340\u5206\u5f7c\u6b64\u3002\u547d\u540d\u7a7a\u9593\u4e5f\u85c9\u7531\u660e\u78ba\u5730\u5340\u5206\u662f\u54ea\u500b\u6a21\u7d44\u5728\u5be6\u4f5c\u4e00\u500b\u51fd\u5f0f\uff0c\u4f86\u589e\u9032\u53ef\u8b80\u6027\u53ca\u53ef\u7dad\u8b77\u6027\u3002\u4f8b\u5982\uff0c\u5beb\u51fa random.seed() \u6216 itertools.islice() \u660e\u78ba\u5730\u8868\u793a\uff0c\u9019\u4e9b\u51fd\u5f0f\u5206\u5225\u662f\u7531 random \u548c itertools \u6a21\u7d44\u5728\u5be6\u4f5c\u3002

\n
\n
\n"}, "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09": {"title": "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b PEP 420 package\uff08\u5957\u4ef6\uff09\uff0c\u5b83\u53ea\u80fd\u4f5c\u70ba\u5b50\u5957\u4ef6 (subpackage) \u7684\u4e00\u500b\u5bb9\u5668\u3002\u547d\u540d\u7a7a\u9593\u5957\u4ef6\u53ef\u80fd\u6c92\u6709\u5be6\u9ad4\u7684\u8868\u793a\u6cd5\uff0c\u800c\u4e14\u5177\u9ad4\u4f86\u8aaa\u5b83\u5011\u4e0d\u50cf\u662f\u4e00\u500b regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09\uff0c\u56e0\u70ba\u5b83\u5011\u4e26\u6c92\u6709 __init__.py \u9019\u500b\u6a94\u6848\u3002

\n

\u53e6\u8acb\u53c3\u95b1 module\uff08\u6a21\u7d44\uff09\u3002

\n
\n
\n"}, "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09": {"title": "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09", "body": "
\n

\u80fd\u5920\u53c3\u7167\u5916\u5c64\u5b9a\u7fa9 (enclosing definition) \u4e2d\u7684\u8b8a\u6578\u7684\u80fd\u529b\u3002\u8209\u4f8b\u4f86\u8aaa\uff0c\u4e00\u500b\u51fd\u5f0f\u5982\u679c\u662f\u5728\u53e6\u4e00\u500b\u51fd\u5f0f\u4e2d\u88ab\u5b9a\u7fa9\uff0c\u5247\u5b83\u4fbf\u80fd\u5920\u53c3\u7167\u5916\u5c64\u51fd\u5f0f\u4e2d\u7684\u8b8a\u6578\u3002\u8acb\u6ce8\u610f\uff0c\u5728\u9810\u8a2d\u60c5\u6cc1\u4e0b\uff0c\u5de2\u72c0\u4f5c\u7528\u57df\u50c5\u9069\u7528\u65bc\u53c3\u7167\uff0c\u800c\u7121\u6cd5\u7528\u65bc\u8ce6\u503c\u3002\u5340\u57df\u8b8a\u6578\u80fd\u5728\u6700\u5167\u5c64\u4f5c\u7528\u57df\u4e2d\u8b80\u53d6\u53ca\u5beb\u5165\u3002\u540c\u6a23\u5730\uff0c\u5168\u57df\u8b8a\u6578\u662f\u5728\u5168\u57df\u547d\u540d\u7a7a\u9593\u4e2d\u8b80\u53d6\u53ca\u5beb\u5165\u3002nonlocal \u5bb9\u8a31\u5c0d\u5916\u5c64\u4f5c\u7528\u57df\u9032\u884c\u5beb\u5165\u3002

\n
\n
\n"}, "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09": {"title": "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09", "body": "
\n

\u4e00\u500b\u820a\u540d\uff0c\u5b83\u662f\u6307\u73fe\u5728\u6240\u6709\u7684 class \u7269\u4ef6\u6240\u4f7f\u7528\u7684 class \u98a8\u683c\u3002\u5728\u65e9\u671f\u7684 Python \u7248\u672c\u4e2d\uff0c\u53ea\u6709\u65b0\u5f0f class \u624d\u80fd\u4f7f\u7528 Python \u8f03\u65b0\u7684\u3001\u591a\u6a23\u7684\u529f\u80fd\uff0c\u50cf\u662f __slots__\u3001\u63cf\u8ff0\u5668 (descriptor)\u3001\u5c6c\u6027 (property)\u3001__getattribute__()\u3001class method\uff08\u985e\u5225\u65b9\u6cd5\uff09\u548c static method\uff08\u975c\u614b\u65b9\u6cd5\uff09\u3002

\n
\n
\n"}, "object\uff08\u7269\u4ef6\uff09": {"title": "object\uff08\u7269\u4ef6\uff09", "body": "
\n

\u5177\u6709\u72c0\u614b\uff08\u5c6c\u6027\u6216\u503c\uff09\u53ca\u88ab\u5b9a\u7fa9\u7684\u884c\u70ba\uff08method\uff09\u7684\u4efb\u4f55\u8cc7\u6599\u3002\u5b83\u4e5f\u662f\u4efb\u4f55 new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09\u7684\u6700\u7d42 base class\uff08\u57fa\u5e95\u985e\u5225\uff09\u3002

\n
\n
\n"}, "package\uff08\u5957\u4ef6\uff09": {"title": "package\uff08\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b Python \u7684 module\uff08\u6a21\u7d44\uff09\uff0c\u5b83\u53ef\u4ee5\u5305\u542b\u5b50\u6a21\u7d44 (submodule) \u6216\u662f\u905e\u8ff4\u7684\u5b50\u5957\u4ef6 (subpackage)\u3002\u6280\u8853\u4e0a\u800c\u8a00\uff0c\u5957\u4ef6\u5c31\u662f\u5177\u6709 __path__ \u5c6c\u6027\u7684\u4e00\u500b Python \u6a21\u7d44\u3002

\n

\u53e6\u8acb\u53c3\u95b1 regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09\u548c namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "parameter\uff08\u53c3\u6578\uff09": {"title": "parameter\uff08\u53c3\u6578\uff09", "body": "
\n

\u5728 function\uff08\u51fd\u5f0f\uff09\u6216 method \u5b9a\u7fa9\u4e2d\u7684\u4e00\u500b\u547d\u540d\u5be6\u9ad4 (named entity)\uff0c\u5b83\u6307\u660e\u8a72\u51fd\u5f0f\u80fd\u5920\u63a5\u53d7\u7684\u4e00\u500b argument\uff08\u5f15\u6578\uff09\uff0c\u6216\u5728\u67d0\u4e9b\u60c5\u6cc1\u4e0b\u6307\u793a\u591a\u500b\u5f15\u6578\u3002\u5171\u6709\u6709\u4e94\u7a2e\u4e0d\u540c\u7684\u53c3\u6578\u985e\u578b\uff1a

\n
    \n
  • positional-or-keyword\uff08\u4f4d\u7f6e\u6216\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ef\u4ee5\u6309\u7167\u4f4d\u7f6e\u6216\u662f\u4f5c\u70ba\u95dc\u9375\u5b57\u5f15\u6578\u88ab\u50b3\u905e\u7684\u5f15\u6578\u3002\u9019\u662f\u53c3\u6578\u7684\u9810\u8a2d\u985e\u578b\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 foo \u548c bar\uff1a

    \n
    def func(foo, bar=None): ...\n
    \n
    \n
  • \n
\n
    \n
  • positional-only\uff08\u50c5\u9650\u4f4d\u7f6e\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ea\u80fd\u6309\u7167\u4f4d\u7f6e\u88ab\u63d0\u4f9b\u7684\u5f15\u6578\u3002\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7684\u53c3\u6578\u5217\u8868\u4e2d\u5305\u542b\u4e00\u500b / \u5b57\u5143\uff0c\u5c31\u53ef\u4ee5\u5728\u8a72\u5b57\u5143\u524d\u9762\u5b9a\u7fa9\u50c5\u9650\u4f4d\u7f6e\u53c3\u6578\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 posonly1 \u548c posonly2\uff1a

    \n
    def func(posonly1, posonly2, /, positional_or_keyword): ...\n
    \n
    \n
  • \n
\n
    \n
  • keyword-only\uff08\u50c5\u9650\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ea\u80fd\u4ee5\u95dc\u9375\u5b57\u88ab\u63d0\u4f9b\u7684\u5f15\u6578\u3002\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7684\u53c3\u6578\u5217\u8868\u4e2d\uff0c\u5305\u542b\u4e00\u500b\u4efb\u610f\u6578\u91cf\u4f4d\u7f6e\u53c3\u6578 (var-positional parameter) \u6216\u662f\u55ae\u7d14\u7684 * \u5b57\u5143\uff0c\u5c31\u53ef\u4ee5\u5728\u5176\u5f8c\u65b9\u5b9a\u7fa9\u50c5\u9650\u95dc\u9375\u5b57\u53c3\u6578\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 kw_only1 \u548c kw_only2\uff1a

    \n
    def func(arg, *, kw_only1, kw_only2): ...\n
    \n
    \n
  • \n
  • var-positional\uff08\u4efb\u610f\u6578\u91cf\u4f4d\u7f6e\uff09\uff1a\u6307\u660e\u4e00\u4e32\u80fd\u4ee5\u4efb\u610f\u5e8f\u5217\u88ab\u63d0\u4f9b\u7684\u4f4d\u7f6e\u5f15\u6578\uff08\u5728\u5df2\u88ab\u5176\u4ed6\u53c3\u6578\u63a5\u53d7\u7684\u4efb\u4f55\u4f4d\u7f6e\u5f15\u6578\u4e4b\u5916\uff09\u3002\u9019\u985e\u53c3\u6578\u662f\u900f\u904e\u5728\u5176\u53c3\u6578\u540d\u7a31\u5b57\u9996\u52a0\u4e0a * \u4f86\u5b9a\u7fa9\u7684\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 args\uff1a

    \n
    def func(*args, **kwargs): ...\n
    \n
    \n
  • \n
  • var-keyword\uff08\u4efb\u610f\u6578\u91cf\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u53ef\u88ab\u63d0\u4f9b\u7684\u4efb\u610f\u6578\u91cf\u95dc\u9375\u5b57\u5f15\u6578\uff08\u5728\u5df2\u88ab\u5176\u4ed6\u53c3\u6578\u63a5\u53d7\u7684\u4efb\u4f55\u95dc\u9375\u5b57\u5f15\u6578\u4e4b\u5916\uff09\u3002\u9019\u985e\u53c3\u6578\u662f\u900f\u904e\u5728\u5176\u53c3\u6578\u540d\u7a31\u5b57\u9996\u52a0\u4e0a ** \u4f86\u5b9a\u7fa9\u7684\uff0c\u4f8b\u5982\u4e0a\u9762\u7bc4\u4f8b\u4e2d\u7684 kwargs\u3002

  • \n
\n

\u53c3\u6578\u53ef\u4ee5\u6307\u660e\u5f15\u6578\u662f\u9078\u64c7\u6027\u7684\u6216\u5fc5\u9700\u7684\uff0c\u4e5f\u53ef\u4ee5\u70ba\u4e00\u4e9b\u9078\u64c7\u6027\u7684\u5f15\u6578\u6307\u5b9a\u9810\u8a2d\u503c\u3002

\n

\u53e6\u8acb\u53c3\u95b1\u8853\u8a9e\u8868\u7684 argument\uff08\u5f15\u6578\uff09\u689d\u76ee\u3001\u5e38\u898b\u554f\u984c\u4e2d\u7684\u5f15\u6578\u548c\u53c3\u6578\u4e4b\u9593\u7684\u5dee\u7570\u3001inspect.Parameter class\u3001\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\uff0c\u4ee5\u53ca PEP 362\u3002

\n
\n
\n"}, "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09": {"title": "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09", "body": "
\n

\u5728 import path\uff08\u5f15\u5165\u8def\u5f91\uff09\u4e2d\u7684\u4e00\u500b\u4f4d\u7f6e\uff0c\u800c path based finder \uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09\u6703\u53c3\u8003\u8a72\u4f4d\u7f6e\u4f86\u5c0b\u627e\u8981 import \u7684\u6a21\u7d44\u3002

\n
\n
\n"}, "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09": {"title": "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u88ab sys.path_hooks \u4e2d\u7684\u4e00\u500b\u53ef\u547c\u53eb\u7269\u4ef6 (callable)\uff08\u610f\u5373\u4e00\u500b path entry hook\uff09\u6240\u56de\u50b3\u7684\u4e00\u7a2e finder\uff0c\u5b83\u77e5\u9053\u5982\u4f55\u4ee5\u4e00\u500b path entry\u5b9a\u4f4d\u6a21\u7d44\u3002

\n

\u95dc\u65bc\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\u5be6\u4f5c\u7684 method\uff0c\u8acb\u53c3\u95b1 importlib.abc.PathEntryFinder\u3002

\n
\n
\n"}, "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09": {"title": "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09", "body": "
\n

\u5728 sys.path_hooks \u5217\u8868\u4e2d\u7684\u4e00\u500b\u53ef\u547c\u53eb\u7269\u4ef6 (callable)\uff0c\u82e5\u5b83\u77e5\u9053\u5982\u4f55\u5728\u4e00\u500b\u7279\u5b9a\u7684 path entry \u4e2d\u5c0b\u627e\u6a21\u7d44\uff0c\u5247\u6703\u56de\u50b3\u4e00\u500b path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09\u3002

\n
\n
\n"}, "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09": {"title": "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u9810\u8a2d\u7684\u5143\u8def\u5f91\u5c0b\u6aa2\u5668 (meta path finder) \u4e4b\u4e00\uff0c\u5b83\u6703\u5728\u4e00\u500b import path \u4e2d\u641c\u5c0b\u6a21\u7d44\u3002

\n
\n
\n"}, "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09": {"title": "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u8868\u793a\u6a94\u6848\u7cfb\u7d71\u8def\u5f91\u7684\u7269\u4ef6\u3002\u985e\u8def\u5f91\u7269\u4ef6\u53ef\u4ee5\u662f\u4e00\u500b\u8868\u793a\u8def\u5f91\u7684 str \u6216 bytes \u7269\u4ef6\uff0c\u6216\u662f\u4e00\u500b\u5be6\u4f5c os.PathLike \u5354\u5b9a\u7684\u7269\u4ef6\u3002\u900f\u904e\u547c\u53eb os.fspath() \u51fd\u5f0f\uff0c\u4e00\u500b\u652f\u63f4 os.PathLike \u5354\u5b9a\u7684\u7269\u4ef6\u53ef\u4ee5\u88ab\u8f49\u63db\u70ba str \u6216 bytes \u6a94\u6848\u7cfb\u7d71\u8def\u5f91\uff1b\u800c os.fsdecode() \u53ca os.fsencode() \u5247\u5206\u5225\u53ef\u7528\u65bc\u78ba\u4fdd str \u53ca bytes \u7684\u7d50\u679c\u3002\u7531 PEP 519 \u5f15\u5165\u3002

\n
\n
\n"}, "pep": {"title": "PEP", "body": "
\n

Python Enhancement Proposal\uff08Python \u589e\u5f37\u63d0\u6848\uff09\u3002PEP \u662f\u4e00\u4efd\u8a2d\u8a08\u8aaa\u660e\u6587\u4ef6\uff0c\u5b83\u80fd\u70ba Python \u793e\u7fa4\u63d0\u4f9b\u8cc7\u8a0a\uff0c\u6216\u662f\u63cf\u8ff0 Python \u7684\u4e00\u500b\u65b0\u529f\u80fd\u6216\u8a72\u529f\u80fd\u7684\u7a0b\u5e8f\u548c\u74b0\u5883\u3002PEP \u61c9\u8a72\u8981\u63d0\u4f9b\u7c21\u6f54\u7684\u6280\u8853\u898f\u7bc4\u4ee5\u53ca\u88ab\u63d0\u6848\u529f\u80fd\u7684\u904b\u4f5c\u539f\u7406\u3002

\n

PEP \u7684\u5b58\u5728\u76ee\u7684\uff0c\u662f\u8981\u6210\u70ba\u91cd\u5927\u65b0\u529f\u80fd\u7684\u63d0\u6848\u3001\u793e\u7fa4\u4e2d\u95dc\u65bc\u67d0\u500b\u554f\u984c\u7684\u610f\u898b\u6536\u96c6\uff0c\u4ee5\u53ca\u5df2\u7d0d\u5165 Python \u7684\u8a2d\u8a08\u6c7a\u7b56\u7684\u8a18\u9304\uff0c\u9019\u4e9b\u904e\u7a0b\u7684\u4e3b\u8981\u6a5f\u5236\u3002PEP \u7684\u4f5c\u8005\u8981\u8ca0\u8cac\u5728\u793e\u7fa4\u5167\u5efa\u7acb\u5171\u8b58\u4e26\u8a18\u9304\u53cd\u5c0d\u610f\u898b\u3002

\n

\u8acb\u53c3\u95b1 PEP 1\u3002

\n
\n
\n"}, "portion\uff08\u90e8\u5206\uff09": {"title": "portion\uff08\u90e8\u5206\uff09", "body": "
\n

\u5728\u55ae\u4e00\u76ee\u9304\u4e2d\u7684\u4e00\u7d44\u6a94\u6848\uff08\u4e5f\u53ef\u80fd\u5132\u5b58\u5728\u4e00\u500b zip \u6a94\u4e2d\uff09\uff0c\u9019\u4e9b\u6a94\u6848\u80fd\u5c0d\u4e00\u500b\u547d\u540d\u7a7a\u9593\u5957\u4ef6 (namespace package) \u6709\u6240\u8ca2\u737b\uff0c\u5982\u540c PEP 420 \u4e2d\u7684\u5b9a\u7fa9\u3002

\n
\n
\n"}, "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09": {"title": "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09", "body": "
\n

\u8acb\u53c3\u95b1 argument\uff08\u5f15\u6578\uff09\u3002

\n
\n
\n"}, "provisional api\uff08\u66ab\u884c api\uff09": {"title": "provisional API\uff08\u66ab\u884c API\uff09", "body": "
\n

\u66ab\u884c API \u662f\u6307\uff0c\u5f9e\u6a19\u6e96\u51fd\u5f0f\u5eab\u7684\u5411\u5f8c\u76f8\u5bb9\u6027 (backwards compatibility) \u4fdd\u8b49\u4e2d\uff0c\u6545\u610f\u88ab\u6392\u9664\u7684 API\u3002\u96d6\u7136\u6b64\u985e\u4ecb\u9762\uff0c\u53ea\u8981\u5b83\u5011\u88ab\u6a19\u793a\u70ba\u66ab\u884c\u7684\uff0c\u7406\u8ad6\u4e0a\u4e26\u4e0d\u6703\u6709\u91cd\u5927\u7684\u8b8a\u66f4\uff0c\u4f46\u5982\u679c\u6838\u5fc3\u958b\u767c\u4eba\u54e1\u8a8d\u70ba\u6709\u5fc5\u8981\uff0c\u4e5f\u53ef\u80fd\u6703\u51fa\u73fe\u5411\u5f8c\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\uff08\u751a\u81f3\u5305\u62ec\u79fb\u9664\u8a72\u4ecb\u9762\uff09\u3002\u9019\u7a2e\u8b8a\u66f4\u4e26\u4e0d\u6703\u7121\u7aef\u5730\u7522\u751f\u2014\u2014\u53ea\u6709 API \u88ab\u7d0d\u5165\u4e4b\u524d\u672a\u5bdf\u89ba\u7684\u56b4\u91cd\u57fa\u672c\u7f3a\u9677\u88ab\u63ed\u9732\u6642\uff0c\u5b83\u5011\u624d\u6703\u767c\u751f\u3002

\n

\u5373\u4f7f\u5c0d\u65bc\u66ab\u884c API\uff0c\u5411\u5f8c\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\u4e5f\u6703\u88ab\u8996\u70ba\u300c\u6700\u5f8c\u7684\u89e3\u6c7a\u65b9\u6848\u300d\u2014\u2014\u5c0d\u65bc\u4efb\u4f55\u88ab\u767c\u73fe\u7684\u554f\u984c\uff0c\u4ecd\u7136\u6703\u76e1\u53ef\u80fd\u627e\u51fa\u4e00\u500b\u5411\u5f8c\u76f8\u5bb9\u7684\u89e3\u6c7a\u65b9\u6848\u3002

\n

\u9019\u500b\u904e\u7a0b\u4f7f\u5f97\u6a19\u6e96\u51fd\u5f0f\u5eab\u80fd\u96a8\u8457\u6642\u9593\u4e0d\u65b7\u9032\u5316\uff0c\u800c\u907f\u514d\u8017\u8cbb\u904e\u9577\u7684\u6642\u9593\u53bb\u9396\u5b9a\u6709\u554f\u984c\u7684\u8a2d\u8a08\u932f\u8aa4\u3002\u8acb\u53c3\u95b1 PEP 411 \u4e86\u89e3\u66f4\u591a\u7d30\u7bc0\u3002

\n
\n
\n"}, "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09": {"title": "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09", "body": "
\n

\u8acb\u53c3\u95b1 provisional API\uff08\u66ab\u884c API\uff09\u3002

\n
\n
\n"}, "python 3000": {"title": "Python 3000", "body": "
\n

Python 3.x \u7cfb\u5217\u7248\u672c\u7684\u66b1\u7a31\uff08\u5f88\u4e45\u4ee5\u524d\u5275\u9020\u7684\uff0c\u7576\u6642\u7b2c 3 \u7248\u7684\u767c\u5e03\u662f\u5728\u9059\u9060\u7684\u672a\u4f86\u3002\uff09\u4e5f\u53ef\u4ee5\u7e2e\u5beb\u70ba\u300cPy3k\u300d\u3002

\n
\n
\n"}, "pythonic\uff08python \u98a8\u683c\u7684\uff09": {"title": "Pythonic\uff08Python \u98a8\u683c\u7684\uff09", "body": "
\n

\u4e00\u500b\u60f3\u6cd5\u6216\u4e00\u6bb5\u7a0b\u5f0f\u78bc\uff0c\u5b83\u61c9\u7528\u4e86 Python \u8a9e\u8a00\u6700\u5e38\u898b\u7684\u6163\u7528\u8a9e\uff0c\u800c\u4e0d\u662f\u4f7f\u7528\u5176\u4ed6\u8a9e\u8a00\u5e38\u898b\u7684\u6982\u5ff5\u4f86\u5be6\u4f5c\u7a0b\u5f0f\u78bc\u3002\u4f8b\u5982\uff0cPython \u4e2d\u5e38\u898b\u7684\u4e00\u7a2e\u7fd2\u6163\u7528\u6cd5\uff0c\u662f\u4f7f\u7528\u4e00\u500b for \u9673\u8ff0\u5f0f\uff0c\u5c0d\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u6240\u6709\u5143\u7d20\u9032\u884c\u8ff4\u5708\u3002\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\u4e26\u6c92\u6709\u9019\u7a2e\u985e\u578b\u7684\u67b6\u69cb\uff0c\u6240\u4ee5\u4e0d\u719f\u6089 Python \u7684\u4eba\u6709\u6642\u6703\u4f7f\u7528\u4e00\u500b\u6578\u503c\u8a08\u6578\u5668\u4f86\u4ee3\u66ff\uff1a

\n
for i in range(len(food)):\n    print(food[i])\n
\n
\n

\u76f8\u8f03\u4e4b\u4e0b\uff0c\u4ee5\u4e0b\u65b9\u6cd5\u66f4\u7c21\u6f54\u3001\u66f4\u5177\u6709 Python \u98a8\u683c\uff1a

\n
for piece in food:\n    print(piece)\n
\n
\n
\n
\n"}, "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09": {"title": "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09", "body": "
\n

\u4e00\u500b\u300c\u9ede\u5206\u9694\u540d\u7a31\u300d\uff0c\u5b83\u986f\u793a\u5f9e\u4e00\u500b\u6a21\u7d44\u7684\u5168\u57df\u4f5c\u7528\u57df\u5230\u8a72\u6a21\u7d44\u4e2d\u5b9a\u7fa9\u7684 class\u3001\u51fd\u5f0f\u6216 method \u7684\u300c\u8def\u5f91\u300d\uff0c\u5982 PEP 3155 \u4e2d\u7684\u5b9a\u7fa9\u3002\u5c0d\u65bc\u9802\u5c64\u7684\u51fd\u5f0f\u548c class \u800c\u8a00\uff0c\u9650\u5b9a\u540d\u7a31\u8207\u5176\u7269\u4ef6\u540d\u7a31\u76f8\u540c\uff1a

\n
>>> class C:\n...     class D:\n...         def meth(self):\n...             pass\n...\n>>> C.__qualname__\n'C'\n>>> C.D.__qualname__\n'C.D'\n>>> C.D.meth.__qualname__\n'C.D.meth'\n
\n
\n

\u7576\u7528\u65bc\u5f15\u7528\u6a21\u7d44\u6642\uff0c\u5b8c\u5168\u9650\u5b9a\u540d\u7a31 (fully qualified name) \u662f\u8868\u793a\u8a72\u6a21\u7d44\u7684\u5b8c\u6574\u9ede\u5206\u9694\u8def\u5f91\uff0c\u5305\u62ec\u4efb\u4f55\u7684\u7236\u5957\u4ef6\uff0c\u4f8b\u5982 email.mime.text\uff1a

\n
>>> import email.mime.text\n>>> email.mime.text.__name__\n'email.mime.text'\n
\n
\n
\n
\n"}, "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09": {"title": "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09", "body": "
\n

\u5c0d\u65bc\u4e00\u500b\u7269\u4ef6\u7684\u53c3\u7167\u6b21\u6578\u3002\u7576\u4e00\u500b\u7269\u4ef6\u7684\u53c3\u7167\u8a08\u6578\u4e0b\u964d\u5230\u96f6\u6642\uff0c\u5b83\u6703\u88ab\u89e3\u9664\u914d\u7f6e (deallocated)\u3002\u6709\u4e9b\u7269\u4ef6\u662f\u300c\u4e0d\u6ec5\u7684 (immortal)\u300d\u4e26\u64c1\u6709\u4e0d\u6703\u88ab\u6539\u8b8a\u7684\u53c3\u7167\u8a08\u6578\uff0c\u4e5f\u56e0\u6b64\u6c38\u9060\u4e0d\u6703\u88ab\u89e3\u9664\u914d\u7f6e\u3002\u53c3\u7167\u8a08\u6578\u901a\u5e38\u5728 Python \u7a0b\u5f0f\u78bc\u4e2d\u770b\u4e0d\u5230\uff0c\u4f46\u5b83\u537b\u662f CPython \u5be6\u4f5c\u7684\u4e00\u500b\u95dc\u9375\u5143\u7d20\u3002\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u53ef\u4ee5\u547c\u53eb getrefcount() \u51fd\u5f0f\u4f86\u56de\u50b3\u4e00\u500b\u7279\u5b9a\u7269\u4ef6\u7684\u53c3\u7167\u8a08\u6578\u3002

\n
\n
\n"}, "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09": {"title": "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u50b3\u7d71\u7684 package\uff08\u5957\u4ef6\uff09\uff0c\u4f8b\u5982\u4e00\u500b\u5305\u542b __init__.py \u6a94\u6848\u7684\u76ee\u9304\u3002

\n

\u53e6\u8acb\u53c3\u95b1 namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "__slots__": {"title": "__slots__", "body": "
\n

\u5728 class \u5167\u90e8\u7684\u4e00\u500b\u5ba3\u544a\uff0c\u5b83\u85c9\u7531\u9810\u5148\u5ba3\u544a\u5be6\u4f8b\u5c6c\u6027\u7684\u7a7a\u9593\uff0c\u4ee5\u53ca\u6d88\u9664\u5be6\u4f8b dictionary\uff08\u5b57\u5178\uff09\uff0c\u4f86\u7bc0\u7701\u8a18\u61b6\u9ad4\u3002\u96d6\u7136\u8a72\u6280\u8853\u5f88\u666e\u904d\uff0c\u4f46\u5b83\u6709\u9ede\u96e3\u4ee5\u6b63\u78ba\u5730\u4f7f\u7528\uff0c\u6700\u597d\u4fdd\u7559\u7d66\u90a3\u7a2e\u5728\u4e00\u500b\u8a18\u61b6\u9ad4\u95dc\u9375 (memory-critical) \u7684\u61c9\u7528\u7a0b\u5f0f\u4e2d\u5b58\u5728\u5927\u91cf\u5be6\u4f8b\u7684\u7f55\u898b\u60c5\u6cc1\u3002

\n
\n
\n"}, "sequence\uff08\u5e8f\u5217\uff09": {"title": "sequence\uff08\u5e8f\u5217\uff09", "body": "
\n

\u4e00\u500b iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09\uff0c\u5b83\u900f\u904e __getitem__() special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09\uff0c\u4f7f\u7528\u6574\u6578\u7d22\u5f15\u4f86\u652f\u63f4\u9ad8\u6548\u7387\u7684\u5143\u7d20\u5b58\u53d6\uff0c\u4e26\u5b9a\u7fa9\u4e86\u4e00\u500b __len__() method \u4f86\u56de\u50b3\u8a72\u5e8f\u5217\u7684\u9577\u5ea6\u3002\u4e00\u4e9b\u5167\u5efa\u5e8f\u5217\u578b\u5225\u5305\u62ec list\u3001str\u3001tuple \u548c bytes\u3002\u8acb\u6ce8\u610f\uff0c\u96d6\u7136 dict \u4e5f\u652f\u63f4 __getitem__() \u548c __len__()\uff0c\u4f46\u5b83\u88ab\u8996\u70ba\u5c0d\u6620 (mapping) \u800c\u4e0d\u662f\u5e8f\u5217\uff0c\u56e0\u70ba\u5176\u67e5\u627e\u65b9\u5f0f\u662f\u4f7f\u7528\u4efb\u610f\u7684 immutable \u9375\uff0c\u800c\u4e0d\u662f\u6574\u6578\u3002

\n

\u62bd\u8c61\u57fa\u5e95\u985e\u5225 (abstract base class) collections.abc.Sequence \u5b9a\u7fa9\u4e86\u4e00\u500b\u66f4\u52a0\u8c50\u5bcc\u7684\u4ecb\u9762\uff0c\u4e26\u4e0d\u50c5\u6b62\u65bc __getitem__() \u548c __len__()\uff0c\u9084\u589e\u52a0\u4e86 count()\u3001index()\u3001__contains__() \u548c __reversed__()\u3002\u5be6\u4f5c\u6b64\u64f4\u5145\u4ecb\u9762\u7684\u578b\u5225\uff0c\u53ef\u4ee5\u4f7f\u7528 register() \u88ab\u660e\u78ba\u5730\u8a3b\u518a\u3002\u66f4\u591a\u95dc\u65bc\u5e8f\u5217\u65b9\u6cd5\u7684\u6587\u4ef6\uff0c\u8acb\u898b\u5e38\u898b\u5e8f\u5217\u64cd\u4f5c\u3002

\n
\n
\n"}, "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09": {"title": "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7dca\u5bc6\u7684\u65b9\u6cd5\uff0c\u7528\u4f86\u8655\u7406\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b set \u56de\u50b3\u3002results = {c for c in 'abracadabra' if c not in 'abc'} \u6703\u7522\u751f\u4e00\u500b\u5b57\u4e32 set\uff1a{'r', 'd'}\u3002\u8acb\u53c3\u95b1Displays for lists, sets and dictionaries\u3002

\n
\n
\n"}, "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09": {"title": "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09", "body": "
\n

generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09\u8abf\u5ea6\u7684\u4e00\u7a2e\u5f62\u5f0f\uff0c\u5728\u6b64\uff0c\u5be6\u4f5c\u7684\u9078\u64c7\u662f\u57fa\u65bc\u55ae\u4e00\u5f15\u6578\u7684\u578b\u5225\u3002

\n
\n
\n"}, "slice\uff08\u5207\u7247\uff09": {"title": "slice\uff08\u5207\u7247\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u901a\u5e38\u5305\u542b\u4e00\u6bb5 sequence\uff08\u5e8f\u5217\uff09\u7684\u67d0\u4e00\u90e8\u5206\u3002\u5efa\u7acb\u4e00\u6bb5\u5207\u7247\u7684\u65b9\u6cd5\u662f\u4f7f\u7528\u4e0b\u6a19\u7b26\u865f (subscript notation) []\uff0c\u82e5\u8981\u7d66\u51fa\u591a\u500b\u6578\u5b57\uff0c\u5247\u5728\u6578\u5b57\u4e4b\u9593\u4f7f\u7528\u5192\u865f\uff0c\u4f8b\u5982 variable_name[1:3:5]\u3002\u5728\u62ec\u865f\uff08\u4e0b\u6a19\uff09\u7b26\u865f\u7684\u5167\u90e8\uff0c\u6703\u4f7f\u7528 slice \u7269\u4ef6\u3002

\n
\n
\n"}, "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09": {"title": "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09", "body": "
\n

\u4e00\u7a2e\u6703\u88ab Python \u81ea\u52d5\u547c\u53eb\u7684 method\uff0c\u7528\u65bc\u5c0d\u67d0\u7a2e\u578b\u5225\u57f7\u884c\u67d0\u7a2e\u904b\u7b97\uff0c\u4f8b\u5982\u52a0\u6cd5\u3002\u9019\u7a2e method \u7684\u540d\u7a31\u6703\u5728\u958b\u982d\u548c\u7d50\u5c3e\u6709\u5169\u500b\u4e0b\u5e95\u7dda\u3002Special method \u5728Special method names\u4e2d\u6709\u8a73\u7d30\u8aaa\u660e\u3002

\n
\n
\n"}, "statement\uff08\u9673\u8ff0\u5f0f\uff09": {"title": "statement\uff08\u9673\u8ff0\u5f0f\uff09", "body": "
\n

\u9673\u8ff0\u5f0f\u662f\u4e00\u500b\u5957\u7d44\uff08suite\uff0c\u4e00\u500b\u7a0b\u5f0f\u78bc\u300c\u5340\u584a\u300d\uff09\u4e2d\u7684\u4e00\u90e8\u5206\u3002\u9673\u8ff0\u5f0f\u53ef\u4ee5\u662f\u4e00\u500b expression\uff08\u904b\u7b97\u5f0f\uff09\uff0c\u6216\u662f\u542b\u6709\u95dc\u9375\u5b57\uff08\u4f8b\u5982 if\u3001while \u6216 for\uff09\u7684\u591a\u7a2e\u7d50\u69cb\u4e4b\u4e00\u3002

\n
\n
\n"}, "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09": {"title": "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09", "body": "
\n

\u6703\u8b80\u53d6 Python \u7a0b\u5f0f\u78bc\u4e26\u5206\u6790\u7684\u5916\u90e8\u5de5\u5177\uff0c\u80fd\u5920\u627e\u51fa\u932f\u8aa4\uff0c\u50cf\u662f\u4f7f\u7528\u4e86\u4e0d\u6b63\u78ba\u7684\u578b\u5225\u3002\u53e6\u8acb\u53c3\u95b1\u578b\u5225\u63d0\u793a (type hints) \u4ee5\u53ca typing \u6a21\u7d44\u3002

\n
\n
\n"}, "strong reference\uff08\u5f37\u53c3\u7167\uff09": {"title": "strong reference\uff08\u5f37\u53c3\u7167\uff09", "body": "
\n

\u5728 Python \u7684 C API \u4e2d\uff0c\u5f37\u53c3\u7167\u662f\u5c0d\u7269\u4ef6\u7684\u53c3\u7167\uff0c\u8a72\u7269\u4ef6\u70ba\u6301\u6709\u8a72\u53c3\u7167\u7684\u7a0b\u5f0f\u78bc\u6240\u64c1\u6709\u3002\u5efa\u7acb\u53c3\u7167\u6642\u900f\u904e\u547c\u53eb Py_INCREF() \u4f86\u7372\u5f97\u5f37\u53c3\u7167\u3001\u522a\u9664\u53c3\u7167\u6642\u900f\u904e Py_DECREF() \u91cb\u653e\u5f37\u53c3\u7167\u3002

\n

Py_NewRef() \u51fd\u5f0f\u53ef\u7528\u65bc\u5efa\u7acb\u4e00\u500b\u5c0d\u7269\u4ef6\u7684\u5f37\u53c3\u7167\u3002\u901a\u5e38\uff0c\u5728\u9000\u51fa\u5f37\u53c3\u7167\u7684\u4f5c\u7528\u57df\u4e4b\u524d\uff0c\u5fc5\u9808\u5728\u8a72\u5f37\u53c3\u7167\u4e0a\u547c\u53eb Py_DECREF() \u51fd\u5f0f\uff0c\u4ee5\u907f\u514d\u6d29\u6f0f\u4e00\u500b\u53c3\u7167\u3002

\n

\u53e6\u8acb\u53c3\u95b1 borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09\u3002

\n
\n
\n"}, "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09": {"title": "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09", "body": "
\n

Python \u4e2d\u7684\u5b57\u4e32\u662f\u4e00\u500b Unicode \u78bc\u9ede (code point) \u7684\u5e8f\u5217\uff08\u7bc4\u570d\u5728 U+0000 -- U+10FFFF \u4e4b\u9593\uff09\u3002\u82e5\u8981\u5132\u5b58\u6216\u50b3\u9001\u4e00\u500b\u5b57\u4e32\uff0c\u5b83\u5fc5\u9808\u88ab\u5e8f\u5217\u5316\u70ba\u4e00\u500b\u4f4d\u5143\u7d44\u5e8f\u5217\u3002

\n

\u5c07\u4e00\u500b\u5b57\u4e32\u5e8f\u5217\u5316\u70ba\u4f4d\u5143\u7d44\u5e8f\u5217\uff0c\u7a31\u70ba\u300c\u7de8\u78bc\u300d\uff0c\u800c\u5f9e\u4f4d\u5143\u7d44\u5e8f\u5217\u91cd\u65b0\u5efa\u7acb\u8a72\u5b57\u4e32\u5247\u7a31\u70ba\u300c\u89e3\u78bc (decoding)\u300d\u3002

\n

\u6709\u591a\u7a2e\u4e0d\u540c\u7684\u6587\u5b57\u5e8f\u5217\u5316\u7de8\u89e3\u78bc\u5668 (codecs)\uff0c\u5b83\u5011\u88ab\u7d71\u7a31\u70ba\u300c\u6587\u5b57\u7de8\u78bc\u300d\u3002

\n
\n
\n"}, "text file\uff08\u6587\u5b57\u6a94\u6848\uff09": {"title": "text file\uff08\u6587\u5b57\u6a94\u6848\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 str \u7269\u4ef6\u7684\u4e00\u500b file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u3002\u901a\u5e38\uff0c\u6587\u5b57\u6a94\u6848\u5be6\u969b\u4e0a\u662f\u5b58\u53d6\u4f4d\u5143\u7d44\u5c0e\u5411\u7684\u8cc7\u6599\u6d41 (byte-oriented datastream) \u4e26\u6703\u81ea\u52d5\u8655\u7406 text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09\u3002\u6587\u5b57\u6a94\u6848\u7684\u4f8b\u5b50\u6709\uff1a\u4ee5\u6587\u5b57\u6a21\u5f0f\uff08'r' \u6216 'w'\uff09\u958b\u555f\u7684\u6a94\u6848\u3001sys.stdin\u3001sys.stdout \u4ee5\u53ca io.StringIO \u7684\u5be6\u4f8b\u3002

\n

\u53e6\u8acb\u53c3\u95b1 binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09\uff0c\u5b83\u662f\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6 (bytes-like object) \u7684\u6a94\u6848\u7269\u4ef6\u3002

\n
\n
\n"}, "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09": {"title": "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09", "body": "
\n

\u7531\u4e09\u500b\u96d9\u5f15\u865f (") \u6216\u55ae\u5f15\u865f (') \u7684\u4f5c\u70ba\u908a\u754c\u7684\u4e00\u500b\u5b57\u4e32\u3002\u96d6\u7136\u5b83\u5011\u4e26\u6c92\u6709\u63d0\u4f9b\u7570\u65bc\u55ae\u5f15\u865f\u5b57\u4e32\u7684\u4efb\u4f55\u984d\u5916\u529f\u80fd\uff0c\u4f46\u57fa\u65bc\u8a31\u591a\u539f\u56e0\uff0c\u5b83\u5011\u4ecd\u662f\u5f88\u6709\u7528\u7684\u3002\u5b83\u5011\u8b93\u4f60\u53ef\u4ee5\u5728\u5b57\u4e32\u4e2d\u5305\u542b\u672a\u8df3\u812b (unescaped) \u7684\u55ae\u5f15\u865f\u548c\u96d9\u5f15\u865f\uff0c\u800c\u4e14\u5b83\u5011\u4e0d\u9700\u4f7f\u7528\u9023\u7e8c\u5b57\u5143 (continuation character) \u5c31\u53ef\u4ee5\u8de8\u8d8a\u591a\u884c\uff0c\u9019\u4f7f\u5f97\u5b83\u5011\u5728\u7de8\u5beb\u8aaa\u660e\u5b57\u4e32\u6642\u7279\u5225\u6709\u7528\u3002

\n
\n
\n"}, "type\uff08\u578b\u5225\uff09": {"title": "type\uff08\u578b\u5225\uff09", "body": "
\n

\u4e00\u500b Python \u7269\u4ef6\u7684\u578b\u5225\u6c7a\u5b9a\u4e86\u5b83\u662f\u4ec0\u9ebc\u985e\u578b\u7684\u7269\u4ef6\uff1b\u6bcf\u500b\u7269\u4ef6\u90fd\u6709\u4e00\u500b\u578b\u5225\u3002\u4e00\u500b\u7269\u4ef6\u7684\u578b\u5225\u53ef\u4ee5\u7528\u5b83\u7684 __class__ \u5c6c\u6027\u4f86\u5b58\u53d6\uff0c\u6216\u4ee5 type(obj) \u4f86\u6aa2\u7d22\u3002

\n
\n
\n"}, "type alias\uff08\u578b\u5225\u5225\u540d\uff09": {"title": "type alias\uff08\u578b\u5225\u5225\u540d\uff09", "body": "
\n

\u4e00\u500b\u578b\u5225\u7684\u540c\u7fa9\u8a5e\uff0c\u900f\u904e\u5c07\u578b\u5225\u6307\u5b9a\u7d66\u4e00\u500b\u8b58\u5225\u7b26 (identifier) \u4f86\u5efa\u7acb\u3002

\n

\u578b\u5225\u5225\u540d\u5c0d\u65bc\u7c21\u5316\u578b\u5225\u63d0\u793a (type hint) \u5f88\u6709\u7528\u3002\u4f8b\u5982\uff1a

\n
def remove_gray_shades(\n        colors: list[tuple[int, int, int]]) -> list[tuple[int, int, int]]:\n    pass\n
\n
\n

\u53ef\u4ee5\u5beb\u6210\u9019\u6a23\uff0c\u66f4\u5177\u6709\u53ef\u8b80\u6027\uff1a

\n
Color = tuple[int, int, int]\n\ndef remove_gray_shades(colors: list[Color]) -> list[Color]:\n    pass\n
\n
\n

\u8acb\u53c3\u95b1 typing \u548c PEP 484\uff0c\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002

\n
\n
\n"}, "type hint\uff08\u578b\u5225\u63d0\u793a\uff09": {"title": "type hint\uff08\u578b\u5225\u63d0\u793a\uff09", "body": "
\n

\u4e00\u7a2e annotation\uff08\u8a3b\u91cb\uff09\uff0c\u5b83\u6307\u5b9a\u4e00\u500b\u8b8a\u6578\u3001\u4e00\u500b class \u5c6c\u6027\u6216\u4e00\u500b\u51fd\u5f0f\u7684\u53c3\u6578\u6216\u56de\u50b3\u503c\u7684\u9810\u671f\u578b\u5225\u3002

\n

\u578b\u5225\u63d0\u793a\u662f\u9078\u64c7\u6027\u7684\uff0c\u800c\u4e0d\u662f\u88ab Python \u5f37\u5236\u7684\uff0c\u4f46\u5b83\u5011\u5c0d\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668 (static type checkers)\u5f88\u6709\u7528\uff0c\u4e26\u80fd\u5354\u52a9 IDE \u5b8c\u6210\u7a0b\u5f0f\u78bc\u7684\u88dc\u5168 (completion) \u548c\u91cd\u69cb (refactoring)\u3002

\n

\u5168\u57df\u8b8a\u6578\u3001class \u5c6c\u6027\u548c\u51fd\u5f0f\uff08\u4e0d\u542b\u5340\u57df\u8b8a\u6578\uff09\u7684\u578b\u5225\u63d0\u793a\uff0c\u90fd\u53ef\u4ee5\u4f7f\u7528 typing.get_type_hints() \u4f86\u5b58\u53d6\u3002

\n

\u8acb\u53c3\u95b1 typing \u548c PEP 484\uff0c\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002

\n
\n
\n"}, "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09": {"title": "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09", "body": "
\n

\u4e00\u7a2e\u89e3\u8b6f\u6587\u5b57\u6d41 (text stream) \u7684\u65b9\u5f0f\uff0c\u6703\u5c07\u4ee5\u4e0b\u6240\u6709\u7684\u60c5\u6cc1\u8b58\u5225\u70ba\u4e00\u884c\u7684\u7d50\u675f\uff1aUnix \u884c\u5c3e\u6163\u4f8b '\\n'\u3001Windows \u6163\u4f8b '\\r\\n' \u548c\u820a\u7684 Macintosh \u6163\u4f8b '\\r'\u3002\u8acb\u53c3\u95b1 PEP 278 \u548c PEP 3116\uff0c\u4ee5\u53ca\u7528\u65bc bytes.splitlines() \u7684\u9644\u52a0\u7528\u9014\u3002

\n
\n
\n"}, "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09": {"title": "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09", "body": "
\n

\u4e00\u500b\u8b8a\u6578\u6216 class \u5c6c\u6027\u7684 annotation\uff08\u8a3b\u91cb\uff09\u3002

\n

\u8a3b\u91cb\u8b8a\u6578\u6216 class \u5c6c\u6027\u6642\uff0c\u8ce6\u503c\u662f\u9078\u64c7\u6027\u7684\uff1a

\n
class C:\n    field: 'annotation'\n
\n
\n

\u8b8a\u6578\u8a3b\u91cb\u901a\u5e38\u7528\u65bc\u578b\u5225\u63d0\u793a (type hint)\uff1a\u4f8b\u5982\uff0c\u9019\u500b\u8b8a\u6578\u9810\u671f\u6703\u53d6\u5f97 int\uff08\u6574\u6578\uff09\u503c\uff1a

\n
count: int = 0\n
\n
\n

\u8b8a\u6578\u8a3b\u91cb\u7684\u8a9e\u6cd5\u5728Annotated assignment statements\u7ae0\u7bc0\u6709\u8a73\u7d30\u7684\u89e3\u91cb\u3002

\n

\u8acb\u53c3\u95b1 function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09\u3001PEP 484 \u548c PEP 526\uff0c\u7686\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\uff0c\u53e6\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09": {"title": "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09", "body": "
\n

\u4e00\u500b\u5354\u4f5c\u9694\u96e2 (cooperatively isolated) \u7684\u57f7\u884c\u74b0\u5883\uff0c\u80fd\u8b93 Python \u7684\u4f7f\u7528\u8005\u548c\u61c9\u7528\u7a0b\u5f0f\u5f97\u4ee5\u5b89\u88dd\u548c\u5347\u7d1a Python \u767c\u4f48\u5957\u4ef6\uff0c\u800c\u4e0d\u6703\u5c0d\u540c\u4e00\u500b\u7cfb\u7d71\u4e0a\u904b\u884c\u7684\u5176\u4ed6 Python \u61c9\u7528\u7a0b\u5f0f\u7684\u884c\u70ba\u7522\u751f\u5e72\u64fe\u3002

\n

\u53e6\u8acb\u53c3\u95b1 venv\u3002

\n
\n
\n"}, "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09": {"title": "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09", "body": "
\n

\u4e00\u90e8\u5b8c\u5168\u7531\u8edf\u9ad4\u6240\u5b9a\u7fa9\u7684\u96fb\u8166 (computer)\u3002Python \u7684\u865b\u64ec\u6a5f\u5668\u6703\u57f7\u884c\u7531 bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09\u7de8\u8b6f\u5668\u6240\u767c\u51fa\u7684\u4f4d\u5143\u7d44\u78bc\u3002

\n
\n
\n"}, "zen of python\uff08python \u4e4b\u79aa\uff09": {"title": "Zen of Python\uff08Python \u4e4b\u79aa\uff09", "body": "
\n

Python \u8a2d\u8a08\u539f\u5247\u8207\u54f2\u5b78\u7684\u5217\u8868\uff0c\u5176\u5167\u5bb9\u6709\u52a9\u65bc\u7406\u89e3\u548c\u4f7f\u7528\u6b64\u8a9e\u8a00\u3002\u6b64\u5217\u8868\u53ef\u4ee5\u900f\u904e\u5728\u4e92\u52d5\u5f0f\u63d0\u5f0f\u5b57\u5143\u5f8c\u8f38\u5165\u300cimport this\u300d\u4f86\u627e\u5230\u5b83\u3002

\n
\n
\n"}} \ No newline at end of file +{">>>": {"title": ">>>", "body": "
\n

\u4e92\u52d5\u5f0f shell \u7684\u9810\u8a2d Python \u63d0\u793a\u5b57\u5143\u3002\u5e38\u898b\u65bc\u80fd\u5728\u76f4\u8b6f\u5668\u4e2d\u4ee5\u4e92\u52d5\u65b9\u5f0f\u88ab\u57f7\u884c\u7684\u7a0b\u5f0f\u78bc\u7bc4\u4f8b\u3002

\n
\n
\n"}, "...": {"title": "...", "body": "
\n

\u53ef\u4ee5\u8868\u793a\uff1a

\n
    \n
  • \u5728\u4e00\u500b\u88ab\u7e2e\u6392\u7684\u7a0b\u5f0f\u78bc\u5340\u584a\u3001\u5728\u4e00\u5c0d\u5339\u914d\u7684\u5de6\u53f3\u5b9a\u754c\u7b26\uff08delimiter\uff0c\u4f8b\u5982\u62ec\u865f\u3001\u65b9\u62ec\u865f\u3001\u82b1\u62ec\u865f\u6216\u4e09\u5f15\u865f\uff09\u5167\u90e8\uff0c\u6216\u662f\u5728\u6307\u5b9a\u4e00\u500b\u88dd\u98fe\u5668 (decorator) \u4e4b\u5f8c\uff0c\u8981\u8f38\u5165\u7a0b\u5f0f\u78bc\u6642\uff0c\u4e92\u52d5\u5f0f shell \u986f\u793a\u7684\u9810\u8a2d Python \u63d0\u793a\u5b57\u5143\u3002

  • \n
  • \u5167\u5efa\u5e38\u6578 Ellipsis\u3002

  • \n
\n
\n
\n"}, "2to3": {"title": "2to3", "body": "
\n

\u4e00\u500b\u8a66\u8457\u5c07 Python 2.x \u7a0b\u5f0f\u78bc\u8f49\u63db\u70ba Python 3.x \u7a0b\u5f0f\u78bc\u7684\u5de5\u5177\uff0c\u5b83\u662f\u900f\u904e\u8655\u7406\u5927\u90e8\u5206\u7684\u4e0d\u76f8\u5bb9\u6027\u4f86\u9054\u6210\u6b64\u76ee\u7684\uff0c\u800c\u9019\u4e9b\u4e0d\u76f8\u5bb9\u6027\u80fd\u5920\u900f\u904e\u5256\u6790\u539f\u59cb\u78bc\u548c\u904d\u6b77\u5256\u6790\u6a39\u800c\u88ab\u6aa2\u6e2c\u51fa\u4f86\u3002

\n

2to3 \u5728\u53ef\u4ee5\u6a19\u6e96\u51fd\u5f0f\u5eab\u4e2d\u4ee5 lib2to3 \u88ab\u4f7f\u7528\uff1b\u5b83\u63d0\u4f9b\u4e86\u4e00\u500b\u7368\u7acb\u7684\u5165\u53e3\u9ede\uff0c\u5728 Tools/scripts/2to3\u3002\u8acb\u53c3\u95b1 2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3\u3002

\n
\n
\n"}, "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09": {"title": "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09", "body": "
\n

\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff08\u53c8\u7a31\u70ba ABC\uff09\u63d0\u4f9b\u4e86\u4e00\u7a2e\u5b9a\u7fa9\u4ecb\u9762\u7684\u65b9\u6cd5\uff0c\u4f5c\u70ba duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09\u7684\u88dc\u5145\u3002\u5176\u4ed6\u985e\u4f3c\u7684\u6280\u8853\uff0c\u50cf\u662f hasattr()\uff0c\u5247\u986f\u5f97\u7b28\u62d9\u6216\u662f\u5e36\u6709\u7d30\u5fae\u7684\u932f\u8aa4\uff08\u4f8b\u5982\u4f7f\u7528\u9b54\u8853\u65b9\u6cd5 (magic method)\uff09\u3002ABC \u63a1\u7528\u865b\u64ec\u7684 subclass\uff08\u5b50\u985e\u5225\uff09\uff0c\u5b83\u5011\u4e26\u4e0d\u7e7c\u627f\u81ea\u53e6\u4e00\u500b class\uff08\u985e\u5225\uff09\uff0c\u4f46\u4ecd\u53ef\u88ab isinstance() \u53ca issubclass() \u8fa8\u8b58\uff1b\u8acb\u53c3\u95b1 abc \u6a21\u7d44\u7684\u8aaa\u660e\u6587\u4ef6\u3002Python \u6709\u8a31\u591a\u5167\u5efa\u7684 ABC\uff0c\u7528\u65bc\u8cc7\u6599\u7d50\u69cb\uff08\u5728 collections.abc \u6a21\u7d44\uff09\u3001\u6578\u5b57\uff08\u5728 numbers \u6a21\u7d44\uff09\u3001\u4e32\u6d41\uff08\u5728 io \u6a21\u7d44\uff09\u53ca import \u5c0b\u6aa2\u5668\u548c\u8f09\u5165\u5668\uff08\u5728 importlib.abc \u6a21\u7d44\uff09\u3002\u4f60\u53ef\u4ee5\u4f7f\u7528 abc \u6a21\u7d44\u5efa\u7acb\u81ea\u5df1\u7684 ABC\u3002

\n
\n
\n"}, "annotation\uff08\u8a3b\u91cb\uff09": {"title": "annotation\uff08\u8a3b\u91cb\uff09", "body": "
\n

\u4e00\u500b\u8207\u8b8a\u6578\u3001class \u5c6c\u6027\u3001\u51fd\u5f0f\u7684\u53c3\u6578\u6216\u56de\u50b3\u503c\u76f8\u95dc\u806f\u7684\u6a19\u7c64\u3002\u7167\u6163\u4f8b\uff0c\u5b83\u88ab\u7528\u4f86\u4f5c\u70ba type hint\uff08\u578b\u5225\u63d0\u793a\uff09\u3002

\n

\u5728\u57f7\u884c\u74b0\u5883 (runtime)\uff0c\u5340\u57df\u8b8a\u6578\u7684\u8a3b\u91cb\u7121\u6cd5\u88ab\u5b58\u53d6\uff0c\u4f46\u5168\u57df\u8b8a\u6578\u3001class \u5c6c\u6027\u548c\u51fd\u5f0f\u7684\u8a3b\u89e3\uff0c\u6703\u5206\u5225\u88ab\u5132\u5b58\u5728\u6a21\u7d44\u3001class \u548c\u51fd\u5f0f\u7684 __annotations__ \u7279\u6b8a\u5c6c\u6027\u4e2d\u3002

\n

\u8acb\u53c3\u95b1 variable annotation\u3001function annotation\u3001PEP 484 \u548c PEP 526\uff0c\u9019\u4e9b\u7ae0\u7bc0\u7686\u6709\u6b64\u529f\u80fd\u7684\u8aaa\u660e\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\u4e5f\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "argument\uff08\u5f15\u6578\uff09": {"title": "argument\uff08\u5f15\u6578\uff09", "body": "
\n

\u547c\u53eb\u51fd\u5f0f\u6642\u88ab\u50b3\u905e\u7d66 function\uff08\u6216 method\uff09\u7684\u503c\u3002\u5f15\u6578\u6709\u5169\u7a2e\uff1a

\n
    \n
  • \u95dc\u9375\u5b57\u5f15\u6578 (keyword argument)\uff1a\u5728\u51fd\u5f0f\u547c\u53eb\u4e2d\uff0c\u4ee5\u8b58\u5225\u5b57\uff08identifier\uff0c\u4f8b\u5982 name=\uff09\u958b\u982d\u7684\u5f15\u6578\uff0c\u6216\u662f\u4ee5 ** \u5f8c\u9762 dictionary\uff08\u5b57\u5178\uff09\u5167\u7684\u503c\u88ab\u50b3\u905e\u7684\u5f15\u6578\u3002\u4f8b\u5982\uff0c3 \u548c 5 \u90fd\u662f\u4ee5\u4e0b complex() \u547c\u53eb\u4e2d\u7684\u95dc\u9375\u5b57\u5f15\u6578\uff1a

    \n
    complex(real=3, imag=5)\ncomplex(**{'real': 3, 'imag': 5})\n
    \n
    \n
  • \n
  • \u4f4d\u7f6e\u5f15\u6578 (positional argument)\uff1a\u4e0d\u662f\u95dc\u9375\u5b57\u5f15\u6578\u7684\u5f15\u6578\u3002\u4f4d\u7f6e\u5f15\u6578\u53ef\u5728\u4e00\u500b\u5f15\u6578\u5217\u8868\u7684\u8d77\u59cb\u8655\u51fa\u73fe\uff0c\u548c\uff08\u6216\uff09\u4f5c\u70ba * \u4e4b\u5f8c\u7684 iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09\u4e2d\u7684\u5143\u7d20\u88ab\u50b3\u905e\u3002\u4f8b\u5982\uff0c3 \u548c 5 \u90fd\u662f\u4ee5\u4e0b\u547c\u53eb\u4e2d\u7684\u4f4d\u7f6e\u5f15\u6578\uff1a

    \n
    complex(3, 5)\ncomplex(*(3, 5))\n
    \n
    \n
  • \n
\n

\u5f15\u6578\u6703\u88ab\u6307\u5b9a\u7d66\u51fd\u5f0f\u4e3b\u9ad4\u4e2d\u7684\u9644\u540d\u5340\u57df\u8b8a\u6578\u3002\u95dc\u65bc\u652f\u914d\u9019\u500b\u6307\u5b9a\u904e\u7a0b\u7684\u898f\u5247\uff0c\u8acb\u53c3\u95b1Calls\u7ae0\u7bc0\u3002\u5728\u8a9e\u6cd5\u4e0a\uff0c\u4efb\u4f55\u904b\u7b97\u5f0f\u90fd\u53ef\u4ee5\u88ab\u7528\u4f86\u8868\u793a\u4e00\u500b\u5f15\u6578\uff1b\u5176\u8a55\u4f30\u503c\u6703\u88ab\u6307\u5b9a\u7d66\u5340\u57df\u8b8a\u6578\u3002

\n

\u53e6\u8acb\u53c3\u95b1\u8853\u8a9e\u8868\u7684 parameter\uff08\u53c3\u6578\uff09\u689d\u76ee\u3001\u5e38\u898b\u554f\u984c\u4e2d\u7684\u5f15\u6578\u548c\u53c3\u6578\u4e4b\u9593\u7684\u5dee\u7570\uff0c\u4ee5\u53ca PEP 362\u3002

\n
\n
\n"}, "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09": {"title": "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u63a7\u5236 async with \u9673\u8ff0\u5f0f\u4e2d\u6240\u898b\u74b0\u5883\u7684\u7269\u4ef6\uff0c\u800c\u5b83\u662f\u900f\u904e\u5b9a\u7fa9 __aenter__() \u548c __aexit__() method\uff08\u65b9\u6cd5\uff09\u4f86\u63a7\u5236\u7684\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": {"title": "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3 asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09\u7684\u51fd\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u4ee5 async def \u5b9a\u7fa9\u7684\u5354\u7a0b\u51fd\u5f0f (coroutine function)\uff0c\u4f46\u4e0d\u540c\u7684\u662f\u5b83\u5305\u542b\u4e86 yield \u904b\u7b97\u5f0f\uff0c\u80fd\u751f\u6210\u4e00\u7cfb\u5217\u53ef\u7528\u65bc async for \u8ff4\u5708\u7684\u503c\u3002

\n

\u9019\u500b\u8853\u8a9e\u901a\u5e38\u7528\u4f86\u8868\u793a\u4e00\u500b\u975e\u540c\u6b65\u7522\u751f\u5668\u51fd\u5f0f\uff0c\u4f46\u5728\u67d0\u4e9b\u60c5\u5883\u4e2d\uff0c\u4e5f\u53ef\u80fd\u662f\u8868\u793a\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668 (asynchronous generator iterator)\u3002\u842c\u4e00\u60f3\u8868\u9054\u7684\u610f\u601d\u4e0d\u5920\u6e05\u695a\uff0c\u90a3\u5c31\u4f7f\u7528\u5b8c\u6574\u7684\u8853\u8a9e\uff0c\u4ee5\u907f\u514d\u6b67\u7fa9\u3002

\n

\u4e00\u500b\u975e\u540c\u6b65\u7522\u751f\u5668\u51fd\u5f0f\u53ef\u80fd\u5305\u542b await \u904b\u7b97\u5f0f\uff0c\u4ee5\u53ca async for \u548c async with \u9673\u8ff0\u5f0f\u3002

\n
\n
\n"}, "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": {"title": "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u7531 asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09\u51fd\u5f0f\u6240\u5efa\u7acb\u7684\u7269\u4ef6\u3002

\n

\u9019\u662f\u4e00\u500b asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09\uff0c\u7576\u5b83\u4ee5 __anext__() method \u88ab\u547c\u53eb\u6642\uff0c\u6703\u56de\u50b3\u4e00\u500b\u53ef\u7b49\u5f85\u7269\u4ef6 (awaitable object)\uff0c\u8a72\u7269\u4ef6\u5c07\u57f7\u884c\u975e\u540c\u6b65\u7522\u751f\u5668\u7684\u51fd\u5f0f\u4e3b\u9ad4\uff0c\u76f4\u5230\u9047\u5230\u4e0b\u4e00\u500b yield \u904b\u7b97\u5f0f\u3002

\n

\u6bcf\u500b yield \u6703\u66ab\u505c\u8655\u7406\u7a0b\u5e8f\uff0c\u4e26\u8a18\u4f4f\u4f4d\u7f6e\u57f7\u884c\u72c0\u614b\uff08\u5305\u62ec\u5340\u57df\u8b8a\u6578\u53ca\u64f1\u7f6e\u4e2d\u7684 try \u9673\u8ff0\u5f0f\uff09\u3002\u7576\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\u4ee5\u53e6\u4e00\u500b\u88ab __anext__() \u56de\u50b3\u7684\u53ef\u7b49\u5f85\u7269\u4ef6\u6709\u6548\u5730\u56de\u5fa9\u6642\uff0c\u5b83\u6703\u5f9e\u505c\u6b62\u7684\u5730\u65b9\u7e7c\u7e8c\u57f7\u884c\u3002\u8acb\u53c3\u95b1 PEP 492 \u548c PEP 525\u3002

\n
\n
\n"}, "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": {"title": "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u53ef\u4ee5\u5728 async for \u9673\u8ff0\u5f0f\u4e2d\u88ab\u4f7f\u7528\u3002\u5fc5\u9808\u5f9e\u5b83\u7684 __aiter__() method \u56de\u50b3\u4e00\u500b asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09": {"title": "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u5be6\u4f5c __aiter__() \u548c __anext__() method \u7684\u7269\u4ef6\u3002__anext__() \u5fc5\u9808\u56de\u50b3\u4e00\u500b awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09\u3002async for \u6703\u89e3\u6790\u975e\u540c\u6b65\u758a\u4ee3\u5668\u7684 __anext__() method \u6240\u56de\u50b3\u7684\u53ef\u7b49\u5f85\u7269\u4ef6\uff0c\u76f4\u5230\u5b83\u5f15\u767c StopAsyncIteration \u4f8b\u5916\u3002\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "attribute\uff08\u5c6c\u6027\uff09": {"title": "attribute\uff08\u5c6c\u6027\uff09", "body": "
\n

\u4e00\u500b\u8207\u67d0\u7269\u4ef6\u76f8\u95dc\u806f\u7684\u503c\uff0c\u8a72\u503c\u5927\u591a\u80fd\u900f\u904e\u4f7f\u7528\u9ede\u5206\u9694\u904b\u7b97\u5f0f (dotted expression) \u7684\u540d\u7a31\u88ab\u53c3\u7167\u3002\u4f8b\u5982\uff0c\u5982\u679c\u7269\u4ef6 o \u6709\u4e00\u500b\u5c6c\u6027 a\uff0c\u5247\u8a72\u5c6c\u6027\u80fd\u4ee5 o.a \u88ab\u53c3\u7167\u3002

\n

\u5982\u679c\u4e00\u500b\u7269\u4ef6\u5141\u8a31\uff0c\u7d66\u4e88\u8a72\u7269\u4ef6\u4e00\u500b\u540d\u7a31\u4e0d\u662f\u7531Identifiers and keywords\u6240\u5b9a\u7fa9\u4e4b\u8b58\u5225\u7b26 (identifier) \u7684\u5c6c\u6027\u662f\u6709\u53ef\u80fd\u7684\uff0c\u4f8b\u5982\u4f7f\u7528 setattr()\u3002\u50cf\u9019\u6a23\u7684\u5c6c\u6027\u5c07\u7121\u6cd5\u4f7f\u7528\u9ede\u5206\u9694\u904b\u7b97\u5f0f\u4f86\u5b58\u53d6\uff0c\u800c\u662f\u9700\u8981\u4f7f\u7528 getattr() \u4f86\u53d6\u5f97\u5b83\u3002

\n
\n
\n"}, "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09": {"title": "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u5728 await \u904b\u7b97\u5f0f\u4e2d\u88ab\u4f7f\u7528\u7684\u7269\u4ef6\u3002\u5b83\u53ef\u4ee5\u662f\u4e00\u500b coroutine\uff08\u5354\u7a0b\uff09\uff0c\u6216\u662f\u4e00\u500b\u6709 __await__() method \u7684\u7269\u4ef6\u3002\u53e6\u8acb\u53c3\u95b1 PEP 492\u3002

\n
\n
\n"}, "bdfl": {"title": "BDFL", "body": "
\n

Benevolent Dictator For Life\uff08\u7d42\u8eab\u4ec1\u6148\u7368\u88c1\u8005\uff09\uff0c\u53c8\u540d Guido van Rossum\uff0cPython \u7684\u5275\u9020\u8005\u3002

\n
\n
\n"}, "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09": {"title": "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 bytes-like objects\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09\u7684 file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u3002\u4e8c\u9032\u4f4d\u6a94\u6848\u7684\u4f8b\u5b50\u6709\uff1a\u4ee5\u4e8c\u9032\u4f4d\u6a21\u5f0f\uff08'rb'\u3001'wb' \u6216 'rb+'\uff09\u958b\u555f\u7684\u6a94\u6848\u3001sys.stdin.buffer\u3001sys.stdout.buffer\uff0c\u4ee5\u53ca io.BytesIO \u548c gzip.GzipFile \u5be6\u4f8b\u3002

\n

\u53e6\u8acb\u53c3\u95b1 text file\uff08\u6587\u5b57\u6a94\u6848\uff09\uff0c\u5b83\u662f\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 str \u7269\u4ef6\u7684\u6a94\u6848\u7269\u4ef6\u3002

\n
\n
\n"}, "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09": {"title": "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09", "body": "
\n

\u5728 Python \u7684 C API \u4e2d\uff0c\u501f\u7528\u53c3\u7167\u662f\u4e00\u500b\u5c0d\u7269\u4ef6\u7684\u53c3\u7167\uff0c\u5176\u4e2d\u4f7f\u7528\u8a72\u7269\u4ef6\u7684\u7a0b\u5f0f\u78bc\u4e26\u4e0d\u64c1\u6709\u9019\u500b\u53c3\u7167\u3002\u5982\u679c\u8a72\u7269\u4ef6\u88ab\u92b7\u6bc0\uff0c\u5b83\u6703\u6210\u70ba\u4e00\u500b\u8ff7\u9014\u6307\u6a19 (dangling pointer)\u3002\u4f8b\u5982\uff0c\u4e00\u6b21\u5783\u573e\u56de\u6536 (garbage collection) \u53ef\u4ee5\u79fb\u9664\u5c0d\u7269\u4ef6\u7684\u6700\u5f8c\u4e00\u500b strong reference\uff08\u5f37\u53c3\u7167\uff09\uff0c\u800c\u5c07\u8a72\u7269\u4ef6\u92b7\u6bc0\u3002

\n

\u5c0d borrowed reference \u547c\u53eb Py_INCREF() \u4ee5\u5c07\u5b83\u539f\u5730 (in-place) \u8f49\u63db\u70ba strong reference \u662f\u88ab\u5efa\u8b70\u7684\u505a\u6cd5\uff0c\u9664\u975e\u8a72\u7269\u4ef6\u4e0d\u80fd\u5728\u6700\u5f8c\u4e00\u6b21\u4f7f\u7528\u501f\u7528\u53c3\u7167\u4e4b\u524d\u88ab\u92b7\u6bc0\u3002Py_NewRef() \u51fd\u5f0f\u53ef\u7528\u65bc\u5efa\u7acb\u4e00\u500b\u65b0\u7684 strong reference\u3002

\n
\n
\n"}, "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09": {"title": "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u652f\u63f4\u7de9\u885d\u5354\u5b9a (Buffer Protocol)\u4e14\u80fd\u5920\u532f\u51fa C-contiguous \u7de9\u885d\u5340\u7684\u7269\u4ef6\u3002\u9019\u5305\u62ec\u6240\u6709\u7684 bytes\u3001bytearray \u548c array.array \u7269\u4ef6\uff0c\u4ee5\u53ca\u8a31\u591a\u5e38\u898b\u7684 memoryview \u7269\u4ef6\u3002\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u53ef\u7528\u65bc\u8655\u7406\u4e8c\u9032\u4f4d\u8cc7\u6599\u7684\u5404\u7a2e\u904b\u7b97\uff1b\u9019\u4e9b\u904b\u7b97\u5305\u62ec\u58d3\u7e2e\u3001\u5132\u5b58\u81f3\u4e8c\u9032\u4f4d\u6a94\u6848\u548c\u900f\u904e socket\uff08\u63d2\u5ea7\uff09\u767c\u9001\u3002

\n

\u6709\u4e9b\u904b\u7b97\u9700\u8981\u4e8c\u9032\u4f4d\u8cc7\u6599\u662f\u53ef\u8b8a\u7684\u3002\u8aaa\u660e\u6587\u4ef6\u901a\u5e38\u6703\u5c07\u9019\u4e9b\u7269\u4ef6\u7a31\u70ba\u300c\u53ef\u8b80\u5beb\u7684\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u300d\u3002\u53ef\u8b8a\u7de9\u885d\u5340\u7684\u7269\u4ef6\u5305\u62ec bytearray\uff0c\u4ee5\u53ca bytearray \u7684 memoryview\u3002\u5176\u4ed6\u7684\u904b\u7b97\u9700\u8981\u8b93\u4e8c\u9032\u4f4d\u8cc7\u6599\u88ab\u5132\u5b58\u5728\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff08\u300c\u552f\u8b80\u7684\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\u300d\uff09\u4e2d\uff1b\u9019\u4e9b\u7269\u4ef6\u5305\u62ec bytes\uff0c\u4ee5\u53ca bytes \u7269\u4ef6\u7684 memoryview\u3002

\n
\n
\n"}, "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09": {"title": "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09", "body": "
\n

Python \u7684\u539f\u59cb\u78bc\u6703\u88ab\u7de8\u8b6f\u6210\u4f4d\u5143\u7d44\u78bc\uff0c\u5b83\u662f Python \u7a0b\u5f0f\u5728 CPython \u76f4\u8b6f\u5668\u4e2d\u7684\u5167\u90e8\u8868\u793a\u6cd5\u3002\u8a72\u4f4d\u5143\u7d44\u78bc\u4e5f\u6703\u88ab\u66ab\u5b58\u5728 .pyc \u6a94\u6848\u4e2d\uff0c\u4ee5\u4fbf\u7b2c\u4e8c\u6b21\u57f7\u884c\u540c\u4e00\u500b\u6a94\u6848\u6642\u80fd\u5920\u66f4\u5feb\u901f\uff08\u53ef\u4ee5\u4e0d\u7528\u5f9e\u539f\u59cb\u78bc\u91cd\u65b0\u7de8\u8b6f\u70ba\u4f4d\u5143\u7d44\u78bc\uff09\u3002\u9019\u7a2e\u300c\u4e2d\u9593\u8a9e\u8a00 (intermediate language)\u300d\u64da\u8aaa\u662f\u904b\u884c\u5728\u4e00\u500b virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09\u4e0a\uff0c\u8a72\u865b\u64ec\u6a5f\u5668\u6703\u57f7\u884c\u8207\u6bcf\u500b\u4f4d\u5143\u7d44\u78bc\u5c0d\u61c9\u7684\u6a5f\u5668\u78bc (machine code)\u3002\u8981\u6ce8\u610f\u7684\u662f\uff0c\u4f4d\u5143\u7d44\u78bc\u7406\u8ad6\u4e0a\u662f\u7121\u6cd5\u5728\u4e0d\u540c\u7684 Python \u865b\u64ec\u6a5f\u5668\u4e4b\u9593\u904b\u4f5c\u7684\uff0c\u4e5f\u4e0d\u80fd\u5728\u4e0d\u540c\u7248\u672c\u7684 Python \u4e4b\u9593\u4fdd\u6301\u7a69\u5b9a\u3002

\n

\u4f4d\u5143\u7d44\u78bc\u7684\u6307\u4ee4\u5217\u8868\u53ef\u4ee5\u5728 dis \u6a21\u7d44\u7684\u8aaa\u660e\u6587\u4ef6\u4e2d\u627e\u5230\u3002

\n
\n
\n"}, "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09": {"title": "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b callable \u662f\u53ef\u4ee5\u88ab\u547c\u53eb\u7684\u7269\u4ef6\uff0c\u547c\u53eb\u6642\u53ef\u80fd\u4ee5\u4e0b\u5217\u5f62\u5f0f\u5e36\u6709\u4e00\u7d44\u5f15\u6578\uff08\u8acb\u898b argument\uff09\uff1a

\n
callable(argument1, argument2, argumentN)\n
\n
\n

\u4e00\u500b function \u8207\u5176\u5ef6\u4f38\u7684 method \u90fd\u662f callable\u3002\u4e00\u500b\u6709\u5be6\u4f5c __call__() \u65b9\u6cd5\u7684 class \u4e4b\u5be6\u4f8b\u4e5f\u662f\u500b callable\u3002

\n
\n
\n"}, "callback\uff08\u56de\u547c\uff09": {"title": "callback\uff08\u56de\u547c\uff09", "body": "
\n

\u4f5c\u70ba\u5f15\u6578\u88ab\u50b3\u905e\u7684\u4e00\u500b\u526f\u7a0b\u5f0f (subroutine) \u51fd\u5f0f\uff0c\u6703\u5728\u672a\u4f86\u7684\u67d0\u500b\u6642\u9593\u9ede\u88ab\u57f7\u884c\u3002

\n
\n
\n"}, "class\uff08\u985e\u5225\uff09": {"title": "class\uff08\u985e\u5225\uff09", "body": "
\n

\u4e00\u500b\u7528\u65bc\u5efa\u7acb\u4f7f\u7528\u8005\u5b9a\u7fa9\u7269\u4ef6\u7684\u6a21\u677f\u3002Class \u7684\u5b9a\u7fa9\u901a\u5e38\u6703\u5305\u542b method \u7684\u5b9a\u7fa9\uff0c\u9019\u4e9b method \u53ef\u4ee5\u5728 class \u7684\u5be6\u4f8b\u4e0a\u9032\u884c\u64cd\u4f5c\u3002

\n
\n
\n"}, "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09": {"title": "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09", "body": "
\n

\u4e00\u500b\u5728 class \u4e2d\u88ab\u5b9a\u7fa9\uff0c\u4e14\u61c9\u8a72\u53ea\u80fd\u5728 class \u5c64\u6b21\uff08\u610f\u5373\u4e0d\u662f\u5728 class \u7684\u5be6\u4f8b\u4e2d\uff09\u88ab\u4fee\u6539\u7684\u8b8a\u6578\u3002

\n
\n
\n"}, "complex number\uff08\u8907\u6578\uff09": {"title": "complex number\uff08\u8907\u6578\uff09", "body": "
\n

\u4e00\u500b\u6211\u5011\u719f\u6089\u7684\u5be6\u6578\u7cfb\u7d71\u7684\u64f4\u5145\uff0c\u5728\u6b64\u6240\u6709\u6578\u5b57\u90fd\u6703\u88ab\u8868\u793a\u70ba\u4e00\u500b\u5be6\u90e8\u548c\u4e00\u500b\u865b\u90e8\u4e4b\u548c\u3002\u865b\u6578\u5c31\u662f\u865b\u6578\u55ae\u4f4d\uff08-1 \u7684\u5e73\u65b9\u6839\uff09\u7684\u5be6\u6578\u500d\uff0c\u6b64\u55ae\u4f4d\u901a\u5e38\u5728\u6578\u5b78\u4e2d\u88ab\u5beb\u70ba i\uff0c\u5728\u5de5\u7a0b\u5b78\u4e2d\u88ab\u5beb\u70ba j\u3002Python \u5167\u5efa\u4e86\u5c0d\u8907\u6578\u7684\u652f\u63f4\uff0c\u5b83\u662f\u7528\u5f8c\u8005\u7684\u8a18\u6cd5\u4f86\u8868\u793a\u8907\u6578\uff1b\u865b\u90e8\u6703\u5e36\u8457\u4e00\u500b\u5f8c\u7db4\u7684 j \u88ab\u7de8\u5beb\uff0c\u4f8b\u5982 3+1j\u3002\u82e5\u8981\u5c07 math \u6a21\u7d44\u5167\u7684\u5de5\u5177\u7b49\u6548\u5730\u7528\u65bc\u8907\u6578\uff0c\u8acb\u4f7f\u7528 cmath \u6a21\u7d44\u3002\u8907\u6578\u7684\u4f7f\u7528\u662f\u4e00\u500b\u76f8\u7576\u9032\u968e\u7684\u6578\u5b78\u529f\u80fd\u3002\u5982\u679c\u4f60\u6c92\u6709\u5bdf\u89ba\u5230\u5c0d\u5b83\u5011\u7684\u9700\u6c42\uff0c\u90a3\u9ebc\u5e7e\u4e4e\u80fd\u78ba\u5b9a\u4f60\u53ef\u4ee5\u5b89\u5168\u5730\u5ffd\u7565\u5b83\u5011\u3002

\n
\n
\n"}, "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09": {"title": "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09", "body": "
\n

\u4e00\u500b\u53ef\u4ee5\u63a7\u5236 with \u9673\u8ff0\u5f0f\u4e2d\u6240\u898b\u74b0\u5883\u7684\u7269\u4ef6\uff0c\u800c\u5b83\u662f\u900f\u904e\u5b9a\u7fa9 __enter__() \u548c __exit__() method \u4f86\u63a7\u5236\u7684\u3002\u8acb\u53c3\u95b1 PEP 343\u3002

\n
\n
\n"}, "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09": {"title": "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09", "body": "
\n

\u4e00\u500b\u8b8a\u6578\uff0c\u5176\u503c\u53ef\u4ee5\u6839\u64da\u4e0a\u4e0b\u6587\u7684\u60c5\u5883\u800c\u6709\u6240\u4e0d\u540c\u3002\u9019\u985e\u4f3c\u57f7\u884c\u7dd2\u5340\u57df\u5132\u5b58\u5340 (Thread-Local Storage)\uff0c\u5728\u5176\u4e2d\uff0c\u4e00\u500b\u8b8a\u6578\u5728\u6bcf\u500b\u57f7\u884c\u7dd2\u53ef\u80fd\u5177\u6709\u4e0d\u540c\u7684\u503c\u3002\u7136\u800c\uff0c\u95dc\u65bc\u60c5\u5883\u8b8a\u6578\uff0c\u5728\u4e00\u500b\u57f7\u884c\u7dd2\u4e2d\u53ef\u80fd\u6703\u6709\u591a\u500b\u60c5\u5883\uff0c\u800c\u60c5\u5883\u8b8a\u6578\u7684\u4e3b\u8981\u7528\u9014\uff0c\u662f\u5728\u4e26\u884c\u7684\u975e\u540c\u6b65\u4efb\u52d9 (concurrent asynchronous task) \u4e2d\uff0c\u5c0d\u65bc\u8b8a\u6578\u72c0\u614b\u7684\u8ffd\u8e64\u3002\u8acb\u53c3\u95b1 contextvars\u3002

\n
\n
\n"}, "contiguous\uff08\u9023\u7e8c\u7684\uff09": {"title": "contiguous\uff08\u9023\u7e8c\u7684\uff09", "body": "
\n

\u5982\u679c\u4e00\u500b\u7de9\u885d\u5340\u662f C-contiguous \u6216\u662f Fortran contiguous\uff0c\u5247\u5b83\u6703\u78ba\u5207\u5730\u88ab\u8996\u70ba\u662f\u9023\u7e8c\u7684\u3002\u96f6\u7dad (zero-dimensional) \u7684\u7de9\u885d\u5340\u90fd\u662f C \u53ca Fortran contiguous\u3002\u5728\u4e00\u7dad (one-dimensional) \u9663\u5217\u4e2d\uff0c\u5404\u9805\u76ee\u5fc5\u9808\u5728\u8a18\u61b6\u9ad4\u4e2d\u5f7c\u6b64\u76f8\u9130\u5730\u6392\u5217\uff0c\u800c\u5176\u7d22\u5f15\u9806\u5e8f\u662f\u5f9e\u96f6\u958b\u59cb\u905e\u589e\u3002\u5728\u591a\u7dad\u7684 (multidimensional) C-contiguous \u9663\u5217\u4e2d\uff0c\u6309\u8a18\u61b6\u9ad4\u4f4d\u5740\u7684\u9806\u5e8f\u8a2a\u554f\u5404\u500b\u9805\u76ee\u6642\uff0c\u6700\u5f8c\u4e00\u500b\u7d22\u5f15\u7684\u8b8a\u5316\u6700\u5feb\u3002\u7136\u800c\uff0c\u5728 Fortran contiguous \u9663\u5217\u4e2d\uff0c\u7b2c\u4e00\u500b\u7d22\u5f15\u7684\u8b8a\u5316\u6700\u5feb\u3002

\n
\n
\n"}, "coroutine\uff08\u5354\u7a0b\uff09": {"title": "coroutine\uff08\u5354\u7a0b\uff09", "body": "
\n

\u5354\u7a0b\u662f\u526f\u7a0b\u5f0f (subroutine) \u7684\u4e00\u7a2e\u66f4\u70ba\u5ee3\u7fa9\u7684\u5f62\u5f0f\u3002\u526f\u7a0b\u5f0f\u662f\u5728\u67d0\u500b\u6642\u9593\u9ede\u88ab\u9032\u5165\u4e26\u5728\u53e6\u4e00\u500b\u6642\u9593\u9ede\u88ab\u9000\u51fa\u3002\u5354\u7a0b\u53ef\u4ee5\u5728\u8a31\u591a\u4e0d\u540c\u7684\u6642\u9593\u9ede\u88ab\u9032\u5165\u3001\u9000\u51fa\u548c\u56de\u5fa9\u3002\u5b83\u5011\u80fd\u5920\u4ee5 async def \u9673\u8ff0\u5f0f\u88ab\u5be6\u4f5c\u3002\u53e6\u8acb\u53c3\u95b1 PEP 492\u3002

\n
\n
\n"}, "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09": {"title": "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u56de\u50b3 coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6\u7684\u51fd\u5f0f\u3002\u4e00\u500b\u5354\u7a0b\u51fd\u5f0f\u80fd\u4ee5 async def \u9673\u8ff0\u5f0f\u88ab\u5b9a\u7fa9\uff0c\u4e26\u53ef\u80fd\u6703\u5305\u542b await\u3001async for \u548c async with \u95dc\u9375\u5b57\u3002\u9019\u4e9b\u95dc\u9375\u5b57\u7531 PEP 492 \u5f15\u5165\u3002

\n
\n
\n"}, "cpython": {"title": "CPython", "body": "
\n

Python \u7a0b\u5f0f\u8a9e\u8a00\u7684\u6a19\u6e96\u5be6\u4f5c (canonical implementation)\uff0c\u88ab\u767c\u5e03\u5728 python.org \u4e0a\u3002\u300cCPython\u300d\u9019\u500b\u8853\u8a9e\u5728\u5fc5\u8981\u6642\u88ab\u4f7f\u7528\uff0c\u4ee5\u5340\u5206\u6b64\u5be6\u4f5c\u8207\u5176\u5b83\u8a9e\u8a00\u7684\u5be6\u4f5c\uff0c\u4f8b\u5982 Jython \u6216 IronPython\u3002

\n
\n
\n"}, "decorator\uff08\u88dd\u98fe\u5668\uff09": {"title": "decorator\uff08\u88dd\u98fe\u5668\uff09", "body": "
\n

\u4e00\u500b\u51fd\u5f0f\uff0c\u5b83\u6703\u56de\u50b3\u53e6\u4e00\u500b\u51fd\u5f0f\uff0c\u901a\u5e38\u5b83\u6703\u4f7f\u7528 @wrapper \u8a9e\u6cd5\uff0c\u88ab\u61c9\u7528\u70ba\u4e00\u7a2e\u51fd\u5f0f\u7684\u8b8a\u63db (function transformation)\u3002\u88dd\u98fe\u5668\u7684\u5e38\u898b\u7bc4\u4f8b\u662f classmethod() \u548c staticmethod()\u3002

\n

\u88dd\u98fe\u5668\u8a9e\u6cd5\u53ea\u662f\u8a9e\u6cd5\u7cd6\u3002\u4ee5\u4e0b\u5169\u500b\u51fd\u5f0f\u5b9a\u7fa9\u5728\u8a9e\u7fa9\u4e0a\u662f\u7b49\u6548\u7684\uff1a

\n
def f(arg):\n    ...\nf = staticmethod(f)\n\n@staticmethod\ndef f(arg):\n    ...\n
\n
\n

Class \u4e5f\u5b58\u5728\u76f8\u540c\u7684\u6982\u5ff5\uff0c\u4f46\u5728\u90a3\u88e1\u6bd4\u8f03\u4e0d\u5e38\u7528\u3002\u95dc\u65bc\u88dd\u98fe\u5668\u7684\u66f4\u591a\u5167\u5bb9\uff0c\u8acb\u53c3\u95b1\u51fd\u5f0f\u5b9a\u7fa9\u548c class \u5b9a\u7fa9\u7684\u8aaa\u660e\u6587\u4ef6\u3002

\n
\n
\n"}, "descriptor\uff08\u63cf\u8ff0\u5668\uff09": {"title": "descriptor\uff08\u63cf\u8ff0\u5668\uff09", "body": "
\n

\u4efb\u4f55\u5b9a\u7fa9\u4e86 __get__()\u3001__set__() \u6216 __delete__() method \u7684\u7269\u4ef6\u3002\u7576\u4e00\u500b class \u5c6c\u6027\u662f\u4e00\u500b\u63cf\u8ff0\u5668\u6642\uff0c\u5b83\u7684\u7279\u6b8a\u9023\u7d50\u884c\u70ba\u6703\u5728\u5c6c\u6027\u67e5\u627e\u6642\u88ab\u89f8\u767c\u3002\u901a\u5e38\uff0c\u4f7f\u7528 a.b \u4f86\u53d6\u5f97\u3001\u8a2d\u5b9a\u6216\u522a\u9664\u67d0\u500b\u5c6c\u6027\u6642\uff0c\u6703\u5728 a \u7684 class \u5b57\u5178\u4e2d\u67e5\u627e\u540d\u7a31\u70ba b \u7684\u7269\u4ef6\uff0c\u4f46\u5982\u679c b \u662f\u4e00\u500b\u63cf\u8ff0\u5668\uff0c\u5247\u76f8\u5c0d\u61c9\u7684\u63cf\u8ff0\u5668 method \u6703\u88ab\u547c\u53eb\u3002\u5c0d\u63cf\u8ff0\u5668\u7684\u7406\u89e3\u662f\u6df1\u5165\u7406\u89e3 Python \u7684\u95dc\u9375\uff0c\u56e0\u70ba\u5b83\u5011\u662f\u8a31\u591a\u529f\u80fd\u7684\u57fa\u790e\uff0c\u9019\u4e9b\u529f\u80fd\u5305\u62ec\u51fd\u5f0f\u3001method\u3001\u5c6c\u6027 (property)\u3001class method\u3001\u975c\u614b method\uff0c\u4ee5\u53ca\u5c0d super class\uff08\u7236\u985e\u5225\uff09\u7684\u53c3\u7167\u3002

\n

\u95dc\u65bc\u63cf\u8ff0\u5668 method \u7684\u66f4\u591a\u8cc7\u8a0a\uff0c\u8acb\u53c3\u95b1Implementing Descriptors\u6216\u63cf\u8ff0\u5668\u4f7f\u7528\u6307\u5357\u3002

\n
\n
\n"}, "dictionary\uff08\u5b57\u5178\uff09": {"title": "dictionary\uff08\u5b57\u5178\uff09", "body": "
\n

\u4e00\u500b\u95dc\u806f\u9663\u5217 (associative array)\uff0c\u5176\u4e2d\u4efb\u610f\u7684\u9375\u6703\u88ab\u6620\u5c04\u5230\u503c\u3002\u9375\u53ef\u4ee5\u662f\u4efb\u4f55\u5e36\u6709 __hash__() \u548c __eq__() method \u7684\u7269\u4ef6\u3002\u5728 Perl \u4e2d\u88ab\u7a31\u70ba\u96dc\u6e4a (hash)\u3002

\n
\n
\n"}, "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09": {"title": "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7dca\u5bc6\u7684\u65b9\u6cd5\uff0c\u7528\u4f86\u8655\u7406\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b\u5b57\u5178\u56de\u50b3\u3002results = {n: n ** 2 for n in range(10)} \u6703\u7522\u751f\u4e00\u500b\u5b57\u5178\uff0c\u5b83\u5305\u542b\u4e86\u9375 n \u6620\u5c04\u5230\u503c n ** 2\u3002\u8acb\u53c3\u95b1Displays for lists, sets and dictionaries\u3002

\n
\n
\n"}, "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09": {"title": "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09", "body": "
\n

\u5f9e dict.keys()\u3001dict.values() \u53ca dict.items() \u56de\u50b3\u7684\u7269\u4ef6\u88ab\u7a31\u70ba\u5b57\u5178\u6aa2\u8996\u3002\u5b83\u5011\u63d0\u4f9b\u4e86\u5b57\u5178\u4e2d\u9805\u76ee\u7684\u52d5\u614b\u6aa2\u8996\uff0c\u9019\u8868\u793a\u7576\u5b57\u5178\u6709\u8b8a\u52d5\u6642\uff0c\u8a72\u6aa2\u8996\u6703\u53cd\u6620\u9019\u4e9b\u8b8a\u52d5\u3002\u82e5\u8981\u5f37\u5236\u5c07\u5b57\u5178\u6aa2\u8996\u8f49\u70ba\u5b8c\u6574\u7684 list\uff08\u4e32\u5217\uff09\uff0c\u9808\u4f7f\u7528 list(dictview)\u3002\u8acb\u53c3\u95b1\u5b57\u5178\u8996\u5716\u7269\u4ef6\u3002

\n
\n
\n"}, "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09": {"title": "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09", "body": "
\n

\u4e00\u500b\u5728 class\u3001\u51fd\u5f0f\u6216\u6a21\u7d44\u4e2d\uff0c\u4f5c\u70ba\u7b2c\u4e00\u500b\u904b\u7b97\u5f0f\u51fa\u73fe\u7684\u5b57\u4e32\u6587\u672c\u3002\u96d6\u7136\u5b83\u5728\u5957\u4ef6\u57f7\u884c\u6642\u6703\u88ab\u5ffd\u7565\uff0c\u4f46\u5b83\u6703\u88ab\u7de8\u8b6f\u5668\u8fa8\u8b58\uff0c\u4e26\u88ab\u653e\u5165\u6240\u5c6c class\u3001\u51fd\u5f0f\u6216\u6a21\u7d44\u7684 __doc__ \u5c6c\u6027\u4e2d\u3002\u7531\u65bc\u8aaa\u660e\u5b57\u4e32\u53ef\u4ee5\u900f\u904e\u5167\u7701 (introspection) \u4f86\u700f\u89bd\uff0c\u56e0\u6b64\u5b83\u662f\u7269\u4ef6\u7684\u8aaa\u660e\u6587\u4ef6\u5b58\u653e\u7684\u6a19\u6e96\u4f4d\u7f6e\u3002

\n
\n
\n"}, "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09": {"title": "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09", "body": "
\n

\u4e00\u7a2e\u7a0b\u5f0f\u8a2d\u8a08\u98a8\u683c\uff0c\u5b83\u4e0d\u662f\u85c9\u7531\u6aa2\u67e5\u4e00\u500b\u7269\u4ef6\u7684\u578b\u5225\u4f86\u78ba\u5b9a\u5b83\u662f\u5426\u5177\u6709\u6b63\u78ba\u7684\u4ecb\u9762\uff1b\u53d6\u800c\u4ee3\u4e4b\u7684\u662f\uff0cmethod \u6216\u5c6c\u6027\u6703\u55ae\u7d14\u5730\u88ab\u547c\u53eb\u6216\u4f7f\u7528\u3002\uff08\u300c\u5982\u679c\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u96bb\u9d28\u5b50\u800c\u4e14\u53eb\u8d77\u4f86\u50cf\u4e00\u96bb\u9d28\u5b50\uff0c\u90a3\u9ebc\u5b83\u4e00\u5b9a\u662f\u4e00\u96bb\u9d28\u5b50\u3002\u300d\uff09\u56e0\u70ba\u5f37\u8abf\u4ecb\u9762\u800c\u975e\u7279\u5b9a\u578b\u5225\uff0c\u7cbe\u5fc3\u8a2d\u8a08\u7684\u7a0b\u5f0f\u78bc\u80fd\u8b93\u591a\u5f62\u66ff\u4ee3 (polymorphic substitution) \u4f86\u589e\u9032\u5b83\u7684\u9748\u6d3b\u6027\u3002\u9d28\u5b50\u578b\u5225\u8981\u907f\u514d\u4f7f\u7528 type() \u6216 isinstance() \u9032\u884c\u6e2c\u8a66\u3002\uff08\u4f46\u662f\u8acb\u6ce8\u610f\uff0c\u9d28\u5b50\u578b\u5225\u53ef\u4ee5\u7528\u62bd\u8c61\u57fa\u5e95\u985e\u5225 (abstract base class) \u4f86\u88dc\u5145\u3002\uff09\u7136\u800c\uff0c\u5b83\u901a\u5e38\u6703\u63a1\u7528 hasattr() \u6e2c\u8a66\uff0c\u6216\u662f EAFP \u7a0b\u5f0f\u8a2d\u8a08\u98a8\u683c\u3002

\n
\n
\n"}, "eafp": {"title": "EAFP", "body": "
\n

Easier to ask for forgiveness than permission.\uff08\u8acb\u6c42\u5bec\u6055\u6bd4\u8acb\u6c42\u8a31\u53ef\u66f4\u5bb9\u6613\u3002\uff09\u9019\u7a2e\u5e38\u898b\u7684 Python \u7de8\u78bc\u98a8\u683c\u6703\u5148\u5047\u8a2d\u6709\u6548\u7684\u9375\u6216\u5c6c\u6027\u7684\u5b58\u5728\uff0c\u4e26\u5728\u8a72\u5047\u8a2d\u88ab\u63a8\u7ffb\u6642\u518d\u6355\u7372\u4f8b\u5916\u3002\u9019\u7a2e\u4e7e\u6de8\u4e14\u5feb\u901f\u7684\u98a8\u683c\uff0c\u5176\u7279\u8272\u662f\u5b58\u5728\u8a31\u591a\u7684 try \u548c except \u9673\u8ff0\u5f0f\u3002\u8a72\u6280\u8853\u8207\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\uff08\u4f8b\u5982 C\uff09\u5e38\u898b\u7684 LBYL \u98a8\u683c\u5f62\u6210\u4e86\u5c0d\u6bd4\u3002

\n
\n
\n"}, "expression\uff08\u904b\u7b97\u5f0f\uff09": {"title": "expression\uff08\u904b\u7b97\u5f0f\uff09", "body": "
\n

\u4e00\u6bb5\u53ef\u4ee5\u88ab\u8a55\u4f30\u4e26\u6c42\u503c\u7684\u8a9e\u6cd5\u3002\u63db\u53e5\u8a71\u8aaa\uff0c\u4e00\u500b\u904b\u7b97\u5f0f\u5c31\u662f\u6587\u5b57\u3001\u540d\u7a31\u3001\u5c6c\u6027\u5b58\u53d6\u3001\u904b\u7b97\u5b50\u6216\u51fd\u5f0f\u547c\u53eb\u7b49\u904b\u7b97\u5f0f\u5143\u4ef6\u7684\u7d2f\u7a4d\uff0c\u800c\u9019\u4e9b\u5143\u4ef6\u90fd\u80fd\u56de\u50b3\u4e00\u500b\u503c\u3002\u8207\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\u4e0d\u540c\u7684\u662f\uff0c\u4e26\u975e\u6240\u6709\u7684 Python \u8a9e\u8a00\u69cb\u9020\u90fd\u662f\u904b\u7b97\u5f0f\u3002\u53e6\u5916\u6709\u4e00\u4e9b statement\uff08\u9673\u8ff0\u5f0f\uff09\u4e0d\u80fd\u88ab\u7528\u4f5c\u904b\u7b97\u5f0f\uff0c\u4f8b\u5982 while\u3002\u8ce6\u503c (assignment) \u4e5f\u662f\u9673\u8ff0\u5f0f\uff0c\u800c\u4e0d\u662f\u904b\u7b97\u5f0f\u3002

\n
\n
\n"}, "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09": {"title": "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09", "body": "
\n

\u4e00\u500b\u4ee5 C \u6216 C++ \u7de8\u5beb\u7684\u6a21\u7d44\uff0c\u5b83\u4f7f\u7528 Python \u7684 C API \u4f86\u8207\u6838\u5fc3\u53ca\u4f7f\u7528\u8005\u7a0b\u5f0f\u78bc\u9032\u884c\u4e92\u52d5\u3002

\n
\n
\n"}, "f-string\uff08f \u5b57\u4e32\uff09": {"title": "f-string\uff08f \u5b57\u4e32\uff09", "body": "
\n

\u4ee5 'f' \u6216 'F' \u70ba\u524d\u7db4\u7684\u5b57\u4e32\u6587\u672c\u901a\u5e38\u88ab\u7a31\u70ba\u300cf \u5b57\u4e32\u300d\uff0c\u5b83\u662f\u683c\u5f0f\u5316\u7684\u5b57\u4e32\u6587\u672c\u7684\u7e2e\u5beb\u3002\u53e6\u8acb\u53c3\u95b1 PEP 498\u3002

\n
\n
\n"}, "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09": {"title": "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u8b93\u4f7f\u7528\u8005\u900f\u904e\u6a94\u6848\u5c0e\u5411 (file-oriented) API\uff08\u5982 read() \u6216 write() \u7b49 method\uff09\u4f86\u64cd\u4f5c\u5e95\u5c64\u8cc7\u6e90\u7684\u7269\u4ef6\u3002\u6839\u64da\u6a94\u6848\u7269\u4ef6\u88ab\u5efa\u7acb\u7684\u65b9\u5f0f\uff0c\u5b83\u80fd\u5920\u5354\u8abf\u5c0d\u771f\u5be6\u78c1\u789f\u6a94\u6848\u6216\u662f\u5176\u4ed6\u985e\u578b\u7684\u5132\u5b58\u5668\u6216\u901a\u8a0a\u88dd\u7f6e\uff08\u4f8b\u5982\u6a19\u6e96\u8f38\u5165\uff0f\u8f38\u51fa\u3001\u8a18\u61b6\u9ad4\u5167\u7de9\u885d\u5340\u3001socket\uff08\u63d2\u5ea7\uff09\u3001\u7ba1\u7dda (pipe) \u7b49\uff09\u7684\u5b58\u53d6\u3002\u6a94\u6848\u7269\u4ef6\u4e5f\u88ab\u7a31\u70ba\u985e\u6a94\u6848\u7269\u4ef6 (file-like object) \u6216\u4e32\u6d41 (stream)\u3002

\n

\u5be6\u969b\u4e0a\uff0c\u6709\u4e09\u7a2e\u6a94\u6848\u7269\u4ef6\uff1a\u539f\u59cb\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\u3001\u7de9\u885d\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\u548c\u6587\u5b57\u6a94\u6848\u3002\u5b83\u5011\u7684\u4ecb\u9762\u5728 io \u6a21\u7d44\u4e2d\u88ab\u5b9a\u7fa9\u3002\u5efa\u7acb\u6a94\u6848\u7269\u4ef6\u7684\u6a19\u6e96\u65b9\u6cd5\u662f\u4f7f\u7528 open() \u51fd\u5f0f\u3002

\n
\n
\n"}, "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09": {"title": "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09", "body": "
\n

file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u7684\u540c\u7fa9\u5b57\u3002

\n
\n
\n"}, "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09": {"title": "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09", "body": "
\n

Python \u6240\u4f7f\u7528\u7684\u4e00\u7a2e\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff0c\u7528\u4f86\u89e3\u78bc\u4f86\u81ea\u4f5c\u696d\u7cfb\u7d71\u7684\u4f4d\u5143\u7d44\uff0c\u4ee5\u53ca\u5c07 Unicode \u7de8\u78bc\u5230\u4f5c\u696d\u7cfb\u7d71\u3002

\n

\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u5fc5\u9808\u4fdd\u8b49\u80fd\u6210\u529f\u89e3\u78bc\u6240\u6709\u5c0f\u65bc 128 \u7684\u4f4d\u5143\u7d44\u3002\u5982\u679c\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u7121\u6cd5\u63d0\u4f9b\u6b64\u4fdd\u8b49\uff0c\u5247 API \u51fd\u5f0f\u6703\u5f15\u767c UnicodeError\u3002

\n

sys.getfilesystemencoding() \u548c sys.getfilesystemencodeerrors() \u51fd\u5f0f\u53ef\u7528\u65bc\u53d6\u5f97\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\u3002

\n

filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09\u6703\u5728 Python \u555f\u52d5\u6642\u7531 PyConfig_Read() \u51fd\u5f0f\u4f86\u914d\u7f6e\uff1a\u8acb\u53c3\u95b1 filesystem_encoding\uff0c\u4ee5\u53ca PyConfig \u7684\u6210\u54e1 filesystem_errors\u3002

\n

\u53e6\u8acb\u53c3\u95b1 locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09\u3002

\n
\n
\n"}, "finder\uff08\u5c0b\u6aa2\u5668\uff09": {"title": "finder\uff08\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u6703\u5617\u8a66\u70ba\u6b63\u5728\u88ab import \u7684\u6a21\u7d44\u5c0b\u627e loader\uff08\u8f09\u5165\u5668\uff09\u3002

\n

\u6709\u5169\u7a2e\u985e\u578b\u7684\u5c0b\u6aa2\u5668\uff1a\u5143\u8def\u5f91\u5c0b\u6aa2\u5668 (meta path finder) \u6703\u4f7f\u7528 sys.meta_path\uff0c\u800c\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668 (path entry finder) \u6703\u4f7f\u7528 sys.path_hooks\u3002

\n

\u8acb\u53c3\u95b1 \u6a21\u7d44\u5f15\u5165\u7cfb\u7d71 \u548c importlib \u4ee5\u4e86\u89e3\u66f4\u591a\u7d30\u7bc0\u3002

\n
\n
\n"}, "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09": {"title": "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09", "body": "
\n

\u5411\u4e0b\u7121\u689d\u4ef6\u6368\u53bb\u5230\u6700\u63a5\u8fd1\u6574\u6578\u7684\u6578\u5b78\u9664\u6cd5\u3002\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\u7684\u904b\u7b97\u5b50\u662f //\u3002\u4f8b\u5982\uff0c\u904b\u7b97\u5f0f 11 // 4 \u7684\u8a08\u7b97\u7d50\u679c\u70ba 2\uff0c\u8207 float\uff08\u6d6e\u9ede\u6578\uff09\u771f\u9664\u6cd5\u6240\u56de\u50b3\u7684 2.75 \u4e0d\u540c\u3002\u8acb\u6ce8\u610f\uff0c(-11) // 4 \u7684\u7d50\u679c\u662f -3\uff0c\u56e0\u70ba\u662f -2.75 \u88ab\u5411\u4e0b\u7121\u689d\u4ef6\u6368\u53bb\u3002\u8acb\u53c3\u95b1 PEP 238\u3002

\n
\n
\n"}, "function\uff08\u51fd\u5f0f\uff09": {"title": "function\uff08\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u9023\u4e32\u7684\u9673\u8ff0\u5f0f\uff0c\u5b83\u80fd\u5920\u5411\u547c\u53eb\u8005\u56de\u50b3\u4e00\u4e9b\u503c\u3002\u5b83\u4e5f\u53ef\u4ee5\u88ab\u50b3\u905e\u96f6\u500b\u6216\u591a\u500b\u5f15\u6578\uff0c\u9019\u4e9b\u5f15\u6578\u53ef\u88ab\u4f7f\u7528\u65bc\u51fd\u5f0f\u672c\u9ad4\u7684\u57f7\u884c\u3002\u53e6\u8acb\u53c3\u95b1 parameter\uff08\u53c3\u6578\uff09\u3001method\uff08\u65b9\u6cd5\uff09\uff0c\u4ee5\u53ca\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\u3002

\n
\n
\n"}, "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": {"title": "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09", "body": "
\n

\u51fd\u5f0f\u53c3\u6578\u6216\u56de\u50b3\u503c\u7684\u4e00\u500b annotation\uff08\u8a3b\u91cb\uff09\u3002

\n

\u51fd\u5f0f\u8a3b\u91cb\u901a\u5e38\u88ab\u4f7f\u7528\u65bc\u578b\u5225\u63d0\u793a\uff1a\u4f8b\u5982\uff0c\u9019\u500b\u51fd\u5f0f\u9810\u671f\u6703\u5f97\u5230\u5169\u500b int \u5f15\u6578\uff0c\u4e26\u6703\u6709\u4e00\u500b int \u56de\u50b3\u503c\uff1a

\n
def sum_two_numbers(a: int, b: int) -> int:\n   return a + b\n
\n
\n

\u51fd\u5f0f\u8a3b\u91cb\u7684\u8a9e\u6cd5\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\u6709\u8a73\u7d30\u89e3\u91cb\u3002

\n

\u8acb\u53c3\u95b1 variable annotation \u548c PEP 484\uff0c\u7686\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\uff0c\u53e6\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "__future__": {"title": "__future__", "body": "
\n

future \u9673\u8ff0\u5f0f\uff1afrom __future__ import <feature>\uff0c\u6703\u6307\u793a\u7de8\u8b6f\u5668\u4f7f\u7528\u90a3\u4e9b\u5728 Python \u672a\u4f86\u7684\u767c\u5e03\u7248\u672c\u4e2d\u5c07\u6210\u70ba\u6a19\u6e96\u7684\u8a9e\u6cd5\u6216\u8a9e\u7fa9\uff0c\u4f86\u7de8\u8b6f\u7576\u524d\u7684\u6a21\u7d44\u3002\u800c __future__ \u6a21\u7d44\u5247\u8a18\u9304\u4e86 feature\uff08\u529f\u80fd\uff09\u53ef\u80fd\u7684\u503c\u3002\u900f\u904e import \u6b64\u6a21\u7d44\u4e26\u5c0d\u5176\u8b8a\u6578\u6c42\u503c\uff0c\u4f60\u53ef\u4ee5\u770b\u898b\u4e00\u500b\u65b0\u7684\u529f\u80fd\u662f\u4f55\u6642\u9996\u6b21\u88ab\u65b0\u589e\u5230\u6b64\u8a9e\u8a00\u4e2d\uff0c\u4ee5\u53ca\u5b83\u4f55\u6642\u5c07\u6703\uff08\u6216\u5df2\u7d93\uff09\u6210\u70ba\u9810\u8a2d\u7684\u529f\u80fd\uff1a

\n
>>> import __future__\n>>> __future__.division\n_Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)\n
\n
\n
\n
\n"}, "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09": {"title": "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09", "body": "
\n

\u7576\u8a18\u61b6\u9ad4\u4e0d\u518d\u88ab\u4f7f\u7528\u6642\uff0c\u5c07\u5176\u91cb\u653e\u7684\u904e\u7a0b\u3002Python \u57f7\u884c\u5783\u573e\u56de\u6536\uff0c\u662f\u900f\u904e\u53c3\u7167\u8a08\u6578 (reference counting)\uff0c\u4ee5\u53ca\u4e00\u500b\u80fd\u5920\u6aa2\u6e2c\u548c\u4e2d\u65b7\u53c3\u7167\u5faa\u74b0 (reference cycle) \u7684\u5faa\u74b0\u5783\u573e\u56de\u6536\u5668 (cyclic garbage collector) \u4f86\u5b8c\u6210\u3002\u5783\u573e\u56de\u6536\u5668\u53ef\u4ee5\u4f7f\u7528 gc \u6a21\u7d44\u5c0d\u5176\u9032\u884c\u63a7\u5236\u3002

\n
\n
\n"}, "generator\uff08\u7522\u751f\u5668\uff09": {"title": "generator\uff08\u7522\u751f\u5668\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3 generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09\u7684\u51fd\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u6b63\u5e38\u7684\u51fd\u5f0f\uff0c\u4f46\u4e0d\u540c\u7684\u662f\u5b83\u5305\u542b\u4e86 yield \u904b\u7b97\u5f0f\uff0c\u80fd\u7522\u751f\u4e00\u7cfb\u5217\u7684\u503c\uff0c\u9019\u4e9b\u503c\u53ef\u7528\u65bc for \u8ff4\u5708\uff0c\u6216\u662f\u4ee5 next() \u51fd\u5f0f\uff0c\u6bcf\u6b21\u6aa2\u7d22\u5176\u4e2d\u7684\u4e00\u500b\u503c\u3002

\n

\u9019\u500b\u8853\u8a9e\u901a\u5e38\u7528\u4f86\u8868\u793a\u4e00\u500b\u7522\u751f\u5668\u51fd\u5f0f\uff0c\u4f46\u5728\u67d0\u4e9b\u60c5\u5883\u4e2d\uff0c\u4e5f\u53ef\u80fd\u662f\u8868\u793a\u7522\u751f\u5668\u758a\u4ee3\u5668\u3002\u842c\u4e00\u60f3\u8868\u9054\u7684\u610f\u601d\u4e0d\u5920\u6e05\u695a\uff0c\u90a3\u5c31\u4f7f\u7528\u5b8c\u6574\u7684\u8853\u8a9e\uff0c\u4ee5\u907f\u514d\u6b67\u7fa9\u3002

\n
\n
\n"}, "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": {"title": "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u7531 generator\uff08\u7522\u751f\u5668\uff09\u51fd\u5f0f\u6240\u5efa\u7acb\u7684\u7269\u4ef6\u3002

\n

\u6bcf\u500b yield \u6703\u66ab\u505c\u8655\u7406\u7a0b\u5e8f\uff0c\u4e26\u8a18\u4f4f\u4f4d\u7f6e\u57f7\u884c\u72c0\u614b\uff08\u5305\u62ec\u5340\u57df\u8b8a\u6578\u53ca\u64f1\u7f6e\u4e2d\u7684 try \u9673\u8ff0\u5f0f\uff09\u3002\u7576\u7522\u751f\u5668\u758a\u4ee3\u5668\u56de\u5fa9\u6642\uff0c\u5b83\u6703\u5f9e\u505c\u6b62\u7684\u5730\u65b9\u7e7c\u7e8c\u57f7\u884c\uff08\u8207\u90a3\u4e9b\u6bcf\u6b21\u8abf\u7528\u6642\u90fd\u8981\u91cd\u65b0\u958b\u59cb\u7684\u51fd\u5f0f\u6709\u6240\u4e0d\u540c\uff09\u3002

\n
\n
\n"}, "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09": {"title": "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u6703\u56de\u50b3\u758a\u4ee3\u5668\u7684\u904b\u7b97\u5f0f\u3002\u5b83\u770b\u8d77\u4f86\u50cf\u4e00\u500b\u6b63\u5e38\u7684\u904b\u7b97\u5f0f\uff0c\u5f8c\u9762\u63a5\u8457\u4e00\u500b for \u5b50\u53e5\uff0c\u8a72\u5b50\u53e5\u5b9a\u7fa9\u4e86\u8ff4\u5708\u8b8a\u6578\u3001\u7bc4\u570d\u4ee5\u53ca\u4e00\u500b\u9078\u64c7\u6027\u7684 if \u5b50\u53e5\u3002\u8a72\u7d44\u5408\u904b\u7b97\u5f0f\u6703\u70ba\u5916\u5c64\u51fd\u5f0f\u7522\u751f\u591a\u500b\u503c\uff1a

\n
>>> sum(i*i for i in range(10))         # sum of squares 0, 1, 4, ... 81\n285\n
\n
\n
\n
\n"}, "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09": {"title": "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09", "body": "
\n

\u4e00\u500b\u7531\u591a\u500b\u51fd\u5f0f\u7d44\u6210\u7684\u51fd\u5f0f\uff0c\u8a72\u51fd\u5f0f\u6703\u5c0d\u4e0d\u540c\u7684\u578b\u5225\u5be6\u4f5c\u76f8\u540c\u7684\u904b\u7b97\u3002\u547c\u53eb\u671f\u9593\u61c9\u8a72\u4f7f\u7528\u54ea\u7a2e\u5be6\u4f5c\uff0c\u662f\u7531\u8abf\u5ea6\u6f14\u7b97\u6cd5 (dispatch algorithm) \u4f86\u6c7a\u5b9a\u3002

\n

\u53e6\u8acb\u53c3\u95b1 single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09\u8853\u8a9e\u8868\u689d\u76ee\u3001functools.singledispatch() \u88dd\u98fe\u5668\u548c PEP 443\u3002

\n
\n
\n"}, "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09": {"title": "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u88ab\u53c3\u6578\u5316 (parameterized) \u7684 type\uff08\u578b\u5225\uff09\uff1b\u901a\u5e38\u662f\u4e00\u500b \u5bb9\u5668\u578b\u5225\uff0c\u50cf\u662f list \u548c dict\u3002\u5b83\u88ab\u7528\u65bc\u578b\u5225\u63d0\u793a\u548c\u8a3b\u91cb\u3002

\n

\u8a73\u60c5\u8acb\u53c3\u95b1\u6cdb\u578b\u5225\u540d\u578b\u5225\u3001PEP 483\u3001PEP 484\u3001PEP 585 \u548c typing \u6a21\u7d44\u3002

\n
\n
\n"}, "gil": {"title": "GIL", "body": "
\n

\u8acb\u53c3\u95b1 global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09\u3002

\n
\n
\n"}, "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09": {"title": "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09", "body": "
\n

CPython \u76f4\u8b6f\u5668\u6240\u4f7f\u7528\u7684\u6a5f\u5236\uff0c\u7528\u4ee5\u78ba\u4fdd\u6bcf\u6b21\u90fd\u53ea\u6709\u4e00\u500b\u57f7\u884c\u7dd2\u80fd\u57f7\u884c Python \u7684 bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09\u3002\u900f\u904e\u4f7f\u7269\u4ef6\u6a21\u578b\uff08\u5305\u62ec\u95dc\u9375\u7684\u5167\u5efa\u578b\u5225\uff0c\u5982 dict\uff09\u81ea\u52d5\u5730\u907f\u514d\u4e26\u884c\u5b58\u53d6 (concurrent access) \u7684\u5371\u96aa\uff0c\u6b64\u6a5f\u5236\u53ef\u4ee5\u7c21\u5316 CPython \u7684\u5be6\u4f5c\u3002\u9396\u5b9a\u6574\u500b\u76f4\u8b6f\u5668\uff0c\u6703\u4f7f\u76f4\u8b6f\u5668\u66f4\u5bb9\u6613\u6210\u70ba\u591a\u57f7\u884c\u7dd2 (multi-threaded)\uff0c\u4f46\u4ee3\u50f9\u662f\u6703\u72a7\u7272\u6389\u591a\u8655\u7406\u5668\u7684\u6a5f\u5668\u80fd\u5920\u63d0\u4f9b\u7684\u4e00\u5927\u90e8\u5206\u5e73\u884c\u6027 (parallelism)\u3002

\n

\u7136\u800c\uff0c\u6709\u4e9b\u64f4\u5145\u6a21\u7d44\uff0c\u7121\u8ad6\u662f\u6a19\u6e96\u7684\u6216\u662f\u7b2c\u4e09\u65b9\u7684\uff0c\u5b83\u5011\u88ab\u8a2d\u8a08\u6210\u5728\u57f7\u884c\u58d3\u7e2e\u6216\u96dc\u6e4a\u7b49\u8a08\u7b97\u5bc6\u96c6 (computationally intensive) \u7684\u4efb\u52d9\u6642\uff0c\u53ef\u4ee5\u89e3\u9664 GIL\u3002\u53e6\u5916\uff0c\u5728\u57f7\u884c I/O \u6642\uff0cGIL \u7e3d\u662f\u6703\u88ab\u89e3\u9664\u3002

\n

\u904e\u53bb\u5c0d\u65bc\u5efa\u7acb\u300c\u7121\u9650\u5236\u57f7\u884c\u7dd2\u300d\u76f4\u8b6f\u5668\uff08\u4ee5\u66f4\u9ad8\u7684\u7cbe\u7d30\u5ea6\u9396\u5b9a\u5171\u4eab\u8cc7\u6599\u7684\u76f4\u8b6f\u5668\uff09\u7684\u52aa\u529b\u4e26\u672a\u6210\u529f\uff0c\u56e0\u70ba\u5728\u4e00\u822c\u7684\u55ae\u4e00\u8655\u7406\u5668\u60c5\u6cc1\u4e0b\uff0c\u6548\u80fd\u6703\u6709\u6240\u640d\u5931\u3002\u4e00\u822c\u8a8d\u70ba\uff0c\u82e5\u8981\u514b\u670d\u9019\u500b\u6548\u80fd\u554f\u984c\uff0c\u6703\u4f7f\u5be6\u4f5c\u8b8a\u5f97\u8907\u96dc\u8a31\u591a\uff0c\u9032\u800c\u4ed8\u51fa\u66f4\u9ad8\u7684\u7dad\u8b77\u6210\u672c\u3002

\n
\n
\n"}, "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09": {"title": "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09", "body": "
\n

\u4e00\u500b\u4f4d\u5143\u7d44\u78bc (bytecode) \u66ab\u5b58\u6a94\uff0c\u5b83\u4f7f\u7528\u96dc\u6e4a\u503c\u800c\u4e0d\u662f\u5c0d\u61c9\u539f\u59cb\u6a94\u6848\u7684\u6700\u5f8c\u4fee\u6539\u6642\u9593\uff0c\u4f86\u78ba\u5b9a\u5176\u6709\u6548\u6027\u3002\u8acb\u53c3\u95b1Cached bytecode invalidation\u3002

\n
\n
\n"}, "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09": {"title": "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09", "body": "
\n

\u5982\u679c\u4e00\u500b\u7269\u4ef6\u6709\u4e00\u500b\u96dc\u6e4a\u503c\uff0c\u8a72\u503c\u5728\u5176\u751f\u547d\u9031\u671f\u4e2d\u6c38\u4e0d\u6539\u8b8a\uff08\u5b83\u9700\u8981\u4e00\u500b __hash__() method\uff09\uff0c\u4e14\u53ef\u8207\u5176\u4ed6\u7269\u4ef6\u4e92\u76f8\u6bd4\u8f03\uff08\u5b83\u9700\u8981\u4e00\u500b __eq__() method\uff09\uff0c\u90a3\u9ebc\u5b83\u5c31\u662f\u4e00\u500b\u53ef\u96dc\u6e4a\u7269\u4ef6\u3002\u6bd4\u8f03\u7d50\u679c\u70ba\u76f8\u7b49\u7684\u591a\u500b\u53ef\u96dc\u6e4a\u7269\u4ef6\uff0c\u5b83\u5011\u5fc5\u9808\u64c1\u6709\u76f8\u540c\u7684\u96dc\u6e4a\u503c\u3002

\n

\u53ef\u96dc\u6e4a\u6027 (hashability) \u4f7f\u4e00\u500b\u7269\u4ef6\u53ef\u7528\u4f5c dictionary\uff08\u5b57\u5178\uff09\u7684\u9375\u548c set\uff08\u96c6\u5408\uff09\u7684\u6210\u54e1\uff0c\u56e0\u70ba\u9019\u4e9b\u8cc7\u6599\u7d50\u69cb\u90fd\u5728\u5176\u5167\u90e8\u4f7f\u7528\u4e86\u96dc\u6e4a\u503c\u3002

\n

\u5927\u591a\u6578\u7684 Python \u4e0d\u53ef\u8b8a\u5167\u5efa\u7269\u4ef6\u90fd\u662f\u53ef\u96dc\u6e4a\u7684\uff1b\u53ef\u8b8a\u7684\u5bb9\u5668\uff08\u4f8b\u5982 list \u6216 dictionary\uff09\u4e26\u4e0d\u662f\uff1b\u800c\u4e0d\u53ef\u8b8a\u7684\u5bb9\u5668\uff08\u4f8b\u5982 tuple\uff08\u5143\u7d44\uff09\u548c frozenset\uff09\uff0c\u53ea\u6709\u7576\u5b83\u5011\u7684\u5143\u7d20\u662f\u53ef\u96dc\u6e4a\u7684\uff0c\u5b83\u5011\u672c\u8eab\u624d\u662f\u53ef\u96dc\u6e4a\u7684\u3002\u82e5\u7269\u4ef6\u662f\u4f7f\u7528\u8005\u81ea\u5b9a class \u7684\u5be6\u4f8b\uff0c\u5247\u9019\u4e9b\u7269\u4ef6\u6703\u88ab\u9810\u8a2d\u70ba\u53ef\u96dc\u6e4a\u7684\u3002\u5b83\u5011\u5728\u4e92\u76f8\u6bd4\u8f03\u6642\u90fd\u662f\u4e0d\u76f8\u7b49\u7684\uff08\u9664\u975e\u5b83\u5011\u8207\u81ea\u5df1\u6bd4\u8f03\uff09\uff0c\u800c\u5b83\u5011\u7684\u96dc\u6e4a\u503c\u5247\u662f\u884d\u751f\u81ea\u5b83\u5011\u7684 id()\u3002

\n
\n
\n"}, "idle": {"title": "IDLE", "body": "
\n

Python \u7684 Integrated Development and Learning Environment\uff08\u6574\u5408\u958b\u767c\u8207\u5b78\u7fd2\u74b0\u5883\uff09\u3002IDLE \u662f\u4e00\u500b\u57fa\u672c\u7684\u7de8\u8f2f\u5668\u548c\u76f4\u8b6f\u5668\u74b0\u5883\uff0c\u5b83\u548c Python \u7684\u6a19\u6e96\u767c\u884c\u7248\u672c\u4e00\u8d77\u88ab\u63d0\u4f9b\u3002

\n
\n
\n"}, "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": {"title": "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u5177\u6709\u56fa\u5b9a\u503c\u7684\u7269\u4ef6\u3002\u4e0d\u53ef\u8b8a\u7269\u4ef6\u5305\u62ec\u6578\u5b57\u3001\u5b57\u4e32\u548c tuple\uff08\u5143\u7d44\uff09\u3002\u9019\u985e\u7269\u4ef6\u662f\u4e0d\u80fd\u88ab\u6539\u8b8a\u7684\u3002\u5982\u679c\u4e00\u500b\u4e0d\u540c\u7684\u503c\u5fc5\u9808\u88ab\u5132\u5b58\uff0c\u5247\u5fc5\u9808\u5efa\u7acb\u4e00\u500b\u65b0\u7684\u7269\u4ef6\u3002\u5b83\u5011\u5728\u9700\u8981\u6046\u5b9a\u96dc\u6e4a\u503c\u7684\u5730\u65b9\uff0c\u626e\u6f14\u91cd\u8981\u7684\u89d2\u8272\uff0c\u4f8b\u5982 dictionary\uff08\u5b57\u5178\uff09\u4e2d\u7684\u4e00\u500b\u9375\u3002

\n
\n
\n"}, "import path\uff08\u5f15\u5165\u8def\u5f91\uff09": {"title": "import path\uff08\u5f15\u5165\u8def\u5f91\uff09", "body": "
\n

\u4e00\u500b\u4f4d\u7f6e\uff08\u6216\u8def\u5f91\u9805\u76ee\uff09\u7684\u5217\u8868\uff0c\u800c\u90a3\u4e9b\u4f4d\u7f6e\u5c31\u662f\u5728 import \u6a21\u7d44\u6642\uff0c\u6703\u88ab path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09\u641c\u5c0b\u6a21\u7d44\u7684\u4f4d\u7f6e\u3002\u5728 import \u671f\u9593\uff0c\u6b64\u4f4d\u7f6e\u5217\u8868\u901a\u5e38\u662f\u4f86\u81ea sys.path\uff0c\u4f46\u5c0d\u65bc\u5b50\u5957\u4ef6 (subpackage) \u800c\u8a00\uff0c\u5b83\u4e5f\u53ef\u80fd\u662f\u4f86\u81ea\u7236\u5957\u4ef6\u7684 __path__ \u5c6c\u6027\u3002

\n
\n
\n"}, "importing\uff08\u5f15\u5165\uff09": {"title": "importing\uff08\u5f15\u5165\uff09", "body": "
\n

\u4e00\u500b\u904e\u7a0b\u3002\u4e00\u500b\u6a21\u7d44\u4e2d\u7684 Python \u7a0b\u5f0f\u78bc\u53ef\u4ee5\u900f\u904e\u6b64\u904e\u7a0b\uff0c\u88ab\u53e6\u4e00\u500b\u6a21\u7d44\u4e2d\u7684 Python \u7a0b\u5f0f\u78bc\u4f7f\u7528\u3002

\n
\n
\n"}, "importer\uff08\u5f15\u5165\u5668\uff09": {"title": "importer\uff08\u5f15\u5165\u5668\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u5c0b\u627e\u53ca\u8f09\u5165\u6a21\u7d44\u7684\u7269\u4ef6\uff1b\u5b83\u65e2\u662f finder\uff08\u5c0b\u6aa2\u5668\uff09\u4e5f\u662f loader\uff08\u8f09\u5165\u5668\uff09\u7269\u4ef6\u3002

\n
\n
\n"}, "interactive\uff08\u4e92\u52d5\u7684\uff09": {"title": "interactive\uff08\u4e92\u52d5\u7684\uff09", "body": "
\n

Python \u6709\u4e00\u500b\u4e92\u52d5\u5f0f\u76f4\u8b6f\u5668\uff0c\u9019\u8868\u793a\u4f60\u53ef\u4ee5\u5728\u76f4\u8b6f\u5668\u7684\u63d0\u793a\u5b57\u5143\u8f38\u5165\u9673\u8ff0\u5f0f\u548c\u904b\u7b97\u5f0f\uff0c\u7acb\u5373\u57f7\u884c\u5b83\u5011\u4e26\u4e14\u770b\u5230\u5b83\u5011\u7684\u7d50\u679c\u3002\u53ea\u8981\u555f\u52d5 python\uff0c\u4e0d\u9700\u8981\u4efb\u4f55\u5f15\u6578\uff08\u53ef\u80fd\u85c9\u7531\u5f9e\u4f60\u7684\u96fb\u8166\u7684\u4e3b\u9078\u55ae\u9078\u64c7\u5b83\uff09\u3002\u9019\u662f\u6e2c\u8a66\u65b0\u60f3\u6cd5\u6216\u6aa2\u67e5\u6a21\u584a\u548c\u5305\u7684\u975e\u5e38\u5f37\u5927\u7684\u65b9\u6cd5\uff08\u8acb\u8a18\u4f4fhelp(x)\uff09\u3002

\n
\n
\n"}, "interpreted\uff08\u76f4\u8b6f\u7684\uff09": {"title": "interpreted\uff08\u76f4\u8b6f\u7684\uff09", "body": "
\n

Python \u662f\u4e00\u7a2e\u76f4\u8b6f\u8a9e\u8a00\uff0c\u800c\u4e0d\u662f\u7de8\u8b6f\u8a9e\u8a00\uff0c\u4e0d\u904e\u9019\u500b\u5340\u5206\u53ef\u80fd\u6709\u4e9b\u6a21\u7cca\uff0c\u56e0\u70ba\u6709\u4f4d\u5143\u7d44\u78bc (bytecode) \u7de8\u8b6f\u5668\u7684\u5b58\u5728\u3002\u9019\u8868\u793a\u539f\u59cb\u6a94\u6848\u53ef\u4ee5\u76f4\u63a5\u88ab\u904b\u884c\uff0c\u800c\u4e0d\u9700\u660e\u78ba\u5730\u5efa\u7acb\u53e6\u4e00\u500b\u57f7\u884c\u6a94\uff0c\u7136\u5f8c\u518d\u57f7\u884c\u5b83\u3002\u76f4\u8b6f\u8a9e\u8a00\u901a\u5e38\u6bd4\u7de8\u8b6f\u8a9e\u8a00\u6709\u66f4\u77ed\u7684\u958b\u767c\uff0f\u9664\u932f\u9031\u671f\uff0c\u4e0d\u904e\u5b83\u5011\u7684\u7a0b\u5f0f\u901a\u5e38\u4e5f\u904b\u884c\u5f97\u8f03\u6162\u3002\u53e6\u8acb\u53c3\u95b1 interactive\uff08\u4e92\u52d5\u7684\uff09\u3002

\n
\n
\n"}, "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09": {"title": "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09", "body": "
\n

\u7576 Python \u76f4\u8b6f\u5668\u88ab\u8981\u6c42\u95dc\u9589\u6642\uff0c\u5b83\u6703\u9032\u5165\u4e00\u500b\u7279\u6b8a\u968e\u6bb5\uff0c\u5728\u6b64\u5b83\u9010\u6f38\u91cb\u653e\u6240\u6709\u88ab\u914d\u7f6e\u7684\u8cc7\u6e90\uff0c\u4f8b\u5982\u6a21\u7d44\u548c\u5404\u7a2e\u95dc\u9375\u5167\u90e8\u7d50\u69cb\u3002\u5b83\u4e5f\u6703\u591a\u6b21\u547c\u53eb\u5783\u573e\u56de\u6536\u5668 (garbage collector)\u3002\u9019\u80fd\u5920\u89f8\u767c\u4f7f\u7528\u8005\u81ea\u5b9a\u7684\u89e3\u69cb\u51fd\u5f0f (destructor) \u6216\u5f31\u5f15\u7528\u7684\u56de\u547c (weakref callback)\uff0c\u4e26\u57f7\u884c\u5176\u4e2d\u7684\u7a0b\u5f0f\u78bc\u3002\u5728\u95dc\u9589\u968e\u6bb5\u88ab\u57f7\u884c\u7684\u7a0b\u5f0f\u78bc\u6703\u9047\u5230\u5404\u7a2e\u4f8b\u5916\uff0c\u56e0\u70ba\u5b83\u6240\u4f9d\u8cf4\u7684\u8cc7\u6e90\u53ef\u80fd\u4e0d\u518d\u6709\u4f5c\u7528\u4e86\uff08\u5e38\u898b\u7684\u4f8b\u5b50\u662f\u51fd\u5f0f\u5eab\u6a21\u7d44\u6216\u662f\u8b66\u544a\u6a5f\u5236\uff09\u3002

\n

\u76f4\u8b6f\u5668\u95dc\u9589\u7684\u4e3b\u8981\u539f\u56e0\uff0c\u662f __main__ \u6a21\u7d44\u6216\u6b63\u88ab\u904b\u884c\u7684\u8173\u672c\u5df2\u7d93\u57f7\u884c\u5b8c\u6210\u3002

\n
\n
\n"}, "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": {"title": "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u7a2e\u80fd\u5920\u4e00\u6b21\u56de\u50b3\u4e00\u500b\u5176\u4e2d\u6210\u54e1\u7684\u7269\u4ef6\u3002\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u4f8b\u5b50\u5305\u62ec\u6240\u6709\u7684\u5e8f\u5217\u578b\u5225\uff08\u50cf\u662f list\u3001str \u548c tuple\uff09\u548c\u67d0\u4e9b\u975e\u5e8f\u5217\u578b\u5225\uff0c\u50cf\u662f dict\u3001\u6a94\u6848\u7269\u4ef6\uff0c\u4ee5\u53ca\u4f60\u6240\u5b9a\u7fa9\u7684\u4efb\u4f55 class \u7269\u4ef6\uff0c\u53ea\u8981\u90a3\u4e9b class \u6709 __iter__() method \u6216\u662f\u5be6\u4f5c sequence\uff08\u5e8f\u5217\uff09\u8a9e\u610f\u7684 __getitem__() method\uff0c\u8a72\u7269\u4ef6\u5c31\u662f\u53ef\u758a\u4ee3\u7269\u4ef6\u3002

\n

\u53ef\u758a\u4ee3\u7269\u4ef6\u53ef\u7528\u65bc for \u8ff4\u5708\u548c\u8a31\u591a\u5176\u4ed6\u9700\u8981\u4e00\u500b\u5e8f\u5217\u7684\u5730\u65b9 (zip()\u3001map()...)\u3002\u7576\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4f5c\u70ba\u5f15\u6578\u88ab\u50b3\u905e\u7d66\u5167\u5efa\u51fd\u5f0f iter() \u6642\uff0c\u5b83\u6703\u70ba\u8a72\u7269\u4ef6\u56de\u50b3\u4e00\u500b\u758a\u4ee3\u5668\u3002\u6b64\u758a\u4ee3\u5668\u9069\u7528\u65bc\u91dd\u5c0d\u4e00\u7d44\u503c\u9032\u884c\u4e00\u904d (one pass) \u904b\u7b97\u3002\u4f7f\u7528\u758a\u4ee3\u5668\u6642\uff0c\u901a\u5e38\u4e0d\u4e00\u5b9a\u8981\u547c\u53eb iter() \u6216\u81ea\u884c\u8655\u7406\u758a\u4ee3\u5668\u7269\u4ef6\u3002for \u9673\u8ff0\u5f0f\u6703\u81ea\u52d5\u5730\u70ba\u4f60\u8655\u7406\u9019\u4e9b\u4e8b\uff0c\u5b83\u6703\u5efa\u7acb\u4e00\u500b\u66ab\u6642\u6027\u7684\u672a\u547d\u540d\u8b8a\u6578\uff0c\u7528\u65bc\u5728\u8ff4\u5708\u671f\u9593\u4fdd\u6709\u8a72\u758a\u4ee3\u5668\u3002\u53e6\u8acb\u53c3\u95b1 iterator\uff08\u758a\u4ee3\u5668\uff09\u3001sequence\uff08\u5e8f\u5217\uff09\u548c generator\uff08\u7522\u751f\u5668\uff09\u3002

\n
\n
\n"}, "iterator\uff08\u758a\u4ee3\u5668\uff09": {"title": "iterator\uff08\u758a\u4ee3\u5668\uff09", "body": "
\n

\u4e00\u500b\u8868\u793a\u8cc7\u6599\u6d41\u7684\u7269\u4ef6\u3002\u91cd\u8907\u5730\u547c\u53eb\u758a\u4ee3\u5668\u7684 __next__() method\uff08\u6216\u662f\u5c07\u5b83\u50b3\u905e\u7d66\u5167\u5efa\u51fd\u5f0f next()\uff09\u6703\u4f9d\u5e8f\u56de\u50b3\u8cc7\u6599\u6d41\u4e2d\u7684\u5404\u9805\u76ee\u3002\u7576\u4e0d\u518d\u6709\u8cc7\u6599\u6642\uff0c\u5247\u6703\u5f15\u767c StopIteration \u4f8b\u5916\u3002\u6b64\u6642\uff0c\u8a72\u758a\u4ee3\u5668\u7269\u4ef6\u5df2\u88ab\u7528\u76e1\uff0c\u800c\u4efb\u4f55\u5c0d\u5176 __next__() method \u7684\u9032\u4e00\u6b65\u547c\u53eb\uff0c\u90fd\u53ea\u6703\u518d\u6b21\u5f15\u767c StopIteration\u3002\u758a\u4ee3\u5668\u5fc5\u9808\u6709\u4e00\u500b __iter__() method\uff0c\u5b83\u6703\u56de\u50b3\u758a\u4ee3\u5668\u7269\u4ef6\u672c\u8eab\uff0c\u6240\u4ee5\u6bcf\u500b\u758a\u4ee3\u5668\u4e5f\u90fd\u662f\u53ef\u758a\u4ee3\u7269\u4ef6\uff0c\u4e14\u53ef\u4ee5\u7528\u65bc\u5927\u591a\u6578\u9069\u7528\u5176\u4ed6\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u5834\u5408\u3002\u4e00\u500b\u660e\u986f\u7684\u4f8b\u5916\uff0c\u662f\u5617\u8a66\u591a\u904d\u758a\u4ee3 (multiple iteration passes) \u7684\u7a0b\u5f0f\u78bc\u3002\u4e00\u500b\u5bb9\u5668\u7269\u4ef6\uff08\u50cf\u662f list\uff09\u5728\u6bcf\u6b21\u4f60\u5c07\u5b83\u50b3\u905e\u7d66 iter() \u51fd\u5f0f\u6216\u5728 for \u8ff4\u5708\u4e2d\u4f7f\u7528\u5b83\u6642\uff0c\u90fd\u6703\u7522\u751f\u4e00\u500b\u5168\u65b0\u7684\u758a\u4ee3\u5668\u3002\u4f7f\u7528\u758a\u4ee3\u5668\u5617\u8a66\u6b64\u4e8b\uff08\u591a\u904d\u758a\u4ee3\uff09\u6642\uff0c\u53ea\u6703\u56de\u50b3\u5728\u524d\u4e00\u904d\u758a\u4ee3\u4e2d\u88ab\u7528\u904e\u7684\u3001\u540c\u4e00\u500b\u5df2\u88ab\u7528\u76e1\u7684\u758a\u4ee3\u5668\u7269\u4ef6\uff0c\u4f7f\u5176\u770b\u8d77\u4f86\u5c31\u50cf\u4e00\u500b\u7a7a\u7684\u5bb9\u5668\u3002

\n

\u5728\u758a\u4ee3\u5668\u578b\u5225\u6587\u4e2d\u53ef\u4ee5\u627e\u5230\u66f4\u591a\u8cc7\u8a0a\u3002

\n
\n

CPython \u5be6\u4f5c\u7d30\u7bc0\uff1a CPython \u4e26\u4e0d\u662f\u59cb\u7d42\u5982\u4e00\u5730\u90fd\u6703\u6aa2\u67e5\u300c\u758a\u4ee3\u5668\u6709\u5b9a\u7fa9 __iter__()\u300d\u9019\u500b\u898f\u5b9a\u3002

\n
\n
\n
\n"}, "key function\uff08\u9375\u51fd\u5f0f\uff09": {"title": "key function\uff08\u9375\u51fd\u5f0f\uff09", "body": "
\n

\u9375\u51fd\u5f0f\u6216\u7406\u5e8f\u51fd\u5f0f (collation function) \u662f\u4e00\u500b\u53ef\u547c\u53eb (callable) \u51fd\u5f0f\uff0c\u5b83\u6703\u56de\u50b3\u4e00\u500b\u7528\u65bc\u6392\u5e8f (sorting) \u6216\u5b9a\u5e8f (ordering) \u7684\u503c\u3002\u4f8b\u5982\uff0clocale.strxfrm() \u88ab\u7528\u4f86\u7522\u751f\u4e00\u500b\u4e86\u89e3\u5340\u57df\u7279\u5b9a\u6392\u5e8f\u6163\u4f8b\u7684\u6392\u5e8f\u9375\u3002

\n

Python \u4e2d\u7684\u8a31\u591a\u5de5\u5177\uff0c\u90fd\u63a5\u53d7\u4ee5\u9375\u51fd\u5f0f\u4f86\u63a7\u5236\u5143\u7d20\u88ab\u5b9a\u5e8f\u6216\u5206\u7d44\u7684\u65b9\u5f0f\u3002\u5b83\u5011\u5305\u62ec min()\u3001max()\u3001sorted()\u3001list.sort()\u3001heapq.merge()\u3001heapq.nsmallest()\u3001heapq.nlargest() \u548c itertools.groupby()\u3002

\n

\u6709\u5e7e\u7a2e\u65b9\u6cd5\u53ef\u4ee5\u5efa\u7acb\u4e00\u500b\u9375\u51fd\u5f0f\u3002\u4f8b\u5982\uff0cstr.lower() method \u53ef\u4ee5\u4f5c\u70ba\u4e0d\u5206\u5927\u5c0f\u5beb\u6392\u5e8f\u7684\u9375\u51fd\u5f0f\u3002\u6216\u8005\uff0c\u4e00\u500b\u9375\u51fd\u5f0f\u4e5f\u53ef\u4ee5\u5f9e lambda \u904b\u7b97\u5f0f\u88ab\u5efa\u9020\uff0c\u4f8b\u5982 lambda r: (r[0], r[2])\u3002\u53e6\u5916\uff0coperator.attrgetter()\u3001operator.itemgetter() \u548c operator.methodcaller() \u70ba\u4e09\u500b\u9375\u51fd\u5f0f\u7684\u5efa\u69cb\u51fd\u5f0f (constructor)\u3002\u95dc\u65bc\u5982\u4f55\u5efa\u7acb\u548c\u4f7f\u7528\u9375\u51fd\u5f0f\u7684\u7bc4\u4f8b\uff0c\u8acb\u53c3\u95b1\u5982\u4f55\u6392\u5e8f\u3002

\n
\n
\n"}, "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09": {"title": "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09", "body": "
\n

\u8acb\u53c3\u95b1 argument\uff08\u5f15\u6578\uff09\u3002

\n
\n
\n"}, "lambda": {"title": "lambda", "body": "
\n

\u7531\u55ae\u4e00 expression\uff08\u904b\u7b97\u5f0f\uff09\u6240\u7d44\u6210\u7684\u4e00\u500b\u533f\u540d\u884c\u5167\u51fd\u5f0f (inline function)\uff0c\u65bc\u8a72\u51fd\u5f0f\u88ab\u547c\u53eb\u6642\u6c42\u503c\u3002\u5efa\u7acb lambda \u51fd\u5f0f\u7684\u8a9e\u6cd5\u662f lambda [parameters]: expression

\n
\n
\n"}, "lbyl": {"title": "LBYL", "body": "
\n

Look before you leap.\uff08\u4e09\u601d\u800c\u5f8c\u884c\u3002\uff09\u9019\u7a2e\u7de8\u78bc\u98a8\u683c\u6703\u5728\u9032\u884c\u547c\u53eb\u6216\u67e5\u627e\u4e4b\u524d\uff0c\u660e\u78ba\u5730\u6e2c\u8a66\u5148\u6c7a\u689d\u4ef6\u3002\u9019\u7a2e\u98a8\u683c\u8207 EAFP \u65b9\u5f0f\u5f62\u6210\u5c0d\u6bd4\uff0c\u4e14\u5b83\u7684\u7279\u8272\u662f\u6703\u6709\u8a31\u591a if \u9673\u8ff0\u5f0f\u7684\u5b58\u5728\u3002

\n

\u5728\u4e00\u500b\u591a\u57f7\u884c\u7dd2\u74b0\u5883\u4e2d\uff0cLBYL \u65b9\u5f0f\u6709\u5728\u300c\u4e09\u601d\u300d\u548c\u300c\u5f8c\u884c\u300d\u4e4b\u9593\u5f15\u5165\u4e86\u7af6\u722d\u689d\u4ef6 (race condition) \u7684\u98a8\u96aa\u3002\u4f8b\u5982\u4ee5\u4e0b\u7a0b\u5f0f\u78bc if key in mapping: return mapping[key]\uff0c\u5982\u679c\u53e6\u4e00\u500b\u57f7\u884c\u7dd2\u5728\u6e2c\u8a66\u4e4b\u5f8c\u4f46\u5728\u67e5\u627e\u4e4b\u524d\uff0c\u5f9e mapping \u4e2d\u79fb\u9664\u4e86 key\uff0c\u5247\u8a72\u7a0b\u5f0f\u78bc\u5c31\u6703\u5931\u6548\u3002\u9019\u500b\u554f\u984c\u53ef\u4ee5\u7528\u9396 (lock) \u6216\u4f7f\u7528 EAFP \u7de8\u78bc\u65b9\u5f0f\u4f86\u89e3\u6c7a\u3002

\n
\n
\n"}, "list\uff08\u4e32\u5217\uff09": {"title": "list\uff08\u4e32\u5217\uff09", "body": "
\n

\u4e00\u500b Python \u5167\u5efa\u7684 sequence \uff08\u5e8f\u5217\uff09\u3002\u5118\u7ba1\u5b83\u7684\u540d\u5b57\u662f list\uff0c\u5b83\u5176\u5be6\u66f4\u985e\u4f3c\u5176\u4ed6\u8a9e\u8a00\u4e2d\u7684\u4e00\u500b\u9663\u5217 (array) \u800c\u8f03\u4e0d\u50cf\u4e00\u500b\u93c8\u7d50\u4e32\u5217 (linked list)\uff0c\u56e0\u70ba\u5b58\u53d6\u5143\u7d20\u7684\u6642\u9593\u8907\u96dc\u5ea6\u662f O(1)\u3002

\n
\n
\n"}, "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": {"title": "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7528\u4f86\u8655\u7406\u4e00\u500b\u5e8f\u5217\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b list \u56de\u50b3\u7684\u7c21\u8981\u65b9\u6cd5\u3002result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0] \u6703\u7522\u751f\u4e00\u500b\u5b57\u4e32 list\uff0c\u5176\u4e2d\u5305\u542b 0 \u5230 255 \u7bc4\u570d\u5167\uff0c\u6240\u6709\u5076\u6578\u7684\u5341\u516d\u9032\u4f4d\u6578 (0x..)\u3002if \u5b50\u53e5\u662f\u9078\u64c7\u6027\u7684\u3002\u5982\u679c\u7701\u7565\u5b83\uff0c\u5247 range(256) \u4e2d\u7684\u6240\u6709\u5143\u7d20\u90fd\u6703\u88ab\u8655\u7406\u3002

\n
\n
\n"}, "loader\uff08\u8f09\u5165\u5668\uff09": {"title": "loader\uff08\u8f09\u5165\u5668\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8f09\u5165\u6a21\u7d44\u7684\u7269\u4ef6\u3002\u5b83\u5fc5\u9808\u5b9a\u7fa9\u4e00\u500b\u540d\u70ba load_module() \u7684 method\uff08\u65b9\u6cd5\uff09\u3002\u8f09\u5165\u5668\u901a\u5e38\u662f\u88ab finder\uff08\u5c0b\u6aa2\u5668\uff09\u56de\u50b3\u3002\u66f4\u591a\u7d30\u7bc0\u8acb\u53c3\u95b1 PEP 302\uff0c\u95dc\u65bc abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09\uff0c\u8acb\u53c3\u95b1 importlib.abc.Loader\u3002

\n
\n
\n"}, "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09": {"title": "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09", "body": "
\n

\u5728 Unix \u4e0a\uff0c\u5b83\u662f LC_CTYPE \u5340\u57df\u8a2d\u5b9a\u7684\u7de8\u78bc\u3002\u5b83\u53ef\u4ee5\u7528 locale.setlocale(locale.LC_CTYPE, new_locale) \u4f86\u8a2d\u5b9a\u3002

\n

\u5728 Windows \u4e0a\uff0c\u5b83\u662f ANSI \u4ee3\u78bc\u9801\uff08code page\uff0c\u4f8b\u5982 "cp1252"\uff09\u3002

\n

\u5728 Android \u548c VxWorks \u4e0a\uff0cPython \u4f7f\u7528 "utf-8" \u4f5c\u70ba\u5340\u57df\u7de8\u78bc\u3002

\n

locale.getencoding() \u53ef\u4ee5\u7528\u4f86\u53d6\u5f97\u5340\u57df\u7de8\u78bc\u3002

\n

\u4e5f\u8acb\u53c3\u8003 filesystem encoding and error handler\u3002

\n
\n
\n"}, "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09": {"title": "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09", "body": "
\n

special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09\u7684\u4e00\u500b\u975e\u6b63\u5f0f\u540c\u7fa9\u8a5e\u3002

\n
\n
\n"}, "mapping\uff08\u5c0d\u6620\uff09": {"title": "mapping\uff08\u5c0d\u6620\uff09", "body": "
\n

\u4e00\u500b\u5bb9\u5668\u7269\u4ef6\uff0c\u5b83\u652f\u63f4\u4efb\u610f\u9375\u7684\u67e5\u627e\uff0c\u4e14\u80fd\u5be6\u4f5c abstract base classes\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09\u4e2d\uff0ccollections.abc.Mapping \u6216 collections.abc.MutableMapping \u6240\u6307\u5b9a\u7684 method\u3002\u7bc4\u4f8b\u5305\u62ec dict\u3001collections.defaultdict\u3001collections.OrderedDict \u548c collections.Counter\u3002

\n
\n
\n"}, "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09": {"title": "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u4e00\u7a2e\u7d93\u7531\u641c\u5c0b sys.meta_path \u800c\u56de\u50b3\u7684 finder\uff08\u5c0b\u6aa2\u5668\uff09\u3002\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\u8207\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668 (path entry finder) \u76f8\u95dc\u4f46\u662f\u4e0d\u540c\u3002

\n

\u95dc\u65bc\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\u5be6\u4f5c\u7684 method\uff0c\u8acb\u53c3\u95b1 importlib.abc.MetaPathFinder\u3002

\n
\n
\n"}, "metaclass\uff08\u5143\u985e\u5225\uff09": {"title": "metaclass\uff08\u5143\u985e\u5225\uff09", "body": "
\n

\u4e00\u7a2e class \u7684 class\u3002Class \u5b9a\u7fa9\u904e\u7a0b\u6703\u5efa\u7acb\u4e00\u500b class \u540d\u7a31\u3001\u4e00\u500b class dictionary\uff08\u5b57\u5178\uff09\uff0c\u4ee5\u53ca\u4e00\u500b base class\uff08\u57fa\u5e95\u985e\u5225\uff09\u7684\u5217\u8868\u3002Metaclass \u8ca0\u8cac\u63a5\u53d7\u9019\u4e09\u500b\u5f15\u6578\uff0c\u4e26\u5efa\u7acb\u8a72 class\u3002\u5927\u591a\u6578\u7684\u7269\u4ef6\u5c0e\u5411\u7a0b\u5f0f\u8a9e\u8a00\u6703\u63d0\u4f9b\u4e00\u500b\u9810\u8a2d\u7684\u5be6\u4f5c\u3002Python \u7684\u7279\u5225\u4e4b\u8655\u5728\u65bc\u5b83\u80fd\u5920\u5efa\u7acb\u81ea\u8a02\u7684 metaclass\u3002\u5927\u90e8\u5206\u7684\u4f7f\u7528\u8005\u5f9e\u672a\u9700\u8981\u6b64\u5de5\u5177\uff0c\u4f46\u662f\u7576\u9700\u8981\u6642\uff0cmetaclass \u53ef\u4ee5\u63d0\u4f9b\u5f37\u5927\u4e14\u512a\u96c5\u7684\u89e3\u6c7a\u65b9\u6848\u3002\u5b83\u5011\u5df2\u88ab\u7528\u65bc\u8a18\u9304\u5c6c\u6027\u5b58\u53d6\u3001\u589e\u52a0\u57f7\u884c\u7dd2\u5b89\u5168\u6027\u3001\u8ffd\u8e64\u7269\u4ef6\u5efa\u7acb\u3001\u5be6\u4f5c\u55ae\u4f8b\u6a21\u5f0f (singleton)\uff0c\u4ee5\u53ca\u8a31\u591a\u5176\u4ed6\u7684\u4efb\u52d9\u3002

\n

\u66f4\u591a\u8cc7\u8a0a\u53ef\u4ee5\u5728Metaclasses\u7ae0\u7bc0\u4e2d\u627e\u5230\u3002

\n
\n
\n"}, "method\uff08\u65b9\u6cd5\uff09": {"title": "method\uff08\u65b9\u6cd5\uff09", "body": "
\n

\u4e00\u500b\u5728 class \u672c\u9ad4\u5167\u88ab\u5b9a\u7fa9\u7684\u51fd\u5f0f\u3002\u5982\u679c method \u4f5c\u70ba\u5176 class \u5be6\u4f8b\u7684\u4e00\u500b\u5c6c\u6027\u88ab\u547c\u53eb\uff0c\u5247\u5b83\u5c07\u6703\u5f97\u5230\u8a72\u5be6\u4f8b\u7269\u4ef6\u6210\u70ba\u5b83\u7684\u7b2c\u4e00\u500b argument\uff08\u5f15\u6578\uff09\uff08\u6b64\u5f15\u6578\u901a\u5e38\u88ab\u7a31\u70ba self\uff09\u3002\u8acb\u53c3\u95b1 function\uff08\u51fd\u5f0f\uff09\u548c nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09\u3002

\n
\n
\n"}, "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09": {"title": "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09", "body": "
\n

\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\u662f\u5728\u67e5\u627e\u67d0\u500b\u6210\u54e1\u7684\u904e\u7a0b\u4e2d\uff0cbase class\uff08\u57fa\u5e95\u985e\u5225\uff09\u88ab\u641c\u5c0b\u7684\u9806\u5e8f\u3002\u95dc\u65bc Python \u81ea 2.3 \u7248\u76f4\u8b6f\u5668\u6240\u4f7f\u7528\u7684\u6f14\u7b97\u6cd5\u7d30\u7bc0\uff0c\u8acb\u53c3\u95b1 The Python 2.3 Method Resolution Order\u3002

\n
\n
\n"}, "module\uff08\u6a21\u7d44\uff09": {"title": "module\uff08\u6a21\u7d44\uff09", "body": "
\n

\u4e00\u500b\u64d4\u4efb Python \u7a0b\u5f0f\u78bc\u7684\u7d44\u7e54\u55ae\u4f4d (organizational unit) \u7684\u7269\u4ef6\u3002\u6a21\u7d44\u6709\u4e00\u500b\u547d\u540d\u7a7a\u9593\uff0c\u5b83\u5305\u542b\u4efb\u610f\u7684 Python \u7269\u4ef6\u3002\u6a21\u7d44\u662f\u85c9\u7531 importing \u7684\u904e\u7a0b\uff0c\u88ab\u8f09\u5165\u81f3 Python\u3002

\n

\u53e6\u8acb\u53c3\u95b1 package\uff08\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09": {"title": "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09", "body": "
\n

\u4e00\u500b\u547d\u540d\u7a7a\u9593\uff0c\u5b83\u5305\u542b\u7528\u65bc\u8f09\u5165\u6a21\u7d44\u7684 import \u76f8\u95dc\u8cc7\u8a0a\u3002\u5b83\u662f importlib.machinery.ModuleSpec \u7684\u4e00\u500b\u5be6\u4f8b\u3002

\n
\n
\n"}, "mro": {"title": "MRO", "body": "
\n

\u8acb\u53c3\u95b1 method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09\u3002

\n
\n
\n"}, "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": {"title": "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09", "body": "
\n

\u53ef\u8b8a\u7269\u4ef6\u53ef\u4ee5\u6539\u8b8a\u5b83\u5011\u7684\u503c\uff0c\u4f46\u7dad\u6301\u5b83\u5011\u7684 id()\u3002\u53e6\u8acb\u53c3\u95b1 immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09\u3002

\n
\n
\n"}, "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09": {"title": "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09", "body": "
\n

\u8853\u8a9e\u300cnamed tuple\uff08\u9644\u540d\u5143\u7d44\uff09\u300d\u662f\u6307\u5f9e tuple \u7e7c\u627f\u7684\u4efb\u4f55\u578b\u5225\u6216 class\uff0c\u4e14\u5b83\u7684\u53ef\u7d22\u5f15 (indexable) \u5143\u7d20\u4e5f\u53ef\u4ee5\u7528\u9644\u540d\u5c6c\u6027\u4f86\u5b58\u53d6\u3002\u9019\u4e9b\u578b\u5225\u6216 class \u4e5f\u53ef\u4ee5\u5177\u6709\u5176\u4ed6\u7684\u7279\u6027\u3002

\n

\u6709\u4e9b\u5167\u5efa\u578b\u5225\u662f named tuple\uff0c\u5305\u62ec\u7531 time.localtime() \u548c os.stat() \u56de\u50b3\u7684\u503c\u3002\u53e6\u4e00\u500b\u4f8b\u5b50\u662f sys.float_info\uff1a

\n
>>> sys.float_info[1]                   # indexed access\n1024\n>>> sys.float_info.max_exp              # named field access\n1024\n>>> isinstance(sys.float_info, tuple)   # kind of tuple\nTrue\n
\n
\n

\u6709\u4e9b named tuple \u662f\u5167\u5efa\u578b\u5225\uff08\u5982\u4e0a\u4f8b\uff09\u3002\u6216\u8005\uff0c\u4e00\u500b named tuple \u4e5f\u53ef\u4ee5\u5f9e\u4e00\u500b\u6b63\u898f\u7684 class \u5b9a\u7fa9\u4f86\u5efa\u7acb\uff0c\u53ea\u8981\u8a72 class \u662f\u7e7c\u627f\u81ea tuple\uff0c\u4e14\u5b9a\u7fa9\u4e86\u9644\u540d\u6b04\u4f4d (named field) \u5373\u53ef\u3002\u9019\u985e\u7684 class \u53ef\u4ee5\u624b\u5de5\u7de8\u5beb\u3001\u53ef\u4ee5\u7e7c\u627f\u81ea typing.NamedTuple \u4f86\u5efa\u7acb\uff0c\u4e5f\u53ef\u4ee5\u4f7f\u7528\u5de5\u5ee0\u51fd\u5f0f (factory function) collections.namedtuple() \u4f86\u5efa\u7acb\u3002\u5f8c\u8005\u6280\u8853\u4e5f\u589e\u52a0\u4e86\u4e00\u4e9b\u984d\u5916\u7684 method\uff0c\u9019\u4e9b method \u53ef\u80fd\u662f\u5728\u624b\u5beb\u6216\u5167\u5efa\u7684 named tuple \u4e2d\uff0c\u7121\u6cd5\u627e\u5230\u7684\u3002

\n
\n
\n"}, "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09": {"title": "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09", "body": "
\n

\u8b8a\u6578\u88ab\u5132\u5b58\u7684\u5730\u65b9\u3002\u547d\u540d\u7a7a\u9593\u662f\u4ee5 dictionary\uff08\u5b57\u5178\uff09\u88ab\u5be6\u4f5c\u3002\u6709\u5340\u57df\u7684\u3001\u5168\u57df\u7684\u53ca\u5167\u5efa\u7684\u547d\u540d\u7a7a\u9593\uff0c\u800c\u5728\u7269\u4ef6\u4e2d\uff08\u5728 method \u4e2d\uff09\u4e5f\u6709\u5de2\u72c0\u7684\u547d\u540d\u7a7a\u9593\u3002\u547d\u540d\u7a7a\u9593\u85c9\u7531\u9632\u6b62\u547d\u540d\u885d\u7a81\uff0c\u4f86\u652f\u63f4\u6a21\u7d44\u5316\u3002\u4f8b\u5982\uff0c\u51fd\u5f0f builtins.open \u548c os.open() \u662f\u900f\u904e\u5b83\u5011\u7684\u547d\u540d\u7a7a\u9593\u4f86\u5340\u5206\u5f7c\u6b64\u3002\u547d\u540d\u7a7a\u9593\u4e5f\u85c9\u7531\u660e\u78ba\u5730\u5340\u5206\u662f\u54ea\u500b\u6a21\u7d44\u5728\u5be6\u4f5c\u4e00\u500b\u51fd\u5f0f\uff0c\u4f86\u589e\u9032\u53ef\u8b80\u6027\u53ca\u53ef\u7dad\u8b77\u6027\u3002\u4f8b\u5982\uff0c\u5beb\u51fa random.seed() \u6216 itertools.islice() \u660e\u78ba\u5730\u8868\u793a\uff0c\u9019\u4e9b\u51fd\u5f0f\u5206\u5225\u662f\u7531 random \u548c itertools \u6a21\u7d44\u5728\u5be6\u4f5c\u3002

\n
\n
\n"}, "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09": {"title": "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b PEP 420 package\uff08\u5957\u4ef6\uff09\uff0c\u5b83\u53ea\u80fd\u4f5c\u70ba\u5b50\u5957\u4ef6 (subpackage) \u7684\u4e00\u500b\u5bb9\u5668\u3002\u547d\u540d\u7a7a\u9593\u5957\u4ef6\u53ef\u80fd\u6c92\u6709\u5be6\u9ad4\u7684\u8868\u793a\u6cd5\uff0c\u800c\u4e14\u5177\u9ad4\u4f86\u8aaa\u5b83\u5011\u4e0d\u50cf\u662f\u4e00\u500b regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09\uff0c\u56e0\u70ba\u5b83\u5011\u4e26\u6c92\u6709 __init__.py \u9019\u500b\u6a94\u6848\u3002

\n

\u53e6\u8acb\u53c3\u95b1 module\uff08\u6a21\u7d44\uff09\u3002

\n
\n
\n"}, "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09": {"title": "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09", "body": "
\n

\u80fd\u5920\u53c3\u7167\u5916\u5c64\u5b9a\u7fa9 (enclosing definition) \u4e2d\u7684\u8b8a\u6578\u7684\u80fd\u529b\u3002\u8209\u4f8b\u4f86\u8aaa\uff0c\u4e00\u500b\u51fd\u5f0f\u5982\u679c\u662f\u5728\u53e6\u4e00\u500b\u51fd\u5f0f\u4e2d\u88ab\u5b9a\u7fa9\uff0c\u5247\u5b83\u4fbf\u80fd\u5920\u53c3\u7167\u5916\u5c64\u51fd\u5f0f\u4e2d\u7684\u8b8a\u6578\u3002\u8acb\u6ce8\u610f\uff0c\u5728\u9810\u8a2d\u60c5\u6cc1\u4e0b\uff0c\u5de2\u72c0\u4f5c\u7528\u57df\u50c5\u9069\u7528\u65bc\u53c3\u7167\uff0c\u800c\u7121\u6cd5\u7528\u65bc\u8ce6\u503c\u3002\u5340\u57df\u8b8a\u6578\u80fd\u5728\u6700\u5167\u5c64\u4f5c\u7528\u57df\u4e2d\u8b80\u53d6\u53ca\u5beb\u5165\u3002\u540c\u6a23\u5730\uff0c\u5168\u57df\u8b8a\u6578\u662f\u5728\u5168\u57df\u547d\u540d\u7a7a\u9593\u4e2d\u8b80\u53d6\u53ca\u5beb\u5165\u3002nonlocal \u5bb9\u8a31\u5c0d\u5916\u5c64\u4f5c\u7528\u57df\u9032\u884c\u5beb\u5165\u3002

\n
\n
\n"}, "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09": {"title": "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09", "body": "
\n

\u4e00\u500b\u820a\u540d\uff0c\u5b83\u662f\u6307\u73fe\u5728\u6240\u6709\u7684 class \u7269\u4ef6\u6240\u4f7f\u7528\u7684 class \u98a8\u683c\u3002\u5728\u65e9\u671f\u7684 Python \u7248\u672c\u4e2d\uff0c\u53ea\u6709\u65b0\u5f0f class \u624d\u80fd\u4f7f\u7528 Python \u8f03\u65b0\u7684\u3001\u591a\u6a23\u7684\u529f\u80fd\uff0c\u50cf\u662f __slots__\u3001\u63cf\u8ff0\u5668 (descriptor)\u3001\u5c6c\u6027 (property)\u3001__getattribute__()\u3001class method\uff08\u985e\u5225\u65b9\u6cd5\uff09\u548c static method\uff08\u975c\u614b\u65b9\u6cd5\uff09\u3002

\n
\n
\n"}, "object\uff08\u7269\u4ef6\uff09": {"title": "object\uff08\u7269\u4ef6\uff09", "body": "
\n

\u5177\u6709\u72c0\u614b\uff08\u5c6c\u6027\u6216\u503c\uff09\u53ca\u88ab\u5b9a\u7fa9\u7684\u884c\u70ba\uff08method\uff09\u7684\u4efb\u4f55\u8cc7\u6599\u3002\u5b83\u4e5f\u662f\u4efb\u4f55 new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09\u7684\u6700\u7d42 base class\uff08\u57fa\u5e95\u985e\u5225\uff09\u3002

\n
\n
\n"}, "package\uff08\u5957\u4ef6\uff09": {"title": "package\uff08\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b Python \u7684 module\uff08\u6a21\u7d44\uff09\uff0c\u5b83\u53ef\u4ee5\u5305\u542b\u5b50\u6a21\u7d44 (submodule) \u6216\u662f\u905e\u8ff4\u7684\u5b50\u5957\u4ef6 (subpackage)\u3002\u6280\u8853\u4e0a\u800c\u8a00\uff0c\u5957\u4ef6\u5c31\u662f\u5177\u6709 __path__ \u5c6c\u6027\u7684\u4e00\u500b Python \u6a21\u7d44\u3002

\n

\u53e6\u8acb\u53c3\u95b1 regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09\u548c namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "parameter\uff08\u53c3\u6578\uff09": {"title": "parameter\uff08\u53c3\u6578\uff09", "body": "
\n

\u5728 function\uff08\u51fd\u5f0f\uff09\u6216 method \u5b9a\u7fa9\u4e2d\u7684\u4e00\u500b\u547d\u540d\u5be6\u9ad4 (named entity)\uff0c\u5b83\u6307\u660e\u8a72\u51fd\u5f0f\u80fd\u5920\u63a5\u53d7\u7684\u4e00\u500b argument\uff08\u5f15\u6578\uff09\uff0c\u6216\u5728\u67d0\u4e9b\u60c5\u6cc1\u4e0b\u6307\u793a\u591a\u500b\u5f15\u6578\u3002\u5171\u6709\u6709\u4e94\u7a2e\u4e0d\u540c\u7684\u53c3\u6578\u985e\u578b\uff1a

\n
    \n
  • positional-or-keyword\uff08\u4f4d\u7f6e\u6216\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ef\u4ee5\u6309\u7167\u4f4d\u7f6e\u6216\u662f\u4f5c\u70ba\u95dc\u9375\u5b57\u5f15\u6578\u88ab\u50b3\u905e\u7684\u5f15\u6578\u3002\u9019\u662f\u53c3\u6578\u7684\u9810\u8a2d\u985e\u578b\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 foo \u548c bar\uff1a

    \n
    def func(foo, bar=None): ...\n
    \n
    \n
  • \n
\n
    \n
  • positional-only\uff08\u50c5\u9650\u4f4d\u7f6e\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ea\u80fd\u6309\u7167\u4f4d\u7f6e\u88ab\u63d0\u4f9b\u7684\u5f15\u6578\u3002\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7684\u53c3\u6578\u5217\u8868\u4e2d\u5305\u542b\u4e00\u500b / \u5b57\u5143\uff0c\u5c31\u53ef\u4ee5\u5728\u8a72\u5b57\u5143\u524d\u9762\u5b9a\u7fa9\u50c5\u9650\u4f4d\u7f6e\u53c3\u6578\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 posonly1 \u548c posonly2\uff1a

    \n
    def func(posonly1, posonly2, /, positional_or_keyword): ...\n
    \n
    \n
  • \n
\n
    \n
  • keyword-only\uff08\u50c5\u9650\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u4e00\u500b\u53ea\u80fd\u4ee5\u95dc\u9375\u5b57\u88ab\u63d0\u4f9b\u7684\u5f15\u6578\u3002\u5728\u51fd\u5f0f\u5b9a\u7fa9\u7684\u53c3\u6578\u5217\u8868\u4e2d\uff0c\u5305\u542b\u4e00\u500b\u4efb\u610f\u6578\u91cf\u4f4d\u7f6e\u53c3\u6578 (var-positional parameter) \u6216\u662f\u55ae\u7d14\u7684 * \u5b57\u5143\uff0c\u5c31\u53ef\u4ee5\u5728\u5176\u5f8c\u65b9\u5b9a\u7fa9\u50c5\u9650\u95dc\u9375\u5b57\u53c3\u6578\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 kw_only1 \u548c kw_only2\uff1a

    \n
    def func(arg, *, kw_only1, kw_only2): ...\n
    \n
    \n
  • \n
  • var-positional\uff08\u4efb\u610f\u6578\u91cf\u4f4d\u7f6e\uff09\uff1a\u6307\u660e\u4e00\u4e32\u80fd\u4ee5\u4efb\u610f\u5e8f\u5217\u88ab\u63d0\u4f9b\u7684\u4f4d\u7f6e\u5f15\u6578\uff08\u5728\u5df2\u88ab\u5176\u4ed6\u53c3\u6578\u63a5\u53d7\u7684\u4efb\u4f55\u4f4d\u7f6e\u5f15\u6578\u4e4b\u5916\uff09\u3002\u9019\u985e\u53c3\u6578\u662f\u900f\u904e\u5728\u5176\u53c3\u6578\u540d\u7a31\u5b57\u9996\u52a0\u4e0a * \u4f86\u5b9a\u7fa9\u7684\uff0c\u4f8b\u5982\u4ee5\u4e0b\u7684 args\uff1a

    \n
    def func(*args, **kwargs): ...\n
    \n
    \n
  • \n
  • var-keyword\uff08\u4efb\u610f\u6578\u91cf\u95dc\u9375\u5b57\uff09\uff1a\u6307\u660e\u53ef\u88ab\u63d0\u4f9b\u7684\u4efb\u610f\u6578\u91cf\u95dc\u9375\u5b57\u5f15\u6578\uff08\u5728\u5df2\u88ab\u5176\u4ed6\u53c3\u6578\u63a5\u53d7\u7684\u4efb\u4f55\u95dc\u9375\u5b57\u5f15\u6578\u4e4b\u5916\uff09\u3002\u9019\u985e\u53c3\u6578\u662f\u900f\u904e\u5728\u5176\u53c3\u6578\u540d\u7a31\u5b57\u9996\u52a0\u4e0a ** \u4f86\u5b9a\u7fa9\u7684\uff0c\u4f8b\u5982\u4e0a\u9762\u7bc4\u4f8b\u4e2d\u7684 kwargs\u3002

  • \n
\n

\u53c3\u6578\u53ef\u4ee5\u6307\u660e\u5f15\u6578\u662f\u9078\u64c7\u6027\u7684\u6216\u5fc5\u9700\u7684\uff0c\u4e5f\u53ef\u4ee5\u70ba\u4e00\u4e9b\u9078\u64c7\u6027\u7684\u5f15\u6578\u6307\u5b9a\u9810\u8a2d\u503c\u3002

\n

\u53e6\u8acb\u53c3\u95b1\u8853\u8a9e\u8868\u7684 argument\uff08\u5f15\u6578\uff09\u689d\u76ee\u3001\u5e38\u898b\u554f\u984c\u4e2d\u7684\u5f15\u6578\u548c\u53c3\u6578\u4e4b\u9593\u7684\u5dee\u7570\u3001inspect.Parameter class\u3001\u51fd\u5f0f\u5b9a\u7fa9\u7ae0\u7bc0\uff0c\u4ee5\u53ca PEP 362\u3002

\n
\n
\n"}, "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09": {"title": "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09", "body": "
\n

\u5728 import path\uff08\u5f15\u5165\u8def\u5f91\uff09\u4e2d\u7684\u4e00\u500b\u4f4d\u7f6e\uff0c\u800c path based finder \uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09\u6703\u53c3\u8003\u8a72\u4f4d\u7f6e\u4f86\u5c0b\u627e\u8981 import \u7684\u6a21\u7d44\u3002

\n
\n
\n"}, "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09": {"title": "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u88ab sys.path_hooks \u4e2d\u7684\u4e00\u500b\u53ef\u547c\u53eb\u7269\u4ef6 (callable)\uff08\u610f\u5373\u4e00\u500b path entry hook\uff09\u6240\u56de\u50b3\u7684\u4e00\u7a2e finder\uff0c\u5b83\u77e5\u9053\u5982\u4f55\u4ee5\u4e00\u500b path entry\u5b9a\u4f4d\u6a21\u7d44\u3002

\n

\u95dc\u65bc\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\u5be6\u4f5c\u7684 method\uff0c\u8acb\u53c3\u95b1 importlib.abc.PathEntryFinder\u3002

\n
\n
\n"}, "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09": {"title": "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09", "body": "
\n

\u5728 sys.path_hooks \u5217\u8868\u4e2d\u7684\u4e00\u500b\u53ef\u547c\u53eb\u7269\u4ef6 (callable)\uff0c\u82e5\u5b83\u77e5\u9053\u5982\u4f55\u5728\u4e00\u500b\u7279\u5b9a\u7684 path entry \u4e2d\u5c0b\u627e\u6a21\u7d44\uff0c\u5247\u6703\u56de\u50b3\u4e00\u500b path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09\u3002

\n
\n
\n"}, "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09": {"title": "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09", "body": "
\n

\u9810\u8a2d\u7684\u5143\u8def\u5f91\u5c0b\u6aa2\u5668 (meta path finder) \u4e4b\u4e00\uff0c\u5b83\u6703\u5728\u4e00\u500b import path \u4e2d\u641c\u5c0b\u6a21\u7d44\u3002

\n
\n
\n"}, "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09": {"title": "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u8868\u793a\u6a94\u6848\u7cfb\u7d71\u8def\u5f91\u7684\u7269\u4ef6\u3002\u985e\u8def\u5f91\u7269\u4ef6\u53ef\u4ee5\u662f\u4e00\u500b\u8868\u793a\u8def\u5f91\u7684 str \u6216 bytes \u7269\u4ef6\uff0c\u6216\u662f\u4e00\u500b\u5be6\u4f5c os.PathLike \u5354\u5b9a\u7684\u7269\u4ef6\u3002\u900f\u904e\u547c\u53eb os.fspath() \u51fd\u5f0f\uff0c\u4e00\u500b\u652f\u63f4 os.PathLike \u5354\u5b9a\u7684\u7269\u4ef6\u53ef\u4ee5\u88ab\u8f49\u63db\u70ba str \u6216 bytes \u6a94\u6848\u7cfb\u7d71\u8def\u5f91\uff1b\u800c os.fsdecode() \u53ca os.fsencode() \u5247\u5206\u5225\u53ef\u7528\u65bc\u78ba\u4fdd str \u53ca bytes \u7684\u7d50\u679c\u3002\u7531 PEP 519 \u5f15\u5165\u3002

\n
\n
\n"}, "pep": {"title": "PEP", "body": "
\n

Python Enhancement Proposal\uff08Python \u589e\u5f37\u63d0\u6848\uff09\u3002PEP \u662f\u4e00\u4efd\u8a2d\u8a08\u8aaa\u660e\u6587\u4ef6\uff0c\u5b83\u80fd\u70ba Python \u793e\u7fa4\u63d0\u4f9b\u8cc7\u8a0a\uff0c\u6216\u662f\u63cf\u8ff0 Python \u7684\u4e00\u500b\u65b0\u529f\u80fd\u6216\u8a72\u529f\u80fd\u7684\u7a0b\u5e8f\u548c\u74b0\u5883\u3002PEP \u61c9\u8a72\u8981\u63d0\u4f9b\u7c21\u6f54\u7684\u6280\u8853\u898f\u7bc4\u4ee5\u53ca\u88ab\u63d0\u6848\u529f\u80fd\u7684\u904b\u4f5c\u539f\u7406\u3002

\n

PEP \u7684\u5b58\u5728\u76ee\u7684\uff0c\u662f\u8981\u6210\u70ba\u91cd\u5927\u65b0\u529f\u80fd\u7684\u63d0\u6848\u3001\u793e\u7fa4\u4e2d\u95dc\u65bc\u67d0\u500b\u554f\u984c\u7684\u610f\u898b\u6536\u96c6\uff0c\u4ee5\u53ca\u5df2\u7d0d\u5165 Python \u7684\u8a2d\u8a08\u6c7a\u7b56\u7684\u8a18\u9304\uff0c\u9019\u4e9b\u904e\u7a0b\u7684\u4e3b\u8981\u6a5f\u5236\u3002PEP \u7684\u4f5c\u8005\u8981\u8ca0\u8cac\u5728\u793e\u7fa4\u5167\u5efa\u7acb\u5171\u8b58\u4e26\u8a18\u9304\u53cd\u5c0d\u610f\u898b\u3002

\n

\u8acb\u53c3\u95b1 PEP 1\u3002

\n
\n
\n"}, "portion\uff08\u90e8\u5206\uff09": {"title": "portion\uff08\u90e8\u5206\uff09", "body": "
\n

\u5728\u55ae\u4e00\u76ee\u9304\u4e2d\u7684\u4e00\u7d44\u6a94\u6848\uff08\u4e5f\u53ef\u80fd\u5132\u5b58\u5728\u4e00\u500b zip \u6a94\u4e2d\uff09\uff0c\u9019\u4e9b\u6a94\u6848\u80fd\u5c0d\u4e00\u500b\u547d\u540d\u7a7a\u9593\u5957\u4ef6 (namespace package) \u6709\u6240\u8ca2\u737b\uff0c\u5982\u540c PEP 420 \u4e2d\u7684\u5b9a\u7fa9\u3002

\n
\n
\n"}, "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09": {"title": "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09", "body": "
\n

\u8acb\u53c3\u95b1 argument\uff08\u5f15\u6578\uff09\u3002

\n
\n
\n"}, "provisional api\uff08\u66ab\u884c api\uff09": {"title": "provisional API\uff08\u66ab\u884c API\uff09", "body": "
\n

\u66ab\u884c API \u662f\u6307\uff0c\u5f9e\u6a19\u6e96\u51fd\u5f0f\u5eab\u7684\u5411\u5f8c\u76f8\u5bb9\u6027 (backwards compatibility) \u4fdd\u8b49\u4e2d\uff0c\u6545\u610f\u88ab\u6392\u9664\u7684 API\u3002\u96d6\u7136\u6b64\u985e\u4ecb\u9762\uff0c\u53ea\u8981\u5b83\u5011\u88ab\u6a19\u793a\u70ba\u66ab\u884c\u7684\uff0c\u7406\u8ad6\u4e0a\u4e26\u4e0d\u6703\u6709\u91cd\u5927\u7684\u8b8a\u66f4\uff0c\u4f46\u5982\u679c\u6838\u5fc3\u958b\u767c\u4eba\u54e1\u8a8d\u70ba\u6709\u5fc5\u8981\uff0c\u4e5f\u53ef\u80fd\u6703\u51fa\u73fe\u5411\u5f8c\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\uff08\u751a\u81f3\u5305\u62ec\u79fb\u9664\u8a72\u4ecb\u9762\uff09\u3002\u9019\u7a2e\u8b8a\u66f4\u4e26\u4e0d\u6703\u7121\u7aef\u5730\u7522\u751f\u2014\u2014\u53ea\u6709 API \u88ab\u7d0d\u5165\u4e4b\u524d\u672a\u5bdf\u89ba\u7684\u56b4\u91cd\u57fa\u672c\u7f3a\u9677\u88ab\u63ed\u9732\u6642\uff0c\u5b83\u5011\u624d\u6703\u767c\u751f\u3002

\n

\u5373\u4f7f\u5c0d\u65bc\u66ab\u884c API\uff0c\u5411\u5f8c\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\u4e5f\u6703\u88ab\u8996\u70ba\u300c\u6700\u5f8c\u7684\u89e3\u6c7a\u65b9\u6848\u300d\u2014\u2014\u5c0d\u65bc\u4efb\u4f55\u88ab\u767c\u73fe\u7684\u554f\u984c\uff0c\u4ecd\u7136\u6703\u76e1\u53ef\u80fd\u627e\u51fa\u4e00\u500b\u5411\u5f8c\u76f8\u5bb9\u7684\u89e3\u6c7a\u65b9\u6848\u3002

\n

\u9019\u500b\u904e\u7a0b\u4f7f\u5f97\u6a19\u6e96\u51fd\u5f0f\u5eab\u80fd\u96a8\u8457\u6642\u9593\u4e0d\u65b7\u9032\u5316\uff0c\u800c\u907f\u514d\u8017\u8cbb\u904e\u9577\u7684\u6642\u9593\u53bb\u9396\u5b9a\u6709\u554f\u984c\u7684\u8a2d\u8a08\u932f\u8aa4\u3002\u8acb\u53c3\u95b1 PEP 411 \u4e86\u89e3\u66f4\u591a\u7d30\u7bc0\u3002

\n
\n
\n"}, "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09": {"title": "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09", "body": "
\n

\u8acb\u53c3\u95b1 provisional API\uff08\u66ab\u884c API\uff09\u3002

\n
\n
\n"}, "python 3000": {"title": "Python 3000", "body": "
\n

Python 3.x \u7cfb\u5217\u7248\u672c\u7684\u66b1\u7a31\uff08\u5f88\u4e45\u4ee5\u524d\u5275\u9020\u7684\uff0c\u7576\u6642\u7b2c 3 \u7248\u7684\u767c\u5e03\u662f\u5728\u9059\u9060\u7684\u672a\u4f86\u3002\uff09\u4e5f\u53ef\u4ee5\u7e2e\u5beb\u70ba\u300cPy3k\u300d\u3002

\n
\n
\n"}, "pythonic\uff08python \u98a8\u683c\u7684\uff09": {"title": "Pythonic\uff08Python \u98a8\u683c\u7684\uff09", "body": "
\n

\u4e00\u500b\u60f3\u6cd5\u6216\u4e00\u6bb5\u7a0b\u5f0f\u78bc\uff0c\u5b83\u61c9\u7528\u4e86 Python \u8a9e\u8a00\u6700\u5e38\u898b\u7684\u6163\u7528\u8a9e\uff0c\u800c\u4e0d\u662f\u4f7f\u7528\u5176\u4ed6\u8a9e\u8a00\u5e38\u898b\u7684\u6982\u5ff5\u4f86\u5be6\u4f5c\u7a0b\u5f0f\u78bc\u3002\u4f8b\u5982\uff0cPython \u4e2d\u5e38\u898b\u7684\u4e00\u7a2e\u7fd2\u6163\u7528\u6cd5\uff0c\u662f\u4f7f\u7528\u4e00\u500b for \u9673\u8ff0\u5f0f\uff0c\u5c0d\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u7684\u6240\u6709\u5143\u7d20\u9032\u884c\u8ff4\u5708\u3002\u8a31\u591a\u5176\u4ed6\u8a9e\u8a00\u4e26\u6c92\u6709\u9019\u7a2e\u985e\u578b\u7684\u67b6\u69cb\uff0c\u6240\u4ee5\u4e0d\u719f\u6089 Python \u7684\u4eba\u6709\u6642\u6703\u4f7f\u7528\u4e00\u500b\u6578\u503c\u8a08\u6578\u5668\u4f86\u4ee3\u66ff\uff1a

\n
for i in range(len(food)):\n    print(food[i])\n
\n
\n

\u76f8\u8f03\u4e4b\u4e0b\uff0c\u4ee5\u4e0b\u65b9\u6cd5\u66f4\u7c21\u6f54\u3001\u66f4\u5177\u6709 Python \u98a8\u683c\uff1a

\n
for piece in food:\n    print(piece)\n
\n
\n
\n
\n"}, "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09": {"title": "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09", "body": "
\n

\u4e00\u500b\u300c\u9ede\u5206\u9694\u540d\u7a31\u300d\uff0c\u5b83\u986f\u793a\u5f9e\u4e00\u500b\u6a21\u7d44\u7684\u5168\u57df\u4f5c\u7528\u57df\u5230\u8a72\u6a21\u7d44\u4e2d\u5b9a\u7fa9\u7684 class\u3001\u51fd\u5f0f\u6216 method \u7684\u300c\u8def\u5f91\u300d\uff0c\u5982 PEP 3155 \u4e2d\u7684\u5b9a\u7fa9\u3002\u5c0d\u65bc\u9802\u5c64\u7684\u51fd\u5f0f\u548c class \u800c\u8a00\uff0c\u9650\u5b9a\u540d\u7a31\u8207\u5176\u7269\u4ef6\u540d\u7a31\u76f8\u540c\uff1a

\n
>>> class C:\n...     class D:\n...         def meth(self):\n...             pass\n...\n>>> C.__qualname__\n'C'\n>>> C.D.__qualname__\n'C.D'\n>>> C.D.meth.__qualname__\n'C.D.meth'\n
\n
\n

\u7576\u7528\u65bc\u5f15\u7528\u6a21\u7d44\u6642\uff0c\u5b8c\u5168\u9650\u5b9a\u540d\u7a31 (fully qualified name) \u662f\u8868\u793a\u8a72\u6a21\u7d44\u7684\u5b8c\u6574\u9ede\u5206\u9694\u8def\u5f91\uff0c\u5305\u62ec\u4efb\u4f55\u7684\u7236\u5957\u4ef6\uff0c\u4f8b\u5982 email.mime.text\uff1a

\n
>>> import email.mime.text\n>>> email.mime.text.__name__\n'email.mime.text'\n
\n
\n
\n
\n"}, "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09": {"title": "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09", "body": "
\n

\u5c0d\u65bc\u4e00\u500b\u7269\u4ef6\u7684\u53c3\u7167\u6b21\u6578\u3002\u7576\u4e00\u500b\u7269\u4ef6\u7684\u53c3\u7167\u8a08\u6578\u4e0b\u964d\u5230\u96f6\u6642\uff0c\u5b83\u6703\u88ab\u89e3\u9664\u914d\u7f6e (deallocated)\u3002\u6709\u4e9b\u7269\u4ef6\u662f\u300c\u4e0d\u6ec5\u7684 (immortal)\u300d\u4e26\u64c1\u6709\u4e0d\u6703\u88ab\u6539\u8b8a\u7684\u53c3\u7167\u8a08\u6578\uff0c\u4e5f\u56e0\u6b64\u6c38\u9060\u4e0d\u6703\u88ab\u89e3\u9664\u914d\u7f6e\u3002\u53c3\u7167\u8a08\u6578\u901a\u5e38\u5728 Python \u7a0b\u5f0f\u78bc\u4e2d\u770b\u4e0d\u5230\uff0c\u4f46\u5b83\u537b\u662f CPython \u5be6\u4f5c\u7684\u4e00\u500b\u95dc\u9375\u5143\u7d20\u3002\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u53ef\u4ee5\u547c\u53eb getrefcount() \u51fd\u5f0f\u4f86\u56de\u50b3\u4e00\u500b\u7279\u5b9a\u7269\u4ef6\u7684\u53c3\u7167\u8a08\u6578\u3002

\n
\n
\n"}, "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09": {"title": "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09", "body": "
\n

\u4e00\u500b\u50b3\u7d71\u7684 package\uff08\u5957\u4ef6\uff09\uff0c\u4f8b\u5982\u4e00\u500b\u5305\u542b __init__.py \u6a94\u6848\u7684\u76ee\u9304\u3002

\n

\u53e6\u8acb\u53c3\u95b1 namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09\u3002

\n
\n
\n"}, "__slots__": {"title": "__slots__", "body": "
\n

\u5728 class \u5167\u90e8\u7684\u4e00\u500b\u5ba3\u544a\uff0c\u5b83\u85c9\u7531\u9810\u5148\u5ba3\u544a\u5be6\u4f8b\u5c6c\u6027\u7684\u7a7a\u9593\uff0c\u4ee5\u53ca\u6d88\u9664\u5be6\u4f8b dictionary\uff08\u5b57\u5178\uff09\uff0c\u4f86\u7bc0\u7701\u8a18\u61b6\u9ad4\u3002\u96d6\u7136\u8a72\u6280\u8853\u5f88\u666e\u904d\uff0c\u4f46\u5b83\u6709\u9ede\u96e3\u4ee5\u6b63\u78ba\u5730\u4f7f\u7528\uff0c\u6700\u597d\u4fdd\u7559\u7d66\u90a3\u7a2e\u5728\u4e00\u500b\u8a18\u61b6\u9ad4\u95dc\u9375 (memory-critical) \u7684\u61c9\u7528\u7a0b\u5f0f\u4e2d\u5b58\u5728\u5927\u91cf\u5be6\u4f8b\u7684\u7f55\u898b\u60c5\u6cc1\u3002

\n
\n
\n"}, "sequence\uff08\u5e8f\u5217\uff09": {"title": "sequence\uff08\u5e8f\u5217\uff09", "body": "
\n

\u4e00\u500b iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09\uff0c\u5b83\u900f\u904e __getitem__() special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09\uff0c\u4f7f\u7528\u6574\u6578\u7d22\u5f15\u4f86\u652f\u63f4\u9ad8\u6548\u7387\u7684\u5143\u7d20\u5b58\u53d6\uff0c\u4e26\u5b9a\u7fa9\u4e86\u4e00\u500b __len__() method \u4f86\u56de\u50b3\u8a72\u5e8f\u5217\u7684\u9577\u5ea6\u3002\u4e00\u4e9b\u5167\u5efa\u5e8f\u5217\u578b\u5225\u5305\u62ec list\u3001str\u3001tuple \u548c bytes\u3002\u8acb\u6ce8\u610f\uff0c\u96d6\u7136 dict \u4e5f\u652f\u63f4 __getitem__() \u548c __len__()\uff0c\u4f46\u5b83\u88ab\u8996\u70ba\u5c0d\u6620 (mapping) \u800c\u4e0d\u662f\u5e8f\u5217\uff0c\u56e0\u70ba\u5176\u67e5\u627e\u65b9\u5f0f\u662f\u4f7f\u7528\u4efb\u610f\u7684 immutable \u9375\uff0c\u800c\u4e0d\u662f\u6574\u6578\u3002

\n

\u62bd\u8c61\u57fa\u5e95\u985e\u5225 (abstract base class) collections.abc.Sequence \u5b9a\u7fa9\u4e86\u4e00\u500b\u66f4\u52a0\u8c50\u5bcc\u7684\u4ecb\u9762\uff0c\u4e26\u4e0d\u50c5\u6b62\u65bc __getitem__() \u548c __len__()\uff0c\u9084\u589e\u52a0\u4e86 count()\u3001index()\u3001__contains__() \u548c __reversed__()\u3002\u5be6\u4f5c\u6b64\u64f4\u5145\u4ecb\u9762\u7684\u578b\u5225\uff0c\u53ef\u4ee5\u4f7f\u7528 register() \u88ab\u660e\u78ba\u5730\u8a3b\u518a\u3002\u66f4\u591a\u95dc\u65bc\u5e8f\u5217\u65b9\u6cd5\u7684\u6587\u4ef6\uff0c\u8acb\u898b\u5e38\u898b\u5e8f\u5217\u64cd\u4f5c\u3002

\n
\n
\n"}, "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09": {"title": "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09", "body": "
\n

\u4e00\u7a2e\u7dca\u5bc6\u7684\u65b9\u6cd5\uff0c\u7528\u4f86\u8655\u7406\u4e00\u500b\u53ef\u758a\u4ee3\u7269\u4ef6\u4e2d\u7684\u5168\u90e8\u6216\u90e8\u5206\u5143\u7d20\uff0c\u4e26\u5c07\u8655\u7406\u7d50\u679c\u4ee5\u4e00\u500b set \u56de\u50b3\u3002results = {c for c in 'abracadabra' if c not in 'abc'} \u6703\u7522\u751f\u4e00\u500b\u5b57\u4e32 set\uff1a{'r', 'd'}\u3002\u8acb\u53c3\u95b1Displays for lists, sets and dictionaries\u3002

\n
\n
\n"}, "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09": {"title": "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09", "body": "
\n

generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09\u8abf\u5ea6\u7684\u4e00\u7a2e\u5f62\u5f0f\uff0c\u5728\u6b64\uff0c\u5be6\u4f5c\u7684\u9078\u64c7\u662f\u57fa\u65bc\u55ae\u4e00\u5f15\u6578\u7684\u578b\u5225\u3002

\n
\n
\n"}, "slice\uff08\u5207\u7247\uff09": {"title": "slice\uff08\u5207\u7247\uff09", "body": "
\n

\u4e00\u500b\u7269\u4ef6\uff0c\u5b83\u901a\u5e38\u5305\u542b\u4e00\u6bb5 sequence\uff08\u5e8f\u5217\uff09\u7684\u67d0\u4e00\u90e8\u5206\u3002\u5efa\u7acb\u4e00\u6bb5\u5207\u7247\u7684\u65b9\u6cd5\u662f\u4f7f\u7528\u4e0b\u6a19\u7b26\u865f (subscript notation) []\uff0c\u82e5\u8981\u7d66\u51fa\u591a\u500b\u6578\u5b57\uff0c\u5247\u5728\u6578\u5b57\u4e4b\u9593\u4f7f\u7528\u5192\u865f\uff0c\u4f8b\u5982 variable_name[1:3:5]\u3002\u5728\u62ec\u865f\uff08\u4e0b\u6a19\uff09\u7b26\u865f\u7684\u5167\u90e8\uff0c\u6703\u4f7f\u7528 slice \u7269\u4ef6\u3002

\n
\n
\n"}, "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09": {"title": "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09", "body": "
\n

\u4e00\u7a2e\u6703\u88ab Python \u81ea\u52d5\u547c\u53eb\u7684 method\uff0c\u7528\u65bc\u5c0d\u67d0\u7a2e\u578b\u5225\u57f7\u884c\u67d0\u7a2e\u904b\u7b97\uff0c\u4f8b\u5982\u52a0\u6cd5\u3002\u9019\u7a2e method \u7684\u540d\u7a31\u6703\u5728\u958b\u982d\u548c\u7d50\u5c3e\u6709\u5169\u500b\u4e0b\u5e95\u7dda\u3002Special method \u5728Special method names\u4e2d\u6709\u8a73\u7d30\u8aaa\u660e\u3002

\n
\n
\n"}, "statement\uff08\u9673\u8ff0\u5f0f\uff09": {"title": "statement\uff08\u9673\u8ff0\u5f0f\uff09", "body": "
\n

\u9673\u8ff0\u5f0f\u662f\u4e00\u500b\u5957\u7d44\uff08suite\uff0c\u4e00\u500b\u7a0b\u5f0f\u78bc\u300c\u5340\u584a\u300d\uff09\u4e2d\u7684\u4e00\u90e8\u5206\u3002\u9673\u8ff0\u5f0f\u53ef\u4ee5\u662f\u4e00\u500b expression\uff08\u904b\u7b97\u5f0f\uff09\uff0c\u6216\u662f\u542b\u6709\u95dc\u9375\u5b57\uff08\u4f8b\u5982 if\u3001while \u6216 for\uff09\u7684\u591a\u7a2e\u7d50\u69cb\u4e4b\u4e00\u3002

\n
\n
\n"}, "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09": {"title": "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09", "body": "
\n

\u6703\u8b80\u53d6 Python \u7a0b\u5f0f\u78bc\u4e26\u5206\u6790\u7684\u5916\u90e8\u5de5\u5177\uff0c\u80fd\u5920\u627e\u51fa\u932f\u8aa4\uff0c\u50cf\u662f\u4f7f\u7528\u4e86\u4e0d\u6b63\u78ba\u7684\u578b\u5225\u3002\u53e6\u8acb\u53c3\u95b1\u578b\u5225\u63d0\u793a (type hints) \u4ee5\u53ca typing \u6a21\u7d44\u3002

\n
\n
\n"}, "strong reference\uff08\u5f37\u53c3\u7167\uff09": {"title": "strong reference\uff08\u5f37\u53c3\u7167\uff09", "body": "
\n

\u5728 Python \u7684 C API \u4e2d\uff0c\u5f37\u53c3\u7167\u662f\u5c0d\u7269\u4ef6\u7684\u53c3\u7167\uff0c\u8a72\u7269\u4ef6\u70ba\u6301\u6709\u8a72\u53c3\u7167\u7684\u7a0b\u5f0f\u78bc\u6240\u64c1\u6709\u3002\u5efa\u7acb\u53c3\u7167\u6642\u900f\u904e\u547c\u53eb Py_INCREF() \u4f86\u7372\u5f97\u5f37\u53c3\u7167\u3001\u522a\u9664\u53c3\u7167\u6642\u900f\u904e Py_DECREF() \u91cb\u653e\u5f37\u53c3\u7167\u3002

\n

Py_NewRef() \u51fd\u5f0f\u53ef\u7528\u65bc\u5efa\u7acb\u4e00\u500b\u5c0d\u7269\u4ef6\u7684\u5f37\u53c3\u7167\u3002\u901a\u5e38\uff0c\u5728\u9000\u51fa\u5f37\u53c3\u7167\u7684\u4f5c\u7528\u57df\u4e4b\u524d\uff0c\u5fc5\u9808\u5728\u8a72\u5f37\u53c3\u7167\u4e0a\u547c\u53eb Py_DECREF() \u51fd\u5f0f\uff0c\u4ee5\u907f\u514d\u6d29\u6f0f\u4e00\u500b\u53c3\u7167\u3002

\n

\u53e6\u8acb\u53c3\u95b1 borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09\u3002

\n
\n
\n"}, "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09": {"title": "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09", "body": "
\n

Python \u4e2d\u7684\u5b57\u4e32\u662f\u4e00\u500b Unicode \u78bc\u9ede (code point) \u7684\u5e8f\u5217\uff08\u7bc4\u570d\u5728 U+0000 -- U+10FFFF \u4e4b\u9593\uff09\u3002\u82e5\u8981\u5132\u5b58\u6216\u50b3\u9001\u4e00\u500b\u5b57\u4e32\uff0c\u5b83\u5fc5\u9808\u88ab\u5e8f\u5217\u5316\u70ba\u4e00\u500b\u4f4d\u5143\u7d44\u5e8f\u5217\u3002

\n

\u5c07\u4e00\u500b\u5b57\u4e32\u5e8f\u5217\u5316\u70ba\u4f4d\u5143\u7d44\u5e8f\u5217\uff0c\u7a31\u70ba\u300c\u7de8\u78bc\u300d\uff0c\u800c\u5f9e\u4f4d\u5143\u7d44\u5e8f\u5217\u91cd\u65b0\u5efa\u7acb\u8a72\u5b57\u4e32\u5247\u7a31\u70ba\u300c\u89e3\u78bc (decoding)\u300d\u3002

\n

\u6709\u591a\u7a2e\u4e0d\u540c\u7684\u6587\u5b57\u5e8f\u5217\u5316\u7de8\u89e3\u78bc\u5668 (codecs)\uff0c\u5b83\u5011\u88ab\u7d71\u7a31\u70ba\u300c\u6587\u5b57\u7de8\u78bc\u300d\u3002

\n
\n
\n"}, "text file\uff08\u6587\u5b57\u6a94\u6848\uff09": {"title": "text file\uff08\u6587\u5b57\u6a94\u6848\uff09", "body": "
\n

\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165 str \u7269\u4ef6\u7684\u4e00\u500b file object\uff08\u6a94\u6848\u7269\u4ef6\uff09\u3002\u901a\u5e38\uff0c\u6587\u5b57\u6a94\u6848\u5be6\u969b\u4e0a\u662f\u5b58\u53d6\u4f4d\u5143\u7d44\u5c0e\u5411\u7684\u8cc7\u6599\u6d41 (byte-oriented datastream) \u4e26\u6703\u81ea\u52d5\u8655\u7406 text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09\u3002\u6587\u5b57\u6a94\u6848\u7684\u4f8b\u5b50\u6709\uff1a\u4ee5\u6587\u5b57\u6a21\u5f0f\uff08'r' \u6216 'w'\uff09\u958b\u555f\u7684\u6a94\u6848\u3001sys.stdin\u3001sys.stdout \u4ee5\u53ca io.StringIO \u7684\u5be6\u4f8b\u3002

\n

\u53e6\u8acb\u53c3\u95b1 binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09\uff0c\u5b83\u662f\u4e00\u500b\u80fd\u5920\u8b80\u53d6\u548c\u5beb\u5165\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6 (bytes-like object) \u7684\u6a94\u6848\u7269\u4ef6\u3002

\n
\n
\n"}, "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09": {"title": "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09", "body": "
\n

\u7531\u4e09\u500b\u96d9\u5f15\u865f (") \u6216\u55ae\u5f15\u865f (') \u7684\u4f5c\u70ba\u908a\u754c\u7684\u4e00\u500b\u5b57\u4e32\u3002\u96d6\u7136\u5b83\u5011\u4e26\u6c92\u6709\u63d0\u4f9b\u7570\u65bc\u55ae\u5f15\u865f\u5b57\u4e32\u7684\u4efb\u4f55\u984d\u5916\u529f\u80fd\uff0c\u4f46\u57fa\u65bc\u8a31\u591a\u539f\u56e0\uff0c\u5b83\u5011\u4ecd\u662f\u5f88\u6709\u7528\u7684\u3002\u5b83\u5011\u8b93\u4f60\u53ef\u4ee5\u5728\u5b57\u4e32\u4e2d\u5305\u542b\u672a\u8df3\u812b (unescaped) \u7684\u55ae\u5f15\u865f\u548c\u96d9\u5f15\u865f\uff0c\u800c\u4e14\u5b83\u5011\u4e0d\u9700\u4f7f\u7528\u9023\u7e8c\u5b57\u5143 (continuation character) \u5c31\u53ef\u4ee5\u8de8\u8d8a\u591a\u884c\uff0c\u9019\u4f7f\u5f97\u5b83\u5011\u5728\u7de8\u5beb\u8aaa\u660e\u5b57\u4e32\u6642\u7279\u5225\u6709\u7528\u3002

\n
\n
\n"}, "type\uff08\u578b\u5225\uff09": {"title": "type\uff08\u578b\u5225\uff09", "body": "
\n

\u4e00\u500b Python \u7269\u4ef6\u7684\u578b\u5225\u6c7a\u5b9a\u4e86\u5b83\u662f\u4ec0\u9ebc\u985e\u578b\u7684\u7269\u4ef6\uff1b\u6bcf\u500b\u7269\u4ef6\u90fd\u6709\u4e00\u500b\u578b\u5225\u3002\u4e00\u500b\u7269\u4ef6\u7684\u578b\u5225\u53ef\u4ee5\u7528\u5b83\u7684 __class__ \u5c6c\u6027\u4f86\u5b58\u53d6\uff0c\u6216\u4ee5 type(obj) \u4f86\u6aa2\u7d22\u3002

\n
\n
\n"}, "type alias\uff08\u578b\u5225\u5225\u540d\uff09": {"title": "type alias\uff08\u578b\u5225\u5225\u540d\uff09", "body": "
\n

\u4e00\u500b\u578b\u5225\u7684\u540c\u7fa9\u8a5e\uff0c\u900f\u904e\u5c07\u578b\u5225\u6307\u5b9a\u7d66\u4e00\u500b\u8b58\u5225\u7b26 (identifier) \u4f86\u5efa\u7acb\u3002

\n

\u578b\u5225\u5225\u540d\u5c0d\u65bc\u7c21\u5316\u578b\u5225\u63d0\u793a (type hint) \u5f88\u6709\u7528\u3002\u4f8b\u5982\uff1a

\n
def remove_gray_shades(\n        colors: list[tuple[int, int, int]]) -> list[tuple[int, int, int]]:\n    pass\n
\n
\n

\u53ef\u4ee5\u5beb\u6210\u9019\u6a23\uff0c\u66f4\u5177\u6709\u53ef\u8b80\u6027\uff1a

\n
Color = tuple[int, int, int]\n\ndef remove_gray_shades(colors: list[Color]) -> list[Color]:\n    pass\n
\n
\n

\u8acb\u53c3\u95b1 typing \u548c PEP 484\uff0c\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002

\n
\n
\n"}, "type hint\uff08\u578b\u5225\u63d0\u793a\uff09": {"title": "type hint\uff08\u578b\u5225\u63d0\u793a\uff09", "body": "
\n

\u4e00\u7a2e annotation\uff08\u8a3b\u91cb\uff09\uff0c\u5b83\u6307\u5b9a\u4e00\u500b\u8b8a\u6578\u3001\u4e00\u500b class \u5c6c\u6027\u6216\u4e00\u500b\u51fd\u5f0f\u7684\u53c3\u6578\u6216\u56de\u50b3\u503c\u7684\u9810\u671f\u578b\u5225\u3002

\n

\u578b\u5225\u63d0\u793a\u662f\u9078\u64c7\u6027\u7684\uff0c\u800c\u4e0d\u662f\u88ab Python \u5f37\u5236\u7684\uff0c\u4f46\u5b83\u5011\u5c0d\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668 (static type checkers)\u5f88\u6709\u7528\uff0c\u4e26\u80fd\u5354\u52a9 IDE \u5b8c\u6210\u7a0b\u5f0f\u78bc\u7684\u88dc\u5168 (completion) \u548c\u91cd\u69cb (refactoring)\u3002

\n

\u5168\u57df\u8b8a\u6578\u3001class \u5c6c\u6027\u548c\u51fd\u5f0f\uff08\u4e0d\u542b\u5340\u57df\u8b8a\u6578\uff09\u7684\u578b\u5225\u63d0\u793a\uff0c\u90fd\u53ef\u4ee5\u4f7f\u7528 typing.get_type_hints() \u4f86\u5b58\u53d6\u3002

\n

\u8acb\u53c3\u95b1 typing \u548c PEP 484\uff0c\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002

\n
\n
\n"}, "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09": {"title": "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09", "body": "
\n

\u4e00\u7a2e\u89e3\u8b6f\u6587\u5b57\u6d41 (text stream) \u7684\u65b9\u5f0f\uff0c\u6703\u5c07\u4ee5\u4e0b\u6240\u6709\u7684\u60c5\u6cc1\u8b58\u5225\u70ba\u4e00\u884c\u7684\u7d50\u675f\uff1aUnix \u884c\u5c3e\u6163\u4f8b '\\n'\u3001Windows \u6163\u4f8b '\\r\\n' \u548c\u820a\u7684 Macintosh \u6163\u4f8b '\\r'\u3002\u8acb\u53c3\u95b1 PEP 278 \u548c PEP 3116\uff0c\u4ee5\u53ca\u7528\u65bc bytes.splitlines() \u7684\u9644\u52a0\u7528\u9014\u3002

\n
\n
\n"}, "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09": {"title": "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09", "body": "
\n

\u4e00\u500b\u8b8a\u6578\u6216 class \u5c6c\u6027\u7684 annotation\uff08\u8a3b\u91cb\uff09\u3002

\n

\u8a3b\u91cb\u8b8a\u6578\u6216 class \u5c6c\u6027\u6642\uff0c\u8ce6\u503c\u662f\u9078\u64c7\u6027\u7684\uff1a

\n
class C:\n    field: 'annotation'\n
\n
\n

\u8b8a\u6578\u8a3b\u91cb\u901a\u5e38\u7528\u65bc\u578b\u5225\u63d0\u793a (type hint)\uff1a\u4f8b\u5982\uff0c\u9019\u500b\u8b8a\u6578\u9810\u671f\u6703\u53d6\u5f97 int\uff08\u6574\u6578\uff09\u503c\uff1a

\n
count: int = 0\n
\n
\n

\u8b8a\u6578\u8a3b\u91cb\u7684\u8a9e\u6cd5\u5728Annotated assignment statements\u7ae0\u7bc0\u6709\u8a73\u7d30\u7684\u89e3\u91cb\u3002

\n

\u8acb\u53c3\u95b1 function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09\u3001PEP 484 \u548c PEP 526\uff0c\u7686\u6709\u6b64\u529f\u80fd\u7684\u63cf\u8ff0\u3002\u95dc\u65bc\u8a3b\u91cb\u7684\u6700\u4f73\u5be6\u8e10\u65b9\u6cd5\uff0c\u53e6\u8acb\u53c3\u95b1 \u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10\u3002

\n
\n
\n"}, "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09": {"title": "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09", "body": "
\n

\u4e00\u500b\u5354\u4f5c\u9694\u96e2 (cooperatively isolated) \u7684\u57f7\u884c\u74b0\u5883\uff0c\u80fd\u8b93 Python \u7684\u4f7f\u7528\u8005\u548c\u61c9\u7528\u7a0b\u5f0f\u5f97\u4ee5\u5b89\u88dd\u548c\u5347\u7d1a Python \u767c\u4f48\u5957\u4ef6\uff0c\u800c\u4e0d\u6703\u5c0d\u540c\u4e00\u500b\u7cfb\u7d71\u4e0a\u904b\u884c\u7684\u5176\u4ed6 Python \u61c9\u7528\u7a0b\u5f0f\u7684\u884c\u70ba\u7522\u751f\u5e72\u64fe\u3002

\n

\u53e6\u8acb\u53c3\u95b1 venv\u3002

\n
\n
\n"}, "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09": {"title": "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09", "body": "
\n

\u4e00\u90e8\u5b8c\u5168\u7531\u8edf\u9ad4\u6240\u5b9a\u7fa9\u7684\u96fb\u8166 (computer)\u3002Python \u7684\u865b\u64ec\u6a5f\u5668\u6703\u57f7\u884c\u7531 bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09\u7de8\u8b6f\u5668\u6240\u767c\u51fa\u7684\u4f4d\u5143\u7d44\u78bc\u3002

\n
\n
\n"}, "zen of python\uff08python \u4e4b\u79aa\uff09": {"title": "Zen of Python\uff08Python \u4e4b\u79aa\uff09", "body": "
\n

Python \u8a2d\u8a08\u539f\u5247\u8207\u54f2\u5b78\u7684\u5217\u8868\uff0c\u5176\u5167\u5bb9\u6709\u52a9\u65bc\u7406\u89e3\u548c\u4f7f\u7528\u6b64\u8a9e\u8a00\u3002\u6b64\u5217\u8868\u53ef\u4ee5\u900f\u904e\u5728\u4e92\u52d5\u5f0f\u63d0\u5f0f\u5b57\u5143\u5f8c\u8f38\u5165\u300cimport this\u300d\u4f86\u627e\u5230\u5b83\u3002

\n
\n
\n"}} \ No newline at end of file diff --git a/_static/opensearch.xml b/_static/opensearch.xml index 7f27335134..085e1a0647 100644 --- a/_static/opensearch.xml +++ b/_static/opensearch.xml @@ -1,10 +1,10 @@ Python - 搜尋 Python 3.12.3 說明文件 + 搜尋 Python 3.12.4 說明文件 utf-8 - Python 3.12.3 說明文件 + Python 3.12.4 說明文件 https://www.python.org/images/favicon16x16.ico \ No newline at end of file diff --git a/about.html b/about.html index 9213dd189c..28425996bc 100644 --- a/about.html +++ b/about.html @@ -5,13 +5,13 @@ - 關於這些說明文件 — Python 3.12.3 說明文件 + 關於這些說明文件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -351,7 +352,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -401,7 +402,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/bugs.html b/bugs.html index b723d5fd4c..89dd2501a9 100644 --- a/bugs.html +++ b/bugs.html @@ -5,13 +5,13 @@ - 處理錯誤 (Bug) — Python 3.12.3 說明文件 + 處理錯誤 (Bug) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -390,7 +391,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -440,7 +441,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/abstract.html b/c-api/abstract.html index 83c90714f2..4eaaa17ab8 100644 --- a/c-api/abstract.html +++ b/c-api/abstract.html @@ -5,13 +5,13 @@ - 抽象物件層 (Abstract Objects Layer) — Python 3.12.3 說明文件 + 抽象物件層 (Abstract Objects Layer) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -360,7 +361,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -411,7 +412,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/allocation.html b/c-api/allocation.html index 5858ab3584..7722aae7b5 100644 --- a/c-api/allocation.html +++ b/c-api/allocation.html @@ -5,13 +5,13 @@ - 在 heap 上分配物件 — Python 3.12.3 說明文件 + 在 heap 上分配物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -373,7 +374,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -425,7 +426,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/apiabiversion.html b/c-api/apiabiversion.html index e8ee4040c3..1698f5aceb 100644 --- a/c-api/apiabiversion.html +++ b/c-api/apiabiversion.html @@ -5,13 +5,13 @@ - API 和 ABI 版本管理 — Python 3.12.3 說明文件 + API 和 ABI 版本管理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -406,7 +407,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -457,7 +458,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/arg.html b/c-api/arg.html index ab66d70c4c..a89c303fe3 100644 --- a/c-api/arg.html +++ b/c-api/arg.html @@ -5,13 +5,13 @@ - 剖析引數與建置數值 — Python 3.12.3 說明文件 + 剖析引數與建置數值 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -916,7 +917,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -968,7 +969,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/bool.html b/c-api/bool.html index c0bb01c283..22330650a2 100644 --- a/c-api/bool.html +++ b/c-api/bool.html @@ -5,13 +5,13 @@ - Boolean(布林)物件 — Python 3.12.3 說明文件 + Boolean(布林)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -370,7 +371,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -422,7 +423,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/buffer.html b/c-api/buffer.html index 9d2e3e101d..7223e206e0 100644 --- a/c-api/buffer.html +++ b/c-api/buffer.html @@ -5,13 +5,13 @@ - 緩衝協定 (Buffer Protocol) — Python 3.12.3 說明文件 + 緩衝協定 (Buffer Protocol) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1043,7 +1044,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1095,7 +1096,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/bytearray.html b/c-api/bytearray.html index eb51211866..d54dbbad31 100644 --- a/c-api/bytearray.html +++ b/c-api/bytearray.html @@ -5,13 +5,13 @@ - 位元組陣列物件 (Byte Array Objects) — Python 3.12.3 說明文件 + 位元組陣列物件 (Byte Array Objects) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -426,7 +427,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -478,7 +479,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/bytes.html b/c-api/bytes.html index 56471c1747..b0cf3fe783 100644 --- a/c-api/bytes.html +++ b/c-api/bytes.html @@ -5,13 +5,13 @@ - 位元組物件 (Bytes Objects) — Python 3.12.3 說明文件 + 位元組物件 (Bytes Objects) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -550,7 +551,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -602,7 +603,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/call.html b/c-api/call.html index 1050898c51..006eddb474 100644 --- a/c-api/call.html +++ b/c-api/call.html @@ -5,13 +5,13 @@ - 呼叫協定 (Call Protocol) — Python 3.12.3 說明文件 + 呼叫協定 (Call Protocol) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -685,7 +686,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -737,7 +738,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/capsule.html b/c-api/capsule.html index 07dc2d3ad6..cb8aa90e6e 100644 --- a/c-api/capsule.html +++ b/c-api/capsule.html @@ -5,13 +5,13 @@ - Capsules — Python 3.12.3 說明文件 + Capsules — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -470,7 +471,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -522,7 +523,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/cell.html b/c-api/cell.html index fc7f8cf2b4..7b600fddff 100644 --- a/c-api/cell.html +++ b/c-api/cell.html @@ -5,13 +5,13 @@ - Cell 物件 — Python 3.12.3 說明文件 + Cell 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -369,7 +370,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -421,7 +422,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/code.html b/c-api/code.html index 0b87673817..6c65b2d92a 100644 --- a/c-api/code.html +++ b/c-api/code.html @@ -5,13 +5,13 @@ - 程式碼物件 — Python 3.12.3 說明文件 + 程式碼物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -227,7 +228,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -625,7 +626,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -677,7 +678,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/codec.html b/c-api/codec.html index f83b035a55..1a6d6b12a1 100644 --- a/c-api/codec.html +++ b/c-api/codec.html @@ -5,13 +5,13 @@ - 編解碼器註冊表和支援函式 — Python 3.12.3 說明文件 + 編解碼器註冊表和支援函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -474,7 +475,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -526,7 +527,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/complex.html b/c-api/complex.html index f27015d685..8ced3dfdf2 100644 --- a/c-api/complex.html +++ b/c-api/complex.html @@ -5,13 +5,13 @@ - 複數物件 — Python 3.12.3 說明文件 + 複數物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -458,7 +459,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -510,7 +511,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/concrete.html b/c-api/concrete.html index df0bfa2b14..3c68a37489 100644 --- a/c-api/concrete.html +++ b/c-api/concrete.html @@ -5,13 +5,13 @@ - 具體物件層 — Python 3.12.3 說明文件 + 具體物件層 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -494,7 +495,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -545,7 +546,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/contextvars.html b/c-api/contextvars.html index 59c75cbe45..0e2e7f49a7 100644 --- a/c-api/contextvars.html +++ b/c-api/contextvars.html @@ -5,13 +5,13 @@ - 情境變數物件 — Python 3.12.3 說明文件 + 情境變數物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -480,7 +481,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -532,7 +533,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/conversion.html b/c-api/conversion.html index c1cffae866..6af4cc0ea5 100644 --- a/c-api/conversion.html +++ b/c-api/conversion.html @@ -5,13 +5,13 @@ - 字串轉換與格式化 — Python 3.12.3 說明文件 + 字串轉換與格式化 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -419,7 +420,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -471,7 +472,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/coro.html b/c-api/coro.html index c4544f407d..b2ef219a96 100644 --- a/c-api/coro.html +++ b/c-api/coro.html @@ -5,13 +5,13 @@ - Coroutine(協程)物件 — Python 3.12.3 說明文件 + Coroutine(協程)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -348,7 +349,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -400,7 +401,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/datetime.html b/c-api/datetime.html index 4241b2e593..df349572a5 100644 --- a/c-api/datetime.html +++ b/c-api/datetime.html @@ -5,13 +5,13 @@ - DateTime 物件 — Python 3.12.3 說明文件 + DateTime 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -659,7 +660,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -711,7 +712,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/descriptor.html b/c-api/descriptor.html index 2cda58ff6b..80a7b56551 100644 --- a/c-api/descriptor.html +++ b/c-api/descriptor.html @@ -5,13 +5,13 @@ - Descriptor(描述器)物件 — Python 3.12.3 說明文件 + Descriptor(描述器)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -363,7 +364,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -415,7 +416,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/dict.html b/c-api/dict.html index 476445478e..8963200514 100644 --- a/c-api/dict.html +++ b/c-api/dict.html @@ -5,13 +5,13 @@ - 字典物件 — Python 3.12.3 說明文件 + 字典物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -672,7 +673,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -724,7 +725,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/exceptions.html b/c-api/exceptions.html index e81ac26afe..46afd39a4d 100644 --- a/c-api/exceptions.html +++ b/c-api/exceptions.html @@ -5,13 +5,13 @@ - 例外處理 — Python 3.12.3 說明文件 + 例外處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1720,7 +1721,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1771,7 +1772,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/file.html b/c-api/file.html index 9b4f775715..3db837009b 100644 --- a/c-api/file.html +++ b/c-api/file.html @@ -5,13 +5,13 @@ - 檔案物件 (File Objects) — Python 3.12.3 說明文件 + 檔案物件 (File Objects) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -395,7 +396,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -447,7 +448,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/float.html b/c-api/float.html index 7541f422b8..0322538d1e 100644 --- a/c-api/float.html +++ b/c-api/float.html @@ -5,13 +5,13 @@ - 浮點數(Floating Point)物件 — Python 3.12.3 說明文件 + 浮點數(Floating Point)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -518,7 +519,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -570,7 +571,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/frame.html b/c-api/frame.html index f2ec66f993..60b9491c3b 100644 --- a/c-api/frame.html +++ b/c-api/frame.html @@ -5,13 +5,13 @@ - Frame 物件 — Python 3.12.3 說明文件 + Frame 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -529,7 +530,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -581,7 +582,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/function.html b/c-api/function.html index b3cb273bbd..dd8b4b3558 100644 --- a/c-api/function.html +++ b/c-api/function.html @@ -5,13 +5,13 @@ - 函式物件 (Function Objects) — Python 3.12.3 說明文件 + 函式物件 (Function Objects) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -497,7 +498,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -549,7 +550,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/gcsupport.html b/c-api/gcsupport.html index 6d5b20ccfe..d3e5bb735b 100644 --- a/c-api/gcsupport.html +++ b/c-api/gcsupport.html @@ -5,13 +5,13 @@ - 循環垃圾回收的支援 — Python 3.12.3 說明文件 + 循環垃圾回收的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -640,7 +641,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -692,7 +693,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/gen.html b/c-api/gen.html index 36f49428d7..6e49584a2c 100644 --- a/c-api/gen.html +++ b/c-api/gen.html @@ -5,13 +5,13 @@ - 產生器 (Generator) 物件 — Python 3.12.3 說明文件 + 產生器 (Generator) 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -357,7 +358,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -409,7 +410,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/hash.html b/c-api/hash.html index 96c96700b7..40eeea65d5 100644 --- a/c-api/hash.html +++ b/c-api/hash.html @@ -5,13 +5,13 @@ - PyHash API — Python 3.12.3 說明文件 + PyHash API — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -379,7 +380,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -431,7 +432,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/import.html b/c-api/import.html index 5cca5cee91..017b6955ca 100644 --- a/c-api/import.html +++ b/c-api/import.html @@ -5,13 +5,13 @@ - 引入模組 — Python 3.12.3 說明文件 + 引入模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -648,7 +649,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -700,7 +701,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/index.html b/c-api/index.html index fd45057a4f..770b8ef608 100644 --- a/c-api/index.html +++ b/c-api/index.html @@ -5,13 +5,13 @@ - Python/C API 參考手冊 — Python 3.12.3 說明文件 + Python/C API 參考手冊 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -448,7 +449,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -498,7 +499,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/init.html b/c-api/init.html index 4c2fedddc6..2446288bc9 100644 --- a/c-api/init.html +++ b/c-api/init.html @@ -5,13 +5,13 @@ - Initialization, Finalization, and Threads — Python 3.12.3 說明文件 + Initialization, Finalization, and Threads — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -257,7 +258,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -2505,7 +2506,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -2556,7 +2557,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/init_config.html b/c-api/init_config.html index ad21e026a9..97fa2264de 100644 --- a/c-api/init_config.html +++ b/c-api/init_config.html @@ -5,13 +5,13 @@ - Python 初始化設定 — Python 3.12.3 說明文件 + Python 初始化設定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -241,7 +242,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1955,7 +1956,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -2006,7 +2007,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/intro.html b/c-api/intro.html index af5fb44f57..2f32c5a6a3 100644 --- a/c-api/intro.html +++ b/c-api/intro.html @@ -5,13 +5,13 @@ - 簡介 — Python 3.12.3 說明文件 + 簡介 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -494,7 +495,7 @@

    有用的巨集type) 和一個參照計數 (reference count)。一個物件的型別決定了它是什麼種類的物件(例如一個整數、一個 list 或一個使用者定義的函式;還有更多型別,請見標準型別階層)。對於每個眾所周知的型別,都有一個巨集來檢查物件是否屬於該型別;例如,若(且唯若)*a* 指向的物件是 Python list 時,PyList_Check(a) 為真。

    參照計數

    -

    參照計數很重要,因為現今的電腦記憶體大小是有限的(而且通常是非常有限的);它計算有多少個不同的地方用有了一個物件的強參照。這樣的地方可以是另一個物件,或者全域(或靜態)C 變數,或者某個 C 函式中的本地變數。當一個物件的最後一個強參照被釋放時(即其的參照計數變為零),該物件將被解除配置 (deallocated)。如果它包含對其他物件的參照,則它們的參照會被釋放。如果這樣的釋放使得再也沒有任何對於它們的參照,則可以依次為那些其他物件解除配置,依此類推。 (此處相互參照物件的存在是個明顯的問題;目前,解決方案是「就不要那樣做」。)

    +

    參照計數很重要,因為現今的電腦記憶體大小是有限的(而且通常是非常有限的);它計算有多少個不同的地方用有了一個物件的強參照。這樣的地方可以是另一個物件,或者全域(或靜態)C 變數,或者某個 C 函式中的本地變數。當一個物件的最後一個強參照被釋放時(即其的參照計數變為零),該物件將被解除配置 (deallocated)。如果它包含對其他物件的參照,則它們的參照會被釋放。如果這樣的釋放使得再也沒有任何對於它們的參照,則可以依次為那些其他物件解除配置,依此類推。(此處相互參照物件的存在是個明顯的問題;目前,解決方案是「就不要那樣做」。)

    參照計數總是被明確地操作。正常的方法是使用巨集 Py_INCREF() 來取得對於物件的參照(即參照計數加一),並使用巨集 Py_DECREF() 來釋放參照(即將參照計數減一)。Py_DECREF() 巨集比 incref 巨集複雜得多,因為它必須檢查參照計數是否變為零,然後呼叫物件的釋放器 (deallocator)。釋放器是包含在物件型別結構中的函式指標。特定型別的釋放器,在如果是一個複合物件型別(例如 list)時負責釋放物件中包含的其他物件的參照,並執行任何需要的額外完結步驟。參照計數不可能溢出;至少與虛擬記憶體中用來保存參照計數的不同記憶體位置數量一樣多的位元會被使用(假設 sizeof(Py_ssize_t) >= sizeof(void*))。因此參照計數增加是一個簡單的操作。

    沒有必要為每個包含物件指標的本地變數物件都持有一個強參照(即增加參照計數)。理論上,當變數指向它時,物件的參照計數會增加 1,而當變數離開作用域時就會減少 1。然而這兩者會相互抵消,所以最後參照計數沒有改變。使用參照計數的唯一真正原因是防止物件還有變數指向它時被解除配置。如果我們知道至少有一個物件的其他參照生存了至少與我們的變數一樣久,就不需要臨時增加建立新的強參照(即增加參照計數)。出現這種情況的一個重要情況是在從 Python 呼叫的擴充模組中作為引數傳遞給 C 函式的物件;呼叫機制保證在呼叫期間保持對每個參數的參照。

    然而,一個常見的陷阱是從一個 list 中提取一個物件並保留它一段時間而不取得其參照。某些其他操作可能會從列表中刪除該物件,減少其參照計數並可能取消分配它。真正的危險是看似無害的操作可能會呼叫可以執行此操作的任意 Python 程式碼;有一個程式碼路徑允許控制權從 Py_DECREF() 回歸使用者,因此幾乎任何操作都有潛在危險。

    @@ -683,7 +684,7 @@

    有用的巨集基本的初始化函式是 Py_Initialize()。這會初始化帶有載入模組的表,並建立基礎模組 builtins__main__sys。它還會初始化模組搜索路徑 (sys.path)。

    Py_Initialize() 不設定「腳本引數列表 (script argument list)」 (sys.argv)。如果稍後將要執行的 Python 程式碼需要此變數,則必須設定 PyConfig.argvPyConfig.parse_argv,請見 Python 初始化配置

    在大多數系統上(特別是在 Unix 和 Windows 上,儘管細節略有不同),Py_Initialize() 會假設Python 函式庫相對於 Python 直譯器可執行檔案的位置固定,並根據其對標準 Python 直譯器可執行檔案位置的最佳猜測來計算模組搜索路徑。或者更詳細地說,它會在 shell 命令搜索路徑(環境變數 PATH)中找到名為 python 的可執行檔案,並在其父目錄中查找一個名為 lib/pythonX.Y 的目錄的相對位置。

    -

    例如,如果在 /usr/local/bin/python 中找到 Python 可執行檔案,它將假定函式庫位於 /usr/local/lib/pythonX.Y 中。 (事實上這個特定的路徑也是「後備 (fallback)」位置,當在 PATH 中找不到名為 python 的可執行檔案時使用。)使用者可以透過設定環境變數來覆蓋此行為 PYTHONHOME,或者透過設定 PYTHONPATH 在標準路徑前面插入額外的目錄。

    +

    例如,如果在 /usr/local/bin/python 中找到 Python 可執行檔案,它將假定函式庫位於 /usr/local/lib/pythonX.Y 中。(事實上這個特定的路徑也是「後備 (fallback)」位置,當在 PATH 中找不到名為 python 的可執行檔案時使用。)使用者可以透過設定環境變數來覆蓋此行為 PYTHONHOME,或者透過設定 PYTHONPATH 在標準路徑前面插入額外的目錄。

    嵌入的應用程式可以透過在呼叫 Py_Initialize() 之前呼叫 Py_SetProgramName(file) 來引導搜索。請注意 PYTHONHOME 仍然覆蓋它並且 PYTHONPATH 仍然插入在標準路徑的前面。需要完全控制權的應用程式必須實作自己的 Py_GetPath()Py_GetPrefix()Py_GetExecPrefix()Py_GetProgramFullPath()(全部定義在 Modules/getpath.c)。

    有時會希望能夠「取消初始化 (uninitialize)」Python。例如,應用程式可能想要重新開始(再次呼叫 Py_Initialize())或者應用程式簡單地完成了對 Python 的使用並想要釋放 Python 分配的記憶體。這可以透過呼叫 Py_FinalizeEx() 來完成。如果 Python 當前處於初始化狀態,函式 Py_IsInitialized() 會回傳 true。有關這些功能的更多資訊將在後面的章節中給出。請注意 Py_FinalizeEx() 不會釋放由 Python 直譯器分配的所有記憶體,例如目前無法釋放被擴充模組所分配的記憶體。

    @@ -788,7 +789,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -839,7 +840,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/iter.html b/c-api/iter.html index 1ca867e06e..ece43b0ea0 100644 --- a/c-api/iter.html +++ b/c-api/iter.html @@ -5,13 +5,13 @@ - 疊代器協議 — Python 3.12.3 說明文件 + 疊代器協議 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -390,7 +391,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -442,7 +443,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/iterator.html b/c-api/iterator.html index f377b5c526..c2fade64c4 100644 --- a/c-api/iterator.html +++ b/c-api/iterator.html @@ -5,13 +5,13 @@ - 疊代器(Iterator)物件 — Python 3.12.3 說明文件 + 疊代器(Iterator)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -365,7 +366,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -417,7 +418,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/list.html b/c-api/list.html index ced8a144ec..d257b6b274 100644 --- a/c-api/list.html +++ b/c-api/list.html @@ -5,13 +5,13 @@ - List(串列)物件 — Python 3.12.3 說明文件 + List(串列)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -440,7 +441,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -492,7 +493,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/long.html b/c-api/long.html index 2879c6491d..c5a02eb46d 100644 --- a/c-api/long.html +++ b/c-api/long.html @@ -5,13 +5,13 @@ - 整數物件 — Python 3.12.3 說明文件 + 整數物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -643,7 +644,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -695,7 +696,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/mapping.html b/c-api/mapping.html index 703c4380b8..2ad7f62b9a 100644 --- a/c-api/mapping.html +++ b/c-api/mapping.html @@ -5,13 +5,13 @@ - 對映協定 — Python 3.12.3 說明文件 + 對映協定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -406,7 +407,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -458,7 +459,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/marshal.html b/c-api/marshal.html index d3074c7155..2160ff8f17 100644 --- a/c-api/marshal.html +++ b/c-api/marshal.html @@ -5,13 +5,13 @@ - 資料 marshal 的支援 — Python 3.12.3 說明文件 + 資料 marshal 的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -409,7 +410,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -461,7 +462,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/memory.html b/c-api/memory.html index ecc4122c7f..0f2e339238 100644 --- a/c-api/memory.html +++ b/c-api/memory.html @@ -5,13 +5,13 @@ - 記憶體管理 — Python 3.12.3 說明文件 + 記憶體管理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1105,7 +1106,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1156,7 +1157,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/memoryview.html b/c-api/memoryview.html index a90961489d..a10bbf0571 100644 --- a/c-api/memoryview.html +++ b/c-api/memoryview.html @@ -5,13 +5,13 @@ - MemoryView 物件 — Python 3.12.3 說明文件 + MemoryView 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -397,7 +398,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -449,7 +450,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/method.html b/c-api/method.html index 34b45b2617..5cb61ca65b 100644 --- a/c-api/method.html +++ b/c-api/method.html @@ -5,13 +5,13 @@ - 實例方法物件 (Instance Method Objects) — Python 3.12.3 說明文件 + 實例方法物件 (Instance Method Objects) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -227,7 +228,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -413,7 +414,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -465,7 +466,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/module.html b/c-api/module.html index 055a0581c0..af443bd5f7 100644 --- a/c-api/module.html +++ b/c-api/module.html @@ -5,13 +5,13 @@ - 模組物件模組 — Python 3.12.3 說明文件 + 模組物件模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1039,7 +1040,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1091,7 +1092,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/none.html b/c-api/none.html index 791dc02a95..fc5352d149 100644 --- a/c-api/none.html +++ b/c-api/none.html @@ -5,13 +5,13 @@ - None 物件 — Python 3.12.3 說明文件 + None 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -340,7 +341,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -392,7 +393,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/number.html b/c-api/number.html index 0e99344c58..d14d246f6a 100644 --- a/c-api/number.html +++ b/c-api/number.html @@ -5,13 +5,13 @@ - 數字協定 — Python 3.12.3 說明文件 + 數字協定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -632,7 +633,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -684,7 +685,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/objbuffer.html b/c-api/objbuffer.html index a93c6684c4..0339531243 100644 --- a/c-api/objbuffer.html +++ b/c-api/objbuffer.html @@ -5,13 +5,13 @@ - 舊式緩衝協定 (Buffer Protocol) — Python 3.12.3 說明文件 + 舊式緩衝協定 (Buffer Protocol) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -350,7 +351,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -402,7 +403,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/object.html b/c-api/object.html index e369860334..583abc4a98 100644 --- a/c-api/object.html +++ b/c-api/object.html @@ -5,13 +5,13 @@ - 物件協定 — Python 3.12.3 說明文件 + 物件協定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -784,7 +785,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -836,7 +837,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/objimpl.html b/c-api/objimpl.html index 5ca77d722c..6edaad6a8b 100644 --- a/c-api/objimpl.html +++ b/c-api/objimpl.html @@ -5,13 +5,13 @@ - Object Implementation Support — Python 3.12.3 說明文件 + Object Implementation Support — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -364,7 +365,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -415,7 +416,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/perfmaps.html b/c-api/perfmaps.html index 6ea18f005f..6c2a77eaba 100644 --- a/c-api/perfmaps.html +++ b/c-api/perfmaps.html @@ -5,13 +5,13 @@ - Support for Perf Maps — Python 3.12.3 說明文件 + Support for Perf Maps — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -371,7 +372,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -423,7 +424,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/refcounting.html b/c-api/refcounting.html index 832ccf7f93..81629804d9 100644 --- a/c-api/refcounting.html +++ b/c-api/refcounting.html @@ -5,13 +5,13 @@ - 參照計數 — Python 3.12.3 說明文件 + 參照計數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -477,7 +478,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -528,7 +529,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/reflection.html b/c-api/reflection.html index 82bfa20bca..ddf6d26e2f 100644 --- a/c-api/reflection.html +++ b/c-api/reflection.html @@ -5,13 +5,13 @@ - Reflection — Python 3.12.3 說明文件 + Reflection — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -366,7 +367,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -418,7 +419,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/sequence.html b/c-api/sequence.html index 6536ecd753..1299a3a4c0 100644 --- a/c-api/sequence.html +++ b/c-api/sequence.html @@ -5,13 +5,13 @@ - 序列協定 — Python 3.12.3 說明文件 + 序列協定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -505,7 +506,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -557,7 +558,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/set.html b/c-api/set.html index 56a22dff7f..af0555febd 100644 --- a/c-api/set.html +++ b/c-api/set.html @@ -5,13 +5,13 @@ - 集合物件 — Python 3.12.3 說明文件 + 集合物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -490,7 +491,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -542,7 +543,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/slice.html b/c-api/slice.html index f72a0f6511..edf8d24c22 100644 --- a/c-api/slice.html +++ b/c-api/slice.html @@ -5,13 +5,13 @@ - 切片物件 — Python 3.12.3 說明文件 + 切片物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -466,7 +467,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -518,7 +519,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/stable.html b/c-api/stable.html index 6c7b30fce3..4497893fcd 100644 --- a/c-api/stable.html +++ b/c-api/stable.html @@ -5,13 +5,13 @@ - C API 穩定性 — Python 3.12.3 說明文件 + C API 穩定性 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1327,7 +1328,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1378,7 +1379,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/structures.html b/c-api/structures.html index c9685f8792..9d8c8105de 100644 --- a/c-api/structures.html +++ b/c-api/structures.html @@ -5,13 +5,13 @@ - 通用物件結構 — Python 3.12.3 說明文件 + 通用物件結構 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1241,7 +1242,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1293,7 +1294,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/sys.html b/c-api/sys.html index 9f6cfe98b4..70d2c96a43 100644 --- a/c-api/sys.html +++ b/c-api/sys.html @@ -5,13 +5,13 @@ - 作業系統工具 — Python 3.12.3 說明文件 + 作業系統工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -228,7 +229,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -804,7 +805,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -856,7 +857,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/tuple.html b/c-api/tuple.html index 76639cf689..62906a1ee8 100644 --- a/c-api/tuple.html +++ b/c-api/tuple.html @@ -5,13 +5,13 @@ - Tuple(元組)物件 — Python 3.12.3 說明文件 + Tuple(元組)物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -227,7 +228,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -593,7 +594,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -645,7 +646,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/type.html b/c-api/type.html index 53ff9bd0b6..bf3a33bdad 100644 --- a/c-api/type.html +++ b/c-api/type.html @@ -5,13 +5,13 @@ - 型別物件 — Python 3.12.3 說明文件 + 型別物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -879,7 +880,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -931,7 +932,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/typehints.html b/c-api/typehints.html index 0598a81f4f..4ce8755501 100644 --- a/c-api/typehints.html +++ b/c-api/typehints.html @@ -5,13 +5,13 @@ - 型別提示物件 — Python 3.12.3 說明文件 + 型別提示物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -353,7 +354,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -405,7 +406,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/typeobj.html b/c-api/typeobj.html index 662a571a55..16a3862f36 100644 --- a/c-api/typeobj.html +++ b/c-api/typeobj.html @@ -5,13 +5,13 @@ - 型別物件 — Python 3.12.3 說明文件 + 型別物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -247,7 +248,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -3839,7 +3840,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -3891,7 +3892,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/unicode.html b/c-api/unicode.html index 30d32410fa..48df5d4a9c 100644 --- a/c-api/unicode.html +++ b/c-api/unicode.html @@ -5,13 +5,13 @@ - Unicode 物件與編解碼器 — Python 3.12.3 說明文件 + Unicode 物件與編解碼器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -253,7 +254,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1888,7 +1889,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1940,7 +1941,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/utilities.html b/c-api/utilities.html index 7f151551e7..e3f713f4c3 100644 --- a/c-api/utilities.html +++ b/c-api/utilities.html @@ -5,13 +5,13 @@ - 工具 — Python 3.12.3 說明文件 + 工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -349,7 +350,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -400,7 +401,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/veryhigh.html b/c-api/veryhigh.html index 80cf76f557..304a84047a 100644 --- a/c-api/veryhigh.html +++ b/c-api/veryhigh.html @@ -5,13 +5,13 @@ - The Very High Level Layer — Python 3.12.3 說明文件 + The Very High Level Layer — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -719,7 +720,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -770,7 +771,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/c-api/weakref.html b/c-api/weakref.html index 35bb29a67f..850f95bc0a 100644 --- a/c-api/weakref.html +++ b/c-api/weakref.html @@ -5,13 +5,13 @@ - 弱參照物件 — Python 3.12.3 說明文件 + 弱參照物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -399,7 +400,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -451,7 +452,7 @@

    瀏覽

    Please donate.

    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/contents.html b/contents.html index 5b6ae491e3..20c4f38999 100644 --- a/contents.html +++ b/contents.html @@ -5,13 +5,13 @@ - Python 說明文件內容 — Python 3.12.3 說明文件 + Python 說明文件內容 — Python 3.12.4 說明文件 - + @@ -19,13 +19,14 @@ + @@ -210,7 +211,7 @@

    瀏覽

  • - 3.12.3 Documentation » + 3.12.4 Documentation »
  • @@ -1848,9 +1849,13 @@

    Python 說明文件內容Changelog(更動日誌)
    • Python next +
    • +
    • Python 3.12.4 final @@ -3926,7 +3931,7 @@

      Python 說明文件內容數值與數學模組
      • numbers --- 數值的抽象基底類別
        • 數值的階層
        • -
        • Notes for type implementers
            +
          • 給型別實作者的註記 @@ -4033,7 +4038,10 @@

            Python 說明文件內容實體路徑

          • os 模組裡的工具的對應關係
          • @@ -7466,11 +7474,11 @@

            Python 說明文件內容沿革與授權
            • 軟體沿革
            • 關於存取或以其他方式使用 Python 的合約條款
            • 被收錄軟體的授權與致謝
                @@ -7556,7 +7564,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -7606,7 +7614,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/copyright.html b/copyright.html index 9067c822b1..130269a5b4 100644 --- a/copyright.html +++ b/copyright.html @@ -5,13 +5,13 @@ - 版權宣告 — Python 3.12.3 說明文件 + 版權宣告 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -325,7 +326,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -375,7 +376,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/distributing/index.html b/distributing/index.html index 8191a52bb6..fcd10e5d54 100644 --- a/distributing/index.html +++ b/distributing/index.html @@ -5,13 +5,13 @@ - 發布 Python 模組 — Python 3.12.3 說明文件 + 發布 Python 模組 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -201,7 +202,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -288,7 +289,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -338,7 +339,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/download.html b/download.html index 746484d278..a0ec662c06 100644 --- a/download.html +++ b/download.html @@ -4,13 +4,13 @@ - Download — Python 3.12.3 說明文件 + Download — Python 3.12.4 說明文件 - + @@ -18,12 +18,13 @@ + @@ -189,7 +190,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -222,9 +223,9 @@

                瀏覽

                -

                Download Python 3.12.3 Documentation

                +

                Download Python 3.12.4 Documentation

                -

                Last updated on: Jun 02, 2024 (14:44 UTC).

                +

                Last updated on: Jun 09, 2024 (07:52 UTC).

                To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table.

                @@ -232,23 +233,23 @@

                Download Python 3.12.3 Documentation

                - - + + - - + + - - + + - - + + - +
                FormatPacked as .zipPacked as .tar.bz2
                PDF (US-Letter paper size)Download (ca. 13 MiB)Download (ca. 13 MiB)Download (ca. 13 MiB)Download (ca. 13 MiB)
                PDF (A4 paper size)Download (ca. 13 MiB)Download (ca. 13 MiB)Download (ca. 13 MiB)Download (ca. 13 MiB)
                HTMLDownload (ca. 9 MiB)Download (ca. 6 MiB)Download (ca. 9 MiB)Download (ca. 6 MiB)
                Plain TextDownload (ca. 3 MiB)Download (ca. 2 MiB)Download (ca. 3 MiB)Download (ca. 2 MiB)
                EPUBDownload (ca. 5 MiB)Download (ca. 5 MiB)
                @@ -307,7 +308,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -357,7 +358,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/building.html b/extending/building.html index 98bae39e0d..1f7e7482c7 100644 --- a/extending/building.html +++ b/extending/building.html @@ -5,13 +5,13 @@ - 4. 建立 C 與 C++ 擴充套件 — Python 3.12.3 說明文件 + 4. 建立 C 與 C++ 擴充套件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -377,7 +378,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -428,7 +429,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/embedding.html b/extending/embedding.html index 18e254aabd..d9a27961e5 100644 --- a/extending/embedding.html +++ b/extending/embedding.html @@ -5,13 +5,13 @@ - 1. 在其它 App 內嵌入 Python — Python 3.12.3 說明文件 + 1. 在其它 App 內嵌入 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -698,7 +699,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -749,7 +750,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/extending.html b/extending/extending.html index 9f0b7bbe8a..9f3cf26840 100644 --- a/extending/extending.html +++ b/extending/extending.html @@ -5,13 +5,13 @@ - 1. 以 C 或 C++ 擴充 Python — Python 3.12.3 說明文件 + 1. 以 C 或 C++ 擴充 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -246,7 +247,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1577,7 +1578,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1628,7 +1629,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/index.html b/extending/index.html index 032bd61163..9800559bc9 100644 --- a/extending/index.html +++ b/extending/index.html @@ -5,13 +5,13 @@ - 擴充和嵌入 Python 直譯器 — Python 3.12.3 說明文件 + 擴充和嵌入 Python 直譯器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -424,7 +425,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -474,7 +475,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/newtypes.html b/extending/newtypes.html index 41b5cd21cd..4a8fbffe85 100644 --- a/extending/newtypes.html +++ b/extending/newtypes.html @@ -5,13 +5,13 @@ - 3. Defining Extension Types: Assorted Topics — Python 3.12.3 說明文件 + 3. Defining Extension Types: Assorted Topics — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -964,7 +965,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1015,7 +1016,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/newtypes_tutorial.html b/extending/newtypes_tutorial.html index 8b5acd4059..4cc32398b9 100644 --- a/extending/newtypes_tutorial.html +++ b/extending/newtypes_tutorial.html @@ -5,13 +5,13 @@ - 2. Defining Extension Types: Tutorial — Python 3.12.3 說明文件 + 2. Defining Extension Types: Tutorial — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1788,7 +1789,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1839,7 +1840,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/extending/windows.html b/extending/windows.html index 6b80fd3bef..5ecf9d0549 100644 --- a/extending/windows.html +++ b/extending/windows.html @@ -5,13 +5,13 @@ - 5. 建置 Windows 上的 C 和 C++ 擴充 — Python 3.12.3 說明文件 + 5. 建置 Windows 上的 C 和 C++ 擴充 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -440,7 +441,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -491,7 +492,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/design.html b/faq/design.html index 6161d57b6f..696b544076 100644 --- a/faq/design.html +++ b/faq/design.html @@ -5,13 +5,13 @@ - 設計和歷史常見問答集 — Python 3.12.3 說明文件 + 設計和歷史常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -256,7 +257,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -800,7 +801,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -851,7 +852,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/extending.html b/faq/extending.html index 195ba80853..2c47896347 100644 --- a/faq/extending.html +++ b/faq/extending.html @@ -5,13 +5,13 @@ - 擴充/嵌入常見問題集 — Python 3.12.3 說明文件 + 擴充/嵌入常見問題集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -245,7 +246,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -604,7 +605,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -655,7 +656,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/general.html b/faq/general.html index 6ffb2b05af..c16d2106bd 100644 --- a/faq/general.html +++ b/faq/general.html @@ -5,13 +5,13 @@ - 一般的 Python 常見問答集 — Python 3.12.3 說明文件 + 一般的 Python 常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -563,7 +564,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -614,7 +615,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/gui.html b/faq/gui.html index 18095e1c5f..6a24a0d302 100644 --- a/faq/gui.html +++ b/faq/gui.html @@ -5,13 +5,13 @@ - 圖形使用者介面常見問答集 — Python 3.12.3 說明文件 + 圖形使用者介面常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -388,7 +389,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -439,7 +440,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/index.html b/faq/index.html index ae8dd8ab8b..52f4ab6c71 100644 --- a/faq/index.html +++ b/faq/index.html @@ -5,13 +5,13 @@ - Python 常見問題 — Python 3.12.3 說明文件 + Python 常見問題 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -330,7 +331,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -380,7 +381,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/installed.html b/faq/installed.html index fe44da0cb0..4c65e3e003 100644 --- a/faq/installed.html +++ b/faq/installed.html @@ -5,13 +5,13 @@ - 「為什麼 Python 被安裝在我的機器上?」常見問答集 — Python 3.12.3 說明文件 + 「為什麼 Python 被安裝在我的機器上?」常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -365,7 +366,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -416,7 +417,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/library.html b/faq/library.html index ee45444bba..d1e5891d35 100644 --- a/faq/library.html +++ b/faq/library.html @@ -5,13 +5,13 @@ - 函式庫和擴充功能的常見問題 — Python 3.12.3 說明文件 + 函式庫和擴充功能的常見問題 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1018,7 +1019,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1069,7 +1070,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/programming.html b/faq/programming.html index c88688f29d..c5f02e9374 100644 --- a/faq/programming.html +++ b/faq/programming.html @@ -5,13 +5,13 @@ - 程式開發常見問答集 — Python 3.12.3 說明文件 + 程式開發常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1952,7 +1953,7 @@

                Why does the result

                我什麼時候可以依靠 is 運算子進行識別性測試?

                is 運算子測試物件識別性。測試 a is b 等同於 id(a) == id(b)

                識別性測試最重要的屬性是物件始終與自身相同, a is a 總是回傳 True 。識別性測試通常比相等性測試更快。與相等性測試不同,識別性測試保證回傳布林值 TrueFalse

                -

                然而,* 只有* 當物件識別性得到保證時,識別性測試才能代替相等性測試。一般來說,保證識別性的情況有以下三種:

                +

                然而,只有當物件識別性得到保證時,識別性測試才能代替相等性測試。一般來說,保證識別性的情況有以下三種:

                1) Assignments create new names but do not change object identity. After the assignment new = old, it is guaranteed that new is old.

                2) Putting an object in a container that stores object references does not @@ -2361,7 +2362,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2412,7 +2413,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/faq/windows.html b/faq/windows.html index e78a179bc8..0c07da6e4b 100644 --- a/faq/windows.html +++ b/faq/windows.html @@ -5,13 +5,13 @@ - 在 Windows 使用 Python 的常見問答集 — Python 3.12.3 說明文件 + 在 Windows 使用 Python 的常見問答集 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -485,7 +486,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -536,7 +537,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-.html b/genindex-.html index b0fd232efe..7824df534b 100644 --- a/genindex-.html +++ b/genindex-.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -268,7 +269,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -318,7 +319,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-A.html b/genindex-A.html index 561b9eb5f0..f8b9658eed 100644 --- a/genindex-A.html +++ b/genindex-A.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -431,7 +432,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-B.html b/genindex-B.html index 7f5bfae4b8..ae035e50a8 100644 --- a/genindex-B.html +++ b/genindex-B.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -329,7 +330,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -379,7 +380,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-C.html b/genindex-C.html index bae8a151b2..5b6c43a7f1 100644 --- a/genindex-C.html +++ b/genindex-C.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -639,7 +640,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -689,7 +690,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-D.html b/genindex-D.html index 80da469d0a..2b016bde57 100644 --- a/genindex-D.html +++ b/genindex-D.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -324,7 +325,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -374,7 +375,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-E.html b/genindex-E.html index 3853a250e6..a3c5aef732 100644 --- a/genindex-E.html +++ b/genindex-E.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -325,7 +326,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -375,7 +376,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-F.html b/genindex-F.html index add0ca942d..09e7459c52 100644 --- a/genindex-F.html +++ b/genindex-F.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -339,7 +340,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -389,7 +390,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-G.html b/genindex-G.html index 97ed7bd508..732aee916c 100644 --- a/genindex-G.html +++ b/genindex-G.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1821,7 +1822,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1871,7 +1872,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-H.html b/genindex-H.html index ee0fd96dac..89f4534682 100644 --- a/genindex-H.html +++ b/genindex-H.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -806,7 +807,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -856,7 +857,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-I.html b/genindex-I.html index 0670f83d3f..37f6861a36 100644 --- a/genindex-I.html +++ b/genindex-I.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -341,7 +342,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -391,7 +392,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-J.html b/genindex-J.html index 782943abb3..26bb4f46a1 100644 --- a/genindex-J.html +++ b/genindex-J.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -407,7 +408,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -457,7 +458,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-K.html b/genindex-K.html index 3f6b2cc2dc..6d1f5d69a8 100644 --- a/genindex-K.html +++ b/genindex-K.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -340,7 +341,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -390,7 +391,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-L.html b/genindex-L.html index 3ffa2f2e90..9ceaa2b61f 100644 --- a/genindex-L.html +++ b/genindex-L.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -591,7 +592,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -641,7 +642,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-M.html b/genindex-M.html index 26e0038066..d9d0639480 100644 --- a/genindex-M.html +++ b/genindex-M.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -288,7 +289,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -338,7 +339,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-N.html b/genindex-N.html index 0448555b8e..19c58554b7 100644 --- a/genindex-N.html +++ b/genindex-N.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -720,7 +721,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -770,7 +771,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-O.html b/genindex-O.html index ac014eb898..e8fd819654 100644 --- a/genindex-O.html +++ b/genindex-O.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1102,7 +1103,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1152,7 +1153,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-P.html b/genindex-P.html index 776b8ba75b..0357acbef2 100644 --- a/genindex-P.html +++ b/genindex-P.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -928,7 +929,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -978,7 +979,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-Q.html b/genindex-Q.html index c56c10f23a..7721fe164c 100644 --- a/genindex-Q.html +++ b/genindex-Q.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -387,7 +388,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -437,7 +438,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-R.html b/genindex-R.html index 394d8f660a..633829b237 100644 --- a/genindex-R.html +++ b/genindex-R.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1608,7 +1609,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1658,7 +1659,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-S.html b/genindex-S.html index 8b51abe9db..b178f67888 100644 --- a/genindex-S.html +++ b/genindex-S.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -696,7 +697,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -746,7 +747,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-T.html b/genindex-T.html index b74f983679..be4fae6102 100644 --- a/genindex-T.html +++ b/genindex-T.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -301,7 +302,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -351,7 +352,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-U.html b/genindex-U.html index 66694cbd58..6e59334cba 100644 --- a/genindex-U.html +++ b/genindex-U.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -796,7 +797,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -846,7 +847,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-V.html b/genindex-V.html index df42ce17ff..5a99868e0a 100644 --- a/genindex-V.html +++ b/genindex-V.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -291,7 +292,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -341,7 +342,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-W.html b/genindex-W.html index 405983e6e6..39e0ec3f42 100644 --- a/genindex-W.html +++ b/genindex-W.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -864,7 +865,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -914,7 +915,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-X.html b/genindex-X.html index 974a2ec33c..6d52ff89fb 100644 --- a/genindex-X.html +++ b/genindex-X.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -538,7 +539,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -588,7 +589,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-Y.html b/genindex-Y.html index 8856bb6828..40ee798752 100644 --- a/genindex-Y.html +++ b/genindex-Y.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -324,7 +325,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -374,7 +375,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-Z.html b/genindex-Z.html index c3a29a13e7..c2a8acfb0c 100644 --- a/genindex-Z.html +++ b/genindex-Z.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -404,7 +405,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -454,7 +455,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-_.html b/genindex-_.html index 6ff96daebf..7259697640 100644 --- a/genindex-_.html +++ b/genindex-_.html @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1461,7 +1462,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1511,7 +1512,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex-all.html b/genindex-all.html index f620d9684d..5b20abf447 100644 --- a/genindex-all.html +++ b/genindex-all.html @@ -4,13 +4,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -18,12 +18,13 @@ + @@ -189,7 +190,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -28452,7 +28453,7 @@

                P

              • PEP 483, [1]
              • -
              • PEP 484, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26], [27], [28], [29], [30], [31], [32], [33] +
              • PEP 484, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26], [27], [28], [29], [30], [31], [32], [33]
              • PEP 484#annotating-instance-and-class-methods
              • @@ -28510,7 +28511,7 @@

                P

              • PEP 540, [1], [2], [3], [4], [5]
              • -
              • PEP 544, [1], [2] +
              • PEP 544, [1], [2]
              • PEP 545, [1]
              • @@ -28526,7 +28527,7 @@

                P

              • PEP 562, [1], [2], [3]
              • -
              • PEP 563, [1], [2], [3], [4], [5], [6], [7], [8], [9] +
              • PEP 563, [1], [2], [3], [4], [5], [6], [7], [8]
              • PEP 564, [1], [2], [3]
              • @@ -28548,7 +28549,7 @@

                P

              • PEP 584, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16]
              • -
              • PEP 585, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26], [27], [28], [29], [30], [31], [32], [33], [34], [35], [36], [37], [38], [39], [40], [41], [42], [43], [44], [45], [46], [47] +
              • PEP 585, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26], [27], [28], [29], [30], [31], [32], [33], [34], [35], [36], [37], [38], [39], [40], [41], [42], [43], [44], [45], [46], [47]
              • PEP 586, [1], [2], [3]
              • @@ -28560,7 +28561,7 @@

                P

              • PEP 591, [1], [2]
              • -
              • PEP 593, [1], [2], [3], [4] +
              • PEP 593, [1], [2], [3], [4]
              • PEP 594, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11]
              • @@ -28608,9 +28609,9 @@

                P

              • PEP 604, [1], [2], [3], [4], [5]
              • -
              • PEP 612, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11] +
              • PEP 612, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11]
              • -
              • PEP 613, [1], [2], [3] +
              • PEP 613, [1], [2], [3]
              • PEP 614, [1], [2], [3], [4]
              • @@ -28652,7 +28653,7 @@

                P

              • PEP 654, [1], [2], [3], [4], [5]
              • -
              • PEP 655, [1], [2], [3], [4] +
              • PEP 655, [1], [2], [3], [4]
              • PEP 657, [1], [2], [3]
              • @@ -28662,9 +28663,9 @@

                P

              • PEP 670, [1]
              • -
              • PEP 673, [1], [2] +
              • PEP 673, [1], [2]
              • -
              • PEP 675, [1], [2] +
              • PEP 675, [1], [2]
              • PEP 676
              • @@ -28672,7 +28673,7 @@

                P

              • PEP 680, [1], [2]
              • -
              • PEP 681, [1], [2] +
              • PEP 681, [1], [2]
              • PEP 682, [1]
              • @@ -28692,11 +28693,11 @@

                P

              • PEP 693
              • -
              • PEP 695, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17] +
              • PEP 695, [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17]
              • PEP 697, [1], [2]
              • -
              • PEP 698, [1], [2] +
              • PEP 698, [1], [2]
              • PEP 699, [1], [2]
              • @@ -35958,14 +35959,14 @@

                T

              • TLSv1_3 (ssl.TLSVersion 的屬性)
              • TLSVersion (ssl 中的類別) -
              • -
              • tm_day (time.struct_time 的屬性)
              • tm_gmtoff (time.struct_time 的屬性)
              • tm_hour (time.struct_time 的屬性)
              • tm_isdst (time.struct_time 的屬性) +
              • +
              • tm_mday (time.struct_time 的屬性)
              • tm_min (time.struct_time 的屬性)
              • @@ -39452,7 +39453,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -39502,7 +39503,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\345\221\275.html" "b/genindex-\345\221\275.html" index 8e5765a5c2..1440f0c427 100644 --- "a/genindex-\345\221\275.html" +++ "b/genindex-\345\221\275.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -447,7 +448,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -497,7 +498,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\345\237\272.html" "b/genindex-\345\237\272.html" index 1626ff57c3..411d73f229 100644 --- "a/genindex-\345\237\272.html" +++ "b/genindex-\345\237\272.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -268,7 +269,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -318,7 +319,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\346\200\247.html" "b/genindex-\346\200\247.html" index ea3e9735fe..a11af753b0 100644 --- "a/genindex-\346\200\247.html" +++ "b/genindex-\346\200\247.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -268,7 +269,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -318,7 +319,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\346\250\241.html" "b/genindex-\346\250\241.html" index d71c9defc6..c4e9e0cf6b 100644 --- "a/genindex-\346\250\241.html" +++ "b/genindex-\346\250\241.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -289,7 +290,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -339,7 +340,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\347\222\260.html" "b/genindex-\347\222\260.html" index 801ca5511e..f94d9ba450 100644 --- "a/genindex-\347\222\260.html" +++ "b/genindex-\347\222\260.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -515,7 +516,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -565,7 +566,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git "a/genindex-\347\254\246\350\231\237.html" "b/genindex-\347\254\246\350\231\237.html" index 7a568b43f8..a98a0afb19 100644 --- "a/genindex-\347\254\246\350\231\237.html" +++ "b/genindex-\347\254\246\350\231\237.html" @@ -5,13 +5,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -190,7 +191,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2644,7 +2645,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2694,7 +2695,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/genindex.html b/genindex.html index a73c86e9c1..f96476db7d 100644 --- a/genindex.html +++ b/genindex.html @@ -4,13 +4,13 @@ - 索引 — Python 3.12.3 說明文件 + 索引 — Python 3.12.4 說明文件 - + @@ -18,12 +18,13 @@ + @@ -189,7 +190,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -475,7 +476,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -525,7 +526,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/glossary.html b/glossary.html index 988c62bfcb..455121074d 100644 --- a/glossary.html +++ b/glossary.html @@ -5,13 +5,13 @@ - 術語表 — Python 3.12.3 說明文件 + 術語表 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -395,9 +396,8 @@

                瀏覽

                另請參閱 locale encoding(區域編碼)。

                finder(尋檢器)

                一個物件,它會嘗試為正在被 import 的模組尋找 loader(載入器)。

                -

                There are two types of finder: meta path finders for use with sys.meta_path, and path -entry finders for use with sys.path_hooks.

                -

                See 模組引入系統 and importlib for much more detail.

                +

                有兩種類型的尋檢器:元路徑尋檢器 (meta path finder) 會使用 sys.meta_path,而路徑項目尋檢器 (path entry finder) 會使用 sys.path_hooks

                +

                請參閱 模組引入系統importlib 以了解更多細節。

                floor division(向下取整除法)

                向下無條件捨去到最接近整數的數學除法。向下取整除法的運算子是 //。例如,運算式 11 // 4 的計算結果為 2,與 float(浮點數)真除法所回傳的 2.75 不同。請注意,(-11) // 4 的結果是 -3,因為是 -2.75向下無條件捨去。請參閱 PEP 238

                @@ -784,7 +784,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -834,7 +834,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/annotations.html b/howto/annotations.html index c26888ac57..25f1424016 100644 --- a/howto/annotations.html +++ b/howto/annotations.html @@ -5,13 +5,13 @@ - 註釋 (annotation) 最佳實踐 — Python 3.12.3 說明文件 + 註釋 (annotation) 最佳實踐 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -434,7 +435,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -485,7 +486,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/argparse.html b/howto/argparse.html index f17ff7f0a7..81fb367564 100644 --- a/howto/argparse.html +++ b/howto/argparse.html @@ -5,13 +5,13 @@ - Argparse 教學 — Python 3.12.3 說明文件 + Argparse 教學 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1020,7 +1021,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1071,7 +1072,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/clinic.html b/howto/clinic.html index cbdb60ec0a..2cc26825b0 100644 --- a/howto/clinic.html +++ b/howto/clinic.html @@ -5,13 +5,13 @@ - Argument Clinic 指南 — Python 3.12.3 說明文件 + Argument Clinic 指南 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -201,7 +202,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -288,7 +289,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -338,7 +339,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/cporting.html b/howto/cporting.html index 65f80042a9..5d197192d2 100644 --- a/howto/cporting.html +++ b/howto/cporting.html @@ -5,13 +5,13 @@ - 遷移延伸模組到 Python 3 — Python 3.12.3 說明文件 + 遷移延伸模組到 Python 3 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -333,7 +334,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -384,7 +385,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/curses.html b/howto/curses.html index 499ddb038d..80081a32e9 100644 --- a/howto/curses.html +++ b/howto/curses.html @@ -5,13 +5,13 @@ - Curses Programming with Python — Python 3.12.3 說明文件 + Curses Programming with Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -876,7 +877,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -927,7 +928,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/descriptor.html b/howto/descriptor.html index 649b055d41..1d3352ef45 100644 --- a/howto/descriptor.html +++ b/howto/descriptor.html @@ -5,13 +5,13 @@ - 描述器 (Descriptor) 指南 — Python 3.12.3 說明文件 + 描述器 (Descriptor) 指南 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -264,7 +265,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1655,7 +1656,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1706,7 +1707,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/enum.html b/howto/enum.html index cff196d0ff..d489445fc3 100644 --- a/howto/enum.html +++ b/howto/enum.html @@ -5,13 +5,13 @@ - Enum HOWTO — Python 3.12.3 說明文件 + Enum HOWTO — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -284,7 +285,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1884,7 +1885,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1935,7 +1936,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/functional.html b/howto/functional.html index 4a87d7a120..0ba8534b6f 100644 --- a/howto/functional.html +++ b/howto/functional.html @@ -5,13 +5,13 @@ - 函式編程 HOWTO — Python 3.12.3 說明文件 + 函式編程 HOWTO — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -265,7 +266,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1543,7 +1544,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1594,7 +1595,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/gdb_helpers.html b/howto/gdb_helpers.html index 2eaf7a8fa8..bd4d96c9b3 100644 --- a/howto/gdb_helpers.html +++ b/howto/gdb_helpers.html @@ -5,13 +5,13 @@ - Debugging C API extensions and CPython Internals with GDB — Python 3.12.3 說明文件 + Debugging C API extensions and CPython Internals with GDB — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -244,7 +245,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -795,7 +796,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -846,7 +847,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/index.html b/howto/index.html index d813d44634..8d47679203 100644 --- a/howto/index.html +++ b/howto/index.html @@ -5,13 +5,13 @@ - Python 如何達成任務 — Python 3.12.3 說明文件 + Python 如何達成任務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -344,7 +345,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -394,7 +395,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/instrumentation.html b/howto/instrumentation.html index 9d5ef52ce8..0dd9f4cb69 100644 --- a/howto/instrumentation.html +++ b/howto/instrumentation.html @@ -5,13 +5,13 @@ - 使用 DTrace 和 SystemTap 檢測 CPython — Python 3.12.3 說明文件 + 使用 DTrace 和 SystemTap 檢測 CPython — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -709,7 +710,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -760,7 +761,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/ipaddress.html b/howto/ipaddress.html index 66ff7179d8..fbca13d22b 100644 --- a/howto/ipaddress.html +++ b/howto/ipaddress.html @@ -5,13 +5,13 @@ - ipaddress 模組介紹 — Python 3.12.3 說明文件 + ipaddress 模組介紹 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -671,7 +672,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -722,7 +723,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/isolating-extensions.html b/howto/isolating-extensions.html index 76b1c03433..02c5cf7123 100644 --- a/howto/isolating-extensions.html +++ b/howto/isolating-extensions.html @@ -5,13 +5,13 @@ - 隔離擴充模組 — Python 3.12.3 說明文件 + 隔離擴充模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -264,7 +265,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -953,7 +954,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1004,7 +1005,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/logging-cookbook.html b/howto/logging-cookbook.html index 5f22c68995..6e58689022 100644 --- a/howto/logging-cookbook.html +++ b/howto/logging-cookbook.html @@ -5,13 +5,13 @@ - Logging Cookbook — Python 3.12.3 說明文件 + Logging Cookbook — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -297,7 +298,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -4333,7 +4334,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -4384,7 +4385,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/logging.html b/howto/logging.html index dad99a8d6c..6fbb138130 100644 --- a/howto/logging.html +++ b/howto/logging.html @@ -5,13 +5,13 @@ - 如何使用 Logging 模組 — Python 3.12.3 說明文件 + 如何使用 Logging 模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -257,7 +258,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1386,7 +1387,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1437,7 +1438,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/mro.html b/howto/mro.html index d6ed60b9e9..ff58f6779a 100644 --- a/howto/mro.html +++ b/howto/mro.html @@ -5,13 +5,13 @@ - The Python 2.3 Method Resolution Order — Python 3.12.3 說明文件 + The Python 2.3 Method Resolution Order — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -993,7 +994,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1044,7 +1045,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/perf_profiling.html b/howto/perf_profiling.html index c61378ce07..37df0774c9 100644 --- a/howto/perf_profiling.html +++ b/howto/perf_profiling.html @@ -5,13 +5,13 @@ - Python 對 Linux perf 分析器的支援 — Python 3.12.3 說明文件 + Python 對 Linux perf 分析器的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -495,7 +496,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -546,7 +547,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/pyporting.html b/howto/pyporting.html index afdd6a2a21..cbfe6f90a3 100644 --- a/howto/pyporting.html +++ b/howto/pyporting.html @@ -5,13 +5,13 @@ - 如何將 Python 2 的程式碼移植到 Python 3 — Python 3.12.3 說明文件 + 如何將 Python 2 的程式碼移植到 Python 3 — Python 3.12.4 說明文件 - + @@ -19,12 +19,13 @@ + @@ -211,7 +212,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -329,7 +330,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -379,7 +380,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/regex.html b/howto/regex.html index f05aafe5d1..546b3a2b53 100644 --- a/howto/regex.html +++ b/howto/regex.html @@ -5,13 +5,13 @@ - 如何使用正規表達式 — Python 3.12.3 說明文件 + 如何使用正規表達式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -262,7 +263,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1714,7 +1715,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1765,7 +1766,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/sockets.html b/howto/sockets.html index d0d5d7981b..49d4a0fa87 100644 --- a/howto/sockets.html +++ b/howto/sockets.html @@ -5,13 +5,13 @@ - Socket 程式設計指南 — Python 3.12.3 說明文件 + Socket 程式設計指南 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -245,7 +246,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -520,7 +521,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -571,7 +572,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/sorting.html b/howto/sorting.html index 9a3f0cbef8..54c42642d5 100644 --- a/howto/sorting.html +++ b/howto/sorting.html @@ -5,13 +5,13 @@ - 排序技法 — Python 3.12.3 說明文件 + 排序技法 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -589,7 +590,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -640,7 +641,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/unicode.html b/howto/unicode.html index 36ee0886e2..c5ea199d87 100644 --- a/howto/unicode.html +++ b/howto/unicode.html @@ -5,13 +5,13 @@ - Unicode HOWTO — Python 3.12.3 說明文件 + Unicode HOWTO — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -255,7 +256,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1053,7 +1054,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1104,7 +1105,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/howto/urllib2.html b/howto/urllib2.html index a7287ba0eb..33a8f1226e 100644 --- a/howto/urllib2.html +++ b/howto/urllib2.html @@ -5,13 +5,13 @@ - 如何使用 urllib 套件取得網路資源 — Python 3.12.3 說明文件 + 如何使用 urllib 套件取得網路資源 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -253,7 +254,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -935,7 +936,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -986,7 +987,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/index.html b/index.html index afd089a0c2..92cad1168f 100644 --- a/index.html +++ b/index.html @@ -3,13 +3,13 @@ - 3.12.3 Documentation + 3.12.4 Documentation - + @@ -17,12 +17,13 @@ + @@ -205,7 +206,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -238,9 +239,9 @@

                瀏覽

                -

                Python 3.12.3 說明文件

                +

                Python 3.12.4 說明文件

                - 歡迎!這是 Python 3.12.3 的官方說明文件。 + 歡迎!這是 Python 3.12.4 的官方說明文件。

                文件章節:

                @@ -352,7 +353,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -402,7 +403,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/installing/index.html b/installing/index.html index 958a78b336..c5cdce7bd9 100644 --- a/installing/index.html +++ b/installing/index.html @@ -5,13 +5,13 @@ - 安裝 Python 模組 — Python 3.12.3 說明文件 + 安裝 Python 模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -493,7 +494,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -543,7 +544,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/2to3.html b/library/2to3.html index 60b699fc90..6b9101cc0f 100644 --- a/library/2to3.html +++ b/library/2to3.html @@ -5,13 +5,13 @@ - 2to3 --- 自動將 Python 2的程式碼轉成 Python 3 — Python 3.12.3 說明文件 + 2to3 --- 自動將 Python 2的程式碼轉成 Python 3 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -920,7 +921,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -972,7 +973,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/__future__.html b/library/__future__.html index c2a18a45b6..6fa19daa5b 100644 --- a/library/__future__.html +++ b/library/__future__.html @@ -5,13 +5,13 @@ - __future__ --- Future 陳述式定義 — Python 3.12.3 說明文件 + __future__ --- Future 陳述式定義 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -463,7 +464,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -515,7 +516,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/__main__.html b/library/__main__.html index 04e02d2b05..669eec55b0 100644 --- a/library/__main__.html +++ b/library/__main__.html @@ -5,13 +5,13 @@ - __main__ --- 頂層程式碼環境 — Python 3.12.3 說明文件 + __main__ --- 頂層程式碼環境 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -594,7 +595,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -646,7 +647,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/_thread.html b/library/_thread.html index a712cc67b4..154100633d 100644 --- a/library/_thread.html +++ b/library/_thread.html @@ -5,13 +5,13 @@ - _thread --- 低階執行緒 API — Python 3.12.3 說明文件 + _thread --- 低階執行緒 API — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -526,7 +527,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -578,7 +579,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/abc.html b/library/abc.html index 3ccb22fc67..8f8634cc8f 100644 --- a/library/abc.html +++ b/library/abc.html @@ -5,13 +5,13 @@ - abc --- 抽象基底類別 — Python 3.12.3 說明文件 + abc --- 抽象基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -583,7 +584,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -635,7 +636,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/aifc.html b/library/aifc.html index cf1cdd2480..5c1df6c9d7 100644 --- a/library/aifc.html +++ b/library/aifc.html @@ -5,13 +5,13 @@ - aifc --- 讀寫 AIFF 與 AIFC 檔案 — Python 3.12.3 說明文件 + aifc --- 讀寫 AIFF 與 AIFC 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -566,7 +567,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -618,7 +619,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/allos.html b/library/allos.html index 53437e1de4..5e04fec2be 100644 --- a/library/allos.html +++ b/library/allos.html @@ -5,13 +5,13 @@ - 通用作業系統服務 — Python 3.12.3 說明文件 + 通用作業系統服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -563,7 +564,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -614,7 +615,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/archiving.html b/library/archiving.html index 7dc9716f4a..abd3a135a8 100644 --- a/library/archiving.html +++ b/library/archiving.html @@ -5,13 +5,13 @@ - 資料壓縮與保存 — Python 3.12.3 說明文件 + 資料壓縮與保存 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -387,7 +388,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -438,7 +439,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/argparse.html b/library/argparse.html index 2ba84670e3..3d51388a4d 100644 --- a/library/argparse.html +++ b/library/argparse.html @@ -5,13 +5,13 @@ - argparse --- Parser for command-line options, arguments and sub-commands — Python 3.12.3 說明文件 + argparse --- Parser for command-line options, arguments and sub-commands — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -291,7 +292,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2671,7 +2672,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2723,7 +2724,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/array.html b/library/array.html index 438d134bd7..02b129d412 100644 --- a/library/array.html +++ b/library/array.html @@ -5,13 +5,13 @@ - array --- 高效率的數值型陣列 — Python 3.12.3 說明文件 + array --- 高效率的數值型陣列 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -592,7 +593,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -644,7 +645,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ast.html b/library/ast.html index cc6cf49e40..a35d20743e 100644 --- a/library/ast.html +++ b/library/ast.html @@ -5,13 +5,13 @@ - ast --- 抽象語法樹 (Abstract Syntax Trees) — Python 3.12.3 說明文件 + ast --- 抽象語法樹 (Abstract Syntax Trees) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -252,7 +253,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2802,7 +2803,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2854,7 +2855,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-api-index.html b/library/asyncio-api-index.html index 4c487f83f7..1dc20f02c9 100644 --- a/library/asyncio-api-index.html +++ b/library/asyncio-api-index.html @@ -5,13 +5,13 @@ - 高階 API 索引 — Python 3.12.3 說明文件 + 高階 API 索引 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -564,7 +565,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -617,7 +618,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-dev.html b/library/asyncio-dev.html index 18bb361fe3..d49164cfa5 100644 --- a/library/asyncio-dev.html +++ b/library/asyncio-dev.html @@ -5,13 +5,13 @@ - 使用 asyncio 開發 — Python 3.12.3 說明文件 + 使用 asyncio 開發 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -506,7 +507,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -559,7 +560,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-eventloop.html b/library/asyncio-eventloop.html index 5ce430e03a..889c03a3ab 100644 --- a/library/asyncio-eventloop.html +++ b/library/asyncio-eventloop.html @@ -5,13 +5,13 @@ - 事件迴圈 — Python 3.12.3 說明文件 + 事件迴圈 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -258,7 +259,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1735,7 +1736,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1788,7 +1789,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-exceptions.html b/library/asyncio-exceptions.html index c2aa0ee46d..971e40ef67 100644 --- a/library/asyncio-exceptions.html +++ b/library/asyncio-exceptions.html @@ -5,13 +5,13 @@ - 例外 — Python 3.12.3 說明文件 + 例外 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -389,7 +390,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -442,7 +443,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-extending.html b/library/asyncio-extending.html index c62d57997a..f956359558 100644 --- a/library/asyncio-extending.html +++ b/library/asyncio-extending.html @@ -5,13 +5,13 @@ - 擴充 — Python 3.12.3 說明文件 + 擴充 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -428,7 +429,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -481,7 +482,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-future.html b/library/asyncio-future.html index 5087b58dc6..0b545afeb2 100644 --- a/library/asyncio-future.html +++ b/library/asyncio-future.html @@ -5,13 +5,13 @@ - Futures — Python 3.12.3 說明文件 + Futures — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -268,7 +269,7 @@

                瀏覽

                Futures

                -

                原始碼:Lib/asyncio/futures.pyLib/asyncio/base_futures.py

                +

                原始碼:Lib/asyncio/futures.py、source:`Lib/asyncio/base_futures.py


                Future 物件被用來連結低階回呼式程式和高階 async/await 程式。

                @@ -550,7 +551,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -603,7 +604,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-llapi-index.html b/library/asyncio-llapi-index.html index c15564d651..e4a2d8a06b 100644 --- a/library/asyncio-llapi-index.html +++ b/library/asyncio-llapi-index.html @@ -5,13 +5,13 @@ - 低階 API 索引 — Python 3.12.3 說明文件 + 低階 API 索引 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -885,7 +886,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -938,7 +939,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-platforms.html b/library/asyncio-platforms.html index 98cd7bd3e1..6d1754c05c 100644 --- a/library/asyncio-platforms.html +++ b/library/asyncio-platforms.html @@ -5,13 +5,13 @@ - 平臺支援 — Python 3.12.3 說明文件 + 平臺支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -281,7 +282,7 @@

                所有平台

                Windows

                -

                原始碼:Lib/asyncio/proactor_events.pyLib/asyncio/windows_events.pyLib/asyncio/windows_utils.py

                +

                原始碼:Lib/asyncio/proactor_events.py、source:`Lib/asyncio/windows_events.py、source:`Lib/asyncio/windows_utils.py


                在 3.8 版的變更: 在 Windows 上,現在 ProactorEventLoop 是預設的事件迴圈。

                @@ -402,7 +403,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -455,7 +456,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-policy.html b/library/asyncio-policy.html index f13537a2dc..62925faa26 100644 --- a/library/asyncio-policy.html +++ b/library/asyncio-policy.html @@ -5,13 +5,13 @@ - Policies — Python 3.12.3 說明文件 + Policies — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -675,7 +676,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -728,7 +729,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-protocol.html b/library/asyncio-protocol.html index c32962da81..51db9173e4 100644 --- a/library/asyncio-protocol.html +++ b/library/asyncio-protocol.html @@ -5,13 +5,13 @@ - 傳輸與協定 — Python 3.12.3 說明文件 + 傳輸與協定 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -255,7 +256,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1412,7 +1413,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1465,7 +1466,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-queue.html b/library/asyncio-queue.html index f3a1d7155b..ebd7ce8397 100644 --- a/library/asyncio-queue.html +++ b/library/asyncio-queue.html @@ -5,13 +5,13 @@ - 佇列 (Queues) — Python 3.12.3 說明文件 + 佇列 (Queues) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -528,7 +529,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -581,7 +582,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-runner.html b/library/asyncio-runner.html index f082354d2f..0fbe87bf84 100644 --- a/library/asyncio-runner.html +++ b/library/asyncio-runner.html @@ -5,13 +5,13 @@ - Runners (執行器) — Python 3.12.3 說明文件 + Runners (執行器) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -478,7 +479,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -531,7 +532,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-stream.html b/library/asyncio-stream.html index 71e0e2b3b0..f09b0096cf 100644 --- a/library/asyncio-stream.html +++ b/library/asyncio-stream.html @@ -5,13 +5,13 @@ - 串流 — Python 3.12.3 說明文件 + 串流 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -831,7 +832,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -884,7 +885,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-subprocess.html b/library/asyncio-subprocess.html index 4d643f357a..98998a17e5 100644 --- a/library/asyncio-subprocess.html +++ b/library/asyncio-subprocess.html @@ -5,13 +5,13 @@ - 子行程 — Python 3.12.3 說明文件 + 子行程 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -693,7 +694,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -746,7 +747,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-sync.html b/library/asyncio-sync.html index 077b57eabb..5dacb70e50 100644 --- a/library/asyncio-sync.html +++ b/library/asyncio-sync.html @@ -5,13 +5,13 @@ - 同步化原始物件 (Synchronization Primitives) — Python 3.12.3 說明文件 + 同步化原始物件 (Synchronization Primitives) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -757,7 +758,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -810,7 +811,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio-task.html b/library/asyncio-task.html index cf3dc72fa0..862b8760b3 100644 --- a/library/asyncio-task.html +++ b/library/asyncio-task.html @@ -5,13 +5,13 @@ - 協程與任務 — Python 3.12.3 說明文件 + 協程與任務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1690,7 +1691,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1743,7 +1744,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/asyncio.html b/library/asyncio.html index c01f44122f..eb3055d77a 100644 --- a/library/asyncio.html +++ b/library/asyncio.html @@ -5,13 +5,13 @@ - asyncio --- 非同步 I/O — Python 3.12.3 說明文件 + asyncio --- 非同步 I/O — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -401,7 +402,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -453,7 +454,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/atexit.html b/library/atexit.html index c9cb49d2fc..171cdc26dd 100644 --- a/library/atexit.html +++ b/library/atexit.html @@ -5,13 +5,13 @@ - atexit --- 退出處理函式 — Python 3.12.3 說明文件 + atexit --- 退出處理函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -419,7 +420,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -471,7 +472,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/audioop.html b/library/audioop.html index b404ef43a2..301750d8bd 100644 --- a/library/audioop.html +++ b/library/audioop.html @@ -5,13 +5,13 @@ - audioop --- 操作原始聲音檔案 — Python 3.12.3 說明文件 + audioop --- 操作原始聲音檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -606,7 +607,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -658,7 +659,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/audit_events.html b/library/audit_events.html index ea32678e28..fee7558c5e 100644 --- a/library/audit_events.html +++ b/library/audit_events.html @@ -5,13 +5,13 @@ - 稽核事件表 — Python 3.12.3 說明文件 + 稽核事件表 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1096,7 +1097,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1148,7 +1149,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/base64.html b/library/base64.html index bbb5553489..2031b15760 100644 --- a/library/base64.html +++ b/library/base64.html @@ -5,13 +5,13 @@ - base64 --- Base16、Base32、Base64、Base85 資料編碼 — Python 3.12.3 說明文件 + base64 --- Base16、Base32、Base64、Base85 資料編碼 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -375,9 +376,7 @@

                瀏覽

                base64.a85encode(b, *, foldspaces=False, wrapcol=0, pad=False, adobe=False)

                使用 Ascii85 對類位元組物件 b 進行編碼,並回傳編碼後的 bytes

                foldspaces 是一個可選的旗標,它使用特殊的短序列 'y' 來替代連續的 4 個空格 (ASCII 0x20),這是由 'btoa' 支援的功能。這個特性不被「標準」的 Ascii85 編碼所支援。

                -

                wrapcol controls whether the output should have newline (b'\n') -characters added to it. If this is non-zero, each output line will be -at most this many characters long, excluding the trailing newline.

                +

                wrapcol 控制輸出是否應該包含換行字元 (b'\n') 。如果這個值不為零,每行輸出的長度將不超過這個字元長度(不包含後面的換行符號)。

                pad 控制是否在編碼之前將輸入填充為 4 的倍數。請注意,btoa 實作始終會填充。

                adobe 控制編碼的位元組序列前後是否加上 <~~>,這是 Adobe 實作中使用的。

                @@ -544,7 +543,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -596,7 +595,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/bdb.html b/library/bdb.html index 750254e7b4..f830317b62 100644 --- a/library/bdb.html +++ b/library/bdb.html @@ -5,13 +5,13 @@ - bdb --- 偵錯器框架 — Python 3.12.3 說明文件 + bdb --- 偵錯器框架 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -838,7 +839,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -890,7 +891,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/binary.html b/library/binary.html index 387dd73646..43340e688f 100644 --- a/library/binary.html +++ b/library/binary.html @@ -5,13 +5,13 @@ - 二進位資料服務 — Python 3.12.3 說明文件 + 二進位資料服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -373,7 +374,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -424,7 +425,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/binascii.html b/library/binascii.html index 200eaab45e..f10f907019 100644 --- a/library/binascii.html +++ b/library/binascii.html @@ -5,13 +5,13 @@ - binascii --- 在二進位制和 ASCII 之間轉換 — Python 3.12.3 說明文件 + binascii --- 在二進位制和 ASCII 之間轉換 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -507,7 +508,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -559,7 +560,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/bisect.html b/library/bisect.html index ff4f4c54fd..3ca4d51b66 100644 --- a/library/bisect.html +++ b/library/bisect.html @@ -5,13 +5,13 @@ - bisect --- 陣列二分演算法 (Array bisection algorithm) — Python 3.12.3 說明文件 + bisect --- 陣列二分演算法 (Array bisection algorithm) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -513,7 +514,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -565,7 +566,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/builtins.html b/library/builtins.html index 9be49ffc4e..e558f7177f 100644 --- a/library/builtins.html +++ b/library/builtins.html @@ -5,13 +5,13 @@ - builtins --- 內建物件 — Python 3.12.3 說明文件 + builtins --- 內建物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -342,7 +343,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -394,7 +395,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/bz2.html b/library/bz2.html index 94b2cac8b8..9f7ca92898 100644 --- a/library/bz2.html +++ b/library/bz2.html @@ -5,13 +5,13 @@ - bz2 --- bzip2 壓縮的支援 — Python 3.12.3 說明文件 + bz2 --- bzip2 壓縮的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -711,7 +712,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -763,7 +764,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/calendar.html b/library/calendar.html index 6ded73fa34..927215b910 100644 --- a/library/calendar.html +++ b/library/calendar.html @@ -5,13 +5,13 @@ - calendar --- 日曆相關函式 — Python 3.12.3 說明文件 + calendar --- 日曆相關函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -924,7 +925,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -976,7 +977,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/cgi.html b/library/cgi.html index e71bfe0c2c..5c93971186 100644 --- a/library/cgi.html +++ b/library/cgi.html @@ -5,13 +5,13 @@ - cgi --- 通用閘道器介面支援 — Python 3.12.3 說明文件 + cgi --- 通用閘道器介面支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -849,7 +850,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -901,7 +902,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/cgitb.html b/library/cgitb.html index 749c5b3c26..4209099d5e 100644 --- a/library/cgitb.html +++ b/library/cgitb.html @@ -5,13 +5,13 @@ - cgitb --- CGI 腳本的回溯 (traceback) 管理程式 — Python 3.12.3 說明文件 + cgitb --- CGI 腳本的回溯 (traceback) 管理程式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -389,7 +390,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -441,7 +442,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/chunk.html b/library/chunk.html index a25295bc28..153d4acda8 100644 --- a/library/chunk.html +++ b/library/chunk.html @@ -5,13 +5,13 @@ - chunk --- 讀取 IFF 分塊資料 — Python 3.12.3 說明文件 + chunk --- 讀取 IFF 分塊資料 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -460,7 +461,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -512,7 +513,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/cmath.html b/library/cmath.html index f9470ddb82..1f93f120ba 100644 --- a/library/cmath.html +++ b/library/cmath.html @@ -5,13 +5,13 @@ - cmath --- 複數的數學函式 — Python 3.12.3 說明文件 + cmath --- 複數的數學函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -289,9 +290,7 @@

                瀏覽

                轉換到極座標和從極座標做轉換

                -

                A Python complex number z is stored internally using rectangular -or Cartesian coordinates. It is completely determined by its real -part z.real and its imaginary part z.imag.

                +

                Python 複數 z 是用 直角坐標笛卡爾坐標 儲存在內部的。它完全是由其 實部 z.real虛部 z.imag 所決定。

                極座標 提供了另一種表示複數的方法。在極座標中,複數 z 由絕對值 (modulus) r 和相位角 (phase) phi 定義。絕對值 r 是從 z 到原點的距離,而相位角 phi 是從正 x 軸到連接原點到 z 的線段的逆時針角度(以弧度為單位)。

                以下的函式可用於原始直角座標與極座標之間的相互轉換。

                @@ -319,8 +318,7 @@

                轉換到極座標和從極座標做轉換
                cmath.rect(r, phi)
                -

                Return the complex number x with polar coordinates r and phi. -Equivalent to complex(r * math.cos(phi), r * math.sin(phi)).

                +

                透過極座標 rphi 回傳複數 x。相當於 complex(r * math.cos(phi), r * math.sin(phi))

                @@ -618,7 +616,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -670,7 +668,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/cmd.html b/library/cmd.html index f823d06776..8fcb9e3fa3 100644 --- a/library/cmd.html +++ b/library/cmd.html @@ -5,13 +5,13 @@ - cmd --- 以列為導向的指令直譯器支援 — Python 3.12.3 說明文件 + cmd --- 以列為導向的指令直譯器支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -717,7 +718,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -769,7 +770,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/cmdline.html b/library/cmdline.html index ffb2a7be18..5f15e702af 100644 --- a/library/cmdline.html +++ b/library/cmdline.html @@ -5,13 +5,13 @@ - 模組命令列介面 — Python 3.12.3 說明文件 + 模組命令列介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -372,7 +373,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -423,7 +424,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/code.html b/library/code.html index 223bad99e4..793c08a885 100644 --- a/library/code.html +++ b/library/code.html @@ -5,13 +5,13 @@ - code --- 直譯器基底類別 — Python 3.12.3 說明文件 + code --- 直譯器基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -519,7 +520,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -571,7 +572,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/codecs.html b/library/codecs.html index 4757bfe73c..07488a9efe 100644 --- a/library/codecs.html +++ b/library/codecs.html @@ -5,13 +5,13 @@ - codecs --- 編解碼器註冊表和基底類別 — Python 3.12.3 說明文件 + codecs --- 編解碼器註冊表和基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -256,7 +257,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2127,7 +2128,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2179,7 +2180,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/codeop.html b/library/codeop.html index bac2d06809..e5379e2104 100644 --- a/library/codeop.html +++ b/library/codeop.html @@ -5,13 +5,13 @@ - codeop --- 編譯 Python 程式碼 — Python 3.12.3 說明文件 + codeop --- 編譯 Python 程式碼 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -433,7 +434,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/collections.abc.html b/library/collections.abc.html index 7a35a6a059..8c588d764b 100644 --- a/library/collections.abc.html +++ b/library/collections.abc.html @@ -5,13 +5,13 @@ - collections.abc --- 容器的抽象基底類別 — Python 3.12.3 說明文件 + collections.abc --- 容器的抽象基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -881,7 +882,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -933,7 +934,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/collections.html b/library/collections.html index 7d8a731ac6..4b3859211b 100644 --- a/library/collections.html +++ b/library/collections.html @@ -5,13 +5,13 @@ - collections --- 容器資料型態 — Python 3.12.3 說明文件 + collections --- 容器資料型態 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -249,7 +250,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1433,7 +1434,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1485,7 +1486,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/colorsys.html b/library/colorsys.html index 42857da2fd..01245755c3 100644 --- a/library/colorsys.html +++ b/library/colorsys.html @@ -5,13 +5,13 @@ - colorsys --- 顏色系統間的轉換 — Python 3.12.3 說明文件 + colorsys --- 顏色系統間的轉換 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -372,7 +373,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -424,7 +425,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/compileall.html b/library/compileall.html index 59690d9303..5b2f02fd8c 100644 --- a/library/compileall.html +++ b/library/compileall.html @@ -5,13 +5,13 @@ - compileall --- 位元組編譯 Python 函式庫 — Python 3.12.3 說明文件 + compileall --- 位元組編譯 Python 函式庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -693,7 +694,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -745,7 +746,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/concurrency.html b/library/concurrency.html index e63f828415..c15658749e 100644 --- a/library/concurrency.html +++ b/library/concurrency.html @@ -5,13 +5,13 @@ - 並行執行 (Concurrent Execution) — Python 3.12.3 說明文件 + 並行執行 (Concurrent Execution) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -456,7 +457,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -507,7 +508,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/concurrent.futures.html b/library/concurrent.futures.html index fa23612a70..1cc08af0de 100644 --- a/library/concurrent.futures.html +++ b/library/concurrent.futures.html @@ -5,13 +5,13 @@ - concurrent.futures --- 啟動平行任務 — Python 3.12.3 說明文件 + concurrent.futures --- 啟動平行任務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -782,7 +783,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -834,7 +835,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/concurrent.html b/library/concurrent.html index 6ba0b8a06e..5409f1d0bd 100644 --- a/library/concurrent.html +++ b/library/concurrent.html @@ -5,13 +5,13 @@ - concurrent 套件 — Python 3.12.3 說明文件 + concurrent 套件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -324,7 +325,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -376,7 +377,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/configparser.html b/library/configparser.html index d3e2dff4bf..efcf8d50c6 100644 --- a/library/configparser.html +++ b/library/configparser.html @@ -5,13 +5,13 @@ - configparser --- 設定檔剖析器 — Python 3.12.3 說明文件 + configparser --- 設定檔剖析器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1635,7 +1636,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1687,7 +1688,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/constants.html b/library/constants.html index 4a27df1fff..962b6afdb5 100644 --- a/library/constants.html +++ b/library/constants.html @@ -5,13 +5,13 @@ - 內建常數 — Python 3.12.3 說明文件 + 內建常數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -418,7 +419,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -469,7 +470,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/contextlib.html b/library/contextlib.html index de02f35e3d..60479d7cae 100644 --- a/library/contextlib.html +++ b/library/contextlib.html @@ -5,13 +5,13 @@ - contextlib --- Utilities for with-statement contexts — Python 3.12.3 說明文件 + contextlib --- Utilities for with-statement contexts — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -588,7 +589,9 @@

                Utilitiesreentrant.

                If the code within the with block raises a BaseExceptionGroup, suppressed exceptions are removed from the -group. If any exceptions in the group are not suppressed, a group containing them is re-raised.

                +group. Any exceptions of the group which are not suppressed are re-raised in +a new group which is created using the original group's derive() +method.

                Added in version 3.4.

                @@ -1387,7 +1390,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1439,7 +1442,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/contextvars.html b/library/contextvars.html index 32a26f02e0..2dcd3e7158 100644 --- a/library/contextvars.html +++ b/library/contextvars.html @@ -5,13 +5,13 @@ - contextvars --- 情境變數 — Python 3.12.3 說明文件 + contextvars --- 情境變數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -646,7 +647,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -698,7 +699,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/copy.html b/library/copy.html index 2dd84ceade..cb29f4fc67 100644 --- a/library/copy.html +++ b/library/copy.html @@ -5,13 +5,13 @@ - copy --- 淺層 (shallow) 和深層 (deep) 複製操作 — Python 3.12.3 說明文件 + copy --- 淺層 (shallow) 和深層 (deep) 複製操作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -368,7 +369,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -420,7 +421,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/copyreg.html b/library/copyreg.html index 14a48eef7e..3f1034777b 100644 --- a/library/copyreg.html +++ b/library/copyreg.html @@ -5,13 +5,13 @@ - copyreg --- 註冊 pickle 支援函式 — Python 3.12.3 說明文件 + copyreg --- 註冊 pickle 支援函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -378,7 +379,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -430,7 +431,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/crypt.html b/library/crypt.html index 9dfaf13e5b..031566d522 100644 --- a/library/crypt.html +++ b/library/crypt.html @@ -5,13 +5,13 @@ - crypt --- 用於檢查 Unix 密碼的函式 — Python 3.12.3 說明文件 + crypt --- 用於檢查 Unix 密碼的函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -517,7 +518,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -569,7 +570,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/crypto.html b/library/crypto.html index 66c57cea0e..630e87b712 100644 --- a/library/crypto.html +++ b/library/crypto.html @@ -5,13 +5,13 @@ - 加密服務 — Python 3.12.3 說明文件 + 加密服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -361,7 +362,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -412,7 +413,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/csv.html b/library/csv.html index b2bb8b94d0..1bfa862911 100644 --- a/library/csv.html +++ b/library/csv.html @@ -5,13 +5,13 @@ - csv --- CSV 檔案讀取及寫入 — Python 3.12.3 說明文件 + csv --- CSV 檔案讀取及寫入 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -803,7 +804,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -855,7 +856,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ctypes.html b/library/ctypes.html index c5288d3842..a2b220e388 100644 --- a/library/ctypes.html +++ b/library/ctypes.html @@ -5,13 +5,13 @@ - ctypes --- 用於 Python 的外部函式庫 — Python 3.12.3 說明文件 + ctypes --- 用於 Python 的外部函式庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -264,7 +265,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2940,7 +2941,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2992,7 +2993,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/curses.ascii.html b/library/curses.ascii.html index 0411c42bfd..d93b1cf0be 100644 --- a/library/curses.ascii.html +++ b/library/curses.ascii.html @@ -5,13 +5,13 @@ - curses.ascii --- ASCII 字元的工具程式 — Python 3.12.3 說明文件 + curses.ascii --- ASCII 字元的工具程式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -770,7 +771,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -822,7 +823,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/curses.html b/library/curses.html index 554720953a..7fa707fe95 100644 --- a/library/curses.html +++ b/library/curses.html @@ -5,13 +5,13 @@ - curses --- 字元儲存格顯示的終端處理 — Python 3.12.3 說明文件 + curses --- 字元儲存格顯示的終端處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3561,7 +3562,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3613,7 +3614,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/curses.panel.html b/library/curses.panel.html index 15f751fed1..994c9208e8 100644 --- a/library/curses.panel.html +++ b/library/curses.panel.html @@ -5,13 +5,13 @@ - curses.panel --- curses 的面板堆疊擴充 — Python 3.12.3 說明文件 + curses.panel --- curses 的面板堆疊擴充 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -459,7 +460,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -511,7 +512,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/custominterp.html b/library/custominterp.html index 35458f9101..c91220cff1 100644 --- a/library/custominterp.html +++ b/library/custominterp.html @@ -5,13 +5,13 @@ - 自訂 Python 直譯器 — Python 3.12.3 說明文件 + 自訂 Python 直譯器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -335,7 +336,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -386,7 +387,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/dataclasses.html b/library/dataclasses.html index 0ad3cb15cf..9859091d25 100644 --- a/library/dataclasses.html +++ b/library/dataclasses.html @@ -5,13 +5,13 @@ - dataclasses --- Data Classes — Python 3.12.3 說明文件 + dataclasses --- Data Classes — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1153,7 +1154,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1205,7 +1206,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/datatypes.html b/library/datatypes.html index 36dd727327..5b7b282320 100644 --- a/library/datatypes.html +++ b/library/datatypes.html @@ -5,13 +5,13 @@ - 資料型別 — Python 3.12.3 說明文件 + 資料型別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -468,7 +469,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -519,7 +520,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/datetime.html b/library/datetime.html index 075b4e6f91..f37943dc18 100644 --- a/library/datetime.html +++ b/library/datetime.html @@ -5,13 +5,13 @@ - datetime --- 日期與時間的基本型別 — Python 3.12.3 說明文件 + datetime --- 日期與時間的基本型別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -258,7 +259,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3361,7 +3362,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3413,7 +3414,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/dbm.html b/library/dbm.html index 35ad03262b..a275a885c6 100644 --- a/library/dbm.html +++ b/library/dbm.html @@ -5,13 +5,13 @@ - dbm --- Unix "databases" 的介面 — Python 3.12.3 說明文件 + dbm --- Unix "databases" 的介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -731,7 +732,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -783,7 +784,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/debug.html b/library/debug.html index 9ef5570ec6..3ff74f437e 100644 --- a/library/debug.html +++ b/library/debug.html @@ -5,13 +5,13 @@ - 除錯與效能分析 — Python 3.12.3 說明文件 + 除錯與效能分析 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -392,7 +393,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -443,7 +444,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/decimal.html b/library/decimal.html index 0aa53ebeca..e95de25ac6 100644 --- a/library/decimal.html +++ b/library/decimal.html @@ -5,13 +5,13 @@ - decimal --- 十進位固定點和浮點運算 — Python 3.12.3 說明文件 + decimal --- 十進位固定點和浮點運算 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -245,7 +246,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2685,7 +2686,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2737,7 +2738,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/development.html b/library/development.html index b5935654c4..eaa26c7fed 100644 --- a/library/development.html +++ b/library/development.html @@ -5,13 +5,13 @@ - 開發工具 — Python 3.12.3 說明文件 + 開發工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -528,7 +529,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -579,7 +580,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/devmode.html b/library/devmode.html index 860a30557e..871586c7cf 100644 --- a/library/devmode.html +++ b/library/devmode.html @@ -5,13 +5,13 @@ - Python 開發模式 — Python 3.12.3 說明文件 + Python 開發模式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -488,7 +489,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -540,7 +541,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/dialog.html b/library/dialog.html index 8852e0f397..cac534db9c 100644 --- a/library/dialog.html +++ b/library/dialog.html @@ -5,13 +5,13 @@ - Tkinter 對話框 — Python 3.12.3 說明文件 + Tkinter 對話框 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -629,7 +630,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -681,7 +682,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/difflib.html b/library/difflib.html index f5c857c658..041a161b0f 100644 --- a/library/difflib.html +++ b/library/difflib.html @@ -5,13 +5,13 @@ - difflib --- 計算差異的輔助工具 — Python 3.12.3 說明文件 + difflib --- 計算差異的輔助工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1250,7 +1251,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1302,7 +1303,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/dis.html b/library/dis.html index 3fe5c3b533..95d0126676 100644 --- a/library/dis.html +++ b/library/dis.html @@ -5,13 +5,13 @@ - dis --- Python bytecode 的反組譯器 — Python 3.12.3 說明文件 + dis --- Python bytecode 的反組譯器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2350,7 +2351,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2402,7 +2403,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/distribution.html b/library/distribution.html index 0725344202..ae7faec019 100644 --- a/library/distribution.html +++ b/library/distribution.html @@ -5,13 +5,13 @@ - 軟體封裝與發布 — Python 3.12.3 說明文件 + 軟體封裝與發布 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -352,7 +353,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -403,7 +404,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/doctest.html b/library/doctest.html index 4c3dc1610d..28fe29ee58 100644 --- a/library/doctest.html +++ b/library/doctest.html @@ -5,13 +5,13 @@ - doctest --- 測試互動式 Python 範例 — Python 3.12.3 說明文件 + doctest --- 測試互動式 Python 範例 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -253,7 +254,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2077,7 +2078,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2129,7 +2130,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.charset.html b/library/email.charset.html index 1cb0c07d40..9cf046cdda 100644 --- a/library/email.charset.html +++ b/library/email.charset.html @@ -5,13 +5,13 @@ - email.charset:表示字元集合 — Python 3.12.3 說明文件 + email.charset:表示字元集合 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -517,7 +518,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -570,7 +571,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.compat32-message.html b/library/email.compat32-message.html index e6452c8802..24adee9eda 100644 --- a/library/email.compat32-message.html +++ b/library/email.compat32-message.html @@ -5,13 +5,13 @@ - email.message.Message: Representing an email message using the compat32 API — Python 3.12.3 說明文件 + email.message.Message: Representing an email message using the compat32 API — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1057,7 +1058,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1110,7 +1111,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.contentmanager.html b/library/email.contentmanager.html index e4deabe49b..8098d5f083 100644 --- a/library/email.contentmanager.html +++ b/library/email.contentmanager.html @@ -5,13 +5,13 @@ - email.contentmanager:管理 MIME 內容 — Python 3.12.3 說明文件 + email.contentmanager:管理 MIME 內容 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -527,7 +528,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -580,7 +581,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.encoders.html b/library/email.encoders.html index 27d26e3253..0c416a2b71 100644 --- a/library/email.encoders.html +++ b/library/email.encoders.html @@ -5,13 +5,13 @@ - email.encoders:編碼器 — Python 3.12.3 說明文件 + email.encoders:編碼器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -361,7 +362,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -414,7 +415,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.errors.html b/library/email.errors.html index 90f7a1097c..ca17076e1e 100644 --- a/library/email.errors.html +++ b/library/email.errors.html @@ -5,13 +5,13 @@ - email.errors:例外和缺陷類別 — Python 3.12.3 說明文件 + email.errors:例外和缺陷類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -440,7 +441,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -493,7 +494,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.examples.html b/library/email.examples.html index bd81b1c252..d0b29e1714 100644 --- a/library/email.examples.html +++ b/library/email.examples.html @@ -5,13 +5,13 @@ - email:範例 — Python 3.12.3 說明文件 + email:範例 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -708,7 +709,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -761,7 +762,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.generator.html b/library/email.generator.html index 220e9a6d9e..04334860fa 100644 --- a/library/email.generator.html +++ b/library/email.generator.html @@ -5,13 +5,13 @@ - email.generator:產生 MIME 文件 — Python 3.12.3 說明文件 + email.generator:產生 MIME 文件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -573,7 +574,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -626,7 +627,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.header.html b/library/email.header.html index 2dc876d5f4..0ca81e0604 100644 --- a/library/email.header.html +++ b/library/email.header.html @@ -5,13 +5,13 @@ - email.header:國際化標頭 — Python 3.12.3 說明文件 + email.header:國際化標頭 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -317,7 +318,7 @@

                瀏覽

                The maximum line length can be specified explicitly via maxlinelen. For splitting the first line to a shorter value (to account for the field header which isn't included in s, e.g. Subject) pass in the name of the -field in header_name. The default maxlinelen is 76, and the default value +field in header_name. The default maxlinelen is 78, and the default value for header_name is None, meaning it is not taken into account for the first line of a long, split header.

                Optional continuation_ws must be RFC 2822-compliant folding @@ -500,7 +501,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -553,7 +554,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.headerregistry.html b/library/email.headerregistry.html index d493c0cd54..38c659038a 100644 --- a/library/email.headerregistry.html +++ b/library/email.headerregistry.html @@ -5,13 +5,13 @@ - email.headerregistry:自訂標頭物件 — Python 3.12.3 說明文件 + email.headerregistry:自訂標頭物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -854,7 +855,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -907,7 +908,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.html b/library/email.html index 25b8eb12b8..ade03313c3 100644 --- a/library/email.html +++ b/library/email.html @@ -5,13 +5,13 @@ - email --- 郵件和 MIME 處理套件 — Python 3.12.3 說明文件 + email --- 郵件和 MIME 處理套件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -451,7 +452,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -503,7 +504,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.iterators.html b/library/email.iterators.html index 9b2710db71..cab38dc80c 100644 --- a/library/email.iterators.html +++ b/library/email.iterators.html @@ -5,13 +5,13 @@ - email.iterators:疊代器 — Python 3.12.3 說明文件 + email.iterators:疊代器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -382,7 +383,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -435,7 +436,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.message.html b/library/email.message.html index 7de5c2f819..afc6305033 100644 --- a/library/email.message.html +++ b/library/email.message.html @@ -5,13 +5,13 @@ - email.message:表示電子郵件訊息 — Python 3.12.3 說明文件 + email.message:表示電子郵件訊息 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1069,7 +1070,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1122,7 +1123,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.mime.html b/library/email.mime.html index 63d00ed9f6..b108f06359 100644 --- a/library/email.mime.html +++ b/library/email.mime.html @@ -5,13 +5,13 @@ - email.mime:從頭開始建立電子郵件和 MIME 物件 — Python 3.12.3 說明文件 + email.mime:從頭開始建立電子郵件和 MIME 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -531,7 +532,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -584,7 +585,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.parser.html b/library/email.parser.html index 13bb634012..1b0a682a81 100644 --- a/library/email.parser.html +++ b/library/email.parser.html @@ -5,13 +5,13 @@ - email.parser:剖析電子郵件訊息 — Python 3.12.3 說明文件 + email.parser:剖析電子郵件訊息 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -663,7 +664,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -716,7 +717,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.policy.html b/library/email.policy.html index 17136d519c..61f29715af 100644 --- a/library/email.policy.html +++ b/library/email.policy.html @@ -5,13 +5,13 @@ - email.policy: Policy Objects — Python 3.12.3 說明文件 + email.policy: Policy Objects — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -944,7 +945,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -997,7 +998,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/email.utils.html b/library/email.utils.html index 17b1bd87cb..67c7961136 100644 --- a/library/email.utils.html +++ b/library/email.utils.html @@ -5,13 +5,13 @@ - email.utils:雜項工具 — Python 3.12.3 說明文件 + email.utils:雜項工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -550,7 +551,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -603,7 +604,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ensurepip.html b/library/ensurepip.html index d145a6e375..eab6a84926 100644 --- a/library/ensurepip.html +++ b/library/ensurepip.html @@ -5,13 +5,13 @@ - ensurepip --- pip 安裝器的初始建置 (bootstrapping) — Python 3.12.3 說明文件 + ensurepip --- pip 安裝器的初始建置 (bootstrapping) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -422,7 +423,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -474,7 +475,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/enum.html b/library/enum.html index f44c44e480..733bb0ac81 100644 --- a/library/enum.html +++ b/library/enum.html @@ -5,13 +5,13 @@ - enum --- 對列舉的支援 — Python 3.12.3 說明文件 + enum --- 對列舉的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1389,7 +1390,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1441,7 +1442,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/errno.html b/library/errno.html index 3587c138ff..b99770a94e 100644 --- a/library/errno.html +++ b/library/errno.html @@ -5,13 +5,13 @@ - errno --- 標準 errno 系統符號 — Python 3.12.3 說明文件 + errno --- 標準 errno 系統符號 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1145,7 +1146,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1197,7 +1198,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/exceptions.html b/library/exceptions.html index 3a03811ddb..d4be6e6832 100644 --- a/library/exceptions.html +++ b/library/exceptions.html @@ -5,13 +5,13 @@ - 內建的例外 — Python 3.12.3 說明文件 + 內建的例外 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1225,7 +1226,8 @@

                OS exceptionsderive(excs)

                Returns an exception group with the same message, but which wraps the exceptions in excs.

                -

                This method is used by subgroup() and split(). A +

                This method is used by subgroup() and split(), which +are used in various contexts to break up an exception group. A subclass needs to override it in order to make subgroup() and split() return instances of the subclass rather than ExceptionGroup.

                @@ -1441,7 +1443,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1492,7 +1494,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/faulthandler.html b/library/faulthandler.html index 5285502467..45a81c415d 100644 --- a/library/faulthandler.html +++ b/library/faulthandler.html @@ -5,13 +5,13 @@ - faulthandler --- 傾印 Python 回溯 — Python 3.12.3 說明文件 + faulthandler --- 傾印 Python 回溯 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -534,7 +535,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -586,7 +587,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/fcntl.html b/library/fcntl.html index 0dbd5e1652..618902fbeb 100644 --- a/library/fcntl.html +++ b/library/fcntl.html @@ -5,13 +5,13 @@ - fcntl --- fcntl 和 ioctl 系統呼叫 — Python 3.12.3 說明文件 + fcntl --- fcntl 和 ioctl 系統呼叫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -520,7 +521,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -572,7 +573,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/filecmp.html b/library/filecmp.html index f0ca87f8a5..d3ddd620c6 100644 --- a/library/filecmp.html +++ b/library/filecmp.html @@ -5,13 +5,13 @@ - filecmp --- 檔案與目錄比較 — Python 3.12.3 說明文件 + filecmp --- 檔案與目錄比較 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -549,7 +550,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -601,7 +602,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/fileformats.html b/library/fileformats.html index fd5cccd675..7ac045e704 100644 --- a/library/fileformats.html +++ b/library/fileformats.html @@ -5,13 +5,13 @@ - 檔案格式 — Python 3.12.3 說明文件 + 檔案格式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -360,7 +361,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -411,7 +412,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/fileinput.html b/library/fileinput.html index 97c25b1156..a4c421e347 100644 --- a/library/fileinput.html +++ b/library/fileinput.html @@ -5,13 +5,13 @@ - fileinput --- 逐列疊代多個輸入串流 — Python 3.12.3 說明文件 + fileinput --- 逐列疊代多個輸入串流 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -530,7 +531,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -582,7 +583,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/filesys.html b/library/filesys.html index 6205243670..23ef7ed146 100644 --- a/library/filesys.html +++ b/library/filesys.html @@ -5,13 +5,13 @@ - 檔案與目錄存取 — Python 3.12.3 說明文件 + 檔案與目錄存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -268,7 +269,10 @@

                瀏覽

              • 實體路徑
              • os 模組裡的工具的對應關係
              • @@ -381,7 +385,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -432,7 +436,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/fnmatch.html b/library/fnmatch.html index c037032158..f4917b619b 100644 --- a/library/fnmatch.html +++ b/library/fnmatch.html @@ -5,13 +5,13 @@ - fnmatch --- Unix 檔案名稱模式比對 — Python 3.12.3 說明文件 + fnmatch --- Unix 檔案名稱模式比對 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -418,7 +419,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -470,7 +471,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/fractions.html b/library/fractions.html index 7d338668d0..97e3f22824 100644 --- a/library/fractions.html +++ b/library/fractions.html @@ -5,13 +5,13 @@ - fractions --- 有理數 — Python 3.12.3 說明文件 + fractions --- 有理數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -563,7 +564,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -615,7 +616,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/frameworks.html b/library/frameworks.html index cea1835d8c..cb2c1a2432 100644 --- a/library/frameworks.html +++ b/library/frameworks.html @@ -5,13 +5,13 @@ - 程式框架 — Python 3.12.3 說明文件 + 程式框架 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -405,7 +406,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -456,7 +457,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ftplib.html b/library/ftplib.html index aae39b0588..1d6e3c0eb3 100644 --- a/library/ftplib.html +++ b/library/ftplib.html @@ -5,13 +5,13 @@ - ftplib --- FTP 協定用戶端 — Python 3.12.3 說明文件 + ftplib --- FTP 協定用戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -805,7 +806,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -857,7 +858,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/functional.html b/library/functional.html index e4556aa703..3c2b6f9353 100644 --- a/library/functional.html +++ b/library/functional.html @@ -5,13 +5,13 @@ - 函式編程模組 — Python 3.12.3 說明文件 + 函式編程模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -340,7 +341,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -391,7 +392,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/functions.html b/library/functions.html index 9892eff7b3..0bb0775289 100644 --- a/library/functions.html +++ b/library/functions.html @@ -5,13 +5,13 @@ - 內建函式 — Python 3.12.3 說明文件 + 內建函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -481,7 +482,7 @@

                瀏覽

                It cannot be subclassed further. Its only instances are False and True (see Boolean 型別 - bool).

                -

                在 3.7 版的變更: The parameter is now positional-only.

                +

                在 3.7 版的變更: 現在為僅限位置參數。

                @@ -609,7 +610,7 @@

                瀏覽

                class complex(real=0, imag=0)

                Convert a single string or number to a complex number, or create a complex number from real and imaginary parts.

                -

                Examples:

                +

                例如:

                >>> complex('+1.23')
                 (1.23+0j)
                 >>> complex('-4.5j')
                @@ -835,8 +836,8 @@ 

                瀏覽

                class float(number=0.0, /)
                class float(string, /)
                -

                Return a floating point number constructed from a number or a string.

                -

                Examples:

                +

                回傳從數字或字串生成的浮點數。

                +

                例如:

                >>> float('+1.23')
                 1.23
                 >>> float('   -12345\n')
                @@ -849,14 +850,7 @@ 

                瀏覽

                -inf
                -

                If the argument is a string, it should contain a decimal number, optionally -preceded by a sign, and optionally embedded in whitespace. The optional -sign may be '+' or '-'; a '+' sign has no effect on the value -produced. The argument may also be a string representing a NaN -(not-a-number), or positive or negative infinity. -More precisely, the input must conform to the floatvalue -production rule in the following grammar, after leading and trailing -whitespace characters are removed:

                +

                如果引數是字串,則它必須是包含十進位制數字的字串,字串前面可以有符號,之前也可以有空格。選擇性的符號有 '+''-''+' 對建立的值沒有影響。引數也可以是 NaN(非數字)或正負無窮大的字串。確切地說,除去首尾的空格後,輸入必須遵循以下語法中 floatvalue 的生成規則:

                 sign          ::=  "+" | "-"
                 infinity      ::=  "Infinity" | "inf"
                @@ -878,7 +872,7 @@ 

                瀏覽

                在 3.6 版的變更: 可以使用底線將程式碼文字中的數字進行分組。

                -

                在 3.7 版的變更: The parameter is now positional-only.

                +

                在 3.7 版的變更: 現在為僅限位置參數。

                在 3.8 版的變更: Falls back to __index__() if __float__() is not defined.

                @@ -1017,7 +1011,7 @@

                瀏覽

                class int(string, /, base=10)

                Return an integer object constructed from a number or a string, or return 0 if no arguments are given.

                -

                Examples:

                +

                例如:

                >>> int(123.45)
                 123
                 >>> int('123')
                @@ -1037,11 +1031,7 @@ 

                瀏覽

                it returns x.__index__(). If the argument defines __trunc__(), it returns x.__trunc__(). For floating point numbers, this truncates towards zero.

                -

                If the argument is not a number or if base is given, then it must be a string, -bytes, or bytearray instance representing an integer -in radix base. Optionally, the string can be preceded by + or - -(with no space in between), have leading zeros, be surrounded by whitespace, -and have single underscores interspersed between digits.

                +

                如果引數不是數字或如果有給定 base,則它必須是個字串、bytesbytearray 實例,表示基數 (radix) base 中的整數。可選地,字串之前可以有 +-(中間沒有空格)、可有個前導的零、也可被空格包圍、或在數字間有單一底線。

                一個 n 進制的整數字串,包含各個代表 0 到 n-1 的數字,0–9 可以用任何 Unicode 十進制數字表示,10–35 可以用 az(或 AZ)表示。預設的 base 是 10。允許的進位制有 0、2–36。2、8、16 進位制的字串可以在程式碼中用 0b/0B0o/0O0x/0X 前綴來表示,如同程式碼中的整數文字。進位制為 0 的字串將以和程式碼整數字面值 (integer literal in code) 類似的方式來直譯,最後由前綴決定的結果會是 2、8、10、16 進制中的一個,所以 int('010', 0) 是非法的,但 int('010')int('010', 8) 是有效的。

                整數型別定義請參閱 數值型別 --- int、float、complex

                @@ -1051,7 +1041,7 @@

                瀏覽

                在 3.6 版的變更: 可以使用底線將程式碼文字中的數字進行分組。

                -

                在 3.7 版的變更: The first parameter is now positional-only.

                +

                在 3.7 版的變更: 第一個參數為僅限位置參數。

                在 3.8 版的變更: Falls back to __index__() if __int__() is not defined.

                @@ -1153,7 +1143,7 @@

                瀏覽

                在 3.4 版的變更: 新增 default 僅限關鍵字參數。

                -

                在 3.8 版的變更: The key can be None.

                +

                在 3.8 版的變更: key 可以為 None

                @@ -1178,7 +1168,7 @@

                瀏覽

                在 3.4 版的變更: 新增 default 僅限關鍵字參數。

                -

                在 3.8 版的變更: The key can be None.

                +

                在 3.8 版的變更: key 可以為 None

                @@ -1430,7 +1420,9 @@

                瀏覽

                returns 100, but pow(10, -2) returns 0.01. For a negative base of type int or float and a non-integral exponent, a complex result is delivered. For example, pow(-9, 0.5) returns a value close -to 3j.

                +to 3j. Whereas, for a negative base of type int or float +with an integral exponent, a float result is delivered. For example, +pow(-9, 2.0) returns 81.0.

                For int operands base and exp, if mod is present, mod must also be of integer type and mod must be nonzero. If mod is present and exp is negative, base must be relatively prime to mod. In that case, @@ -2153,7 +2145,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2204,7 +2196,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/functools.html b/library/functools.html index 7b7953c87f..a07bb2fe76 100644 --- a/library/functools.html +++ b/library/functools.html @@ -5,13 +5,13 @@ - functools --- Higher-order functions and operations on callable objects — Python 3.12.3 說明文件 + functools --- Higher-order functions and operations on callable objects — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1049,7 +1050,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1101,7 +1102,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/gc.html b/library/gc.html index b85281ce9f..06c5d8cd62 100644 --- a/library/gc.html +++ b/library/gc.html @@ -5,13 +5,13 @@ - gc --- 垃圾回收器介面 (Garbage Collector interface) — Python 3.12.3 說明文件 + gc --- 垃圾回收器介面 (Garbage Collector interface) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -573,7 +574,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -625,7 +626,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/getopt.html b/library/getopt.html index fd00a9b325..0bdeee8cc2 100644 --- a/library/getopt.html +++ b/library/getopt.html @@ -5,13 +5,13 @@ - getopt --- 用於命令列選項的 C 風格剖析器 — Python 3.12.3 說明文件 + getopt --- 用於命令列選項的 C 風格剖析器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -476,7 +477,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -528,7 +529,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/getpass.html b/library/getpass.html index 582663ca2c..40f1802b08 100644 --- a/library/getpass.html +++ b/library/getpass.html @@ -5,13 +5,13 @@ - getpass --- 可攜式密碼輸入工具 — Python 3.12.3 說明文件 + getpass --- 可攜式密碼輸入工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -352,7 +353,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -404,7 +405,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/gettext.html b/library/gettext.html index 8211b02217..2f71d3296b 100644 --- a/library/gettext.html +++ b/library/gettext.html @@ -5,13 +5,13 @@ - gettext --- 多語言國際化服務 — Python 3.12.3 說明文件 + gettext --- 多語言國際化服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -244,7 +245,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -992,7 +993,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1044,7 +1045,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/glob.html b/library/glob.html index ad05bd8cb6..0626215ad4 100644 --- a/library/glob.html +++ b/library/glob.html @@ -5,13 +5,13 @@ - glob --- Unix 風格的路徑名稱模式擴展 — Python 3.12.3 說明文件 + glob --- Unix 風格的路徑名稱模式擴展 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -259,7 +260,7 @@

                瀏覽

                原始碼:Lib/glob.py


                glob 模組根據 Unix shell 使用的規則查找與指定模式匹配的所有路徑名稱,結果以任意順序回傳。沒有波浪號 (tilde) 擴展,但是 *? 和用 [] 表示的字元範圍將被正確匹配。這是透過同時使用 os.scandir()fnmatch.fnmatch() 函式來完成的,而沒有實際調用 subshell。

                -

                請注意,以點 (.) 開頭的檔案只能與同樣以點開頭的模式匹配,這與 fnmatch.fnmatch()pathlib.Path.glob() 不同。 (對於波浪號和 shell 變數擴展,請使用 os.path.expanduser()os.path.expandvars()。)

                +

                請注意,以點 (.) 開頭的檔案只能與同樣以點開頭的模式匹配,這與 fnmatch.fnmatch()pathlib.Path.glob() 不同。(對於波浪號和 shell 變數擴展,請使用 os.path.expanduser()os.path.expandvars()。)

                對於文本 (literal) 匹配,將元字元 (meta-character) 括在方括號中。例如,'[?]' 會匹配 '?' 字元。

                也參考

                @@ -419,7 +420,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -471,7 +472,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/graphlib.html b/library/graphlib.html index 4f41a17722..11e4a250d6 100644 --- a/library/graphlib.html +++ b/library/graphlib.html @@ -5,13 +5,13 @@ - graphlib —-- 使用類圖 (graph-like) 結構進行操作的功能 — Python 3.12.3 說明文件 + graphlib —-- 使用類圖 (graph-like) 結構進行操作的功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -478,7 +479,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -530,7 +531,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/grp.html b/library/grp.html index 86956f0248..b837747c68 100644 --- a/library/grp.html +++ b/library/grp.html @@ -5,13 +5,13 @@ - grp --- 群組資料庫 — Python 3.12.3 說明文件 + grp --- 群組資料庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -396,7 +397,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -448,7 +449,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/gzip.html b/library/gzip.html index e0c7ab7860..7e0ca9b5fe 100644 --- a/library/gzip.html +++ b/library/gzip.html @@ -5,13 +5,13 @@ - gzip --- gzip 檔案的支援 — Python 3.12.3 說明文件 + gzip --- gzip 檔案的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -635,7 +636,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -687,7 +688,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/hashlib.html b/library/hashlib.html index 65edc4096d..05bbde73e5 100644 --- a/library/hashlib.html +++ b/library/hashlib.html @@ -5,13 +5,13 @@ - hashlib --- 安全雜湊與訊息摘要 — Python 3.12.3 說明文件 + hashlib --- 安全雜湊與訊息摘要 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -251,7 +252,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1221,7 +1222,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1273,7 +1274,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/heapq.html b/library/heapq.html index f77bc64e25..049033c581 100644 --- a/library/heapq.html +++ b/library/heapq.html @@ -5,13 +5,13 @@ - heapq --- 堆積佇列 (heap queue) 演算法 — Python 3.12.3 說明文件 + heapq --- 堆積佇列 (heap queue) 演算法 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -519,7 +520,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -571,7 +572,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/hmac.html b/library/hmac.html index 3b3709b38f..7f8260c229 100644 --- a/library/hmac.html +++ b/library/hmac.html @@ -5,13 +5,13 @@ - hmac --- 基於金鑰雜湊的訊息驗證 — Python 3.12.3 說明文件 + hmac --- 基於金鑰雜湊的訊息驗證 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -433,7 +434,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -485,7 +486,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/html.entities.html b/library/html.entities.html index 729d410e24..d5d6811184 100644 --- a/library/html.entities.html +++ b/library/html.entities.html @@ -5,13 +5,13 @@ - html.entities --- HTML 一般實體的定義 — Python 3.12.3 說明文件 + html.entities --- HTML 一般實體的定義 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -357,7 +358,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -409,7 +410,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/html.html b/library/html.html index fb89e983de..df2e8a5183 100644 --- a/library/html.html +++ b/library/html.html @@ -5,13 +5,13 @@ - html --- 超連結標記語言 (HTML) 支援 — Python 3.12.3 說明文件 + html --- 超連結標記語言 (HTML) 支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -347,7 +348,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -399,7 +400,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/html.parser.html b/library/html.parser.html index 9447cd4526..4099bb1c8e 100644 --- a/library/html.parser.html +++ b/library/html.parser.html @@ -5,13 +5,13 @@ - html.parser --- 簡單的 HTML 和 XHTML 剖析器 — Python 3.12.3 說明文件 + html.parser --- 簡單的 HTML 和 XHTML 剖析器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -613,7 +614,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -665,7 +666,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/http.client.html b/library/http.client.html index bc37030467..a547213cd4 100644 --- a/library/http.client.html +++ b/library/http.client.html @@ -5,13 +5,13 @@ - http.client --- HTTP 協定用戶端 — Python 3.12.3 說明文件 + http.client --- HTTP 協定用戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1031,7 +1032,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1083,7 +1084,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/http.cookiejar.html b/library/http.cookiejar.html index 0e9fe6ecf9..a847c30d86 100644 --- a/library/http.cookiejar.html +++ b/library/http.cookiejar.html @@ -5,13 +5,13 @@ - http.cookiejar --- HTTP 客戶端的 Cookie 處理 — Python 3.12.3 說明文件 + http.cookiejar --- HTTP 客戶端的 Cookie 處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1101,7 +1102,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1153,7 +1154,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/http.cookies.html b/library/http.cookies.html index 9c0a6b6e9b..9528bcce66 100644 --- a/library/http.cookies.html +++ b/library/http.cookies.html @@ -5,13 +5,13 @@ - http.cookies --- HTTP 狀態管理 — Python 3.12.3 說明文件 + http.cookies --- HTTP 狀態管理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -640,7 +641,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -692,7 +693,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/http.html b/library/http.html index cc64bb189f..258340397e 100644 --- a/library/http.html +++ b/library/http.html @@ -5,13 +5,13 @@ - http --- HTTP 模組 — Python 3.12.3 說明文件 + http --- HTTP 模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -780,7 +781,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -832,7 +833,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/http.server.html b/library/http.server.html index 7e2b681778..b1d56940c0 100644 --- a/library/http.server.html +++ b/library/http.server.html @@ -5,13 +5,13 @@ - http.server — HTTP 伺服器 — Python 3.12.3 說明文件 + http.server — HTTP 伺服器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -920,7 +921,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -972,7 +973,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/i18n.html b/library/i18n.html index 3e1614084e..1df15ca76d 100644 --- a/library/i18n.html +++ b/library/i18n.html @@ -5,13 +5,13 @@ - 國際化 — Python 3.12.3 說明文件 + 國際化 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -353,7 +354,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -404,7 +405,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/idle.html b/library/idle.html index 8a904a5cc7..4fd437b016 100644 --- a/library/idle.html +++ b/library/idle.html @@ -5,13 +5,13 @@ - IDLE — Python 3.12.3 說明文件 + IDLE — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -270,7 +271,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1222,7 +1223,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1274,7 +1275,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/imaplib.html b/library/imaplib.html index 5ff543e5d6..529cc64f59 100644 --- a/library/imaplib.html +++ b/library/imaplib.html @@ -5,13 +5,13 @@ - imaplib --- IMAP4 協定客戶端 — Python 3.12.3 說明文件 + imaplib --- IMAP4 協定客戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -994,7 +995,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1046,7 +1047,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/imghdr.html b/library/imghdr.html index 9d6d9b7ac3..dcd3316c0b 100644 --- a/library/imghdr.html +++ b/library/imghdr.html @@ -5,13 +5,13 @@ - imghdr --- 推測圖片種類 — Python 3.12.3 說明文件 + imghdr --- 推測圖片種類 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -410,7 +411,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -462,7 +463,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/importlib.html b/library/importlib.html index 65135e0bb4..4b702ede5f 100644 --- a/library/importlib.html +++ b/library/importlib.html @@ -5,13 +5,13 @@ - importlib --- import 的實作 — Python 3.12.3 說明文件 + importlib --- import 的實作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2166,7 +2167,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2218,7 +2219,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/importlib.metadata.html b/library/importlib.metadata.html index 4e891c0fbf..99196384c1 100644 --- a/library/importlib.metadata.html +++ b/library/importlib.metadata.html @@ -5,13 +5,13 @@ - importlib.metadata -- 存取套件的元資料 — Python 3.12.3 說明文件 + importlib.metadata -- 存取套件的元資料 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -241,7 +242,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -705,7 +706,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -757,7 +758,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/importlib.resources.abc.html b/library/importlib.resources.abc.html index 8a6458cbfc..a1154544f2 100644 --- a/library/importlib.resources.abc.html +++ b/library/importlib.resources.abc.html @@ -5,13 +5,13 @@ - importlib.resources.abc -- 資源的抽象基底類別 — Python 3.12.3 說明文件 + importlib.resources.abc -- 資源的抽象基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -508,7 +509,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -560,7 +561,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/importlib.resources.html b/library/importlib.resources.html index e941bf1c1e..b69e70e8b3 100644 --- a/library/importlib.resources.html +++ b/library/importlib.resources.html @@ -5,13 +5,13 @@ - importlib.resources -- Package resource reading, opening and access — Python 3.12.3 說明文件 + importlib.resources -- Package resource reading, opening and access — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -584,7 +585,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -636,7 +637,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/index.html b/library/index.html index 9609466c89..85a703465f 100644 --- a/library/index.html +++ b/library/index.html @@ -5,13 +5,13 @@ - Python 標準函式庫 (Standard Library) — Python 3.12.3 說明文件 + Python 標準函式庫 (Standard Library) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -711,7 +712,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -761,7 +762,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/inspect.html b/library/inspect.html index d79f3ee6c0..754ba6292c 100644 --- a/library/inspect.html +++ b/library/inspect.html @@ -5,13 +5,13 @@ - inspect --- 檢視活動物件 — Python 3.12.3 說明文件 + inspect --- 檢視活動物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2371,7 +2372,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2423,7 +2424,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/internet.html b/library/internet.html index 1113bb1b22..acf21c6566 100644 --- a/library/internet.html +++ b/library/internet.html @@ -5,13 +5,13 @@ - 網路協定 (Internet protocols) 及支援 — Python 3.12.3 說明文件 + 網路協定 (Internet protocols) 及支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -510,7 +511,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -561,7 +562,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/intro.html b/library/intro.html index 6cb0a7bbf5..87ff875eb8 100644 --- a/library/intro.html +++ b/library/intro.html @@ -5,13 +5,13 @@ - 簡介 — Python 3.12.3 說明文件 + 簡介 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -403,7 +404,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -454,7 +455,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/io.html b/library/io.html index f97cf20f16..04695039aa 100644 --- a/library/io.html +++ b/library/io.html @@ -5,13 +5,13 @@ - io — 處理資料串流的核心工具 — Python 3.12.3 說明文件 + io — 處理資料串流的核心工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -253,7 +254,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1387,7 +1388,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1439,7 +1440,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ipaddress.html b/library/ipaddress.html index b510db7faf..340703cef5 100644 --- a/library/ipaddress.html +++ b/library/ipaddress.html @@ -5,13 +5,13 @@ - ipaddress --- IPv4/IPv6 操作函式庫 — Python 3.12.3 說明文件 + ipaddress --- IPv4/IPv6 操作函式庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -259,7 +260,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1688,7 +1689,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1740,7 +1741,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ipc.html b/library/ipc.html index 9ce0cb9b6e..d80c1cb8db 100644 --- a/library/ipc.html +++ b/library/ipc.html @@ -5,13 +5,13 @@ - Networking and Interprocess Communication — Python 3.12.3 說明文件 + Networking and Interprocess Communication — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -336,7 +337,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -387,7 +388,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/itertools.html b/library/itertools.html index 143066b525..f1d86f503d 100644 --- a/library/itertools.html +++ b/library/itertools.html @@ -5,13 +5,13 @@ - itertools --- 建立產生高效率迴圈之疊代器的函式 — Python 3.12.3 說明文件 + itertools --- 建立產生高效率迴圈之疊代器的函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -497,7 +498,7 @@

                瀏覽

                Added in version 3.2.

                -

                在 3.3 版的變更: Added the optional function parameter.

                +

                在 3.3 版的變更: 新增選用的 function 參數。

                在 3.8 版的變更: 新增選用的 initial 參數。

                @@ -1474,7 +1475,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1526,7 +1527,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/json.html b/library/json.html index 300ac68d0c..922c8624a4 100644 --- a/library/json.html +++ b/library/json.html @@ -5,13 +5,13 @@ - json --- JSON 編碼器與解碼器 — Python 3.12.3 說明文件 + json --- JSON 編碼器與解碼器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1030,7 +1031,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1082,7 +1083,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/keyword.html b/library/keyword.html index b2548d0487..4e0aa6d248 100644 --- a/library/keyword.html +++ b/library/keyword.html @@ -5,13 +5,13 @@ - keyword --- 檢驗 Python 關鍵字 — Python 3.12.3 說明文件 + keyword --- 檢驗 Python 關鍵字 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -353,7 +354,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -405,7 +406,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/language.html b/library/language.html index 6938656bf4..86530177ac 100644 --- a/library/language.html +++ b/library/language.html @@ -5,13 +5,13 @@ - Python 語言服務 — Python 3.12.3 說明文件 + Python 語言服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -398,7 +399,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -449,7 +450,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/linecache.html b/library/linecache.html index f02026665a..f703200faa 100644 --- a/library/linecache.html +++ b/library/linecache.html @@ -5,13 +5,13 @@ - linecache --- 隨機存取文字列 — Python 3.12.3 說明文件 + linecache --- 隨機存取文字列 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -378,7 +379,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -430,7 +431,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/locale.html b/library/locale.html index 3ce64b4501..3b1da1c758 100644 --- a/library/locale.html +++ b/library/locale.html @@ -5,13 +5,13 @@ - locale --- 國際化服務 — Python 3.12.3 說明文件 + locale --- 國際化服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1118,7 +1119,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1170,7 +1171,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/logging.config.html b/library/logging.config.html index 5726b5358f..12dd81cc0d 100644 --- a/library/logging.config.html +++ b/library/logging.config.html @@ -5,13 +5,13 @@ - logging.config --- 日誌記錄配置 — Python 3.12.3 說明文件 + logging.config --- 日誌記錄配置 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1258,7 +1259,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1310,7 +1311,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/logging.handlers.html b/library/logging.handlers.html index 0e841d0a77..f74ed4e23b 100644 --- a/library/logging.handlers.html +++ b/library/logging.handlers.html @@ -5,13 +5,13 @@ - logging.handlers --- 日誌紀錄處理器 — Python 3.12.3 說明文件 + logging.handlers --- 日誌紀錄處理器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -244,7 +245,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1667,7 +1668,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1719,7 +1720,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/logging.html b/library/logging.html index 3791fa5dd1..0a854bb5e5 100644 --- a/library/logging.html +++ b/library/logging.html @@ -5,13 +5,13 @@ - logging --- Python 的日誌記錄工具 — Python 3.12.3 說明文件 + logging --- Python 的日誌記錄工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2061,7 +2062,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2113,7 +2114,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/lzma.html b/library/lzma.html index db65ac3c7e..4fc79642b2 100644 --- a/library/lzma.html +++ b/library/lzma.html @@ -5,13 +5,13 @@ - lzma --- 使用 LZMA 演算法進行壓縮 — Python 3.12.3 說明文件 + lzma --- 使用 LZMA 演算法進行壓縮 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -773,7 +774,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -825,7 +826,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/mailbox.html b/library/mailbox.html index a44c94d447..6b33ac8304 100644 --- a/library/mailbox.html +++ b/library/mailbox.html @@ -5,13 +5,13 @@ - mailbox --- 以各種格式操作郵件信箱 — Python 3.12.3 說明文件 + mailbox --- 以各種格式操作郵件信箱 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -246,7 +247,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2207,7 +2208,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2259,7 +2260,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/mailcap.html b/library/mailcap.html index b2c0ffcd81..4a82ae18af 100644 --- a/library/mailcap.html +++ b/library/mailcap.html @@ -5,13 +5,13 @@ - mailcap --- Mailcap 檔案處理 — Python 3.12.3 說明文件 + mailcap --- Mailcap 檔案處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -399,7 +400,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -451,7 +452,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/markup.html b/library/markup.html index c69a4548b1..42e9f2d323 100644 --- a/library/markup.html +++ b/library/markup.html @@ -5,13 +5,13 @@ - Structured Markup Processing Tools — Python 3.12.3 說明文件 + Structured Markup Processing Tools — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -441,7 +442,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -492,7 +493,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/marshal.html b/library/marshal.html index 6767aa85c8..d0a105e185 100644 --- a/library/marshal.html +++ b/library/marshal.html @@ -5,13 +5,13 @@ - marshal --- 内部 Python 物件序列化 — Python 3.12.3 說明文件 + marshal --- 内部 Python 物件序列化 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -385,7 +386,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -437,7 +438,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/math.html b/library/math.html index bbe803c9da..0b6e59910f 100644 --- a/library/math.html +++ b/library/math.html @@ -5,13 +5,13 @@ - math --- 數學函式 — Python 3.12.3 說明文件 + math --- 數學函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1032,7 +1033,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1084,7 +1085,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/mimetypes.html b/library/mimetypes.html index dc74b8d17c..8570454d5e 100644 --- a/library/mimetypes.html +++ b/library/mimetypes.html @@ -5,13 +5,13 @@ - mimetypes --- 將檔案名稱對映到 MIME 類型 — Python 3.12.3 說明文件 + mimetypes --- 將檔案名稱對映到 MIME 類型 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -602,7 +603,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -654,7 +655,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/mm.html b/library/mm.html index a302f34a22..2bf98161c7 100644 --- a/library/mm.html +++ b/library/mm.html @@ -5,13 +5,13 @@ - 多媒體服務 — Python 3.12.3 說明文件 + 多媒體服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -330,7 +331,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/mmap.html b/library/mmap.html index f7b0859dc7..3d460b6d92 100644 --- a/library/mmap.html +++ b/library/mmap.html @@ -5,13 +5,13 @@ - mmap --- 記憶體映射檔案的支援 — Python 3.12.3 說明文件 + mmap --- 記憶體映射檔案的支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -763,7 +764,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -815,7 +816,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/modulefinder.html b/library/modulefinder.html index f94bc7e6ce..5c2bc00965 100644 --- a/library/modulefinder.html +++ b/library/modulefinder.html @@ -5,13 +5,13 @@ - modulefinder --- 搜尋腳本所使用的模組 — Python 3.12.3 說明文件 + modulefinder --- 搜尋腳本所使用的模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -446,7 +447,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -498,7 +499,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/modules.html b/library/modules.html index f70d1065e2..aed4690118 100644 --- a/library/modules.html +++ b/library/modules.html @@ -5,13 +5,13 @@ - 引入模組 — Python 3.12.3 說明文件 + 引入模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -432,7 +433,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/msilib.html b/library/msilib.html index ccfda2c21e..acfa4e11b2 100644 --- a/library/msilib.html +++ b/library/msilib.html @@ -5,13 +5,13 @@ - msilib --- 讀寫 Microsoft Installer 檔案 — Python 3.12.3 說明文件 + msilib --- 讀寫 Microsoft Installer 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -920,7 +921,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -972,7 +973,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/msvcrt.html b/library/msvcrt.html index e3bfea649f..8c37660e61 100644 --- a/library/msvcrt.html +++ b/library/msvcrt.html @@ -5,13 +5,13 @@ - msvcrt --- MS VC++ runtime 提供的有用例程 — Python 3.12.3 說明文件 + msvcrt --- MS VC++ runtime 提供的有用例程 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -517,7 +518,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -569,7 +570,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/multiprocessing.html b/library/multiprocessing.html index a1c05bc49f..28c7c5e884 100644 --- a/library/multiprocessing.html +++ b/library/multiprocessing.html @@ -5,13 +5,13 @@ - multiprocessing --- 以行程為基礎的平行性 — Python 3.12.3 說明文件 + multiprocessing --- 以行程為基礎的平行性 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -272,7 +273,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3763,7 +3764,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3815,7 +3816,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/multiprocessing.shared_memory.html b/library/multiprocessing.shared_memory.html index 7969ba3bd7..ca60108407 100644 --- a/library/multiprocessing.shared_memory.html +++ b/library/multiprocessing.shared_memory.html @@ -5,13 +5,13 @@ - multiprocessing.shared_memory --- 對於共享記憶體的跨行程直接存取 — Python 3.12.3 說明文件 + multiprocessing.shared_memory --- 對於共享記憶體的跨行程直接存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -621,7 +622,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -673,7 +674,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/netdata.html b/library/netdata.html index 3d6f256feb..ab3262bbd4 100644 --- a/library/netdata.html +++ b/library/netdata.html @@ -5,13 +5,13 @@ - 網際網路資料處理 — Python 3.12.3 說明文件 + 網際網路資料處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -399,7 +400,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -450,7 +451,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/netrc.html b/library/netrc.html index 62bf5a6dc0..693959a558 100644 --- a/library/netrc.html +++ b/library/netrc.html @@ -5,13 +5,13 @@ - netrc --- netrc 檔案處理 — Python 3.12.3 說明文件 + netrc --- netrc 檔案處理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -411,7 +412,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -463,7 +464,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/nis.html b/library/nis.html index 1df9c46b90..445473c8de 100644 --- a/library/nis.html +++ b/library/nis.html @@ -5,13 +5,13 @@ - nis --- Sun NIS (Yellow Pages) 介面 — Python 3.12.3 說明文件 + nis --- Sun NIS (Yellow Pages) 介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -376,7 +377,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -428,7 +429,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/nntplib.html b/library/nntplib.html index ad370fb94e..9b8f978292 100644 --- a/library/nntplib.html +++ b/library/nntplib.html @@ -5,13 +5,13 @@ - nntplib --- NNTP 協定客戶端 — Python 3.12.3 說明文件 + nntplib --- NNTP 協定客戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -935,7 +936,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -987,7 +988,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/numbers.html b/library/numbers.html index 8c6f7473b3..123522ab2c 100644 --- a/library/numbers.html +++ b/library/numbers.html @@ -5,13 +5,13 @@ - numbers --- 數值的抽象基底類別 — Python 3.12.3 說明文件 + numbers --- 數值的抽象基底類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -172,7 +173,7 @@

                目錄

                -
                - -

                如果該路徑指向一個符號連結則回傳 True,否則回傳 False

                -

                如果該路徑不存在也會回傳 False;其他錯誤(例如權限錯誤)則會傳遞出來。

                -
                -
                Path.is_socket()
                @@ -1220,6 +1135,113 @@

                方法

                如果路徑不存在或者是一個斷掉的符號連結則也會回傳 False;其他錯誤(例如權限錯誤)則會傳遞出來。

                +
                +
                +Path.samefile(other_path)
                +

                回傳此路徑是否指向與 other_path 相同的檔案,other_path 可以是路徑 (Path) 物件或字串。其語義類似於 os.path.samefile()os.path.samestat()

                +

                若任何一個檔案因為某些原因無法存取,則引發 OSError

                +
                >>> p = Path('spam')
                +>>> q = Path('eggs')
                +>>> p.samefile(q)
                +False
                +>>> p.samefile('spam')
                +True
                +
                +
                +
                +

                Added in version 3.5.

                +
                +
                + +
                +
                +

                Reading and writing files

                +
                +
                +Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None)
                +

                開啟該路徑指向的檔案,像內建的 open() 函式做的一樣:

                +
                >>> p = Path('setup.py')
                +>>> with p.open() as f:
                +...     f.readline()
                +...
                +'#!/usr/bin/env python3\n'
                +
                +
                +
                + +
                +
                +Path.read_text(encoding=None, errors=None)
                +

                將路徑指向的檔案的解碼內容以字串形式回傳:

                +
                >>> p = Path('my_text_file')
                +>>> p.write_text('Text file contents')
                +18
                +>>> p.read_text()
                +'Text file contents'
                +
                +
                +

                該檔案被打開並且隨後關閉。可選參數的含義與 open() 中的相同。

                +
                +

                Added in version 3.5.

                +
                +
                + +
                +
                +Path.read_bytes()
                +

                將路徑指向的檔案的二進位內容以一個位元組物件回傳:

                +
                >>> p = Path('my_binary_file')
                +>>> p.write_bytes(b'Binary file contents')
                +20
                +>>> p.read_bytes()
                +b'Binary file contents'
                +
                +
                +
                +

                Added in version 3.5.

                +
                +
                + +
                +
                +Path.write_text(data, encoding=None, errors=None, newline=None)
                +

                以文字模式開啟指向的檔案,將 data 寫到檔案,並關閉檔案:: :

                +
                >>> p = Path('my_text_file')
                +>>> p.write_text('Text file contents')
                +18
                +>>> p.read_text()
                +'Text file contents'
                +
                +
                +

                一個名稱相同的已存在檔案會被覆寫。可選參數和 open() 的參數有相同意義。

                +
                +

                Added in version 3.5.

                +
                +
                +

                在 3.10 版的變更: 新增 newline 參數。

                +
                +
                + +
                +
                +Path.write_bytes(data)
                +

                以位元組模式開啟指向的檔案,將 data 寫到檔案,並關閉檔案:: :

                +
                >>> p = Path('my_binary_file')
                +>>> p.write_bytes(b'Binary file contents')
                +20
                +>>> p.read_bytes()
                +b'Binary file contents'
                +
                +
                +

                一個名稱相同的已存在檔案會被覆寫。

                +
                +

                Added in version 3.5.

                +
                +
                + +
                +
                +

                讀取目錄

                Path.iterdir()
                @@ -1236,7 +1258,65 @@

                方法PosixPath('docs/Makefile') -

                子路徑會以任意順序被 yield,且不會包含特殊項目 '.''..'。如果一個檔案在建立這個疊代器之後加到該目錄或從目錄刪除,是否會包含這個檔案的路徑物件是不確定的。

                +

                子路徑會以任意順序被 yield,且不會包含特殊項目 '.''..'。如果一個檔案在建立這個疊代器之後加到該目錄或從目錄刪除,這個檔案的路徑物件是否會被包含是沒有明定的。

                +

                If the path is not a directory or otherwise inaccessible, OSError is +raised.

                +

                + +
                +
                +Path.glob(pattern, *, case_sensitive=None)
                +

                在該路徑表示的目錄裡,以 glob 方式比對所給定的相對 pattern,並 yield 所有比對到的檔案(任意類型):

                +
                >>> sorted(Path('.').glob('*.py'))
                +[PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')]
                +>>> sorted(Path('.').glob('*/*.py'))
                +[PosixPath('docs/conf.py')]
                +
                +
                +

                模式 (pattern) 和給 fnmatch 的一樣,加上 "**" 代表「目前目錄及所有遞迴的子目錄」。也就是說它能夠做遞迴的 glob 比對:

                +
                >>> sorted(Path('.').glob('**/*.py'))
                +[PosixPath('build/lib/pathlib.py'),
                + PosixPath('docs/conf.py'),
                + PosixPath('pathlib.py'),
                + PosixPath('setup.py'),
                + PosixPath('test_pathlib.py')]
                +
                +
                +

                此方法在頂層目錄上呼叫 Path.is_dir() 並傳遞引發的任何 OSError 例外。將會抑制在目錄對於 OSError 例外的後續掃描。

                +

                預設情況下,或者當 case_sensitive 僅限關鍵字引數被設定為 None 的時候,此方法會使用平台特定的大小寫規則來比對路徑;通常在 POSIX 上會區分大小寫,而在 Windows 上不區分大小寫。將 case_sensitive 設成 TrueFalse 會覆寫這個行為。

                +
                +

                備註

                +

                在很大的目錄樹裡使用 "**" 可能會耗費過多的時間。

                +
                +

                引發一個附帶引數 selfpattern稽核事件 pathlib.Path.glob

                +
                +

                在 3.11 版的變更: 如果 pattern 以路徑名稱組成的分隔符號(sepaltsep)作結尾則只會回傳目錄。

                +
                +
                +

                在 3.12 版的變更: 新增 case_sensitive 參數。

                +
                +
                + +
                +
                +Path.rglob(pattern, *, case_sensitive=None)
                +

                遞迴地 glob 給定的相對 pattern。這相當於在給定的相對 pattern 前面加上 "**/" 並呼叫 Path.glob(),其中 patterns 和給 fnmatch 的相同:

                +
                >>> sorted(Path().rglob("*.py"))
                +[PosixPath('build/lib/pathlib.py'),
                + PosixPath('docs/conf.py'),
                + PosixPath('pathlib.py'),
                + PosixPath('setup.py'),
                + PosixPath('test_pathlib.py')]
                +
                +
                +

                預設情況下,或者當 case_sensitive 僅限關鍵字引數被設定為 None 的時候,此方法會使用平台特定的大小寫規則來比對路徑;通常在 POSIX 上會區分大小寫,而在 Windows 上不區分大小寫。將 case_sensitive 設成 TrueFalse 會覆寫這個行為。

                +

                引發一個附帶引數 selfpattern稽核事件 pathlib.Path.rglob

                +
                +

                在 3.11 版的變更: 如果 pattern 以路徑名稱組成的分隔符號(sepaltsep)作結尾則只會回傳目錄。

                +
                +
                +

                在 3.12 版的變更: 新增 case_sensitive 參數。

                +
                @@ -1292,83 +1372,95 @@

                方法

                +
                +
                +

                其他方法

                -
                -Path.lchmod(mode)
                -

                類似 Path.chmod(),但如果該路徑指向一個符號連結,則符號連結的模式 (mode) 會被改變而不是其指向的目標。

                +
                +classmethod Path.cwd()
                +

                回傳一個代表目前目錄的新的路徑物件(像 os.getcwd() 回傳的一樣):

                +
                >>> Path.cwd()
                +PosixPath('/home/antoine/pathlib')
                +
                +
                -
                -Path.lstat()
                -

                類似 Path.stat(),但如果該路徑指向一個符號連結,則回傳符號連結的資訊而不是其指向的目標。

                +
                +classmethod Path.home()
                +

                回傳一個代表使用者家目錄的新的路徑物件(像以 ~ 構成的 os.path.expanduser() 的回傳一樣)。如果無法解析家目錄,會引發 RuntimeError

                +
                >>> Path.home()
                +PosixPath('/home/antoine')
                +
                +
                +
                +

                Added in version 3.5.

                +
                -
                -Path.mkdir(mode=0o777, parents=False, exist_ok=False)
                -

                在給定路徑下建立一個新的目錄。如果有給 mode 則會結合行程 (process) 的 umask 值來決定檔案模式與存取旗標 (access flag)。如果路徑已經存在,會引發 FileExistsError

                -

                如果 parents 是 true,則任何缺少的父路徑都會依需要被建立;它們不考慮 mode 而會以預設的權限來建立(模仿 POSIX 的 mkdir -p 指令)。

                -

                如果 parents 是 false(預設值),缺少的父路徑會引發 FileNotFoundError

                -

                如果 exist_ok 是 false(預設值),則當目標目錄已經存在的話會引發 FileExistsError

                -

                如果 exist_ok 是 true,只有當最後的路徑組成不是一個已存在的非目錄檔案,FileExistsError 例外會被忽略(與 POSIX 的 mkdir -p 指令行為相同)。

                +
                +Path.chmod(mode, *, follow_symlinks=True)
                +

                修改檔案模式 (file mode) 與權限,像 os.chmod() 一樣。

                +

                此方法通常會跟隨符號連結。一些 Unix 類型支援修改符號連結本身的權限;在這些平台上你可以加上引數 follow_symlinks=False 或使用 lchmod()

                +
                >>> p = Path('setup.py')
                +>>> p.stat().st_mode
                +33277
                +>>> p.chmod(0o444)
                +>>> p.stat().st_mode
                +33060
                +
                +
                -

                在 3.5 版的變更: 新增 exist_ok 參數。

                +

                在 3.10 版的變更: 新增 follow_symlinks 參數。

                -
                -Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None)
                -

                開啟該路徑指向的檔案,像內建的 open() 函式做的一樣:

                -
                >>> p = Path('setup.py')
                ->>> with p.open() as f:
                -...     f.readline()
                -...
                -'#!/usr/bin/env python3\n'
                +
                +Path.expanduser()
                +

                回傳一個展開 ~~user 構成的新路徑,像 os.path.expanduser() 回傳的一樣。如果無法解析家目錄,會引發 RuntimeError

                +
                >>> p = PosixPath('~/films/Monty Python')
                +>>> p.expanduser()
                +PosixPath('/home/eric/films/Monty Python')
                 
                +
                +

                Added in version 3.5.

                +
                -
                -Path.owner()
                -

                回傳擁有該檔案的用戶名稱。如果在系統資料庫中找不到該檔案的 uid,則會引發 KeyError

                +
                +Path.group()
                +

                回傳擁有該檔案的群組名稱。如果在系統資料庫裡找不到檔案的 gid 會引發 KeyError

                -
                -Path.read_bytes()
                -

                將路徑指向的檔案的二進位內容以一個位元組物件回傳:

                -
                >>> p = Path('my_binary_file')
                ->>> p.write_bytes(b'Binary file contents')
                -20
                ->>> p.read_bytes()
                -b'Binary file contents'
                -
                -
                -
                -

                Added in version 3.5.

                -
                +
                +Path.lchmod(mode)
                +

                類似 Path.chmod(),但如果該路徑指向一個符號連結,則符號連結的模式 (mode) 會被改變而不是其指向的目標。

                -
                -Path.read_text(encoding=None, errors=None)
                -

                將路徑指向的檔案的解碼內容以字串形式回傳:

                -
                >>> p = Path('my_text_file')
                ->>> p.write_text('Text file contents')
                -18
                ->>> p.read_text()
                -'Text file contents'
                -
                -
                -

                該檔案被打開並且隨後關閉。可選參數的含義與 open() 中的相同。

                -
                -

                Added in version 3.5.

                +
                +Path.mkdir(mode=0o777, parents=False, exist_ok=False)
                +

                在給定路徑下建立一個新的目錄。如果有給 mode 則會結合行程 (process) 的 umask 值來決定檔案模式與存取旗標 (access flag)。如果路徑已經存在,會引發 FileExistsError

                +

                如果 parents 是 true,則任何缺少的父路徑都會依需要被建立;它們不考慮 mode 而會以預設的權限來建立(模仿 POSIX 的 mkdir -p 指令)。

                +

                如果 parents 是 false(預設值),缺少的父路徑會引發 FileNotFoundError

                +

                如果 exist_ok 是 false(預設值),則當目標目錄已經存在的話會引發 FileExistsError

                +

                如果 exist_ok 是 true,只有當最後的路徑組成不是一個已存在的非目錄檔案,FileExistsError 例外會被忽略(與 POSIX 的 mkdir -p 指令行為相同)。

                +
                +

                在 3.5 版的變更: 新增 exist_ok 參數。

                +
                +
                +Path.owner()
                +

                回傳擁有該檔案的用戶名稱。如果在系統資料庫中找不到該檔案的 uid,則會引發 KeyError

                +
                +
                @@ -1451,52 +1543,12 @@

                方法

                -
                -
                -Path.rglob(pattern, *, case_sensitive=None)
                -

                遞迴地 glob 給定的相對 pattern。這相當於在給定的相對 pattern 前面加上 "**/" 並呼叫 Path.glob(),其中 patterns 和給 fnmatch 的相同:

                -
                >>> sorted(Path().rglob("*.py"))
                -[PosixPath('build/lib/pathlib.py'),
                - PosixPath('docs/conf.py'),
                - PosixPath('pathlib.py'),
                - PosixPath('setup.py'),
                - PosixPath('test_pathlib.py')]
                -
                -
                -

                預設情況下,或者當 case_sensitive 僅限關鍵字引數被設定為 None 的時候,此方法會使用平台特定的大小寫規則來比對路徑;通常在 POSIX 上會區分大小寫,而在 Windows 上不區分大小寫。將 case_sensitive 設成 TrueFalse 會覆寫這個行為。

                -

                引發一個附帶引數 selfpattern稽核事件 pathlib.Path.rglob

                -
                -

                在 3.11 版的變更: 如果 pattern 以路徑名稱組成的分隔符號(sepaltsep)作結尾則只會回傳目錄。

                -
                -
                -

                在 3.12 版的變更: 新增 case_sensitive 參數。

                -
                -
                -
                Path.rmdir()

                移除此目錄。該目錄必須為空。

                -
                -
                -Path.samefile(other_path)
                -

                回傳此路徑是否指向與 other_path 相同的檔案,other_path 可以是路徑 (Path) 物件或字串。其語義類似於 os.path.samefile()os.path.samestat()

                -

                若任何一個檔案因為某些原因無法存取,則引發 OSError

                -
                >>> p = Path('spam')
                ->>> q = Path('eggs')
                ->>> p.samefile(q)
                -False
                ->>> p.samefile('spam')
                -True
                -
                -
                -
                -

                Added in version 3.5.

                -
                -
                -
                @@ -1548,43 +1600,6 @@

                方法

                -
                -
                -Path.write_bytes(data)
                -

                以位元組模式開啟指向的檔案,將 data 寫到檔案,並關閉檔案:: :

                -
                >>> p = Path('my_binary_file')
                ->>> p.write_bytes(b'Binary file contents')
                -20
                ->>> p.read_bytes()
                -b'Binary file contents'
                -
                -
                -

                一個名稱相同的已存在檔案會被覆寫。

                -
                -

                Added in version 3.5.

                -
                -
                - -
                -
                -Path.write_text(data, encoding=None, errors=None, newline=None)
                -

                以文字模式開啟指向的檔案,將 data 寫到檔案,並關閉檔案:: :

                -
                >>> p = Path('my_text_file')
                ->>> p.write_text('Text file contents')
                -18
                ->>> p.read_text()
                -'Text file contents'
                -
                -
                -

                一個名稱相同的已存在檔案會被覆寫。可選參數和 open() 的參數有相同意義。

                -
                -

                Added in version 3.5.

                -
                -
                -

                在 3.10 版的變更: 新增 newline 參數。

                -
                -
                -
                @@ -1721,7 +1736,10 @@

                目錄

              • 實體路徑
              • os 模組裡的工具的對應關係
              • @@ -1785,7 +1803,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1837,7 +1855,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pdb.html b/library/pdb.html index 1c899e2e39..4f98631860 100644 --- a/library/pdb.html +++ b/library/pdb.html @@ -5,13 +5,13 @@ - pdb --- The Python Debugger — Python 3.12.3 說明文件 + pdb --- The Python Debugger — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1017,7 +1018,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1069,7 +1070,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/persistence.html b/library/persistence.html index dbbd2d071c..7423b4cecd 100644 --- a/library/persistence.html +++ b/library/persistence.html @@ -5,13 +5,13 @@ - 資料持久性 (Data Persistence) — Python 3.12.3 說明文件 + 資料持久性 (Data Persistence) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -414,7 +415,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -465,7 +466,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pickle.html b/library/pickle.html index c2be8e307d..bfee248c63 100644 --- a/library/pickle.html +++ b/library/pickle.html @@ -5,13 +5,13 @@ - pickle --- Python 物件序列化 — Python 3.12.3 說明文件 + pickle --- Python 物件序列化 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -252,7 +253,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1572,7 +1573,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1624,7 +1625,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pickletools.html b/library/pickletools.html index e2db2c8bda..d7228b2325 100644 --- a/library/pickletools.html +++ b/library/pickletools.html @@ -5,13 +5,13 @@ - pickletools --- pickle 開發者的工具 — Python 3.12.3 說明文件 + pickletools --- pickle 開發者的工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -429,7 +430,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -481,7 +482,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pipes.html b/library/pipes.html index edf5d26555..ff79ba5199 100644 --- a/library/pipes.html +++ b/library/pipes.html @@ -5,13 +5,13 @@ - pipes --- shell pipelines 介面 — Python 3.12.3 說明文件 + pipes --- shell pipelines 介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -429,7 +430,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -481,7 +482,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pkgutil.html b/library/pkgutil.html index 5c06385f0b..2a4d559cd0 100644 --- a/library/pkgutil.html +++ b/library/pkgutil.html @@ -5,13 +5,13 @@ - pkgutil --- Package extension utility — Python 3.12.3 說明文件 + pkgutil --- Package extension utility — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -551,7 +552,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -603,7 +604,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/platform.html b/library/platform.html index 18dbe53092..9046586c5a 100644 --- a/library/platform.html +++ b/library/platform.html @@ -5,13 +5,13 @@ - platform --- 對底層平臺識別資料的存取 — Python 3.12.3 說明文件 + platform --- 對底層平臺識別資料的存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -574,7 +575,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -626,7 +627,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/plistlib.html b/library/plistlib.html index 8ce194293e..269117fba1 100644 --- a/library/plistlib.html +++ b/library/plistlib.html @@ -5,13 +5,13 @@ - plistlib --- 產生和剖析 Apple .plist 檔案 — Python 3.12.3 說明文件 + plistlib --- 產生和剖析 Apple .plist 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -514,7 +515,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -566,7 +567,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/poplib.html b/library/poplib.html index 3f8842a61f..95bc6e2ad9 100644 --- a/library/poplib.html +++ b/library/poplib.html @@ -5,13 +5,13 @@ - poplib --- POP3 協定用戶端 — Python 3.12.3 說明文件 + poplib --- POP3 協定用戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -597,7 +598,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -649,7 +650,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/posix.html b/library/posix.html index 43efd682b8..f6fc068c5e 100644 --- a/library/posix.html +++ b/library/posix.html @@ -5,13 +5,13 @@ - posix --- 最常見的 POSIX 系統呼叫 — Python 3.12.3 說明文件 + posix --- 最常見的 POSIX 系統呼叫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -433,7 +434,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pprint.html b/library/pprint.html index b2d1f0a48c..16b8d5ad0f 100644 --- a/library/pprint.html +++ b/library/pprint.html @@ -5,13 +5,13 @@ - pprint --- 資料美化列印器 — Python 3.12.3 說明文件 + pprint --- 資料美化列印器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -741,7 +742,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -793,7 +794,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/profile.html b/library/profile.html index a648499d78..a9f922e304 100644 --- a/library/profile.html +++ b/library/profile.html @@ -5,13 +5,13 @@ - Python 的分析器 — Python 3.12.3 說明文件 + Python 的分析器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1035,7 +1036,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1087,7 +1088,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pty.html b/library/pty.html index ee6f5aaf54..b053f5e298 100644 --- a/library/pty.html +++ b/library/pty.html @@ -5,13 +5,13 @@ - pty --- 偽終端工具 — Python 3.12.3 說明文件 + pty --- 偽終端工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -448,7 +449,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -500,7 +501,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pwd.html b/library/pwd.html index 83e7ac07c0..38358992d2 100644 --- a/library/pwd.html +++ b/library/pwd.html @@ -5,13 +5,13 @@ - pwd --- 密碼資料庫 — Python 3.12.3 說明文件 + pwd --- 密碼資料庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -397,7 +398,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -449,7 +450,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/py_compile.html b/library/py_compile.html index d490d03631..53aa246eed 100644 --- a/library/py_compile.html +++ b/library/py_compile.html @@ -5,13 +5,13 @@ - py_compile — 編譯 Python 來源檔案 — Python 3.12.3 說明文件 + py_compile — 編譯 Python 來源檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -494,7 +495,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -546,7 +547,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pyclbr.html b/library/pyclbr.html index 22eaeff07e..b4554231a1 100644 --- a/library/pyclbr.html +++ b/library/pyclbr.html @@ -5,13 +5,13 @@ - pyclbr --- Python 模組瀏覽器支援 — Python 3.12.3 說明文件 + pyclbr --- Python 模組瀏覽器支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -522,7 +523,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -574,7 +575,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pydoc.html b/library/pydoc.html index 66eb3f87f8..24692082dc 100644 --- a/library/pydoc.html +++ b/library/pydoc.html @@ -5,13 +5,13 @@ - pydoc --- 文件產生器與線上幫助系統 — Python 3.12.3 說明文件 + pydoc --- 文件產生器與線上幫助系統 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -403,7 +404,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -455,7 +456,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/pyexpat.html b/library/pyexpat.html index e587f2cded..61ff63943a 100644 --- a/library/pyexpat.html +++ b/library/pyexpat.html @@ -5,13 +5,13 @@ - xml.parsers.expat --- 使用 Expat 進行快速 XML 剖析 — Python 3.12.3 說明文件 + xml.parsers.expat --- 使用 Expat 進行快速 XML 剖析 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1341,7 +1342,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1393,7 +1394,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/python.html b/library/python.html index a7900b643a..151d6ee4bb 100644 --- a/library/python.html +++ b/library/python.html @@ -5,13 +5,13 @@ - Python Runtime 服務 — Python 3.12.3 說明文件 + Python Runtime 服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -472,7 +473,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -523,7 +524,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/queue.html b/library/queue.html index 6e1102b526..fc91f3d651 100644 --- a/library/queue.html +++ b/library/queue.html @@ -5,13 +5,13 @@ - queue --- 同步佇列 (synchronized queue) 類別 — Python 3.12.3 說明文件 + queue --- 同步佇列 (synchronized queue) 類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -538,7 +539,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -590,7 +591,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/quopri.html b/library/quopri.html index 6ed2c2c879..902d57182c 100644 --- a/library/quopri.html +++ b/library/quopri.html @@ -5,13 +5,13 @@ - quopri --- 編碼和解碼 MIME 可列印字元資料 — Python 3.12.3 說明文件 + quopri --- 編碼和解碼 MIME 可列印字元資料 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -354,7 +355,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -406,7 +407,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/random.html b/library/random.html index d05a2acba0..d3f8bd6dae 100644 --- a/library/random.html +++ b/library/random.html @@ -5,13 +5,13 @@ - random --- 生成偽隨機數 — Python 3.12.3 說明文件 + random --- 生成偽隨機數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -864,7 +865,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -916,7 +917,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/re.html b/library/re.html index 1bbbd40b27..ac7dea9ad4 100644 --- a/library/re.html +++ b/library/re.html @@ -5,13 +5,13 @@ - re --- 正規表示式 (regular expression) 操作 — Python 3.12.3 說明文件 + re --- 正規表示式 (regular expression) 操作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -249,7 +250,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2194,7 +2195,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2246,7 +2247,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/readline.html b/library/readline.html index 8f14b40d68..bc8bb45340 100644 --- a/library/readline.html +++ b/library/readline.html @@ -5,13 +5,13 @@ - readline --- GNU readline 介面 — Python 3.12.3 說明文件 + readline --- GNU readline 介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -713,7 +714,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -765,7 +766,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/reprlib.html b/library/reprlib.html index 5e0bb0a56f..82e4c3eaaf 100644 --- a/library/reprlib.html +++ b/library/reprlib.html @@ -5,13 +5,13 @@ - reprlib --- repr() 的替代實作 — Python 3.12.3 說明文件 + reprlib --- repr() 的替代實作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -589,7 +590,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -641,7 +642,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/resource.html b/library/resource.html index f5d84455da..9a5803bfcf 100644 --- a/library/resource.html +++ b/library/resource.html @@ -5,13 +5,13 @@ - resource --- 資源使用資訊 — Python 3.12.3 說明文件 + resource --- 資源使用資訊 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -792,7 +793,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -844,7 +845,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/rlcompleter.html b/library/rlcompleter.html index 394b9e2c3b..df13a0370c 100644 --- a/library/rlcompleter.html +++ b/library/rlcompleter.html @@ -5,13 +5,13 @@ - rlcompleter --- GNU readline 的補全函式 — Python 3.12.3 說明文件 + rlcompleter --- GNU readline 的補全函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -370,7 +371,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -422,7 +423,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/runpy.html b/library/runpy.html index 715fa6c628..06db575473 100644 --- a/library/runpy.html +++ b/library/runpy.html @@ -5,13 +5,13 @@ - runpy --- 定位並執行 Python 模組 — Python 3.12.3 說明文件 + runpy --- 定位並執行 Python 模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -478,7 +479,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -530,7 +531,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sched.html b/library/sched.html index f969ae7acd..5851278560 100644 --- a/library/sched.html +++ b/library/sched.html @@ -5,13 +5,13 @@ - sched --- 事件排程器 — Python 3.12.3 說明文件 + sched --- 事件排程器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -472,7 +473,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -524,7 +525,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/secrets.html b/library/secrets.html index 227910efb4..165c0063a2 100644 --- a/library/secrets.html +++ b/library/secrets.html @@ -5,13 +5,13 @@ - secrets --- 產生用於管理機密的安全亂數 — Python 3.12.3 說明文件 + secrets --- 產生用於管理機密的安全亂數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -485,7 +486,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -537,7 +538,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/security_warnings.html b/library/security_warnings.html index 3988161fe4..7b122d8525 100644 --- a/library/security_warnings.html +++ b/library/security_warnings.html @@ -5,13 +5,13 @@ - 安全性注意事項 — Python 3.12.3 說明文件 + 安全性注意事項 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -337,7 +338,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -388,7 +389,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/select.html b/library/select.html index 74e3835340..d5badc0d10 100644 --- a/library/select.html +++ b/library/select.html @@ -5,13 +5,13 @@ - select --- 等待 I/O 完成 — Python 3.12.3 說明文件 + select --- 等待 I/O 完成 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1096,7 +1097,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1148,7 +1149,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/selectors.html b/library/selectors.html index fe99b0a01e..7dc8603ee1 100644 --- a/library/selectors.html +++ b/library/selectors.html @@ -5,13 +5,13 @@ - selectors --- 高階 I/O 多工 — Python 3.12.3 說明文件 + selectors --- 高階 I/O 多工 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -662,7 +663,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -714,7 +715,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/shelve.html b/library/shelve.html index ed7c58b43b..3cdfba380a 100644 --- a/library/shelve.html +++ b/library/shelve.html @@ -5,13 +5,13 @@ - shelve --- Python object persistence — Python 3.12.3 說明文件 + shelve --- Python object persistence — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -542,7 +543,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -594,7 +595,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/shlex.html b/library/shlex.html index 0d0433fbd7..1395e16cf9 100644 --- a/library/shlex.html +++ b/library/shlex.html @@ -5,13 +5,13 @@ - shlex --- 簡單的語法分析 — Python 3.12.3 說明文件 + shlex --- 簡單的語法分析 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -786,7 +787,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -838,7 +839,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/shutil.html b/library/shutil.html index 348cf2c76c..6c386430ab 100644 --- a/library/shutil.html +++ b/library/shutil.html @@ -5,13 +5,13 @@ - shutil — 高階檔案操作 — Python 3.12.3 說明文件 + shutil — 高階檔案操作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1154,7 +1155,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1206,7 +1207,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/signal.html b/library/signal.html index f7a3e4034b..4b8fdf7468 100644 --- a/library/signal.html +++ b/library/signal.html @@ -5,13 +5,13 @@ - signal --- 設定非同步事件的處理函式 — Python 3.12.3 說明文件 + signal --- 設定非同步事件的處理函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1215,7 +1216,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1267,7 +1268,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/site.html b/library/site.html index d152f620b5..ef9c1bee18 100644 --- a/library/site.html +++ b/library/site.html @@ -5,13 +5,13 @@ - site --- Site-specific configuration hook — Python 3.12.3 說明文件 + site --- Site-specific configuration hook — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -604,7 +605,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -656,7 +657,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/smtplib.html b/library/smtplib.html index aa1b12f0ce..c62ac7e0ba 100644 --- a/library/smtplib.html +++ b/library/smtplib.html @@ -5,13 +5,13 @@ - smtplib --- SMTP 協定用戶端 — Python 3.12.3 說明文件 + smtplib --- SMTP 協定用戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -909,7 +910,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -961,7 +962,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sndhdr.html b/library/sndhdr.html index b9e98eb0d3..89883ef9ae 100644 --- a/library/sndhdr.html +++ b/library/sndhdr.html @@ -5,13 +5,13 @@ - sndhdr --- 判定聲音檔案的型別 — Python 3.12.3 說明文件 + sndhdr --- 判定聲音檔案的型別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -406,7 +407,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -458,7 +459,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/socket.html b/library/socket.html index b598168542..427bfb8028 100644 --- a/library/socket.html +++ b/library/socket.html @@ -5,13 +5,13 @@ - socket --- 低階網路介面 — Python 3.12.3 說明文件 + socket --- 低階網路介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -246,7 +247,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2846,7 +2847,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2898,7 +2899,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/socketserver.html b/library/socketserver.html index 3e3ac6f1e1..2e574f9b76 100644 --- a/library/socketserver.html +++ b/library/socketserver.html @@ -5,13 +5,13 @@ - socketserver --- 用於網路伺服器的框架 — Python 3.12.3 說明文件 + socketserver --- 用於網路伺服器的框架 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1048,7 +1049,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1100,7 +1101,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/spwd.html b/library/spwd.html index 9038711f66..cadd057d26 100644 --- a/library/spwd.html +++ b/library/spwd.html @@ -5,13 +5,13 @@ - spwd --- shadow 密碼資料庫 — Python 3.12.3 說明文件 + spwd --- shadow 密碼資料庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -416,7 +417,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -468,7 +469,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sqlite3.html b/library/sqlite3.html index afbea9c188..64899ca051 100644 --- a/library/sqlite3.html +++ b/library/sqlite3.html @@ -5,13 +5,13 @@ - sqlite3 --- SQLite 資料庫的 DB-API 2.0 介面 — Python 3.12.3 說明文件 + sqlite3 --- SQLite 資料庫的 DB-API 2.0 介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -267,7 +268,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2924,7 +2925,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2976,7 +2977,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/ssl.html b/library/ssl.html index ce2c11707a..f71203a2f7 100644 --- a/library/ssl.html +++ b/library/ssl.html @@ -5,13 +5,13 @@ - ssl --- socket 物件的 TLS/SSL 包裝器 — Python 3.12.3 說明文件 + ssl --- socket 物件的 TLS/SSL 包裝器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -267,7 +268,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -950,9 +951,7 @@

                常數
                ssl.OP_SINGLE_DH_USE
                -

                Prevents reuse of the same DH key for distinct SSL sessions. This -improves forward secrecy but requires more computational resources. -This option only applies to server sockets.

                +

                防止對不同的 SSL 會談重複使用相同的 DH 密鑰。這會加強向前保密但需要更多的運算資源。此選項只適用於伺服器 sockets。

                Added in version 3.3.

                @@ -961,9 +960,7 @@

                常數
                ssl.OP_SINGLE_ECDH_USE
                -

                Prevents reuse of the same ECDH key for distinct SSL sessions. This -improves forward secrecy but requires more computational resources. -This option only applies to server sockets.

                +

                防止對不同的 SSL 會談重複使用相同的 ECDH 密鑰。這會加強向前保密但需要更多的運算資源。此選項只適用於伺服器 sockets。

                Added in version 3.3.

                @@ -3189,7 +3186,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3241,7 +3238,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/stat.html b/library/stat.html index 13cfb8e2b7..f529ad8f0f 100644 --- a/library/stat.html +++ b/library/stat.html @@ -5,13 +5,13 @@ - stat --- 直譯 stat() 的結果 — Python 3.12.3 說明文件 + stat --- 直譯 stat() 的結果 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -873,7 +874,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -925,7 +926,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/statistics.html b/library/statistics.html index 5018fe5b8e..645532f35f 100644 --- a/library/statistics.html +++ b/library/statistics.html @@ -5,13 +5,13 @@ - statistics --- 數學統計函式 — Python 3.12.3 說明文件 + statistics --- 數學統計函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1196,7 +1197,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1248,7 +1249,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/stdtypes.html b/library/stdtypes.html index a9809f865c..2f40435c07 100644 --- a/library/stdtypes.html +++ b/library/stdtypes.html @@ -5,13 +5,13 @@ - 內建型別 — Python 3.12.3 說明文件 + 內建型別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -300,7 +301,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -5879,7 +5880,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -5930,7 +5931,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/string.html b/library/string.html index e3412a1d36..55421ae2f2 100644 --- a/library/string.html +++ b/library/string.html @@ -5,13 +5,13 @@ - string --- 常見的字串操作 — Python 3.12.3 說明文件 + string --- 常見的字串操作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1139,7 +1140,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1191,7 +1192,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/stringprep.html b/library/stringprep.html index a509745499..d7561c5d9a 100644 --- a/library/stringprep.html +++ b/library/stringprep.html @@ -5,13 +5,13 @@ - stringprep --- 網際網路字串準備 — Python 3.12.3 說明文件 + stringprep --- 網際網路字串準備 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -467,7 +468,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -519,7 +520,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/struct.html b/library/struct.html index b242a8c643..00dc7a5a57 100644 --- a/library/struct.html +++ b/library/struct.html @@ -5,13 +5,13 @@ - struct --- 將位元組直譯為打包起來的二進位資料 — Python 3.12.3 說明文件 + struct --- 將位元組直譯為打包起來的二進位資料 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -241,7 +242,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1020,7 +1021,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1072,7 +1073,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/subprocess.html b/library/subprocess.html index 7d9d2aa333..90f2d82056 100644 --- a/library/subprocess.html +++ b/library/subprocess.html @@ -5,13 +5,13 @@ - subprocess --- 子行程管理 — Python 3.12.3 說明文件 + subprocess --- 子行程管理 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -256,7 +257,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2021,7 +2022,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2073,7 +2074,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sunau.html b/library/sunau.html index 11607ebad0..bc6e16cc86 100644 --- a/library/sunau.html +++ b/library/sunau.html @@ -5,13 +5,13 @@ - sunau --- 讀寫 Sun AU 檔案 — Python 3.12.3 說明文件 + sunau --- 讀寫 Sun AU 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -606,7 +607,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -658,7 +659,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/superseded.html b/library/superseded.html index 900cbdb9df..3f3f85d90d 100644 --- a/library/superseded.html +++ b/library/superseded.html @@ -5,13 +5,13 @@ - 已被取代的模組 — Python 3.12.3 說明文件 + 已被取代的模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -344,7 +345,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -395,7 +396,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/symtable.html b/library/symtable.html index acff91551f..90ee0b2bce 100644 --- a/library/symtable.html +++ b/library/symtable.html @@ -5,13 +5,13 @@ - symtable --- 存取編譯器的符號表 — Python 3.12.3 說明文件 + symtable --- 存取編譯器的符號表 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -581,7 +582,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -633,7 +634,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sys.html b/library/sys.html index bb52723e75..f18b2a2736 100644 --- a/library/sys.html +++ b/library/sys.html @@ -5,13 +5,13 @@ - sys --- 系統特定的參數與函式 — Python 3.12.3 說明文件 + sys --- 系統特定的參數與函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2570,7 +2571,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2622,7 +2623,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sys.monitoring.html b/library/sys.monitoring.html index 5cf9478e4b..c452e0a307 100644 --- a/library/sys.monitoring.html +++ b/library/sys.monitoring.html @@ -5,13 +5,13 @@ - sys.monitoring --- Execution event monitoring — Python 3.12.3 說明文件 + sys.monitoring --- Execution event monitoring — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -249,7 +250,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -771,7 +772,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -823,7 +824,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sys_path_init.html b/library/sys_path_init.html index 1e33827b75..818d10e156 100644 --- a/library/sys_path_init.html +++ b/library/sys_path_init.html @@ -5,13 +5,13 @@ - The initialization of the sys.path module search path — Python 3.12.3 說明文件 + The initialization of the sys.path module search path — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -437,7 +438,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -489,7 +490,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/sysconfig.html b/library/sysconfig.html index 223be3fdf9..c8263799d8 100644 --- a/library/sysconfig.html +++ b/library/sysconfig.html @@ -5,13 +5,13 @@ - sysconfig --- 提供 Python 設定資訊的存取 — Python 3.12.3 說明文件 + sysconfig --- 提供 Python 設定資訊的存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -248,7 +249,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -911,7 +912,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -963,7 +964,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/syslog.html b/library/syslog.html index a4d9002ba9..c2f0beb6ed 100644 --- a/library/syslog.html +++ b/library/syslog.html @@ -5,13 +5,13 @@ - syslog --- Unix syslog 函式庫例程 — Python 3.12.3 說明文件 + syslog --- Unix syslog 函式庫例程 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -479,7 +480,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -531,7 +532,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tabnanny.html b/library/tabnanny.html index 1352eb10e1..ca457bae05 100644 --- a/library/tabnanny.html +++ b/library/tabnanny.html @@ -5,13 +5,13 @@ - tabnanny --- 偵測不良縮排 — Python 3.12.3 說明文件 + tabnanny --- 偵測不良縮排 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -364,7 +365,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -416,7 +417,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tarfile.html b/library/tarfile.html index dffc98e063..fe61a40550 100644 --- a/library/tarfile.html +++ b/library/tarfile.html @@ -5,13 +5,13 @@ - tarfile --- 讀取與寫入 tar 封存檔案 — Python 3.12.3 說明文件 + tarfile --- 讀取與寫入 tar 封存檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -245,7 +246,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1814,7 +1815,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1866,7 +1867,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/telnetlib.html b/library/telnetlib.html index 813c74e90b..7d8fc52e27 100644 --- a/library/telnetlib.html +++ b/library/telnetlib.html @@ -5,13 +5,13 @@ - telnetlib --- Telnet 客戶端 — Python 3.12.3 說明文件 + telnetlib --- Telnet 客戶端 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -589,7 +590,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -641,7 +642,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tempfile.html b/library/tempfile.html index 977c183ea7..d6bcb7190d 100644 --- a/library/tempfile.html +++ b/library/tempfile.html @@ -5,13 +5,13 @@ - tempfile --- 生成臨時檔案和目錄 — Python 3.12.3 說明文件 + tempfile --- 生成臨時檔案和目錄 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -621,7 +622,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -673,7 +674,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/termios.html b/library/termios.html index b69dd569da..ec90bbd055 100644 --- a/library/termios.html +++ b/library/termios.html @@ -5,13 +5,13 @@ - termios --- POSIX 風格 tty 控制 — Python 3.12.3 說明文件 + termios --- POSIX 風格 tty 控制 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -476,7 +477,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -528,7 +529,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/test.html b/library/test.html index 03a3f2b014..660b140de6 100644 --- a/library/test.html +++ b/library/test.html @@ -5,13 +5,13 @@ - test --- Python 的回歸測試 (regression tests) 套件 — Python 3.12.3 說明文件 + test --- Python 的回歸測試 (regression tests) 套件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2170,7 +2171,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2222,7 +2223,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/text.html b/library/text.html index 71fefec255..8766573385 100644 --- a/library/text.html +++ b/library/text.html @@ -5,13 +5,13 @@ - 文本處理 (Text Processing) 服務 — Python 3.12.3 說明文件 + 文本處理 (Text Processing) 服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -384,7 +385,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -435,7 +436,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/textwrap.html b/library/textwrap.html index ea99e60d47..2032291477 100644 --- a/library/textwrap.html +++ b/library/textwrap.html @@ -5,13 +5,13 @@ - textwrap --- 文字包裝與填充 — Python 3.12.3 說明文件 + textwrap --- 文字包裝與填充 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -619,7 +620,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -671,7 +672,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/threading.html b/library/threading.html index 2cb32ab629..4ad4f62ad5 100644 --- a/library/threading.html +++ b/library/threading.html @@ -5,13 +5,13 @@ - threading --- 基於執行緒的平行性 — Python 3.12.3 說明文件 + threading --- 基於執行緒的平行性 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -241,7 +242,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1519,7 +1520,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1571,7 +1572,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/time.html b/library/time.html index a8b9339a7d..a9f043e986 100644 --- a/library/time.html +++ b/library/time.html @@ -5,13 +5,13 @@ - time --- Time access and conversions — Python 3.12.3 說明文件 + time --- Time access and conversions — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -903,8 +904,8 @@

                瀏覽

                @@ -1437,7 +1438,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1489,7 +1490,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/timeit.html b/library/timeit.html index fa5ab70aec..a6f248ffdf 100644 --- a/library/timeit.html +++ b/library/timeit.html @@ -5,13 +5,13 @@ - timeit --- 測量小量程式片段的執行時間 — Python 3.12.3 說明文件 + timeit --- 測量小量程式片段的執行時間 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -629,7 +630,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -681,7 +682,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tk.html b/library/tk.html index a10f2f2392..0ca5468568 100644 --- a/library/tk.html +++ b/library/tk.html @@ -5,13 +5,13 @@ - 以 Tk 打造圖形使用者介面 (Graphical User Interfaces) — Python 3.12.3 說明文件 + 以 Tk 打造圖形使用者介面 (Graphical User Interfaces) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -489,7 +490,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -540,7 +541,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.colorchooser.html b/library/tkinter.colorchooser.html index d2db97fb9e..34313eb3f8 100644 --- a/library/tkinter.colorchooser.html +++ b/library/tkinter.colorchooser.html @@ -5,13 +5,13 @@ - tkinter.colorchooser --- 顏色選擇對話框 — Python 3.12.3 說明文件 + tkinter.colorchooser --- 顏色選擇對話框 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -341,7 +342,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -393,7 +394,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.dnd.html b/library/tkinter.dnd.html index 13ce155b53..275403b835 100644 --- a/library/tkinter.dnd.html +++ b/library/tkinter.dnd.html @@ -5,13 +5,13 @@ - tkinter.dnd --- 拖放支援 — Python 3.12.3 說明文件 + tkinter.dnd --- 拖放支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -392,7 +393,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -444,7 +445,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.font.html b/library/tkinter.font.html index 570adde32d..a1e93ecd7b 100644 --- a/library/tkinter.font.html +++ b/library/tkinter.font.html @@ -5,13 +5,13 @@ - tkinter.font --- Tkinter 字型包裝器 — Python 3.12.3 說明文件 + tkinter.font --- Tkinter 字型包裝器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -433,7 +434,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -485,7 +486,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.html b/library/tkinter.html index 01a069e36b..582b78eb7c 100644 --- a/library/tkinter.html +++ b/library/tkinter.html @@ -5,13 +5,13 @@ - tkinter --- Tcl/Tk 的 Python 介面 — Python 3.12.3 說明文件 + tkinter --- Tcl/Tk 的 Python 介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -252,7 +253,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1347,7 +1348,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1399,7 +1400,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.messagebox.html b/library/tkinter.messagebox.html index 8501f9deb4..452b229a3b 100644 --- a/library/tkinter.messagebox.html +++ b/library/tkinter.messagebox.html @@ -5,13 +5,13 @@ - tkinter.messagebox --- Tkinter 訊息提示 — Python 3.12.3 說明文件 + tkinter.messagebox --- Tkinter 訊息提示 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -504,7 +505,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -556,7 +557,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.scrolledtext.html b/library/tkinter.scrolledtext.html index d7d5bfa3f5..792e402edd 100644 --- a/library/tkinter.scrolledtext.html +++ b/library/tkinter.scrolledtext.html @@ -5,13 +5,13 @@ - tkinter.scrolledtext --- 捲動文字小工具 — Python 3.12.3 說明文件 + tkinter.scrolledtext --- 捲動文字小工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -349,7 +350,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -401,7 +402,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.tix.html b/library/tkinter.tix.html index 7275ca90ff..f6438a75dc 100644 --- a/library/tkinter.tix.html +++ b/library/tkinter.tix.html @@ -5,13 +5,13 @@ - tkinter.tix --- Tk 擴充小工具 — Python 3.12.3 說明文件 + tkinter.tix --- Tk 擴充小工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -241,7 +242,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -816,7 +817,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -868,7 +869,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tkinter.ttk.html b/library/tkinter.ttk.html index 4f61c1dc79..2dec54de3f 100644 --- a/library/tkinter.ttk.html +++ b/library/tkinter.ttk.html @@ -5,13 +5,13 @@ - tkinter.ttk --- Tk 主題化小工具 — Python 3.12.3 說明文件 + tkinter.ttk --- Tk 主題化小工具 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -286,7 +287,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2074,7 +2075,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2126,7 +2127,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/token.html b/library/token.html index 953bf6cf1f..1c839be445 100644 --- a/library/token.html +++ b/library/token.html @@ -5,13 +5,13 @@ - token --- 與 Python 剖析樹一起使用的常數 — Python 3.12.3 說明文件 + token --- 與 Python 剖析樹一起使用的常數 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -798,7 +799,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -850,7 +851,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tokenize.html b/library/tokenize.html index 6a78bf99ed..feafa55951 100644 --- a/library/tokenize.html +++ b/library/tokenize.html @@ -5,13 +5,13 @@ - tokenize --- Tokenizer for Python source — Python 3.12.3 說明文件 + tokenize --- Tokenizer for Python source — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -623,7 +624,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -675,7 +676,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tomllib.html b/library/tomllib.html index 52699a1cde..31beb7de6e 100644 --- a/library/tomllib.html +++ b/library/tomllib.html @@ -5,13 +5,13 @@ - tomllib --- 剖析 TOML 檔案 — Python 3.12.3 說明文件 + tomllib --- 剖析 TOML 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -451,7 +452,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -503,7 +504,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/trace.html b/library/trace.html index 9118802540..e228bfece7 100644 --- a/library/trace.html +++ b/library/trace.html @@ -5,13 +5,13 @@ - trace --- 追蹤或追查 Python 陳述式執行 — Python 3.12.3 說明文件 + trace --- 追蹤或追查 Python 陳述式執行 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -591,7 +592,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -643,7 +644,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/traceback.html b/library/traceback.html index 103c1d3485..19d598e14a 100644 --- a/library/traceback.html +++ b/library/traceback.html @@ -5,13 +5,13 @@ - traceback --- 列印或取得堆疊回溯 (stack traceback) — Python 3.12.3 說明文件 + traceback --- 列印或取得堆疊回溯 (stack traceback) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1013,7 +1014,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1065,7 +1066,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tracemalloc.html b/library/tracemalloc.html index 652ddcbda6..0209138253 100644 --- a/library/tracemalloc.html +++ b/library/tracemalloc.html @@ -5,13 +5,13 @@ - tracemalloc --- 追蹤記憶體配置 — Python 3.12.3 說明文件 + tracemalloc --- 追蹤記憶體配置 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -250,7 +251,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1166,7 +1167,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1218,7 +1219,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/tty.html b/library/tty.html index 267a2d48c3..a8e09eb131 100644 --- a/library/tty.html +++ b/library/tty.html @@ -5,13 +5,13 @@ - tty --- 終端機控制函式 — Python 3.12.3 說明文件 + tty --- 終端機控制函式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -386,7 +387,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -438,7 +439,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/turtle.html b/library/turtle.html index 7e419cdad8..dd6c2fe0c4 100644 --- a/library/turtle.html +++ b/library/turtle.html @@ -5,13 +5,13 @@ - turtle --- 龜圖學 (Turtle graphics) — Python 3.12.3 說明文件 + turtle --- 龜圖學 (Turtle graphics) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -292,7 +293,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3342,7 +3343,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3394,7 +3395,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/types.html b/library/types.html index 975c739289..16e793d699 100644 --- a/library/types.html +++ b/library/types.html @@ -5,13 +5,13 @@ - types --- 動態型別建立與內建型別名稱 — Python 3.12.3 說明文件 + types --- 動態型別建立與內建型別名稱 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -947,7 +948,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -999,7 +1000,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/typing.html b/library/typing.html index c1d957371c..d00c85e7e8 100644 --- a/library/typing.html +++ b/library/typing.html @@ -5,13 +5,13 @@ - typing --- 支援型別提示 — Python 3.12.3 說明文件 + typing --- 支援型別提示 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -264,7 +265,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -425,7 +426,7 @@

                ProUserId 的型別檢查會如期運作。

                -

                更多細節請見 PEP 484

                +

                更多細節請見 PEP 484

                備註

                請記得使用型別別名是宣告兩種型別是互相相等的。使用 type Alias = Original 則會讓靜態型別檢查器在任何情況之下將 Alias 視為與 Original 完全相等。這當你想把複雜的型別簽名進行簡化時,非常好用。

                @@ -493,7 +494,7 @@

                ParamSpec 指出他們的參數型別是個別獨立的。另外,如果這個 callable 從其他 callable 新增或刪除引數時,將會使用到 Concatenate 運算子。他們可以分別採用 Callable[ParamSpecVariable, ReturnType] 以及 Callable[Concatenate[Arg1Type, Arg2Type, ..., ParamSpecVariable], ReturnType] 的形式。

                -

                在 3.10 版的變更: Callable 現已支援 ParamSpec 以及 Concatenate。請參閱 PEP 612 閱讀詳細內容。

                +

                在 3.10 版的變更: Callable 現已支援 ParamSpec 以及 Concatenate。請參閱 PEP 612 閱讀詳細內容。

                也參考

                @@ -766,7 +767,7 @@

                ParamSpec 的泛型在某些情況下替換之後可能不會有正確的 __parameters__,因為參數規格主要還是用於靜態型別檢查。

                -

                在 3.10 版的變更: Generic 現在可以透過參數運算式來進行參數化。詳細內容請見 ParamSpec 以及 PEP 612

                +

                在 3.10 版的變更: Generic 現在可以透過參數運算式來進行參數化。詳細內容請見 ParamSpec 以及 PEP 612

                一個使用者定義的泛型類別可以將 ABC 作為他們的基底類別,且不會有 metaclass 衝突。泛型的 metaclass 則不支援。參數化泛型的輸出將被存為快取,而在型別模組中多數的型別皆為 hashable 且可以比較相等性。

                @@ -829,8 +830,8 @@

                標稱 (nominal) 子型別 vs 結構子型別

                -

                最初 PEP 484 定義 Python 靜態型別系統使用標稱子型別。這意味著只有 AB 的子類別時,A 才被允許使用在預期是類別 B 出現的地方。

                -

                這個需求之前也被運用在抽象基底類別,例如 Iterable。這種方式的問題在於,一個類別需要顯式的標記來支援他們,這並不符合 Python 風格,也不像一個常見的慣用動態型別 Python 程式碼。舉例來說,下列程式碼符合 PEP 484

                +

                最初 PEP 484 定義 Python 靜態型別系統使用標稱子型別。這意味著只有 AB 的子類別時,A 才被允許使用在預期是類別 B 出現的地方。

                +

                這個需求之前也被運用在抽象基底類別,例如 Iterable。這種方式的問題在於,一個類別需要顯式的標記來支援他們,這並不符合 Python 風格,也不像一個常見的慣用動態型別 Python 程式碼。舉例來說,下列程式碼符合 PEP 484

                from collections.abc import Sized, Iterable, Iterator
                 
                 class Bucket(Sized, Iterable[int]):
                @@ -839,7 +840,7 @@ 

                標稱 (nominal) 子型別 vs 結構子型別def __iter__(self) -> Iterator[int]: ...

                -

                PEP 544 可以透過使用上方的程式碼,且在類別定義時不用顯式基底類別解決這個問題,讓 Bucket 被靜態型別檢查器隱性認為是 Sized 以及 Iterable[int] 兩者的子型別。這就是眾所周知的結構子型別(或是靜態鴨子型別):

                +

                PEP 544 可以透過使用上方的程式碼,且在類別定義時不用顯式基底類別解決這個問題,讓 Bucket 被靜態型別檢查器隱性認為是 Sized 以及 Iterable[int] 兩者的子型別。這就是眾所周知的結構子型別(或是靜態鴨子型別):

                from collections.abc import Iterator, Iterable
                 
                 class Bucket:  # Note: no base classes
                @@ -926,7 +927,7 @@ 

                特別型別LiteralString 對於敏感的 API 來說是有用的,其中任意的使用者產生的字串可能會產生問題。舉例來說,上面兩個案例中產生的型別檢查器錯誤是脆弱的且容易受到 SQL 注入攻擊。

                -

                更多細節請見 PEP 675

                +

                更多細節請見 PEP 675

                Added in version 3.11.

                @@ -1016,7 +1017,7 @@

                特別型別return Eggs()

                -

                更多細節請見 PEP 673

                +

                更多細節請見 PEP 673

                Added in version 3.11.

                @@ -1048,7 +1049,7 @@

                特別型別def make_box_of_strings(cls) -> BoxOfStrings: ...

                -

                更多細節請見 PEP 613

                +

                更多細節請見 PEP 613

                Added in version 3.10.

                @@ -1273,7 +1274,7 @@

                Special forms typing.Required

                Special typing construct to mark a TypedDict key as required.

                -

                主要用於 total=False 的 TypedDict。更多細節請見 TypedDictPEP 655

                +

                主要用於 total=False 的 TypedDict。更多細節請見 TypedDictPEP 655

                Added in version 3.11.

                @@ -1284,7 +1285,7 @@

                Special formstyping.NotRequired

                Special typing construct to mark a TypedDict key as potentially missing.

                -

                更多細節請見 TypedDictPEP 655

                +

                更多細節請見 TypedDictPEP 655

                Added in version 3.11.

                @@ -2320,12 +2321,12 @@

                Other special directives
                Point2D = TypedDict('Point2D', x=int, y=int, label=str)
                 
                - -

                自從版本 3.11 後不推薦使用,將會自版本 3.13 中移除。: The keyword-argument syntax is deprecated in 3.11 and will be removed in 3.13. It may also be unsupported by static type checkers.

                + +

                The functional syntax should also be used when any of the keys are not valid identifiers, for example because they are keywords or contain hyphens. Example:

                @@ -2824,7 +2825,7 @@

                函式與裝飾器At runtime, this decorator records its arguments in the __dataclass_transform__ attribute on the decorated object. It has no other runtime effect.

                -

                更多細節請見 PEP 681

                +

                更多細節請見 PEP 681

                Added in version 3.11.

                @@ -2984,7 +2985,7 @@

                函式與裝飾器obj has been marked as an override. If the decorated object does not support setting attributes, the decorator returns the object unchanged without raising an exception.

                -

                更多細節請見 PEP 698

                +

                更多細節請見 PEP 698

                Added in version 3.12.

                @@ -3017,35 +3018,39 @@

                Introspection helperstyping.get_type_hints(obj, globalns=None, localns=None, include_extras=False)

                Return a dictionary containing type hints for a function, method, module or class object.

                -

                This is often the same as obj.__annotations__. In addition, -forward references encoded as string literals are handled by evaluating -them in globals, locals and (where applicable) -type parameter namespaces. -For a class C, return -a dictionary constructed by merging all the __annotations__ along -C.__mro__ in reverse order.

                -

                The function recursively replaces all Annotated[T, ...] with T, -unless include_extras is set to True (see Annotated for -more information). For example:

                -
                class Student(NamedTuple):
                -    name: Annotated[str, 'some marker']
                -
                -assert get_type_hints(Student) == {'name': str}
                -assert get_type_hints(Student, include_extras=False) == {'name': str}
                -assert get_type_hints(Student, include_extras=True) == {
                -    'name': Annotated[str, 'some marker']
                -}
                -
                -
                +

                This is often the same as obj.__annotations__, but this function makes +the following changes to the annotations dictionary:

                +
                  +
                • Forward references encoded as string literals or ForwardRef +objects are handled by evaluating them in globalns, localns, and +(where applicable) obj's type parameter namespace. +If globalns or localns is not given, appropriate namespace +dictionaries are inferred from obj.

                • +
                • None is replaced with types.NoneType.

                • +
                • If @no_type_check has been applied to obj, an +empty dictionary is returned.

                • +
                • If obj is a class C, the function returns a dictionary that merges +annotations from C's base classes with those on C directly. This +is done by traversing C.__mro__ and iteratively combining +__annotations__ dictionaries. Annotations on classes appearing +earlier in the method resolution order always take precedence over +annotations on classes appearing later in the method resolution order.

                • +
                • The function recursively replaces all occurrences of Annotated[T, ...] +with T, unless include_extras is set to True (see +Annotated for more information).

                • +
                +

                See also inspect.get_annotations(), a lower-level function that +returns annotations more directly.

                備註

                -

                get_type_hints() does not work with imported -type aliases that include forward references. -Enabling postponed evaluation of annotations (PEP 563) may remove -the need for most forward references.

                +

                If any forward references in the annotations of obj are not resolvable +or are not valid Python code, this function will raise an exception +such as NameError. For example, this can happen with imported +type aliases that include forward references, +or with names imported under if TYPE_CHECKING.

                -

                在 3.9 版的變更: 新增 include_extras 參數(如 PEP 593 中所述)。更多資訊請見 Annotated 的文件。

                +

                在 3.9 版的變更: 新增 include_extras 參數(如 PEP 593 中所述)。更多資訊請見 Annotated 的文件。

                在 3.11 版的變更: Previously, Optional[t] was added for function and method annotations @@ -3129,7 +3134,7 @@

                Introspection helpers

                備註

                -

                PEP 585 generic types such as list["SomeClass"] will not be +

                PEP 585 generic types such as list["SomeClass"] will not be implicitly transformed into list[ForwardRef("SomeClass")] and thus will not automatically resolve to list[SomeClass].

                @@ -3164,7 +3169,7 @@

                常數 annotations are not evaluated at function definition time. Instead, they are stored as strings in __annotations__. This makes it unnecessary to use quotes around the annotation -(see PEP 563).

                +(see PEP 563).

                Added in version 3.5.2.

                @@ -3179,7 +3184,7 @@

                常數 module in order to support parameterizing these generic classes using []. However, the aliases became redundant in Python 3.9 when the corresponding pre-existing classes were enhanced to support [] (see -PEP 585).

                +PEP 585).

                The redundant types are deprecated as of Python 3.9. However, while the aliases may be removed at some point, removal of these aliases is not currently planned. As such, no deprecation warnings are currently issued by the @@ -3206,7 +3211,7 @@

                常數

                @@ -3227,7 +3232,7 @@

                常數

                @@ -3240,7 +3245,7 @@

                常數 rather than to use set or typing.Set.

                在 3.9 版之後被棄用: builtins.set now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3251,7 +3256,7 @@

                常數 @@ -3263,7 +3268,7 @@

                常數 註釋元組 (tuple) for more details.

                在 3.9 版之後被棄用: builtins.tuple now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3278,7 +3283,7 @@

                常數 @@ -3294,7 +3299,7 @@

                常數 @@ -3307,7 +3312,7 @@

                常數 @@ -3320,7 +3325,7 @@

                常數 @@ -3333,7 +3338,7 @@

                常數 @@ -3346,7 +3351,7 @@

                常數 @@ -3376,7 +3381,7 @@

                常數 @@ -3413,7 +3418,7 @@

                常數

                棄用 collections.abc.Set 的別名。

                在 3.9 版之後被棄用: collections.abc.Set now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3436,7 +3441,7 @@

                常數 @@ -3446,7 +3451,7 @@

                常數

                棄用 collections.abc.Container 的別名。

                在 3.9 版之後被棄用: collections.abc.Container now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3456,7 +3461,7 @@

                常數

                棄用 collections.abc.ItemsView 的別名。

                在 3.9 版之後被棄用: collections.abc.ItemsView now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3466,7 +3471,7 @@

                常數

                棄用 collections.abc.KeysView 的別名。

                在 3.9 版之後被棄用: collections.abc.KeysView now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3481,7 +3486,7 @@

                常數 @@ -3491,7 +3496,7 @@

                常數

                棄用 collections.abc.MappingView 的別名。

                在 3.9 版之後被棄用: collections.abc.MappingView now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3502,7 +3507,7 @@

                常數 @@ -3513,7 +3518,7 @@

                常數 @@ -3523,7 +3528,7 @@

                常數

                棄用 collections.abc.MutableSet 的別名。

                在 3.9 版之後被棄用: collections.abc.MutableSet now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3533,7 +3538,7 @@

                常數

                棄用 collections.abc.Sequence 的別名。

                在 3.9 版之後被棄用: collections.abc.Sequence now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3543,7 +3548,7 @@

                常數

                棄用 collections.abc.ValuesView 的別名。

                在 3.9 版之後被棄用: collections.abc.ValuesView now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3568,7 +3573,7 @@

                常數 @@ -3610,7 +3615,7 @@

                常數 @@ -3623,7 +3628,7 @@

                常數 @@ -3636,7 +3641,7 @@

                常數 @@ -3649,7 +3654,7 @@

                常數 @@ -3662,7 +3667,7 @@

                常數

                棄用 collections.abc.Iterable 的別名。

                在 3.9 版之後被棄用: collections.abc.Iterable now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3672,7 +3677,7 @@

                常數

                棄用 collections.abc.Iterator 的別名。

                在 3.9 版之後被棄用: collections.abc.Iterator now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3684,10 +3689,10 @@

                常數 collections.abc.Callable and typing.Callable in type annotations.

                在 3.9 版之後被棄用: collections.abc.Callable now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                -

                在 3.10 版的變更: Callable 現已支援 ParamSpec 以及 Concatenate。請參閱 PEP 612 閱讀詳細內容。

                +

                在 3.10 版的變更: Callable 現已支援 ParamSpec 以及 Concatenate。請參閱 PEP 612 閱讀詳細內容。

                @@ -3725,7 +3730,7 @@

                常數 @@ -3744,7 +3749,7 @@

                常數

                棄用 collections.abc.Reversible 的別名。

                在 3.9 版之後被棄用: collections.abc.Reversible now supports subscripting ([]). -See PEP 585 and Generic Alias Type.

                +See PEP 585 and Generic Alias Type.

                @@ -3770,7 +3775,7 @@

                常數 @@ -3784,7 +3789,7 @@

                常數 @@ -3813,7 +3818,7 @@

                Deprecation Timeline of Major Features

                - + @@ -3833,7 +3838,7 @@

                Deprecation Timeline of Major Features

                - +

                2

                -
                -tm_day
                +
                +tm_mday

                typing versions of standard collections

                3.9

                Undecided (see 棄用的別名 for more information)

                PEP 585

                PEP 585

                typing.ByteString

                3.9

                typing.TypeAlias

                3.12

                Undecided

                PEP 695

                PEP 695

                @@ -3947,7 +3952,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3999,7 +4004,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/unicodedata.html b/library/unicodedata.html index 965b135514..2cc5c89ab4 100644 --- a/library/unicodedata.html +++ b/library/unicodedata.html @@ -5,13 +5,13 @@ - unicodedata --- Unicode 資料庫 — Python 3.12.3 說明文件 + unicodedata --- Unicode 資料庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -496,7 +497,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -548,7 +549,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/unittest.html b/library/unittest.html index f097e5effe..5f9cef8216 100644 --- a/library/unittest.html +++ b/library/unittest.html @@ -5,13 +5,13 @@ - unittest --- 單元測試框架 — Python 3.12.3 說明文件 + unittest --- 單元測試框架 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -253,7 +254,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2988,7 +2989,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -3040,7 +3041,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/unittest.mock-examples.html b/library/unittest.mock-examples.html index c16b3a2bd2..cc125eeeef 100644 --- a/library/unittest.mock-examples.html +++ b/library/unittest.mock-examples.html @@ -5,13 +5,13 @@ - unittest.mock --- 入門指南 — Python 3.12.3 說明文件 + unittest.mock --- 入門指南 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -260,7 +261,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1380,7 +1381,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1432,7 +1433,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/unittest.mock.html b/library/unittest.mock.html index adb5af1d53..7c58867615 100644 --- a/library/unittest.mock.html +++ b/library/unittest.mock.html @@ -5,13 +5,13 @@ - unittest.mock — mock 物件函式庫 — Python 3.12.3 說明文件 + unittest.mock — mock 物件函式庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -267,7 +268,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2631,7 +2632,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2683,7 +2684,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/unix.html b/library/unix.html index 9b266c43a7..e887ff2be4 100644 --- a/library/unix.html +++ b/library/unix.html @@ -5,13 +5,13 @@ - Unix 特有服務 — Python 3.12.3 說明文件 + Unix 特有服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -353,7 +354,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -404,7 +405,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/urllib.error.html b/library/urllib.error.html index d405b300b5..13512bc797 100644 --- a/library/urllib.error.html +++ b/library/urllib.error.html @@ -5,13 +5,13 @@ - urllib.error --- urllib.request 引發的例外類別 — Python 3.12.3 說明文件 + urllib.error --- urllib.request 引發的例外類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -390,7 +391,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -442,7 +443,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/urllib.html b/library/urllib.html index 1033f03681..54782a7c22 100644 --- a/library/urllib.html +++ b/library/urllib.html @@ -5,13 +5,13 @@ - urllib --- URL 處理模組 — Python 3.12.3 說明文件 + urllib --- URL 處理模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -329,7 +330,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -381,7 +382,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/urllib.parse.html b/library/urllib.parse.html index 8548b56cf9..0daaea9356 100644 --- a/library/urllib.parse.html +++ b/library/urllib.parse.html @@ -5,13 +5,13 @@ - urllib.parse --- 將 URL 剖析成元件 — Python 3.12.3 說明文件 + urllib.parse --- 將 URL 剖析成元件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1129,7 +1130,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1181,7 +1182,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/urllib.request.html b/library/urllib.request.html index 32b64515b2..4c8265d282 100644 --- a/library/urllib.request.html +++ b/library/urllib.request.html @@ -5,13 +5,13 @@ - urllib.request --- 用來開啟 URLs 的可擴充函式庫 — Python 3.12.3 說明文件 + urllib.request --- 用來開啟 URLs 的可擴充函式庫 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -254,7 +255,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1856,7 +1857,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1908,7 +1909,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/urllib.robotparser.html b/library/urllib.robotparser.html index 134e47cac4..b541c5fd00 100644 --- a/library/urllib.robotparser.html +++ b/library/urllib.robotparser.html @@ -5,13 +5,13 @@ - urllib.robotparser --- robots.txt 的剖析器 — Python 3.12.3 說明文件 + urllib.robotparser --- robots.txt 的剖析器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -410,7 +411,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -462,7 +463,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/uu.html b/library/uu.html index 50c0915b21..dc0fef583c 100644 --- a/library/uu.html +++ b/library/uu.html @@ -5,13 +5,13 @@ - xdrlib --- uuencode 檔案的編碼與解碼 — Python 3.12.3 說明文件 + xdrlib --- uuencode 檔案的編碼與解碼 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -376,7 +377,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -428,7 +429,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/uuid.html b/library/uuid.html index 50bfd46860..74faa71932 100644 --- a/library/uuid.html +++ b/library/uuid.html @@ -5,13 +5,13 @@ - uuid --- RFC 4122 定義的 UUID 物件 — Python 3.12.3 說明文件 + uuid --- RFC 4122 定義的 UUID 物件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -707,7 +708,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -759,7 +760,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/venv.html b/library/venv.html index b4c2b8b452..c8ff3c460f 100644 --- a/library/venv.html +++ b/library/venv.html @@ -5,13 +5,13 @@ - venv --- 建立虛擬環境 — Python 3.12.3 說明文件 + venv --- 建立虛擬環境 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -920,7 +921,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -972,7 +973,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/warnings.html b/library/warnings.html index 14914cb1b6..e13afdfa21 100644 --- a/library/warnings.html +++ b/library/warnings.html @@ -5,13 +5,13 @@ - warnings --- 警告控制 — Python 3.12.3 說明文件 + warnings --- 警告控制 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -879,7 +880,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -931,7 +932,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/wave.html b/library/wave.html index 8cdea75e83..656fd86a77 100644 --- a/library/wave.html +++ b/library/wave.html @@ -5,13 +5,13 @@ - wave --- 讀寫 WAV 檔案 — Python 3.12.3 說明文件 + wave --- 讀寫 WAV 檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -555,7 +556,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -607,7 +608,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/weakref.html b/library/weakref.html index 16745a6644..b4cf439a1e 100644 --- a/library/weakref.html +++ b/library/weakref.html @@ -5,13 +5,13 @@ - weakref --- 弱參照 — Python 3.12.3 說明文件 + weakref --- 弱參照 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -757,7 +758,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -809,7 +810,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/webbrowser.html b/library/webbrowser.html index 36329f9b0c..ba44bf5609 100644 --- a/library/webbrowser.html +++ b/library/webbrowser.html @@ -5,13 +5,13 @@ - webbrowser --- 方便的網頁瀏覽器控制器 — Python 3.12.3 說明文件 + webbrowser --- 方便的網頁瀏覽器控制器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -593,7 +594,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -645,7 +646,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/windows.html b/library/windows.html index 2ba5382be9..d90232a0cb 100644 --- a/library/windows.html +++ b/library/windows.html @@ -5,13 +5,13 @@ - MS Windows 特有服務 — Python 3.12.3 說明文件 + MS Windows 特有服務 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -345,7 +346,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -396,7 +397,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/winreg.html b/library/winreg.html index e2974d0272..4d3eeda520 100644 --- a/library/winreg.html +++ b/library/winreg.html @@ -5,13 +5,13 @@ - winreg --- Windows 註冊表存取 — Python 3.12.3 說明文件 + winreg --- Windows 註冊表存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1113,7 +1114,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1165,7 +1166,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/winsound.html b/library/winsound.html index 00065d15b0..8117016f11 100644 --- a/library/winsound.html +++ b/library/winsound.html @@ -5,13 +5,13 @@ - winsound --- Windows 的聲音播放介面 — Python 3.12.3 說明文件 + winsound --- Windows 的聲音播放介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -495,7 +496,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -547,7 +548,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/wsgiref.html b/library/wsgiref.html index a4889f2f8c..d0d12bb376 100644 --- a/library/wsgiref.html +++ b/library/wsgiref.html @@ -5,13 +5,13 @@ - wsgiref --- WSGI 工具與參考實作 — Python 3.12.3 說明文件 + wsgiref --- WSGI 工具與參考實作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -925,7 +926,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -977,7 +978,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xdrlib.html b/library/xdrlib.html index 5156e5d5e9..e3ac6ef440 100644 --- a/library/xdrlib.html +++ b/library/xdrlib.html @@ -5,13 +5,13 @@ - xdrlib --- XDR 資料的編碼與解碼 — Python 3.12.3 說明文件 + xdrlib --- XDR 資料的編碼與解碼 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -624,7 +625,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -676,7 +677,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.dom.html b/library/xml.dom.html index 35140d1629..929ef18ab6 100644 --- a/library/xml.dom.html +++ b/library/xml.dom.html @@ -5,13 +5,13 @@ - xml.dom --- Document 物件模型 API — Python 3.12.3 說明文件 + xml.dom --- Document 物件模型 API — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -249,7 +250,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1445,7 +1446,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1497,7 +1498,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.dom.minidom.html b/library/xml.dom.minidom.html index 886b404f83..8072f8b329 100644 --- a/library/xml.dom.minidom.html +++ b/library/xml.dom.minidom.html @@ -5,13 +5,13 @@ - xml.dom.minidom --- 最小的 DOM 實作 — Python 3.12.3 說明文件 + xml.dom.minidom --- 最小的 DOM 實作 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -649,7 +650,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -701,7 +702,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.dom.pulldom.html b/library/xml.dom.pulldom.html index 595f5635a4..7015f3ad96 100644 --- a/library/xml.dom.pulldom.html +++ b/library/xml.dom.pulldom.html @@ -5,13 +5,13 @@ - xml.dom.pulldom --- 支援建置部分 DOM 樹 — Python 3.12.3 說明文件 + xml.dom.pulldom --- 支援建置部分 DOM 樹 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -486,7 +487,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -538,7 +539,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.etree.elementtree.html b/library/xml.etree.elementtree.html index e8e2b72e74..d741615054 100644 --- a/library/xml.etree.elementtree.html +++ b/library/xml.etree.elementtree.html @@ -5,13 +5,13 @@ - xml.etree.cElementTree --- ElementTree XML API — Python 3.12.3 說明文件 + xml.etree.cElementTree --- ElementTree XML API — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -262,7 +263,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1970,7 +1971,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2022,7 +2023,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.html b/library/xml.html index fb0f90043d..9f8bb82c97 100644 --- a/library/xml.html +++ b/library/xml.html @@ -5,13 +5,13 @@ - XML 處理模組 — Python 3.12.3 說明文件 + XML 處理模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -451,7 +452,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -503,7 +504,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.sax.handler.html b/library/xml.sax.handler.html index 36adc63c3f..18f51de503 100644 --- a/library/xml.sax.handler.html +++ b/library/xml.sax.handler.html @@ -5,13 +5,13 @@ - xml.sax.handler --- SAX 處理函式的基本類別 — Python 3.12.3 說明文件 + xml.sax.handler --- SAX 處理函式的基本類別 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -233,7 +234,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -819,7 +820,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -871,7 +872,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.sax.html b/library/xml.sax.html index 555077c410..24a0dd207e 100644 --- a/library/xml.sax.html +++ b/library/xml.sax.html @@ -5,13 +5,13 @@ - xml.sax --- SAX2 剖析器支援 — Python 3.12.3 說明文件 + xml.sax --- SAX2 剖析器支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -498,7 +499,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -550,7 +551,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.sax.reader.html b/library/xml.sax.reader.html index b380e5cf44..2a5cc4cb10 100644 --- a/library/xml.sax.reader.html +++ b/library/xml.sax.reader.html @@ -5,13 +5,13 @@ - xml.sax.xmlreader --- XML 剖析器的介面 — Python 3.12.3 說明文件 + xml.sax.xmlreader --- XML 剖析器的介面 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -234,7 +235,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -739,7 +740,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -791,7 +792,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xml.sax.utils.html b/library/xml.sax.utils.html index 6cc9ab1af1..7b7b261d42 100644 --- a/library/xml.sax.utils.html +++ b/library/xml.sax.utils.html @@ -5,13 +5,13 @@ - xml.sax.saxutils --- SAX 工具程式 — Python 3.12.3 說明文件 + xml.sax.saxutils --- SAX 工具程式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -409,7 +410,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -461,7 +462,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xmlrpc.client.html b/library/xmlrpc.client.html index cb93de63fd..69f92d60a4 100644 --- a/library/xmlrpc.client.html +++ b/library/xmlrpc.client.html @@ -5,13 +5,13 @@ - xmlrpc.client --- XML-RPC 客戶端存取 — Python 3.12.3 說明文件 + xmlrpc.client --- XML-RPC 客戶端存取 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -944,7 +945,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -996,7 +997,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xmlrpc.html b/library/xmlrpc.html index c953c9855c..1966061825 100644 --- a/library/xmlrpc.html +++ b/library/xmlrpc.html @@ -5,13 +5,13 @@ - xmlrpc --- XMLRPC 伺服器與用戶模組 — Python 3.12.3 說明文件 + xmlrpc --- XMLRPC 伺服器與用戶模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -326,7 +327,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -378,7 +379,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/xmlrpc.server.html b/library/xmlrpc.server.html index d71052cc06..0e761be4a6 100644 --- a/library/xmlrpc.server.html +++ b/library/xmlrpc.server.html @@ -5,13 +5,13 @@ - xmlrpc.server --- 基本 XML-RPC 伺服器 — Python 3.12.3 說明文件 + xmlrpc.server --- 基本 XML-RPC 伺服器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -786,7 +787,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -838,7 +839,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/zipapp.html b/library/zipapp.html index 56f333ffd6..68ebaa345a 100644 --- a/library/zipapp.html +++ b/library/zipapp.html @@ -5,13 +5,13 @@ - zipapp —-- 管理可執行的 Python zip 封存檔案 — Python 3.12.3 說明文件 + zipapp —-- 管理可執行的 Python zip 封存檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -660,7 +661,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -712,7 +713,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/zipfile.html b/library/zipfile.html index c155a0348b..57facfcdb9 100644 --- a/library/zipfile.html +++ b/library/zipfile.html @@ -5,13 +5,13 @@ - zipfile --- 處理 ZIP 封存檔案 — Python 3.12.3 說明文件 + zipfile --- 處理 ZIP 封存檔案 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -244,7 +245,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1379,7 +1380,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1431,7 +1432,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/zipimport.html b/library/zipimport.html index feab6df06b..091d482d58 100644 --- a/library/zipimport.html +++ b/library/zipimport.html @@ -5,13 +5,13 @@ - zipimport --- 從 Zip 封存檔案匯入模組 — Python 3.12.3 說明文件 + zipimport --- 從 Zip 封存檔案匯入模組 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -538,7 +539,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -590,7 +591,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/zlib.html b/library/zlib.html index 9cd7beffcf..d55d32d479 100644 --- a/library/zlib.html +++ b/library/zlib.html @@ -5,13 +5,13 @@ - zlib --- 相容於 gzip 的壓縮 — Python 3.12.3 說明文件 + zlib --- 相容於 gzip 的壓縮 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -515,7 +516,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -567,7 +568,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/library/zoneinfo.html b/library/zoneinfo.html index 96742564bc..0feb6ff045 100644 --- a/library/zoneinfo.html +++ b/library/zoneinfo.html @@ -5,13 +5,13 @@ - zoneinfo --- IANA 時區支援 — Python 3.12.3 說明文件 + zoneinfo --- IANA 時區支援 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -246,7 +247,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -757,7 +758,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -809,7 +810,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/license.html b/license.html index e3c05e76b4..d5d33c52dc 100644 --- a/license.html +++ b/license.html @@ -5,13 +5,13 @@ - 沿革與授權 — Python 3.12.3 說明文件 + 沿革與授權 — Python 3.12.4 說明文件 - + @@ -19,13 +19,14 @@ + @@ -172,11 +173,11 @@

                目錄

              • 沿革與授權
                • 軟體沿革
                • 關於存取或以其他方式使用 Python 的合約條款
                • 被收錄軟體的授權與致謝
                    @@ -251,7 +252,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -382,35 +383,35 @@

                    關於存取或以其他方式使用 Python 的合約條款Zero-Clause BSD 授權

                    有些被納入 Python 中的軟體是基於不同的授權。這些授權將會與其授權之程式碼一起被列出。關於這些授權的不完整清單,請參閱被收錄軟體的授權與致謝

                    -

                    用於 PYTHON 3.12.3 的 PSF 授權合約

                    +

                    用於 PYTHON 3.12.4 的 PSF 授權合約

                    1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
                        the Individual or Organization ("Licensee") accessing and otherwise using Python
                    -   3.12.3 software in source or binary form and its associated documentation.
                    +   3.12.4 software in source or binary form and its associated documentation.
                     
                     2. Subject to the terms and conditions of this License Agreement, PSF hereby
                        grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
                        analyze, test, perform and/or display publicly, prepare derivative works,
                    -   distribute, and otherwise use Python 3.12.3 alone or in any derivative
                    +   distribute, and otherwise use Python 3.12.4 alone or in any derivative
                        version, provided, however, that PSF's License Agreement and PSF's notice of
                        copyright, i.e., "Copyright © 2001-2023 Python Software Foundation; All Rights
                    -   Reserved" are retained in Python 3.12.3 alone or in any derivative version
                    +   Reserved" are retained in Python 3.12.4 alone or in any derivative version
                        prepared by Licensee.
                     
                     3. In the event Licensee prepares a derivative work that is based on or
                    -   incorporates Python 3.12.3 or any part thereof, and wants to make the
                    +   incorporates Python 3.12.4 or any part thereof, and wants to make the
                        derivative work available to others as provided herein, then Licensee hereby
                        agrees to include in any such work a brief summary of the changes made to Python
                    -   3.12.3.
                    +   3.12.4.
                     
                    -4. PSF is making Python 3.12.3 available to Licensee on an "AS IS" basis.
                    +4. PSF is making Python 3.12.4 available to Licensee on an "AS IS" basis.
                        PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF
                        EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
                        WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
                    -   USE OF PYTHON 3.12.3 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
                    +   USE OF PYTHON 3.12.4 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
                     
                    -5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.12.3
                    +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.12.4
                        FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
                    -   MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.12.3, OR ANY DERIVATIVE
                    +   MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.12.4, OR ANY DERIVATIVE
                        THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
                     
                     6. This License Agreement will automatically terminate upon a material breach of
                    @@ -422,7 +423,7 @@ 

                    關於存取或以其他方式使用 Python 的合約條款 @@ -556,7 +557,7 @@

                    用於 PYTHON 0.9.0 至 1.2 的 CWI 授權合約 -

                    用於 PYTHON 3.12.3 說明文件內程式碼的 ZERO-CLAUSE BSD 授權

                    +

                    用於 PYTHON 3.12.4 說明文件內程式碼的 ZERO-CLAUSE BSD 授權

                    Permission to use, copy, modify, and/or distribute this software for any
                     purpose with or without fee is hereby granted.
                     
                    @@ -1336,11 +1337,11 @@ 

                    目錄

                  • 沿革與授權
                    • 軟體沿革
                    • 關於存取或以其他方式使用 Python 的合約條款
                    • 被收錄軟體的授權與致謝
                        @@ -1418,7 +1419,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1468,7 +1469,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/objects.inv b/objects.inv index 02d2ece213..0166a39679 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/py-modindex.html b/py-modindex.html index c87772527b..9a88b65f3a 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -4,13 +4,13 @@ - Python 模組索引 — Python 3.12.3 說明文件 + Python 模組索引 — Python 3.12.4 說明文件 - + @@ -18,13 +18,14 @@ + @@ -196,7 +197,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1942,7 +1943,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1992,7 +1993,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/compound_stmts.html b/reference/compound_stmts.html index 859541015a..e92d49dbf6 100644 --- a/reference/compound_stmts.html +++ b/reference/compound_stmts.html @@ -5,13 +5,13 @@ - 8. 複合陳述式 — Python 3.12.3 說明文件 + 8. 複合陳述式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -272,7 +273,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1946,7 +1947,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1997,7 +1998,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/datamodel.html b/reference/datamodel.html index 664bb73666..c41398bfdd 100644 --- a/reference/datamodel.html +++ b/reference/datamodel.html @@ -5,13 +5,13 @@ - 3. 資料模型 — Python 3.12.3 說明文件 + 3. 資料模型 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -330,7 +331,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -3650,7 +3651,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -3701,7 +3702,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/executionmodel.html b/reference/executionmodel.html index 3e0e9015c6..f4d4b95cd6 100644 --- a/reference/executionmodel.html +++ b/reference/executionmodel.html @@ -5,13 +5,13 @@ - 4. 執行模型 — Python 3.12.3 說明文件 + 4. 執行模型 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -647,7 +648,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -698,7 +699,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/expressions.html b/reference/expressions.html index c1fd480a32..fabbd7cf0d 100644 --- a/reference/expressions.html +++ b/reference/expressions.html @@ -5,13 +5,13 @@ - 6. 運算式 — Python 3.12.3 說明文件 + 6. 運算式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -273,7 +274,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1862,7 +1863,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1913,7 +1914,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/grammar.html b/reference/grammar.html index cf9df9f3d9..ad2c9f502b 100644 --- a/reference/grammar.html +++ b/reference/grammar.html @@ -5,13 +5,13 @@ - 10. 完整的語法規格書 — Python 3.12.3 說明文件 + 10. 完整的語法規格書 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1232,7 +1233,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1283,7 +1284,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/import.html b/reference/import.html index 96081be9b5..39b1b36020 100644 --- a/reference/import.html +++ b/reference/import.html @@ -5,13 +5,13 @@ - 5. 模組引入系統 — Python 3.12.3 說明文件 + 5. 模組引入系統 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -263,7 +264,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1320,7 +1321,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1371,7 +1372,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/index.html b/reference/index.html index 4c1f0a22a7..2f70b5592c 100644 --- a/reference/index.html +++ b/reference/index.html @@ -5,13 +5,13 @@ - Python 語言參考手冊 — Python 3.12.3 說明文件 + Python 語言參考手冊 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -420,7 +421,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -470,7 +471,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/introduction.html b/reference/introduction.html index 30cf647a73..1776a471f3 100644 --- a/reference/introduction.html +++ b/reference/introduction.html @@ -5,13 +5,13 @@ - 1. 簡介 — Python 3.12.3 說明文件 + 1. 簡介 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -441,7 +442,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -492,7 +493,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/lexical_analysis.html b/reference/lexical_analysis.html index 9821d5bd72..9003eb7c1f 100644 --- a/reference/lexical_analysis.html +++ b/reference/lexical_analysis.html @@ -5,13 +5,13 @@ - 2. 詞法分析 — Python 3.12.3 說明文件 + 2. 詞法分析 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -262,7 +263,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1213,7 +1214,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1264,7 +1265,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/simple_stmts.html b/reference/simple_stmts.html index b48d7fe940..5467977a19 100644 --- a/reference/simple_stmts.html +++ b/reference/simple_stmts.html @@ -5,13 +5,13 @@ - 7. 簡單陳述式 — Python 3.12.3 說明文件 + 7. 簡單陳述式 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -249,7 +250,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1135,7 +1136,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1186,7 +1187,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/reference/toplevel_components.html b/reference/toplevel_components.html index 447098471c..697b372ca0 100644 --- a/reference/toplevel_components.html +++ b/reference/toplevel_components.html @@ -5,13 +5,13 @@ - 9. 最高層級元件 — Python 3.12.3 說明文件 + 9. 最高層級元件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -232,7 +233,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -381,7 +382,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -432,7 +433,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/search.html b/search.html index 91753d34e9..2f676b8125 100644 --- a/search.html +++ b/search.html @@ -4,14 +4,14 @@ - 搜尋 — Python 3.12.3 說明文件 + 搜尋 — Python 3.12.4 說明文件 - + @@ -21,7 +21,7 @@ @@ -31,6 +31,7 @@ + @@ -249,7 +250,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -331,7 +332,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -370,7 +371,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/searchindex.js b/searchindex.js index f3c92abf53..70efd21d3d 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"\"tp slots\"": [[63, "tp-slots"]], "'UnicodeDecodeError' \u6216 'UnicodeEncodeErro' \u932f\u8aa4\u662f\u4ec0\u9ebc\u610f\u601d\uff1f": [[85, "what-does-unicodedecodeerror-or-unicodeencodeerror-error-mean"]], "(De)compression of files": [[149, "de-compression-of-files"]], "*.pyd \u6a94\u662f\u5426\u8207 DLL \u76f8\u540c\uff1f": [[86, "is-a-pyd-file-the-same-as-a-dll"]], "...\u53ea\u70ba\u76ee\u524d\u7684\u4f7f\u7528\u8005\u5b89\u88dd\u5957\u4ef6\uff1f": [[111, "install-packages-just-for-the-current-user"]], "...\u5728 Python 3.4 \u4e4b\u524d\u7684 Python \u7248\u672c\u4e2d\u5b89\u88dd pip\uff1f": [[111, "install-pip-in-versions-of-python-prior-to-python-3-4"]], "...\u5b89\u88dd\u79d1\u5b78\u7684 Python \u5957\u4ef6\uff1f": [[111, "install-scientific-python-packages"]], "...\u5e73\u884c\u5b89\u88dd\u591a\u500b Python \u7248\u672c\u4e26\u4f7f\u7528\u5b83\u5011\uff1f": [[111, "work-with-multiple-versions-of-python-installed-in-parallel"]], "/dev/poll Polling Objects": [[328, "dev-poll-polling-objects"]], "2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3": [[112, "to3-automated-python-2-to-3-code-translation"]], "3.4.3 \u4e2d\u7684\u8b8a\u66f4": [[477, "changed-in-3-4-3"]], "64-bit Specific": [[405, "bit-specific"]], "A CLI application starter template": [[102, "a-cli-application-starter-template"]], "A Cookbook Approach": [[77, "a-cookbook-approach"]], "A Finer-Grained Import Lock": [[476, "a-finer-grained-import-lock"]], "A Hello World Program": [[369, "a-hello-world-program"]], "A Note on IP Versions": [[99, "a-note-on-ip-versions"]], "A Per-Interpreter GIL": [[33, "a-per-interpreter-gil"]], "A Qt GUI for logging": [[102, "a-qt-gui-for-logging"]], "A command-line interface to difflib": [[190, "a-command-line-interface-to-difflib"]], "A more elaborate multiprocessing example": [[102, "a-more-elaborate-multiprocessing-example"]], "ABCs for working with IO": [[386, "abcs-for-working-with-io"]], "ANY": [[389, "any"]], "API": [[382, "api"], [399, "api"]], "API and Feature Removals": [[478, "api-and-feature-removals"], [479, "api-and-feature-removals"], [480, "api-and-feature-removals"], [481, "api-and-feature-removals"]], "API \u51fd\u5f0f": [[5, "api-functions"]], "API \u548c ABI \u7248\u672c\u7ba1\u7406": [[4, "api-and-abi-versioning"]], "API \u8207\u529f\u80fd\u7684\u79fb\u9664": [[477, "api-and-feature-removals"]], "API \u8b8a\u66f4": [[476, "api-changes"], [476, "id2"]], "AS Patterns": [[427, "as-patterns"]], "ASCII \u7de8\u89e3\u78bc\u5668": [[64, "ascii-codecs"]], "AU_read \u7269\u4ef6": [[349, "au-read-objects"]], "AU_write \u7269\u4ef6": [[349, "au-write-objects"]], "Abstract Protocol Support": [[75, "abstract-protocol-support"]], "AbstractBasicAuthHandler \u7269\u4ef6": [[395, "abstractbasicauthhandler-objects"]], "AbstractDigestAuthHandler \u7269\u4ef6": [[395, "abstractdigestauthhandler-objects"]], "Access Rights": [[405, "access-rights"]], "Access to external objects": [[268, "access-to-external-objects"]], "Access to internal objects": [[268, "access-to-internal-objects"]], "Access to message catalogs": [[266, "access-to-message-catalogs"]], "Accessing attributes of extension types": [[58, "accessing-attributes-of-extension-types"]], "Accessing functions from loaded dlls": [[176, "accessing-functions-from-loaded-dlls"]], "Accessing values exported from dlls": [[176, "accessing-values-exported-from-dlls"]], "Accessor Methods": [[410, "accessor-methods"]], "Action classes": [[120, "action-classes"]], "Adapter and converter recipes": [[340, "adapter-and-converter-recipes"]], "Adding contextual information to your logging output": [[102, "adding-contextual-information-to-your-logging-output"]], "Adding data and methods to the Basic example": [[76, "adding-data-and-methods-to-the-basic-example"]], "Adding handlers other than NullHandler to a logger in a library": [[102, "adding-handlers-other-than-nullhandler-to-a-logger-in-a-library"]], "Adding new actions": [[292, "adding-new-actions"]], "Adding new types": [[292, "adding-new-types"]], "Additional Utility Classes and Functions": [[385, "additional-utility-classes-and-functions"]], "Additional modules": [[461, "additional-modules"]], "Additional notes": [[207, "additional-notes"]], "Address Formats": [[283, "address-formats"]], "Address objects": [[259, "address-objects"]], "Advanced API": [[193, "advanced-api"]], "Advanced Debugger Support": [[33, "advanced-debugger-support"]], "Advanced Logging Tutorial": [[101, "advanced-logging-tutorial"]], "Affected APIs": [[344, "affected-apis"]], "Aliases to asynchronous ABCs in collections.abc": [[386, "aliases-to-asynchronous-abcs-in-collections-abc"]], "Aliases to other ABCs in collections.abc": [[386, "aliases-to-other-abcs-in-collections-abc"]], "Aliases to other concrete types": [[386, "aliases-to-other-concrete-types"]], "All start methods": [[283, "all-start-methods"]], "Allocator Domains": [[42, "allocator-domains"]], "Allowed members and attributes of enumerations": [[94, "allowed-members-and-attributes-of-enumerations"]], "Alternate Implementations": [[434, "alternate-implementations"]], "Alternative bundles": [[461, "alternative-bundles"]], "An example dictionary-based configuration": [[102, "an-example-dictionary-based-configuration"]], "An example of extending EnvBuilder": [[399, "an-example-of-extending-envbuilder"]], "Analysis functions": [[191, "analysis-functions"]], "Ancillary events": [[353, "ancillary-events"]], "Angular conversion": [[275, "angular-conversion"]], "Animation control": [[384, "animation-control"]], "Annotated assignment statements": [[436, "annotated-assignment-statements"]], "Annotation scopes": [[429, "annotation-scopes"]], "Any \u578b\u5225": [[386, "the-any-type"]], "Appearance": [[384, "appearance"]], "Application-Layer Protocol Negotiation Support": [[478, "application-layer-protocol-negotiation-support"]], "Applications": [[347, "applications"]], "Approximating importlib.import_module()": [[250, "approximating-importlib-import-module"]], "Architecture": [[369, "architecture"]], "Archiving example": [[332, "archiving-example"]], "Archiving example with base_dir": [[332, "archiving-example-with-base-dir"]], "Archiving operations": [[332, "archiving-operations"]], "Argparse \u6559\u5b78": [[89, "argparse-tutorial"]], "Argument Clinic \u6307\u5357": [[90, "argument-clinic-how-to"]], "Argument abbreviations (prefix matching)": [[120, "argument-abbreviations-prefix-matching"]], "Argument groups": [[120, "argument-groups"]], "ArgumentParser \u7269\u4ef6": [[120, "argumentparser-objects"]], "Arguments containing -": [[120, "arguments-containing"]], "Arguments in shebang lines": [[461, "arguments-in-shebang-lines"]], "Arithmetic conversions": [[430, "arithmetic-conversions"]], "Arithmetic operators": [[259, "arithmetic-operators"]], "Arrays": [[176, "arrays"]], "Arrays and pointers": [[176, "arrays-and-pointers"]], "Assignment expressions": [[430, "assignment-expressions"], [481, "assignment-expressions"]], "Assignment statements": [[436, "assignment-statements"]], "Async Object Structures": [[63, "async-object-structures"]], "Asynchronous Context Managers": [[428, "asynchronous-context-managers"]], "Asynchronous Iterators": [[428, "asynchronous-iterators"]], "Asynchronous Mixins": [[338, "asynchronous-mixins"]], "Asynchronous Notifications": [[33, "asynchronous-notifications"]], "Asynchronous generator functions": [[428, "asynchronous-generator-functions"], [430, "asynchronous-generator-functions"]], "Asynchronous generator-iterator methods": [[430, "asynchronous-generator-iterator-methods"]], "Atoms": [[430, "atoms"]], "Attr Objects": [[410, "attr-objects"]], "Attribute Access": [[464, "attribute-access"]], "Attribute Management": [[75, "attribute-management"]], "Attribute references": [[430, "attribute-references"]], "AttributeErrors": [[472, "attributeerrors"]], "Attributes": [[235, "attributes"]], "Attributes and Color": [[92, "attributes-and-color"]], "Attributes of the float_info named tuple": [[352, "id2"]], "Audio Device Objects": [[295, "audio-device-objects"]], "Audioop": [[426, "audioop"]], "Augmented Assignment": [[462, "augmented-assignment"]], "Augmented assignment statements": [[436, "augmented-assignment-statements"]], "Authentication keys": [[283, "authentication-keys"]], "Automatic indentation": [[247, "automatic-indentation"]], "Automatic name notification": [[93, "automatic-name-notification"]], "Autospeccing\uff08\u81ea\u52d5\u898f\u683c\uff09": [[389, "autospeccing"]], "Available Context Managers": [[400, "available-context-managers"]], "Available Functions": [[400, "available-functions"]], "Available Types": [[183, "available-types"]], "Avoiding PyObject_New": [[100, "avoiding-pyobject-new"]], "Await expression": [[430, "await-expression"]], "Awaitable Objects": [[428, "awaitable-objects"]], "Awaitables": [[139, "awaitables"]], "Aware and Naive Objects": [[183, "aware-and-naive-objects"]], "BLAKE2": [[235, "blake2"]], "Babyl \u7269\u4ef6": [[271, "babyl-objects"]], "BabylMessage \u7269\u4ef6": [[271, "babylmessage-objects"]], "Background, details, hints, tips and caveats": [[266, "background-details-hints-tips-and-caveats"]], "Bad Method Resolution Orders": [[103, "bad-method-resolution-orders"]], "Barrier": [[138, "barrier"]], "Barrier Objects": [[365, "barrier-objects"]], "Base Protocol": [[133, "base-protocol"]], "Base Protocols": [[133, "base-protocols"]], "Base Transport": [[133, "base-transport"]], "Base object types and macros": [[58, "base-object-types-and-macros"]], "BaseHandler \u7269\u4ef6": [[395, "basehandler-objects"]], "BaseRotatingHandler": [[269, "baserotatinghandler"]], "Basic API": [[193, "basic-api"]], "Basic Authentication": [[110, "id5"]], "Basic Widgets": [[375, "basic-widgets"]], "Basic customization": [[428, "basic-customization"]], "Best defaults": [[341, "best-defaults"]], "Beyond Very High Level Embedding: An overview": [[72, "beyond-very-high-level-embedding-an-overview"]], "Beyond sys.argv": [[120, "beyond-sys-argv"]], "Binary Objects": [[419, "binary-objects"]], "Binary Sequence Types --- bytes, bytearray, memoryview": [[344, "binary-sequence-types-bytes-bytearray-memoryview"]], "Binary Transforms": [[158, "binary-transforms"]], "Binary arithmetic operations": [[430, "binary-arithmetic-operations"]], "Binary bitwise operations": [[430, "binary-bitwise-operations"]], "Binding of names": [[429, "binding-of-names"]], "Bindings and Events": [[369, "bindings-and-events"]], "Bit fields in structures and unions": [[176, "bit-fields-in-structures-and-unions"]], "Blank lines": [[435, "blank-lines"]], "Blob \u7269\u4ef6": [[340, "blob-objects"]], "Boolean operations": [[430, "boolean-operations"]], "Boolean value of Enum classes and members": [[94, "boolean-value-of-enum-classes-and-members"]], "Boolean \u578b\u5225 - bool": [[344, "boolean-type-bool"]], "Boolean\uff08\u5e03\u6797\uff09\u7269\u4ef6": [[6, "boolean-objects"]], "Boolean\uff08\u5e03\u6797\uff09\u904b\u7b97 --- and, or, not": [[344, "boolean-operations-and-or-not"]], "Bootstrapping pip By Default": [[469, "bootstrapping-pip-by-default"], [477, "bootstrapping-pip-by-default"]], "BoundedSemaphore": [[138, "boundedsemaphore"]], "Browser Controller Objects": [[403, "browser-controller-objects"]], "Buffer Object Structures": [[63, "buffer-object-structures"]], "Buffer flags": [[255, "buffer-flags"]], "Buffer request types": [[7, "buffer-request-types"]], "Buffer structure": [[7, "buffer-structure"]], "Buffer-related functions": [[7, "buffer-related-functions"]], "Buffered Streaming Protocols": [[133, "buffered-streaming-protocols"]], "Buffered Streams": [[258, "buffered-streams"]], "Buffering logging messages and outputting them conditionally": [[102, "buffering-logging-messages-and-outputting-them-conditionally"]], "Bugs": [[376, "bugs"]], "Bugs and caveats": [[33, "bugs-and-caveats"]], "Build": [[483, "build"], [483, "id15"], [483, "id24"], [483, "id39"], [483, "id45"], [483, "id55"], [483, "id65"], [483, "id77"], [483, "id87"], [483, "id97"], [483, "id106"], [483, "id116"], [483, "id122"], [483, "id132"], [483, "id142"], [483, "id151"], [483, "id163"], [483, "id172"], [483, "id181"], [483, "id189"], [483, "id198"], [483, "id206"], [483, "id214"], [483, "id224"], [483, "id235"], [483, "id245"], [483, "id254"], [483, "id264"], [483, "id273"], [483, "id282"], [483, "id293"], [483, "id303"], [483, "id313"], [483, "id323"], [483, "id334"], [483, "id345"], [483, "id352"], [483, "id360"], [483, "id370"], [483, "id381"], [483, "id392"], [483, "id403"], [483, "id419"], [483, "id430"], [483, "id437"], [483, "id444"], [483, "id454"], [483, "id465"], [483, "id474"], [483, "id489"], [483, "id498"], [483, "id506"], [483, "id515"], [483, "id522"], [483, "id528"], [483, "id538"], [483, "id545"], [483, "id551"], [483, "id561"], [483, "id567"], [483, "id575"], [483, "id579"], [483, "id589"], [483, "id593"], [483, "id599"], [483, "id606"], [483, "id614"], [483, "id620"], [483, "id631"], [483, "id640"], [483, "id653"], [483, "id665"], [483, "id675"], [483, "id685"], [483, "id688"], [483, "id690"], [483, "id702"], [483, "id707"], [483, "id718"], [483, "id724"], [483, "id729"], [483, "id735"]], "Build Changes": [[474, "build-changes"], [480, "build-changes"], [482, "build-changes"]], "Build and C API Changes": [[465, "build-and-c-api-changes"], [466, "build-and-c-api-changes"], [467, "build-and-c-api-changes"], [468, "build-and-c-api-changes"], [469, "build-and-c-api-changes"], [470, "build-and-c-api-changes"], [471, "build-and-c-api-changes"], [475, "build-and-c-api-changes"], [478, "build-and-c-api-changes"], [479, "build-and-c-api-changes"], [481, "build-and-c-api-changes"]], "Building Arbitrary Values": [[73, "building-arbitrary-values"]], "Building C and C++ Extensions with setuptools": [[71, "building-c-and-c-extensions-with-setuptools"]], "Building C extensions": [[476, "building-c-extensions"]], "Building XML documents": [[413, "building-xml-documents"]], "Building generic types and type aliases": [[386, "building-generic-types-and-type-aliases"]], "Building values": [[5, "building-values"]], "Built-in Codecs": [[64, "built-in-codecs"]], "Built-in functions": [[95, "built-in-functions"], [428, "built-in-functions"]], "Built-in methods": [[428, "built-in-methods"]], "Builtins": [[470, "builtins"]], "Builtins and restricted execution": [[429, "builtins-and-restricted-execution"]], "Byte Order, Size, and Alignment": [[347, "byte-order-size-and-alignment"]], "Bytearray Objects": [[344, "bytearray-objects"]], "Bytecode analysis": [[191, "bytecode-analysis"]], "Bytes Objects": [[344, "bytes-objects"]], "Bytes and Bytearray Operations": [[344, "bytes-and-bytearray-operations"]], "C API": [[483, "c-api"], [483, "id9"], [483, "id28"], [483, "id49"], [483, "id59"], [483, "id67"], [483, "id72"], [483, "id81"], [483, "id92"], [483, "id100"], [483, "id109"], [483, "id126"], [483, "id136"], [483, "id145"], [483, "id157"], [483, "id167"], [483, "id176"], [483, "id184"], [483, "id193"], [483, "id201"], [483, "id209"], [483, "id218"], [483, "id229"], [483, "id239"], [483, "id248"], [483, "id258"], [483, "id268"], [483, "id276"], [483, "id287"], [483, "id297"], [483, "id307"], [483, "id317"], [483, "id328"], [483, "id339"], [483, "id348"], [483, "id354"], [483, "id364"], [483, "id375"], [483, "id386"], [483, "id397"], [483, "id407"], [483, "id424"], [483, "id426"], [483, "id459"], [483, "id477"], [483, "id484"], [483, "id494"], [483, "id500"], [483, "id510"], [483, "id520"], [483, "id533"], [483, "id543"], [483, "id560"], [483, "id572"], [483, "id582"], [483, "id598"], [483, "id604"], [483, "id619"], [483, "id632"], [483, "id643"], [483, "id655"], [483, "id660"], [483, "id721"], [483, "id730"], [483, "id736"]], "C API \u4e2d\u5df2\u68c4\u7528\u7684\u51fd\u5f0f\u548c\u578b\u5225": [[476, "deprecated-functions-and-types-of-the-c-api"]], "C API \u4e2d\u7684\u6539\u52d5": [[472, "changes-in-the-c-api"], [477, "changes-in-the-c-api"], [478, "changes-in-the-c-api"], [479, "changes-in-the-c-api"], [480, "changes-in-the-c-api"], [481, "changes-in-the-c-api"], [482, "changes-in-the-c-api"]], "C API \u7a69\u5b9a\u6027": [[57, "c-api-stability"]], "C API \u8b8a\u66f4": [[472, "c-api-changes"], [473, "c-api-changes"], [474, "c-api-changes"], [480, "c-api-changes"], [482, "c-api-changes"]], "C \u64f4\u5145\u6a21\u7d44": [[456, "c-extensions"]], "CA certificates": [[341, "ca-certificates"]], "CAB \u7269\u4ef6": [[281, "cab-objects"]], "CGIXMLRPCRequestHandler": [[420, "cgixmlrpcrequesthandler"]], "CPython bytecode changes": [[479, "cpython-bytecode-changes"], [480, "cpython-bytecode-changes"], [481, "cpython-bytecode-changes"], [482, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc (bytecode) \u8b8a\u66f4": [[473, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc\u66f4\u6539": [[472, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc\u8b8a\u66f4": [[474, "cpython-bytecode-changes"]], "CPython \u5be6\u4f5c\u8b8a\u66f4": [[477, "cpython-implementation-changes"]], "CacheFTPHandler \u7269\u4ef6": [[395, "cacheftphandler-objects"]], "Cached bytecode invalidation": [[432, "cached-bytecode-invalidation"]], "Callable types": [[428, "callable-types"]], "Callback example 1: trivial callback": [[292, "callback-example-1-trivial-callback"]], "Callback example 2: check option order": [[292, "callback-example-2-check-option-order"]], "Callback example 3: check option order (generalized)": [[292, "callback-example-3-check-option-order-generalized"]], "Callback example 4: check arbitrary condition": [[292, "callback-example-4-check-arbitrary-condition"]], "Callback example 5: fixed arguments": [[292, "callback-example-5-fixed-arguments"]], "Callback example 6: variable arguments": [[292, "callback-example-6-variable-arguments"]], "Callback function arguments": [[353, "callback-function-arguments"]], "Callback functions": [[176, "callback-functions"]], "Calling Python Functions from C": [[73, "calling-python-functions-from-c"]], "Calling functions": [[176, "calling-functions"]], "Calling functions on elements": [[95, "calling-functions-on-elements"]], "Calling functions with your own custom data types": [[176, "calling-functions-with-your-own-custom-data-types"]], "Calling functions, continued": [[176, "calling-functions-continued"]], "Calling variadic functions": [[176, "calling-variadic-functions"]], "Calls": [[430, "calls"]], "Calltips": [[247, "calltips"]], "Can I create an object class with some methods implemented in C and others in Python (e.g. through inheritance)?": [[79, "can-i-create-an-object-class-with-some-methods-implemented-in-c-and-others-in-python-e-g-through-inheritance"]], "Can I end a raw string with an odd number of backslashes?": [[85, "can-i-end-a-raw-string-with-an-odd-number-of-backslashes"]], "Capsules": [[11, "capsules"], [469, "capsules"]], "Capture Patterns": [[427, "capture-patterns"]], "Caring about security": [[151, "caring-about-security"]], "Catching exceptions from __enter__ methods": [[169, "catching-exceptions-from-enter-methods"]], "Cautions about fork()": [[33, "cautions-about-fork"]], "Caveats": [[421, "caveats"]], "Cell \u7269\u4ef6": [[12, "cell-objects"]], "Certificate chains": [[341, "certificate-chains"]], "Certificates": [[341, "certificates"]], "ChainMap \u7269\u4ef6": [[160, "chainmap-objects"]], "ChainMap \u7bc4\u4f8b\u548c\u7528\u6cd5": [[160, "chainmap-examples-and-recipes"]], "Changelog\uff08\u66f4\u52d5\u65e5\u8a8c\uff09": [[483, "changelog"]], "Changes Already Present In Python 2.6": [[470, "changes-already-present-in-python-2-6"]], "Changes To Exceptions": [[470, "changes-to-exceptions"]], "Changes in 'python' Command Behavior": [[477, "changes-in-python-command-behavior"], [479, "changes-in-python-command-behavior"]], "Changes in Python Behavior": [[480, "changes-in-python-behavior"]], "Changes in Python behavior": [[478, "changes-in-python-behavior"], [481, "changes-in-python-behavior"]], "Changes in the Python API": [[474, "changes-in-the-python-api"], [478, "changes-in-the-python-api"], [479, "changes-in-the-python-api"], [480, "changes-in-the-python-api"], [481, "changes-in-the-python-api"], [481, "id2"], [482, "changes-in-the-python-api"]], "Changes since Python 2.6": [[384, "changes-since-python-2-6"]], "Changes since Python 3.0": [[384, "changes-since-python-3-0"]], "Changes to Built-in Functions": [[462, "changes-to-built-in-functions"]], "Changes to the Development Process": [[468, "changes-to-the-development-process"]], "Changes to the Handling of Deprecation Warnings": [[469, "changes-to-the-handling-of-deprecation-warnings"]], "Changing Static Types to Heap Types": [[100, "changing-static-types-to-heap-types"]], "Changing languages on the fly": [[230, "changing-languages-on-the-fly"]], "Changing the format of displayed messages": [[101, "changing-the-format-of-displayed-messages"]], "Character Encodings": [[262, "character-encodings"]], "Character Map Codecs": [[64, "character-map-codecs"]], "Checking for a Pair": [[319, "checking-for-a-pair"]], "Checking if a module can be imported": [[250, "checking-if-a-module-can-be-imported"]], "Cipher selection": [[341, "cipher-selection"]], "Class Instances": [[428, "class-instances"]], "Class Objects": [[312, "class-objects"]], "Class Patterns": [[427, "class-patterns"]], "Class and Module Fixtures": [[388, "class-and-module-fixtures"]], "Class definitions": [[427, "class-definitions"]], "Class definition\uff08\u985e\u5225\u5b9a\u7fa9\uff09\u8a9e\u6cd5": [[440, "class-definition-syntax"]], "Class instances": [[428, "id3"]], "Class method objects": [[428, "class-method-objects"]], "Class methods": [[93, "class-methods"]], "Class \u53ca\u5be6\u4f8b\u8b8a\u6578": [[440, "class-and-instance-variables"]], "Class \u7269\u4ef6": [[440, "class-objects"]], "Class-based API": [[230, "class-based-api"]], "Classes": [[329, "classes"], [347, "classes"], [428, "classes"]], "Classes and Class Instances": [[344, "classes-and-class-instances"]], "Classes and functions": [[388, "classes-and-functions"]], "Class\uff08\u985e\u5225\uff09": [[440, "classes"]], "Cleaning up in an __enter__ implementation": [[169, "cleaning-up-in-an-enter-implementation"]], "Cleanup": [[283, "cleanup"], [292, "cleanup"]], "Client-side operation": [[341, "client-side-operation"]], "Clock ID Constants": [[366, "clock-id-constants"]], "Closing thoughts": [[93, "closing-thoughts"]], "Cmd Example": [[155, "cmd-example"]], "Cmd \u7269\u4ef6": [[155, "cmd-objects"]], "Code Context": [[247, "code-context"]], "Code Objects": [[344, "code-objects"]], "Code Objects Bit Flags": [[255, "code-objects-bit-flags"]], "Code Repository": [[475, "code-repository"]], "Code objects": [[428, "code-objects"]], "Codec Base Classes": [[158, "codec-base-classes"]], "Codecs": [[475, "codecs"]], "Collections Abstract Base Classes": [[161, "collections-abstract-base-classes"]], "Collections Abstract Base Classes -- Detailed Descriptions": [[161, "collections-abstract-base-classes-detailed-descriptions"]], "Color control": [[384, "color-control"]], "Column Identifiers": [[376, "column-identifiers"]], "Combinatoric functions": [[95, "combinatoric-functions"]], "Combined key and certificate": [[341, "combined-key-and-certificate"]], "Combining members of Flag": [[94, "combining-members-of-flag"]], "Combobox": [[376, "combobox"]], "Command-Line Interface": [[311, "command-line-interface"], [358, "command-line-interface"], [422, "command-line-interface"]], "Command-Line Usage": [[378, "command-line-usage"], [380, "command-line-usage"]], "Command-line interface": [[191, "command-line-interface"]], "Command-line options": [[358, "command-line-options"], [422, "command-line-options"]], "Command-line use": [[163, "command-line-use"]], "Comment Objects": [[410, "comment-objects"]], "Comments": [[435, "comments"]], "Common Problems": [[106, "common-problems"]], "Common Sequence Operations": [[344, "common-sequence-operations"]], "Common Stumbling Blocks": [[470, "common-stumbling-blocks"]], "Common problems and solutions": [[151, "common-problems-and-solutions"]], "Comparing Strings": [[109, "comparing-strings"]], "Comparison operators": [[259, "comparison-operators"]], "Comparisons": [[94, "comparisons"], [99, "comparisons"], [430, "comparisons"]], "Compilation Flags": [[106, "compilation-flags"]], "Compilation and Linkage": [[73, "compilation-and-linkage"]], "Compile-time configuration": [[425, "compile-time-configuration"]], "Compiler and linker flags": [[456, "compiler-and-linker-flags"]], "Compiling Regular Expressions": [[106, "compiling-regular-expressions"]], "Compiling and Linking under Unix-like systems": [[72, "compiling-and-linking-under-unix-like-systems"]], "Complete Practical Example": [[93, "complete-practical-example"]], "Completion": [[320, "completion"]], "Completions": [[247, "completions"]], "Complex arrays": [[7, "complex-arrays"]], "Composability": [[95, "composability"]], "Compound shapes": [[384, "compound-shapes"]], "Compressing and decompressing data in memory": [[270, "compressing-and-decompressing-data-in-memory"]], "Compute differences": [[382, "compute-differences"]], "Condition": [[138, "condition"]], "Condition Objects": [[365, "condition-objects"]], "Conditional expressions": [[430, "conditional-expressions"]], "ConfigParser \u7269\u4ef6": [[167, "configparser-objects"]], "Configuration dictionary schema": [[268, "configuration-dictionary-schema"]], "Configuration file format": [[268, "configuration-file-format"]], "Configuration functions": [[268, "configuration-functions"]], "Configuration server example": [[102, "configuration-server-example"]], "Configuration variables": [[355, "configuration-variables"]], "Configuring Logging": [[101, "configuring-logging"]], "Configuring Logging for a Library": [[101, "configuring-logging-for-a-library"]], "Configuring QueueHandler and QueueListener": [[268, "configuring-queuehandler-and-queuelistener"]], "Configuring filters with dictConfig()": [[102, "configuring-filters-with-dictconfig"]], "Configuring the data sources": [[425, "configuring-the-data-sources"]], "Configuring the limit": [[344, "configuring-the-limit"]], "Conflicts between options": [[292, "conflicts-between-options"]], "Conformance": [[410, "conformance"]], "Connecting Existing Sockets": [[133, "connecting-existing-sockets"]], "Connection Objects": [[283, "connection-objects"]], "Connection \u7269\u4ef6": [[340, "connection-objects"]], "Console I/O": [[282, "console-i-o"]], "Constants": [[177, "constants"]], "Consumer API": [[299, "consumer-api"]], "Content Manager Instances": [[197, "content-manager-instances"]], "Content Model Descriptions": [[314, "module-xml.parsers.expat.model"]], "ContentHandler \u7269\u4ef6": [[415, "contenthandler-objects"]], "Context Manager Types": [[344, "context-manager-types"]], "Context Variables": [[170, "context-variables"]], "Context menus": [[247, "context-menus"]], "Context objects": [[186, "context-objects"]], "Context \u578b\u5225": [[466, "the-context-type"]], "Contexts and start methods": [[283, "contexts-and-start-methods"]], "Controlling the Garbage Collector State": [[28, "controlling-the-garbage-collector-state"]], "Convenience Functions": [[419, "convenience-functions"]], "Convenience factory functions": [[259, "convenience-factory-functions"]], "Conversion to Strings and Integers": [[259, "conversion-to-strings-and-integers"]], "Converting Between File Encodings": [[109, "converting-between-file-encodings"]], "Converting an argument sequence to a string on Windows": [[348, "converting-an-argument-sequence-to-a-string-on-windows"]], "Converting to Bytes": [[109, "converting-to-bytes"]], "Cookie \u7269\u4ef6": [[243, "cookie-objects"], [244, "cookie-objects"]], "Cookie \u7ba1\u7406": [[426, "cookie-management"]], "CookieJar \u8207 FileCookieJar \u7269\u4ef6": [[243, "cookiejar-and-filecookiejar-objects"]], "CookiePolicy \u7269\u4ef6": [[243, "cookiepolicy-objects"]], "Core Functionality": [[120, "core-functionality"]], "Core and Builtins": [[483, "core-and-builtins"], [483, "id3"], [483, "id11"], [483, "id20"], [483, "id29"], [483, "id35"], [483, "id41"], [483, "id51"], [483, "id61"], [483, "id68"], [483, "id74"], [483, "id83"], [483, "id93"], [483, "id102"], [483, "id112"], [483, "id118"], [483, "id128"], [483, "id138"], [483, "id147"], [483, "id159"], [483, "id168"], [483, "id177"], [483, "id185"], [483, "id194"], [483, "id202"], [483, "id210"], [483, "id220"], [483, "id231"], [483, "id241"], [483, "id250"], [483, "id260"], [483, "id269"], [483, "id278"], [483, "id289"], [483, "id299"], [483, "id309"], [483, "id319"], [483, "id330"], [483, "id341"], [483, "id349"], [483, "id356"], [483, "id366"], [483, "id377"], [483, "id388"], [483, "id399"], [483, "id408"], [483, "id415"], [483, "id427"], [483, "id433"], [483, "id440"], [483, "id450"], [483, "id461"], [483, "id470"], [483, "id478"], [483, "id485"], [483, "id495"], [483, "id502"], [483, "id511"], [483, "id524"], [483, "id534"], [483, "id547"], [483, "id557"], [483, "id566"], [483, "id568"], [483, "id576"], [483, "id580"], [483, "id585"], [483, "id590"], [483, "id595"], [483, "id601"], [483, "id609"], [483, "id616"], [483, "id625"], [483, "id635"], [483, "id645"], [483, "id649"], [483, "id657"], [483, "id666"], [483, "id670"], [483, "id678"], [483, "id680"], [483, "id691"], [483, "id693"], [483, "id695"], [483, "id700"], [483, "id703"], [483, "id708"], [483, "id710"], [483, "id716"], [483, "id722"], [483, "id727"], [483, "id732"]], "Coroutine Objects": [[428, "coroutine-objects"]], "Coroutine Utility Functions": [[385, "coroutine-utility-functions"]], "Coroutine function definition": [[427, "coroutine-function-definition"]], "Coroutine functions": [[428, "coroutine-functions"]], "Coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6": [[19, "coroutine-objects"]], "Counter \u7269\u4ef6": [[160, "counter-objects"]], "Coupling Widget Variables": [[369, "coupling-widget-variables"]], "Creating Address/Network/Interface objects": [[99, "creating-address-network-interface-objects"]], "Creating Heap-Allocated Types": [[61, "creating-heap-allocated-types"]], "Creating Standalone Applications with zipapp": [[421, "creating-standalone-applications-with-zipapp"]], "Creating Tasks": [[139, "creating-tasks"]], "Creating a lot of loggers": [[102, "creating-a-lot-of-loggers"]], "Creating and accessing Unicode strings": [[64, "creating-and-accessing-unicode-strings"]], "Creating hash objects": [[235, "creating-hash-objects"]], "Creating members that are mixed with other data types": [[94, "creating-members-that-are-mixed-with-other-data-types"]], "Creating new iterators": [[95, "creating-new-iterators"]], "Creating the class object": [[428, "creating-the-class-object"]], "Creating the parser": [[292, "creating-the-parser"]], "Credits": [[235, "credits"]], "Cross Compiling Options": [[456, "cross-compiling-options"]], "Current State of Generators, Coroutines, and Asynchronous Generators": [[255, "current-state-of-generators-coroutines-and-asynchronous-generators"]], "Curses Programming with Python": [[92, "curses-programming-with-python"]], "Cursor \u7269\u4ef6": [[340, "cursor-objects"]], "Custom Exceptions": [[259, "custom-exceptions"]], "Custom Levels": [[101, "custom-levels"]], "Custom Policies": [[132, "custom-policies"]], "Custom Reduction for Types, Functions, and Other Objects": [[299, "custom-reduction-for-types-functions-and-other-objects"]], "Custom classes": [[428, "custom-classes"]], "Custom handling of levels": [[102, "custom-handling-of-levels"]], "Custom validators": [[93, "custom-validators"]], "Customization": [[461, "customization"]], "Customization via INI files": [[461, "customization-via-ini-files"]], "Customize Memory Allocators": [[42, "customize-memory-allocators"]], "Customize pymalloc Arena Allocator": [[42, "customize-pymalloc-arena-allocator"]], "Customized exception formatting": [[102, "customized-exception-formatting"]], "Customized managers": [[283, "customized-managers"]], "Customized names": [[93, "customized-names"]], "Customizing LogRecord": [[102, "customizing-logrecord"]], "Customizing Parser Behaviour": [[167, "customizing-parser-behaviour"]], "Customizing attribute access": [[428, "customizing-attribute-access"]], "Customizing class creation": [[428, "customizing-class-creation"]], "Customizing default Python versions": [[461, "customizing-default-python-versions"]], "Customizing file parsing": [[120, "customizing-file-parsing"]], "Customizing handlers with dictConfig()": [[102, "customizing-handlers-with-dictconfig"]], "Customizing instance and subclass checks": [[428, "customizing-instance-and-subclass-checks"]], "Customizing module attribute access": [[428, "customizing-module-attribute-access"]], "Customizing positional arguments in class pattern matching": [[428, "customizing-positional-arguments-in-class-pattern-matching"]], "DEFAULT": [[389, "default"]], "DNS": [[126, "dns"]], "DOM \u652f\u63f4": [[462, "dom-support"]], "DOM \u7269\u4ef6": [[411, "dom-objects"]], "DOM \u7bc4\u4f8b": [[411, "dom-example"]], "DOMEventStream \u7269\u4ef6": [[412, "domeventstream-objects"]], "DOMImplementation \u7269\u4ef6": [[410, "domimplementation-objects"]], "DTDHandler \u7269\u4ef6": [[415, "dtdhandler-objects"]], "DTrace and SystemTap probing support": [[479, "dtrace-and-systemtap-probing-support"]], "Data": [[110, "data"]], "Data Types That Support Iterators": [[95, "data-types-that-support-iterators"]], "Data sources": [[425, "data-sources"]], "Data stream format": [[299, "data-stream-format"]], "Data types": [[176, "data-types"]], "DataHandler \u7269\u4ef6": [[395, "datahandler-objects"]], "Database Objects": [[281, "database-objects"]], "Dataclass support": [[94, "dataclass-support"]], "Datagram Protocols": [[133, "datagram-protocols"]], "Datagram Transports": [[133, "datagram-transports"]], "DatagramHandler": [[269, "datagramhandler"]], "Date/Time Type": [[465, "date-time-type"]], "DateTime \u7269\u4ef6": [[20, "datetime-objects"]], "Dealing with handlers that block": [[102, "dealing-with-handlers-that-block"]], "Debug build uses the same ABI as release build": [[481, "debug-build-uses-the-same-abi-as-release-build"]], "Debug hooks on the Python memory allocators": [[42, "debug-hooks-on-the-python-memory-allocators"]], "Debug menu (Shell window only)": [[247, "debug-menu-shell-window-only"]], "Debug options": [[456, "debug-options"]], "Debugger Commands": [[297, "debugger-commands"]], "Debugging": [[193, "debugging"]], "Debugging C API extensions and CPython Internals with GDB": [[96, "debugging-c-api-extensions-and-cpython-internals-with-gdb"]], "Debugging CGI scripts": [[151, "debugging-cgi-scripts"]], "Decimal FAQ": [[186, "decimal-faq"]], "Decimal objects": [[186, "decimal-objects"]], "Decimal \u578b\u5225": [[466, "the-decimal-type"]], "Decompression pitfalls": [[422, "decompression-pitfalls"]], "Default Memory Allocators": [[42, "default-memory-allocators"]], "Default Warning Filter": [[400, "default-warning-filter"]], "Default adapters and converters (deprecated)": [[340, "default-adapters-and-converters-deprecated"]], "Default behaviors of extraction": [[422, "default-behaviors-of-extraction"]], "Default named filters": [[358, "default-named-filters"]], "Default values": [[292, "default-values"]], "DefaultCookiePolicy \u7269\u4ef6": [[243, "defaultcookiepolicy-objects"]], "Deferred translations": [[230, "deferred-translations"]], "Defining Extension Types: Assorted Topics": [[75, "defining-extension-types-assorted-topics"]], "Defining Extension Types: Tutorial": [[76, "defining-extension-types-tutorial"]], "Defining Getters and Setters": [[58, "defining-getters-and-setters"]], "Defining Heap Types": [[100, "defining-heap-types"]], "Defining Networks": [[99, "defining-networks"]], "Defining a callback option": [[292, "defining-a-callback-option"]], "Defining options": [[292, "defining-options"]], "Defining tp_dealloc": [[100, "defining-tp-dealloc"]], "Definition and introduction": [[93, "definition-and-introduction"]], "Delegating tp_traverse": [[100, "delegating-tp-traverse"]], "Deleted and Deprecated Modules": [[462, "deleted-and-deprecated-modules"]], "Delimiters": [[435, "delimiters"]], "Demos and Tools": [[474, "demos-and-tools"], [481, "demos-and-tools"]], "Deploying Web applications using Gunicorn and uWSGI": [[102, "deploying-web-applications-using-gunicorn-and-uwsgi"]], "Deprecated Build Options": [[479, "deprecated-build-options"]], "Deprecated Python Behavior": [[478, "deprecated-python-behavior"], [480, "deprecated-python-behavior"]], "Deprecated Python behavior": [[479, "deprecated-python-behavior"]], "Deprecated Python modules, functions and methods": [[478, "deprecated-python-modules-functions-and-methods"], [479, "deprecated-python-modules-functions-and-methods"], [480, "deprecated-python-modules-functions-and-methods"]], "Deprecated functions and types of the C API": [[479, "deprecated-functions-and-types-of-the-c-api"], [480, "deprecated-functions-and-types-of-the-c-api"]], "Deprecation Timeline of Major Features": [[386, "deprecation-timeline-of-major-features"]], "Deprecations and Removals": [[468, "deprecations-and-removals"]], "Deprecations in the Python API": [[477, "deprecations-in-the-python-api"]], "Derived Enumerations": [[94, "derived-enumerations"]], "Describing Warning Filters": [[400, "describing-warning-filters"]], "Descriptor-typed fields": [[181, "descriptor-typed-fields"]], "Descriptors": [[464, "descriptors"]], "Descriptor\uff08\u63cf\u8ff0\u5668\uff09\u7269\u4ef6": [[21, "descriptor-objects"]], "Determining if an Object is Aware or Naive": [[183, "determining-if-an-object-is-aware-or-naive"]], "Determining the appropriate metaclass": [[428, "determining-the-appropriate-metaclass"]], "Developing tkinter applications": [[247, "developing-tkinter-applications"]], "Diagnostics": [[461, "diagnostics"]], "Dialect \u8207\u683c\u5f0f\u53c3\u6578": [[175, "dialects-and-formatting-parameters"]], "Dictionary Merge & Update Operators": [[482, "dictionary-merge-update-operators"]], "Dictionary Schema Details": [[268, "dictionary-schema-details"]], "Dictionary displays": [[430, "dictionary-displays"]], "Differ Example": [[190, "differ-example"]], "Differ Objects": [[190, "differ-objects"]], "Differences Between Unix and Windows": [[77, "differences-between-unix-and-windows"]], "Directives": [[193, "directives"]], "Directory Objects": [[281, "directory-objects"]], "Directory and files operations": [[332, "directory-and-files-operations"]], "Disabling events": [[353, "disabling-events"]], "Disabling use of vfork() or posix_spawn()": [[348, "disabling-use-of-vfork-or-posix-spawn"]], "Dispatch Tables": [[299, "dispatch-tables"]], "Display the top 10": [[382, "display-the-top-10"]], "Displaying Text": [[92, "displaying-text"]], "Displaying the date/time in messages": [[101, "displaying-the-date-time-in-messages"]], "Displays for lists, sets and dictionaries": [[430, "displays-for-lists-sets-and-dictionaries"]], "Distinguishing test iterations using subtests": [[388, "distinguishing-test-iterations-using-subtests"]], "Distribution Discovery": [[251, "distribution-discovery"]], "Distribution files": [[251, "distribution-files"]], "Distribution metadata": [[251, "distribution-metadata"]], "Distribution requirements": [[251, "distribution-requirements"]], "Distribution versions": [[251, "distribution-versions"]], "Distributions": [[251, "distributions"]], "Distutils: Making Modules Easy to Install": [[462, "distutils-making-modules-easy-to-install"]], "DocCGIXMLRPCRequestHandler": [[420, "doccgixmlrpcrequesthandler"]], "DocTest \u7269\u4ef6": [[193, "doctest-objects"]], "DocTestFinder \u7269\u4ef6": [[193, "doctestfinder-objects"]], "DocTestParser \u7269\u4ef6": [[193, "doctestparser-objects"]], "DocTestRunner \u7269\u4ef6": [[193, "doctestrunner-objects"]], "DocXMLRPCServer \u7269\u4ef6": [[420, "docxmlrpcserver-objects"]], "Document Objects": [[410, "document-objects"]], "DocumentType \u7269\u4ef6": [[410, "documenttype-objects"]], "Documentation": [[483, "documentation"], [483, "id5"], [483, "id13"], [483, "id22"], [483, "id31"], [483, "id37"], [483, "id43"], [483, "id53"], [483, "id63"], [483, "id76"], [483, "id85"], [483, "id95"], [483, "id104"], [483, "id114"], [483, "id120"], [483, "id130"], [483, "id140"], [483, "id149"], [483, "id161"], [483, "id170"], [483, "id179"], [483, "id187"], [483, "id196"], [483, "id204"], [483, "id212"], [483, "id222"], [483, "id233"], [483, "id243"], [483, "id252"], [483, "id262"], [483, "id271"], [483, "id280"], [483, "id291"], [483, "id301"], [483, "id311"], [483, "id321"], [483, "id332"], [483, "id343"], [483, "id351"], [483, "id358"], [483, "id368"], [483, "id379"], [483, "id390"], [483, "id401"], [483, "id410"], [483, "id417"], [483, "id429"], [483, "id435"], [483, "id442"], [483, "id452"], [483, "id463"], [483, "id472"], [483, "id480"], [483, "id487"], [483, "id497"], [483, "id504"], [483, "id513"], [483, "id526"], [483, "id536"], [483, "id549"], [483, "id562"], [483, "id573"], [483, "id583"], [483, "id587"], [483, "id622"], [483, "id628"], [483, "id638"], [483, "id651"], [483, "id661"], [483, "id673"], [483, "id683"], [483, "id698"], [483, "id706"], [483, "id714"], [483, "id737"]], "Documentation Changes": [[469, "documentation-changes"], [477, "documentation-changes"]], "Documenting XMLRPC server": [[420, "documenting-xmlrpc-server"]], "DomainFilter": [[382, "domainfilter"]], "Drawing state": [[384, "drawing-state"]], "Dry Run": [[461, "dry-run"]], "Dumping the traceback": [[214, "dumping-the-traceback"]], "Dumping the traceback on a user signal": [[214, "dumping-the-traceback-on-a-user-signal"]], "Dumping the tracebacks after a timeout": [[214, "dumping-the-tracebacks-after-a-timeout"]], "DuplicateFreeEnum": [[94, "duplicatefreeenum"]], "Duplicating enum members and values": [[94, "duplicating-enum-members-and-values"]], "Dynamic Allocation": [[33, "dynamic-allocation"]], "Dynamic Type Creation": [[385, "dynamic-type-creation"]], "Dynamic lookups": [[93, "dynamic-lookups"]], "Eager Task Factory": [[139, "eager-task-factory"]], "Ease of debugging and testing": [[95, "ease-of-debugging-and-testing"]], "Edge and Level Trigger Polling (epoll) Objects": [[328, "edge-and-level-trigger-polling-epoll-objects"]], "Edit menu (Shell and Editor)": [[247, "edit-menu-shell-and-editor"]], "Editing and Navigation": [[247, "editing-and-navigation"]], "Editor windows": [[247, "editor-windows"]], "Element Objects": [[410, "element-objects"]], "Element \u7269\u4ef6": [[413, "element-objects"]], "ElementTree \u5957\u4ef6": [[467, "the-elementtree-package"]], "ElementTree \u7269\u4ef6": [[413, "elementtree-objects"]], "Ellipsis": [[428, "ellipsis"]], "Ellipsis Object": [[56, "ellipsis-object"]], "Embedded Python": [[354, "embedded-python"]], "Embedding Python in C++": [[72, "embedding-python-in-c"]], "Emulating buffer types": [[428, "emulating-buffer-types"]], "Emulating callable objects": [[428, "emulating-callable-objects"]], "Emulating container types": [[428, "emulating-container-types"]], "Emulating generic types": [[428, "emulating-generic-types"]], "Emulating numeric types": [[428, "emulating-numeric-types"]], "Encoders and Decoders": [[262, "encoders-and-decoders"]], "Encoding declarations": [[435, "encoding-declarations"]], "Encodings": [[109, "encodings"]], "Encodings and Unicode": [[158, "encodings-and-unicode"]], "Ensuring unique enumeration values": [[94, "ensuring-unique-enumeration-values"]], "Enter Per-Module State": [[100, "enter-per-module-state"]], "EntityResolver \u7269\u4ef6": [[415, "entityresolver-objects"]], "Entry points": [[251, "entry-points"]], "Enum Classes": [[94, "enum-classes"]], "Enum Cookbook": [[94, "enum-cookbook"]], "Enum HOWTO": [[94, "enum-howto"]], "Enum Members (aka instances)": [[94, "enum-members-aka-instances"]], "Enum classes with methods": [[94, "enum-classes-with-methods"]], "Enum member type": [[94, "enum-member-type"]], "Environment configuration": [[425, "environment-configuration"]], "Error Codes": [[110, "error-codes"]], "Error Handlers": [[158, "error-handlers"]], "ErrorHandler \u7269\u4ef6": [[415, "errorhandler-objects"]], "Errors": [[281, "errors"]], "Evaluation order": [[430, "evaluation-order"]], "Event": [[138, "event"]], "Event Objects": [[365, "event-objects"]], "Events": [[353, "events"]], "Example of Client Usage": [[419, "example-of-client-usage"]], "Example of Client and Server Usage": [[419, "example-of-client-and-server-usage"]], "Example usage of ModuleFinder": [[279, "example-usage-of-modulefinder"]], "Example \u7269\u4ef6": [[193, "example-objects"]], "Examples": [[395, "examples"]], "Examples and Recipes": [[161, "examples-and-recipes"], [169, "examples-and-recipes"]], "Exception groups": [[213, "exception-groups"]], "Exceptions": [[120, "exceptions"], [292, "exceptions"], [319, "exceptions"]], "Exceptions and warnings": [[425, "exceptions-and-warnings"]], "Exceptions raised during logging": [[101, "exceptions-raised-during-logging"]], "Exchanging objects between processes": [[283, "exchanging-objects-between-processes"]], "Excursus: Setting environment variables": [[461, "excursus-setting-environment-variables"]], "Executing the class body": [[428, "executing-the-class-body"]], "Execution of Python signal handlers": [[333, "execution-of-python-signal-handlers"]], "Executor \u7269\u4ef6": [[166, "executor-objects"]], "Exiting methods": [[120, "exiting-methods"]], "Expat error constants": [[314, "module-xml.parsers.expat.errors"]], "ExpatError \u4f8b\u5916": [[314, "expaterror-exceptions"]], "Explanation": [[384, "explanation"]], "Explicit line joining": [[435, "explicit-line-joining"]], "Expression lists": [[430, "expression-lists"]], "Expression statements": [[436, "expression-statements"]], "Extended Slices": [[465, "extended-slices"]], "Extending Embedded Python": [[72, "extending-embedded-python"]], "Extending optparse": [[292, "extending-optparse"]], "Extending the search algorithm": [[251, "extending-the-search-algorithm"]], "Extending/Embedding Changes": [[462, "extending-embedding-changes"]], "Extensions": [[247, "extensions"]], "Extra information": [[13, "extra-information"]], "Extracting Parameters in Extension Functions": [[73, "extracting-parameters-in-extension-functions"]], "Extraction filters": [[358, "extraction-filters"]], "FAQ": [[473, "faq"]], "FILTER_DIR": [[389, "filter-dir"]], "FTP \u7269\u4ef6": [[223, "ftp-objects"]], "FTPHandler \u7269\u4ef6": [[395, "ftphandler-objects"]], "FTP_TLS \u7269\u4ef6": [[223, "ftp-tls-objects"]], "Fallback Values": [[167, "fallback-values"]], "Fault Objects": [[419, "fault-objects"]], "Fault handler state": [[214, "fault-handler-state"]], "Features": [[281, "features"]], "FeedParser API": [[207, "feedparser-api"]], "Feedback": [[106, "feedback"]], "Fetching attributes statically": [[255, "fetching-attributes-statically"]], "File Descriptor Operations": [[293, "file-descriptor-operations"]], "File Handlers": [[369, "file-handlers"]], "File Names, Command Line Arguments, and Environment Variables": [[293, "file-names-command-line-arguments-and-environment-variables"]], "File Object Creation": [[293, "file-object-creation"]], "File Operations": [[282, "file-operations"]], "File Selectors": [[375, "file-selectors"]], "File System Encoding": [[64, "file-system-encoding"]], "File System limitations": [[422, "file-system-limitations"]], "File hashing": [[235, "file-hashing"]], "File menu (Shell and Editor)": [[247, "file-menu-shell-and-editor"]], "FileCookieJar subclasses and co-operation with web browsers": [[243, "filecookiejar-subclasses-and-co-operation-with-web-browsers"]], "FileHandler": [[269, "filehandler"]], "FileHandler \u7269\u4ef6": [[395, "filehandler-objects"]], "FileType \u7269\u4ef6": [[120, "filetype-objects"]], "Files and Directories": [[293, "files-and-directories"]], "Files in an Unknown Encoding": [[109, "files-in-an-unknown-encoding"]], "Filling": [[384, "filling"]], "Filter": [[382, "filter"]], "Filter Objects": [[267, "filter-objects"]], "Filter errors": [[358, "filter-errors"]], "Filters": [[380, "filters"]], "Finalization and De-allocation": [[75, "finalization-and-de-allocation"]], "Finders and loaders": [[432, "finders-and-loaders"]], "Finding all Adverbs": [[319, "finding-all-adverbs"]], "Finding all Adverbs and their Positions": [[319, "finding-all-adverbs-and-their-positions"]], "Finding interesting elements": [[413, "finding-interesting-elements"]], "Finding modules": [[461, "finding-modules"]], "Finding shared libraries": [[176, "finding-shared-libraries"]], "Finding the Python executable": [[461, "finding-the-python-executable"]], "Finer Points": [[94, "finer-points"]], "Fixers": [[112, "fixers"]], "Flag": [[94, "flag"]], "Flag Classes": [[94, "flag-classes"]], "Flag Members": [[94, "flag-members"]], "Flag and IntFlag minutia": [[94, "flag-and-intflag-minutia"]], "Flags": [[319, "flags"]], "Floating Point Notes": [[186, "floating-point-notes"]], "Floating point literals": [[435, "floating-point-literals"]], "For More Information": [[92, "for-more-information"]], "For extension writers and programs that embed Python": [[266, "for-extension-writers-and-programs-that-embed-python"]], "Foreign functions": [[176, "foreign-functions"]], "Form Geometry Manager": [[375, "form-geometry-manager"]], "Formal provability": [[95, "formal-provability"]], "Format Characters": [[347, "format-characters"]], "Format Strings": [[347, "format-strings"]], "Format menu (Editor window only)": [[247, "format-menu-editor-window-only"]], "Formatter Objects": [[267, "formatter-objects"]], "Formatters": [[101, "formatters"]], "Formatting times using UTC (GMT) via configuration": [[102, "formatting-times-using-utc-gmt-via-configuration"]], "Frame": [[382, "frame"]], "Frame object methods": [[428, "frame-object-methods"]], "Frame objects": [[428, "frame-objects"]], "Frame \u7269\u4ef6": [[26, "frame-objects"]], "FrameSummary \u7269\u4ef6": [[381, "framesummary-objects"]], "Frequently Used Arguments": [[348, "frequently-used-arguments"]], "From a script": [[461, "from-a-script"]], "From file itself": [[422, "from-file-itself"]], "From the command-line": [[461, "from-the-command-line"]], "Function prototypes": [[176, "function-prototypes"]], "Functional API": [[94, "functional-api"], [251, "functional-api"]], "Functions": [[307, "functions"], [319, "functions"]], "Functions and methods": [[93, "functions-and-methods"]], "Fundamental data types": [[176, "fundamental-data-types"], [176, "ctypes-fundamental-data-types-2"]], "Future and Task private constructors": [[128, "future-and-task-private-constructors"]], "Future statements": [[436, "future-statements"]], "Future \u51fd\u5f0f": [[129, "future-functions"]], "Future \u7269\u4ef6": [[129, "future-object"], [166, "future-objects"]], "Futures": [[129, "futures"]], "GNU gettext API": [[230, "gnu-gettext-api"]], "GUI classes": [[281, "gui-classes"]], "Garbage Collection of Cycles": [[462, "garbage-collection-of-cycles"]], "Garbage-Collection Protocol": [[100, "garbage-collection-protocol"]], "General": [[95, "general"]], "General rules": [[333, "general-rules"]], "Generating help": [[292, "generating-help"]], "Generator Types": [[344, "generator-types"]], "Generator expressions": [[430, "generator-expressions"]], "Generator expressions and list comprehensions": [[95, "generator-expressions-and-list-comprehensions"]], "Generator functions": [[428, "generator-functions"]], "Generator-iterator methods": [[430, "generator-iterator-methods"]], "Generators": [[95, "generators"]], "Generic Alias Type": [[344, "generic-alias-type"]], "Generic Attribute Management": [[75, "generic-attribute-management"]], "Generic Codecs": [[64, "generic-codecs"]], "Generic classes": [[427, "generic-classes"]], "Generic functions": [[427, "generic-functions"]], "Generic options": [[455, "generic-options"]], "Generic type aliases": [[427, "generic-type-aliases"]], "Get started as quickly as possible": [[384, "get-started-as-quickly-as-possible"]], "Get the traceback of a memory block": [[382, "get-the-traceback-of-a-memory-block"]], "Getting and Setting the Policy": [[132, "getting-and-setting-the-policy"]], "Getting more detail when instance creation fails": [[99, "getting-more-detail-when-instance-creation-fails"]], "Global configuration variables": [[33, "global-configuration-variables"]], "Globals": [[425, "globals"]], "Greedy versus Non-Greedy": [[106, "greedy-versus-non-greedy"]], "Group Patterns": [[427, "group-patterns"]], "Grouping": [[106, "grouping"]], "Grouping Options": [[292, "grouping-options"]], "Grouping elements": [[95, "grouping-elements"]], "Grouping tests": [[388, "grouping-tests"]], "Guard": [[472, "guard"]], "Guards": [[427, "guards"]], "HKEY_* Constants": [[405, "hkey-constants"]], "HTML \u5256\u6790\u5668\u61c9\u7528\u7a0b\u5f0f\u7bc4\u4f8b": [[240, "example-html-parser-application"]], "HTMLParser \u65b9\u6cd5": [[240, "htmlparser-methods"]], "HTTP \u65b9\u6cd5": [[241, "http-methods"]], "HTTP \u72c0\u614b\u5206\u985e": [[241, "http-status-category"]], "HTTP \u72c0\u614b\u78bc": [[241, "http-status-codes"]], "HTTPBasicAuthHandler \u7269\u4ef6": [[395, "httpbasicauthhandler-objects"]], "HTTPConnection \u7269\u4ef6": [[242, "httpconnection-objects"]], "HTTPCookieProcessor \u7269\u4ef6": [[395, "httpcookieprocessor-objects"]], "HTTPDigestAuthHandler \u7269\u4ef6": [[395, "httpdigestauthhandler-objects"]], "HTTPError": [[110, "httperror"]], "HTTPErrorProcessor \u7269\u4ef6": [[395, "httperrorprocessor-objects"]], "HTTPHandler": [[269, "httphandler"]], "HTTPHandler \u7269\u4ef6": [[395, "httphandler-objects"]], "HTTPMessage \u7269\u4ef6": [[242, "httpmessage-objects"]], "HTTPPasswordMgr \u7269\u4ef6": [[395, "httppasswordmgr-objects"]], "HTTPPasswordMgrWithPriorAuth \u7269\u4ef6": [[395, "httppasswordmgrwithpriorauth-objects"]], "HTTPRedirectHandler \u7269\u4ef6": [[395, "httpredirecthandler-objects"]], "HTTPResponse \u7269\u4ef6": [[242, "httpresponse-objects"]], "HTTPSHandler \u7269\u4ef6": [[395, "httpshandler-objects"]], "Handler Objects": [[267, "handler-objects"]], "Handler configuration order": [[268, "handler-configuration-order"]], "Handlers": [[101, "handlers"]], "Handling Exceptions": [[110, "handling-exceptions"]], "Handling Keyboard Interruption": [[135, "handling-keyboard-interruption"]], "Handling Stateful Objects": [[299, "handling-stateful-objects"]], "Handling boolean (flag) options": [[292, "handling-boolean-flag-options"]], "Handy Reference": [[369, "handy-reference"]], "Hash Objects": [[235, "hash-objects"]], "Hashing Methods": [[173, "hashing-methods"]], "Headers": [[110, "headers"]], "Heap Types": [[63, "heap-types"], [100, "heap-types"]], "Hello World!": [[123, null]], "Help and Preferences": [[247, "help-and-preferences"]], "Help and configuration": [[384, "help-and-configuration"]], "Help menu (Shell and Editor)": [[247, "help-menu-shell-and-editor"]], "Help sources": [[247, "help-sources"]], "Hierarchical ListBox": [[375, "hierarchical-listbox"]], "Higher Level Interface": [[151, "higher-level-interface"]], "Hints for further verification": [[358, "hints-for-further-verification"]], "History file": [[320, "history-file"]], "History list": [[320, "history-list"]], "Home scheme": [[355, "home-scheme"]], "Host Interfaces": [[99, "host-interfaces"]], "How It Works": [[193, "how-it-works"]], "How are Docstring Examples Recognized?": [[193, "how-are-docstring-examples-recognized"]], "How are Enums and Flags different?": [[94, "how-are-enums-and-flags-different"]], "How callbacks are called": [[292, "how-callbacks-are-called"]], "How can I evaluate an arbitrary Python expression from C?": [[79, "how-can-i-evaluate-an-arbitrary-python-expression-from-c"]], "How can I have modules that mutually import each other?": [[85, "how-can-i-have-modules-that-mutually-import-each-other"]], "How can I organize my code to make it easier to change the base class?": [[85, "how-can-i-organize-my-code-to-make-it-easier-to-change-the-base-class"]], "How can I overload constructors (or methods) in Python?": [[85, "how-can-i-overload-constructors-or-methods-in-python"]], "How can I pass optional or keyword parameters from one function to another?": [[85, "how-can-i-pass-optional-or-keyword-parameters-from-one-function-to-another"]], "How can I sort one list by values from another list?": [[85, "how-can-i-sort-one-list-by-values-from-another-list"]], "How do I apply a method or function to a sequence of objects?": [[85, "how-do-i-apply-a-method-or-function-to-a-sequence-of-objects"]], "How do I avoid blocking in the connect() method of a socket?": [[84, "how-do-i-avoid-blocking-in-the-connect-method-of-a-socket"]], "How do I cache method calls?": [[85, "how-do-i-cache-method-calls"]], "How do I call a method defined in a base class from a derived class that extends it?": [[85, "how-do-i-call-a-method-defined-in-a-base-class-from-a-derived-class-that-extends-it"]], "How do I check if an object is an instance of a given class or of a subclass of it?": [[85, "how-do-i-check-if-an-object-is-an-instance-of-a-given-class-or-of-a-subclass-of-it"]], "How do I convert between tuples and lists?": [[85, "how-do-i-convert-between-tuples-and-lists"]], "How do I create a .pyc file?": [[85, "how-do-i-create-a-pyc-file"]], "How do I create a multidimensional list?": [[85, "how-do-i-create-a-multidimensional-list"]], "How do I create documentation from doc strings?": [[84, "how-do-i-create-documentation-from-doc-strings"]], "How do I create static class data and static class methods?": [[85, "how-do-i-create-static-class-data-and-static-class-methods"]], "How do I find the current module name?": [[85, "how-do-i-find-the-current-module-name"]], "How do I get a list of all instances of a given class?": [[85, "how-do-i-get-a-list-of-all-instances-of-a-given-class"]], "How do I get a single keypress at a time?": [[84, "how-do-i-get-a-single-keypress-at-a-time"]], "How do I get int literal attribute instead of SyntaxError?": [[85, "how-do-i-get-int-literal-attribute-instead-of-syntaxerror"]], "How do I interface to C++ objects from Python?": [[79, "how-do-i-interface-to-c-objects-from-python"]], "How do I iterate over a sequence in reverse order?": [[85, "how-do-i-iterate-over-a-sequence-in-reverse-order"]], "How do I modify a string in place?": [[85, "how-do-i-modify-a-string-in-place"]], "How do I parcel out work among a bunch of worker threads?": [[84, "how-do-i-parcel-out-work-among-a-bunch-of-worker-threads"]], "How do I use strings to call functions/methods?": [[85, "how-do-i-use-strings-to-call-functions-methods"]], "How do I write a function with output parameters (call by reference)?": [[85, "how-do-i-write-a-function-with-output-parameters-call-by-reference"]], "How do I...? What option does...?": [[369, "how-do-i-what-option-does"]], "How do you implement persistent objects in Python?": [[84, "how-do-you-implement-persistent-objects-in-python"]], "How do you make a higher order function in Python?": [[85, "how-do-you-make-a-higher-order-function-in-python"]], "How do you make an array in Python?": [[85, "how-do-you-make-an-array-in-python"]], "How do you remove duplicates from a list?": [[85, "how-do-you-remove-duplicates-from-a-list"]], "How do you remove multiple items from a list": [[85, "how-do-you-remove-multiple-items-from-a-list"]], "How optparse handles errors": [[292, "how-optparse-handles-errors"]], "How to adapt custom Python types to SQLite values": [[340, "how-to-adapt-custom-python-types-to-sqlite-values"]], "How to configure Screen and Turtles": [[384, "how-to-configure-screen-and-turtles"]], "How to convert SQLite values to custom Python types": [[340, "how-to-convert-sqlite-values-to-custom-python-types"]], "How to create and use row factories": [[340, "how-to-create-and-use-row-factories"]], "How to handle non-UTF-8 text encodings": [[340, "how-to-handle-non-utf-8-text-encodings"]], "How to register adapter callables": [[340, "how-to-register-adapter-callables"]], "How to treat a logger like an output stream": [[102, "how-to-treat-a-logger-like-an-output-stream"]], "How to use connection shortcut methods": [[340, "how-to-use-connection-shortcut-methods"]], "How to use help": [[384, "how-to-use-help"]], "How to use placeholders to bind values in SQL queries": [[340, "how-to-use-placeholders-to-bind-values-in-sql-queries"]], "How to use the connection context manager": [[340, "how-to-use-the-connection-context-manager"]], "How to work with SQLite URIs": [[340, "how-to-work-with-sqlite-uris"]], "How to write adaptable objects": [[340, "how-to-write-adaptable-objects"]], "How to...": [[384, "how-to"]], "How-to guides": [[340, "how-to-guides"]], "Hyperbolic functions": [[275, "hyperbolic-functions"]], "I can't seem to use os.read() on a pipe created with os.popen(); why?": [[84, "i-can-t-seem-to-use-os-read-on-a-pipe-created-with-os-popen-why"]], "I try to use __spam and I get an error about _SomeClassName__spam.": [[85, "i-try-to-use-spam-and-i-get-an-error-about-someclassname-spam"]], "I want to do a complicated sort: can you do a Schwartzian Transform in Python?": [[85, "i-want-to-do-a-complicated-sort-can-you-do-a-schwartzian-transform-in-python"]], "I/O objects (also known as file objects)": [[428, "i-o-objects-also-known-as-file-objects"]], "I/O \u57fa\u790e\u985e\u5225": [[258, "i-o-base-classes"]], "IDLE": [[247, "idle"], [471, "idle"], [475, "idle"], [483, "idle"], [483, "id8"], [483, "id18"], [483, "id27"], [483, "id80"], [483, "id90"], [483, "id154"], [483, "id183"], [483, "id192"], [483, "id217"], [483, "id227"], [483, "id238"], [483, "id247"], [483, "id257"], [483, "id267"], [483, "id285"], [483, "id296"], [483, "id306"], [483, "id326"], [483, "id337"], [483, "id347"], [483, "id353"], [483, "id363"], [483, "id373"], [483, "id384"], [483, "id395"], [483, "id405"], [483, "id413"], [483, "id422"], [483, "id432"], [483, "id439"], [483, "id447"], [483, "id457"], [483, "id468"], [483, "id492"], [483, "id499"], [483, "id508"], [483, "id518"], [483, "id531"], [483, "id541"], [483, "id553"], [483, "id559"], [483, "id570"], [483, "id603"], [483, "id611"], [483, "id618"], [483, "id627"], [483, "id637"], [483, "id659"], [483, "id668"], [483, "id672"], [483, "id682"], [483, "id697"], [483, "id712"], [483, "id734"]], "IDLE Improvements": [[462, "idle-improvements"]], "IDLE and idlelib": [[481, "idle-and-idlelib"], [482, "idle-and-idlelib"]], "IDLE on macOS": [[247, "idle-on-macos"]], "IDLE \u548c idlelib": [[472, "idle-and-idlelib"]], "IDLE \u8207 idlelib": [[473, "whatsnew311-idle"]], "IMAP4 \u7269\u4ef6": [[248, "imap4-objects"]], "IMAP4 \u7bc4\u4f8b": [[248, "imap4-example"]], "IP Addresses": [[259, "ip-addresses"]], "IP Host Addresses": [[99, "ip-host-addresses"]], "IP Network definitions": [[259, "ip-network-definitions"]], "IPC": [[107, "ipc"]], "Identifiers (Names)": [[430, "atom-identifiers"]], "Identifiers and keywords": [[435, "identifiers"]], "Identity comparisons": [[430, "is-not"]], "Image Types": [[375, "image-types"]], "Images": [[369, "images"]], "Imaginary literals": [[435, "imaginary-literals"]], "Immutable Sequence Types": [[344, "immutable-sequence-types"]], "Immutable sequences": [[428, "immutable-sequences"]], "Imparting contextual information in handlers": [[102, "imparting-contextual-information-in-handlers"]], "Implementation Limitations": [[262, "implementation-limitations"]], "Implementing Descriptors": [[428, "implementing-descriptors"]], "Implementing lazy imports": [[250, "implementing-lazy-imports"]], "Implementing structured logging": [[102, "implementing-structured-logging"]], "Implicit line joining": [[435, "implicit-line-joining"]], "Import hooks": [[432, "import-hooks"]], "Import resolution and custom importers": [[268, "import-resolution-and-custom-importers"]], "Import-related module attributes": [[432, "import-related-module-attributes"]], "Important": [[211, null], [267, "index-0"], [268, null], [269, null]], "Important Tk Concepts": [[369, "important-tk-concepts"]], "Importing a source file directly": [[250, "importing-a-source-file-directly"]], "Importing programmatically": [[250, "importing-programmatically"]], "Improved Compatibility with Shells": [[331, "improved-compatibility-with-shells"]], "Improved Error Messages": [[474, "improved-error-messages"]], "Improved SSL Support": [[468, "improved-ssl-support"]], "Improvements to Codec Handling": [[477, "improvements-to-codec-handling"]], "Incomplete Types": [[176, "incomplete-types"]], "Incremental (de)compression": [[149, "incremental-de-compression"]], "Incremental Configuration": [[268, "incremental-configuration"]], "Incremental Encoding and Decoding": [[158, "incremental-encoding-and-decoding"]], "IncrementalDecoder \u7269\u4ef6": [[158, "incrementaldecoder-objects"]], "IncrementalEncoder \u7269\u4ef6": [[158, "incrementalencoder-objects"]], "IncrementalParser \u7269\u4ef6": [[416, "incrementalparser-objects"]], "Indentation": [[435, "indentation"]], "IndentationErrors": [[472, "indentationerrors"]], "Infinite and NaN Number Values": [[262, "infinite-and-nan-number-values"]], "Inheritance of File Descriptors": [[293, "inheritance-of-file-descriptors"]], "Init file": [[320, "init-file"]], "Init-only variables": [[181, "init-only-variables"]], "Initialization with PyConfig": [[34, "initialization-with-pyconfig"]], "Initialization, Finalization, and Threads": [[33, "initialization-finalization-and-threads"]], "Initializing C modules": [[45, "initializing-c-modules"]], "Initializing and finalizing the interpreter": [[33, "initializing-and-finalizing-the-interpreter"]], "Input methods": [[384, "input-methods"]], "InputSource \u7269\u4ef6": [[416, "inputsource-objects"]], "Inserting a BOM into messages sent to a SysLogHandler": [[102, "inserting-a-bom-into-messages-sent-to-a-sysloghandler"]], "Inspecting Address/Network/Interface Objects": [[99, "inspecting-address-network-interface-objects"]], "Installation paths": [[355, "installation-paths"]], "Installing your CGI script on a Unix system": [[151, "installing-your-cgi-script-on-a-unix-system"]], "Instance methods": [[428, "instance-methods"]], "Instant User's Manual": [[308, "instant-user-s-manual"]], "IntEnum": [[94, "intenum"]], "IntFlag": [[94, "intflag"]], "Integer literals": [[435, "integer-literals"]], "Integer string conversion length limitation": [[344, "integer-string-conversion-length-limitation"]], "Integration with the warnings module": [[267, "integration-with-the-warnings-module"]], "Interacting with Subprocesses": [[137, "interacting-with-subprocesses"]], "Interaction with dynamic features": [[429, "interaction-with-dynamic-features"]], "Interactive Console Objects": [[157, "interactive-console-objects"]], "Interactive Interpreter Changes": [[467, "interactive-interpreter-changes"]], "Interactive Interpreter Objects": [[157, "interactive-interpreter-objects"]], "Interface objects": [[259, "interface-objects"]], "Interface to the scheduler": [[293, "interface-to-the-scheduler"]], "Intermezzo: Errors and Exceptions": [[73, "intermezzo-errors-and-exceptions"]], "Intermixed parsing": [[120, "intermixed-parsing"]], "Internal Frames": [[26, "internal-frames"]], "Internal Objects": [[344, "internal-objects"]], "Internal types": [[428, "internal-types"]], "Internationalizing your programs and modules": [[230, "internationalizing-your-programs-and-modules"]], "Interpolation of values": [[167, "interpolation-of-values"]], "Interpreter Changes": [[468, "interpreter-changes"], [469, "interpreter-changes"]], "Interruption": [[422, "interruption"]], "Introduction to Unicode": [[109, "introduction-to-unicode"]], "Introduction to the profilers": [[308, "introduction-to-the-profilers"]], "Introspecting callables with the Signature object": [[255, "introspecting-callables-with-the-signature-object"]], "Introspection": [[139, "introspection"]], "Introspection helpers": [[386, "introspection-helpers"]], "Invalid arguments": [[120, "invalid-arguments"]], "Invocation from a class": [[93, "invocation-from-a-class"]], "Invocation from an instance": [[93, "invocation-from-an-instance"]], "Invocation from super": [[93, "invocation-from-super"]], "Invoking Descriptors": [[428, "invoking-descriptors"]], "Irrefutable Case Blocks": [[427, "irrefutable-case-blocks"]], "Is it possible to write obfuscated one-liners in Python?": [[85, "is-it-possible-to-write-obfuscated-one-liners-in-python"]], "Is there a scanf() or sscanf() equivalent?": [[85, "is-there-a-scanf-or-sscanf-equivalent"]], "Is there an equivalent to C's onexit() in Python?": [[84, "is-there-an-equivalent-to-c-s-onexit-in-python"]], "Is there an equivalent to Perl's chomp() for removing trailing newlines from strings?": [[85, "is-there-an-equivalent-to-perl-s-chomp-for-removing-trailing-newlines-from-strings"]], "Isolated Configuration": [[34, "isolated-configuration"]], "Isolated Module Objects": [[100, "isolated-module-objects"]], "Issue with file descriptors": [[214, "issue-with-file-descriptors"]], "Issuing warnings": [[23, "issuing-warnings"]], "Item Options": [[376, "item-options"]], "Iteration": [[94, "iteration"], [259, "iteration"]], "Iterators": [[95, "iterators"]], "Itertool Functions": [[261, "itertool-functions"]], "Itertools Recipes": [[261, "itertools-recipes"]], "Java \u5e73\u53f0": [[303, "java-platform"]], "Kevent Objects": [[328, "kevent-objects"]], "Key bindings": [[247, "key-bindings"]], "Key derivation": [[235, "key-derivation"]], "Keyed hashing": [[235, "keyed-hashing"]], "Keyword Parameters for Extension Functions": [[73, "keyword-parameters-for-extension-functions"]], "Kinds of methods": [[93, "kinds-of-methods"]], "Known issues": [[461, "known-issues"]], "Kqueue Objects": [[328, "kqueue-objects"]], "LIFO Queue": [[134, "lifo-queue"]], "Label Options": [[376, "label-options"]], "Lambda \u904b\u7b97\u5f0f": [[441, "lambda-expressions"]], "Lambdas": [[430, "lambda"]], "Latin-1 \u7de8\u89e3\u78bc\u5668": [[64, "latin-1-codecs"]], "Layouts": [[376, "layouts"]], "Lazy evaluation": [[429, "lazy-evaluation"]], "Legacy API Examples": [[167, "legacy-api-examples"]], "Legacy Shell Invocation Functions": [[348, "legacy-shell-invocation-functions"]], "Legacy interface": [[395, "legacy-interface"]], "LexicalHandler \u7269\u4ef6": [[415, "lexicalhandler-objects"]], "Library": [[483, "library"], [483, "id4"], [483, "id12"], [483, "id21"], [483, "id30"], [483, "id36"], [483, "id42"], [483, "id52"], [483, "id62"], [483, "id69"], [483, "id75"], [483, "id84"], [483, "id94"], [483, "id103"], [483, "id113"], [483, "id119"], [483, "id129"], [483, "id139"], [483, "id148"], [483, "id160"], [483, "id169"], [483, "id178"], [483, "id186"], [483, "id195"], [483, "id203"], [483, "id211"], [483, "id221"], [483, "id232"], [483, "id242"], [483, "id251"], [483, "id261"], [483, "id270"], [483, "id279"], [483, "id290"], [483, "id300"], [483, "id310"], [483, "id320"], [483, "id331"], [483, "id342"], [483, "id350"], [483, "id357"], [483, "id367"], [483, "id378"], [483, "id389"], [483, "id400"], [483, "id409"], [483, "id416"], [483, "id425"], [483, "id428"], [483, "id434"], [483, "id441"], [483, "id451"], [483, "id462"], [483, "id471"], [483, "id479"], [483, "id486"], [483, "id496"], [483, "id503"], [483, "id512"], [483, "id525"], [483, "id535"], [483, "id544"], [483, "id548"], [483, "id558"], [483, "id569"], [483, "id581"], [483, "id586"], [483, "id591"], [483, "id596"], [483, "id602"], [483, "id610"], [483, "id617"], [483, "id626"], [483, "id636"], [483, "id646"], [483, "id647"], [483, "id650"], [483, "id658"], [483, "id671"], [483, "id681"], [483, "id689"], [483, "id692"], [483, "id694"], [483, "id696"], [483, "id701"], [483, "id704"], [483, "id709"], [483, "id711"], [483, "id717"], [483, "id723"], [483, "id728"], [483, "id733"]], "Lifetime of the Module State": [[100, "lifetime-of-the-module-state"]], "Line buffer": [[320, "line-buffer"]], "Line structure": [[435, "line-structure"]], "Linker flags": [[456, "linker-flags"]], "Linker options": [[456, "linker-options"]], "Linux extended attributes": [[293, "linux-extended-attributes"]], "Linux \u5e73\u53f0": [[303, "linux-platforms"]], "List Comprehensions\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": [[442, "list-comprehensions"]], "List displays": [[430, "list-displays"]], "Listeners and Clients": [[283, "module-multiprocessing.connection"]], "List\uff08\u4e32\u5217\uff09": [[344, "lists"], [449, "lists"]], "List\uff08\u4e32\u5217\uff09\u7269\u4ef6": [[38, "list-objects"]], "Literal Patterns": [[427, "literal-patterns"]], "Literals": [[430, "literals"], [435, "literals"]], "Loaders": [[432, "loaders"]], "Loading": [[432, "loading"]], "Loading and running tests": [[388, "loading-and-running-tests"]], "Loading dynamic link libraries": [[176, "loading-dynamic-link-libraries"]], "Loading shared libraries": [[176, "loading-shared-libraries"]], "Local events": [[353, "local-events"]], "Locale Encoding": [[64, "locale-encoding"]], "Localizing your application": [[230, "localizing-your-application"]], "Localizing your module": [[230, "localizing-your-module"]], "Locator Objects": [[416, "locator-objects"]], "Lock": [[138, "lock"]], "Lock Objects": [[365, "lock-objects"]], "LogRecord attributes": [[267, "logrecord-attributes"]], "LogRecord \u7269\u4ef6": [[267, "logrecord-objects"]], "Logger \u7269\u4ef6": [[267, "logger-objects"]], "LoggerAdapter \u7269\u4ef6": [[267, "loggeradapter-objects"]], "Loggers": [[101, "loggers"]], "Logging": [[283, "logging"]], "Logging Cookbook": [[102, "logging-cookbook"]], "Logging Flow": [[101, "logging-flow"]], "Logging Levels": [[101, "logging-levels"], [267, "logging-levels"]], "Logging from multiple threads": [[102, "logging-from-multiple-threads"]], "Logging to a file": [[101, "logging-to-a-file"]], "Logging to a single file from multiple processes": [[102, "logging-to-a-single-file-from-multiple-processes"]], "Logging to multiple destinations": [[102, "logging-to-multiple-destinations"]], "Logging to syslog with RFC5424 support": [[102, "logging-to-syslog-with-rfc5424-support"]], "Logging variable data": [[101, "logging-variable-data"]], "Logical lines": [[435, "logical-lines"]], "Logical operands": [[186, "logical-operands"]], "Logical operators": [[259, "logical-operators"], [259, "id3"]], "Lookahead Assertions": [[106, "lookahead-assertions"]], "Lossless Conversion to Heap Types": [[100, "lossless-conversion-to-heap-types"]], "Low-level module creation functions": [[45, "low-level-module-creation-functions"]], "MADV_* Constants": [[278, "madv-constants"]], "MAP_* \u5e38\u6578": [[278, "map-constants"]], "MBCS codecs for Windows": [[64, "mbcs-codecs-for-windows"]], "MH \u7269\u4ef6": [[271, "mh-objects"]], "MHMessage \u7269\u4ef6": [[271, "mhmessage-objects"]], "MMDF \u7269\u4ef6": [[271, "mmdf-objects"]], "MMDFMessage \u7269\u4ef6": [[271, "mmdfmessage-objects"]], "MS Windows \u7279\u6709\u670d\u52d9": [[404, "ms-windows-specific-services"]], "Magic Mock": [[389, "magic-mock"]], "MagicMock \u4ee5\u53ca\u9b54\u8853\u65b9\u6cd5\u652f\u63f4": [[389, "magicmock-and-magic-method-support"]], "Mailbox \u7269\u4ef6": [[271, "mailbox-objects"], [271, "maildir-objects"]], "MaildirMessage \u7269\u4ef6": [[271, "maildirmessage-objects"]], "Main files of the build system": [[456, "main-files-of-the-build-system"]], "Main options": [[380, "main-options"]], "Making Modules Safe with Multiple Interpreters": [[100, "making-modules-safe-with-multiple-interpreters"]], "Making a Phonebook": [[319, "making-a-phonebook"]], "Making algorithmic patterns": [[384, "making-algorithmic-patterns"]], "Managed attributes": [[93, "managed-attributes"]], "Manager Widgets": [[375, "manager-widgets"]], "Managers": [[283, "managers"]], "Managing Global State": [[100, "managing-global-state"]], "Managing Per-Module State": [[100, "managing-per-module-state"]], "Manual Context Management": [[170, "manual-context-management"]], "Mapping Object Structures": [[63, "mapping-object-structures"]], "Mapping Patterns": [[427, "mapping-patterns"]], "Mapping Protocol Access": [[167, "mapping-protocol-access"]], "Mapping Types --- dict": [[344, "mapping-types-dict"]], "Mapping import to distribution packages": [[251, "mapping-import-to-distribution-packages"]], "Mappings": [[428, "mappings"]], "Match Objects": [[319, "match-objects"]], "Matching Characters": [[106, "matching-characters"]], "Member flags": [[58, "member-flags"]], "Member objects and __slots__": [[93, "member-objects-and-slots"]], "Member types": [[58, "member-types"]], "Membership test operations": [[430, "membership-test-operations"]], "Memory BIO Support": [[341, "memory-bio-support"], [478, "memory-bio-support"]], "Memory Interface": [[42, "memory-interface"]], "Memory Views": [[344, "memory-views"]], "MemoryHandler": [[269, "memoryhandler"]], "MemoryView \u7269\u4ef6": [[43, "index-0"]], "Mersenne Twister": [[426, "mersenne-twister"]], "Message \u7269\u4ef6": [[271, "message-objects"]], "Metaclasses": [[428, "metaclasses"]], "Method \u7269\u4ef6": [[440, "method-objects"]], "Methods": [[288, "methods"], [344, "methods"]], "Methods & Slots": [[64, "methods-slots"]], "Methods and Slot Functions": [[64, "methods-and-slot-functions"]], "Methods of RawTurtle/Turtle and corresponding functions": [[384, "methods-of-rawturtle-turtle-and-corresponding-functions"]], "Methods of TurtleScreen/Screen": [[384, "methods-of-turtlescreen-screen"]], "Methods of TurtleScreen/Screen and corresponding functions": [[384, "methods-of-turtlescreen-screen-and-corresponding-functions"]], "Methods specific to Screen, not inherited from TurtleScreen": [[384, "methods-specific-to-screen-not-inherited-from-turtlescreen"]], "MimeTypes \u7269\u4ef6": [[276, "mimetypes-objects"]], "Minor Language Changes": [[462, "minor-language-changes"]], "Miscellaneous": [[270, "miscellaneous"], [283, "miscellaneous"]], "Miscellaneous Other Changes": [[470, "miscellaneous-other-changes"]], "Miscellaneous System Information": [[293, "miscellaneous-system-information"]], "Miscellaneous Widgets": [[375, "miscellaneous-widgets"]], "Miscellaneous options": [[455, "miscellaneous-options"]], "Mitigating round-off error with increased precision": [[186, "mitigating-round-off-error-with-increased-precision"]], "Mixer Device Objects": [[295, "mixer-device-objects"]], "Mock Unbound Methods \uff08\u672a\u7e6b\u7d50\u65b9\u6cd5\uff09": [[390, "mocking-unbound-methods"]], "Mock \u540d\u7a31\u8207\u540d\u7a31\u5c6c\u6027": [[389, "mock-names-and-the-name-attribute"]], "Mock \u5b50\u985e\u5225\u53ca\u5176\u5c6c\u6027": [[390, "mock-subclasses-and-their-attributes"]], "Mock \u7522\u751f\u5668\u65b9\u6cd5": [[390, "mocking-a-generator-method"]], "Mock \u934a\u63a5\u547c\u53eb": [[390, "mocking-chained-calls"]], "Mock \u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6": [[390, "mocking-asynchronous-iterators"]], "Mock \u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668": [[390, "mocking-asynchronous-context-manager"]], "Mock \u985e\u5225": [[389, "the-mock-class"], [390, "mocking-classes"]], "Mock \u9b54\u8853\u65b9\u6cd5": [[389, "mocking-magic-methods"]], "Modifiers": [[380, "modifiers"]], "Modifying Strings": [[106, "modifying-strings"]], "Modifying an install": [[461, "modifying-an-install"]], "Modularity": [[95, "modularity"]], "Module Removals": [[480, "module-removals"]], "Module State Access from Classes": [[100, "module-state-access-from-classes"]], "Module State Access from Functions": [[100, "module-state-access-from-functions"]], "Module State Access from Regular Methods": [[100, "module-state-access-from-regular-methods"]], "Module State Access from Slot Methods, Getters and Setters": [[100, "module-state-access-from-slot-methods-getters-and-setters"]], "Module constants": [[340, "module-constants"]], "Module functions": [[340, "module-functions"]], "Module lookup": [[45, "module-lookup"]], "Module reprs": [[432, "module-reprs"]], "Module spec": [[432, "module-spec"]], "Module-Level Attributes": [[267, "module-level-attributes"]], "Module-Level Functions": [[106, "module-level-functions"], [267, "module-level-functions"]], "More Metacharacters": [[106, "more-metacharacters"]], "More Pattern Power": [[106, "more-pattern-power"]], "More Suggestions": [[75, "more-suggestions"]], "More drawing control": [[384, "more-drawing-control"]], "Morsel \u7269\u4ef6": [[244, "morsel-objects"]], "Multi-Phase Initialization Private Provisional API": [[34, "multi-phase-initialization-private-provisional-api"]], "Multi-phase initialization": [[45, "multi-phase-initialization"]], "Multi-processing": [[341, "multi-processing"]], "Multi-threading": [[258, "multi-threading"], [475, "multi-threading"]], "MultiCall \u7269\u4ef6": [[419, "multicall-objects"]], "Multiple Inheritance: The Diamond Rule": [[464, "multiple-inheritance-the-diamond-rule"]], "Multiple handlers and formatters": [[102, "multiple-handlers-and-formatters"]], "Mutable Sequence Types": [[344, "mutable-sequence-types"]], "Mutable sequences": [[428, "mutable-sequences"]], "Mutual exclusion": [[120, "mutual-exclusion"]], "My class defines __del__ but it is not called when I delete the object.": [[85, "my-class-defines-del-but-it-is-not-called-when-i-delete-the-object"]], "My program is too slow. How do I speed it up?": [[85, "my-program-is-too-slow-how-do-i-speed-it-up"]], "NNTP \u7269\u4ef6": [[288, "nntp-objects"]], "NTEventLogHandler": [[269, "nteventloghandler"]], "NULL Pointers": [[73, "null-pointers"]], "NameErrors": [[472, "nameerrors"]], "NamedNodeMap \u7269\u4ef6": [[410, "namednodemap-objects"]], "Namespace packages": [[432, "namespace-packages"]], "Naming and binding": [[429, "naming-and-binding"]], "Native Formats": [[347, "native-formats"]], "Native Load/Save Dialogs": [[189, "native-load-save-dialogs"]], "Navigating the Tcl/Tk Reference Manual": [[369, "navigating-the-tcl-tk-reference-manual"]], "Network objects": [[259, "network-objects"]], "Networking and Interprocess Communication": [[260, "networking-and-interprocess-communication"]], "Networks as containers of addresses": [[259, "networks-as-containers-of-addresses"]], "Networks as lists of Addresses": [[99, "networks-as-lists-of-addresses"]], "New Development Process": [[462, "new-development-process"]], "New Documentation Format: reStructuredText Using Sphinx": [[468, "new-documentation-format-restructuredtext-using-sphinx"]], "New Features": [[477, "new-features"], [478, "new-features"], [479, "new-features"], [480, "new-features"], [481, "new-features"], [482, "new-features"], [482, "id1"]], "New Features Added to Python 2.7 Maintenance Releases": [[469, "new-features-added-to-python-2-7-maintenance-releases"]], "New Features Related to Type Hints": [[474, "new-features-related-to-type-hints"]], "New Issue Tracker: Roundup": [[468, "new-issue-tracker-roundup"]], "New Keywords": [[478, "new-keywords"]], "New Parser": [[482, "new-parser"]], "New String Methods to Remove Prefixes and Suffixes": [[482, "new-string-methods-to-remove-prefixes-and-suffixes"]], "New Syntax": [[470, "new-syntax"]], "New and Improved Modules": [[463, "new-and-improved-modules"], [464, "new-and-improved-modules"], [468, "new-and-improved-modules"], [469, "new-and-improved-modules"]], "New dict implementation": [[479, "new-dict-implementation"]], "New make regen-all build target": [[469, "new-make-regen-all-build-target"], [478, "new-make-regen-all-build-target"], [479, "new-make-regen-all-build-target"]], "New module: importlib": [[469, "new-module-importlib"]], "New module: sysconfig": [[469, "new-module-sysconfig"]], "New, Improved, and Deprecated Modules": [[465, "new-improved-and-deprecated-modules"], [466, "new-improved-and-deprecated-modules"], [471, "new-improved-and-deprecated-modules"], [475, "new-improved-and-deprecated-modules"]], "New, Improved, and Removed Modules": [[467, "new-improved-and-removed-modules"]], "NewType": [[386, "newtype"]], "Next Steps": [[101, "next-steps"]], "Node Objects": [[410, "node-objects"]], "NodeList \u7269\u4ef6": [[410, "nodelist-objects"]], "Non-Python created threads": [[33, "non-python-created-threads"]], "Non-capturing and Named Groups": [[106, "non-capturing-and-named-groups"]], "None": [[428, "none"]], "None \u7269\u4ef6": [[46, "the-none-object"]], "NormalDist \u7269\u4ef6": [[343, "normaldist-objects"]], "Not overriding tp_free": [[100, "not-overriding-tp-free"]], "NotImplemented": [[428, "notimplemented"]], "Notable changes in 3.10.12": [[472, "notable-changes-in-3-10-12"]], "Notable changes in 3.11.4": [[473, "notable-changes-in-3-11-4"]], "Notable changes in 3.11.5": [[473, "notable-changes-in-3-11-5"]], "Notable changes in 3.12.4": [[474, "notable-changes-in-3-12-4"]], "Notable changes in 3.8.17": [[481, "notable-changes-in-3-8-17"]], "Notable changes in 3.9.17": [[482, "notable-changes-in-3-9-17"]], "Notable security feature in 3.10.7": [[472, "notable-security-feature-in-3-10-7"]], "Notable security feature in 3.10.8": [[472, "notable-security-feature-in-3-10-8"]], "Notable security feature in 3.7.14": [[480, "notable-security-feature-in-3-7-14"]], "Notable security feature in 3.8.14": [[481, "notable-security-feature-in-3-8-14"]], "Notable security feature in 3.9.14": [[482, "notable-security-feature-in-3-9-14"]], "Notation": [[434, "notation"]], "Note on SIGPIPE": [[333, "note-on-sigpipe"]], "Note on Signal Handlers and Exceptions": [[333, "note-on-signal-handlers-and-exceptions"]], "Notebook": [[376, "notebook"]], "Notes for type implementers": [[289, "notes-for-type-implementers"]], "Notes on non-blocking sockets": [[341, "notes-on-non-blocking-sockets"]], "Notes on socket timeouts": [[337, "notes-on-socket-timeouts"]], "NullHandler": [[269, "nullhandler"]], "NumPy-style: shape and strides": [[7, "numpy-style-shape-and-strides"]], "Number 1": [[110, "number-1"]], "Number 2": [[110, "number-2"]], "Number Object Structures": [[63, "number-object-structures"]], "Numeric literals": [[435, "numeric-literals"]], "OR Patterns": [[427, "or-patterns"]], "ORM \u7bc4\u4f8b": [[93, "orm-example"]], "OS exceptions": [[213, "os-exceptions"]], "Object Comparison": [[75, "object-comparison"]], "Object Implementation Support": [[50, "object-implementation-support"]], "Object Presentation": [[75, "object-presentation"]], "Object allocators": [[42, "object-allocators"]], "Object connections": [[268, "object-connections"]], "Objects in the DOM": [[410, "objects-in-the-dom"]], "Objects, values and types": [[428, "objects-values-and-types"]], "Old and New Classes": [[464, "old-and-new-classes"]], "Older high-level API": [[348, "older-high-level-api"]], "Omitting values": [[94, "omitting-values"]], "One-shot (de)compression": [[149, "one-shot-de-compression"]], "Opcode collections": [[191, "opcode-collections"]], "Open Issues": [[100, "open-issues"]], "OpenSSL": [[426, "openssl"], [473, "openssl"]], "OpenerDirector \u7269\u4ef6": [[395, "openerdirector-objects"]], "Openers and Handlers": [[110, "openers-and-handlers"]], "Opening the same log file multiple times": [[102, "opening-the-same-log-file-multiple-times"]], "Operating Systems No Longer Supported": [[477, "operating-systems-no-longer-supported"]], "Operator Module Functions and Partial Function Evaluation": [[108, "operator-module-functions-and-partial-function-evaluation"]], "Operator precedence": [[430, "operator-precedence"]], "Operators": [[259, "operators"], [259, "id1"], [259, "id2"], [435, "operators"]], "Operators And Special Methods": [[470, "operators-and-special-methods"]], "Opt-Out: Limiting to One Module Object per Process": [[100, "opt-out-limiting-to-one-module-object-per-process"]], "Optimization": [[101, "optimization"]], "Option Callbacks": [[292, "option-callbacks"]], "Option Flags": [[193, "option-flags"]], "Option attributes": [[292, "option-attributes"]], "Option value syntax": [[120, "option-value-syntax"]], "Options menu (Shell and Editor)": [[247, "options-menu-shell-and-editor"]], "OrderedDict \u7269\u4ef6": [[160, "ordereddict-objects"]], "OrderedDict \u7bc4\u4f8b\u8207\u7528\u6cd5": [[160, "ordereddict-examples-and-recipes"]], "OrderedEnum": [[94, "orderedenum"]], "Ordering Comparisons": [[470, "ordering-comparisons"]], "Organizing test code": [[388, "organizing-test-code"]], "Other Build and C API Changes": [[477, "other-build-and-c-api-changes"]], "Other Built-in Types": [[344, "other-built-in-types"]], "Other CPython Implementation Changes": [[480, "other-cpython-implementation-changes"]], "Other CPython implementation changes": [[480, "id13"]], "Other Changes": [[478, "other-changes"]], "Other Changes and Fixes": [[463, "other-changes-and-fixes"], [465, "other-changes-and-fixes"], [469, "other-changes-and-fixes"]], "Other Core Changes": [[462, "other-core-changes"]], "Other Functions": [[282, "other-functions"]], "Other Improvements": [[477, "other-improvements"], [479, "other-improvements"]], "Other Module Level Functions": [[259, "other-module-level-functions"]], "Other actions": [[292, "other-actions"]], "Other events": [[353, "other-events"]], "Other methods": [[292, "other-methods"]], "Other module-level changes": [[478, "other-module-level-changes"]], "Other resources": [[101, "other-resources"], [102, "other-resources"]], "Other special directives": [[386, "other-special-directives"]], "Other tokens": [[435, "other-tokens"]], "Other utilities": [[120, "other-utilities"]], "Others": [[94, "others"]], "Out-of-band Buffers": [[299, "out-of-band-buffers"]], "OutputChecker \u7269\u4ef6": [[193, "outputchecker-objects"]], "Overriding the default filter": [[400, "overriding-the-default-filter"]], "Overview": [[251, "overview"], [427, "overview"]], "Overview of descriptor invocation": [[93, "overview-of-descriptor-invocation"]], "Ownership Rules": [[73, "ownership-rules"]], "PEP 205: Weak References": [[463, "pep-205-weak-references"]], "PEP 207: Rich Comparisons": [[463, "pep-207-rich-comparisons"]], "PEP 208: New Coercion Model": [[463, "pep-208-new-coercion-model"]], "PEP 217: Interactive Display Hook": [[463, "pep-217-interactive-display-hook"]], "PEP 218: A Standard Set Datatype": [[465, "pep-218-a-standard-set-datatype"]], "PEP 218: Built-In Set Objects": [[466, "pep-218-built-in-set-objects"]], "PEP 227: Nested Scopes": [[463, "pep-227-nested-scopes"], [464, "pep-227-nested-scopes"]], "PEP 229: New Build System": [[463, "pep-229-new-build-system"]], "PEP 230: Warning Framework": [[463, "pep-230-warning-framework"]], "PEP 232: Function Attributes": [[463, "pep-232-function-attributes"]], "PEP 234\uff1a\u758a\u4ee3\u5668": [[464, "pep-234-iterators"]], "PEP 235: Importing Modules on Case-Insensitive Platforms": [[463, "pep-235-importing-modules-on-case-insensitive-platforms"]], "PEP 236: __future__ Directives": [[463, "pep-236-future-directives"]], "PEP 237: Unifying Long Integers and Integers": [[464, "pep-237-unifying-long-integers-and-integers"], [466, "pep-237-unifying-long-integers-and-integers"]], "PEP 238: Changing the Division Operator": [[464, "pep-238-changing-the-division-operator"]], "PEP 241: Metadata in Python Packages": [[463, "pep-241-metadata-in-python-packages"]], "PEP 255: Simple Generators": [[464, "pep-255-simple-generators"], [465, "pep-255-simple-generators"]], "PEP 263: Source Code Encodings": [[465, "pep-263-source-code-encodings"]], "PEP 273: Importing Modules from ZIP Archives": [[465, "pep-273-importing-modules-from-zip-archives"]], "PEP 277: Unicode file name support for Windows NT": [[465, "pep-277-unicode-file-name-support-for-windows-nt"]], "PEP 278: Universal Newline Support": [[465, "pep-278-universal-newline-support"]], "PEP 279: enumerate()": [[465, "pep-279-enumerate"]], "PEP 282: The logging Package": [[465, "pep-282-the-logging-package"]], "PEP 285: A Boolean Type": [[465, "pep-285-a-boolean-type"]], "PEP 289: Generator Expressions": [[466, "pep-289-generator-expressions"]], "PEP 292: Simpler String Substitutions": [[466, "pep-292-simpler-string-substitutions"]], "PEP 293: Codec Error Handling Callbacks": [[465, "pep-293-codec-error-handling-callbacks"]], "PEP 301: Package Index and Metadata for Distutils": [[465, "pep-301-package-index-and-metadata-for-distutils"]], "PEP 302: New Import Hooks": [[465, "pep-302-new-import-hooks"]], "PEP 305: Comma-separated Files": [[465, "pep-305-comma-separated-files"]], "PEP 307: Pickle Enhancements": [[465, "pep-307-pickle-enhancements"]], "PEP 308: Conditional Expressions": [[467, "pep-308-conditional-expressions"]], "PEP 309: Partial Function Application": [[467, "pep-309-partial-function-application"]], "PEP 3101: A New Approach To String Formatting": [[470, "pep-3101-a-new-approach-to-string-formatting"]], "PEP 3101: Advanced String Formatting": [[468, "pep-3101-advanced-string-formatting"]], "PEP 3105: print As a Function": [[468, "pep-3105-print-as-a-function"]], "PEP 3106: Dictionary Views": [[469, "pep-3106-dictionary-views"]], "PEP 3110: Exception-Handling Changes": [[468, "pep-3110-exception-handling-changes"]], "PEP 3112: Byte Literals": [[468, "pep-3112-byte-literals"]], "PEP 3116: New I/O Library": [[468, "pep-3116-new-i-o-library"]], "PEP 3118: New memoryview implementation and buffer protocol documentation": [[476, "pep-3118-new-memoryview-implementation-and-buffer-protocol-documentation"]], "PEP 3118\uff1a\u4fee\u8a02\u7de9\u885d\u5354\u5b9a": [[468, "pep-3118-revised-buffer-protocol"]], "PEP 3119: Abstract Base Classes": [[468, "pep-3119-abstract-base-classes"]], "PEP 3127: Integer Literal Support and Syntax": [[468, "pep-3127-integer-literal-support-and-syntax"]], "PEP 3129: Class Decorators": [[468, "pep-3129-class-decorators"]], "PEP 3137: The memoryview Object": [[469, "pep-3137-the-memoryview-object"]], "PEP 3141: A Type Hierarchy for Numbers": [[468, "pep-3141-a-type-hierarchy-for-numbers"]], "PEP 3147: PYC Repository Directories": [[475, "pep-3147-pyc-repository-directories"]], "PEP 3148: The concurrent.futures module": [[475, "pep-3148-the-concurrent-futures-module"]], "PEP 3149: ABI Version Tagged .so Files": [[475, "pep-3149-abi-version-tagged-so-files"]], "PEP 314: Metadata for Python Software Packages v1.1": [[467, "pep-314-metadata-for-python-software-packages-v1-1"]], "PEP 3151: Reworking the OS and IO exception hierarchy": [[476, "pep-3151-reworking-the-os-and-io-exception-hierarchy"]], "PEP 3155: Qualified name for classes and functions": [[476, "pep-3155-qualified-name-for-classes-and-functions"]], "PEP 318: Decorators for Functions and Methods": [[466, "pep-318-decorators-for-functions-and-methods"]], "PEP 322: Reverse Iteration": [[466, "pep-322-reverse-iteration"]], "PEP 324: New subprocess Module": [[466, "pep-324-new-subprocess-module"]], "PEP 327: Decimal Data Type": [[466, "pep-327-decimal-data-type"]], "PEP 328: Absolute and Relative Imports": [[467, "pep-328-absolute-and-relative-imports"]], "PEP 328: Multi-line Imports": [[466, "pep-328-multi-line-imports"]], "PEP 331: Locale-Independent Float/String Conversions": [[466, "pep-331-locale-independent-float-string-conversions"]], "PEP 3333: Python Web Server Gateway Interface v1.0.1": [[475, "pep-3333-python-web-server-gateway-interface-v1-0-1"]], "PEP 338: Executing Modules as Scripts": [[467, "pep-338-executing-modules-as-scripts"]], "PEP 341: Unified try/except/finally": [[467, "pep-341-unified-try-except-finally"]], "PEP 342: New Generator Features": [[467, "pep-342-new-generator-features"]], "PEP 343: The 'with' statement": [[467, "pep-343-the-with-statement"], [468, "pep-343-the-with-statement"]], "PEP 352: Exceptions as New-Style Classes": [[467, "pep-352-exceptions-as-new-style-classes"]], "PEP 353: Using ssize_t as the index type": [[467, "pep-353-using-ssize-t-as-the-index-type"]], "PEP 357: The '__index__' method": [[467, "pep-357-the-index-method"]], "PEP 362\uff1a\u51fd\u5f0f\u7c3d\u540d\u7269\u4ef6": [[476, "pep-362-function-signature-object"]], "PEP 366: Explicit Relative Imports From a Main Module": [[468, "pep-366-explicit-relative-imports-from-a-main-module"]], "PEP 370: Per-user site-packages Directory": [[468, "pep-370-per-user-site-packages-directory"]], "PEP 371: The multiprocessing Package": [[468, "pep-371-the-multiprocessing-package"]], "PEP 372: Adding an Ordered Dictionary to collections": [[469, "pep-372-adding-an-ordered-dictionary-to-collections"]], "PEP 372\uff1a\u6709\u5e8f\u5b57\u5178": [[471, "pep-372-ordered-dictionaries"]], "PEP 378: Format Specifier for Thousands Separator": [[469, "pep-378-format-specifier-for-thousands-separator"], [471, "pep-378-format-specifier-for-thousands-separator"]], "PEP 380: Syntax for Delegating to a Subgenerator": [[476, "pep-380-syntax-for-delegating-to-a-subgenerator"]], "PEP 384: Defining a Stable ABI": [[475, "pep-384-defining-a-stable-abi"]], "PEP 389: Argparse Command Line Parsing Module": [[475, "pep-389-argparse-command-line-parsing-module"]], "PEP 389: The argparse Module for Parsing Command Lines": [[469, "pep-389-the-argparse-module-for-parsing-command-lines"]], "PEP 391: Dictionary Based Configuration for Logging": [[475, "pep-391-dictionary-based-configuration-for-logging"]], "PEP 391: Dictionary-Based Configuration For Logging": [[469, "pep-391-dictionary-based-configuration-for-logging"]], "PEP 393: Flexible String Representation": [[476, "pep-393-flexible-string-representation"]], "PEP 397\uff1a\u9069\u7528\u65bc Windows \u7684 Python \u555f\u52d5\u5668": [[476, "pep-397-python-launcher-for-windows"]], "PEP 405\uff1a\u865b\u64ec\u74b0\u5883": [[476, "pep-405-virtual-environments"]], "PEP 409: Suppressing exception context": [[476, "pep-409-suppressing-exception-context"]], "PEP 412: Key-Sharing Dictionary": [[476, "pep-412-key-sharing-dictionary"]], "PEP 414: Explicit Unicode literals": [[476, "pep-414-explicit-unicode-literals"]], "PEP 420: Implicit Namespace Packages": [[476, "pep-420-implicit-namespace-packages"]], "PEP 421\uff1a\u65b0\u589e sys.implementation": [[476, "pep-421-adding-sys-implementation"]], "PEP 434: IDLE Enhancement Exception for All Branches": [[469, "pep-434-idle-enhancement-exception-for-all-branches"]], "PEP 436: Argument Clinic": [[477, "pep-436-argument-clinic"]], "PEP 442: Safe Object Finalization": [[477, "pep-442-safe-object-finalization"]], "PEP 445: Customization of CPython Memory Allocators": [[477, "pep-445-customization-of-cpython-memory-allocators"]], "PEP 446: Newly Created File Descriptors Are Non-Inheritable": [[477, "pep-446-newly-created-file-descriptors-are-non-inheritable"]], "PEP 448 - Additional Unpacking Generalizations": [[478, "pep-448-additional-unpacking-generalizations"]], "PEP 451: A ModuleSpec Type for the Import System": [[477, "pep-451-a-modulespec-type-for-the-import-system"]], "PEP 453: Explicit Bootstrapping of PIP in Python Installations": [[477, "pep-453-explicit-bootstrapping-of-pip-in-python-installations"]], "PEP 456: Secure and Interchangeable Hash Algorithm": [[477, "pep-456-secure-and-interchangeable-hash-algorithm"]], "PEP 461 - percent formatting support for bytes and bytearray": [[478, "pep-461-percent-formatting-support-for-bytes-and-bytearray"]], "PEP 465 - A dedicated infix operator for matrix multiplication": [[478, "pep-465-a-dedicated-infix-operator-for-matrix-multiplication"]], "PEP 466: Network Security Enhancements for Python 2.7": [[469, "pep-466-network-security-enhancements-for-python-2-7"]], "PEP 468: Preserving Keyword Argument Order": [[479, "pep-468-preserving-keyword-argument-order"]], "PEP 471 - os.scandir() function -- a better and faster directory iterator": [[478, "pep-471-os-scandir-function-a-better-and-faster-directory-iterator"]], "PEP 475: Retry system calls failing with EINTR": [[478, "pep-475-retry-system-calls-failing-with-eintr"]], "PEP 476: Enabling certificate verification by default for stdlib http clients": [[469, "pep-476-enabling-certificate-verification-by-default-for-stdlib-http-clients"], [477, "pep-476-enabling-certificate-verification-by-default-for-stdlib-http-clients"]], "PEP 477: Backport ensurepip (PEP 453) to Python 2.7": [[469, "pep-477-backport-ensurepip-pep-453-to-python-2-7"]], "PEP 479: Change StopIteration handling inside generators": [[478, "pep-479-change-stopiteration-handling-inside-generators"]], "PEP 484 - Type Hints": [[478, "pep-484-type-hints"]], "PEP 485: A function for testing approximate equality": [[478, "pep-485-a-function-for-testing-approximate-equality"]], "PEP 486: Make the Python Launcher aware of virtual environments": [[478, "pep-486-make-the-python-launcher-aware-of-virtual-environments"]], "PEP 487: Descriptor Protocol Enhancements": [[479, "pep-487-descriptor-protocol-enhancements"]], "PEP 487: Simpler customization of class creation": [[479, "pep-487-simpler-customization-of-class-creation"]], "PEP 488: Elimination of PYO files": [[478, "pep-488-elimination-of-pyo-files"]], "PEP 489: Multi-phase extension module initialization": [[478, "pep-489-multi-phase-extension-module-initialization"]], "PEP 492 - Coroutines with async and await syntax": [[478, "pep-492-coroutines-with-async-and-await-syntax"]], "PEP 493: HTTPS verification migration tools for Python 2.7": [[469, "pep-493-https-verification-migration-tools-for-python-2-7"]], "PEP 495: Local Time Disambiguation": [[479, "pep-495-local-time-disambiguation"]], "PEP 498: Formatted string literals": [[479, "pep-498-formatted-string-literals"]], "PEP 515: Underscores in Numeric Literals": [[479, "pep-515-underscores-in-numeric-literals"]], "PEP 519: Adding a file system path protocol": [[479, "pep-519-adding-a-file-system-path-protocol"]], "PEP 520: Preserving Class Attribute Definition Order": [[479, "pep-520-preserving-class-attribute-definition-order"]], "PEP 523: Adding a frame evaluation API to CPython": [[479, "pep-523-adding-a-frame-evaluation-api-to-cpython"]], "PEP 525: Asynchronous Generators": [[479, "pep-525-asynchronous-generators"]], "PEP 526: Syntax for variable annotations": [[479, "pep-526-syntax-for-variable-annotations"]], "PEP 528: Change Windows console encoding to UTF-8": [[479, "pep-528-change-windows-console-encoding-to-utf-8"]], "PEP 529: Change Windows filesystem encoding to UTF-8": [[479, "pep-529-change-windows-filesystem-encoding-to-utf-8"]], "PEP 530: Asynchronous Comprehensions": [[479, "pep-530-asynchronous-comprehensions"]], "PEP 538: Legacy C Locale Coercion": [[480, "pep-538-legacy-c-locale-coercion"]], "PEP 539: New C API for Thread-Local Storage": [[480, "pep-539-new-c-api-for-thread-local-storage"]], "PEP 540: Forced UTF-8 Runtime Mode": [[480, "pep-540-forced-utf-8-runtime-mode"]], "PEP 545\uff1aPython \u6587\u4ef6\u7ffb\u8b6f": [[480, "pep-545-python-documentation-translations"]], "PEP 552: Hash-based .pyc Files": [[480, "pep-552-hash-based-pyc-files"]], "PEP 553: Built-in breakpoint()": [[480, "pep-553-built-in-breakpoint"]], "PEP 560: Core Support for typing module and Generic Types": [[480, "pep-560-core-support-for-typing-module-and-generic-types"]], "PEP 562: Customization of Access to Module Attributes": [[480, "pep-562-customization-of-access-to-module-attributes"]], "PEP 563 \u53ef\u80fd\u4e0d\u662f\u672a\u4f86": [[473, "pep-563-may-not-be-the-future"]], "PEP 563: Postponed Evaluation of Annotations": [[480, "pep-563-postponed-evaluation-of-annotations"]], "PEP 564: New Time Functions With Nanosecond Resolution": [[480, "pep-564-new-time-functions-with-nanosecond-resolution"]], "PEP 565: Show DeprecationWarning in __main__": [[480, "pep-565-show-deprecationwarning-in-main"]], "PEP 578: Python Runtime Audit Hooks": [[481, "pep-578-python-runtime-audit-hooks"]], "PEP 587: Python Initialization Configuration": [[481, "pep-587-python-initialization-configuration"]], "PEP 590: Vectorcall: a fast calling protocol for CPython": [[481, "pep-590-vectorcall-a-fast-calling-protocol-for-cpython"]], "PEP 604\uff1a\u65b0\u578b\u806f\u96c6\u904b\u7b97\u5b50": [[472, "pep-604-new-type-union-operator"]], "PEP 612\uff1a\u53c3\u6578\u898f\u7bc4\u8b8a\u6578": [[472, "pep-612-parameter-specification-variables"]], "PEP 613\uff1a\u578b\u5225\u5225\u540d (TypeAlias)": [[472, "pep-613-typealias"]], "PEP 626\uff1a\u7528\u65bc\u9664\u932f\u548c\u5176\u4ed6\u5de5\u5177\u7684\u7cbe\u78ba\u5217\u865f": [[472, "pep-626-precise-line-numbers-for-debugging-and-other-tools"]], "PEP 634\uff1a\u7d50\u69cb\u6a21\u5f0f\u5339\u914d": [[472, "pep-634-structural-pattern-matching"]], "PEP 646\uff1a\u53ef\u8b8a\u53c3\u6578\u6cdb\u578b (variadic generics)": [[473, "pep-646-variadic-generics"]], "PEP 647\uff1a\u4f7f\u7528\u8005\u5b9a\u7fa9\u7684\u578b\u5225\u9632\u8b77": [[472, "pep-647-user-defined-type-guards"]], "PEP 652\uff1a\u7dad\u8b77\u7a69\u5b9a ABI": [[472, "pep-652-maintaining-the-stable-abi"]], "PEP 654\uff1a\u4f8b\u5916\u7fa4\u7d44\u8207 except*": [[473, "pep-654-exception-groups-and-except"]], "PEP 655\uff1a\u6a19\u8a18\u7368\u7acb TypedDict \u9805\u76ee\u70ba\u5fc5\u8981\u6216\u4e0d\u5fc5\u8981": [[473, "pep-655-marking-individual-typeddict-items-as-required-or-not-required"]], "PEP 657\uff1a\u56de\u6eaf (traceback) \u4e2d\u66f4\u7d30\u7dfb\u7684\u932f\u8aa4\u4f4d\u7f6e": [[473, "pep-657-fine-grained-error-locations-in-tracebacks"]], "PEP 659\uff1a\u7279\u5316\u7684\u9069\u61c9\u6027\u76f4\u8b6f\u5668": [[473, "pep-659-specializing-adaptive-interpreter"]], "PEP 669: Low impact monitoring for CPython": [[474, "pep-669-low-impact-monitoring-for-cpython"]], "PEP 673\uff1aSelf \u578b\u5225": [[473, "pep-673-self-type"]], "PEP 675\uff1a\u4efb\u610f\u7684\u6587\u672c\u5b57\u4e32\u578b\u5225 (Arbitrary literal string type)": [[473, "pep-675-arbitrary-literal-string-type"]], "PEP 678\uff1a\u904b\u7528\u4f8b\u5916\u8a3b\u89e3\u4f7f\u5176\u66f4\u52a0\u8a73\u76e1": [[473, "pep-678-exceptions-can-be-enriched-with-notes"]], "PEP 681\uff1a\u8cc7\u6599\u985e\u5225\u8f49\u63db (Data class transforms)": [[473, "pep-681-data-class-transforms"]], "PEP 684: A Per-Interpreter GIL": [[474, "pep-684-a-per-interpreter-gil"]], "PEP 688: Making the buffer protocol accessible in Python": [[474, "pep-688-making-the-buffer-protocol-accessible-in-python"]], "PEP 692: Using TypedDict for more precise **kwargs typing": [[474, "pep-692-using-typeddict-for-more-precise-kwargs-typing"]], "PEP 695: Type Parameter Syntax": [[474, "pep-695-type-parameter-syntax"]], "PEP 698: Override Decorator for Static Typing": [[474, "pep-698-override-decorator-for-static-typing"]], "PEP 701: Syntactic formalization of f-strings": [[474, "pep-701-syntactic-formalization-of-f-strings"]], "PEP 709: Comprehension inlining": [[474, "pep-709-comprehension-inlining"]], "PEPs 252 and 253: Type and Class Changes": [[464, "peps-252-and-253-type-and-class-changes"]], "PIL-style: shape, strides and suboffsets": [[7, "pil-style-shape-strides-and-suboffsets"]], "POP3 \u7269\u4ef6": [[305, "pop3-objects"]], "POP3 \u7bc4\u4f8b": [[305, "pop3-example"]], "PYTHONMALLOC environment variable": [[479, "pythonmalloc-environment-variable"]], "Pack and Unpack functions": [[25, "pack-and-unpack-functions"]], "Pack functions": [[25, "pack-functions"]], "Package Relative Imports": [[432, "package-relative-imports"]], "Packages": [[432, "packages"]], "Packer Objects": [[408, "packer-objects"]], "Packer Options": [[369, "packer-options"]], "Panel Objects": [[179, "panel-objects"]], "Parallel filesystem cache for compiled bytecode files": [[481, "parallel-filesystem-cache-for-compiled-bytecode-files"]], "Parenthesized forms": [[430, "parenthesized-forms"]], "Parser API": [[207, "parser-api"]], "Parser defaults": [[120, "parser-defaults"]], "Parsing ASCII Encoded Bytes": [[394, "parsing-ascii-encoded-bytes"]], "Parsing Rules": [[331, "parsing-rules"]], "Parsing XML with Namespaces": [[413, "parsing-xml-with-namespaces"]], "Parsing arguments": [[5, "parsing-arguments"], [292, "parsing-arguments"]], "Partial Sorts": [[108, "partial-sorts"]], "Partial parsing": [[120, "partial-parsing"]], "Passing pointers (or: passing parameters by reference)": [[176, "passing-pointers-or-passing-parameters-by-reference"]], "Passing values into a generator": [[95, "passing-values-into-a-generator"]], "Patch \u63cf\u8ff0\u5668\u8207\u4ee3\u7406\u7269\u4ef6 (Proxy Objects)": [[389, "patching-descriptors-and-proxy-objects"]], "Patch \u88dd\u98fe\u5668": [[390, "patch-decorators"]], "Patchers": [[389, "the-patchers"]], "Path Objects": [[422, "path-objects"]], "Path entry finder protocol": [[432, "path-entry-finder-protocol"]], "Path entry finders": [[432, "path-entry-finders"]], "Patterns": [[427, "patterns"]], "Patterns to avoid": [[102, "patterns-to-avoid"]], "Pen control": [[384, "pen-control"], [384, "id1"]], "Per code object events": [[353, "per-code-object-events"]], "Per-Class Scope": [[100, "per-class-scope"]], "Performance": [[85, "performance"], [258, "performance"], [299, "performance"], [470, "performance"]], "Performance options": [[456, "performance-options"]], "Performing Matches": [[106, "performing-matches"]], "Persistence of External Objects": [[299, "persistence-of-external-objects"]], "Personalization": [[235, "personalization"]], "Physical lines": [[435, "physical-lines"]], "Pickle protocol 5 with out-of-band data buffers": [[481, "pickle-protocol-5-with-out-of-band-data-buffers"]], "Pickle serialization": [[425, "pickle-serialization"]], "Pickling": [[94, "pickling"]], "Pickling Class Instances": [[299, "pickling-class-instances"]], "Pipes and Queues": [[283, "pipes-and-queues"]], "Planet": [[94, "planet"]], "Platform Support Removals": [[480, "platform-support-removals"]], "Platform-dependent efficient copy operations": [[332, "platform-dependent-efficient-copy-operations"]], "Platform-specific notes": [[376, "platform-specific-notes"]], "Pointers": [[176, "pointers"]], "Policies": [[132, "policies"]], "Policy Framework": [[476, "policy-framework"]], "Policy Objects": [[132, "policy-objects"]], "Polling Objects": [[328, "polling-objects"]], "Popen Constructor": [[348, "popen-constructor"]], "Popen Objects": [[348, "popen-objects"]], "Populating the parser": [[292, "populating-the-parser"]], "Port-Specific Changes": [[465, "port-specific-changes"], [466, "port-specific-changes"], [467, "port-specific-changes"]], "Port-Specific Changes: FreeBSD": [[469, "port-specific-changes-freebsd"]], "Port-Specific Changes: IRIX": [[468, "port-specific-changes-irix"]], "Port-Specific Changes: Mac OS X": [[468, "port-specific-changes-mac-os-x"], [469, "port-specific-changes-mac-os-x"]], "Port-Specific Changes: Windows": [[468, "port-specific-changes-windows"], [469, "port-specific-changes-windows"]], "Porting C code": [[476, "porting-c-code"]], "Porting To Python 3.0": [[470, "porting-to-python-3-0"]], "Porting to 2.0": [[462, "porting-to-2-0"]], "Porting to Python 2.3": [[465, "porting-to-python-2-3"]], "Porting to Python 2.4": [[466, "porting-to-python-2-4"]], "Porting to Python 2.5": [[467, "porting-to-python-2-5"]], "Porting to Python 2.6": [[468, "porting-to-python-2-6"]], "Porting to Python 2.7": [[469, "porting-to-python-2-7"]], "Porting to Python 3.1": [[471, "porting-to-python-3-1"]], "Porting to Python 3.12": [[474, "porting-to-python-3-12"], [474, "id5"]], "Porting to Python 3.2": [[475, "porting-to-python-3-2"]], "Porting to Python 3.4": [[477, "porting-to-python-3-4"]], "Porting to Python 3.5": [[478, "porting-to-python-3-5"]], "Porting to Python 3.6": [[479, "porting-to-python-3-6"]], "Porting to Python 3.7": [[480, "porting-to-python-3-7"]], "Porting to Python 3.8": [[481, "porting-to-python-3-8"]], "Porting to Python 3.9": [[482, "porting-to-python-3-9"], [482, "id2"]], "Positional-only parameters": [[481, "positional-only-parameters"]], "Post-init processing": [[181, "post-init-processing"]], "Power and logarithmic functions": [[275, "power-and-logarithmic-functions"]], "Practical application": [[93, "practical-application"]], "Precomputed tables": [[281, "precomputed-tables"]], "Prefix scheme": [[355, "prefix-scheme"]], "Prefix, net mask and host mask": [[259, "prefix-net-mask-and-host-mask"]], "Preinitialize Python with PyPreConfig": [[34, "preinitialize-python-with-pypreconfig"]], "PrepareProtocol \u7269\u4ef6": [[340, "prepareprotocol-objects"]], "Preparing the class namespace": [[428, "preparing-the-class-namespace"]], "Preprocessor flags": [[456, "preprocessor-flags"]], "Prerequisites": [[96, "prerequisites"]], "Pretty top": [[382, "pretty-top"]], "Pretty-printers": [[96, "pretty-printers"]], "PrettyPrinter \u7269\u4ef6": [[307, "prettyprinter-objects"]], "Primaries": [[430, "primaries"]], "Primer": [[93, "primer"]], "Print Is A Function": [[470, "print-is-a-function"]], "Printing a version string": [[292, "printing-a-version-string"]], "Printing and clearing": [[23, "printing-and-clearing"]], "Printing help": [[120, "printing-help"]], "Priority Queue\uff08\u512a\u5148\u4f47\u5217\uff09": [[134, "priority-queue"]], "Process Pools": [[283, "module-multiprocessing.pool"]], "Process Watchers": [[132, "process-watchers"]], "Process \u8207\u4f8b\u5916": [[283, "process-and-exceptions"]], "Process-wide parameters": [[33, "process-wide-parameters"]], "ProcessPoolExecutor": [[166, "processpoolexecutor"]], "ProcessPoolExecutor \u7bc4\u4f8b": [[166, "processpoolexecutor-example"]], "ProcessingInstruction \u7269\u4ef6": [[410, "processinginstruction-objects"]], "Profiling and Tracing": [[33, "profiling-and-tracing"]], "Programmatic Interface": [[380, "programmatic-interface"]], "Programmatic access to enumeration members and their attributes": [[94, "programmatic-access-to-enumeration-members-and-their-attributes"]], "Programming guidelines": [[283, "programming-guidelines"]], "Progressbar": [[376, "progressbar"]], "Properties": [[93, "properties"]], "ProtocolError \u7269\u4ef6": [[419, "protocolerror-objects"]], "Protocols": [[133, "protocols"]], "Provider API": [[299, "provider-api"]], "Providing a C API for an Extension Module": [[73, "providing-a-c-api-for-an-extension-module"]], "Providing finer control over data attributes": [[76, "providing-finer-control-over-data-attributes"]], "Provisional Policy with New Header API": [[476, "provisional-policy-with-new-header-api"]], "Proxies": [[110, "proxies"]], "Proxy Objects": [[283, "proxy-objects"]], "ProxyBasicAuthHandler \u7269\u4ef6": [[395, "proxybasicauthhandler-objects"]], "ProxyDigestAuthHandler \u7269\u4ef6": [[395, "proxydigestauthhandler-objects"]], "ProxyHandler \u7269\u4ef6": [[395, "proxyhandler-objects"]], "Public classes": [[384, "public-classes"]], "Public functions": [[163, "public-functions"]], "Pull API for non-blocking parsing": [[413, "pull-api-for-non-blocking-parsing"]], "Pure Embedding": [[72, "pure-embedding"]], "Pure Python Equivalents": [[93, "pure-python-equivalents"]], "Putting it all together": [[292, "putting-it-all-together"]], "PyConfig": [[34, "pyconfig"]], "PyHash API": [[30, "pyhash-api"]], "PyObject Slots": [[63, "pyobject-slots"]], "PyPreConfig": [[34, "pypreconfig"]], "PyStatus": [[34, "pystatus"]], "PyTypeObject Definition": [[63, "pytypeobject-definition"]], "PyTypeObject Slots": [[63, "pytypeobject-slots"]], "PyVarObject Slots": [[63, "pyvarobject-slots"]], "PyWideStringList": [[34, "pywidestringlist"]], "PyWin32": [[461, "pywin32"]], "PyZipFile \u7269\u4ef6": [[422, "pyzipfile-objects"]], "Py_GetArgcArgv()": [[34, "py-getargcargv"]], "Py_RunMain()": [[34, "py-runmain"]], "Pymalloc: A Specialized Object Allocator": [[465, "pymalloc-a-specialized-object-allocator"]], "Python 2.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[462, "what-s-new-in-python-2-0"]], "Python 2.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[463, "what-s-new-in-python-2-1"]], "Python 2.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[464, "what-s-new-in-python-2-2"]], "Python 2.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[465, "what-s-new-in-python-2-3"]], "Python 2.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[466, "what-s-new-in-python-2-4"]], "Python 2.5 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[467, "what-s-new-in-python-2-5"]], "Python 2.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[468, "what-s-new-in-python-2-6"]], "Python 2.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[469, "what-s-new-in-python-2-7"]], "Python 2.x \u7684\u672a\u4f86": [[469, "the-future-for-python-2-x"]], "Python 3.0": [[468, "python-3-0"]], "Python 3.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[470, "what-s-new-in-python-3-0"]], "Python 3.1 Features": [[469, "python-3-1-features"]], "Python 3.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[471, "what-s-new-in-python-3-1"]], "Python 3.10 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[472, "what-s-new-in-python-3-10"]], "Python 3.10.0 alpha 1": [[483, "python-3-10-0-alpha-1"]], "Python 3.10.0 alpha 2": [[483, "python-3-10-0-alpha-2"]], "Python 3.10.0 alpha 3": [[483, "python-3-10-0-alpha-3"]], "Python 3.10.0 alpha 4": [[483, "python-3-10-0-alpha-4"]], "Python 3.10.0 alpha 5": [[483, "python-3-10-0-alpha-5"]], "Python 3.10.0 alpha 6": [[483, "python-3-10-0-alpha-6"]], "Python 3.10.0 alpha 7": [[483, "python-3-10-0-alpha-7"]], "Python 3.10.0 beta 1": [[483, "python-3-10-0-beta-1"]], "Python 3.11 \u6703\u4e0d\u6703\u4f7f\u7528\u66f4\u591a\u8a18\u61b6\u9ad4\uff1f": [[473, "will-cpython-3-11-use-more-memory"]], "Python 3.11 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[473, "what-s-new-in-python-3-11"]], "Python 3.11.0 alpha 1": [[483, "python-3-11-0-alpha-1"]], "Python 3.11.0 alpha 2": [[483, "python-3-11-0-alpha-2"]], "Python 3.11.0 alpha 3": [[483, "python-3-11-0-alpha-3"]], "Python 3.11.0 alpha 4": [[483, "python-3-11-0-alpha-4"]], "Python 3.11.0 alpha 5": [[483, "python-3-11-0-alpha-5"]], "Python 3.11.0 alpha 6": [[483, "python-3-11-0-alpha-6"]], "Python 3.11.0 alpha 7": [[483, "python-3-11-0-alpha-7"]], "Python 3.11.0 beta 1": [[483, "python-3-11-0-beta-1"]], "Python 3.12 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[473, "pending-removal-in-python-3-12"], [473, "whatsnew311-c-api-pending-removal"]], "Python 3.12 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[474, "what-s-new-in-python-3-12"]], "Python 3.12.0 alpha 1": [[483, "python-3-12-0-alpha-1"]], "Python 3.12.0 alpha 2": [[483, "python-3-12-0-alpha-2"]], "Python 3.12.0 alpha 3": [[483, "python-3-12-0-alpha-3"]], "Python 3.12.0 alpha 4": [[483, "python-3-12-0-alpha-4"]], "Python 3.12.0 alpha 5": [[483, "python-3-12-0-alpha-5"]], "Python 3.12.0 alpha 6": [[483, "python-3-12-0-alpha-6"]], "Python 3.12.0 alpha 7": [[483, "python-3-12-0-alpha-7"]], "Python 3.12.0 beta 1": [[483, "python-3-12-0-beta-1"]], "Python 3.12.0 beta 2": [[483, "python-3-12-0-beta-2"]], "Python 3.12.0 beta 3": [[483, "python-3-12-0-beta-3"]], "Python 3.12.0 beta 4": [[483, "python-3-12-0-beta-4"]], "Python 3.12.0 final": [[483, "python-3-12-0-final"]], "Python 3.12.0 release candidate 1": [[483, "python-3-12-0-release-candidate-1"]], "Python 3.12.0 release candidate 2": [[483, "python-3-12-0-release-candidate-2"]], "Python 3.12.0 release candidate 3": [[483, "python-3-12-0-release-candidate-3"]], "Python 3.12.1 final": [[483, "python-3-12-1-final"]], "Python 3.12.2 final": [[483, "python-3-12-2-final"]], "Python 3.12.3 final": [[483, "python-3-12-3-final"]], "Python 3.13 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-13"]], "Python 3.14 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-14"], [474, "id7"]], "Python 3.15 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-15"], [474, "id8"]], "Python 3.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[475, "what-s-new-in-python-3-2"]], "Python 3.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[476, "what-s-new-in-python-3-3"]], "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[477, "what-s-new-in-python-3-4"], [478, "what-s-new-in-python-3-5"]], "Python 3.5.0 alpha 1": [[483, "python-3-5-0-alpha-1"]], "Python 3.5.0 alpha 2": [[483, "python-3-5-0-alpha-2"]], "Python 3.5.0 alpha 3": [[483, "python-3-5-0-alpha-3"]], "Python 3.5.0 alpha 4": [[483, "python-3-5-0-alpha-4"]], "Python 3.5.0 beta 1": [[483, "python-3-5-0-beta-1"]], "Python 3.5.0 beta 2": [[483, "python-3-5-0-beta-2"]], "Python 3.5.0 beta 3": [[483, "python-3-5-0-beta-3"]], "Python 3.5.0 beta 4": [[483, "python-3-5-0-beta-4"]], "Python 3.5.0 final": [[483, "python-3-5-0-final"]], "Python 3.5.0 release candidate 1": [[483, "python-3-5-0-release-candidate-1"]], "Python 3.5.0 release candidate 2": [[483, "python-3-5-0-release-candidate-2"]], "Python 3.5.0 release candidate 3": [[483, "python-3-5-0-release-candidate-3"]], "Python 3.5.0 release candidate 4": [[483, "python-3-5-0-release-candidate-4"]], "Python 3.5.1 final": [[483, "python-3-5-1-final"]], "Python 3.5.1 release candidate 1": [[483, "python-3-5-1-release-candidate-1"]], "Python 3.5.2 final": [[483, "python-3-5-2-final"]], "Python 3.5.2 release candidate 1": [[483, "python-3-5-2-release-candidate-1"]], "Python 3.5.3 final": [[483, "python-3-5-3-final"]], "Python 3.5.3 release candidate 1": [[483, "python-3-5-3-release-candidate-1"]], "Python 3.5.4 final": [[483, "python-3-5-4-final"]], "Python 3.5.4 release candidate 1": [[483, "python-3-5-4-release-candidate-1"]], "Python 3.5.4 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[478, "notable-changes-in-python-3-5-4"]], "Python 3.5.5 final": [[483, "python-3-5-5-final"]], "Python 3.5.5 release candidate 1": [[483, "python-3-5-5-release-candidate-1"]], "Python 3.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[479, "what-s-new-in-python-3-6"]], "Python 3.6.0 alpha 1": [[483, "python-3-6-0-alpha-1"]], "Python 3.6.0 alpha 2": [[483, "python-3-6-0-alpha-2"]], "Python 3.6.0 alpha 3": [[483, "python-3-6-0-alpha-3"]], "Python 3.6.0 alpha 4": [[483, "python-3-6-0-alpha-4"]], "Python 3.6.0 beta 1": [[483, "python-3-6-0-beta-1"]], "Python 3.6.0 beta 2": [[483, "python-3-6-0-beta-2"]], "Python 3.6.0 beta 3": [[483, "python-3-6-0-beta-3"]], "Python 3.6.0 beta 4": [[483, "python-3-6-0-beta-4"]], "Python 3.6.0 final": [[483, "python-3-6-0-final"]], "Python 3.6.0 release candidate 1": [[483, "python-3-6-0-release-candidate-1"]], "Python 3.6.0 release candidate 2": [[483, "python-3-6-0-release-candidate-2"]], "Python 3.6.1 final": [[483, "python-3-6-1-final"]], "Python 3.6.1 release candidate 1": [[483, "python-3-6-1-release-candidate-1"]], "Python 3.6.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-10"]], "Python 3.6.13 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-13"]], "Python 3.6.14 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-14"]], "Python 3.6.2 final": [[483, "python-3-6-2-final"]], "Python 3.6.2 release candidate 1": [[483, "python-3-6-2-release-candidate-1"]], "Python 3.6.2 release candidate 2": [[483, "python-3-6-2-release-candidate-2"]], "Python 3.6.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-2"]], "Python 3.6.3 final": [[483, "python-3-6-3-final"]], "Python 3.6.3 release candidate 1": [[483, "python-3-6-3-release-candidate-1"]], "Python 3.6.4 final": [[483, "python-3-6-4-final"]], "Python 3.6.4 release candidate 1": [[483, "python-3-6-4-release-candidate-1"]], "Python 3.6.4 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-4"]], "Python 3.6.5 final": [[483, "python-3-6-5-final"]], "Python 3.6.5 release candidate 1": [[483, "python-3-6-5-release-candidate-1"]], "Python 3.6.5 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-5"]], "Python 3.6.6 final": [[483, "python-3-6-6-final"]], "Python 3.6.6 release candidate 1": [[483, "python-3-6-6-release-candidate-1"]], "Python 3.6.7 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-7"]], "Python 3.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[480, "what-s-new-in-python-3-7"]], "Python 3.7.0 alpha 1": [[483, "python-3-7-0-alpha-1"]], "Python 3.7.0 alpha 2": [[483, "python-3-7-0-alpha-2"]], "Python 3.7.0 alpha 3": [[483, "python-3-7-0-alpha-3"]], "Python 3.7.0 alpha 4": [[483, "python-3-7-0-alpha-4"]], "Python 3.7.0 beta 1": [[483, "python-3-7-0-beta-1"]], "Python 3.7.0 beta 2": [[483, "python-3-7-0-beta-2"]], "Python 3.7.0 beta 3": [[483, "python-3-7-0-beta-3"]], "Python 3.7.0 beta 4": [[483, "python-3-7-0-beta-4"]], "Python 3.7.0 beta 5": [[483, "python-3-7-0-beta-5"]], "Python 3.7.0 final": [[483, "python-3-7-0-final"]], "Python 3.7.0 release candidate 1": [[483, "python-3-7-0-release-candidate-1"]], "Python 3.7.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-1"]], "Python 3.7.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-10"]], "Python 3.7.11 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-11"]], "Python 3.7.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-2"]], "Python 3.7.6 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-6"]], "Python 3.8 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[481, "what-s-new-in-python-3-8"]], "Python 3.8.0 alpha 1": [[483, "python-3-8-0-alpha-1"]], "Python 3.8.0 alpha 2": [[483, "python-3-8-0-alpha-2"]], "Python 3.8.0 alpha 3": [[483, "python-3-8-0-alpha-3"]], "Python 3.8.0 alpha 4": [[483, "python-3-8-0-alpha-4"]], "Python 3.8.0 beta 1": [[483, "python-3-8-0-beta-1"]], "Python 3.8.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-1"]], "Python 3.8.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-10"], [481, "id1"]], "Python 3.8.12 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-12"]], "Python 3.8.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-2"]], "Python 3.8.3 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-3"]], "Python 3.8.8 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-8"]], "Python 3.8.9 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-9"]], "Python 3.9 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[482, "what-s-new-in-python-3-9"]], "Python 3.9.0 alpha 1": [[483, "python-3-9-0-alpha-1"]], "Python 3.9.0 alpha 2": [[483, "python-3-9-0-alpha-2"]], "Python 3.9.0 alpha 3": [[483, "python-3-9-0-alpha-3"]], "Python 3.9.0 alpha 4": [[483, "python-3-9-0-alpha-4"]], "Python 3.9.0 alpha 5": [[483, "python-3-9-0-alpha-5"]], "Python 3.9.0 alpha 6": [[483, "python-3-9-0-alpha-6"]], "Python 3.9.0 beta 1": [[483, "python-3-9-0-beta-1"]], "Python 3.9.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-1"]], "Python 3.9.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-2"]], "Python 3.9.3 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-3"]], "Python 3.9.5 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-5"]], "Python API": [[421, "python-api"]], "Python API \u7684\u8b8a\u5316": [[472, "changes-in-the-python-api"]], "Python API \u7684\u8b8a\u66f4": [[477, "changes-in-the-python-api"]], "Python Application": [[461, "python-application"]], "Python Build System": [[456, "python-build-system"]], "Python Bytecode Instructions": [[191, "python-bytecode-instructions"]], "Python Configuration": [[34, "python-configuration"]], "Python Debug Build": [[456, "python-debug-build"]], "Python Development Mode (-X dev)": [[480, "python-development-mode-x-dev"]], "Python Launcher for Windows": [[461, "python-launcher-for-windows"]], "Python Path Configuration": [[34, "python-path-configuration"]], "Python Runtime \u670d\u52d9": [[315, "python-runtime-services"]], "Python Specific Encodings": [[158, "python-specific-encodings"]], "Python UTF-8 \u6a21\u5f0f": [[293, "python-utf-8-mode"]], "Python curses \u6a21\u7d44": [[92, "the-python-curses-module"]], "Python next": [[483, "python-next"]], "Python \u4e2d\u662f\u5426\u6709\u4efb\u4f55\u8cc7\u6599\u5eab\u5957\u4ef6\u7684\u4ecb\u9762\uff1f": [[84, "are-there-any-interfaces-to-database-packages-in-python"]], "Python \u4ecb\u9762": [[367, "python-interface"]], "Python \u4f5c\u7528\u57df (Scope) \u53ca\u547d\u540d\u7a7a\u9593 (Namespace)": [[440, "python-scopes-and-namespaces"]], "Python \u521d\u59cb\u5316\u4e4b\u524d": [[33, "before-python-initialization"]], "Python \u521d\u59cb\u5316\u8a2d\u5b9a": [[34, "python-initialization-configuration"]], "Python \u53ef\u4ee5\u88ab\u7de8\u8b6f\u6210\u6a5f\u5668\u8a9e\u8a00\u3001C \u8a9e\u8a00\u6216\u5176\u4ed6\u7a2e\u8a9e\u8a00\u55ce\uff1f": [[78, "can-python-be-compiled-to-machine-code-c-or-some-other-language"]], "Python \u5957\u4ef6\u4e2d\u7684 __main__.py": [[114, "main-py-in-python-packages"]], "Python \u5982\u4f55\u7ba1\u7406\u8a18\u61b6\u9ad4\uff1f": [[78, "how-does-python-manage-memory"]], "Python \u5982\u4f55\u9054\u6210\u4efb\u52d9": [[97, "python-howtos"]], "Python \u5c0d Linux perf \u5206\u6790\u5668\u7684\u652f\u63f4": [[104, "python-support-for-the-linux-perf-profiler"]], "Python \u5c0d\u65bc\u5165\u9580\u7684\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u800c\u8a00\u662f\u5426\u70ba\u597d\u7684\u8a9e\u8a00\uff1f": [[80, "is-python-a-good-language-for-beginning-programmers"]], "Python \u5e38\u898b\u554f\u984c": [[82, "python-frequently-asked-questions"]], "Python \u6559\u5b78": [[445, "the-python-tutorial"]], "Python \u6587\u4ef6\u7684\u8ca2\u737b\u8005\u5011": [[0, "contributors-to-the-python-documentation"]], "Python \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff1f": [[484, "what-s-new-in-python"]], "Python \u6709\u54ea\u4e9b GUI \u5957\u4ef6\uff1f": [[81, "what-gui-toolkits-exist-for-python"]], "Python \u6709\u54ea\u4e9b WWW \u5de5\u5177\uff1f": [[84, "what-www-tools-are-there-for-python"]], "Python \u672a\u4f86\u9810\u671f\u6703\u6709\u54ea\u4e9b\u65b0\u7684\u958b\u767c\uff1f": [[80, "what-new-developments-are-expected-for-python-in-the-future"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab (Standard Library)": [[254, "the-python-standard-library"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd": [[451, "brief-tour-of-the-standard-library"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd\u2014\u2014\u7b2c\u4e8c\u90e8\u4efd": [[452, "brief-tour-of-the-standard-library-part-ii"]], "Python \u7684\u5206\u6790\u5668": [[308, "the-python-profilers"]], "Python \u7684\u5340\u57df\u8b8a\u6578\u548c\u5168\u57df\u8b8a\u6578\u6709\u4ec0\u9ebc\u898f\u5247\uff1f": [[85, "what-are-the-rules-for-local-and-global-variables-in-python"]], "Python \u7684\u7248\u672c\u7de8\u865f\u7cfb\u7d71\u662f\u5982\u4f55\u904b\u4f5c\u7684\uff1f": [[80, "how-does-the-python-version-numbering-scheme-work"]], "Python \u7684\u7a69\u5b9a\u6027\u5982\u4f55\uff1f": [[80, "how-stable-is-python"]], "Python \u7684\u8a2d\u7f6e\u8207\u4f7f\u7528": [[458, "python-setup-and-usage"]], "Python \u7a0b\u5f0f\u78bc\u662f\u5426\u6709\u7de8\u78bc\u6a19\u6e96\u6216\u98a8\u683c\u6307\u5357\uff1f": [[85, "are-there-coding-standards-or-a-style-guide-for-python-programs"]], "Python \u8a9e\u6cd5\u7684\u8b8a\u5316": [[472, "changes-in-the-python-syntax"]], "Python \u8a9e\u8a00\u53c3\u8003\u624b\u518a": [[433, "the-python-language-reference"]], "Python \u8a9e\u8a00\u670d\u52d9": [[264, "python-language-services"]], "Python \u8aaa\u660e\u6587\u4ef6": [[95, "python-documentation"]], "Python \u8aaa\u660e\u6587\u4ef6\u5167\u5bb9": [[68, "python-documentation-contents"]], "Python \u958b\u767c\u6a21\u5f0f": [[188, "python-development-mode"]], "Python \u958b\u767c\u6a21\u5f0f\u7684\u5f71\u97ff": [[188, "effects-of-the-python-development-mode"]], "Python's Unicode Support": [[109, "python-s-unicode-support"]], "Python-specific": [[95, "python-specific"]], "Python/C API \u53c3\u8003\u624b\u518a": [[32, "python-c-api-reference-manual"]], "QName \u7269\u4ef6": [[413, "qname-objects"]], "Querying Garbage Collector State": [[28, "querying-garbage-collector-state"]], "Querying and manipulating your option parser": [[292, "querying-and-manipulating-your-option-parser"]], "Querying the error indicator": [[23, "querying-the-error-indicator"]], "Querying the size of a terminal": [[293, "querying-the-size-of-a-terminal"]], "Querying the size of the output terminal": [[332, "querying-the-size-of-the-output-terminal"]], "Queue": [[134, "queue"]], "QueueHandler": [[269, "queuehandler"]], "QueueListener": [[269, "queuelistener"]], "Quick Links for add_argument()": [[120, "quick-links-for-add-argument"]], "Quick Reference": [[63, "quick-reference"]], "Quick Start": [[167, "quick-start"]], "Quick-start Tutorial": [[186, "quick-start-tutorial"]], "RLock \u7269\u4ef6": [[365, "rlock-objects"]], "Raising errors in a callback": [[292, "raising-errors-in-a-callback"]], "Raising exceptions": [[23, "raising-exceptions"]], "Random numbers": [[293, "random-numbers"]], "Randomized hashing": [[235, "randomized-hashing"]], "Ranges": [[344, "ranges"]], "Raw Memory Interface": [[42, "raw-memory-interface"]], "Raw String Notation": [[319, "raw-string-notation"]], "Raw-Unicode-Escape Codecs": [[64, "raw-unicode-escape-codecs"]], "RawConfigParser \u7269\u4ef6": [[167, "rawconfigparser-objects"]], "Re-ordering of keyword-only parameters in __init__()": [[181, "re-ordering-of-keyword-only-parameters-in-init"]], "Re-using old test code": [[388, "re-using-old-test-code"]], "Read-only Transports": [[133, "read-only-transports"]], "Reading and Writing Unicode Data": [[109, "reading-and-writing-unicode-data"]], "Reading and writing compressed files": [[270, "reading-and-writing-compressed-files"]], "Readline configuration": [[334, "readline-configuration"]], "Recipes": [[186, "recipes"]], "Recognised parameters for field specifiers": [[386, "id6"]], "Recommended configuration": [[344, "recommended-configuration"]], "Record Objects": [[281, "record-objects"]], "Record the current and peak size of all traced memory blocks": [[382, "record-the-current-and-peak-size-of-all-traced-memory-blocks"]], "Recursion Control": [[23, "recursion-control"]], "Redirection of local data, registry, and temporary paths": [[461, "redirection-of-local-data-registry-and-temporary-paths"]], "Reentrancy": [[258, "reentrancy"]], "Reentrant context managers": [[169, "reentrant-context-managers"]], "Reference": [[283, "reference"], [340, "reference"], [413, "reference"], [413, "id4"]], "Reference Counting in Python": [[73, "reference-counting-in-python"]], "Reference Counts": [[73, "reference-counts"]], "Reference Guide": [[292, "reference-guide"]], "References": [[95, "references"], [109, "references"], [109, "id2"], [109, "id3"], [432, "references"]], "Reflection": [[53, "reflection"]], "Registering and using tools": [[353, "registering-and-using-tools"]], "Registering callback functions": [[353, "registering-callback-functions"]], "Registry Handle Objects": [[405, "registry-handle-objects"]], "Regular Expression Examples": [[319, "regular-expression-examples"]], "Regular Expression Objects": [[319, "regular-expression-objects"]], "Regular packages": [[432, "regular-packages"]], "Related Articles": [[110, null]], "Relationship to PyXML": [[462, "relationship-to-pyxml"]], "Releasing the GIL from extension code": [[33, "releasing-the-gil-from-extension-code"]], "Removal of make touch build target": [[469, "removal-of-make-touch-build-target"], [478, "removal-of-make-touch-build-target"], [479, "removal-of-make-touch-build-target"]], "Removing the MAX_PATH Limitation": [[461, "removing-the-max-path-limitation"]], "Repeated Names Within an Object": [[262, "repeated-names-within-an-object"]], "Repeating Things": [[106, "repeating-things"]], "Replacing /bin/sh shell command substitution": [[348, "replacing-bin-sh-shell-command-substitution"]], "Replacing Older Functions with the subprocess Module": [[348, "replacing-older-functions-with-the-subprocess-module"]], "Replacing any use of try-finally and flag variables": [[169, "replacing-any-use-of-try-finally-and-flag-variables"]], "Replacing functions from the popen2 module": [[348, "replacing-functions-from-the-popen2-module"]], "Replacing os.popen(), os.popen2(), os.popen3()": [[348, "replacing-os-popen-os-popen2-os-popen3"]], "Replacing os.system()": [[348, "replacing-os-system"]], "Replacing shell pipeline": [[348, "replacing-shell-pipeline"]], "Replacing the os.spawn family": [[348, "replacing-the-os-spawn-family"]], "Replacing the standard import system": [[432, "replacing-the-standard-import-system"]], "Repr \u7269\u4ef6": [[321, "repr-objects"]], "Request Handler Objects": [[338, "request-handler-objects"]], "Request Objects": [[395, "request-objects"]], "Reserved classes of identifiers": [[435, "reserved-classes-of-identifiers"]], "Resolution of names": [[429, "resolution-of-names"]], "Resolving MRO entries": [[428, "resolving-mro-entries"]], "Resource Limits": [[322, "resource-limits"]], "Resource Usage": [[322, "resource-usage"]], "ResourceWarning \u7bc4\u4f8b": [[188, "resourcewarning-example"]], "Resources": [[103, "resources"]], "Resources limitations": [[422, "resources-limitations"]], "Restricted Enum subclassing": [[94, "restricted-enum-subclassing"]], "Restricting Globals": [[299, "restricting-globals"]], "Restrictions": [[330, "restrictions"]], "Retrieving source code": [[255, "retrieving-source-code"]], "Return codes": [[461, "return-codes"]], "Return types": [[176, "return-types"]], "Reusable context managers": [[169, "reusable-context-managers"]], "Revision History and Acknowledgements": [[95, "revision-history-and-acknowledgements"]], "RotatingFileHandler": [[269, "rotatingfilehandler"]], "Rounding modes": [[186, "rounding-modes"]], "Row \u7269\u4ef6": [[340, "row-objects"]], "Run menu (Editor window only)": [[247, "run-menu-editor-window-only"]], "Runner context manager": [[135, "runner-context-manager"]], "Runners (\u57f7\u884c\u5668)": [[135, "runners"]], "Running Tasks Concurrently": [[139, "running-tasks-concurrently"]], "Running a logging socket listener in production": [[102, "running-a-logging-socket-listener-in-production"]], "Running in Threads": [[139, "running-in-threads"]], "Running user code": [[247, "running-user-code"]], "Running without a subprocess": [[247, "running-without-a-subprocess"]], "Runtime configuration": [[425, "runtime-configuration"]], "SAX2 \u652f\u63f4": [[462, "sax2-support"]], "SAXException \u7269\u4ef6": [[414, "saxexception-objects"]], "SHAKE variable length digests": [[235, "shake-variable-length-digests"]], "SMTP \u7269\u4ef6": [[335, "smtp-objects"]], "SMTP \u7bc4\u4f8b": [[335, "smtp-example"]], "SMTPHandler": [[269, "smtphandler"]], "SQLite and Python types": [[340, "sqlite-and-python-types"]], "SSL Contexts": [[341, "ssl-contexts"]], "SSL Sockets": [[341, "ssl-sockets"]], "SSL session": [[341, "ssl-session"]], "Scheduler Objects": [[325, "scheduler-objects"]], "Scheduling From Other Threads": [[139, "scheduling-from-other-threads"]], "Scrollable Widget Options": [[376, "scrollable-widget-options"]], "Search and Replace": [[106, "search-and-replace"], [247, "search-and-replace"]], "Searching": [[432, "searching"]], "Security": [[483, "security"], [483, "id2"], [483, "id10"], [483, "id40"], [483, "id50"], [483, "id60"], [483, "id73"], [483, "id82"], [483, "id101"], [483, "id110"], [483, "id127"], [483, "id137"], [483, "id146"], [483, "id158"], [483, "id219"], [483, "id230"], [483, "id240"], [483, "id249"], [483, "id259"], [483, "id277"], [483, "id288"], [483, "id298"], [483, "id308"], [483, "id318"], [483, "id329"], [483, "id340"], [483, "id355"], [483, "id365"], [483, "id376"], [483, "id387"], [483, "id398"], [483, "id414"], [483, "id449"], [483, "id460"], [483, "id501"], [483, "id523"], [483, "id546"], [483, "id555"], [483, "id556"], [483, "id615"], [483, "id624"], [483, "id634"], [483, "id644"], [483, "id648"], [483, "id656"], [483, "id669"]], "Security Considerations": [[245, "security-considerations"], [348, "security-considerations"]], "Security Options": [[456, "security-options"]], "Security considerations": [[268, "security-considerations"], [341, "security-considerations"]], "Select kqueue": [[426, "select-kqueue"]], "Selecting elements": [[95, "selecting-elements"]], "Self-signed certificates": [[341, "self-signed-certificates"]], "Semaphore": [[138, "semaphore"]], "Semaphore Objects": [[365, "semaphore-objects"]], "Semaphore \u7bc4\u4f8b": [[365, "semaphore-example"]], "Sending and receiving logging events across a network": [[102, "sending-and-receiving-logging-events-across-a-network"]], "Sending logging messages to email, with buffering": [[102, "sending-logging-messages-to-email-with-buffering"]], "Separator": [[376, "separator"]], "Sequence Object Structures": [[63, "sequence-object-structures"]], "Sequence Patterns": [[427, "sequence-patterns"]], "Sequence Types --- list, tuple, range": [[344, "sequence-types-list-tuple-range"]], "SequenceMatcher \u7269\u4ef6": [[190, "sequencematcher-objects"]], "SequenceMatcher \u7bc4\u4f8b": [[190, "sequencematcher-examples"]], "Sequences": [[428, "sequences"]], "Sequences (Tuples/Lists)": [[85, "sequences-tuples-lists"]], "Server Creation Notes": [[338, "server-creation-notes"]], "Server Objects": [[338, "server-objects"]], "Server \u7269\u4ef6": [[126, "server-objects"]], "Server-side operation": [[341, "server-side-operation"]], "ServerProxy \u7269\u4ef6": [[419, "serverproxy-objects"]], "Set Types --- set, frozenset": [[344, "set-types-set-frozenset"]], "Set displays": [[430, "set-displays"]], "Set types": [[428, "set-types"]], "Setting Options": [[369, "setting-options"]], "Setting events globally": [[353, "setting-events-globally"]], "Setting preferences": [[247, "setting-preferences"]], "Setting up an importer": [[250, "setting-up-an-importer"]], "Settings and special methods": [[384, "settings-and-special-methods"]], "Settings for measurement": [[384, "settings-for-measurement"]], "Setup for Python from a Linux distro": [[96, "setup-for-python-from-a-linux-distro"]], "Setup with Python built from source": [[96, "setup-with-python-built-from-source"]], "Shared ctypes Objects": [[283, "shared-ctypes-objects"]], "Sharing state between processes": [[283, "sharing-state-between-processes"]], "Shebang Lines": [[461, "shebang-lines"]], "Shell menu (Shell window only)": [[247, "shell-menu-shell-window-only"]], "Shell window": [[247, "shell-window"]], "Shielding From Cancellation": [[139, "shielding-from-cancellation"]], "Shifting operations": [[430, "shifting-operations"]], "Side effect \u51fd\u5f0f\u4ee5\u53ca\u53ef\u758a\u4ee3\u7269\u4ef6": [[390, "side-effect-functions-and-iterables"]], "Signal Handling": [[23, "signal-handling"], [388, "signal-handling"]], "Signals": [[186, "signals"]], "Signals and threads": [[333, "signals-and-threads"]], "Simple Patterns": [[106, "simple-patterns"]], "Simple Usage: Checking Examples in Docstrings": [[193, "simple-usage-checking-examples-in-docstrings"]], "Simple Usage: Checking Examples in a Text File": [[193, "simple-usage-checking-examples-in-a-text-file"]], "Simple example: A descriptor that returns a constant": [[93, "simple-example-a-descriptor-that-returns-a-constant"]], "Simple hashing": [[235, "simple-hashing"]], "SimpleNamespace": [[476, "simplenamespace"]], "SimpleQueue \u7269\u4ef6": [[316, "simplequeue-objects"]], "SimpleXMLRPCServer \u7269\u4ef6": [[420, "simplexmlrpcserver-objects"]], "SimpleXMLRPCServer \u7bc4\u4f8b": [[420, "simplexmlrpcserver-example"]], "Simulating scanf()": [[319, "simulating-scanf"]], "Single use, reusable and reentrant context managers": [[169, "single-use-reusable-and-reentrant-context-managers"]], "Single-phase initialization": [[45, "single-phase-initialization"]], "SipHash24": [[426, "siphash24"]], "Sizegrip": [[376, "sizegrip"]], "Skipping tests and expected failures": [[388, "skipping-tests-and-expected-failures"]], "Sleeping": [[139, "sleeping"]], "Slice objects": [[428, "slice-objects"]], "Slicings": [[430, "slicings"]], "Slot Type typedefs": [[63, "slot-type-typedefs"]], "Small functions and the lambda expression": [[95, "small-functions-and-the-lambda-expression"]], "Snapshot": [[382, "snapshot"]], "Soapbox": [[193, "soapbox"]], "Socket \u5efa\u7acb": [[341, "socket-creation"]], "Socket \u7269\u4ef6": [[337, "socket-objects"]], "Socket \u7a0b\u5f0f\u8a2d\u8a08\u6307\u5357": [[107, "socket-programming-howto"]], "Socket \u7cfb\u5217\u5bb6\u65cf": [[337, "socket-families"]], "SocketHandler": [[269, "sockethandler"]], "Sockets": [[107, "sockets"], [426, "sockets"]], "Sockets and Layers": [[110, "sockets-and-layers"]], "Sockets \u4f55\u6642\u92b7\u6bc0": [[107, "when-sockets-die"]], "Solaris message catalog support": [[230, "solaris-message-catalog-support"]], "Speaking logging messages": [[102, "speaking-logging-messages"]], "Special Attributes": [[344, "special-attributes"]], "Special Attributes of GenericAlias objects": [[344, "special-attributes-of-genericalias-objects"]], "Special Turtle methods": [[384, "special-turtle-methods"]], "Special considerations for __main__": [[432, "special-considerations-for-main"]], "Special forms": [[386, "special-forms"]], "Special functions": [[275, "special-functions"]], "Special method lookup": [[428, "special-method-lookup"]], "Special method names": [[428, "special-method-names"]], "Special values": [[186, "special-values"]], "Specification for the Python Type System": [[386, "specification-for-the-python-type-system"]], "Specifying custom filter chains": [[270, "specifying-custom-filter-chains"]], "Specifying the Interpreter": [[421, "specifying-the-interpreter"]], "Specifying the required argument types (function prototypes)": [[176, "specifying-the-required-argument-types-function-prototypes"]], "Spinbox": [[376, "spinbox"]], "Splitting Strings": [[106, "splitting-strings"]], "StackSummary \u7269\u4ef6": [[381, "stacksummary-objects"]], "Standard Compliance and Interoperability": [[262, "standard-compliance-and-interoperability"]], "Standard Encodings": [[158, "standard-encodings"]], "Standard Exceptions": [[23, "standard-exceptions"]], "Standard Formats": [[347, "standard-formats"]], "Standard Generic Classes": [[344, "standard-generic-classes"]], "Standard Interpreter Types": [[385, "standard-interpreter-types"]], "Standard Warning Categories": [[23, "standard-warning-categories"]], "Standard option actions": [[292, "standard-option-actions"]], "Standard option types": [[292, "standard-option-types"]], "Starting and ending a curses application": [[92, "starting-and-ending-a-curses-application"]], "Startup and Code Execution": [[247, "startup-and-code-execution"]], "Startup failure": [[247, "startup-failure"]], "Startup hooks": [[320, "startup-hooks"]], "Stateful extraction filter example": [[358, "stateful-extraction-filter-example"]], "Stateless Encoding and Decoding": [[158, "stateless-encoding-and-decoding"]], "Static Types": [[63, "static-types"]], "Static method objects": [[428, "static-method-objects"]], "Static methods": [[93, "static-methods"]], "Statistic": [[382, "statistic"]], "StatisticDiff": [[382, "statisticdiff"]], "StrEnum": [[94, "strenum"]], "Stream Encoding and Decoding": [[158, "stream-encoding-and-decoding"]], "StreamHandler": [[269, "streamhandler"]], "StreamReader": [[136, "streamreader"]], "StreamReader \u7269\u4ef6": [[158, "streamreader-objects"]], "StreamReaderWriter \u7269\u4ef6": [[158, "streamreaderwriter-objects"]], "StreamRecoder \u7269\u4ef6": [[158, "streamrecoder-objects"]], "StreamWriter": [[136, "streamwriter"]], "StreamWriter \u7269\u4ef6": [[158, "streamwriter-objects"]], "Streaming Protocols": [[133, "streaming-protocols"]], "String Changes": [[465, "string-changes"]], "String Methods": [[344, "string-methods"], [462, "string-methods"]], "String and Bytes literals": [[435, "string-and-bytes-literals"]], "String literal concatenation": [[435, "string-literal-concatenation"]], "String representations": [[425, "string-representations"]], "Strings and buffers": [[5, "strings-and-buffers"]], "Struct Sequence Objects": [[60, "struct-sequence-objects"]], "Structure of a program": [[429, "structure-of-a-program"]], "Structure/union alignment and byte order": [[176, "structure-union-alignment-and-byte-order"]], "Structured Markup Processing Tools": [[273, "structured-markup-processing-tools"]], "Structured Parse Results": [[394, "structured-parse-results"]], "Structured data types": [[176, "structured-data-types"]], "Structures and unions": [[176, "structures-and-unions"]], "Sub-commands": [[120, "sub-commands"]], "Sub-interpreter support": [[33, "sub-interpreter-support"]], "Subclass QueueHandler": [[102, "subclass-queuehandler"], [102, "id4"]], "Subclass QueueListener": [[102, "subclass-queuelistener"], [102, "id3"]], "Subclassing EnumType": [[94, "subclassing-enumtype"]], "Subclassing QueueHandler and QueueListener- a ZeroMQ example": [[102, "subclassing-queuehandler-and-queuelistener-a-zeromq-example"]], "Subclassing QueueHandler and QueueListener- a pynng example": [[102, "subclassing-queuehandler-and-queuelistener-a-pynng-example"]], "Subclassing Repr Objects": [[321, "subclassing-repr-objects"]], "Subclassing other types": [[76, "subclassing-other-types"]], "Submodules": [[432, "submodules"]], "Subprocess Protocols": [[133, "subprocess-protocols"]], "Subprocess Transports": [[133, "subprocess-transports"]], "Subscriptions": [[430, "subscriptions"]], "Summary -- Release Highlights": [[477, "summary-release-highlights"], [480, "summary-release-highlights"]], "Summary -- Release highlights": [[476, "summary-release-highlights"], [478, "summary-release-highlights"], [479, "summary-release-highlights"], [481, "summary-release-highlights"], [482, "summary-release-highlights"]], "Summary Information Objects": [[281, "summary-information-objects"]], "Summary of invocation logic": [[93, "summary-of-invocation-logic"]], "Support for Perf Maps": [[51, "support-for-perf-maps"]], "Support functions": [[45, "support-functions"]], "Supported Datatypes": [[167, "supported-datatypes"]], "Supported INI File Structure": [[167, "supported-ini-file-structure"]], "Supported XPath syntax": [[413, "supported-xpath-syntax"]], "Supported __dunder__ names": [[94, "supported-dunder-names"]], "Supported _sunder_ names": [[94, "supported-sunder-names"]], "Supported tar formats": [[358, "supported-tar-formats"]], "Supporting a variable number of context managers": [[169, "supporting-a-variable-number-of-context-managers"]], "Supporting cyclic garbage collection": [[76, "supporting-cyclic-garbage-collection"]], "Supporting older Python versions": [[358, "supporting-older-python-versions"]], "Surprises": [[176, "surprises"]], "Surprising Edge Cases": [[100, "surprising-edge-cases"]], "Synchronization between processes": [[283, "synchronization-between-processes"]], "Synchronization primitives": [[283, "synchronization-primitives"]], "SyntaxErrors": [[472, "syntaxerrors"]], "SysLogHandler": [[269, "sysloghandler"]], "SystemTap Tapsets": [[98, "systemtap-tapsets"]], "TCP Echo Client": [[133, "tcp-echo-client"]], "TCP Echo Server": [[133, "tcp-echo-server"]], "TEST_PREFIX": [[389, "test-prefix"]], "TLS 1.3": [[341, "tls-1-3"]], "TLS \u5347\u7d1a": [[126, "tls-upgrade"]], "Tab Identifiers": [[376, "tab-identifiers"]], "Tab Options": [[376, "tab-options"]], "Tab \u9375\u81ea\u52d5\u5b8c\u6210 (Tab Completion) \u548c\u6b77\u53f2\u8a18\u9304\u7de8\u8f2f (History Editing)": [[447, "tab-completion-and-history-editing"]], "Tabular ListBox": [[375, "tabular-listbox"]], "Tag Options": [[376, "tag-options"]], "TarFile \u7269\u4ef6": [[358, "tarfile-objects"]], "TarInfo \u7269\u4ef6": [[358, "tarinfo-objects"]], "Task Cancellation": [[139, "task-cancellation"]], "Task Groups": [[139, "task-groups"]], "Task Object": [[139, "task-object"]], "Task lifetime support": [[128, "task-lifetime-support"]], "Technical Tutorial": [[93, "technical-tutorial"]], "Tell Turtle's state": [[384, "tell-turtle-s-state"]], "Telnet Objects": [[359, "telnet-objects"]], "Telnet \u7bc4\u4f8b": [[359, "telnet-example"]], "Template Objects": [[301, "template-objects"]], "Temporarily Suppressing Warnings": [[400, "temporarily-suppressing-warnings"]], "Terminology": [[292, "terminology"]], "Test Discovery\uff08\u6e2c\u8a66\u63a2\u7d22\uff09": [[388, "test-discovery"]], "Test cases": [[388, "test-cases"]], "Testing Warnings": [[400, "testing-warnings"]], "Testing for SSL support": [[341, "testing-for-ssl-support"]], "Testing your CGI script": [[151, "testing-your-cgi-script"]], "Tests": [[483, "tests"], [483, "id6"], [483, "id14"], [483, "id23"], [483, "id38"], [483, "id44"], [483, "id54"], [483, "id64"], [483, "id70"], [483, "id86"], [483, "id96"], [483, "id105"], [483, "id115"], [483, "id121"], [483, "id131"], [483, "id141"], [483, "id150"], [483, "id162"], [483, "id171"], [483, "id180"], [483, "id188"], [483, "id197"], [483, "id205"], [483, "id213"], [483, "id223"], [483, "id234"], [483, "id244"], [483, "id253"], [483, "id263"], [483, "id272"], [483, "id281"], [483, "id292"], [483, "id302"], [483, "id312"], [483, "id322"], [483, "id333"], [483, "id344"], [483, "id359"], [483, "id369"], [483, "id380"], [483, "id391"], [483, "id402"], [483, "id411"], [483, "id418"], [483, "id436"], [483, "id443"], [483, "id453"], [483, "id464"], [483, "id473"], [483, "id481"], [483, "id488"], [483, "id505"], [483, "id514"], [483, "id521"], [483, "id527"], [483, "id537"], [483, "id550"], [483, "id564"], [483, "id574"], [483, "id588"], [483, "id594"], [483, "id600"], [483, "id605"], [483, "id612"], [483, "id623"], [483, "id629"], [483, "id639"], [483, "id652"], [483, "id662"], [483, "id667"], [483, "id674"], [483, "id684"], [483, "id699"], [483, "id705"], [483, "id713"], [483, "id719"], [483, "id725"], [483, "id738"]], "Text Encodings": [[158, "text-encodings"]], "Text Munging": [[319, "text-munging"]], "Text Sequence Type --- str": [[344, "text-sequence-type-str"]], "Text Transforms": [[158, "text-transforms"]], "Text Vs. Data Instead Of Unicode Vs. 8-bit": [[470, "text-vs-data-instead-of-unicode-vs-8-bit"]], "Text and CDATASection Objects": [[410, "text-and-cdatasection-objects"]], "Text colors": [[247, "text-colors"]], "Textbox objects": [[177, "textbox-objects"]], "The Attributes Interface": [[416, "the-attributes-interface"]], "The AttributesNS Interface": [[416, "the-attributesns-interface"]], "The Backslash Plague": [[106, "the-backslash-plague"]], "The Basics": [[76, "the-basics"]], "The C3 Method Resolution Order": [[103, "the-c3-method-resolution-order"]], "The Catalog constructor": [[230, "the-catalog-constructor"]], "The Ellipsis Object": [[344, "the-ellipsis-object"]], "The GNUTranslations class": [[230, "the-gnutranslations-class"]], "The Microsoft Store package": [[461, "the-microsoft-store-package"]], "The Module's Method Table and Initialization Function": [[73, "the-module-s-method-table-and-initialization-function"]], "The Namespace object": [[120, "the-namespace-object"]], "The NotImplemented Object": [[344, "the-notimplemented-object"]], "The Null Object": [[344, "the-null-object"]], "The NullTranslations class": [[230, "the-nulltranslations-class"]], "The Packer": [[369, "the-packer"]], "The Path Based Finder": [[432, "the-path-based-finder"]], "The Process class": [[283, "the-process-class"]], "The Python 2.3 Method Resolution Order": [[103, "the-python-2-3-method-resolution-order"]], "The Python Zip Application Archive Format": [[421, "the-python-zip-application-archive-format"]], "The STOP_ITERATION event": [[353, "the-stop-iteration-event"]], "The Stats Class": [[308, "the-stats-class"]], "The String Type": [[109, "the-string-type"]], "The Very High Level Layer": [[66, "the-very-high-level-layer"]], "The Warnings Filter": [[400, "the-warnings-filter"]], "The Window Manager": [[369, "the-window-manager"]], "The ZoneInfo class": [[425, "the-zoneinfo-class"]], "The add_argument() method": [[120, "the-add-argument-method"]], "The assert statement": [[436, "the-assert-statement"]], "The ast module": [[468, "the-ast-module"]], "The async for statement": [[427, "the-async-for-statement"]], "The async with statement": [[427, "the-async-with-statement"]], "The beginning": [[103, "the-beginning"]], "The break statement": [[436, "the-break-statement"]], "The contextlib module": [[467, "the-contextlib-module"], [468, "the-contextlib-module"]], "The continue statement": [[436, "the-continue-statement"]], "The del statement": [[436, "the-del-statement"]], "The dircmp class": [[216, "the-dircmp-class"]], "The embeddable package": [[461, "the-embeddable-package"]], "The end": [[103, "the-end"]], "The for statement": [[427, "the-for-statement"]], "The fractions Module": [[468, "the-fractions-module"]], "The full installer": [[461, "the-full-installer"]], "The functools module": [[95, "the-functools-module"]], "The future_builtins module": [[468, "the-future-builtins-module"]], "The global statement": [[436, "the-global-statement"]], "The if statement": [[427, "the-if-statement"]], "The import statement": [[436, "the-import-statement"]], "The index Parameter": [[369, "the-index-parameter"]], "The initialization of the sys.path module search path": [[354, "the-initialization-of-the-sys-path-module-search-path"]], "The interpreter stack": [[255, "the-interpreter-stack"]], "The itertools module": [[95, "the-itertools-module"]], "The json module: JavaScript Object Notation": [[468, "the-json-module-javascript-object-notation"]], "The match statement": [[427, "the-match-statement"]], "The meta path": [[432, "the-meta-path"]], "The module cache": [[432, "the-module-cache"]], "The multiprocessing.dummy module": [[283, "module-multiprocessing.dummy"]], "The multiprocessing.sharedctypes module": [[283, "module-multiprocessing.sharedctypes"]], "The nonlocal statement": [[436, "the-nonlocal-statement"]], "The operator module": [[95, "the-operator-module"]], "The optparse Module": [[465, "the-optparse-module"]], "The parse_args() method": [[120, "the-parse-args-method"]], "The pass statement": [[436, "the-pass-statement"]], "The plistlib module: A Property-List Parser": [[468, "the-plistlib-module-a-property-list-parser"]], "The power operator": [[430, "the-power-operator"]], "The purpose of __class_getitem__": [[428, "the-purpose-of-class-getitem"]], "The pymalloc allocator": [[42, "the-pymalloc-allocator"]], "The raise statement": [[436, "the-raise-statement"]], "The return statement": [[436, "the-return-statement"]], "The spawn and forkserver start methods": [[283, "the-spawn-and-forkserver-start-methods"]], "The store action": [[292, "the-store-action"]], "The try statement": [[427, "the-try-statement"]], "The turtle's position": [[384, "the-turtle-s-position"]], "The type statement": [[436, "the-type-statement"]], "The while statement": [[427, "the-while-statement"]], "The with statement": [[427, "the-with-statement"]], "The yield statement": [[436, "the-yield-statement"]], "Thin Ice": [[73, "thin-ice"]], "Third-party guides": [[105, "third-party-guides"]], "Thread Local Storage (TLS) API": [[33, "thread-local-storage-tls-api"]], "Thread Local Storage Support": [[33, "thread-local-storage-support"]], "Thread Objects": [[365, "thread-objects"]], "Thread Safety": [[267, "thread-safety"]], "Thread Specific Storage (TSS) API": [[33, "thread-specific-storage-tss-api"]], "Thread State and the Global Interpreter Lock": [[33, "thread-state-and-the-global-interpreter-lock"]], "Thread-Local Data": [[365, "thread-local-data"]], "ThreadPoolExecutor": [[166, "threadpoolexecutor"]], "ThreadPoolExecutor \u7bc4\u4f8b": [[166, "threadpoolexecutor-example"]], "Threading model": [[369, "threading-model"]], "TimePeriod": [[94, "timeperiod"]], "TimedRotatingFileHandler": [[269, "timedrotatingfilehandler"]], "Timeouts": [[139, "timeouts"]], "Timeouts and the accept method": [[337, "timeouts-and-the-accept-method"]], "Timeouts and the connect method": [[337, "timeouts-and-the-connect-method"]], "Timer Objects": [[365, "timer-objects"]], "Timezone Constants": [[366, "timezone-constants"]], "Tips for Writing Unicode-aware Programs": [[109, "tips-for-writing-unicode-aware-programs"]], "Tix Widgets": [[375, "tix-widgets"]], "Tix \u6307\u4ee4": [[375, "tix-commands"]], "Tk Option Data Types": [[369, "tk-option-data-types"]], "Tkinter Life Preserver": [[369, "tkinter-life-preserver"]], "Tkinter Modules": [[369, "tkinter-modules"]], "Tkinter \u5c0d\u8a71\u6846": [[189, "tkinter-dialogs"]], "Tkinter \u7684\u554f\u7b54": [[81, "tkinter-questions"]], "Tokenizing Input": [[378, "tokenizing-input"]], "Tool identifiers": [[353, "tool-identifiers"]], "Tools/Demos": [[483, "tools-demos"], [483, "id19"], [483, "id34"], [483, "id48"], [483, "id58"], [483, "id66"], [483, "id91"], [483, "id99"], [483, "id125"], [483, "id135"], [483, "id155"], [483, "id166"], [483, "id175"], [483, "id228"], [483, "id275"], [483, "id286"], [483, "id316"], [483, "id327"], [483, "id338"], [483, "id374"], [483, "id385"], [483, "id396"], [483, "id406"], [483, "id423"], [483, "id448"], [483, "id458"], [483, "id469"], [483, "id483"], [483, "id493"], [483, "id509"], [483, "id519"], [483, "id532"], [483, "id542"], [483, "id554"], [483, "id563"], [483, "id577"], [483, "id584"], [483, "id607"], [483, "id621"], [483, "id633"], [483, "id642"], [483, "id663"], [483, "id677"], [483, "id687"], [483, "id715"], [483, "id720"], [483, "id726"], [483, "id739"]], "Top-level Non-Object, Non-Array Values": [[262, "top-level-non-object-non-array-values"]], "Trace": [[382, "trace"]], "Traceback": [[382, "traceback"]], "Traceback Examples": [[381, "traceback-examples"]], "Traceback objects": [[428, "traceback-objects"]], "TracebackException \u7269\u4ef6": [[381, "tracebackexception-objects"]], "Transaction control": [[340, "transaction-control"]], "Transaction control via the autocommit attribute": [[340, "transaction-control-via-the-autocommit-attribute"]], "Transaction control via the isolation_level attribute": [[340, "transaction-control-via-the-isolation-level-attribute"]], "Translation of docstrings into different languages": [[384, "translation-of-docstrings-into-different-languages"]], "Transports": [[133, "transports"]], "Transports Hierarchy": [[133, "transports-hierarchy"]], "Tree mode": [[235, "tree-mode"]], "TreeBuilder \u7269\u4ef6": [[413, "treebuilder-objects"]], "Treeview": [[376, "treeview"]], "Trigonometric functions": [[275, "trigonometric-functions"]], "Ttk Styling": [[376, "ttk-styling"]], "Ttk Widgets": [[376, "ttk-widgets"]], "Tuples": [[344, "tuples"]], "Tuples \u548c\u5e8f\u5217 (Sequences)": [[442, "tuples-and-sequences"]], "Tuple\uff08\u5143\u7d44\uff09\u7269\u4ef6": [[60, "tuple-objects"]], "Turning events on and off": [[353, "turning-events-on-and-off"]], "Turtle graphics reference": [[384, "turtle-graphics-reference"]], "Turtle methods": [[384, "turtle-methods"]], "Turtle motion": [[384, "turtle-motion"]], "Turtle star": [[384, null]], "Turtle state": [[384, "turtle-state"]], "Tutorial": [[292, "tutorial"], [340, "tutorial"]], "Two new environment variables for debug mode": [[469, "two-new-environment-variables-for-debug-mode"]], "Type Annotation Types --- Generic Alias, Union": [[344, "type-annotation-types-generic-alias-union"]], "Type Hinting Generics in Standard Collections": [[482, "type-hinting-generics-in-standard-collections"]], "Type Mapping": [[410, "type-mapping"]], "Type Objects": [[344, "type-objects"]], "Type conversions": [[176, "type-conversions"]], "Type parameter lists": [[427, "type-parameter-lists"]], "Type-specific Attribute Management": [[75, "type-specific-attribute-management"]], "Types and members": [[255, "types-and-members"]], "UDP Echo Client": [[133, "udp-echo-client"]], "UDP Echo Server": [[133, "udp-echo-server"]], "URL Parsing": [[394, "url-parsing"]], "URL Quoting": [[394, "url-quoting"]], "URL parsing security": [[394, "url-parsing-security"]], "URLError": [[110, "urlerror"]], "UTF-16 \u7de8\u89e3\u78bc\u5668": [[64, "utf-16-codecs"]], "UTF-32 \u7de8\u89e3\u78bc\u5668": [[64, "utf-32-codecs"]], "UTF-7 \u7de8\u89e3\u78bc\u5668": [[64, "utf-7-codecs"]], "UTF-8 \u6a21\u5f0f": [[461, "utf-8-mode"]], "UTF-8 \u7de8\u89e3\u78bc\u5668": [[64, "utf-8-codecs"]], "UUencode \u8207 UUdecode \u51fd\u5f0f": [[426, "uuencode-and-uudecode-functions"]], "Unary arithmetic and bitwise operations": [[430, "unary-arithmetic-and-bitwise-operations"]], "Understanding How Tkinter Wraps Tcl/Tk": [[369, "understanding-how-tkinter-wraps-tcl-tk"]], "Understanding option actions": [[292, "understanding-option-actions"]], "Unicode": [[462, "unicode"], [475, "unicode"]], "Unicode Character Properties": [[64, "unicode-character-properties"]], "Unicode Exception Objects": [[23, "unicode-exception-objects"]], "Unicode HOWTO": [[109, "unicode-howto"]], "Unicode Literals in Python Source Code": [[109, "unicode-literals-in-python-source-code"]], "Unicode Properties": [[109, "unicode-properties"]], "Unicode Regular Expressions": [[109, "unicode-regular-expressions"]], "Unicode Type": [[64, "unicode-type"]], "Unicode filenames": [[109, "unicode-filenames"]], "Unicode issues": [[358, "unicode-issues"]], "Unicode \u7269\u4ef6": [[64, "unicode-objects"]], "Unicode \u7269\u4ef6\u8207\u7de8\u89e3\u78bc\u5668": [[64, "unicode-objects-and-codecs"]], "Unicode \u8b8a\u66f4": [[464, "unicode-changes"]], "Unicode-Escape Codecs": [[64, "unicode-escape-codecs"]], "Union Type": [[344, "union-type"]], "Unittest API": [[193, "unittest-api"]], "Unix \u5e73\u53f0": [[303, "unix-platforms"]], "Unix \u7279\u6709\u670d\u52d9": [[391, "unix-specific-services"]], "Unix \u8a0a\u865f": [[126, "unix-signals"]], "UnknownHandler \u7269\u4ef6": [[395, "unknownhandler-objects"]], "Unpack functions": [[25, "unpack-functions"]], "Unpacker Objects": [[408, "unpacker-objects"]], "Unsupported Operating Systems": [[478, "unsupported-operating-systems"]], "Updated module: ElementTree 1.3": [[469, "updated-module-elementtree-1-3"]], "Updated module: unittest": [[469, "updated-module-unittest"]], "Updating Code For New Versions of Dependencies": [[400, "updating-code-for-new-versions-of-dependencies"]], "Upgrading optparse code": [[120, "upgrading-optparse-code"]], "Use String Methods": [[106, "use-string-methods"]], "Use object-oriented turtle graphics": [[384, "use-object-oriented-turtle-graphics"]], "Use of alternative formatting styles": [[102, "use-of-alternative-formatting-styles"]], "Use of contextvars": [[102, "use-of-contextvars"]], "Use the turtle module namespace": [[384, "use-the-turtle-module-namespace"]], "Use turtle graphics in a script": [[384, "use-turtle-graphics-in-a-script"]], "Use with GDB commands": [[96, "use-with-gdb-commands"]], "Useful Handlers": [[101, "useful-handlers"]], "User output in Shell": [[247, "user-output-in-shell"]], "User scheme": [[355, "user-scheme"]], "User-defined objects": [[268, "user-defined-objects"]], "UserDict \u7269\u4ef6": [[160, "userdict-objects"]], "UserList \u7269\u4ef6": [[160, "userlist-objects"]], "UserString \u7269\u4ef6": [[160, "userstring-objects"]], "Uses for metaclasses": [[428, "uses-for-metaclasses"]], "Using DLLs in Practice": [[77, "using-dlls-in-practice"]], "Using Filters to impart contextual information": [[102, "using-filters-to-impart-contextual-information"]], "Using IP Addresses with other modules": [[99, "using-ip-addresses-with-other-modules"]], "Using LogRecord factories": [[102, "using-logrecord-factories"]], "Using LoggerAdapters to impart contextual information": [[102, "using-loggeradapters-to-impart-contextual-information"]], "Using Regular Expressions": [[106, "using-regular-expressions"]], "Using Tix": [[375, "using-tix"]], "Using ZoneInfo": [[425, "using-zoneinfo"]], "Using a context manager as a function decorator": [[169, "using-a-context-manager-as-a-function-decorator"]], "Using a context manager for selective logging": [[102, "using-a-context-manager-for-selective-logging"]], "Using a custom __new__()": [[94, "using-a-custom-new"]], "Using a custom timer": [[308, "using-a-custom-timer"]], "Using a descriptive string": [[94, "using-a-descriptive-string"]], "Using a pool of workers": [[283, "using-a-pool-of-workers"]], "Using a remote manager": [[283, "using-a-remote-manager"]], "Using a rotator and namer to customize log rotation processing": [[102, "using-a-rotator-and-namer-to-customize-log-rotation-processing"]], "Using arbitrary objects as messages": [[101, "using-arbitrary-objects-as-messages"]], "Using auto": [[94, "using-auto"]], "Using automatic values": [[94, "using-automatic-values"]], "Using concurrent.futures.ProcessPoolExecutor": [[102, "using-concurrent-futures-processpoolexecutor"]], "Using custom message objects": [[102, "using-custom-message-objects"]], "Using different digest sizes": [[235, "using-different-digest-sizes"]], "Using events": [[384, "using-events"]], "Using file rotation": [[102, "using-file-rotation"]], "Using locks, conditions, and semaphores in the with statement": [[365, "using-locks-conditions-and-semaphores-in-the-with-statement"]], "Using loggers as attributes in a class or passing them as parameters": [[102, "using-loggers-as-attributes-in-a-class-or-passing-them-as-parameters"]], "Using logging in multiple modules": [[102, "using-logging-in-multiple-modules"]], "Using object": [[94, "using-object"]], "Using objects other than dicts to pass contextual information": [[102, "using-objects-other-than-dicts-to-pass-contextual-information"]], "Using particular formatting styles throughout your application": [[102, "using-particular-formatting-styles-throughout-your-application"]], "Using re.VERBOSE": [[106, "using-re-verbose"]], "Using screen events": [[384, "using-screen-events"]], "Using the Debug build and Development mode": [[96, "using-the-debug-build-and-development-mode"]], "Using the cgi module": [[151, "using-the-cgi-module"]], "Using the python-gdb extension": [[96, "using-the-python-gdb-extension"]], "Using the subprocess Module": [[348, "using-the-subprocess-module"]], "Utilities": [[169, "utilities"]], "Utility functions": [[176, "utility-functions"], [288, "utility-functions"]], "Validator class": [[93, "validator-class"]], "Value Patterns": [[427, "value-patterns"]], "Value Types": [[405, "value-types"]], "Value comparisons": [[430, "value-comparisons"]], "Variable-sized data types": [[176, "variable-sized-data-types"]], "Vectorcall \u5354\u5b9a": [[10, "the-vectorcall-protocol"]], "Vectorcall \u652f\u63f4 API": [[10, "vectorcall-support-api"]], "Very High Level Embedding": [[72, "very-high-level-embedding"]], "View Objects": [[281, "view-objects"]], "Views And Iterators Instead Of Lists": [[470, "views-and-iterators-instead-of-lists"]], "Virtual environments": [[354, "virtual-environments"]], "Virtual events": [[376, "virtual-events"], [376, "id2"]], "Visibility": [[384, "visibility"]], "W3C C14N \u6e2c\u8a66\u5957\u4ef6": [[426, "w3c-c14n-test-suite"]], "Waiting Primitives": [[139, "waiting-primitives"]], "Warning Categories": [[400, "warning-categories"]], "Warnings": [[193, "warnings"]], "WatchedFileHandler": [[269, "watchedfilehandler"]], "Wave_read \u7269\u4ef6": [[401, "wave-read-objects"]], "Wave_write \u7269\u4ef6": [[401, "wave-write-objects"]], "Weak Reference Support": [[75, "weak-reference-support"]], "WebAssembly \u5e73\u53f0": [[257, "webassembly-platforms"]], "WebAssembly \u9078\u9805": [[456, "webassembly-options"]], "What About Exceptions?": [[193, "what-about-exceptions"]], "What About Python 1.6?": [[462, "what-about-python-1-6"]], "What Is Deterministic Profiling?": [[308, "what-is-deterministic-profiling"]], "What are options for?": [[292, "what-are-options-for"]], "What are positional arguments for?": [[292, "what-are-positional-arguments-for"]], "What are the \"best practices\" for using import in a module?": [[85, "what-are-the-best-practices-for-using-import-in-a-module"]], "What can be pickled and unpickled?": [[299, "what-can-be-pickled-and-unpickled"]], "What does the slash(/) in the parameter list of a function mean?": [[85, "what-does-the-slash-in-the-parameter-list-of-a-function-mean"]], "What happens if no configuration is provided": [[101, "what-happens-if-no-configuration-is-provided"]], "What is curses?": [[92, "what-is-curses"]], "What is delegation?": [[85, "what-is-delegation"]], "What is self?": [[85, "what-is-self"]], "What is the most efficient way to concatenate many strings together?": [[85, "what-is-the-most-efficient-way-to-concatenate-many-strings-together"]], "What kinds of global value mutation are thread-safe?": [[84, "what-kinds-of-global-value-mutation-are-thread-safe"]], "What's a negative index?": [[85, "what-s-a-negative-index"]], "What's the Execution Context?": [[193, "what-s-the-execution-context"]], "What's up with the comma operator's precedence?": [[85, "what-s-up-with-the-comma-operator-s-precedence"]], "When to use __new__() vs. __init__()": [[94, "when-to-use-new-vs-init"]], "Which Docstrings Are Examined?": [[193, "which-docstrings-are-examined"]], "Whitespace between tokens": [[435, "whitespace-between-tokens"]], "Who should read this": [[100, "who-should-read-this"]], "Why are default values shared between objects?": [[85, "why-are-default-values-shared-between-objects"]], "Why do lambdas defined in a loop with different values all return the same result?": [[85, "why-do-lambdas-defined-in-a-loop-with-different-values-all-return-the-same-result"]], "Why does a_tuple[i] += ['item'] raise an exception when the addition works?": [[85, "why-does-a-tuple-i-item-raise-an-exception-when-the-addition-works"]], "Why does the result of id() appear to be not unique?": [[85, "why-does-the-result-of-id-appear-to-be-not-unique"]], "Why doesn't closing sys.stdout (stdin, stderr) really close it?": [[84, "why-doesn-t-closing-sys-stdout-stdin-stderr-really-close-it"]], "Why don't my signal handlers work?": [[84, "why-don-t-my-signal-handlers-work"]], "Why is Decimal needed?": [[466, "why-is-decimal-needed"]], "Widget": [[376, "widget"]], "Widget States": [[376, "widget-states"]], "Wildcard Patterns": [[427, "wildcard-patterns"]], "Window Objects": [[177, "window-objects"]], "Window control": [[384, "window-control"]], "Window menu (Shell and Editor)": [[247, "window-menu-shell-and-editor"]], "Windows": [[131, "windows"], [483, "windows"], [483, "id7"], [483, "id16"], [483, "id25"], [483, "id32"], [483, "id46"], [483, "id56"], [483, "id71"], [483, "id78"], [483, "id88"], [483, "id98"], [483, "id107"], [483, "id117"], [483, "id123"], [483, "id133"], [483, "id143"], [483, "id152"], [483, "id164"], [483, "id173"], [483, "id182"], [483, "id190"], [483, "id199"], [483, "id207"], [483, "id215"], [483, "id225"], [483, "id236"], [483, "id246"], [483, "id255"], [483, "id265"], [483, "id283"], [483, "id294"], [483, "id304"], [483, "id314"], [483, "id324"], [483, "id335"], [483, "id346"], [483, "id361"], [483, "id371"], [483, "id382"], [483, "id393"], [483, "id404"], [483, "id412"], [483, "id420"], [483, "id431"], [483, "id445"], [483, "id455"], [483, "id466"], [483, "id475"], [483, "id482"], [483, "id490"], [483, "id507"], [483, "id516"], [483, "id529"], [483, "id539"], [483, "id552"], [483, "id565"], [483, "id571"], [483, "id578"], [483, "id592"], [483, "id597"], [483, "id608"], [483, "id613"], [483, "id630"], [483, "id641"], [483, "id654"], [483, "id664"], [483, "id676"], [483, "id679"], [483, "id686"], [483, "id731"], [483, "id740"]], "Windows Constants": [[348, "windows-constants"]], "Windows Popen Helpers": [[348, "windows-popen-helpers"]], "Windows and Pads": [[92, "windows-and-pads"]], "Windows py.exe \u555f\u52d5\u7a0b\u5f0f (launcher) \u7684\u6539\u9032": [[473, "windows-py-exe-launcher-improvements"]], "Windows \u5e73\u53f0": [[303, "windows-platform"]], "Windows \u7684\u5b50\u884c\u7a0b\u652f\u63f4": [[131, "subprocess-support-on-windows"]], "Windows-only Changes": [[480, "windows-only-changes"], [480, "id12"]], "With Statement Context Managers": [[428, "with-statement-context-managers"]], "Working with threads": [[186, "working-with-threads"]], "Wrapping it Up": [[110, "wrapping-it-up"]], "Write-only Transports": [[133, "write-only-transports"]], "Writing Context Managers": [[467, "writing-context-managers"], [468, "writing-context-managers"]], "Writing Extensions in C++": [[73, "writing-extensions-in-c"]], "Writing a Custom Event Loop": [[128, "writing-a-custom-event-loop"]], "Writing a Tokenizer": [[319, "writing-a-tokenizer"]], "XInclude support": [[413, "xinclude-support"]], "XML tree and elements": [[413, "xml-tree-and-elements"]], "XML \u6a21\u7d44": [[462, "xml-modules"]], "XML \u6f0f\u6d1e": [[409, "xml-vulnerabilities"]], "XML \u8655\u7406\u6a21\u7d44": [[409, "module-xml"]], "XML \u9060\u7aef\u7a0b\u5e8f\u547c\u53eb": [[426, "xml-remote-procedure-calls"]], "XMLParser \u7269\u4ef6": [[314, "xmlparser-objects"], [413, "xmlparser-objects"]], "XMLPullParser \u7269\u4ef6": [[413, "xmlpullparser-objects"]], "XMLReader \u7269\u4ef6": [[416, "xmlreader-objects"]], "XPath \u652f\u63f4": [[413, "xpath-support"]], "Yield expressions": [[430, "yield-expressions"]], "You should check for DeprecationWarning in your code": [[482, "you-should-check-for-deprecationwarning-in-your-code"]], "ZipFile \u7269\u4ef6": [[422, "zipfile-objects"]], "ZipInfo \u7269\u4ef6": [[422, "zipinfo-objects"]], "_Private__names": [[94, "private-names"]], "__annotations__ \u5947\u7570\u4e4b\u8655": [[88, "annotations-quirks"]], "__class_getitem__ versus __getitem__": [[428, "class-getitem-versus-getitem"]], "__future__ --- Future \u9673\u8ff0\u5f0f\u5b9a\u7fa9": [[113, "module-__future__"]], "__import__('x.y.z') \u56de\u50b3 \uff0c\u90a3\u6211\u600e\u9ebc\u5f97\u5230 z\uff1f": [[85, "import-x-y-z-returns-module-x-how-do-i-get-z"]], "__main__ --- \u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883": [[114, "module-__main__"]], "__main__.__spec__": [[432, "main-spec"]], "__name__ == '__main__'": [[114, "name-main"]], "__slots__": [[428, "slots"], [472, "slots"]], "_pth files": [[354, "pth-files"]], "_thread": [[472, "thread"]], "_thread --- \u4f4e\u968e\u57f7\u884c\u7dd2 API": [[115, "module-_thread"]], "abc": [[475, "abc"], [476, "abc"], [477, "abc"]], "abc --- \u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[116, "module-abc"]], "action": [[120, "action"]], "add_help": [[120, "add-help"]], "aifc": [[477, "aifc"], [480, "aifc"]], "aifc --- \u8b80\u5beb AIFF \u8207 AIFC \u6a94\u6848": [[117, "module-aifc"]], "allow_abbrev": [[120, "allow-abbrev"]], "argparse": [[472, "argparse"], [477, "argparse"], [478, "argparse"], [480, "argparse"]], "argparse --- Parser for command-line options, arguments and sub-commands": [[120, "module-argparse"]], "argument_default": [[120, "argument-default"]], "array": [[472, "array"], [474, "array"], [476, "array"], [479, "array"]], "array --- \u9ad8\u6548\u7387\u7684\u6578\u503c\u578b\u9663\u5217": [[121, "module-array"]], "ast": [[475, "ast"], [479, "ast"], [481, "ast"], [482, "ast"]], "ast --- \u62bd\u8c61\u8a9e\u6cd5\u6a39 (Abstract Syntax Trees)": [[122, "module-ast"]], "ast \u8f14\u52a9\u7a0b\u5f0f": [[122, "ast-helpers"]], "async \u548c await": [[122, "async-and-await"]], "asynchat": [[479, "asynchat"]], "asynchat \u548c asyncore": [[474, "asynchat-and-asyncore"]], "asynchat, asyncore, smtpd": [[472, "asynchat-asyncore-smtpd"]], "asyncio": [[426, "asyncio"], [472, "asyncio"], [473, "asyncio"], [474, "asyncio"], [477, "asyncio"], [478, "asyncio"], [479, "asyncio"], [480, "asyncio"], [480, "whatsnew37-asyncio-deprecated"], [481, "asyncio"], [482, "asyncio"]], "asyncio --- \u975e\u540c\u6b65 I/O": [[123, "module-asyncio"]], "asyncio support": [[170, "asyncio-support"]], "asyncore": [[475, "asyncore"], [479, "asyncore"]], "atexit --- \u9000\u51fa\u8655\u7406\u51fd\u5f0f": [[140, "module-atexit"]], "atexit \u7bc4\u4f8b": [[140, "atexit-example"]], "audioop": [[477, "audioop"]], "audioop --- \u64cd\u4f5c\u539f\u59cb\u8072\u97f3\u6a94\u6848": [[141, "module-audioop"]], "base64": [[472, "base64"], [476, "base64"], [477, "base64"]], "base64 --- Base16\u3001Base32\u3001Base64\u3001Base85 \u8cc7\u6599\u7de8\u78bc": [[143, "module-base64"]], "bdb": [[472, "bdb"]], "bdb --- \u5075\u932f\u5668\u6846\u67b6": [[144, "module-bdb"]], "binascii": [[476, "binascii"], [479, "binascii"], [480, "binascii"]], "binascii --- \u5728\u4e8c\u9032\u4f4d\u5236\u548c ASCII \u4e4b\u9593\u8f49\u63db": [[146, "module-binascii"]], "bisect": [[472, "bisect"]], "bisect --- \u9663\u5217\u4e8c\u5206\u6f14\u7b97\u6cd5 (Array bisection algorithm)": [[147, "module-bisect"]], "builtins --- \u5167\u5efa\u7269\u4ef6": [[148, "module-builtins"]], "builtins\uff08\u5167\u5efa\uff09": [[481, "builtins"]], "bz2": [[476, "bz2"], [478, "bz2"]], "bz2 --- bzip2 \u58d3\u7e2e\u7684\u652f\u63f4": [[149, "module-bz2"]], "cProfile": [[480, "cprofile"], [481, "cprofile"]], "calendar": [[474, "calendar"], [480, "calendar"]], "calendar --- \u65e5\u66c6\u76f8\u95dc\u51fd\u5f0f": [[150, "module-calendar"]], "call": [[389, "call"]], "certificates": [[475, "certificates"]], "cfuhash": [[426, "cfuhash"]], "cgi": [[478, "cgi"]], "cgi --- \u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\u652f\u63f4": [[151, "module-cgi"]], "cgitb --- CGI \u8173\u672c\u7684\u56de\u6eaf (traceback) \u7ba1\u7406\u7a0b\u5f0f": [[152, "module-cgitb"]], "choices": [[120, "choices"]], "chunk --- \u8b80\u53d6 IFF \u5206\u584a\u8cc7\u6599": [[153, "module-chunk"]], "cmath": [[478, "cmath"], [479, "cmath"]], "cmath --- \u8907\u6578\u7684\u6578\u5b78\u51fd\u5f0f": [[154, "module-cmath"]], "cmd --- \u4ee5\u5217\u70ba\u5c0e\u5411\u7684\u6307\u4ee4\u76f4\u8b6f\u5668\u652f\u63f4": [[155, "module-cmd"]], "code": [[478, "code"]], "code --- \u76f4\u8b6f\u5668\u57fa\u5e95\u985e\u5225": [[157, "module-code"]], "codecs": [[472, "codecs"], [476, "codecs"]], "codecs --- \u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u57fa\u5e95\u985e\u5225": [[158, "module-codecs"]], "codeop --- \u7de8\u8b6f Python \u7a0b\u5f0f\u78bc": [[159, "module-codeop"]], "collections": [[475, "collections"], [476, "collections"], [477, "collections"], [478, "collections"], [479, "collections"], [480, "collections"], [480, "id3"], [481, "collections"]], "collections --- \u5bb9\u5668\u8cc7\u6599\u578b\u614b": [[160, "module-collections"]], "collections \u4e2d\u578b\u5225\u7684\u5225\u540d": [[386, "aliases-to-types-in-collections"]], "collections.abc": [[472, "collections-abc"], [478, "collections-abc"], [482, "collections-abc"]], "collections.abc --- \u5bb9\u5668\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[161, "module-collections.abc"]], "collections.abc \u4e2d\u5bb9\u5668 ABC \u7684\u5225\u540d": [[386, "aliases-to-container-abcs-in-collections-abc"]], "colorsys": [[477, "colorsys"]], "colorsys --- \u984f\u8272\u7cfb\u7d71\u9593\u7684\u8f49\u63db": [[162, "module-colorsys"]], "compileall": [[478, "compileall"], [480, "compileall"], [482, "compileall"]], "compileall --- \u4f4d\u5143\u7d44\u7de8\u8b6f Python \u51fd\u5f0f\u5eab": [[163, "module-compileall"]], "compound requests": [[7, "compound-requests"]], "concurrent \u5957\u4ef6": [[165, "the-concurrent-package"]], "concurrent.futures": [[478, "concurrent-futures"], [479, "concurrent-futures"], [480, "concurrent-futures"], [482, "concurrent-futures"]], "concurrent.futures --- \u555f\u52d5\u5e73\u884c\u4efb\u52d9": [[166, "module-concurrent.futures"]], "configparser": [[474, "configparser"], [475, "configparser"], [478, "configparser"]], "configparser --- \u8a2d\u5b9a\u6a94\u5256\u6790\u5668": [[167, "module-configparser"]], "conflict_handler": [[120, "conflict-handler"]], "const": [[120, "const"]], "contextlib": [[472, "contextlib"], [473, "contextlib"], [475, "contextlib"], [476, "contextlib"], [477, "contextlib"], [478, "contextlib"], [479, "contextlib"], [480, "contextlib"]], "contextlib --- Utilities for with-statement contexts": [[169, "module-contextlib"]], "contextlib ABC \u7684\u5225\u540d": [[386, "aliases-to-contextlib-abcs"]], "contextvars": [[480, "contextvars"]], "contextvars --- \u60c5\u5883\u8b8a\u6578": [[170, "module-contextvars"]], "contiguity requests": [[7, "contiguity-requests"]], "cookielib": [[466, "cookielib"]], "copy --- \u6dfa\u5c64 (shallow) \u548c\u6df1\u5c64 (deep) \u8907\u88fd\u64cd\u4f5c": [[171, "module-copy"]], "copyreg --- \u8a3b\u518a pickle \u652f\u63f4\u51fd\u5f0f": [[172, "module-copyreg"]], "copytree example": [[332, "copytree-example"]], "create_autospec": [[389, "create-autospec"]], "crypt": [[476, "crypt"], [480, "crypt"]], "crypt --- \u7528\u65bc\u6aa2\u67e5 Unix \u5bc6\u78bc\u7684\u51fd\u5f0f": [[173, "module-crypt"]], "csv": [[474, "csv"], [475, "csv"], [478, "csv"], [481, "csv"]], "csv --- CSV \u6a94\u6848\u8b80\u53d6\u53ca\u5beb\u5165": [[175, "module-csv"]], "ctypes": [[475, "ctypes"], [481, "ctypes"]], "ctypes --- \u7528\u65bc Python \u7684\u5916\u90e8\u51fd\u5f0f\u5eab": [[176, "module-ctypes"]], "ctypes Enhancements": [[468, "ctypes-enhancements"]], "ctypes reference": [[176, "ctypes-reference"]], "ctypes tutorial": [[176, "ctypes-tutorial"]], "ctypes \u5957\u4ef6": [[467, "the-ctypes-package"]], "curses": [[472, "curses"], [476, "curses"], [478, "curses"], [481, "curses"], [482, "curses"]], "curses --- \u5b57\u5143\u5132\u5b58\u683c\u986f\u793a\u7684\u7d42\u7aef\u8655\u7406": [[177, "module-curses"]], "curses.ascii --- ASCII \u5b57\u5143\u7684\u5de5\u5177\u7a0b\u5f0f": [[178, "module-curses.ascii"]], "curses.panel --- curses \u7684\u9762\u677f\u5806\u758a\u64f4\u5145": [[179, "module-curses.panel"]], "curses.textpad --- Text input widget for curses programs": [[177, "module-curses.textpad"]], "cx_Freeze": [[461, "cx-freeze"]], "dataclasses": [[472, "dataclasses"], [473, "dataclasses"], [480, "dataclasses"]], "dataclasses --- Data Classes": [[181, "module-dataclasses"]], "date \u7269\u4ef6": [[183, "date-objects"]], "datetime": [[473, "datetime"], [476, "datetime"], [479, "datetime"], [480, "datetime"], [481, "datetime"], [482, "datetime"]], "datetime --- \u65e5\u671f\u8207\u6642\u9593\u7684\u57fa\u672c\u578b\u5225": [[183, "module-datetime"]], "datetime \u548c time": [[475, "datetime-and-time"]], "datetime \u7269\u4ef6": [[183, "datetime-objects"]], "dbm": [[475, "dbm"], [477, "dbm"], [478, "dbm"], [479, "dbm"], [480, "dbm"], [480, "id4"]], "dbm --- Unix \"databases\" \u7684\u4ecb\u9762": [[184, "module-dbm"]], "dbm.dumb --- \u53ef\u651c\u5f0f DBM \u5be6\u4f5c": [[184, "module-dbm.dumb"]], "dbm.gnu --- GNU \u8cc7\u6599\u5eab\u7ba1\u7406\u5668": [[184, "module-dbm.gnu"]], "dbm.ndbm --- \u65b0\u8cc7\u6599\u5eab\u7ba1\u7406\u5668": [[184, "module-dbm.ndbm"]], "decimal": [[476, "decimal"], [479, "decimal"], [480, "decimal"]], "decimal --- \u5341\u9032\u4f4d\u56fa\u5b9a\u9ede\u548c\u6d6e\u9ede\u904b\u7b97": [[186, "module-decimal"]], "decimal and fractions": [[475, "decimal-and-fractions"]], "default": [[120, "default"]], "defaultdict \u7269\u4ef6": [[160, "defaultdict-objects"]], "defaultdict \u7bc4\u4f8b": [[160, "defaultdict-examples"]], "defusedxml \u5957\u4ef6": [[409, "the-defusedxml-package"]], "del \u9673\u8ff0\u5f0f": [[442, "the-del-statement"]], "deque \u7269\u4ef6": [[160, "deque-objects"]], "deque \u7528\u6cd5": [[160, "deque-recipes"]], "dest": [[120, "dest"]], "difflib": [[478, "difflib"]], "difflib --- \u8a08\u7b97\u5dee\u7570\u7684\u8f14\u52a9\u5de5\u5177": [[190, "module-difflib"]], "dir() \u51fd\u5f0f": [[450, "the-dir-function"]], "dis": [[474, "dis"], [475, "dis"], [477, "dis"], [480, "dis"]], "dis --- Python bytecode \u7684\u53cd\u7d44\u8b6f\u5668": [[191, "module-dis"]], "distutils": [[472, "distutils"], [474, "distutils"], [478, "distutils"], [479, "distutils"], [479, "id2"], [480, "distutils"], [482, "distutils"]], "doctest": [[466, "doctest"], [472, "doctest"], [477, "doctest"], [478, "doctest"]], "doctest --- \u6e2c\u8a66\u4e92\u52d5\u5f0f Python \u7bc4\u4f8b": [[193, "module-doctest"]], "elementtree": [[475, "elementtree"]], "else clause": [[427, "else-clause"]], "email": [[475, "email"], [476, "email"], [477, "email"], [478, "email"], [479, "email"]], "email --- \u90f5\u4ef6\u548c MIME \u8655\u7406\u5957\u4ef6": [[194, "module-email"]], "email.charset\uff1a\u8868\u793a\u5b57\u5143\u96c6\u5408": [[195, "module-email.charset"]], "email.contentmanager\uff1a\u7ba1\u7406 MIME \u5167\u5bb9": [[197, "module-email.contentmanager"]], "email.encoders\uff1a\u7de8\u78bc\u5668": [[198, "module-email.encoders"]], "email.errors\uff1a\u4f8b\u5916\u548c\u7f3a\u9677\u985e\u5225": [[199, "module-email.errors"]], "email.generator\uff1a\u7522\u751f MIME \u6587\u4ef6": [[201, "module-email.generator"]], "email.headerregistry\uff1a\u81ea\u8a02\u6a19\u982d\u7269\u4ef6": [[203, "module-email.headerregistry"]], "email.header\uff1a\u570b\u969b\u5316\u6a19\u982d": [[202, "module-email.header"]], "email.iterators\uff1a\u758a\u4ee3\u5668": [[204, "module-email.iterators"]], "email.message.Message: Representing an email message using the compat32 API": [[196, "email-message-message-representing-an-email-message-using-the-compat32-api"]], "email.message\uff1a\u8868\u793a\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f": [[205, "module-email.message"]], "email.mime\uff1a\u5f9e\u982d\u958b\u59cb\u5efa\u7acb\u96fb\u5b50\u90f5\u4ef6\u548c MIME \u7269\u4ef6": [[206, "module-email.mime"]], "email.parser\uff1a\u5256\u6790\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f": [[207, "module-email.parser"]], "email.policy: Policy Objects": [[208, "module-email.policy"]], "email.utils\uff1a\u96dc\u9805\u5de5\u5177": [[209, "module-email.utils"]], "email\uff1a\u7bc4\u4f8b": [[200, "email-examples"]], "encodings": [[472, "encodings"], [479, "encodings"]], "encodings.idna --- Internationalized Domain Names in Applications": [[158, "module-encodings.idna"]], "encodings.mbcs --- Windows ANSI codepage": [[158, "module-encodings.mbcs"]], "encodings.utf_8_sig --- UTF-8 codec with BOM signature": [[158, "module-encodings.utf_8_sig"]], "ensurepip": [[474, "ensurepip"], [477, "ensurepip"]], "ensurepip --- pip \u5b89\u88dd\u5668\u7684\u521d\u59cb\u5efa\u7f6e (bootstrapping)": [[210, "module-ensurepip"]], "enum": [[472, "enum"], [473, "enum"], [474, "enum"], [477, "enum"], [478, "enum"], [479, "enum"], [480, "enum"], [480, "id5"]], "enum --- \u5c0d\u5217\u8209\u7684\u652f\u63f4": [[211, "module-enum"]], "epilog": [[120, "epilog"]], "errno --- \u6a19\u6e96 errno \u7cfb\u7d71\u7b26\u865f": [[212, "module-errno"]], "except clause": [[427, "except-clause"]], "except* clause": [[427, "except-star"]], "exit_on_error": [[120, "exit-on-error"]], "expat": [[426, "expat"]], "f-strings support = for self-documenting expressions and debugging": [[481, "f-strings-support-for-self-documenting-expressions-and-debugging"]], "f-string\uff08f \u5b57\u4e32\uff09": [[435, "formatted-string-literals"]], "faulthandler": [[472, "faulthandler"], [476, "faulthandler"], [478, "faulthandler"], [479, "faulthandler"]], "faulthandler --- \u50be\u5370 Python \u56de\u6eaf": [[214, "module-faulthandler"]], "fcntl": [[473, "fcntl"], [482, "fcntl"]], "fcntl --- fcntl \u548c ioctl \u7cfb\u7d71\u547c\u53eb": [[215, "module-fcntl"]], "filecmp": [[477, "filecmp"]], "filecmp --- \u6a94\u6848\u8207\u76ee\u9304\u6bd4\u8f03": [[216, "module-filecmp"]], "fileinput": [[472, "fileinput"], [479, "fileinput"]], "fileinput --- \u9010\u5217\u758a\u4ee3\u591a\u500b\u8f38\u5165\u4e32\u6d41": [[218, "module-fileinput"]], "finally clause": [[427, "finally-clause"]], "fnmatch --- Unix \u6a94\u6848\u540d\u7a31\u6a21\u5f0f\u6bd4\u5c0d": [[220, "module-fnmatch"]], "for \u9673\u8ff0\u5f0f": [[441, "for-statements"]], "formatter_class": [[120, "formatter-class"]], "fractions": [[473, "fractions"], [474, "fractions"]], "fractions --- \u6709\u7406\u6578": [[221, "module-fractions"]], "fromfile_prefix_chars": [[120, "fromfile-prefix-chars"]], "ftp": [[475, "ftp"]], "ftplib": [[474, "ftplib"], [476, "ftplib"], [482, "ftplib"]], "ftplib --- FTP \u5354\u5b9a\u7528\u6236\u7aef": [[223, "module-ftplib"]], "functools": [[473, "functools"], [475, "functools"], [476, "functools"], [477, "functools"], [478, "functools"], [480, "functools"], [481, "functools"]], "functools --- Higher-order functions and operations on callable objects": [[226, "module-functools"]], "gc": [[472, "gc"], [476, "gc"], [477, "gc"], [480, "gc"], [481, "gc"], [482, "gc"]], "gc --- \u5783\u573e\u56de\u6536\u5668\u4ecb\u9762 (Garbage Collector interface)": [[227, "module-gc"]], "getopt --- \u7528\u65bc\u547d\u4ee4\u5217\u9078\u9805\u7684 C \u98a8\u683c\u5256\u6790\u5668": [[228, "module-getopt"]], "getpass --- \u53ef\u651c\u5f0f\u5bc6\u78bc\u8f38\u5165\u5de5\u5177": [[229, "module-getpass"]], "gettext": [[480, "gettext"], [481, "gettext"]], "gettext --- \u591a\u8a9e\u8a00\u570b\u969b\u5316\u670d\u52d9": [[230, "module-gettext"]], "glob": [[472, "glob"], [477, "glob"], [478, "glob"]], "glob --- Unix \u98a8\u683c\u7684\u8def\u5f91\u540d\u7a31\u6a21\u5f0f\u64f4\u5c55": [[231, "module-glob"]], "graphlib": [[482, "graphlib"]], "graphlib \u2014-- \u4f7f\u7528\u985e\u5716 (graph-like) \u7d50\u69cb\u9032\u884c\u64cd\u4f5c\u7684\u529f\u80fd": [[232, "module-graphlib"]], "grp": [[479, "grp"]], "grp --- \u7fa4\u7d44\u8cc7\u6599\u5eab": [[233, "module-grp"]], "gzip": [[474, "gzip"], [478, "gzip"], [481, "gzip"]], "gzip --- gzip \u6a94\u6848\u7684\u652f\u63f4": [[234, "module-gzip"]], "gzip \u548c zipfile": [[475, "gzip-and-zipfile"]], "hashlib": [[472, "hashlib"], [473, "hashlib"], [474, "hashlib"], [475, "hashlib"], [477, "hashlib"], [479, "hashlib"], [482, "hashlib"]], "hashlib --- \u5b89\u5168\u96dc\u6e4a\u8207\u8a0a\u606f\u6458\u8981": [[235, "module-hashlib"]], "hashlib \u5957\u4ef6": [[467, "the-hashlib-package"]], "heapq": [[478, "heapq"]], "heapq --- \u5806\u7a4d\u4f47\u5217 (heap queue) \u6f14\u7b97\u6cd5": [[236, "module-heapq"]], "hmac": [[472, "hmac"], [476, "hmac"], [477, "hmac"], [480, "hmac"]], "hmac --- \u57fa\u65bc\u91d1\u9470\u96dc\u6e4a\u7684\u8a0a\u606f\u9a57\u8b49": [[237, "module-hmac"]], "html": [[475, "html"], [476, "html"], [477, "html"]], "html --- \u8d85\u9023\u7d50\u6a19\u8a18\u8a9e\u8a00 (HTML) \u652f\u63f4": [[238, "module-html"]], "html.entities --- HTML \u4e00\u822c\u5be6\u9ad4\u7684\u5b9a\u7fa9": [[239, "module-html.entities"]], "html.parser --- \u7c21\u55ae\u7684 HTML \u548c XHTML \u5256\u6790\u5668": [[240, "module-html.parser"]], "http": [[476, "http"], [477, "http"], [478, "http"], [482, "http"]], "http --- HTTP \u6a21\u7d44": [[241, "module-http"]], "http.client": [[475, "http-client"], [478, "http-client"], [479, "http-client"], [480, "http-client"]], "http.client --- HTTP \u5354\u5b9a\u7528\u6236\u7aef": [[242, "module-http.client"]], "http.cookiejar --- HTTP \u5ba2\u6236\u7aef\u7684 Cookie \u8655\u7406": [[243, "module-http.cookiejar"]], "http.cookies --- HTTP \u72c0\u614b\u7ba1\u7406": [[244, "module-http.cookies"]], "http.server": [[480, "http-server"]], "http.server \u2014 HTTP \u4f3a\u670d\u5668": [[245, "module-http.server"]], "idlelib": [[247, "module-idlelib"]], "idlelib and IDLE": [[478, "idlelib-and-idle"], [479, "idlelib-and-idle"], [480, "idlelib-and-idle"]], "idlelib \u8207 IDLE": [[477, "idlelib-and-idle"]], "if \u9673\u8ff0\u5f0f": [[441, "if-statements"]], "imaplib": [[475, "imaplib"], [476, "imaplib"], [478, "imaplib"], [482, "imaplib"]], "imaplib --- IMAP4 \u5354\u5b9a\u5ba2\u6236\u7aef": [[248, "module-imaplib"]], "imghdr": [[478, "imghdr"]], "imghdr --- \u63a8\u6e2c\u5716\u7247\u7a2e\u985e": [[249, "module-imghdr"]], "imp": [[474, "imp"]], "import __main__": [[114, "import-main"]], "importlib": [[432, "importlib"], [474, "importlib"], [477, "importlib"], [478, "importlib"], [479, "importlib"], [479, "id3"], [480, "importlib"], [480, "id6"], [482, "importlib"]], "importlib --- import \u7684\u5be6\u4f5c": [[250, "module-importlib"]], "importlib.abc -- Abstract base classes related to import": [[250, "module-importlib.abc"]], "importlib.machinery -- Importers and path hooks": [[250, "module-importlib.machinery"]], "importlib.metadata": [[472, "importlib-metadata"]], "importlib.metadata -- \u5b58\u53d6\u5957\u4ef6\u7684\u5143\u8cc7\u6599": [[251, "module-importlib.metadata"]], "importlib.resources": [[474, "importlib-resources"], [480, "importlib-resources"]], "importlib.resources -- Package resource reading, opening and access": [[252, "module-importlib.resources"]], "importlib.resources.abc -- \u8cc7\u6e90\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[253, "module-importlib.resources.abc"]], "importlib.util -- Utility code for importers": [[250, "module-importlib.util"]], "info and geturl": [[110, "info-and-geturl"]], "inspect": [[472, "inspect"], [473, "inspect"], [474, "inspect"], [475, "inspect"], [476, "inspect"], [477, "inspect"], [478, "inspect"], [479, "inspect"], [481, "inspect"], [482, "inspect"]], "inspect --- \u6aa2\u8996\u6d3b\u52d5\u7269\u4ef6": [[255, "inspect-inspect-live-objects"]], "io": [[474, "io"], [475, "io"], [476, "io"], [478, "io"], [480, "io"], [481, "io"]], "io \u2014 \u8655\u7406\u8cc7\u6599\u4e32\u6d41\u7684\u6838\u5fc3\u5de5\u5177": [[258, "module-io"]], "ipaddress": [[474, "ipaddress"], [476, "ipaddress"], [477, "ipaddress"], [478, "ipaddress"], [480, "ipaddress"], [482, "ipaddress"]], "ipaddress --- IPv4/IPv6 \u64cd\u4f5c\u51fd\u5f0f\u5eab": [[259, "module-ipaddress"]], "ipaddress \u6a21\u7d44\u4ecb\u7d39": [[99, "an-introduction-to-the-ipaddress-module"]], "itertools": [[472, "itertools"], [474, "itertools"], [475, "itertools"], [476, "itertools"], [480, "itertools"], [481, "itertools"]], "itertools --- \u5efa\u7acb\u7522\u751f\u9ad8\u6548\u7387\u8ff4\u5708\u4e4b\u758a\u4ee3\u5668\u7684\u51fd\u5f0f": [[261, "module-itertools"]], "json": [[478, "json"], [479, "json"]], "json --- JSON \u7de8\u78bc\u5668\u8207\u89e3\u78bc\u5668": [[262, "module-json"]], "json.tool": [[481, "json-tool"]], "keyword --- \u6aa2\u9a57 Python \u95dc\u9375\u5b57": [[263, "module-keyword"]], "lib2to3 --- 2to3's library": [[112, "module-lib2to3"]], "libffi": [[426, "libffi"]], "libmpdec": [[426, "libmpdec"]], "linecache": [[472, "linecache"], [478, "linecache"]], "linecache --- \u96a8\u6a5f\u5b58\u53d6\u6587\u5b57\u5217": [[265, "module-linecache"]], "load_tests Protocol": [[388, "load-tests-protocol"]], "locale": [[473, "locale"], [474, "locale"], [478, "locale"], [480, "locale"], [480, "id7"]], "locale --- \u570b\u969b\u5316\u670d\u52d9": [[266, "module-locale"]], "logging": [[473, "logging"], [475, "logging"], [476, "logging"], [477, "logging"], [478, "logging"], [479, "logging"], [480, "logging"], [481, "logging"]], "logging --- Python \u7684\u65e5\u8a8c\u8a18\u9304\u5de5\u5177": [[267, "module-logging"]], "logging.config --- \u65e5\u8a8c\u8a18\u9304\u914d\u7f6e": [[268, "module-logging.config"]], "logging.handlers --- \u65e5\u8a8c\u7d00\u9304\u8655\u7406\u5668": [[269, "module-logging.handlers"]], "loop.subprocess_exec() and SubprocessProtocol": [[133, "loop-subprocess-exec-and-subprocessprotocol"]], "lzma": [[476, "lzma"], [478, "lzma"]], "lzma --- \u4f7f\u7528 LZMA \u6f14\u7b97\u6cd5\u9032\u884c\u58d3\u7e2e": [[270, "module-lzma"]], "macOS": [[131, "macos"], [483, "macos"], [483, "id17"], [483, "id26"], [483, "id33"], [483, "id47"], [483, "id57"], [483, "id79"], [483, "id89"], [483, "id108"], [483, "id124"], [483, "id134"], [483, "id144"], [483, "id153"], [483, "id165"], [483, "id174"], [483, "id191"], [483, "id200"], [483, "id208"], [483, "id216"], [483, "id226"], [483, "id237"], [483, "id256"], [483, "id266"], [483, "id274"], [483, "id284"], [483, "id295"], [483, "id305"], [483, "id315"], [483, "id325"], [483, "id336"], [483, "id362"], [483, "id372"], [483, "id383"], [483, "id394"], [483, "id421"], [483, "id438"], [483, "id446"], [483, "id456"], [483, "id467"], [483, "id476"], [483, "id491"], [483, "id517"], [483, "id530"], [483, "id540"]], "macOS 11.0 (Big Sur) and Apple Silicon Mac support": [[481, "macos-11-0-big-sur-and-apple-silicon-mac-support"], [482, "macos-11-0-big-sur-and-apple-silicon-mac-support"]], "macOS \u5e73\u53f0": [[303, "macos-platform"]], "macOS \u9078\u9805": [[456, "macos-options"]], "macpath": [[480, "macpath"]], "mailbox": [[475, "mailbox"]], "mailbox --- \u4ee5\u5404\u7a2e\u683c\u5f0f\u64cd\u4f5c\u90f5\u4ef6\u4fe1\u7bb1": [[271, "module-mailbox"]], "mailcap --- Mailcap \u6a94\u6848\u8655\u7406": [[272, "module-mailcap"]], "marshal": [[477, "marshal"]], "marshal --- \u5185\u90e8 Python \u7269\u4ef6\u5e8f\u5217\u5316": [[274, "module-marshal"]], "match \u9673\u8ff0\u5f0f": [[441, "match-statements"]], "match() versus search()": [[106, "match-versus-search"]], "math": [[473, "math"], [474, "math"], [475, "math"], [476, "math"], [478, "math"], [479, "math"], [480, "math"], [481, "math"], [482, "math"]], "math --- \u6578\u5b78\u51fd\u5f0f": [[275, "module-math"]], "mbox \u7269\u4ef6": [[271, "mbox-objects"]], "mboxMessage \u7269\u4ef6": [[271, "mboxmessage-objects"]], "metavar": [[120, "metavar"]], "mimetypes": [[480, "mimetypes"]], "mimetypes --- \u5c07\u6a94\u6848\u540d\u7a31\u5c0d\u6620\u5230 MIME \u985e\u578b": [[276, "module-mimetypes"]], "minidom and the DOM standard": [[411, "minidom-and-the-dom-standard"]], "mmap": [[476, "mmap"], [477, "mmap"], [481, "mmap"]], "mmap --- \u8a18\u61b6\u9ad4\u6620\u5c04\u6a94\u6848\u7684\u652f\u63f4": [[278, "module-mmap"]], "mock_open": [[389, "mock-open"]], "module.__path__": [[432, "module-path"]], "modulefinder --- \u641c\u5c0b\u8173\u672c\u6240\u4f7f\u7528\u7684\u6a21\u7d44": [[279, "module-modulefinder"]], "msilib": [[480, "msilib"]], "msilib --- \u8b80\u5beb Microsoft Installer \u6a94\u6848": [[281, "module-msilib"]], "msvcrt --- MS VC++ runtime \u63d0\u4f9b\u7684\u6709\u7528\u4f8b\u7a0b": [[282, "module-msvcrt"]], "multiprocessing": [[476, "multiprocessing"], [477, "multiprocessing"], [478, "multiprocessing"], [479, "multiprocessing"], [480, "multiprocessing"], [481, "multiprocessing"], [482, "multiprocessing"]], "multiprocessing --- \u4ee5\u884c\u7a0b\u70ba\u57fa\u790e\u7684\u5e73\u884c\u6027": [[283, "module-multiprocessing"]], "multiprocessing.shared_memory --- \u5c0d\u65bc\u5171\u4eab\u8a18\u61b6\u9ad4\u7684\u8de8\u884c\u7a0b\u76f4\u63a5\u5b58\u53d6": [[284, "module-multiprocessing.shared_memory"]], "name or flags": [[120, "name-or-flags"]], "namedtuple() \u64c1\u6709\u5177\u540d\u6b04\u4f4d\u4e4b tuple \u7684\u5de5\u5ee0\u51fd\u5f0f": [[160, "namedtuple-factory-function-for-tuples-with-named-fields"]], "nargs": [[120, "nargs"]], "ndiff \u7bc4\u4f8b\uff1a": [[190, "ndiff-example"]], "netrc --- netrc \u6a94\u6848\u8655\u7406": [[286, "module-netrc"]], "netrc \u7269\u4ef6": [[286, "netrc-objects"]], "nis --- Sun NIS (Yellow Pages) \u4ecb\u9762": [[287, "module-nis"]], "nntp": [[475, "nntp"]], "nntplib": [[476, "nntplib"], [482, "nntplib"]], "nntplib --- NNTP \u5354\u5b9a\u5ba2\u6236\u7aef": [[288, "module-nntplib"]], "nt": [[355, "nt"]], "nt_user": [[355, "nt-user"]], "nuget.org \u5957\u4ef6": [[461, "the-nuget-org-packages"]], "numbers --- \u6578\u503c\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[289, "module-numbers"]], "numbers.Complex (complex)": [[428, "numbers-complex-complex"]], "numbers.Integral": [[428, "numbers-integral"]], "numbers.Number": [[428, "numbers-number"]], "numbers.Real (float)": [[428, "numbers-real-float"]], "operator": [[473, "operator"], [477, "operator"], [478, "operator"]], "operator --- \u6a19\u6e96\u904b\u7b97\u5b50\u66ff\u4ee3\u51fd\u5f0f": [[291, "module-operator"]], "optparse --- \u547d\u4ee4\u5217\u9078\u9805\u5256\u6790\u5668": [[292, "module-optparse"]], "os": [[472, "os"], [473, "os"], [474, "os"], [475, "os"], [476, "os"], [477, "os"], [478, "os"], [479, "os"], [479, "id4"], [480, "os"], [481, "os"], [482, "os"]], "os --- \u5404\u7a2e\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762": [[293, "module-os"]], "os.path": [[472, "os-path"], [474, "os-path"], [481, "os-path"]], "os.path --- \u5e38\u898b\u7684\u8def\u5f91\u540d\u64cd\u4f5c": [[294, "module-os.path"]], "ossaudiodev --- \u5c0d OSS \u76f8\u5bb9\u8072\u97f3\u88dd\u7f6e\u7684\u5b58\u53d6": [[295, "module-ossaudiodev"]], "osx_framework_user": [[355, "osx-framework-user"]], "parents": [[120, "parents"]], "partial \u7269\u4ef6": [[226, "partial-objects"]], "pass \u9673\u8ff0\u5f0f": [[441, "pass-statements"]], "patch": [[389, "patch"]], "patch \u5167\u5efa\u51fd\u5f0f": [[389, "patch-builtins"]], "patch \u65b9\u6cd5\uff1a\u555f\u52d5\u8207\u505c\u6b62": [[389, "patch-methods-start-and-stop"]], "patch.dict": [[389, "patch-dict"]], "patch.multiple": [[389, "patch-multiple"]], "patch.object": [[389, "patch-object"]], "pathlib": [[472, "pathlib"], [473, "pathlib"], [474, "pathlib"], [477, "pathlib"], [478, "pathlib"], [479, "pathlib"], [480, "pathlib"], [481, "pathlib"], [482, "pathlib"]], "pathlib --- \u7269\u4ef6\u5c0e\u5411\u6a94\u6848\u7cfb\u7d71\u8def\u5f91": [[296, "module-pathlib"]], "pdb": [[474, "pdb"], [475, "pdb"], [476, "pdb"], [477, "pdb"], [479, "pdb"], [480, "pdb"], [482, "pdb"]], "pdb --- The Python Debugger": [[297, "module-pdb"]], "pickle": [[476, "pickle"], [477, "pickle"], [478, "pickle"], [479, "pickle"], [481, "pickle"]], "pickle --- Python \u7269\u4ef6\u5e8f\u5217\u5316": [[299, "module-pickle"]], "pickletools": [[479, "pickletools"]], "pickletools --- pickle \u958b\u767c\u8005\u7684\u5de5\u5177": [[300, "module-pickletools"]], "pipes --- shell pipelines \u4ecb\u9762": [[301, "module-pipes"]], "pkgutil --- Package extension utility": [[302, "module-pkgutil"]], "platform": [[472, "platform"]], "platform --- \u5c0d\u5e95\u5c64\u5e73\u81fa\u8b58\u5225\u8cc7\u6599\u7684\u5b58\u53d6": [[303, "module-platform"]], "plistlib": [[477, "plistlib"], [481, "plistlib"]], "plistlib --- \u7522\u751f\u548c\u5256\u6790 Apple .plist \u6a94\u6848": [[304, "module-plistlib"]], "popen": [[475, "popen"]], "poplib": [[475, "poplib"], [477, "poplib"], [478, "poplib"], [482, "poplib"]], "poplib --- POP3 \u5354\u5b9a\u7528\u6236\u7aef": [[305, "module-poplib"]], "posix --- \u6700\u5e38\u898b\u7684 POSIX \u7cfb\u7d71\u547c\u53eb": [[306, "module-posix"]], "posix_home": [[355, "posix-home"]], "posix_prefix": [[355, "posix-prefix"]], "posix_user": [[355, "posix-user"]], "pprint": [[472, "pprint"], [477, "pprint"], [481, "pprint"], [482, "pprint"]], "pprint --- \u8cc7\u6599\u7f8e\u5316\u5217\u5370\u5668": [[307, "module-pprint"]], "prefix_chars": [[120, "prefix-chars"]], "printf-style Bytes Formatting": [[344, "printf-style-bytes-formatting"]], "printf-style String Formatting": [[344, "printf-style-string-formatting"]], "profile and cProfile Module Reference": [[308, "module-cProfile"]], "prog": [[120, "prog"]], "pty": [[477, "pty"]], "pty --- \u507d\u7d42\u7aef\u5de5\u5177": [[309, "module-pty"]], "pwd --- \u5bc6\u78bc\u8cc7\u6599\u5eab": [[310, "module-pwd"]], "py-bt": [[96, "py-bt"]], "py-list": [[96, "py-list"]], "py-locals": [[96, "py-locals"]], "py-print": [[96, "py-print"]], "py-up and py-down": [[96, "py-up-and-py-down"]], "py_compile": [[472, "py-compile"], [480, "py-compile"], [481, "py-compile"]], "py_compile \u2014 \u7de8\u8b6f Python \u4f86\u6e90\u6a94\u6848": [[311, "module-py_compile"]], "pyclbr": [[472, "pyclbr"]], "pyclbr --- Python \u6a21\u7d44\u700f\u89bd\u5668\u652f\u63f4": [[312, "module-pyclbr"]], "pydoc": [[475, "pydoc"], [476, "pydoc"], [477, "pydoc"], [479, "pydoc"], [480, "pydoc"], [482, "pydoc"]], "pydoc --- \u6587\u4ef6\u7522\u751f\u5668\u8207\u7dda\u4e0a\u5e6b\u52a9\u7cfb\u7d71": [[313, "module-pydoc"]], "queue": [[480, "queue"]], "queue --- \u540c\u6b65\u4f47\u5217 (synchronized queue) \u985e\u5225": [[316, "module-queue"]], "quopri --- \u7de8\u78bc\u548c\u89e3\u78bc MIME \u53ef\u5217\u5370\u5b57\u5143\u8cc7\u6599": [[317, "module-quopri"]], "random": [[474, "random"], [475, "random"], [479, "random"], [482, "random"]], "random --- \u751f\u6210\u507d\u96a8\u6a5f\u6578": [[318, "module-random"]], "range() \u51fd\u5f0f": [[441, "the-range-function"]], "re": [[473, "re"], [476, "re"], [477, "re"], [478, "re"], [479, "re"], [479, "id5"], [480, "re"]], "re --- \u6b63\u898f\u8868\u793a\u5f0f (regular expression) \u64cd\u4f5c": [[319, "module-re"]], "readline": [[478, "readline"], [479, "readline"]], "readline --- GNU readline \u4ecb\u9762": [[320, "module-readline"]], "readonly, format": [[7, "readonly-format"]], "reprlib": [[475, "reprlib"]], "reprlib --- repr() \u7684\u66ff\u4ee3\u5be6\u4f5c": [[321, "module-reprlib"]], "request-independent fields": [[7, "request-independent-fields"]], "required": [[120, "required"]], "resource": [[477, "resource"]], "resource --- \u8cc7\u6e90\u4f7f\u7528\u8cc7\u8a0a": [[322, "module-resource"]], "rlcompleter": [[479, "rlcompleter"]], "rlcompleter --- GNU readline \u7684\u88dc\u5168\u51fd\u5f0f": [[323, "module-rlcompleter"]], "rmtree \u7bc4\u4f8b": [[332, "rmtree-example"]], "runpy --- \u5b9a\u4f4d\u4e26\u57f7\u884c Python \u6a21\u7d44": [[324, "module-runpy"]], "sched": [[476, "sched"]], "sched --- \u4e8b\u4ef6\u6392\u7a0b\u5668": [[325, "module-sched"]], "search() vs. match()": [[319, "search-vs-match"]], "secrets": [[479, "secrets"]], "secrets --- \u7522\u751f\u7528\u65bc\u7ba1\u7406\u6a5f\u5bc6\u7684\u5b89\u5168\u4e82\u6578": [[326, "module-secrets"]], "select": [[475, "select"], [476, "select"], [477, "select"]], "select --- \u7b49\u5f85 I/O \u5b8c\u6210": [[328, "module-select"]], "selectors": [[477, "selectors"], [478, "selectors"]], "selectors --- \u9ad8\u968e I/O \u591a\u5de5": [[329, "module-selectors"]], "sentinel\uff08\u54e8\u5175\uff09": [[389, "sentinel"]], "setUpClass and tearDownClass": [[388, "setupclass-and-teardownclass"]], "setUpModule and tearDownModule": [[388, "setupmodule-and-teardownmodule"]], "shape, strides, suboffsets": [[7, "shape-strides-suboffsets"]], "shelve": [[472, "shelve"], [477, "shelve"]], "shelve --- Python object persistence": [[330, "module-shelve"]], "shlex": [[476, "shlex"], [479, "shlex"], [481, "shlex"]], "shlex --- \u7c21\u55ae\u7684\u8a9e\u6cd5\u5206\u6790": [[331, "module-shlex"]], "shlex \u7269\u4ef6": [[331, "shlex-objects"]], "shutil": [[473, "shutil"], [474, "shutil"], [475, "shutil"], [476, "shutil"], [477, "shutil"], [478, "shutil"], [481, "shutil"]], "shutil \u2014 \u9ad8\u968e\u6a94\u6848\u64cd\u4f5c": [[332, "module-shutil"]], "side_effect\u3001return_value \u548c wraps \u7684\u512a\u5148\u9806\u5e8f": [[389, "order-of-precedence-of-side-effect-return-value-and-wraps"]], "signal": [[476, "signal"], [478, "signal"], [480, "signal"], [482, "signal"]], "signal --- \u8a2d\u5b9a\u975e\u540c\u6b65\u4e8b\u4ef6\u7684\u8655\u7406\u51fd\u5f0f": [[333, "module-signal"]], "site": [[472, "site"], [475, "site"], [479, "site"]], "site --- Site-specific configuration hook": [[334, "module-site"]], "sitecustomize": [[334, "module-sitecustomize"]], "slot typedefs": [[63, "slot-typedefs"]], "smtpd": [[474, "smtpd"], [476, "smtpd"], [477, "smtpd"], [478, "smtpd"]], "smtplib": [[476, "smtplib"], [477, "smtplib"], [478, "smtplib"], [482, "smtplib"]], "smtplib --- SMTP \u5354\u5b9a\u7528\u6236\u7aef": [[335, "module-smtplib"]], "sndhdr": [[478, "sndhdr"]], "sndhdr --- \u5224\u5b9a\u8072\u97f3\u6a94\u6848\u7684\u578b\u5225": [[336, "module-sndhdr"]], "socket": [[472, "socket"], [473, "socket"], [475, "socket"], [476, "socket"], [477, "socket"], [478, "socket"], [479, "socket"], [480, "socket"], [480, "id8"], [481, "socket"], [482, "socket"]], "socket --- \u4f4e\u968e\u7db2\u8def\u4ecb\u9762": [[337, "module-socket"]], "socketserver": [[476, "socketserver"], [479, "socketserver"], [480, "socketserver"]], "socketserver --- \u7528\u65bc\u7db2\u8def\u4f3a\u670d\u5668\u7684\u6846\u67b6": [[338, "module-socketserver"]], "socketserver.TCPServer \u7bc4\u4f8b": [[338, "socketserver-tcpserver-example"]], "socketserver.UDPServer \u7bc4\u4f8b": [[338, "socketserver-udpserver-example"]], "spwd --- shadow \u5bc6\u78bc\u8cc7\u6599\u5eab": [[339, "module-spwd"]], "sqlite3": [[472, "sqlite3"], [473, "sqlite3"], [474, "sqlite3"], [474, "id2"], [475, "sqlite3"], [476, "sqlite3"], [477, "sqlite3"], [478, "sqlite3"], [479, "sqlite3"], [480, "sqlite3"]], "sqlite3 --- SQLite \u8cc7\u6599\u5eab\u7684 DB-API 2.0 \u4ecb\u9762": [[340, "module-sqlite3"]], "sqlite3 \u5957\u4ef6": [[467, "the-sqlite3-package"]], "ssl": [[472, "ssl"], [474, "ssl"], [475, "ssl"], [476, "ssl"], [477, "ssl"], [478, "ssl"], [479, "ssl"], [479, "id6"], [480, "ssl"], [480, "id9"], [481, "ssl"]], "ssl --- socket \u7269\u4ef6\u7684 TLS/SSL \u5305\u88dd\u5668": [[341, "module-ssl"]], "stat": [[476, "stat"], [477, "stat"]], "stat --- \u76f4\u8b6f stat() \u7684\u7d50\u679c": [[342, "module-stat"]], "statistics": [[472, "statistics"], [474, "statistics"], [477, "statistics"], [479, "statistics"], [481, "statistics"]], "statistics --- \u6578\u5b78\u7d71\u8a08\u51fd\u5f0f": [[343, "module-statistics"]], "strftime() \u8207 strptime() \u683c\u5f0f\u78bc": [[183, "strftime-and-strptime-format-codes"]], "strftime() \u8207 strptime() \u7684\u884c\u70ba": [[183, "strftime-and-strptime-behavior"]], "string": [[473, "string"], [480, "string"]], "string --- \u5e38\u898b\u7684\u5b57\u4e32\u64cd\u4f5c": [[345, "module-string"]], "stringprep --- \u7db2\u969b\u7db2\u8def\u5b57\u4e32\u6e96\u5099": [[346, "module-stringprep"]], "strtod \u8207 dtoa": [[426, "strtod-and-dtoa"]], "struct": [[476, "struct"], [477, "struct"], [479, "struct"]], "struct --- \u5c07\u4f4d\u5143\u7d44\u76f4\u8b6f\u70ba\u6253\u5305\u8d77\u4f86\u7684\u4e8c\u9032\u4f4d\u8cc7\u6599": [[347, "module-struct"]], "sub-slots": [[63, "sub-slots"]], "subprocess": [[476, "subprocess"], [477, "subprocess"], [478, "subprocess"], [479, "subprocess"], [480, "subprocess"]], "subprocess --- \u5b50\u884c\u7a0b\u7ba1\u7406": [[348, "module-subprocess"]], "sunau": [[477, "sunau"], [480, "sunau"]], "sunau --- \u8b80\u5beb Sun AU \u6a94\u6848": [[349, "module-sunau"]], "symtable --- \u5b58\u53d6\u7de8\u8b6f\u5668\u7684\u7b26\u865f\u8868": [[351, "module-symtable"]], "sys": [[472, "sys"], [473, "sys"], [474, "sys"], [476, "sys"], [477, "sys"], [478, "sys"], [479, "sys"], [480, "sys"], [480, "id10"], [481, "sys"], [482, "sys"]], "sys --- \u7cfb\u7d71\u7279\u5b9a\u7684\u53c3\u6578\u8207\u51fd\u5f0f": [[352, "module-sys"]], "sys.monitoring --- Execution event monitoring": [[353, "module-sys.monitoring"]], "sysconfig": [[473, "sysconfig"], [475, "sysconfig"], [478, "sysconfig"]], "sysconfig --- \u63d0\u4f9b Python \u8a2d\u5b9a\u8cc7\u8a0a\u7684\u5b58\u53d6": [[355, "module-sysconfig"]], "syslog --- Unix syslog \u51fd\u5f0f\u5eab\u4f8b\u7a0b": [[356, "module-syslog"]], "tabnanny --- \u5075\u6e2c\u4e0d\u826f\u7e2e\u6392": [[357, "module-tabnanny"]], "tarfile": [[472, "tarfile"], [473, "tarfile"], [475, "tarfile"], [476, "tarfile"], [477, "tarfile"], [478, "tarfile"], [481, "tarfile"], [481, "id3"], [482, "tarfile"]], "tarfile --- \u8b80\u53d6\u8207\u5beb\u5165 tar \u5c01\u5b58\u6a94\u6848": [[358, "module-tarfile"]], "telnetlib": [[479, "telnetlib"]], "telnetlib --- Telnet \u5ba2\u6236\u7aef": [[359, "module-telnetlib"]], "tempfile": [[473, "tempfile"], [474, "tempfile"], [475, "tempfile"], [476, "tempfile"]], "tempfile --- \u751f\u6210\u81e8\u6642\u6a94\u6848\u548c\u76ee\u9304": [[360, "module-tempfile"]], "termios --- POSIX \u98a8\u683c tty \u63a7\u5236": [[361, "module-termios"]], "test --- Python \u7684\u56de\u6b78\u6e2c\u8a66 (regression tests) \u5957\u4ef6": [[362, "module-test"]], "test.support --- Python \u6e2c\u8a66\u5957\u4ef6\u7684\u5de5\u5177": [[362, "module-test.support"]], "test.support.bytecode_helper --- \u7528\u65bc\u6e2c\u8a66\u4f4d\u5143\u7d44\u78bc\u80fd\u6b63\u78ba\u7522\u751f\u7684\u652f\u63f4\u5de5\u5177": [[362, "module-test.support.bytecode_helper"]], "test.support.import_helper --- \u7528\u65bc import \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.import_helper"]], "test.support.os_helper --- \u7528\u65bc os \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.os_helper"]], "test.support.script_helper --- \u7528\u65bc Python \u57f7\u884c\u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.script_helper"]], "test.support.socket_helper --- \u7528\u65bc socket \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.socket_helper"]], "test.support.threading_helper --- Utilities for threading tests": [[362, "module-test.support.threading_helper"]], "test.support.warnings_helper --- \u7528\u65bc warnings \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.warnings_helper"]], "test_epoll": [[426, "test-epoll"]], "textwrap": [[476, "textwrap"], [477, "textwrap"]], "textwrap --- \u6587\u5b57\u5305\u88dd\u8207\u586b\u5145": [[364, "module-textwrap"]], "threading": [[472, "threading"], [473, "threading"], [474, "threading"], [475, "threading"], [476, "threading"], [477, "threading"], [478, "threading"], [480, "threading"], [481, "threading"]], "threading --- \u57fa\u65bc\u57f7\u884c\u7dd2\u7684\u5e73\u884c\u6027": [[365, "module-threading"]], "time": [[473, "time"], [476, "time"], [478, "time"], [479, "time"], [480, "time"], [481, "time"], [482, "time"]], "time --- Time access and conversions": [[366, "module-time"]], "time \u7269\u4ef6": [[183, "time-objects"]], "timedelta \u7269\u4ef6": [[183, "timedelta-objects"]], "timeit": [[478, "timeit"], [479, "timeit"]], "timeit --- \u6e2c\u91cf\u5c0f\u91cf\u7a0b\u5f0f\u7247\u6bb5\u7684\u57f7\u884c\u6642\u9593": [[367, "module-timeit"]], "timezone \u7269\u4ef6": [[183, "timezone-objects"]], "tkinter": [[473, "tkinter"], [474, "tkinter"], [478, "tkinter"], [479, "tkinter"], [479, "id7"], [480, "tkinter"], [481, "tkinter"]], "tkinter --- Tcl/Tk \u7684 Python \u4ecb\u9762": [[369, "module-tkinter"]], "tkinter.colorchooser --- \u984f\u8272\u9078\u64c7\u5c0d\u8a71\u6846": [[370, "module-tkinter.colorchooser"]], "tkinter.commondialog --- Dialog window templates": [[189, "module-tkinter.commondialog"]], "tkinter.dnd --- \u62d6\u653e\u652f\u63f4": [[371, "module-tkinter.dnd"]], "tkinter.filedialog --- File selection dialogs": [[189, "module-tkinter.filedialog"]], "tkinter.font --- Tkinter \u5b57\u578b\u5305\u88dd\u5668": [[372, "module-tkinter.font"]], "tkinter.messagebox --- Tkinter \u8a0a\u606f\u63d0\u793a": [[373, "module-tkinter.messagebox"]], "tkinter.scrolledtext --- \u6372\u52d5\u6587\u5b57\u5c0f\u5de5\u5177": [[374, "module-tkinter.scrolledtext"]], "tkinter.simpledialog --- \u6a19\u6e96 Tkinter \u8f38\u5165\u5c0d\u8a71\u6846": [[189, "module-tkinter.simpledialog"]], "tkinter.tix --- Tk \u64f4\u5145\u5c0f\u5de5\u5177": [[375, "module-tkinter.tix"]], "tkinter.ttk --- Tk \u4e3b\u984c\u5316\u5c0f\u5de5\u5177": [[376, "module-tkinter.ttk"]], "token --- \u8207 Python \u5256\u6790\u6a39\u4e00\u8d77\u4f7f\u7528\u7684\u5e38\u6578": [[377, "module-token"]], "tokenize": [[474, "tokenize"], [481, "tokenize"]], "tokenize --- Tokenizer for Python source": [[378, "module-tokenize"]], "tomllib --- \u5256\u6790 TOML \u6a94\u6848": [[379, "module-tomllib"]], "tp_call \u5354\u5b9a": [[10, "the-tp-call-protocol"]], "tp_traverse in Python 3.8 and lower": [[100, "tp-traverse-in-python-3-8-and-lower"]], "trace --- \u8ffd\u8e64\u6216\u8ffd\u67e5 Python \u9673\u8ff0\u5f0f\u57f7\u884c": [[380, "module-trace"]], "traceback": [[472, "traceback"], [473, "traceback"], [477, "traceback"], [478, "traceback"], [479, "traceback"]], "traceback --- \u5217\u5370\u6216\u53d6\u5f97\u5806\u758a\u56de\u6eaf (stack traceback)": [[381, "module-traceback"]], "tracemalloc": [[477, "tracemalloc"], [479, "tracemalloc"], [480, "tracemalloc"], [482, "tracemalloc"]], "tracemalloc --- \u8ffd\u8e64\u8a18\u61b6\u9ad4\u914d\u7f6e": [[382, "module-tracemalloc"]], "tracemalloc C API": [[42, "tracemalloc-c-api"]], "ttk.Combobox": [[376, "ttk-combobox"]], "ttk.Notebook": [[376, "ttk-notebook"]], "ttk.Progressbar": [[376, "ttk-progressbar"]], "ttk.Spinbox": [[376, "ttk-spinbox"]], "ttk.Treeview": [[376, "ttk-treeview"]], "ttk.Widget": [[376, "ttk-widget"]], "ttk: Themed Widgets for Tk": [[469, "ttk-themed-widgets-for-tk"]], "tty --- \u7d42\u7aef\u6a5f\u63a7\u5236\u51fd\u5f0f": [[383, "module-tty"]], "turtle --- \u9f9c\u5716\u5b78 (Turtle graphics)": [[384, "module-turtle"]], "turtledemo": [[475, "turtledemo"]], "turtledemo --- Demo scripts": [[384, "module-turtledemo"]], "type": [[120, "type"]], "types": [[472, "types"], [474, "types"], [476, "types"], [477, "types"], [478, "types"], [480, "types"]], "types --- \u52d5\u614b\u578b\u5225\u5efa\u7acb\u8207\u5167\u5efa\u578b\u5225\u540d\u7a31": [[385, "module-types"]], "typing": [[472, "typing"], [473, "typing"], [474, "typing"], [478, "typing"], [479, "typing"], [481, "typing"], [482, "typing"], [482, "id4"]], "typing --- \u652f\u63f4\u578b\u5225\u63d0\u793a": [[386, "typing-support-for-type-hints"]], "tzinfo \u7269\u4ef6": [[183, "tzinfo-objects"]], "unicodedata": [[473, "unicodedata"], [474, "unicodedata"], [478, "unicodedata"], [479, "unicodedata"], [480, "unicodedata"], [481, "unicodedata"], [482, "unicodedata"]], "unicodedata --- Unicode \u8cc7\u6599\u5eab": [[387, "module-unicodedata"]], "unittest": [[472, "unittest"], [473, "unittest"], [474, "unittest"], [474, "id3"], [475, "unittest"], [476, "unittest"], [477, "unittest"], [478, "unittest"], [480, "unittest"], [481, "unittest"]], "unittest --- \u55ae\u5143\u6e2c\u8a66\u6846\u67b6": [[388, "module-unittest"]], "unittest.mock": [[478, "unittest-mock"], [479, "unittest-mock"], [480, "unittest-mock"]], "unittest.mock --- \u5165\u9580\u6307\u5357": [[390, "unittest-mock-getting-started"]], "unittest.mock \u2014 mock \u7269\u4ef6\u51fd\u5f0f\u5eab": [[389, "module-unittest.mock"]], "urllib": [[476, "urllib"], [477, "urllib"], [478, "urllib"]], "urllib --- URL \u8655\u7406\u6a21\u7d44": [[392, "module-urllib"]], "urllib.error --- urllib.request \u5f15\u767c\u7684\u4f8b\u5916\u985e\u5225": [[393, "module-urllib.error"]], "urllib.parse": [[472, "urllib-parse"], [475, "urllib-parse"], [480, "urllib-parse"], [481, "urllib-parse"], [482, "urllib-parse"], [482, "id5"]], "urllib.parse --- \u5c07 URL \u5256\u6790\u6210\u5143\u4ef6": [[394, "module-urllib.parse"]], "urllib.request": [[479, "urllib-request"]], "urllib.request --- \u7528\u4f86\u958b\u555f URLs \u7684\u53ef\u64f4\u5145\u51fd\u5f0f\u5eab": [[395, "module-urllib.request"]], "urllib.request Restrictions": [[395, "urllib-request-restrictions"]], "urllib.response --- Response classes used by urllib": [[395, "module-urllib.response"]], "urllib.robotparser": [[479, "urllib-robotparser"]], "urllib.robotparser --- robots.txt \u7684\u5256\u6790\u5668": [[396, "module-urllib.robotparser"]], "usage": [[120, "usage"]], "usercustomize": [[334, "module-usercustomize"]], "uu": [[480, "uu"]], "uuid": [[474, "uuid"], [480, "uuid"]], "uuid --- RFC 4122 \u5b9a\u7fa9\u7684 UUID \u7269\u4ef6": [[398, "module-uuid"]], "venv": [[473, "venv"], [477, "venv"], [479, "venv"], [479, "whatsnew36-venv"], [481, "venv"], [482, "venv"]], "venv --- \u5efa\u7acb\u865b\u64ec\u74b0\u5883": [[399, "module-venv"]], "warnings": [[473, "warnings"], [479, "warnings"], [480, "warnings"]], "warnings --- \u8b66\u544a\u63a7\u5236": [[400, "module-warnings"]], "wave": [[477, "wave"], [480, "wave"]], "wave --- \u8b80\u5beb WAV \u6a94\u6848": [[401, "module-wave"]], "wchar_t Support": [[64, "wchar-t-support"]], "weakref": [[477, "weakref"], [481, "weakref"]], "weakref --- \u5f31\u53c3\u7167": [[402, "module-weakref"]], "webbrowser": [[474, "webbrowser"], [476, "webbrowser"]], "webbrowser --- \u65b9\u4fbf\u7684\u7db2\u9801\u700f\u89bd\u5668\u63a7\u5236\u5668": [[403, "module-webbrowser"]], "winreg": [[479, "winreg"]], "winreg --- Windows \u8a3b\u518a\u8868\u5b58\u53d6": [[405, "module-winreg"]], "winsound": [[479, "winsound"]], "winsound --- Windows \u7684\u8072\u97f3\u64ad\u653e\u4ecb\u9762": [[406, "module-winsound"]], "wsgiref": [[478, "wsgiref"]], "wsgiref --- WSGI \u5de5\u5177\u8207\u53c3\u8003\u5be6\u4f5c": [[407, "module-wsgiref"]], "wsgiref \u5957\u4ef6": [[467, "the-wsgiref-package"]], "wsgiref.handlers -- \u4f3a\u670d\u5668 / \u9598\u9053\u57fa\u672c\u985e\u5225": [[407, "module-wsgiref.handlers"]], "wsgiref.headers -- WSGI \u56de\u61c9\u6a19\u982d\u5de5\u5177": [[407, "module-wsgiref.headers"]], "wsgiref.simple_server -- \u4e00\u500b\u7c21\u55ae\u7684 WSGI HTTP \u4f3a\u670d\u5668": [[407, "module-wsgiref.simple_server"]], "wsgiref.types -- \u7528\u65bc\u975c\u614b\u578b\u5225\u6aa2\u67e5\u7684 WSGI \u578b\u5225": [[407, "module-wsgiref.types"]], "wsgiref.util -- WSGI \u74b0\u5883\u5de5\u5177": [[407, "module-wsgiref.util"]], "wsgiref.validate --- WSGI \u7b26\u5408\u6027\u6aa2\u67e5": [[407, "module-wsgiref.validate"]], "www.python.org \u7684\u771f\u5be6\u4f4d\u7f6e\u5728\u54ea\u88e1\uff1f": [[80, "where-in-the-world-is-www-python-org-located"]], "xdrlib --- XDR \u8cc7\u6599\u7684\u7de8\u78bc\u8207\u89e3\u78bc": [[408, "module-xdrlib"]], "xdrlib --- uuencode \u6a94\u6848\u7684\u7de8\u78bc\u8207\u89e3\u78bc": [[397, "module-uu"]], "xml": [[472, "xml"], [479, "xml"], [480, "xml"], [481, "xml"], [482, "xml"]], "xml.dom --- Document \u7269\u4ef6\u6a21\u578b API": [[410, "module-xml.dom"]], "xml.dom.minidom --- \u6700\u5c0f\u7684 DOM \u5be6\u4f5c": [[411, "module-xml.dom.minidom"]], "xml.dom.pulldom --- \u652f\u63f4\u5efa\u7f6e\u90e8\u5206 DOM \u6a39": [[412, "module-xml.dom.pulldom"]], "xml.etree": [[477, "xml-etree"], [480, "xml-etree"]], "xml.etree.ElementTree": [[474, "xml-etree-elementtree"], [476, "xml-etree-elementtree"]], "xml.etree.cElementTree --- ElementTree XML API": [[413, "module-xml.etree.ElementTree"]], "xml.parsers.expat --- \u4f7f\u7528 Expat \u9032\u884c\u5feb\u901f XML \u5256\u6790": [[314, "module-xml.parsers.expat"]], "xml.sax": [[478, "xml-sax"]], "xml.sax --- SAX2 \u5256\u6790\u5668\u652f\u63f4": [[414, "module-xml.sax"]], "xml.sax.handler --- SAX \u8655\u7406\u51fd\u5f0f\u7684\u57fa\u672c\u985e\u5225": [[415, "module-xml.sax.handler"]], "xml.sax.saxutils --- SAX \u5de5\u5177\u7a0b\u5f0f": [[417, "module-xml.sax.saxutils"]], "xml.sax.xmlreader --- XML \u5256\u6790\u5668\u7684\u4ecb\u9762": [[416, "module-xml.sax.xmlreader"]], "xmlrpc": [[478, "xmlrpc"], [481, "xmlrpc"]], "xmlrpc --- XMLRPC \u4f3a\u670d\u5668\u8207\u7528\u6236\u6a21\u7d44": [[418, "xmlrpc-xmlrpc-server-and-client-modules"]], "xmlrpc.client": [[479, "xmlrpc-client"]], "xmlrpc.client --- XML-RPC \u5ba2\u6236\u7aef\u5b58\u53d6": [[419, "module-xmlrpc.client"]], "xmlrpc.server": [[480, "xmlrpc-server"]], "xmlrpc.server --- \u57fa\u672c XML-RPC \u4f3a\u670d\u5668": [[420, "module-xmlrpc.server"]], "zipapp": [[478, "zipapp"], [480, "zipapp"]], "zipapp \u2014-- \u7ba1\u7406\u53ef\u57f7\u884c\u7684 Python zip \u5c01\u5b58\u6a94\u6848": [[421, "module-zipapp"]], "zipfile": [[473, "zipfile"], [477, "zipfile"], [478, "zipfile"], [479, "zipfile"], [480, "zipfile"]], "zipfile --- \u8655\u7406 ZIP \u5c01\u5b58\u6a94\u6848": [[422, "module-zipfile"]], "zipimport": [[472, "zipimport"], [474, "zipimport"]], "zipimport --- \u5f9e Zip \u5c01\u5b58\u6a94\u6848\u532f\u5165\u6a21\u7d44": [[423, "module-zipimport"]], "zipimporter \u7269\u4ef6": [[423, "zipimporter-objects"]], "zlib": [[426, "zlib"], [476, "zlib"], [479, "zlib"]], "zlib --- \u76f8\u5bb9\u65bc gzip \u7684\u58d3\u7e2e": [[424, "module-zlib"]], "zoneinfo": [[482, "zoneinfo"]], "zoneinfo --- IANA \u6642\u5340\u652f\u63f4": [[425, "module-zoneinfo"]], "\u300c\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a\uff1f\u300d\u5e38\u898b\u554f\u7b54\u96c6": [[83, "why-is-python-installed-on-my-computer-faq"]], "\u300c\u7de8\u8b6f\u300dPython \u6a94\u6848": [[450, "compiled-python-files"]], "\u4e00\u500b\u7c21\u55ae\u7bc4\u4f8b": [[73, "a-simple-example"], [101, "a-simple-example"]], "\u4e00\u500b\u975e\u6b63\u5f0f\u7684 Python \u7c21\u4ecb": [[449, "an-informal-introduction-to-python"]], "\u4e00\u822c\u7684 Python \u5e38\u898b\u554f\u7b54\u96c6": [[80, "general-python-faq"]], "\u4e00\u822c\u8cc7\u8a0a": [[80, "general-information"]], "\u4e00\u822c\u9078\u9805": [[456, "general-options"]], "\u4e09\u89d2\u51fd\u6578": [[154, "trigonometric-functions"]], "\u4e0b\u6a19 (Subscripting)": [[122, "subscripting"]], "\u4e0d\u4f7f\u7528\u7b2c\u4e09\u65b9\u5de5\u5177\u5efa\u7acb\u64f4\u5145": [[74, "creating-extensions-without-third-party-tools"]], "\u4e0d\u652f\u63f4\u7684\u4f5c\u696d\u7cfb\u7d71": [[476, "unsupported-operating-systems"]], "\u4e0d\u7a69\u5b9a\u7684 C API": [[57, "unstable-c-api"]], "\u4e0d\u80fd\u64fa\u812b\u5168\u5c40\u76f4\u8b6f\u5668\u9396\u55ce\uff1f": [[84, "can-t-we-get-rid-of-the-global-interpreter-lock"]], "\u4e26\u884c\u57f7\u884c (Concurrent Execution)": [[164, "concurrent-execution"]], "\u4e26\u884c\u6027\u548c\u591a\u57f7\u884c\u7dd2 (Concurrency and Multithreading)": [[125, "concurrency-and-multithreading"]], "\u4e32\u5217 (list) \u5728 CPython \u4e2d\u662f\u600e\u9ebc\u5be6\u4f5c\u7684\uff1f": [[78, "how-are-lists-implemented-in-cpython"]], "\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff08List Comprehension\uff09": [[462, "list-comprehensions"]], "\u4e32\u6d41": [[136, "streams"]], "\u4e32\u6d41 (Streams)": [[124, "streams"]], "\u4e3b\u8981 Makefile \u76ee\u6a19": [[456, "main-makefile-targets"]], "\u4e3b\u8981\u5efa\u7f6e\u6b65\u9a5f": [[456, "main-build-steps"]], "\u4e82\u6578": [[326, "random-numbers"]], "\u4e8b\u4ef6\u8ff4\u5708": [[126, "event-loop"]], "\u4e8b\u4ef6\u8ff4\u5708 Policies": [[130, "event-loop-policies"]], "\u4e8b\u4ef6\u8ff4\u5708\u5be6\u4f5c": [[126, "event-loop-implementations"]], "\u4e8b\u4ef6\u8ff4\u5708\u65b9\u6cd5": [[126, "event-loop-methods"], [130, "event-loop-methods"]], "\u4e8c\u9032\u4f4d (Binary) I/O": [[258, "binary-i-o"], [258, "id2"]], "\u4e8c\u9032\u4f4d\u8cc7\u6599": [[107, "binary-data"]], "\u4e8c\u9032\u4f4d\u8cc7\u6599\u670d\u52d9": [[145, "binary-data-services"]], "\u4e8c\u9032\u5236\u8cc7\u6599\u8a18\u9304\u7de8\u6392 (Binary Data Record Layouts)": [[452, "working-with-binary-data-record-layouts"]], "\u4e92\u52d5\u5f0f\u555f\u52d5\u6a94\u6848": [[438, "the-interactive-startup-file"]], "\u4e92\u52d5\u5f0f\u76f4\u8b6f\u5668\u7684\u66ff\u4ee3\u65b9\u6848": [[447, "alternatives-to-the-interactive-interpreter"]], "\u4e92\u52d5\u5f0f\u8f38\u5165": [[437, "interactive-input"]], "\u4e92\u52d5\u5f0f\u8f38\u5165\u7de8\u8f2f\u548c\u6b77\u53f2\u8a18\u9304\u66ff\u63db": [[447, "interactive-input-editing-and-history-substitution"]], "\u4e92\u52d5\u6a21\u5f0f": [[438, "interactive-mode"], [448, "interactive-mode"]], "\u4ec0\u9ebc\u662f Python \u64c5\u9577\u7684\u4e8b\u60c5\uff1f": [[80, "what-is-python-good-for"]], "\u4ec0\u9ebc\u662f Python \u8edf\u9ad4\u57fa\u91d1\u6703\uff1f": [[80, "what-is-the-python-software-foundation"]], "\u4ec0\u9ebc\u662f Python\uff1f": [[80, "what-is-python"], [83, "what-is-python"]], "\u4ec0\u9ebc\u662f\u300c\u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883\u300d\uff1f": [[114, "what-is-the-top-level-code-environment"]], "\u4ec0\u9ebc\u662f\u65b9\u6cd5 (method)\uff1f": [[85, "what-is-a-method"]], "\u4ec0\u9ebc\u662f\u985e\u5225 (class)\uff1f": [[85, "what-is-a-class"]], "\u4ec0\u9ebc\u6642\u5019\u4f7f\u7528 logging": [[101, "when-to-use-logging"]], "\u4ecb\u7d39": [[384, "introduction"]], "\u4ecb\u9762\u9078\u9805": [[455, "interface-options"]], "\u4ee5 C \u6216 C++ \u64f4\u5145 Python": [[73, "extending-python-with-c-or-c"]], "\u4ee5 Tk \u6253\u9020\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (Graphical User Interfaces)": [[368, "graphical-user-interfaces-with-tk"]], "\u4efb\u4f55 Python \u7248\u672c\u4e2d __annotations__ \u7684\u6700\u4f73\u5be6\u8e10": [[88, "best-practices-for-annotations-in-any-python-version"]], "\u4efb\u52d9 (Tasks)": [[124, "tasks"]], "\u4efb\u610f\u5f15\u6578\u5217\u8868 (Arbitrary Argument Lists)": [[441, "arbitrary-argument-lists"]], "\u4f47\u5217 (Queues)": [[124, "queues"], [134, "queues"]], "\u4f47\u5217\u7269\u4ef6": [[316, "queue-objects"]], "\u4f4d\u5143\u7d44\u7269\u4ef6 (Bytes Objects)": [[9, "bytes-objects"]], "\u4f4d\u5143\u7d44\u9663\u5217\u7269\u4ef6 (Byte Array Objects)": [[8, "byte-array-objects"]], "\u4f4d\u7f6e\u5f15\u6578\u7684\u4ecb\u7d39": [[89, "introducing-positional-arguments"]], "\u4f4d\u7f6e\u6216\u95dc\u9375\u5b57\u5f15\u6578 (Positional-or-Keyword Arguments)": [[441, "positional-or-keyword-arguments"]], "\u4f4e\u968e API": [[33, "low-level-api"], [123, null]], "\u4f4e\u968e API \u7d22\u5f15": [[130, "low-level-api-index"]], "\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762": [[451, "operating-system-interface"]], "\u4f5c\u696d\u7cfb\u7d71\u5de5\u5177": [[59, "operating-system-utilities"]], "\u4f5c\u70ba C \u7d50\u69cb\u7684\u8907\u6578": [[15, "complex-numbers-as-c-structures"]], "\u4f5c\u70ba Python \u7269\u4ef6\u7684\u8907\u6578": [[15, "complex-numbers-as-python-objects"]], "\u4f5c\u7528\u57df\u548c\u547d\u540d\u7a7a\u9593\u7684\u7bc4\u4f8b": [[440, "scopes-and-namespaces-example"]], "\u4f60\u4e0d\u8a72\u4f7f\u7528\u7684\u9078\u9805": [[455, "options-you-shouldn-t-use"]], "\u4f7f\u7528 2to3": [[112, "using-2to3"]], "\u4f7f\u7528 DTrace \u548c SystemTap \u6aa2\u6e2c CPython": [[98, "instrumenting-cpython-with-dtrace-and-systemtap"]], "\u4f7f\u7528 MagicMock \u4f86 mock \u5b57\u5178": [[390, "mocking-a-dictionary-with-magicmock"]], "\u4f7f\u7528 Mock \u4f86 patching \u65b9\u6cd5": [[390, "mock-patching-methods"]], "\u4f7f\u7528 Mock \u7684\u65b9\u5f0f": [[390, "using-mock"]], "\u4f7f\u7528 Python \u554f\u984c\u8ffd\u8e64\u7cfb\u7d71": [[1, "using-the-python-issue-tracker"]], "\u4f7f\u7528 Python \u6642\u6709\u4efb\u4f55\u7248\u6b0a\u9650\u5236\u55ce\uff1f": [[80, "are-there-copyright-restrictions-on-the-use-of-python"]], "\u4f7f\u7528 Python \u76f4\u8b6f\u5668": [[448, "using-the-python-interpreter"]], "\u4f7f\u7528 Ttk": [[376, "using-ttk"]], "\u4f7f\u7528 asyncio \u958b\u767c": [[125, "developing-with-asyncio"]], "\u4f7f\u7528 call_later() \u986f\u793a\u76ee\u524d\u65e5\u671f": [[126, "display-the-current-date-with-call-later"]], "\u4f7f\u7528 call_soon() \u7684 Hello World \u7bc4\u4f8b": [[126, "hello-world-with-call-soon"]], "\u4f7f\u7528 importlib \u4f5c\u70ba import \u7684\u5be6\u4f5c": [[476, "using-importlib-as-the-implementation-of-import"]], "\u4f7f\u7528 json \u5132\u5b58\u7d50\u69cb\u5316\u8cc7\u6599": [[446, "saving-structured-data-with-json"]], "\u4f7f\u7528 mock \u6aa2\u67e5\u591a\u500b\u547c\u53eb": [[390, "checking-multiple-calls-with-mock"]], "\u4f7f\u7528 patch.dict \u4f86 mock import": [[390, "mocking-imports-with-patch-dict"]], "\u4f7f\u7528 side_effect \u56de\u50b3\u5404\u5225\u6a94\u6848\u5167\u5bb9": [[390, "using-side-effect-to-return-per-file-content"]], "\u4f7f\u7528\u4e00\u500b Socket": [[107, "using-a-socket"]], "\u4f7f\u7528\u4e32\u6d41\u7684 TCP echo \u4f3a\u670d\u5668": [[136, "tcp-echo-server-using-streams"]], "\u4f7f\u7528\u4e32\u6d41\u7684 TCP echo \u5ba2\u6236\u7aef": [[136, "tcp-echo-client-using-streams"]], "\u4f7f\u7528\u547d\u4ee4\u5217\u4ecb\u9762\u57f7\u884c\u6e2c\u8a66": [[362, "module-test.regrtest"]], "\u4f7f\u7528\u65b9\u6848": [[318, "recipes"]], "\u4f7f\u7528\u65bc List \u7684\u5de5\u5177": [[452, "tools-for-working-with-lists"]], "\u4f7f\u7528\u7ba1\u9053": [[126, "working-with-pipes"]], "\u4f7f\u7528\u8005\u5b9a\u7fa9\u6cdb\u578b\u578b\u5225": [[386, "user-defined-generic-types"]], "\u4f7f\u7528\u8005\u81ea\u5b9a\u7684\u4f8b\u5916": [[443, "user-defined-exceptions"]], "\u4f7f\u7528\u8005\u8f38\u5165": [[92, "user-input"]], "\u4f8b\u5916": [[35, "exceptions"], [124, "exceptions"], [127, "exceptions"], [134, "exceptions"], [167, "exceptions"], [232, "exceptions"], [262, "exceptions"], [271, "exceptions"], [337, "exceptions"], [340, "exceptions"], [341, "exceptions"], [343, "exceptions"], [348, "exceptions"], [408, "exceptions"], [410, "exceptions"], [413, "exceptions"], [429, "exceptions"]], "\u4f8b\u5916 (Exception)": [[443, "exceptions"]], "\u4f8b\u5916\u7269\u4ef6": [[23, "exception-objects"]], "\u4f8b\u5916\u7684\u60c5\u5883": [[213, "exception-context"]], "\u4f8b\u5916\u8655\u7406": [[23, "exception-handling"]], "\u4f8b\u5916\u8655\u7406\u6709\u591a\u5feb\uff1f": [[78, "how-fast-are-exceptions"]], "\u4f8b\u5916\u93c8\u63a5 (Exception Chaining)": [[443, "exception-chaining"]], "\u4f8b\u5916\u968e\u5c64": [[213, "exception-hierarchy"]], "\u4f8b\u5916\u985e\u5225": [[23, "exception-classes"], [166, "exception-classes"]], "\u503c\u5f97\u6ce8\u610f\u7684\u6a21\u7d44\u5167\u5bb9": [[306, "notable-module-contents"]], "\u5075\u6e2c\u5f9e\u672a\u88ab\u7372\u53d6\u7684 (never-retrieved) \u4f8b\u5916": [[125, "detect-never-retrieved-exceptions"]], "\u5075\u6e2c\u5f9e\u672a\u88ab\u7b49\u5f85\u7684 (never-awaited) \u5354\u7a0b": [[125, "detect-never-awaited-coroutines"]], "\u5099\u8a3b": [[211, "notes"]], "\u50b3\u8f38": [[130, "transports"]], "\u50b3\u8f38\u6a94\u6848": [[126, "transferring-files"]], "\u50b3\u8f38\u8207\u5354\u5b9a": [[133, "transports-and-protocols"]], "\u50b3\u905e\u5f15\u6578": [[448, "argument-passing"]], "\u50c5\u9650\u4f4d\u7f6e\u53c3\u6578 (Positional-Only Parameters)": [[441, "positional-only-parameters"]], "\u50c5\u9650\u95dc\u9375\u5b57\u5f15\u6578 (Keyword-Only Arguments)": [[441, "keyword-only-arguments"]], "\u50c5\u9650\u95dc\u9375\u5b57\u6b04\u4f4d (Keyword-only fields)": [[472, "keyword-only-fields"]], "\u512a\u5148\u4f47\u5217\u5be6\u4f5c\u7d30\u7bc0": [[236, "priority-queue-implementation-notes"]], "\u5167\u5efa\u51fd\u5f0f": [[225, "built-in-functions"]], "\u5167\u5efa\u51fd\u5f0f\u548c\u578b\u5225": [[476, "builtin-functions-and-types"]], "\u5167\u5efa\u578b\u5225": [[344, "built-in-types"]], "\u5167\u5efa\u578b\u5225\u7684\u5225\u540d": [[386, "aliases-to-built-in-types"]], "\u5167\u5efa\u5e38\u6578": [[168, "built-in-constants"]], "\u5167\u5efa\u7684\u4f8b\u5916": [[213, "built-in-exceptions"]], "\u5169\u500b\u8f38\u5165\u4e4b\u9593\u7684\u95dc\u4fc2\u7d71\u8a08": [[343, "statistics-for-relations-between-two-inputs"]], "\u5176\u4ed6": [[474, "others"]], "\u5176\u4ed6 API \u8b8a\u66f4": [[476, "other-api-changes"]], "\u5176\u4ed6 CPython \u5be6\u4f5c\u66f4\u52d5": [[473, "other-cpython-implementation-changes"]], "\u5176\u4ed6\u4e3b\u8981\u529f\u80fd": [[472, "other-key-features"]], "\u5176\u4ed6\u51fd\u5f0f": [[326, "other-functions"], [337, "other-functions"], [355, "other-functions"]], "\u5176\u4ed6\u5e73\u53f0": [[461, "other-platforms"]], "\u5176\u4ed6\u6539\u52d5\u8207\u4fee\u6b63": [[464, "other-changes-and-fixes"]], "\u5176\u4ed6\u7269\u4ef6": [[5, "other-objects"], [16, "other-objects"]], "\u5176\u4ed6\u8a9e\u8a00\u66f4\u52d5": [[465, "other-language-changes"], [466, "other-language-changes"], [467, "other-language-changes"], [468, "other-language-changes"], [469, "other-language-changes"], [471, "other-language-changes"], [472, "other-language-changes"], [473, "other-language-changes"], [474, "other-language-changes"], [475, "other-language-changes"], [476, "other-language-changes"], [477, "other-language-changes"], [478, "other-language-changes"], [479, "other-language-changes"], [480, "other-language-changes"], [481, "other-language-changes"], [482, "other-language-changes"]], "\u5176\u4ed6\u8cc7\u6e90": [[459, "other-resources"]], "\u5177\u6709\u4f4d\u7f6e\u53c3\u6578\u7684\u6a21\u5f0f": [[472, "patterns-with-positional-parameters"]], "\u5177\u6709\u5b57\u9762\u503c\u548c\u8b8a\u6578\u7684\u6a21\u5f0f": [[472, "patterns-with-a-literal-and-variable"]], "\u5177\u9ad4\u7269\u4ef6\u5c64": [[16, "concrete-objects-layer"]], "\u51aa\u51fd\u6578\u548c\u5c0d\u6578\u51fd\u6578": [[154, "power-and-logarithmic-functions"]], "\u51cd\u7d50\u5be6\u4f8b": [[181, "frozen-instances"]], "\u51cd\u7d50\u5f15\u5165 (Frozen imports) / \u975c\u614b\u7a0b\u5f0f\u78bc\u7269\u4ef6 (Static code objects)": [[473, "frozen-imports-static-code-objects"]], "\u51fd\u5f0f": [[151, "functions"], [177, "functions"], [179, "functions"], [250, "functions"], [337, "functions"], [344, "functions"], [366, "functions"], [382, "functions"], [405, "functions"], [413, "functions"], [413, "elementinclude-functions"], [425, "functions"]], "\u51fd\u5f0f\u3001\u5e38\u6578\u8207\u4f8b\u5916": [[341, "functions-constants-and-exceptions"]], "\u51fd\u5f0f\u548c\u985e\u5225\u5b9a\u7fa9": [[122, "function-and-class-definitions"]], "\u51fd\u5f0f\u5b9a\u7fa9": [[427, "function-definitions"]], "\u51fd\u5f0f\u5eab\u548c\u64f4\u5145\u529f\u80fd\u7684\u5e38\u898b\u554f\u984c": [[84, "library-and-extension-faq"]], "\u51fd\u5f0f\u5eab\u8b8a\u66f4": [[470, "library-changes"]], "\u51fd\u5f0f\u5eab\u9078\u9805": [[456, "libraries-options"]], "\u51fd\u5f0f\u7269\u4ef6": [[16, "function-objects"], [312, "function-objects"]], "\u51fd\u5f0f\u7269\u4ef6 (Function Objects)": [[27, "function-objects"]], "\u51fd\u5f0f\u7bc4\u4f8b": [[441, "function-examples"]], "\u51fd\u5f0f\u7d30\u7bc0": [[343, "function-details"]], "\u51fd\u5f0f\u7de8\u7a0b HOWTO": [[95, "functional-programming-howto"]], "\u51fd\u5f0f\u7de8\u7a0b\u6a21\u7d44": [[224, "functional-programming-modules"]], "\u51fd\u5f0f\u8207\u4f8b\u5916": [[347, "functions-and-exceptions"]], "\u51fd\u5f0f\u8207\u88dd\u98fe\u5668": [[386, "functions-and-decorators"]], "\u51fd\u5f0f\u8a3b\u91cb (Function Annotations)": [[441, "function-annotations"]], "\u5206\u985e\u51fd\u5f0f": [[154, "classification-functions"]], "\u5207\u7247\u7269\u4ef6": [[56, "slice-objects"]], "\u521d\u63a2\u7a0b\u5f0f\u8a2d\u8a08\u7684\u524d\u5e7e\u6b65": [[449, "first-steps-towards-programming"]], "\u521d\u898b class": [[440, "a-first-look-at-classes"]], "\u522a\u9664\u5c6c\u6027": [[389, "deleting-attributes"]], "\u5256\u6790 XML": [[413, "parsing-xml"]], "\u5256\u6790\u5f15\u6578": [[120, "parsing-arguments"]], "\u5256\u6790\u5f15\u6578\u8207\u5efa\u7f6e\u6578\u503c": [[5, "parsing-arguments-and-building-values"]], "\u529f\u80fd": [[476, "features"], [476, "id1"]], "\u529f\u80fd\u6027": [[476, "functionality"]], "\u52a0\u5165\u66f4\u591a\u6578\u503c ABC": [[289, "adding-more-numeric-abcs"]], "\u52a0\u5bc6\u670d\u52d9": [[174, "cryptographic-services"]], "\u5341\u9032\u5236 (Decimal) \u6d6e\u9ede\u6578\u904b\u7b97": [[452, "decimal-floating-point-arithmetic"]], "\u5347\u51aa\u8207\u964d\u51aa": [[108, "ascending-and-descending"]], "\u5354\u5b9a": [[130, "protocols"], [386, "protocols"]], "\u5354\u5b9a\u7248\u672c": [[341, "protocol-versions"]], "\u5354\u7a0b": [[139, "coroutines"], [427, "coroutines"], [428, "coroutines"]], "\u5354\u7a0b\u8207\u4efb\u52d9": [[139, "coroutines-and-tasks"]], "\u539f\u5730 (in-place) \u904b\u7b97\u5b50": [[291, "in-place-operators"]], "\u539f\u59cb (Raw) I/O": [[258, "raw-i-o"]], "\u539f\u59cb\u6a94\u6848 I/O": [[258, "raw-file-i-o"]], "\u539f\u59cb\u78bc\u7684\u5b57\u5143\u7de8\u78bc (encoding)": [[448, "source-code-encoding"]], "\u539f\u7406": [[236, "theory"]], "\u53c3\u7167\u8a08\u6578": [[35, "reference-counts"], [52, "reference-counting"]], "\u53c3\u7167\u8a08\u6578\u8a73\u7d30\u8cc7\u8a0a": [[35, "reference-count-details"]], "\u53c3\u8003": [[223, "reference"]], "\u53d6\u5f97\u548c\u5b89\u88dd Python": [[459, "getting-and-installing-python"]], "\u53d7\u9650 API \u6ce8\u610f\u4e8b\u9805": [[57, "limited-api-caveats"]], "\u53d7\u9650 API \u7684\u5167\u5bb9": [[57, "contents-of-limited-api"]], "\u53d7\u9650 API \u7bc4\u570d\u548c\u6027\u80fd": [[57, "limited-api-scope-and-performance"]], "\u53d7\u9650 C API": [[57, "limited-c-api"]], "\u53ef\u57f7\u884c\u7684 Python \u8173\u672c": [[438, "executable-python-scripts"]], "\u53ef\u7528\u6027\u4e4b\u8a3b\u91cb": [[257, "notes-on-availability"]], "\u53ef\u7528\u7684\u975c\u614b\u6a19\u8a18": [[98, "available-static-markers"]], "\u53ef\u8b8a\u9810\u8a2d\u503c": [[181, "mutable-default-values"]], "\u53ef\u9078\u5f15\u6578\u7684\u4ecb\u7d39": [[89, "introducing-optional-arguments"]], "\u53ef\u9078\u7684 EncodingWarning \u548c encoding=\"locale\" \u9078\u9805": [[472, "optional-encodingwarning-and-encoding-locale-option"]], "\u540c\u6b65\u5316 (Synchronization)": [[124, "synchronization"]], "\u540c\u6b65\u5316\u539f\u59cb\u7269\u4ef6 (Synchronization Primitives)": [[138, "synchronization-primitives"]], "\u547c\u53eb": [[389, "calling"]], "\u547c\u53eb\u5354\u5b9a (Call Protocol)": [[10, "call-protocol"]], "\u547c\u53eb\u652f\u63f4 API": [[10, "call-support-api"]], "\u547d\u4ee4\u5217": [[455, "command-line"]], "\u547d\u4ee4\u5217\u4ecb\u9762": [[210, "command-line-interface"], [234, "command-line-interface"], [255, "command-line-interface"], [262, "module-json.tool"], [334, "command-line-interface"], [340, "command-line-interface"], [367, "command-line-interface"]], "\u547d\u4ee4\u5217\u5f15\u6578": [[451, "command-line-arguments"]], "\u547d\u4ee4\u5217\u6a21\u5f0f\u9078\u9805": [[388, "command-line-options"]], "\u547d\u4ee4\u5217\u7528\u6cd5": [[122, "command-line-usage"], [150, "command-line-usage"], [247, "command-line-usage"], [300, "command-line-usage"]], "\u547d\u4ee4\u5217\u7684\u7528\u6cd5": [[398, "command-line-usage"]], "\u547d\u4ee4\u5217\u7684\u7bc4\u4f8b": [[398, "command-line-example"]], "\u547d\u4ee4\u5217\u8207\u74b0\u5883": [[455, "command-line-and-environment"]], "\u547d\u4ee4\u5217\u9078\u9805": [[234, "command-line-options"], [262, "command-line-options"], [300, "command-line-options"]], "\u547d\u4ee4\u5217\u958b\u95dc\u66f4\u6539": [[476, "command-line-switch-changes"]], "\u547d\u4ee4\u57f7\u884c\u5217\u4ecb\u9762": [[421, "command-line-interface"]], "\u547d\u4ee4\u57f7\u884c\u5217\u4ecb\u9762 (Command-Line Interface)": [[388, "command-line-interface"]], "\u547d\u540d\u4f60\u7684 mock": [[390, "naming-your-mocks"]], "\u548c json \u7684\u6bd4\u8f03": [[299, "comparison-with-json"]], "\u548c marshal \u7684\u6bd4\u8f03": [[299, "comparison-with-marshal"]], "\u548c\u5176\u4ed6 Python \u6a21\u7d44\u7684\u95dc\u4fc2": [[299, "relationship-to-other-python-modules"]], "\u54c1\u8cea\u63a7\u7ba1": [[451, "quality-control"]], "\u54ea\u88e1\u53ef\u4ee5\u627e\u5230 math.py (socket.py, regex.py, \u7b49...) \u4f86\u6e90\u6a94\u6848\uff1f": [[84, "where-is-the-math-py-socket-py-regex-py-etc-source-file"]], "\u555f\u52d5\u4e00\u500b\u70cf\u9f9c\u74b0\u5883": [[384, "starting-a-turtle-environment"]], "\u555f\u52d5\u548c\u505c\u6b62\u8ff4\u5708": [[126, "running-and-stopping-the-loop"]], "\u555f\u52d5\u76f4\u8b6f\u5668": [[448, "invoking-the-interpreter"]], "\u555f\u7528\u9664\u932f\u6a21\u5f0f": [[126, "enabling-debug-mode"]], "\u555f\u7528\u975c\u614b\u6a19\u8a18": [[98, "enabling-the-static-markers"]], "\u55ae\u7d14\u8c9d\u6c0f\u5206\u985e\u5668 (Naive bayesian classifier)": [[343, "naive-bayesian-classifier"]], "\u56de\u50b3\u4f4d\u5143\u7d44\u7684\u51fd\u5f0f": [[318, "functions-for-bytes"]], "\u56de\u50b3\u5e8f\u5217\u7684\u51fd\u5f0f": [[318, "functions-for-sequences"]], "\u56de\u50b3\u6574\u6578\u7684\u51fd\u5f0f": [[318, "functions-for-integers"]], "\u56de\u5230\u7bc4\u4f8b": [[73, "back-to-the-example"]], "\u56de\u547c\u8655\u7406": [[126, "callback-handles"]], "\u56de\u9867": [[441, "recap"]], "\u570b\u969b\u5316": [[246, "internationalization"]], "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (GUI) \u7684\u5e38\u898b\u554f\u984c": [[81, "general-gui-questions"]], "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\u5e38\u898b\u554f\u7b54\u96c6": [[81, "graphic-user-interface-faq"]], "\u5728 FreeBSD \u548c OpenBSD \u4e0a": [[460, "on-freebsd-and-openbsd"]], "\u5728 Linux \u4e0a": [[460, "on-linux"]], "\u5728 Linux \u4e0a\u5b89\u88dd\u5957\u4ef6\u81f3\u7cfb\u7d71 Python": [[111, "installing-into-the-system-python-on-linux"]], "\u5728 Mac \u7cfb\u7d71\u4f7f\u7528 Python": [[459, "using-python-on-a-mac"]], "\u5728 Python 3.10 \u53ca\u66f4\u9ad8\u7248\u672c\u4e2d\u5b58\u53d6\u7269\u4ef6\u7684\u8a3b\u91cb\u5b57\u5178": [[88, "accessing-the-annotations-dict-of-an-object-in-python-3-10-and-newer"]], "\u5728 Python 3.9 \u53ca\u66f4\u65e9\u7248\u672c\u4e2d\u5b58\u53d6\u7269\u4ef6\u7684\u8a3b\u91cb\u5b57\u5178": [[88, "accessing-the-annotations-dict-of-an-object-in-python-3-9-and-older"]], "\u5728 Unix \u5e73\u81fa\u4e0a\u4f7f\u7528 Python": [[460, "using-python-on-unix-platforms"]], "\u5728 Windows \u4e0a\u4f7f\u7528 Python": [[461, "using-python-on-windows"]], "\u5728 Windows \u4f7f\u7528 Python \u7684\u5e38\u898b\u554f\u7b54\u96c6": [[86, "python-on-windows-faq"]], "\u5728 heap \u4e0a\u5206\u914d\u7269\u4ef6": [[3, "allocating-objects-on-the-heap"]], "\u5728\u5176\u5b83 App \u5167\u5d4c\u5165 Python": [[72, "embedding-python-in-another-application"]], "\u5728\u57f7\u884c\u7dd2\u6c60\u6216\u884c\u7a0b\u6c60\u4e2d\u57f7\u884c\u7a0b\u5f0f\u78bc": [[126, "executing-code-in-thread-or-process-pools"]], "\u5728\u66f4\u5927\u7684\u61c9\u7528\u7a0b\u5f0f\u4e2d\u5d4c\u5165 CPython \u904b\u884c\u74b0\u5883 (runtime)": [[74, "embedding-the-cpython-runtime-in-a-larger-application"]], "\u5728\u771f\u5be6\u4e16\u754c\u4e2d\u7684 Python": [[80, "python-in-the-real-world"]], "\u578b\u5225": [[35, "types"]], "\u578b\u5225\u5225\u540d": [[386, "type-aliases"]], "\u578b\u5225\u53c3\u6578 (type parameters)": [[122, "type-parameters"]], "\u578b\u5225\u63d0\u793a\u7269\u4ef6": [[62, "objects-for-type-hinting"]], "\u578b\u5225\u63d0\u793a\u76f8\u95dc\u7684\u65b0\u7279\u6027": [[473, "new-features-related-to-type-hints"]], "\u578b\u5225\u6aa2\u67e5\u5de8\u96c6": [[8, "type-check-macros"]], "\u578b\u5225\u7269\u4ef6": [[61, "type-objects"], [63, "type-objects"]], "\u57f7\u884c\u6a21\u578b": [[429, "execution-model"]], "\u57f7\u884c\u7dd2": [[84, "threads"]], "\u57f7\u884c\u8ffd\u8e64": [[426, "execution-tracing"]], "\u57f7\u884c\u963b\u585e\u7684\u7a0b\u5f0f": [[125, "running-blocking-code"]], "\u57fa\u5e95\u985e\u5225 (base classes)": [[213, "base-classes"]], "\u57fa\u672c\u7528\u6cd5": [[89, "the-basics"], [111, "basic-usage"], [262, "basic-usage"], [296, "basic-use"]], "\u57fa\u672c\u7bc4\u4f8b": [[421, "basic-example"]], "\u57fa\u672c\u7e6a\u5716": [[384, "basic-drawing"]], "\u57fa\u790e Logging \u6307\u5357": [[101, "basic-logging-tutorial"]], "\u57fa\u790e\u6392\u5e8f": [[108, "sorting-basics"]], "\u57fa\u790e\u7269\u4ef6": [[16, "fundamental-objects"]], "\u57fa\u790e\u7bc4\u4f8b": [[236, "basic-examples"], [367, "basic-examples"]], "\u589e\u52a0\u5f15\u6578": [[120, "adding-arguments"]], "\u591a\u57f7\u884c\u7dd2 (Multi-threading)": [[452, "multi-threading"]], "\u591a\u5a92\u9ad4\u670d\u52d9": [[277, "multimedia-services"]], "\u591a\u76ee\u9304\u4e2d\u7684\u5957\u4ef6": [[450, "packages-in-multiple-directories"]], "\u591a\u91cd\u7e7c\u627f": [[440, "multiple-inheritance"]], "\u5957\u4ef6 (Package)": [[450, "packages"]], "\u5957\u4ef6\u5167\u5f15\u7528": [[450, "intra-package-references"]], "\u5982\u4f55\u4f7f Python \u8173\u672c\u53ef\u4ee5\u57f7\u884c\uff1f": [[86, "how-do-i-make-python-scripts-executable"]], "\u5982\u4f55\u4f7f\u7528 Logging \u6a21\u7d44": [[101, "logging-howto"]], "\u5982\u4f55\u4f7f\u7528 Py_BuildValue() \u5efa\u7acb\u4efb\u610f\u9577\u5ea6\u7684\u5143\u7d44\uff1f": [[79, "how-do-i-use-py-buildvalue-to-create-a-tuple-of-arbitrary-length"]], "\u5982\u4f55\u4f7f\u7528 urllib \u5957\u4ef6\u53d6\u5f97\u7db2\u8def\u8cc7\u6e90": [[110, "howto-fetch-internet-resources-using-the-urllib-package"]], "\u5982\u4f55\u4f7f\u7528\u57f7\u884c\u7dd2\u7de8\u5beb\u7a0b\u5f0f\uff1f": [[84, "how-do-i-program-using-threads"]], "\u5982\u4f55\u4f7f\u7528\u6b63\u898f\u8868\u9054\u5f0f": [[106, "regular-expression-howto"]], "\u5982\u4f55\u51cd\u7d50 Tkinter \u61c9\u7528\u7a0b\u5f0f\uff1f": [[81, "how-do-i-freeze-tkinter-applications"]], "\u5982\u4f55\u522a\u9664\u6a94\u6848\uff1f\uff08\u4ee5\u53ca\u5176\u4ed6\u6a94\u6848\u554f\u984c...\uff09": [[84, "how-do-i-delete-a-file-and-other-file-questions"]], "\u5982\u4f55\u53d6\u5f97 Python \u7684 beta \u6e2c\u8a66\u7248\u672c\uff1f": [[80, "how-do-i-get-a-beta-test-version-of-python"]], "\u5982\u4f55\u555f\u7528 perf \u5206\u6790\u652f\u63f4": [[104, "how-to-enable-perf-profiling-support"]], "\u5982\u4f55\u5728 Python \u4e2d\u6307\u5b9a\u548c\u5f37\u5236\u4f7f\u7528\u4e00\u500b\u4ecb\u9762\u898f\u7bc4 (interface spec)\uff1f": [[78, "how-do-you-specify-and-enforce-an-interface-spec-in-python"]], "\u5982\u4f55\u5728 Python \u4e2d\u751f\u6210\u96a8\u6a5f\u6578\uff1f": [[84, "how-do-i-generate-random-numbers-in-python"]], "\u5982\u4f55\u5728 Python \u4e2d\u8907\u88fd\u7269\u4ef6\uff1f": [[85, "how-do-i-copy-an-object-in-python"]], "\u5982\u4f55\u5728 Windows \u4f5c\u696d\u7cfb\u7d71\u88e1\u904b\u884c Python \u7a0b\u5f0f\uff1f": [[86, "how-do-i-run-a-python-program-under-windows"]], "\u5982\u4f55\u5728\u4e0d\u963b\u585e\u7684\u60c5\u6cc1\u4e0b\u6aa2\u67e5 keypress\uff1f": [[86, "how-do-i-check-for-a-keypress-without-blocking"]], "\u5982\u4f55\u57f7\u884c Python \u8173\u672c": [[459, "how-to-run-a-python-script"]], "\u5982\u4f55\u5b58\u53d6\u5e8f\u5217 (RS232) \u9023\u63a5\u57e0\uff1f": [[84, "how-do-i-access-the-serial-rs232-port"]], "\u5982\u4f55\u5c07 Python 2 \u7684\u7a0b\u5f0f\u78bc\u79fb\u690d\u5230 Python 3": [[105, "how-to-port-python-2-code-to-python-3"]], "\u5982\u4f55\u5c07 Python \u5d4c\u5165 Windows \u61c9\u7528\u7a0b\u5f0f\u4e2d\uff1f": [[86, "how-can-i-embed-python-into-a-windows-application"]], "\u5982\u4f55\u5c07\u5b57\u4e32\u8f49\u63db\u70ba\u6578\u5b57\uff1f": [[85, "how-do-i-convert-a-string-to-a-number"]], "\u5982\u4f55\u5c07\u6578\u5b57\u8f49\u63db\u70ba\u5b57\u4e32\uff1f": [[85, "how-do-i-convert-a-number-to-a-string"]], "\u5982\u4f55\u5f9e C \u547c\u53eb\u7269\u4ef6\u7684\u65b9\u6cd5\uff1f": [[79, "how-do-i-call-an-object-s-method-from-c"]], "\u5982\u4f55\u5f9e C \u57f7\u884c\u4efb\u610f Python \u9673\u8ff0\u5f0f\uff1f": [[79, "how-can-i-execute-arbitrary-python-statements-from-c"]], "\u5982\u4f55\u5f9e C \u5b58\u53d6\u7528 Python \u7de8\u5beb\u7684\u6a21\u7d44\uff1f": [[79, "how-do-i-access-a-module-written-in-python-from-c"]], "\u5982\u4f55\u5f9e Python \u7269\u4ef6\u4e2d\u63d0\u53d6 C \u503c\uff1f": [[79, "how-do-i-extract-c-values-from-a-python-object"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u5efa\u7acb\u7368\u7acb\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\uff1f": [[85, "how-can-i-create-a-stand-alone-binary-from-a-python-script"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u767c\u9001\u90f5\u4ef6\uff1f": [[84, "how-do-i-send-mail-from-a-python-script"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u88fd\u4f5c\u53ef\u57f7\u884c\u6a94\uff1f": [[86, "how-do-i-make-an-executable-from-a-python-script"]], "\u5982\u4f55\u5f9e\u300c\u7121\u6548\u8f38\u5165\u300d\u5340\u5206\u51fa\u300c\u4e0d\u5b8c\u6574\u8f38\u5165\u300d\uff1f": [[79, "how-do-i-tell-incomplete-input-from-invalid-input"]], "\u5982\u4f55\u627e\u5230\u672a\u5b9a\u7fa9\u7684 g++ \u7b26\u865f __builtin_new \u6216 __pure_virtual\uff1f": [[79, "how-do-i-find-undefined-g-symbols-builtin-new-or-pure-virtual"]], "\u5982\u4f55\u627e\u5230\u7269\u4ef6\u7684\u65b9\u6cd5\u6216\u5c6c\u6027\uff1f": [[85, "how-can-i-find-the-methods-or-attributes-of-an-object"]], "\u5982\u4f55\u6307\u5b9a\u5341\u516d\u9032\u4f4d\u548c\u516b\u9032\u4f4d\u6574\u6578\uff1f": [[85, "how-do-i-specify-hexadecimal-and-octal-integers"]], "\u5982\u4f55\u63d0\u4ea4 Python \u7684\u932f\u8aa4\u5831\u544a\u548c\u4fee\u88dc\u7a0b\u5f0f\uff1f": [[80, "how-do-i-submit-bug-reports-and-patches-for-python"]], "\u5982\u4f55\u6a21\u64ec CGI \u8868\u55ae\u9001\u51fa (submission) (METHOD=POST)\uff1f": [[84, "how-can-i-mimic-cgi-form-submission-method-post"]], "\u5982\u4f55\u6e2c\u8a66 Python \u7a0b\u5f0f\u6216\u5143\u4ef6\uff1f": [[84, "how-do-i-test-a-python-program-or-component"]], "\u5982\u4f55\u70ba\u64f4\u5145\u5957\u4ef6\u9664\u932f\uff1f": [[79, "how-do-i-debug-an-extension"]], "\u5982\u4f55\u7372\u5f97\u6700\u4f73\u7d50\u679c": [[104, "how-to-obtain-the-best-results"]], "\u5982\u4f55\u7ffb\u8b6f argparse \u8f38\u51fa": [[89, "how-to-translate-the-argparse-output"]], "\u5982\u4f55\u8907\u88fd\u6a94\u6848\uff1f": [[84, "how-do-i-copy-a-file"]], "\u5982\u4f55\u89e3\u6c7a\u907a\u6f0f api-ms-win-crt-runtime-l1-1-0.dll \u7684\u932f\u8aa4\uff1f": [[86, "how-do-i-solve-the-missing-api-ms-win-crt-runtime-l1-1-0-dll-error"]], "\u5982\u4f55\u8b80\u53d6\uff08\u6216\u5beb\u5165\uff09\u4e8c\u9032\u4f4d\u5236\u8cc7\u6599\uff1f": [[84, "how-do-i-read-or-write-binary-data"]], "\u5982\u4f55\u8de8\u6a21\u7d44\u5171\u4eab\u5168\u57df\u8b8a\u6578\uff1f": [[85, "how-do-i-share-global-variables-across-modules"]], "\u5982\u4f55\u9632\u6b62\u7de8\u8f2f\u5668\u5728\u6211\u7684 Python \u539f\u59cb\u78bc\u4e2d\u63d2\u5165 tab\uff1f": [[86, "how-do-i-keep-editors-from-inserting-tabs-into-my-python-source"]], "\u5982\u540c\u5c6c\u6027\u4e00\u822c\u9644\u52a0 mock": [[389, "attaching-mocks-as-attributes"]], "\u5b50\u884c\u7a0b": [[137, "subprocesses"]], "\u5b50\u884c\u7a0b (Subprocesses)": [[124, "subprocesses"]], "\u5b50\u884c\u7a0b\u8207\u7dda\u7a0b": [[137, "subprocess-and-threads"]], "\u5b50\u985e\u5225\u5982\u4f55\u63a7\u5236\u4e0d\u53ef\u8b8a\u5be6\u4f8b\u4e2d\u5b58\u5132\u7684\u8cc7\u6599\uff1f": [[85, "how-can-a-subclass-control-what-data-is-stored-in-an-immutable-instance"]], "\u5b57\u4e32\u5e38\u6578": [[345, "string-constants"]], "\u5b57\u4e32\u6a23\u5f0f\u6bd4\u5c0d": [[451, "string-pattern-matching"]], "\u5b57\u4e32\u7684 format() method": [[446, "the-string-format-method"]], "\u5b57\u4e32\u8f49\u63db\u8207\u683c\u5f0f\u5316": [[18, "string-conversion-and-formatting"]], "\u5b57\u5178": [[428, "dictionaries"]], "\u5b57\u5178 (dictionaries) \u5728 CPython \u4e2d\u662f\u600e\u9ebc\u5be6\u4f5c\u7684\uff1f": [[78, "how-are-dictionaries-implemented-in-cpython"]], "\u5b57\u5178\u7269\u4ef6": [[22, "dictionary-objects"]], "\u5b57\u5178\u8996\u5716\u7269\u4ef6": [[344, "dictionary-view-objects"]], "\u5b57\u5178\uff08Dictionary\uff09": [[442, "dictionaries"]], "\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805": [[327, "security-considerations"]], "\u5b89\u5168\u8003\u91cf": [[143, "security-considerations"]], "\u5b89\u88dd Python \u6a21\u7d44": [[111, "installing-python-modules"]], "\u5b89\u88dd\u4e8c\u9032\u5236\u64f4\u5145 (binary extension)": [[111, "installing-binary-extensions"]], "\u5b89\u88dd\u6392\u9664\u4f7f\u7528\u8005\u4ecb\u9762": [[461, "installing-without-ui"]], "\u5b89\u88dd\u6b65\u9a5f": [[461, "installation-steps"]], "\u5b89\u88dd\u8def\u5f91\u51fd\u5f0f": [[355, "installation-path-functions"]], "\u5b89\u88dd\u9078\u9805": [[456, "install-options"]], "\u5b89\u88dd\u96a8\u9078": [[461, "install-on-demand"]], "\u5b89\u88dd\u984d\u5916\u7684 Python \u5957\u4ef6": [[459, "installing-additional-python-packages"]], "\u5b8c\u6574\u7684 Python \u7a0b\u5f0f": [[437, "complete-python-programs"]], "\u5b8c\u6574\u7684\u8a9e\u6cd5\u898f\u683c\u66f8": [[431, "full-grammar-specification"]], "\u5b9a\u7fa9": [[109, "definitions"]], "\u5b9a\u7fa9\u51fd\u5f0f (function)": [[441, "defining-functions"]], "\u5b9a\u7fa9\u6e05\u7406\u52d5\u4f5c": [[443, "defining-clean-up-actions"]], "\u5ba2\u88fd\u5316 OpenSSL": [[460, "custom-openssl"]], "\u5ba2\u88fd\u5316\u6a21\u7d44": [[438, "the-customization-modules"]], "\u5ba3\u544a\u5f0f\u65b9\u6cd5 (Declarative approach)": [[472, "declarative-approach"]], "\u5bb9\u5668\u7269\u4ef6": [[16, "container-objects"]], "\u5bc6\u5c01 mock": [[389, "sealing-mocks"]], "\u5be6\u4f5c\u51fd\u5f0f\u8207\u65b9\u6cd5": [[58, "implementing-functions-and-methods"]], "\u5be6\u4f5c\u7b97\u8853\u64cd\u4f5c": [[289, "implementing-the-arithmetic-operations"]], "\u5be6\u4f8b\u65b9\u6cd5\u7269\u4ef6 (Instance Method Objects)": [[44, "instance-method-objects"]], "\u5be6\u4f8b\u7269\u4ef6": [[440, "instance-objects"]], "\u5be6\u6578\u5206\u5e03": [[318, "real-valued-distributions"]], "\u5be6\u9ad4\u4f8b\u5916": [[213, "concrete-exceptions"]], "\u5be6\u9ad4\u8def\u5f91": [[296, "concrete-paths"]], "\u5beb C \u5f88\u96e3\uff1b\u9084\u6709\u5176\u4ed6\u9078\u64c7\u55ce\uff1f": [[79, "writing-c-is-hard-are-there-any-alternatives"]], "\u5beb\u5165\u5668\u7269\u4ef6": [[175, "writer-objects"]], "\u5c07 List \u4f5c\u70ba Queue\uff08\u4f47\u5217\uff09\u4f7f\u7528": [[442, "using-lists-as-queues"]], "\u5c07 List \u4f5c\u70ba Stack\uff08\u5806\u758a\uff09\u4f7f\u7528": [[442, "using-lists-as-stacks"]], "\u5c07 sysconfig \u4f5c\u70ba\u8173\u672c\u4f7f\u7528": [[355, "using-sysconfig-as-a-script"]], "\u5c0d Python \u63d0\u51fa\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\u5efa\u8b70\u662f\u5426\u9069\u7576\uff1f": [[80, "is-it-reasonable-to-propose-incompatible-changes-to-python"]], "\u5c0d\u500b\u5225\u7d44\u6210\u7684\u5b58\u53d6": [[296, "accessing-individual-parts"]], "\u5c0d\u5927\u6a94\u6848 (Large File) \u7684\u652f\u63f4": [[306, "large-file-support"]], "\u5c0d\u6620\u5354\u5b9a": [[40, "mapping-protocol"]], "\u5c0d\u6bcf\u500b\u6e2c\u8a66\u65b9\u6cd5\u61c9\u7528\u76f8\u540c\u7684 patch": [[390, "applying-the-same-patch-to-every-test-method"]], "\u5c0d\u7269\u4ef6\u7684\u65b9\u6cd5\u547c\u53eb\u4f7f\u7528 mock": [[390, "mock-for-method-calls-on-an-object"]], "\u5c6c\u6027": [[288, "attributes"]], "\u5d4c\u5165 Python": [[461, "embedding-python"]], "\u5d4c\u5165\u5f0fPython": [[35, "embedding-python"]], "\u5de2\u72c0\u4f7f\u7528 Patch": [[390, "nesting-patches"]], "\u5de2\u72c0\u4f7f\u7528 Patch \u88dd\u98fe\u5668": [[389, "nesting-patch-decorators"]], "\u5de2\u72c0\u6a21\u5f0f": [[472, "nested-patterns"]], "\u5de2\u72c0\u7684 List Comprehensions": [[442, "nested-list-comprehensions"]], "\u5de5\u5177": [[65, "utilities"]], "\u5de8\u96c6": [[8, "macros"]], "\u5df2\u522a\u9664": [[472, "removed"], [472, "id4"]], "\u5df2\u68c4\u7528": [[472, "deprecated"], [472, "id3"], [473, "deprecated"], [473, "whatsnew311-c-api-deprecated"], [474, "deprecated"], [474, "id6"], [476, "deprecated"], [477, "deprecated"], [478, "deprecated"], [479, "deprecated"], [481, "deprecated"], [482, "deprecated"]], "\u5df2\u68c4\u7528\u51fd\u5f0f": [[252, "deprecated-functions"]], "\u5df2\u68c4\u7528\u529f\u80fd": [[477, "deprecated-features"]], "\u5df2\u68c4\u7528\u7684 Python \u6a21\u7d44\u3001\u51fd\u5f0f\u548c\u65b9\u6cd5": [[476, "deprecated-python-modules-functions-and-methods"]], "\u5df2\u68c4\u7528\u7684\u51fd\u5f0f\u548c\u8b8a\u6578": [[360, "deprecated-functions-and-variables"]], "\u5df2\u68c4\u7528\u7684\u529f\u80fd": [[476, "deprecated-features"]], "\u5df2\u79fb\u9664": [[473, "removed"], [473, "whatsnew311-c-api-removed"], [474, "removed"], [474, "id10"], [477, "removed"], [478, "removed"], [479, "removed"], [482, "removed"], [482, "id3"]], "\u5df2\u88ab\u53d6\u4ee3\u7684\u6a21\u7d44": [[350, "superseded-modules"]], "\u5df2\u88ab\u79fb\u9664\u7684\u8a9e\u6cd5": [[470, "removed-syntax"]], "\u5e36\u62ec\u865f\u7684\u60c5\u5883\u7ba1\u7406\u5668": [[472, "parenthesized-context-managers"]], "\u5e38\u6578": [[137, "constants"], [154, "constants"], [183, "constants"], [186, "constants"], [235, "constants"], [275, "constants"], [337, "constants"], [341, "constants"], [386, "constant"], [405, "constants"]], "\u5e38\u898b\u51fd\u5f0f\u554f\u984c": [[84, "general-library-questions"]], "\u5e38\u898b\u554f\u984c": [[85, "general-questions"]], "\u5e38\u898b\u5c6c\u6027": [[183, "common-properties"]], "\u5e38\u898b\u7684\u5b89\u88dd\u554f\u984c": [[111, "common-installation-issues"]], "\u5e38\u898b\u8ab2\u984c": [[84, "common-tasks"]], "\u5e6b\u52a9": [[120, "help"]], "\u5e73\u53f0\u6ce8\u610f\u4e8b\u9805": [[57, "platform-considerations"]], "\u5e73\u5747\u503c\u8207\u4e2d\u592e\u4f4d\u7f6e\u91cf\u6578": [[343, "averages-and-measures-of-central-location"]], "\u5e73\u81fa\u652f\u63f4": [[131, "platform-support"]], "\u5e8f\u5217\u5354\u5b9a": [[54, "sequence-protocol"]], "\u5e8f\u5217\u548c\u5176\u4ed6\u8cc7\u6599\u985e\u578b\u4e4b\u6bd4\u8f03": [[442, "comparing-sequences-and-other-types"]], "\u5e8f\u5217\u7269\u4ef6": [[16, "sequence-objects"]], "\u5efa\u69cb\u51fd\u5f0f": [[235, "constructors"]], "\u5efa\u7acb C \u8207 C++ \u64f4\u5145\u5957\u4ef6": [[71, "building-c-and-c-extensions"]], "\u5efa\u7acb Futures \u548c Tasks": [[126, "creating-futures-and-tasks"]], "\u5efa\u7acb sockets": [[337, "creating-sockets"]], "\u5efa\u7acb\u4e00\u500b Socket": [[107, "creating-a-socket"]], "\u5efa\u7acb\u4e00\u500b\u5256\u6790\u5668": [[120, "creating-a-parser"]], "\u5efa\u7acb\u5b50\u884c\u7a0b": [[137, "creating-subprocesses"]], "\u5efa\u7acb\u7db2\u8def\u4f3a\u670d\u5668": [[126, "creating-network-servers"]], "\u5efa\u7acb\u865b\u64ec\u74b0\u5883": [[399, "creating-virtual-environments"], [453, "creating-virtual-environments"]], "\u5efa\u7f6e Python": [[460, "building-python"]], "\u5efa\u7f6e Windows \u4e0a\u7684 C \u548c C++ \u64f4\u5145": [[77, "building-c-and-c-extensions-on-windows"]], "\u5efa\u7f6e\u548c C API \u66f4\u6539": [[476, "build-and-c-api-changes"]], "\u5efa\u7f6e\u8b8a\u66f4": [[472, "build-changes"], [473, "build-changes"]], "\u5efa\u7f6e\u9700\u6c42": [[456, "build-requirements"]], "\u5f15\u5165 (imports)": [[122, "imports"]], "\u5f15\u5165\u6a21\u7d44": [[31, "importing-modules"], [280, "importing-modules"]], "\u5f15\u5165\u6a94\u6848 (include files)": [[35, "include-files"]], "\u5f15\u6578 (arguments) \u548c\u53c3\u6578 (parameters) \u6709\u4ec0\u9ebc\u5340\u5225\uff1f": [[85, "what-is-the-difference-between-arguments-and-parameters"]], "\u5f15\u767c\u4f8b\u5916": [[443, "raising-exceptions"]], "\u5f15\u767c\u53ca\u8655\u7406\u591a\u500b\u7121\u95dc\u7684\u4f8b\u5916": [[443, "raising-and-handling-multiple-unrelated-exceptions"]], "\u5f31\u53c3\u7167\u7269\u4ef6": [[67, "weak-reference-objects"], [402, "weak-reference-objects"]], "\u5f31\u5f15\u7528 (Weak References)": [[452, "weak-references"]], "\u5f9e URL \u53d6\u5f97\u8cc7\u6e90": [[110, "fetching-urls"]], "\u5f9e\u5957\u4ef6\u4e2d import *": [[450, "importing-from-a-package"]], "\u5f9e\u6a94\u6848\u95dc\u806f": [[461, "from-file-associations"]], "\u5f9e\u73fe\u6709\u7269\u4ef6\u5efa\u7acb mock": [[390, "creating-a-mock-from-an-existing-object"]], "\u5faa\u74b0\u5783\u573e\u56de\u6536\u7684\u652f\u63f4": [[28, "supporting-cyclic-garbage-collection"]], "\u5feb\u901f\u5c0e\u5f15": [[389, "quick-guide"]], "\u6027\u80fd\u548c\u8cc7\u6e90\u4f7f\u7528\u60c5\u6cc1": [[476, "performance-and-resource-usage"]], "\u60c5\u5883\u8b8a\u6578\u7269\u4ef6": [[17, "context-variables-objects"]], "\u6163\u7528 (Idiomatic) \u7528\u6cd5": [[114, "idiomatic-usage"], [114, "id1"]], "\u61c9\u5c0d\u53ef\u8b8a\u5f15\u6578": [[390, "coping-with-mutable-arguments"]], "\u61c9\u7528\u6280\u5de7\u548c\u5178\u7bc4\u5be6\u52d9\uff08best practices\uff09": [[326, "recipes-and-best-practices"]], "\u6211\u4ec0\u9ebc\u6642\u5019\u53ef\u4ee5\u4f9d\u9760 is \u904b\u7b97\u5b50\u9032\u884c\u8b58\u5225\u6027\u6e2c\u8a66\uff1f": [[85, "when-can-i-rely-on-identity-tests-with-the-is-operator"]], "\u6211\u4f7f\u7528\u5b89\u88dd\u6a94\u6848\u65b0\u589e\u4e86\u4e00\u500b\u6a21\u7d44\uff0c\u4f46 make \u5931\u6557\u4e86\uff1b\u70ba\u4ec0\u9ebc\uff1f": [[79, "i-added-a-module-using-the-setup-file-and-the-make-fails-why"]], "\u6211\u53ef\u4ee5\u5728 C \u4e2d\u5efa\u7acb\u81ea\u5df1\u7684\u51fd\u5f0f\u55ce\uff1f": [[79, "can-i-create-my-own-functions-in-c"]], "\u6211\u53ef\u4ee5\u5728 C++ \u4e2d\u5efa\u7acb\u81ea\u5df1\u7684\u51fd\u5f0f\u55ce\uff1f": [[79, "id2"]], "\u6211\u5728\u6211\u7684\u7a0b\u5f0f\u7576\u4e2d\u6c92\u611f\u89ba\u5230\u4efb\u4f55\u52a0\u901f\uff0c\u70ba\u4ec0\u9ebc\uff1f": [[473, "i-don-t-see-any-speedups-in-my-workload-why"]], "\u6211\u5982\u4f55\u4f7f Python script \u57f7\u884c\u5728 Unix\uff1f": [[84, "how-do-i-make-a-python-script-executable-on-unix"]], "\u6211\u5982\u4f55\u627e\u5230\u57f7\u884c\u4efb\u52d9 X \u7684\u6a21\u7d44\u6216\u61c9\u7528\u7a0b\u5f0f\uff1f": [[84, "how-do-i-find-a-module-or-application-to-perform-task-x"]], "\u6211\u5982\u4f55\u6355\u6349 PyErr_Print() \u7684\u8f38\u51fa\uff08\u6216\u4efb\u4f55\u5370\u51fa\u5230 stdout/stderr \u7684\u6771\u897f\uff09\uff1f": [[79, "how-do-i-catch-the-output-from-pyerr-print-or-anything-that-prints-to-stdout-stderr"]], "\u6211\u5f9e\u4f86\u6c92\u6709\u5beb\u904e\u7a0b\u5f0f\uff0c\u6709\u6c92\u6709 Python \u7684\u6559\u5b78\uff1f": [[80, "i-ve-never-programmed-before-is-there-a-python-tutorial"]], "\u6211\u60f3\u5728\u6211\u7684 Linux \u7cfb\u7d71\u4e0a\u7de8\u8b6f\u4e00\u500b Python \u6a21\u7d44\uff0c\u4f46\u662f\u7f3a\u5c11\u4e00\u4e9b\u6a94\u6848\u3002\u70ba\u4ec0\u9ebc\uff1f": [[79, "i-want-to-compile-a-python-module-on-my-linux-system-but-some-files-are-missing-why"]], "\u6211\u61c9\u8a72\u4f7f\u7528\u4ec0\u9ebc\u6a21\u7d44\u4f86\u8f14\u52a9\u7522\u751f HTML\uff1f": [[84, "what-module-should-i-use-to-help-with-generating-html"]], "\u6211\u7121\u6cd5\u8b93\u9375\u7e6b\u7d50 (key binding) \u5728 Tkinter \u4e2d\u4f5c\u7528\uff1a\u70ba\u4ec0\u9ebc\uff1f": [[81, "i-can-t-get-key-bindings-to-work-in-tkinter-why"]], "\u6211\u7684\u57f7\u884c\u7dd2\u4f3c\u4e4e\u90fd\u6c92\u6709\u904b\u884c\uff1a\u70ba\u4ec0\u9ebc\uff1f": [[84, "none-of-my-threads-seem-to-run-why"]], "\u6211\u7684\u7a0b\u5f0f\u78bc\u5982\u4f55\u767c\u73fe\u7269\u4ef6\u7684\u540d\u7a31\uff1f": [[85, "how-can-my-code-discover-the-name-of-an-object"]], "\u6211\u80fd\u5920\u81ea\u884c\u522a\u9664 Python \u55ce\uff1f": [[83, "can-i-delete-python"]], "\u6211\u8981\u5982\u4f55\u53d6\u5f97 Python \u7684\u8aaa\u660e\u6587\u4ef6\uff1f": [[80, "how-do-i-get-documentation-on-python"]], "\u6211\u8981\u5982\u4f55\u5f97\u5230 Python \u7684\u539f\u59cb\u78bc\u8907\u672c\uff1f": [[80, "how-do-i-obtain-a-copy-of-the-python-source"]], "\u6211\u8a72\u5982\u4f55...\uff1f": [[111, "how-do-i"]], "\u6211\u8a72\u5982\u4f55\u5728\u7a0b\u5f0f\u78bc\u4e2d\u7372\u53d6\u9019\u4e9b\u52a0\u901f\uff1f": [[473, "how-should-i-write-my-code-to-utilize-these-speedups"]], "\u6211\u9700\u8981\u559c\u6b61\u300cMonty Python \u7684\u98db\u884c\u99ac\u6232\u5718\u300d\u55ce\uff1f": [[80, "do-i-have-to-like-monty-python-s-flying-circus"]], "\u6240\u6709\u5e73\u53f0": [[131, "all-platforms"]], "\u6240\u9700\u8cc7\u6e90\u66f4\u5c11 (cheaper) \u4e14\u60f0\u6027\u7684 (lazy)) Python \u5e40 (frame)": [[473, "cheaper-lazy-python-frames"]], "\u624b\u52d5\u53d6\u6d88\u5b57\u4e32\u5316\u8a3b\u91cb": [[88, "manually-un-stringizing-stringized-annotations"]], "\u624b\u52d5\u683c\u5f0f\u5316\u5b57\u4e32": [[446, "manual-string-formatting"]], "\u624b\u52d5\u8a2d\u5b9a": [[341, "manual-settings"]], "\u6253\u5305\u6642\u9808\u8003\u616e\u7684\u4e8b\u60c5": [[114, "packaging-considerations"]], "\u6253\u958b\u7db2\u8def\u9023\u7dda": [[126, "opening-network-connections"]], "\u6280\u8853\u7d30\u7bc0": [[183, "technical-detail"]], "\u628a Python \u7576\u4f5c\u8a08\u7b97\u6a5f\u4f7f\u7528": [[449, "using-python-as-a-calculator"]], "\u628a\u6a21\u7d44\u7576\u4f5c\u8173\u672c\u57f7\u884c": [[450, "executing-modules-as-scripts"]], "\u62bd\u8c61\u6587\u6cd5 (Abstract Grammar)": [[122, "abstract-grammar"]], "\u62bd\u8c61\u7269\u4ef6\u5c64 (Abstract Objects Layer)": [[2, "abstract-objects-layer"]], "\u62c6\u89e3\u5f15\u6578\u5217\u8868\uff08Unpacking Argument Lists\uff09": [[441, "unpacking-argument-lists"]], "\u6307\u5357\u8207\u6559\u5b78": [[123, null]], "\u6307\u5b9a\u4e0d\u660e\u78ba\u7684\u5f15\u6578": [[89, "specifying-ambiguous-arguments"]], "\u6392\u5e8f\u6280\u6cd5": [[108, "sorting-techniques"]], "\u6392\u5e8f\u7a69\u5b9a\u6027\u8207\u8907\u5408\u6392\u5e8f": [[108, "sort-stability-and-complex-sorts"]], "\u6392\u7a0b\u56de\u547c\u51fd\u5f0f": [[126, "scheduling-callbacks"]], "\u6392\u7a0b\u5ef6\u9072\u7684\u56de\u547c\u51fd\u5f0f": [[126, "scheduling-delayed-callbacks"]], "\u63a8\u85a6\u7684\u7b2c\u4e09\u65b9\u5de5\u5177": [[74, "recommended-third-party-tools"]], "\u63cf\u8ff0": [[120, "description"]], "\u63cf\u8ff0\u5668 (Descriptor) \u6307\u5357": [[93, "descriptor-guide"]], "\u63cf\u8ff0\u5668\u5354\u5b9a": [[93, "descriptor-protocol"]], "\u641c\u5c0b\u4e00\u500b\u5df2\u6392\u5e8f\u7684 list": [[147, "searching-sorted-lists"]], "\u6458\u8981": [[88, null], [92, null], [93, "abstract"], [100, null], [106, null], [107, null]], "\u6458\u8981 -- \u767c\u5e03\u91cd\u9ede": [[472, "summary-release-highlights"]], "\u64b0\u5beb test \u5957\u4ef6\u7684\u55ae\u5143\u6e2c\u8a66": [[362, "writing-unit-tests-for-the-test-package"]], "\u64f4\u5145": [[128, "extending"]], "\u64f4\u5145/\u5d4c\u5165\u5e38\u898b\u554f\u984c\u96c6": [[79, "extending-embedding-faq"]], "\u64f4\u5145\u548c\u5d4c\u5165 Python \u76f4\u8b6f\u5668": [[74, "extending-and-embedding-the-python-interpreter"]], "\u652f\u63f4 __dunder__ \u540d\u7a31": [[211, "supported-dunder-names"]], "\u652f\u63f4 _sunder_ \u540d\u7a31": [[211, "supported-sunder-names"]], "\u6539\u52d5 XML \u6a94\u6848": [[413, "modifying-an-xml-file"]], "\u6539\u9032\u7684\u6a21\u7d44": [[472, "improved-modules"], [473, "improved-modules"], [474, "improved-modules"], [476, "improved-modules"], [477, "improved-modules"], [478, "improved-modules"], [479, "improved-modules"], [480, "improved-modules"], [481, "improved-modules"], [482, "improved-modules"]], "\u6548\u80fd\u8003\u91cf": [[147, "performance-notes"]], "\u6548\u80fd\u91cf\u6e2c": [[451, "performance-measurement"]], "\u6559\u5b78": [[120, null], [384, "tutorial"], [413, "tutorial"]], "\u6574\u5408\u5316\u958b\u767c\u5de5\u5177 (IDE)": [[459, "the-ide"]], "\u6574\u6578": [[470, "integers"]], "\u6574\u6578\u578b\u5225\u7684\u4f4d\u5143\u904b\u7b97": [[344, "bitwise-operations-on-integer-types"]], "\u6574\u6578\u578b\u5225\u7684\u9644\u52a0 methods": [[344, "additional-methods-on-integer-types"]], "\u6574\u6578\u7269\u4ef6": [[39, "integer-objects"]], "\u6578\u503c\u578b\u5225 --- int\u3001float\u3001complex": [[344, "numeric-types-int-float-complex"]], "\u6578\u503c\u578b\u5225\u7684\u96dc\u6e4a": [[344, "hashing-of-numeric-types"]], "\u6578\u503c\u7269\u4ef6": [[16, "numeric-objects"]], "\u6578\u503c\u7684\u968e\u5c64": [[289, "the-numeric-tower"]], "\u6578\u503c\u8207\u6578\u5b78\u6a21\u7d44": [[290, "numeric-and-mathematical-modules"]], "\u6578\u5b57": [[5, "numbers"]], "\u6578\u5b57 (Number)": [[449, "numbers"]], "\u6578\u5b57\u5354\u5b9a": [[47, "number-protocol"]], "\u6578\u5b57\u548c\u5b57\u4e32": [[85, "numbers-and-strings"]], "\u6578\u5b78\u548c\u6578\u503c": [[84, "mathematics-and-numerics"]], "\u6578\u5b78\u76f8\u95dc": [[451, "mathematics"]], "\u6578\u8ad6\u8207\u8868\u73fe\u51fd\u5f0f": [[275, "number-theoretic-and-representation-functions"]], "\u6587\u4ef6": [[475, "documentation"]], "\u6587\u5b57": [[449, "text"]], "\u6587\u5b57 I/O": [[258, "text-i-o"], [258, "id1"], [258, "id3"]], "\u6587\u5b57\u7de8\u78bc": [[258, "text-encoding"]], "\u6587\u672c (Literals)": [[122, "literals"]], "\u6587\u672c\u8655\u7406 (Text Processing) \u670d\u52d9": [[363, "text-processing-services"]], "\u65b0 API": [[476, "new-apis"]], "\u65b0\u529f\u80fd": [[472, "new-features"], [472, "id1"]], "\u65b0\u589e opcode": [[473, "new-opcodes"]], "\u65b0\u589e\u6a21\u7d44": [[462, "new-modules"], [473, "new-modules"], [474, "new-modules"], [478, "new-modules"], [481, "new-modules"]], "\u65b0\u589e\u7279\u6027": [[473, "new-features"], [473, "whatsnew311-c-api-new-features"], [474, "new-features"], [474, "id4"]], "\u65b0\u6a21\u7d44": [[472, "new-modules"], [476, "new-modules"], [477, "new-modules"], [479, "new-modules"], [480, "new-modules"], [482, "new-modules"]], "\u65b0\u95dc\u9375\u5b57": [[479, "new-keywords"]], "\u65b9\u6cd5": [[33, "methods"], [296, "methods"]], "\u65b9\u6cd5\u7269\u4ef6 (Method Objects)": [[44, "method-objects"]], "\u65b9\u6cd5\u8207\u5c6c\u6027": [[296, "methods-and-properties"]], "\u65e5\u671f\u6642\u9593\u7269\u4ef6": [[419, "datetime-objects"]], "\u65e5\u671f\u8207\u6642\u9593": [[451, "dates-and-times"]], "\u65e5\u8a8c\u8a18\u9304": [[125, "logging"]], "\u65e5\u8a8c\u8a18\u9304 (Logging)": [[452, "logging"]], "\u660e\u986f\u7684\u8b8a\u66f4": [[476, "visible-changes"]], "\u662f\u5426\u53ef\u4ee5\u5728\u7b49\u5f85 I/O \u6642\u8655\u7406 Tk \u4e8b\u4ef6\uff1f": [[81, "can-i-have-tk-events-handled-while-waiting-for-i-o"]], "\u662f\u5426\u6709\u53ef\u4ee5\u4f7f\u7528\u5728\u7a0b\u5f0f\u78bc\u968e\u6bb5,\u5177\u6709\u4e2d\u65b7\u9ede,\u6b65\u9a5f\u57f7\u884c\u7b49\u529f\u80fd\u7684\u9664\u932f\u5668\uff1f": [[85, "is-there-a-source-code-level-debugger-with-breakpoints-single-stepping-etc"]], "\u662f\u5426\u6709\u7b49\u6548\u65bc C \u7684 \"?:\" \u4e09\u5143\u904b\u7b97\u5b50\uff1f": [[85, "is-there-an-equivalent-of-c-s-ternary-operator"]], "\u662f\u5426\u6709\u9069\u7528\u65bc Python \u7684 curses/termcap \u5957\u4ef6\uff1f": [[84, "is-there-a-curses-termcap-package-for-python"]], "\u662f\u5426\u6709\u95dc\u65bc Python \u7684\u4efb\u4f55\u5df2\u51fa\u7248\u6587\u7ae0\u53ef\u4f9b\u53c3\u8003\uff1f": [[80, "are-there-any-published-articles-about-python-that-i-can-reference"]], "\u66f4\u591a\u7bc4\u4f8b": [[390, "further-examples"]], "\u66f4\u597d\u7684\u932f\u8aa4\u8a0a\u606f": [[472, "better-error-messages"]], "\u66f4\u5feb\u7684 CPython": [[473, "faster-cpython"]], "\u66f4\u5feb\u7684\u555f\u52d5": [[473, "faster-startup"]], "\u66f4\u5feb\u7684\u904b\u884c\u7a0b\u5f0f": [[473, "faster-runtime"]], "\u66f4\u83ef\u9e97\u7684\u8f38\u51fa\u683c\u5f0f": [[446, "fancier-output-formatting"]], "\u66f4\u8907\u96dc\u7684\u5f15\u6578\u5339\u914d": [[390, "more-complex-argument-matching"]], "\u66f4\u9032\u968e\u4e00\u9ede": [[89, "getting-a-little-more-advanced"]], "\u66ff\u4ee3\u7522\u751f\u5668": [[318, "alternative-generator"]], "\u6700\u4f73\u5316": [[465, "optimizations"], [466, "optimizations"], [467, "optimizations"], [468, "optimizations"], [469, "optimizations"], [471, "optimizations"], [472, "optimizations"], [473, "optimizations"], [474, "optimizations"], [475, "optimizations"], [476, "optimizations"], [478, "optimizations"], [479, "optimizations"], [480, "optimizations"], [481, "optimizations"], [482, "optimizations"]], "\u6700\u7d42\u5316\u5668\u7269\u4ef6": [[402, "finalizer-objects"]], "\u6700\u7d42\u5316\u5668\u8207 __del__() \u65b9\u6cd5\u7684\u6bd4\u8f03": [[402, "comparing-finalizers-with-del-methods"]], "\u6700\u9ad8\u5c64\u7d1a\u5143\u4ef6": [[437, "top-level-components"]], "\u6709\u591a\u5c11\u4eba\u5728\u4f7f\u7528 Python\uff1f": [[80, "how-many-people-are-using-python"]], "\u6709\u66f4\u52d5/\u88ab\u79fb\u9664\u7684 opcode": [[473, "changed-removed-opcodes"]], "\u6709\u6c92\u6709 Python \u5c08\u5c6c\u7684\u65b0\u805e\u7fa4\u7d44\u6216\u90f5\u4ef6\u8a0e\u8ad6\u7fa4\uff1f": [[80, "is-there-a-newsgroup-or-mailing-list-devoted-to-python"]], "\u6709\u6c92\u6709\u4efb\u4f55\u91cd\u8981\u7684\u5c08\u6848\u4f7f\u7528 Python \u5b8c\u6210\u958b\u767c\uff1f": [[80, "have-any-significant-projects-been-done-in-python"]], "\u6709\u6c92\u6709\u5de5\u5177\u80fd\u5920\u5e6b\u5fd9\u627e bug \u6216\u57f7\u884c\u975c\u614b\u5206\u6790\uff1f": [[85, "are-there-tools-to-help-find-bugs-or-perform-static-analysis"]], "\u6709\u6c92\u6709\u95dc\u65bc Python \u7684\u66f8\uff1f": [[80, "are-there-any-books-on-python"]], "\u6709\u7528\u5230 JIT \u7de8\u8b6f\u5668\u55ce\uff1f": [[473, "is-there-a-jit-compiler"]], "\u6709\u7528\u7684\u5de8\u96c6": [[35, "useful-macros"]], "\u672a\u4f86\u7248\u672c\u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-future-versions"], [474, "id9"]], "\u672a\u5b89\u88dd pip": [[111, "pip-not-installed"]], "\u6821\u6b63": [[308, "calibration"]], "\u6838\u5bc6\u5ea6\u4f30\u8a08 (Kernel density estimation)": [[343, "kernel-density-estimation"]], "\u6838\u5fc3\u8a9e\u8a00": [[85, "core-language"]], "\u6839\u7bc0\u9ede": [[122, "root-nodes"]], "\u683c\u5f0f\u5316\u5b57\u4e32\u7684\u820a\u65b9\u6cd5": [[446, "old-string-formatting"]], "\u683c\u5f0f\u5316\u6587\u5b57\u8a9e\u6cd5": [[345, "format-string-syntax"]], "\u683c\u5f0f\u5316\u7684\u5b57\u4e32\u6587\u672c (Formatted String Literals)": [[446, "formatted-string-literals"]], "\u683c\u5f0f\u7bc4\u4f8b": [[345, "format-examples"]], "\u683c\u5f0f\u898f\u683c (Format Specification) \u8ff7\u4f60\u8a9e\u8a00": [[345, "format-specification-mini-language"]], "\u68c4\u7528\u7684\u5225\u540d": [[386, "deprecated-aliases"]], "\u6982\u5ff5": [[89, "concepts"]], "\u6a19\u6e96\u51fd\u5f0f\u5eab": [[473, "standard-library"]], "\u6a19\u6e96\u578b\u5225\u968e\u5c64": [[428, "the-standard-type-hierarchy"]], "\u6a19\u6e96\u6a21\u7d44": [[450, "standard-modules"]], "\u6a19\u6e96\u6a21\u7d44\u5eab": [[451, "batteries-included"]], "\u6a19\u6e96\u9078\u9805": [[376, "standard-options"]], "\u6a19\u7a31 (nominal) \u5b50\u578b\u5225 vs \u7d50\u69cb\u5b50\u578b\u5225": [[386, "nominal-vs-structural-subtyping"]], "\u6a21\u5f0f\u5339\u914d (pattern matching)": [[122, "pattern-matching"]], "\u6a21\u5f0f\u548c\u985e\u5225": [[472, "patterns-and-classes"]], "\u6a21\u677f\u5316 (Templating)": [[452, "templating"]], "\u6a21\u677f\u5b57\u4e32": [[345, "template-strings"]], "\u6a21\u7d44": [[85, "modules"], [344, "modules"], [428, "modules"], [430, "examples"], [473, "modules"]], "\u6a21\u7d44 (Module)": [[450, "modules"]], "\u6a21\u7d44 API": [[210, "module-api"]], "\u6a21\u7d44\u4ecb\u9762": [[299, "module-interface"]], "\u6a21\u7d44\u5167\u5bb9": [[113, "module-contents"], [175, "module-contents"], [181, "module-contents"], [211, "module-contents"], [319, "module-contents"], [333, "module-contents"], [334, "module-contents"], [337, "module-contents"], [386, "module-contents"], [410, "module-contents"]], "\u6a21\u7d44\u51fd\u5f0f": [[166, "module-functions"], [173, "module-functions"]], "\u6a21\u7d44\u547d\u4ee4\u5217\u4ecb\u9762": [[156, "modules-command-line-interface-cli"]], "\u6a21\u7d44\u5c6c\u6027": [[173, "module-attributes"]], "\u6a21\u7d44\u5f15\u5165\u7cfb\u7d71": [[432, "the-import-system"]], "\u6a21\u7d44\u7269\u4ef6\u6a21\u7d44": [[45, "module-objects"]], "\u6a21\u7d44\u7684\u641c\u5c0b\u8def\u5f91": [[450, "the-module-search-path"]], "\u6a21\u7d44\u8b8a\u6578": [[223, "module-variables"]], "\u6a21\u7d44\u8b8a\u66f4": [[462, "module-changes"]], "\u6a94\u6848\u4e4b\u842c\u7528\u5b57\u5143 (File Wildcards)": [[451, "file-wildcards"]], "\u6a94\u6848\u63cf\u8ff0\u5668\u7684\u932f\u8aa4\u7bc4\u4f8b": [[188, "bad-file-descriptor-error-example"]], "\u6a94\u6848\u683c\u5f0f": [[217, "file-formats"]], "\u6a94\u6848\u7269\u4ef6 (File Objects)": [[24, "file-objects"]], "\u6a94\u6848\u7269\u4ef6\u7684 method": [[446, "methods-of-file-objects"]], "\u6a94\u6848\u8207\u76ee\u9304\u5b58\u53d6": [[219, "file-and-directory-access"]], "\u6a94\u6848\u8f38\u5165": [[437, "file-input"]], "\u6aa2\u67e5\u7b26\u865f\u8868": [[351, "examining-symbol-tables"]], "\u6b0a\u6756\u61c9\u7576\u4f7f\u7528\u591a\u5c11\u500b\u4f4d\u5143\u7d44\uff1f": [[326, "how-many-bytes-should-tokens-use"]], "\u6b63\u898f\u8868\u793a\u5f0f\u8a9e\u6cd5": [[319, "regular-expression-syntax"]], "\u6b77\u53f2": [[107, "history"]], "\u6bd4\u8f03\u51fd\u5f0f (comparison functions)": [[108, "comparison-functions"]], "\u6bd4\u8f03\u904b\u7b97": [[344, "comparisons"]], "\u6c92\u6709\u842c\u7528\u5b57\u5143 (wildcard) \u7684\u884c\u70ba": [[472, "behavior-without-the-wildcard"]], "\u6cbf\u9769\u8207\u6388\u6b0a": [[426, "history-and-license"]], "\u6cdb\u578b": [[386, "generics"]], "\u6d41\u7a0b\u63a7\u5236": [[122, "control-flow"]], "\u6d6e\u9ede\u6578\u7684\u9644\u52a0 methods": [[344, "additional-methods-on-float"]], "\u6d6e\u9ede\u6578\u904b\u7b97\uff1a\u554f\u984c\u8207\u9650\u5236": [[444, "floating-point-arithmetic-issues-and-limitations"]], "\u6d6e\u9ede\u6578\uff08Floating Point\uff09\u7269\u4ef6": [[25, "floating-point-objects"]], "\u6df1\u5165\u4e86\u89e3\u51fd\u5f0f\u5b9a\u7fa9": [[441, "more-on-defining-functions"]], "\u6df1\u5165\u4e86\u89e3\u689d\u4ef6 (Condition)": [[442, "more-on-conditions"]], "\u6df1\u5165\u4e86\u89e3\u6a21\u7d44": [[450, "more-on-modules"]], "\u6df1\u5165\u4e86\u89e3\u6d41\u7a0b\u63a7\u5236": [[441, "more-control-flow-tools"]], "\u6dfa\u5617\u6ecb\u5473": [[439, "whetting-your-appetite"]], "\u70ba\u4ec0\u9ebc -22 // 10 \u56de\u50b3 -3\uff1f": [[85, "why-does-22-10-return-3"]], "\u70ba\u4ec0\u9ebc Python \u4f7f\u7528\u7e2e\u6392\u5c07\u9673\u8ff0\u5f0f\u9032\u884c\u5206\u7d44\uff1f": [[78, "why-does-python-use-indentation-for-grouping-of-statements"]], "\u70ba\u4ec0\u9ebc Python \u5167\u6c92\u6709 switch \u6216 case \u9673\u8ff0\u5f0f\uff1f": [[78, "why-isn-t-there-a-switch-or-case-statement-in-python"]], "\u70ba\u4ec0\u9ebc Python \u5b57\u4e32\u4e0d\u53ef\u8b8a\u52d5\uff1f": [[78, "why-are-python-strings-immutable"]], "\u70ba\u4ec0\u9ebc Python \u6709\u6642\u9700\u8981\u9019\u9ebc\u9577\u7684\u6642\u9593\u624d\u80fd\u958b\u59cb\uff1f": [[86, "why-does-python-sometimes-take-so-long-to-start"]], "\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a?": [[83, "why-is-python-installed-on-my-machine"]], "\u70ba\u4ec0\u9ebc\u6211\u6703\u5f9e\u7c21\u55ae\u7684\u6578\u5b78\u904b\u7b97\u5f97\u5230\u5947\u602a\u7684\u7d50\u679c\uff1f": [[78, "why-am-i-getting-strange-results-with-simple-arithmetic-operations"]], "\u70ba\u4ec0\u9ebc\u66f4\u6539 list 'y' \u4e5f\u6703\u66f4\u6539 list 'x'\uff1f": [[85, "why-did-changing-list-y-also-change-list-x"]], "\u70ba\u4ec0\u9ebc\u7576\u8b8a\u6578\u6709\u503c\u6642\uff0c\u6211\u4ecd\u5f97\u5230\u932f\u8aa4\u8a0a\u606f UnboundLocalError\uff1f": [[85, "why-am-i-getting-an-unboundlocalerror-when-the-variable-has-a-value"]], "\u70ba\u4ec0\u9ebc\u8981\u53d6\u540d\u70ba Python\uff1f": [[80, "why-is-it-called-python"]], "\u70ba\u4f55 CPython \u4e0d\u4f7f\u7528\u66f4\u591a\u50b3\u7d71\u7684\u5783\u573e\u56de\u6536\u6a5f\u5236\uff1f": [[78, "why-doesn-t-cpython-use-a-more-traditional-garbage-collection-scheme"]], "\u70ba\u4f55 Python \u5141\u8a31\u5728\u4e32\u5217\u548c\u5143\u7d44\u672b\u7aef\u52a0\u4e0a\u9017\u865f\uff1f": [[78, "why-does-python-allow-commas-at-the-end-of-lists-and-tuples"]], "\u70ba\u4f55 Python \u5c0d\u65bc\u4e00\u4e9b\u529f\u80fd\u5be6\u4f5c\u4f7f\u7528\u65b9\u6cd5\uff08\u50cf\u662f list.index()\uff09\uff0c\u53e6\u4e00\u4e9b\u4f7f\u7528\u51fd\u5f0f\uff08\u50cf\u662f len(list)\uff09\uff1f": [[78, "why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list"]], "\u70ba\u4f55 Python \u6c92\u6709\u5c6c\u6027\u8ce6\u503c\u7684 with \u9673\u8ff0\u5f0f\uff1f": [[78, "why-doesn-t-python-have-a-with-statement-for-attribute-assignments"]], "\u70ba\u4f55 if\u3001while\u3001def\u3001class \u9673\u8ff0\u5f0f\u88e1\u9700\u8981\u5192\u865f\uff1f": [[78, "why-are-colons-required-for-the-if-while-def-class-statements"]], "\u70ba\u4f55 join() \u662f\u5b57\u4e32\u65b9\u6cd5\u800c\u975e\u4e32\u5217 (list) \u6216\u5143\u7d44 (tuple) \u65b9\u6cd5\uff1f": [[78, "why-is-join-a-string-method-instead-of-a-list-or-tuple-method"]], "\u70ba\u4f55 lambda \u904b\u7b97\u5f0f\u4e0d\u80fd\u5305\u542b\u9673\u8ff0\u5f0f\uff1f": [[78, "why-can-t-lambda-expressions-contain-statements"]], "\u70ba\u4f55 list.sort() \u4e0d\u662f\u56de\u50b3\u6392\u5e8f\u904e\u7684\u4e32\u5217\uff1f": [[78, "why-doesn-t-list-sort-return-the-sorted-list"]], "\u70ba\u4f55\u300cself\u300d\u5728\u65b9\u6cd5 (method) \u5b9a\u7fa9\u548c\u547c\u53eb\u6642\u4e00\u5b9a\u8981\u660e\u78ba\u4f7f\u7528\uff1f": [[78, "why-must-self-be-used-explicitly-in-method-definitions-and-calls"]], "\u70ba\u4f55\u4e0d\u80fd\u5728\u76f4\u8b6f\u5668\u4e0a\u6a21\u64ec\u57f7\u884c\u7dd2\uff0c\u800c\u8981\u4f7f\u7528\u4f5c\u696d\u7cfb\u7d71\u7684\u7279\u5b9a\u5be6\u4f5c\u65b9\u5f0f\uff1f": [[78, "can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation"]], "\u70ba\u4f55\u5b57\u5178\u7684\u9375\u4e00\u5b9a\u662f\u4e0d\u53ef\u8b8a\u7684\uff1f": [[78, "why-must-dictionary-keys-be-immutable"]], "\u70ba\u4f55\u6211\u4e0d\u80fd\u5728\u904b\u7b97\u5f0f (expression) \u4e2d\u4f7f\u7528\u6307\u6d3e\u904b\u7b97\uff1f": [[78, "why-can-t-i-use-an-assignment-in-an-expression"]], "\u70ba\u4f55\u6c92\u6709 goto \u8a9e\u6cd5\uff1f": [[78, "why-is-there-no-goto"]], "\u70ba\u4f55\u6d6e\u9ede\u6578\u904b\u7b97\u5982\u6b64\u4e0d\u7cbe\u78ba\uff1f": [[78, "why-are-floating-point-calculations-so-inaccurate"]], "\u70ba\u4f55\u7522\u751f\u5668 (generator) \u4e0d\u652f\u63f4 with \u9673\u8ff0\u5f0f\uff1f": [[78, "why-don-t-generators-support-the-with-statement"]], "\u70ba\u4f55\u7d14\u5b57\u4e32 (r-string) \u4e0d\u80fd\u4ee5\u53cd\u659c\u7dda\u7d50\u5c3e\uff1f": [[78, "why-can-t-raw-strings-r-strings-end-with-a-backslash"]], "\u70ba\u4f55\u8981\u628a\u5143\u7d44 (tuple) \u548c\u4e32\u5217 (list) \u5206\u6210\u5169\u500b\u8cc7\u6599\u578b\u614b\uff1f": [[78, "why-are-there-separate-tuple-and-list-data-types"]], "\u7248\u6b0a\u5ba3\u544a": [[69, "copyright"]], "\u7269\u4ef6": [[85, "objects"]], "\u7269\u4ef6\u3001\u578b\u5225\u548c\u53c3\u7167\u8a08\u6578": [[35, "objects-types-and-reference-counts"]], "\u7269\u4ef6\u5354\u5b9a": [[49, "object-protocol"]], "\u7269\u4ef6\u547c\u53eb API": [[10, "object-calling-api"]], "\u7279\u5225\u578b\u5225": [[386, "special-types"]], "\u7279\u5225\u578b\u5225\u539f\u8a9e (primitive)": [[386, "special-typing-primitives"]], "\u7279\u6b8a\u53c3\u6578": [[441, "special-parameters"]], "\u7279\u6b8a\u53ef\u5beb\u5c6c\u6027": [[428, "special-writable-attributes"], [428, "index-65"]], "\u7279\u6b8a\u552f\u8b80\u5c6c\u6027": [[428, "special-read-only-attributes"], [428, "index-58"], [428, "index-64"]], "\u7372\u53d6 HTTP \u6a19\u982d": [[136, "get-http-headers"]], "\u7372\u53d6\u4e8b\u4ef6\u8ff4\u5708": [[130, "obtaining-the-event-loop"]], "\u7372\u5f97\u4e26\u5b89\u88dd Python \u7684\u6700\u65b0\u7248\u672c": [[460, "getting-and-installing-the-latest-version-of-python"]], "\u73fe\u5728\u53ef\u4ee5\u4f86\u5b78\u7fd2\u4e9b\u4ec0\u9ebc\uff1f": [[454, "what-now"]], "\u74b0\u5883\u8b8a\u6578": [[455, "environment-variables"]], "\u7522\u751f\u5668 (Generator)": [[440, "generators"]], "\u7522\u751f\u5668 (Generator) \u7269\u4ef6": [[29, "generator-objects"]], "\u7522\u751f\u5668\u904b\u7b97\u5f0f": [[440, "generator-expressions"]], "\u7522\u751f\u6b0a\u6756\uff08token\uff09": [[326, "generating-tokens"]], "\u7522\u751f\u7684\u6a94\u6848": [[456, "generated-files"]], "\u7522\u751f\u7b26\u865f\u8868": [[351, "generating-symbol-tables"]], "\u7528 pip \u7ba1\u7406\u5957\u4ef6": [[453, "managing-packages-with-pip"]], "\u7528\u65bc PYTHON 0.9.0 \u81f3 1.2 \u7684 CWI \u6388\u6b0a\u5408\u7d04": [[426, "cwi-license-agreement-for-python-0-9-0-through-1-2"]], "\u7528\u65bc PYTHON 1.6.1 \u7684 CNRI \u6388\u6b0a\u5408\u7d04": [[426, "cnri-license-agreement-for-python-1-6-1"]], "\u7528\u65bc PYTHON 2.0 \u7684 BEOPEN.COM \u6388\u6b0a\u5408\u7d04": [[426, "beopen-com-license-agreement-for-python-2-0"]], "\u7528\u65bc PYTHON 3.12.3 \u7684 PSF \u6388\u6b0a\u5408\u7d04": [[426, "psf-license-agreement-for-python-release"]], "\u7528\u65bc PYTHON 3.12.3 \u8aaa\u660e\u6587\u4ef6\u5167\u7a0b\u5f0f\u78bc\u7684 ZERO-CLAUSE BSD \u6388\u6b0a": [[426, "zero-clause-bsd-license-for-code-in-the-python-release-documentation"]], "\u7528\u65bc Unicode \u7de8\u78bc\u932f\u8aa4\u8655\u7406\u7a0b\u5f0f\u7684\u8a3b\u518a API": [[14, "registry-api-for-unicode-encoding-error-handlers"]], "\u7528\u65bc\u6a21\u64ec\u7684\u8499\u5730\u5361\u7f85 (Monte Carlo) \u8f38\u5165": [[343, "monte-carlo-inputs-for-simulations"]], "\u7528\u65bc\u7a0b\u5f0f\u78bc\u7269\u4ef6\u7684\u65b9\u6cd5": [[428, "methods-on-code-objects"]], "\u7528\u6cd5": [[235, "usage"]], "\u7528\u6cd5\u7bc4\u4f8b": [[149, "examples-of-usage"], [234, "examples-of-usage"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1adate": [[183, "examples-of-usage-date"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1adatetime": [[183, "examples-of-usage-datetime"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1atime": [[183, "examples-of-usage-time"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1atimedelta": [[183, "examples-of-usage-timedelta"]], "\u7528\u8a3b\u89e3\u4f7f\u4f8b\u5916\u66f4\u8a73\u7d30": [[443, "enriching-exceptions-with-notes"]], "\u7531 site module\uff08\u6a21\u7d44\uff09\u6240\u6dfb\u589e\u7684\u5e38\u6578": [[168, "constants-added-by-the-site-module"]], "\u7576 CPython \u7d50\u675f\u6642\uff0c\u70ba\u4f55\u6240\u6709\u7684\u8a18\u61b6\u9ad4\u4e0d\u6703\u88ab\u91cb\u653e\uff1f": [[78, "why-isn-t-all-memory-freed-when-cpython-exits"]], "\u7576\u521d\u70ba\u4ec0\u9ebc Python \u6703\u88ab\u5275\u9020\u51fa\u4f86\uff1f": [[80, "why-was-python-created-in-the-first-place"]], "\u7576\u5b89\u88dd\u6642\u4e0d\u4e0b\u8f09": [[461, "installing-without-downloading"]], "\u7576\u6211\u7de8\u8f2f\u9700\u8981\u5f15\u5165\u7684\u6a21\u7d44\u4e26\u91cd\u65b0\u5f15\u5165\u5b83\u6642\uff0c\u66f4\u52d5\u6c92\u6709\u53cd\u61c9\u51fa\u4f86\u3002\u70ba\u4ec0\u9ebc\u6703\u9019\u6a23\uff1f": [[85, "when-i-edit-an-imported-module-and-reimport-it-the-changes-don-t-show-up-why-does-this-happen"]], "\u758a\u4ee3\u5668 (Iterator)": [[440, "iterators"]], "\u758a\u4ee3\u5668\u5354\u8b70": [[36, "iterator-protocol"]], "\u758a\u4ee3\u5668\u578b\u5225": [[344, "iterator-types"]], "\u758a\u4ee3\u5668\uff08Iterator\uff09\u7269\u4ef6": [[37, "iterator-objects"]], "\u767c\u5e03 Python \u6a21\u7d44": [[70, "distributing-python-modules"]], "\u767c\u5e03\u91cd\u9ede\u6458\u8981": [[473, "summary-release-highlights"], [474, "summary-release-highlights"]], "\u767c\u884c Python \u61c9\u7528\u7a0b\u5f0f": [[459, "distributing-python-applications"]], "\u76e3\u807d\u6a94\u6848\u63cf\u8ff0\u5668\u4ee5\u9032\u884c\u8b80\u53d6\u4e8b\u4ef6": [[126, "watch-a-file-descriptor-for-read-events"]], "\u76e3\u8996\u6a94\u6848\u63cf\u8ff0\u5668": [[126, "watching-file-descriptors"]], "\u76ee\u9304": [[78, "id1"], [79, "id1"], [80, "id1"], [81, "id1"], [84, "id1"], [85, "id1"], [86, "id1"], [93, "id1"], [247, "menus"]], "\u76f4\u63a5 API \u51fd\u5f0f": [[8, "direct-api-functions"]], "\u76f4\u63a5\u4f7f\u7528 socket \u7269\u4ef6": [[126, "working-with-socket-objects-directly"]], "\u76f4\u8b6f\u5668\u7684\u8b8a\u66f4\u8207\u4fee\u6b63": [[464, "interpreter-changes-and-fixes"]], "\u76f4\u8b6f\u5668\u8207\u5b83\u7684\u74b0\u5883": [[448, "the-interpreter-and-its-environment"]], "\u76f8\u4e92\u885d\u7a81\u7684\u9078\u9805": [[89, "conflicting-options"]], "\u76f8\u5bb9\u6027\u9078\u9805": [[376, "compatibility-options"]], "\u76f8\u95dc\u9023\u7d50": [[464, "related-links"]], "\u771f\u503c\u6aa2\u6e2c": [[344, "truth-value-testing"]], "\u77ed\u9078\u9805": [[89, "short-options"]], "\u79c1\u6709\u8b8a\u6578": [[440, "private-variables"]], "\u79fb\u690d Python \u7a0b\u5f0f\u78bc": [[476, "porting-python-code"]], "\u79fb\u690d\u5230 Python 3.10": [[472, "porting-to-python-3-10"], [472, "id2"]], "\u79fb\u690d\u5230 Python 3.3": [[476, "porting-to-python-3-3"]], "\u79fb\u690d\u81f3 Python 3.11": [[473, "porting-to-python-3-11"], [473, "whatsnew311-c-api-porting"]], "\u7a0b\u5f0f\u5316\u4ecb\u9762": [[300, "programmatic-interface"]], "\u7a0b\u5f0f\u6846\u67b6": [[222, "program-frameworks"]], "\u7a0b\u5f0f\u78bc\u7269\u4ef6": [[13, "code-objects"]], "\u7a0b\u5f0f\u78bc\u7684\u6e05\u9664": [[477, "code-cleanups"]], "\u7a0b\u5f0f\u958b\u767c\u5e38\u898b\u554f\u7b54\u96c6": [[85, "programming-faq"]], "\u7a3d\u6838\u4e8b\u4ef6\u8868": [[142, "audit-events-table"]], "\u7a69\u5b9a ABI": [[57, "stable-abi"]], "\u7a69\u5b9a\u7684\u61c9\u7528\u7a0b\u5f0f\u4e8c\u9032\u4f4d\u4ecb\u9762": [[57, "stable-application-binary-interface"]], "\u7bc0\u9ede (Node) \u985e\u5225": [[122, "node-classes"]], "\u7bc4\u4f8b": [[34, "example"], [42, "examples"], [63, "examples"], [98, "examples"], [103, "examples"], [120, "example"], [126, "examples"], [133, "examples"], [134, "examples"], [136, "examples"], [137, "examples"], [147, "examples"], [172, "example"], [173, "examples"], [175, "examples"], [214, "example"], [235, "examples"], [240, "examples"], [242, "examples"], [243, "examples"], [244, "example"], [250, "examples"], [270, "examples"], [271, "examples"], [283, "examples"], [299, "example"], [299, "examples"], [304, "examples"], [307, "example"], [309, "example"], [314, "example"], [318, "examples"], [320, "example"], [329, "examples"], [330, "example"], [333, "examples"], [337, "example"], [338, "examples"], [341, "examples"], [347, "examples"], [356, "examples"], [358, "examples"], [360, "examples"], [361, "example"], [367, "examples"], [378, "examples"], [379, "examples"], [382, "examples"], [398, "example"], [402, "example"], [407, "examples"], [413, "example"], [413, "id3"], [421, "examples"], [423, "examples"]], "\u7bc4\u4f8b\u8207\u9326\u56ca\u5999\u8a08": [[343, "examples-and-recipes"]], "\u7c21\u4ecb": [[35, "introduction"], [95, "introduction"], [106, "introduction"], [110, "introduction"], [151, "introduction"], [250, "introduction"], [257, "introduction"], [283, "introduction"], [329, "introduction"], [434, "introduction"], [453, "introduction"], [462, "introduction"], [463, "introduction"], [464, "introduction"]], "\u7c21\u55ae\u6a21\u5f0f\uff1a\u8207\u5b57\u9762\u503c\u5339\u914d": [[472, "simple-pattern-match-to-a-literal"]], "\u7c21\u55ae\u7bc4\u4f8b": [[356, "simple-example"], [388, "basic-example"]], "\u7c21\u55ae\u9673\u8ff0\u5f0f": [[436, "simple-statements"]], "\u7c3f\u8a18\u51fd\u5f0f (bookkeeping functions)": [[318, "bookkeeping-functions"]], "\u7cfb\u7d71\u51fd\u5f0f": [[59, "system-functions"]], "\u7d14\u8def\u5f91": [[296, "pure-paths"]], "\u7d44\u5408\u4f4d\u7f6e\u5f15\u6578\u548c\u53ef\u9078\u5f15\u6578": [[89, "combining-positional-and-optional-arguments"]], "\u7d50\u675f\u9023\u7dda": [[107, "disconnecting"]], "\u7d50\u8ad6": [[89, "conclusion"]], "\u7d93\u5178\u6a5f\u7387\u554f\u984c": [[343, "classic-probability-problems"]], "\u7d9c\u5408\u904b\u7b97\u5f0f (comprehensions)": [[122, "comprehensions"]], "\u7db2\u8def (Network)/\u7db2\u969b\u7db2\u8def (Internet) \u7a0b\u5f0f": [[84, "network-internet-programming"]], "\u7db2\u8def\u5354\u5b9a (Internet protocols) \u53ca\u652f\u63f4": [[256, "internet-protocols-and-support"]], "\u7db2\u8def\u5b58\u53d6": [[451, "internet-access"]], "\u7db2\u969b\u7db2\u8def\u8cc7\u6599\u8655\u7406": [[285, "internet-data-handling"]], "\u7de8\u5beb\u6a19\u6e96": [[35, "coding-standards"]], "\u7de8\u89e3\u78bc\u5668\u67e5\u627e API": [[14, "codec-lookup-api"]], "\u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u652f\u63f4\u51fd\u5f0f": [[14, "codec-registry-and-support-functions"]], "\u7de8\u8b6f Python \u5728 Windows": [[461, "compiling-python-on-windows"]], "\u7de8\u8b6f\u5668\u65d7\u6a19": [[122, "compiler-flags"], [456, "compiler-flags"]], "\u7de8\u8f2f\u5668\u8207 IDE": [[457, "editors-and-ides"]], "\u7de9\u885d\u5354\u5b9a (Buffer Protocol)": [[7, "buffer-protocol"]], "\u7e3d\u652c": [[99, null]], "\u7e3d\u89bd": [[42, "overview"], [258, "overview"]], "\u7e7c\u627f": [[181, "inheritance"]], "\u7e7c\u627f (Inheritance)": [[440, "inheritance"]], "\u7e7c\u627f\u81ea\u5167\u5efa\u7684\u4f8b\u5916": [[213, "inheriting-from-built-in-exceptions"]], "\u80cc\u666f": [[100, "background"], [292, "background"]], "\u81ea\u8a02 Python \u76f4\u8b6f\u5668": [[180, "custom-python-interpreters"]], "\u81ea\u8a02\u51fd\u5f0f": [[428, "user-defined-functions"]], "\u81ea\u8a02\u5b57\u4e32\u683c\u5f0f": [[345, "custom-string-formatting"]], "\u81f4\u8b1d": [[109, "acknowledgements"], [230, "acknowledgements"], [462, "acknowledgements"], [463, "acknowledgements"], [464, "acknowledgements"], [465, "acknowledgements"], [466, "acknowledgements"], [467, "acknowledgements"], [468, "acknowledgements"], [469, "acknowledgements"]], "\u8207 Python \u76f8\u95dc\u7684\u8def\u5f91\u548c\u6a94\u6848": [[460, "python-related-paths-and-files"]], "\u8207 os \u6a21\u7d44\u88e1\u7684\u5de5\u5177\u7684\u5c0d\u61c9\u95dc\u4fc2": [[296, "correspondence-to-tools-in-the-os-module"]], "\u8207\u578b\u5225\u63d0\u793a\u76f8\u95dc\u7684\u65b0\u529f\u80fd": [[472, "new-features-related-to-type-hints"]], "\u820a\u5f0f\u7de9\u885d\u5354\u5b9a (Buffer Protocol)": [[48, "old-buffer-protocol"]], "\u8655\u7406\u4f8b\u5916": [[443, "handling-exceptions"]], "\u8655\u7406\u932f\u8aa4 (Bug)": [[1, "dealing-with-bugs"]], "\u865b\u64ec\u4e8b\u4ef6": [[376, "id4"], [376, "id8"]], "\u865b\u64ec\u74b0\u5883\u5982\u4f55\u904b\u4f5c": [[399, "how-venvs-work"]], "\u865b\u64ec\u74b0\u5883\u8207\u5957\u4ef6": [[453, "virtual-environments-and-packages"]], "\u865b\u64ec\u74b0\u5883\uff08Virtual environment\uff09": [[461, "virtual-environments"]], "\u884c\u5167 Python \u51fd\u5f0f\u547c\u53eb": [[473, "inlined-python-function-calls"]], "\u884c\u7a0b\u53c3\u6578": [[293, "process-parameters"]], "\u884c\u7a0b\u63a7\u5236": [[59, "process-control"]], "\u884c\u7a0b\u7ba1\u7406": [[293, "process-management"]], "\u8853\u8a9e\u8868": [[87, "glossary"]], "\u8868\u793a\u6cd5\u8aa4\u5dee (Representation Error)": [[444, "representation-error"]], "\u88ab\u53d6\u4ee3\u7684\u64cd\u4f5c\u78bc (opcode)": [[473, "replaced-opcodes"]], "\u88ab\u6536\u9304\u8edf\u9ad4\u7684\u6388\u6b0a\u8207\u81f4\u8b1d": [[426, "licenses-and-acknowledgements-for-incorporated-software"]], "\u88dc\u5145\u8aaa\u660e": [[440, "odds-and-ends"]], "\u88dd\u98fe-\u6392\u5e8f-\u79fb\u9664\u88dd\u98fe (decorate-sort-undecorate)": [[108, "decorate-sort-undecorate"]], "\u8907\u5408\u9673\u8ff0\u5f0f": [[427, "compound-statements"]], "\u8907\u6578\u7269\u4ef6": [[15, "complex-number-objects"]], "\u8907\u96dc\u6a21\u5f0f\u548c\u842c\u7528\u5b57\u5143": [[472, "complex-patterns-and-the-wildcard"]], "\u89e3\u91cb": [[340, "explanation"]], "\u8a18\u61b6\u9ad4\u7ba1\u7406": [[42, "memory-management"]], "\u8a2d\u5b9a": [[459, "configuration"]], "\u8a2d\u5b9a Python": [[461, "configuring-python"]], "\u8a2d\u5b9a SIGINT \u548c SIGTERM \u7684\u8a0a\u865f\u8655\u7406\u7a0b\u5f0f": [[126, "set-signal-handlers-for-sigint-and-sigterm"]], "\u8a2d\u5b9a\u56de\u50b3\u503c\u548c\u5c6c\u6027": [[390, "setting-return-values-and-attributes"]], "\u8a2d\u5b9a\u8173\u672c": [[456, "configure-script"]], "\u8a2d\u5b9a\u9078\u9805": [[456, "configure-options"]], "\u8a2d\u8a08\u548c\u6b77\u53f2\u5e38\u898b\u554f\u7b54\u96c6": [[78, "design-and-history-faq"]], "\u8a3b\u518a\u4e00\u500b\u4f7f\u7528\u4e32\u6d41\u4f86\u7b49\u5f85\u8cc7\u6599\u7684\u958b\u653e socket": [[136, "register-an-open-socket-to-wait-for-data-using-streams"]], "\u8a3b\u89e3": [[110, "footnotes"], [348, "notes"]], "\u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10": [[88, "annotations-best-practices"]], "\u8a3b\u91cb callable \u7269\u4ef6": [[386, "annotating-callable-objects"]], "\u8a3b\u91cb\u5143\u7d44 (tuple)": [[386, "annotating-tuples"]], "\u8a5e\u6cd5\u5206\u6790": [[435, "lexical-analysis"]], "\u8a72 patch \u4f55\u8655": [[389, "where-to-patch"]], "\u8a8d\u8b49\u8655\u7406": [[341, "certificate-handling"]], "\u8a9e\u5883\u5efa\u7acb": [[341, "context-creation"]], "\u8a9e\u6cd5\u548c\u64cd\u4f5c": [[472, "syntax-and-operations"]], "\u8a9e\u6cd5\u8b8a\u66f4": [[470, "changed-syntax"]], "\u8a9e\u6cd5\u8b8a\u66f4\u6982\u8981": [[470, "overview-of-syntax-changes"]], "\u8a9e\u6cd5\u932f\u8aa4 (Syntax Error)": [[443, "syntax-errors"]], "\u8a9e\u8a00/\u5167\u5efa": [[473, "language-builtins"]], "\u8aaa\u660e\u6587\u4ef6\u5b57\u4e32 (Documentation Strings)": [[441, "documentation-strings"]], "\u8aaa\u660e\u6587\u4ef6\u7684\u932f\u8aa4": [[1, "documentation-bugs"]], "\u8b66\u544a": [[213, "warnings"]], "\u8b80\u53d6\u5668\u7269\u4ef6": [[175, "reader-objects"]], "\u8b80\u5beb\u6a94\u6848": [[446, "reading-and-writing-files"]], "\u8b8a\u6578": [[122, "variables"]], "\u8cc7\u6599 marshal \u7684\u652f\u63f4": [[41, "data-marshalling-support"]], "\u8cc7\u6599\u578b\u5225": [[182, "data-types"], [211, "data-types"]], "\u8cc7\u6599\u58d3\u7e2e": [[451, "data-compression"]], "\u8cc7\u6599\u58d3\u7e2e\u8207\u4fdd\u5b58": [[119, "data-compression-and-archiving"]], "\u8cc7\u6599\u5eab": [[84, "databases"]], "\u8cc7\u6599\u6301\u4e45\u6027 (Data Persistence)": [[298, "data-persistence"]], "\u8cc7\u6599\u6a21\u578b": [[428, "data-model"]], "\u8cc7\u6599\u7d50\u69cb": [[442, "data-structures"]], "\u8de8\u5e73\u53f0": [[303, "cross-platform"]], "\u8df3\u812b\u5e8f\u5217": [[435, "escape-sequences"]], "\u8edf\u95dc\u9375\u5b57": [[435, "soft-keywords"]], "\u8edf\u9ad4\u5c01\u88dd\u8207\u767c\u5e03": [[192, "software-packaging-and-distribution"]], "\u8edf\u9ad4\u6cbf\u9769": [[426, "history-of-the-software"]], "\u8f14\u52a9\u51fd\u5f0f": [[345, "helper-functions"], [389, "helpers"]], "\u8f38\u5165\u548c\u8f38\u51fa": [[446, "input-and-output"]], "\u8f38\u5165\u8207\u8f38\u51fa": [[84, "input-and-output"]], "\u8f38\u51fa\u683c\u5f0f\u5316 (Output Formatting)": [[452, "output-formatting"]], "\u8f49\u63db\u5230\u6975\u5ea7\u6a19\u548c\u5f9e\u6975\u5ea7\u6a19\u505a\u8f49\u63db": [[154, "conversions-to-and-from-polar-coordinates"]], "\u8f49\u63db\u8868": [[379, "conversion-table"]], "\u8fd1\u4f3c\u4e8c\u9805\u5206\u5e03": [[343, "approximating-binomial-distributions"]], "\u8ff4\u5708\u5167\u7684 break \u548c continue \u9673\u8ff0\u5f0f\u53ca else \u5b50\u53e5": [[441, "break-and-continue-statements-and-else-clauses-on-loops"]], "\u8ff4\u5708\u6280\u5de7": [[442, "looping-techniques"]], "\u8ffd\u8e64\u547c\u53eb\u9806\u5e8f\u8207\u66f4\u7c21\u6f54\u7684\u547c\u53eb\u65b7\u8a00": [[390, "tracking-order-of-calls-and-less-verbose-call-assertions"]], "\u8ffd\u8e64\u6240\u6709\u547c\u53eb": [[390, "tracking-all-calls"]], "\u900f\u904e GUI \u57f7\u884c\u8173\u672c": [[459, "running-scripts-with-a-gui"]], "\u900f\u904e mock \u5f15\u767c\u4f8b\u5916": [[390, "raising-exceptions-with-mocks"]], "\u901a\u7528\u4f5c\u696d\u7cfb\u7d71\u670d\u52d9": [[118, "generic-operating-system-services"]], "\u901a\u7528\u5c6c\u6027": [[296, "general-properties"]], "\u901a\u7528\u7269\u4ef6\u7d50\u69cb": [[58, "common-object-structures"]], "\u901a\u7528\u9805\u76ee\u8207\u88dd\u98fe\u5668": [[211, "utilities-and-decorators"]], "\u9032\u4e00\u6b65\u4e86\u89e3 List\uff08\u4e32\u5217\uff09": [[442, "more-on-lists"]], "\u904b\u7b97\u5b50": [[296, "operators"]], "\u904b\u7b97\u5b50\u8207\u51fd\u5f0f\u9593\u7684\u5c0d\u6620": [[291, "mapping-operators-to-functions"]], "\u904b\u7b97\u5f0f": [[122, "expressions"], [430, "expressions"]], "\u904b\u7b97\u5f0f\u8f38\u5165": [[437, "expression-input"]], "\u904b\u884c\u4e00\u500b asyncio \u7a0b\u5f0f": [[135, "running-an-asyncio-program"]], "\u904b\u884c\u5b50\u884c\u7a0b": [[126, "running-subprocesses"]], "\u905e\u8ff4\u63a7\u5236": [[10, "recursion-control"]], "\u9077\u79fb\u5ef6\u4f38\u6a21\u7d44\u5230 Python 3": [[91, "porting-extension-modules-to-python-3"]], "\u9078\u64c7\u6027\u52a0\u5165\u7684\u7de8\u78bc\u8b66\u544a": [[258, "opt-in-encodingwarning"]], "\u9078\u9805": [[376, "options"], [376, "id1"], [376, "id3"], [376, "id5"], [376, "id6"], [376, "id7"]], "\u90e8\u5206 mocking": [[390, "partial-mocking"]], "\u914d\u7f6e Python": [[456, "configure-python"]], "\u932f\u8aa4\u548c\u4f8b\u5916": [[443, "errors-and-exceptions"]], "\u932f\u8aa4\u8655\u7406": [[438, "error-handling"]], "\u932f\u8aa4\u8655\u7406 API": [[126, "error-handling-api"]], "\u932f\u8aa4\u8f38\u51fa\u91cd\u65b0\u5c0e\u5411\u8207\u7a0b\u5f0f\u7d42\u6b62": [[451, "error-output-redirection-and-program-termination"]], "\u9375\u51fd\u5f0f (key functions)": [[108, "key-functions"]], "\u958b\u59cb": [[461, "getting-started"]], "\u958b\u59cb\u8b93\u81ea\u5df1\u8ca2\u737b Python": [[1, "getting-started-contributing-to-python-yourself"]], "\u958b\u767c GUI \u7a0b\u5f0f": [[459, "gui-programming"]], "\u958b\u767c\u5de5\u5177": [[187, "development-tools"]], "\u9593\u594f\u66f2\uff1a\u7a0b\u5f0f\u78bc\u98a8\u683c (Coding Style)": [[441, "intermezzo-coding-style"]], "\u95dc\u65bc": [[473, "about"]], "\u95dc\u65bc Reproducibility\uff08\u5fa9\u73fe\u6027\uff09\u7684\u6ce8\u610f\u4e8b\u9805": [[318, "notes-on-reproducibility"]], "\u95dc\u65bc\u540d\u7a31\u8207\u7269\u4ef6\u7684\u4e00\u6bb5\u8a71": [[440, "a-word-about-names-and-objects"]], "\u95dc\u65bc\u5b58\u53d6\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f\u4f7f\u7528 Python \u7684\u5408\u7d04\u689d\u6b3e": [[426, "terms-and-conditions-for-accessing-or-otherwise-using-python"]], "\u95dc\u65bc\u9019\u4e9b\u8aaa\u660e\u6587\u4ef6": [[0, "about-these-documents"]], "\u95dc\u9375\u5b57": [[435, "keywords"]], "\u95dc\u9375\u5b57\u5f15\u6578": [[441, "keyword-arguments"]], "\u95dc\u9375\u8853\u8a9e": [[111, "key-terms"]], "\u9644\u9304": [[438, "appendix"]], "\u9650\u5236": [[308, "limitations"]], "\u9664\u932f\u5efa\u7f6e": [[35, "debugging-builds"]], "\u9664\u932f\u6a21\u5f0f": [[125, "debug-mode"]], "\u9664\u932f\u6a21\u5f0f\u8b8a\u6578": [[455, "debug-mode-variables"]], "\u9664\u932f\u8207\u6548\u80fd\u5206\u6790": [[185, "debugging-and-profiling"]], "\u9673\u8ff0\u5f0f": [[122, "statements"]], "\u9694\u96e2\u64f4\u5145\u6a21\u7d44": [[100, "isolating-extension-modules"]], "\u96a8\u610f\u7684\u5099\u8a3b": [[440, "random-remarks"]], "\u96a8\u6a5f\u7522\u751f": [[341, "random-generation"]], "\u96c6\u5408 (Sets)": [[442, "sets"]], "\u96c6\u5408\u7269\u4ef6": [[55, "set-objects"]], "\u96d9\u66f2\u51fd\u6578": [[154, "hyperbolic-functions"]], "\u96dc\u6e4a\u6f14\u7b97\u6cd5": [[235, "hash-algorithms"]], "\u96dc\u9805": [[460, "miscellaneous"], [473, "misc"]], "\u96dc\u9805\u8aaa\u660e": [[108, "odds-and-ends"]], "\u96e2\u5ea6 (spread) \u7684\u6e2c\u91cf": [[343, "measures-of-spread"]], "\u96e2\u6563\u5206\u5e03": [[318, "discrete-distributions"]], "\u975c\u614b DTrace \u63a2\u91dd": [[98, "static-dtrace-probes"]], "\u975c\u614b SystemTap \u6a19\u8a18": [[98, "static-systemtap-markers"]], "\u975e\u540c\u6b65 socket \u670d\u52d9": [[426, "asynchronous-socket-services"]], "\u975e\u963b\u585e\u7684 Sockets": [[107, "non-blocking-sockets"]], "\u9810\u5b9a\u7fa9\u7684\u6e05\u7406\u52d5\u4f5c": [[443, "predefined-clean-up-actions"]], "\u9810\u8a2d\u5de5\u5ee0\u51fd\u5f0f": [[181, "default-factory-functions"]], "\u9810\u8a2d\u5f15\u6578\u503c": [[441, "default-argument-values"]], "\u985e\u5225\u7269\u4ef6\u7684\u578b\u5225": [[386, "the-type-of-class-objects"]], "\u985e\u5225\u8207\u51fd\u5f0f": [[255, "classes-and-functions"]], "\u985e\u5225\u8b8a\u6578": [[181, "class-variables"]], "\u985e\u5225\u968e\u5c64": [[258, "class-hierarchy"]], "\u986f\u8457\u6700\u4f73\u5316": [[477, "significant-optimizations"]], "\u9a57\u8b49\u6191\u8b49": [[341, "verifying-certificates"]], "\u9ad8\u968e API": [[33, "high-level-api"], [123, null]], "\u9ad8\u968e API \u7d22\u5f15": [[124, "high-level-api-index"]], "\u9ad8\u968e\u6a21\u7d44\u4ecb\u9762": [[258, "high-level-module-interface"]]}, "docnames": ["about", "bugs", "c-api/abstract", "c-api/allocation", "c-api/apiabiversion", "c-api/arg", "c-api/bool", "c-api/buffer", "c-api/bytearray", "c-api/bytes", "c-api/call", "c-api/capsule", "c-api/cell", "c-api/code", "c-api/codec", "c-api/complex", "c-api/concrete", "c-api/contextvars", "c-api/conversion", "c-api/coro", "c-api/datetime", "c-api/descriptor", "c-api/dict", "c-api/exceptions", "c-api/file", "c-api/float", "c-api/frame", "c-api/function", "c-api/gcsupport", "c-api/gen", "c-api/hash", "c-api/import", "c-api/index", "c-api/init", "c-api/init_config", "c-api/intro", "c-api/iter", "c-api/iterator", "c-api/list", "c-api/long", "c-api/mapping", "c-api/marshal", "c-api/memory", "c-api/memoryview", "c-api/method", "c-api/module", "c-api/none", "c-api/number", "c-api/objbuffer", "c-api/object", "c-api/objimpl", "c-api/perfmaps", "c-api/refcounting", "c-api/reflection", "c-api/sequence", "c-api/set", "c-api/slice", "c-api/stable", "c-api/structures", "c-api/sys", "c-api/tuple", "c-api/type", "c-api/typehints", "c-api/typeobj", "c-api/unicode", "c-api/utilities", "c-api/veryhigh", "c-api/weakref", "contents", "copyright", "distributing/index", "extending/building", "extending/embedding", "extending/extending", "extending/index", "extending/newtypes", "extending/newtypes_tutorial", "extending/windows", "faq/design", "faq/extending", "faq/general", "faq/gui", "faq/index", "faq/installed", "faq/library", "faq/programming", "faq/windows", "glossary", "howto/annotations", "howto/argparse", "howto/clinic", "howto/cporting", "howto/curses", "howto/descriptor", "howto/enum", "howto/functional", "howto/gdb_helpers", "howto/index", "howto/instrumentation", "howto/ipaddress", "howto/isolating-extensions", "howto/logging", "howto/logging-cookbook", "howto/mro", "howto/perf_profiling", "howto/pyporting", "howto/regex", "howto/sockets", "howto/sorting", "howto/unicode", "howto/urllib2", "installing/index", "library/2to3", "library/__future__", "library/__main__", "library/_thread", "library/abc", "library/aifc", "library/allos", "library/archiving", "library/argparse", "library/array", "library/ast", "library/asyncio", "library/asyncio-api-index", "library/asyncio-dev", "library/asyncio-eventloop", "library/asyncio-exceptions", "library/asyncio-extending", "library/asyncio-future", "library/asyncio-llapi-index", "library/asyncio-platforms", "library/asyncio-policy", "library/asyncio-protocol", "library/asyncio-queue", "library/asyncio-runner", "library/asyncio-stream", "library/asyncio-subprocess", "library/asyncio-sync", "library/asyncio-task", "library/atexit", "library/audioop", "library/audit_events", "library/base64", "library/bdb", "library/binary", "library/binascii", "library/bisect", "library/builtins", "library/bz2", "library/calendar", "library/cgi", "library/cgitb", "library/chunk", "library/cmath", "library/cmd", "library/cmdline", "library/code", "library/codecs", "library/codeop", "library/collections", "library/collections.abc", "library/colorsys", "library/compileall", "library/concurrency", "library/concurrent", "library/concurrent.futures", "library/configparser", "library/constants", "library/contextlib", "library/contextvars", "library/copy", "library/copyreg", "library/crypt", "library/crypto", "library/csv", "library/ctypes", "library/curses", "library/curses.ascii", "library/curses.panel", "library/custominterp", "library/dataclasses", "library/datatypes", "library/datetime", "library/dbm", "library/debug", "library/decimal", "library/development", "library/devmode", "library/dialog", "library/difflib", "library/dis", "library/distribution", "library/doctest", "library/email", "library/email.charset", "library/email.compat32-message", "library/email.contentmanager", "library/email.encoders", "library/email.errors", "library/email.examples", "library/email.generator", "library/email.header", "library/email.headerregistry", "library/email.iterators", "library/email.message", "library/email.mime", "library/email.parser", "library/email.policy", "library/email.utils", "library/ensurepip", "library/enum", "library/errno", "library/exceptions", "library/faulthandler", "library/fcntl", "library/filecmp", "library/fileformats", "library/fileinput", "library/filesys", "library/fnmatch", "library/fractions", "library/frameworks", "library/ftplib", "library/functional", "library/functions", "library/functools", "library/gc", "library/getopt", "library/getpass", "library/gettext", "library/glob", "library/graphlib", "library/grp", "library/gzip", "library/hashlib", "library/heapq", "library/hmac", "library/html", "library/html.entities", "library/html.parser", "library/http", "library/http.client", "library/http.cookiejar", "library/http.cookies", "library/http.server", "library/i18n", "library/idle", "library/imaplib", "library/imghdr", "library/importlib", "library/importlib.metadata", "library/importlib.resources", "library/importlib.resources.abc", "library/index", "library/inspect", "library/internet", "library/intro", "library/io", "library/ipaddress", "library/ipc", "library/itertools", "library/json", "library/keyword", "library/language", "library/linecache", "library/locale", "library/logging", "library/logging.config", "library/logging.handlers", "library/lzma", "library/mailbox", "library/mailcap", "library/markup", "library/marshal", "library/math", "library/mimetypes", "library/mm", "library/mmap", "library/modulefinder", "library/modules", "library/msilib", "library/msvcrt", "library/multiprocessing", "library/multiprocessing.shared_memory", "library/netdata", "library/netrc", "library/nis", "library/nntplib", "library/numbers", "library/numeric", "library/operator", "library/optparse", "library/os", "library/os.path", "library/ossaudiodev", "library/pathlib", "library/pdb", "library/persistence", "library/pickle", "library/pickletools", "library/pipes", "library/pkgutil", "library/platform", "library/plistlib", "library/poplib", "library/posix", "library/pprint", "library/profile", "library/pty", "library/pwd", "library/py_compile", "library/pyclbr", "library/pydoc", "library/pyexpat", "library/python", "library/queue", "library/quopri", "library/random", "library/re", "library/readline", "library/reprlib", "library/resource", "library/rlcompleter", "library/runpy", "library/sched", "library/secrets", "library/security_warnings", "library/select", "library/selectors", "library/shelve", "library/shlex", "library/shutil", "library/signal", "library/site", "library/smtplib", "library/sndhdr", "library/socket", "library/socketserver", "library/spwd", "library/sqlite3", "library/ssl", "library/stat", "library/statistics", "library/stdtypes", "library/string", "library/stringprep", "library/struct", "library/subprocess", "library/sunau", "library/superseded", "library/symtable", "library/sys", "library/sys.monitoring", "library/sys_path_init", "library/sysconfig", "library/syslog", "library/tabnanny", "library/tarfile", "library/telnetlib", "library/tempfile", "library/termios", "library/test", "library/text", "library/textwrap", "library/threading", "library/time", "library/timeit", "library/tk", "library/tkinter", "library/tkinter.colorchooser", "library/tkinter.dnd", "library/tkinter.font", "library/tkinter.messagebox", "library/tkinter.scrolledtext", "library/tkinter.tix", "library/tkinter.ttk", "library/token", "library/tokenize", "library/tomllib", "library/trace", "library/traceback", "library/tracemalloc", "library/tty", "library/turtle", "library/types", "library/typing", "library/unicodedata", "library/unittest", "library/unittest.mock", "library/unittest.mock-examples", "library/unix", "library/urllib", "library/urllib.error", "library/urllib.parse", "library/urllib.request", "library/urllib.robotparser", "library/uu", "library/uuid", "library/venv", "library/warnings", "library/wave", "library/weakref", "library/webbrowser", "library/windows", "library/winreg", "library/winsound", "library/wsgiref", "library/xdrlib", "library/xml", "library/xml.dom", "library/xml.dom.minidom", "library/xml.dom.pulldom", "library/xml.etree.elementtree", "library/xml.sax", "library/xml.sax.handler", "library/xml.sax.reader", "library/xml.sax.utils", "library/xmlrpc", "library/xmlrpc.client", "library/xmlrpc.server", "library/zipapp", "library/zipfile", "library/zipimport", "library/zlib", "library/zoneinfo", "license", "reference/compound_stmts", "reference/datamodel", "reference/executionmodel", "reference/expressions", "reference/grammar", "reference/import", "reference/index", "reference/introduction", "reference/lexical_analysis", "reference/simple_stmts", "reference/toplevel_components", "tutorial/appendix", "tutorial/appetite", "tutorial/classes", "tutorial/controlflow", "tutorial/datastructures", "tutorial/errors", "tutorial/floatingpoint", "tutorial/index", "tutorial/inputoutput", "tutorial/interactive", "tutorial/interpreter", "tutorial/introduction", "tutorial/modules", "tutorial/stdlib", "tutorial/stdlib2", "tutorial/venv", "tutorial/whatnow", "using/cmdline", "using/configure", "using/editors", "using/index", "using/mac", "using/unix", "using/windows", "whatsnew/2.0", "whatsnew/2.1", "whatsnew/2.2", "whatsnew/2.3", "whatsnew/2.4", "whatsnew/2.5", "whatsnew/2.6", "whatsnew/2.7", "whatsnew/3.0", "whatsnew/3.1", "whatsnew/3.10", "whatsnew/3.11", "whatsnew/3.12", "whatsnew/3.2", "whatsnew/3.3", "whatsnew/3.4", "whatsnew/3.5", "whatsnew/3.6", "whatsnew/3.7", "whatsnew/3.8", "whatsnew/3.9", "whatsnew/changelog", "whatsnew/index"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["about.rst", "bugs.rst", "c-api/abstract.rst", "c-api/allocation.rst", "c-api/apiabiversion.rst", "c-api/arg.rst", "c-api/bool.rst", "c-api/buffer.rst", "c-api/bytearray.rst", "c-api/bytes.rst", "c-api/call.rst", "c-api/capsule.rst", "c-api/cell.rst", "c-api/code.rst", "c-api/codec.rst", "c-api/complex.rst", "c-api/concrete.rst", "c-api/contextvars.rst", "c-api/conversion.rst", "c-api/coro.rst", "c-api/datetime.rst", "c-api/descriptor.rst", "c-api/dict.rst", "c-api/exceptions.rst", "c-api/file.rst", "c-api/float.rst", "c-api/frame.rst", "c-api/function.rst", "c-api/gcsupport.rst", "c-api/gen.rst", "c-api/hash.rst", "c-api/import.rst", "c-api/index.rst", "c-api/init.rst", "c-api/init_config.rst", "c-api/intro.rst", "c-api/iter.rst", "c-api/iterator.rst", "c-api/list.rst", "c-api/long.rst", "c-api/mapping.rst", "c-api/marshal.rst", "c-api/memory.rst", "c-api/memoryview.rst", "c-api/method.rst", "c-api/module.rst", "c-api/none.rst", "c-api/number.rst", "c-api/objbuffer.rst", "c-api/object.rst", "c-api/objimpl.rst", "c-api/perfmaps.rst", "c-api/refcounting.rst", "c-api/reflection.rst", "c-api/sequence.rst", "c-api/set.rst", "c-api/slice.rst", "c-api/stable.rst", "c-api/structures.rst", "c-api/sys.rst", "c-api/tuple.rst", "c-api/type.rst", "c-api/typehints.rst", "c-api/typeobj.rst", "c-api/unicode.rst", "c-api/utilities.rst", "c-api/veryhigh.rst", "c-api/weakref.rst", "contents.rst", "copyright.rst", "distributing/index.rst", "extending/building.rst", "extending/embedding.rst", "extending/extending.rst", "extending/index.rst", "extending/newtypes.rst", "extending/newtypes_tutorial.rst", "extending/windows.rst", "faq/design.rst", "faq/extending.rst", "faq/general.rst", "faq/gui.rst", "faq/index.rst", "faq/installed.rst", "faq/library.rst", "faq/programming.rst", "faq/windows.rst", "glossary.rst", "howto/annotations.rst", "howto/argparse.rst", "howto/clinic.rst", "howto/cporting.rst", "howto/curses.rst", "howto/descriptor.rst", "howto/enum.rst", "howto/functional.rst", "howto/gdb_helpers.rst", "howto/index.rst", "howto/instrumentation.rst", "howto/ipaddress.rst", "howto/isolating-extensions.rst", "howto/logging.rst", "howto/logging-cookbook.rst", "howto/mro.rst", "howto/perf_profiling.rst", "howto/pyporting.rst", "howto/regex.rst", "howto/sockets.rst", "howto/sorting.rst", "howto/unicode.rst", "howto/urllib2.rst", "installing/index.rst", "library/2to3.rst", "library/__future__.rst", "library/__main__.rst", "library/_thread.rst", "library/abc.rst", "library/aifc.rst", "library/allos.rst", "library/archiving.rst", "library/argparse.rst", "library/array.rst", "library/ast.rst", "library/asyncio.rst", "library/asyncio-api-index.rst", "library/asyncio-dev.rst", "library/asyncio-eventloop.rst", "library/asyncio-exceptions.rst", "library/asyncio-extending.rst", "library/asyncio-future.rst", "library/asyncio-llapi-index.rst", "library/asyncio-platforms.rst", "library/asyncio-policy.rst", "library/asyncio-protocol.rst", "library/asyncio-queue.rst", "library/asyncio-runner.rst", "library/asyncio-stream.rst", "library/asyncio-subprocess.rst", "library/asyncio-sync.rst", "library/asyncio-task.rst", "library/atexit.rst", "library/audioop.rst", "library/audit_events.rst", "library/base64.rst", "library/bdb.rst", "library/binary.rst", "library/binascii.rst", "library/bisect.rst", "library/builtins.rst", "library/bz2.rst", "library/calendar.rst", "library/cgi.rst", "library/cgitb.rst", "library/chunk.rst", "library/cmath.rst", "library/cmd.rst", "library/cmdline.rst", "library/code.rst", "library/codecs.rst", "library/codeop.rst", "library/collections.rst", "library/collections.abc.rst", "library/colorsys.rst", "library/compileall.rst", "library/concurrency.rst", "library/concurrent.rst", "library/concurrent.futures.rst", "library/configparser.rst", "library/constants.rst", "library/contextlib.rst", "library/contextvars.rst", "library/copy.rst", "library/copyreg.rst", "library/crypt.rst", "library/crypto.rst", "library/csv.rst", "library/ctypes.rst", "library/curses.rst", "library/curses.ascii.rst", "library/curses.panel.rst", "library/custominterp.rst", "library/dataclasses.rst", "library/datatypes.rst", "library/datetime.rst", "library/dbm.rst", "library/debug.rst", "library/decimal.rst", "library/development.rst", "library/devmode.rst", "library/dialog.rst", "library/difflib.rst", "library/dis.rst", "library/distribution.rst", "library/doctest.rst", "library/email.rst", "library/email.charset.rst", "library/email.compat32-message.rst", "library/email.contentmanager.rst", "library/email.encoders.rst", "library/email.errors.rst", "library/email.examples.rst", "library/email.generator.rst", "library/email.header.rst", "library/email.headerregistry.rst", "library/email.iterators.rst", "library/email.message.rst", "library/email.mime.rst", "library/email.parser.rst", "library/email.policy.rst", "library/email.utils.rst", "library/ensurepip.rst", "library/enum.rst", "library/errno.rst", "library/exceptions.rst", "library/faulthandler.rst", "library/fcntl.rst", "library/filecmp.rst", "library/fileformats.rst", "library/fileinput.rst", "library/filesys.rst", "library/fnmatch.rst", "library/fractions.rst", "library/frameworks.rst", "library/ftplib.rst", "library/functional.rst", "library/functions.rst", "library/functools.rst", "library/gc.rst", "library/getopt.rst", "library/getpass.rst", "library/gettext.rst", "library/glob.rst", "library/graphlib.rst", "library/grp.rst", "library/gzip.rst", "library/hashlib.rst", "library/heapq.rst", "library/hmac.rst", "library/html.rst", "library/html.entities.rst", "library/html.parser.rst", "library/http.rst", "library/http.client.rst", "library/http.cookiejar.rst", "library/http.cookies.rst", "library/http.server.rst", "library/i18n.rst", "library/idle.rst", "library/imaplib.rst", "library/imghdr.rst", "library/importlib.rst", "library/importlib.metadata.rst", "library/importlib.resources.rst", "library/importlib.resources.abc.rst", "library/index.rst", "library/inspect.rst", "library/internet.rst", "library/intro.rst", "library/io.rst", "library/ipaddress.rst", "library/ipc.rst", "library/itertools.rst", "library/json.rst", "library/keyword.rst", "library/language.rst", "library/linecache.rst", "library/locale.rst", "library/logging.rst", "library/logging.config.rst", "library/logging.handlers.rst", "library/lzma.rst", "library/mailbox.rst", "library/mailcap.rst", "library/markup.rst", "library/marshal.rst", "library/math.rst", "library/mimetypes.rst", "library/mm.rst", "library/mmap.rst", "library/modulefinder.rst", "library/modules.rst", "library/msilib.rst", "library/msvcrt.rst", "library/multiprocessing.rst", "library/multiprocessing.shared_memory.rst", "library/netdata.rst", "library/netrc.rst", "library/nis.rst", "library/nntplib.rst", "library/numbers.rst", "library/numeric.rst", "library/operator.rst", "library/optparse.rst", "library/os.rst", "library/os.path.rst", "library/ossaudiodev.rst", "library/pathlib.rst", "library/pdb.rst", "library/persistence.rst", "library/pickle.rst", "library/pickletools.rst", "library/pipes.rst", "library/pkgutil.rst", "library/platform.rst", "library/plistlib.rst", "library/poplib.rst", "library/posix.rst", "library/pprint.rst", "library/profile.rst", "library/pty.rst", "library/pwd.rst", "library/py_compile.rst", "library/pyclbr.rst", "library/pydoc.rst", "library/pyexpat.rst", "library/python.rst", "library/queue.rst", "library/quopri.rst", "library/random.rst", "library/re.rst", "library/readline.rst", "library/reprlib.rst", "library/resource.rst", "library/rlcompleter.rst", "library/runpy.rst", "library/sched.rst", "library/secrets.rst", "library/security_warnings.rst", "library/select.rst", "library/selectors.rst", "library/shelve.rst", "library/shlex.rst", "library/shutil.rst", "library/signal.rst", "library/site.rst", "library/smtplib.rst", "library/sndhdr.rst", "library/socket.rst", "library/socketserver.rst", "library/spwd.rst", "library/sqlite3.rst", "library/ssl.rst", "library/stat.rst", "library/statistics.rst", "library/stdtypes.rst", "library/string.rst", "library/stringprep.rst", "library/struct.rst", "library/subprocess.rst", "library/sunau.rst", "library/superseded.rst", "library/symtable.rst", "library/sys.rst", "library/sys.monitoring.rst", "library/sys_path_init.rst", "library/sysconfig.rst", "library/syslog.rst", "library/tabnanny.rst", "library/tarfile.rst", "library/telnetlib.rst", "library/tempfile.rst", "library/termios.rst", "library/test.rst", "library/text.rst", "library/textwrap.rst", "library/threading.rst", "library/time.rst", "library/timeit.rst", "library/tk.rst", "library/tkinter.rst", "library/tkinter.colorchooser.rst", "library/tkinter.dnd.rst", "library/tkinter.font.rst", "library/tkinter.messagebox.rst", "library/tkinter.scrolledtext.rst", "library/tkinter.tix.rst", "library/tkinter.ttk.rst", "library/token.rst", "library/tokenize.rst", "library/tomllib.rst", "library/trace.rst", "library/traceback.rst", "library/tracemalloc.rst", "library/tty.rst", "library/turtle.rst", "library/types.rst", "library/typing.rst", "library/unicodedata.rst", "library/unittest.rst", "library/unittest.mock.rst", "library/unittest.mock-examples.rst", "library/unix.rst", "library/urllib.rst", "library/urllib.error.rst", "library/urllib.parse.rst", "library/urllib.request.rst", "library/urllib.robotparser.rst", "library/uu.rst", "library/uuid.rst", "library/venv.rst", "library/warnings.rst", "library/wave.rst", "library/weakref.rst", "library/webbrowser.rst", "library/windows.rst", "library/winreg.rst", "library/winsound.rst", "library/wsgiref.rst", "library/xdrlib.rst", "library/xml.rst", "library/xml.dom.rst", "library/xml.dom.minidom.rst", "library/xml.dom.pulldom.rst", "library/xml.etree.elementtree.rst", "library/xml.sax.rst", "library/xml.sax.handler.rst", "library/xml.sax.reader.rst", "library/xml.sax.utils.rst", "library/xmlrpc.rst", "library/xmlrpc.client.rst", "library/xmlrpc.server.rst", "library/zipapp.rst", "library/zipfile.rst", "library/zipimport.rst", "library/zlib.rst", "library/zoneinfo.rst", "license.rst", "reference/compound_stmts.rst", "reference/datamodel.rst", "reference/executionmodel.rst", "reference/expressions.rst", "reference/grammar.rst", "reference/import.rst", "reference/index.rst", "reference/introduction.rst", "reference/lexical_analysis.rst", "reference/simple_stmts.rst", "reference/toplevel_components.rst", "tutorial/appendix.rst", "tutorial/appetite.rst", "tutorial/classes.rst", "tutorial/controlflow.rst", "tutorial/datastructures.rst", "tutorial/errors.rst", "tutorial/floatingpoint.rst", "tutorial/index.rst", "tutorial/inputoutput.rst", "tutorial/interactive.rst", "tutorial/interpreter.rst", "tutorial/introduction.rst", "tutorial/modules.rst", "tutorial/stdlib.rst", "tutorial/stdlib2.rst", "tutorial/venv.rst", "tutorial/whatnow.rst", "using/cmdline.rst", "using/configure.rst", "using/editors.rst", "using/index.rst", "using/mac.rst", "using/unix.rst", "using/windows.rst", "whatsnew/2.0.rst", "whatsnew/2.1.rst", "whatsnew/2.2.rst", "whatsnew/2.3.rst", "whatsnew/2.4.rst", "whatsnew/2.5.rst", "whatsnew/2.6.rst", "whatsnew/2.7.rst", "whatsnew/3.0.rst", "whatsnew/3.1.rst", "whatsnew/3.10.rst", "whatsnew/3.11.rst", "whatsnew/3.12.rst", "whatsnew/3.2.rst", "whatsnew/3.3.rst", "whatsnew/3.4.rst", "whatsnew/3.5.rst", "whatsnew/3.6.rst", "whatsnew/3.7.rst", "whatsnew/3.8.rst", "whatsnew/3.9.rst", "whatsnew/changelog.rst", "whatsnew/index.rst"], "indexentries": {"! (pdb command)": [[297, "pdbcommand-0", false]], "! patterns": [[427, "index-23", false]], "! \uff08\u9a5a\u5606\u865f\uff09": [[155, "index-0", false], [178, "index-0", false], [220, "index-2", false], [231, "index-1", false], [345, "index-2", false], [347, "index-1", false], [435, "index-25", false]], "!=": [[344, "index-7", false], [430, "index-77", false]], "\" \uff08\u96d9\u5f15\u865f\uff09": [[435, "index-17", false]], "\"\"\"": [[435, "index-18", false]], "# (hash)": [[449, "index-0", false]], "# \uff08\u4e95\u5b57\u865f\uff09": [[193, "index-4", false], [319, "index-38", false], [334, "index-2", false], [344, "index-37", false], [344, "index-47", false], [345, "index-7", false], [435, "index-4", false], [435, "index-5", false]], "$ \uff08\u91d1\u9322\u7b26\u865f\uff09": [[167, "index-2", false], [294, "index-9", false], [319, "index-2", false], [345, "index-13", false]], "% \uff08\u767e\u5206\u865f\uff09": [[167, "index-1", false], [183, "index-0", false], [294, "index-9", false], [344, "index-13", false], [344, "index-35", false], [344, "index-45", false], [366, "index-11", false], [366, "index-9", false], [405, "index-0", false], [430, "index-68", false]], "%=": [[436, "index-14", false]], "%appdata%": [[461, "index-8", false]], "& \uff08\u548c\u865f\uff09": [[344, "index-16", false], [430, "index-74", false]], "&=": [[436, "index-14", false]], "' \uff08\u55ae\u5f15\u865f\uff09": [[435, "index-17", false]], "'''": [[435, "index-18", false]], "() \uff08\u5713\u62ec\u865f\uff09": [[319, "index-15", false], [344, "index-36", false], [344, "index-46", false], [427, "index-28", false], [427, "index-42", false], [430, "index-22", false], [430, "index-47", false], [430, "index-8", false], [436, "index-6", false]], "(?": [[319, "index-16", false]], "(?!": [[319, "index-22", false]], "(?#": [[319, "index-20", false]], "(?(": [[319, "index-25", false]], "(?:": [[319, "index-17", false]], "(?": [[427, "index-34", false], [441, "index-6", false]], "-?": [[455, "cmdoption-0", false]], "-a": [[122, "cmdoption-ast-a", false], [300, "cmdoption-pickletools-a", false]], "-b": [[163, "cmdoption-compileall-b", false], [388, "cmdoption-unittest-b", false], [455, "cmdoption-B", false], [455, "cmdoption-b", false]], "-c": [[150, "cmdoption-calendar-css", false], [358, "cmdoption-tarfile-c", false], [380, "cmdoption-trace-C", false], [380, "cmdoption-trace-c", false], [388, "cmdoption-unittest-c", false], [421, "cmdoption-zipapp-c", false], [422, "cmdoption-zipfile-c", false], [455, "cmdoption-c", false]], "-d": [[163, "cmdoption-compileall-d", false], [234, "cmdoption-gzip-d", false], [455, "cmdoption-d", false]], "-e": [[150, "cmdoption-calendar-encoding", false], [163, "cmdoption-compileall-e", false], [358, "cmdoption-tarfile-e", false], [378, "cmdoption-tokenize-e", false], [422, "cmdoption-zipfile-e", false], [455, "cmdoption-E", false]], "-f": [[163, "cmdoption-compileall-f", false], [380, "cmdoption-trace-f", false], [388, "cmdoption-unittest-f", false]], "-g": [[380, "cmdoption-trace-g", false]], "-h": [[122, "cmdoption-ast-h", false], [150, "cmdoption-calendar-help", false], [191, "cmdoption-dis-h", false], [234, "cmdoption-gzip-h", false], [262, "cmdoption-json.tool-h", false], [340, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", false], [367, "cmdoption-timeit-h", false], [378, "cmdoption-tokenize-h", false], [398, "cmdoption-uuid-h", false], [421, "cmdoption-zipapp-h", false], [455, "cmdoption-h", false]], "-i": [[122, "cmdoption-ast-i", false], [163, "cmdoption-compileall-i", false], [455, "cmdoption-I", false], [455, "cmdoption-i", false]], "-j": [[163, "cmdoption-compileall-j", false], [455, "cmdoption-J", false]], "-k": [[388, "cmdoption-unittest-k", false]], "-l": [[150, "cmdoption-calendar-locale", false], [150, "cmdoption-calendar-lines", false], [163, "cmdoption-compileall-l", false], [300, "cmdoption-pickletools-l", false], [358, "cmdoption-tarfile-l", false], [380, "cmdoption-trace-l", false], [422, "cmdoption-zipfile-l", false]], "-m": [[122, "cmdoption-ast-m", false], [150, "cmdoption-calendar-months", false], [300, "cmdoption-pickletools-m", false], [380, "cmdoption-trace-m", false], [421, "cmdoption-zipapp-m", false], [455, "cmdoption-m", false]], "-n": [[367, "cmdoption-timeit-n", false], [398, "cmdoption-uuid-N", false], [398, "cmdoption-uuid-n", false]], "-o": [[163, "cmdoption-compileall-o", false], [300, "cmdoption-pickletools-o", false], [421, "cmdoption-zipapp-o", false], [455, "cmdoption-O", false]], "-oo": [[455, "cmdoption-OO", false]], "-p": [[163, "cmdoption-compileall-p", false], [300, "cmdoption-pickletools-p", false], [367, "cmdoption-timeit-p", false], [388, "cmdoption-unittest-discover-p", false], [421, "cmdoption-zipapp-p", false], [455, "cmdoption-P", false]], "-q": [[163, "cmdoption-compileall-q", false], [311, "cmdoption-python-m-py_compile-q", false], [455, "cmdoption-q", false]], "-r": [[163, "cmdoption-compileall-r", false], [367, "cmdoption-timeit-r", false], [380, "cmdoption-trace-R", false], [380, "cmdoption-trace-r", false], [455, "cmdoption-R", false]], "-s": [[150, "cmdoption-calendar-spacing", false], [163, "cmdoption-compileall-s", false], [367, "cmdoption-timeit-s", false], [380, "cmdoption-trace-s", false], [388, "cmdoption-unittest-discover-s", false], [455, "cmdoption-S", false], [455, "cmdoption-s", false]], "-t": [[150, "cmdoption-calendar-type", false], [358, "cmdoption-tarfile-t", false], [380, "cmdoption-trace-T", false], [380, "cmdoption-trace-t", false], [388, "cmdoption-unittest-discover-t", false], [422, "cmdoption-zipfile-t", false]], "-u": [[367, "cmdoption-timeit-u", false], [398, "cmdoption-uuid-u", false], [455, "cmdoption-u", false]], "-v": [[340, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", false], [358, "cmdoption-tarfile-v", false], [367, "cmdoption-timeit-v", false], [388, "cmdoption-unittest-discover-v", false], [455, "cmdoption-V", false], [455, "cmdoption-v", false]], "-w": [[150, "cmdoption-calendar-width", false], [455, "cmdoption-W", false]], "-x": [[163, "cmdoption-compileall-x", false], [455, "cmdoption-X", false], [455, "cmdoption-x", false]], ". \uff08\u9ede\uff09": [[231, "index-1", false], [293, "index-45", false], [293, "index-50", false], [319, "index-0", false], [344, "index-36", false], [344, "index-46", false], [345, "index-2", false], [430, "index-39", false], [435, "index-29", false]], "..": [[293, "index-46", false]], "...": [[87, "term-...", true], [168, "index-0", false], [193, "index-0", false], [193, "index-3", false], [307, "index-1", false], [321, "index-0", false], [344, "index-66", false], [352, "index-27", false], [364, "index-0", false], [428, "index-8", false]], ".ini": [[167, "index-0", false]], ".pdbrc": [[297, "index-2", false]], "/ \uff08\u659c\u7dda\uff09": [[293, "index-47", false], [293, "index-49", false], [344, "index-13", false], [427, "index-32", false], [430, "index-67", false]], "//": [[344, "index-13", false], [430, "index-67", false]], "//=": [[436, "index-14", false]], "/=": [[436, "index-14", false]], "0b": [[435, "index-28", false]], "0o": [[435, "index-28", false]], "0x": [[435, "index-28", false]], "2-digit years\uff082 \u4f4d\u6578\u5e74\u4efd\uff09": [[366, "index-3", false]], "2to3": [[87, "term-2to3", true]], ": \uff08\u5192\u865f\uff09": [[293, "index-51", false], [340, "index-7", false], [345, "index-2", false], [427, "index-16", false], [427, "index-18", false], [427, "index-28", false], [427, "index-3", false], [427, "index-34", false], [427, "index-4", false], [427, "index-42", false], [427, "index-6", false], [427, "index-9", false], [430, "index-17", false], [430, "index-44", false], [430, "index-90", false], [435, "index-25", false], [436, "index-15", false], [441, "index-6", false]], ":= \uff08\u5192\u865f\u7b49\u65bc\uff09": [[430, "index-86", false]], "; \uff08\u5206\u865f\uff09": [[293, "index-51", false], [427, "index-1", false]], "< \uff08\u5c0f\u65bc\uff09": [[344, "index-7", false], [345, "index-3", false], [347, "index-1", false], [430, "index-77", false]], "<<": [[344, "index-16", false], [430, "index-71", false]], "<<=": [[436, "index-14", false]], "<=": [[344, "index-7", false], [430, "index-77", false]], "": [[193, "index-2", false]], "": [[311, "cmdoption-python-m-py_compile-arg-file", false]], "= \uff08\u7b49\u65bc\uff09": [[345, "index-3", false], [347, "index-1", false], [427, "index-31", false], [428, "index-86", false], [430, "index-47", false], [435, "index-25", false], [436, "index-4", false]], "==": [[344, "index-7", false], [430, "index-77", false]], "> \uff08\u5927\u65bc\uff09": [[344, "index-7", false], [345, "index-3", false], [347, "index-1", false], [430, "index-77", false]], ">=": [[344, "index-7", false], [430, "index-77", false]], ">>": [[344, "index-16", false], [430, "index-71", false]], ">>=": [[436, "index-14", false]], ">>>": [[87, "term-0", true], [193, "index-0", false], [352, "index-27", false]], "? \uff08\u554f\u865f\uff09": [[120, "index-0", false], [122, "index-0", false], [155, "index-0", false], [158, "index-1", false], [220, "index-2", false], [231, "index-1", false], [319, "index-5", false], [340, "index-6", false], [347, "index-2", false], [347, "index-3", false]], "?+": [[319, "index-7", false]], "??": [[319, "index-6", false]], "@ \uff08\u5728\uff09": [[347, "index-1", false], [427, "index-29", false], [427, "index-43", false], [430, "index-66", false]], "[] \uff08\u65b9\u62ec\u865f\uff09": [[220, "index-2", false], [231, "index-1", false], [319, "index-10", false], [345, "index-2", false], [430, "index-15", false], [430, "index-41", false], [436, "index-6", false]], "\\ \uff08\u53cd\u659c\u7dda\uff09": [[158, "index-1", false], [293, "index-48", false], [319, "index-12", false], [319, "index-26", false], [319, "index-9", false], [435, "index-23", false]], "\\\\": [[319, "index-37", false], [435, "index-23", false]], "\\a": [[319, "index-27", false], [319, "index-37", false], [435, "index-23", false]], "\\b": [[319, "index-29", false], [319, "index-28", false], [319, "index-37", false], [435, "index-23", false]], "\\d": [[319, "index-31", false], [319, "index-30", false]], "\\f": [[319, "index-37", false], [435, "index-23", false]], "\\g": [[319, "index-39", false]], "\\n": [[158, "index-3", false], [319, "index-37", false], [319, "index-37", false], [435, "index-23", false], [435, "index-23", false]], "\\r": [[319, "index-37", false], [435, "index-23", false]], "\\s": [[319, "index-33", false], [319, "index-32", false]], "\\t": [[319, "index-37", false], [435, "index-23", false]], "\\u": [[158, "index-1", false], [158, "index-1", false], [319, "index-37", false], [319, "index-37", false], [435, "index-23", false], [435, "index-23", false]], "\\v": [[319, "index-37", false], [435, "index-23", false]], "\\w": [[319, "index-35", false], [319, "index-34", false]], "\\x": [[158, "index-1", false], [319, "index-37", false], [435, "index-23", false]], "\\z": [[319, "index-36", false]], "^ \uff08\u63d2\u5165\u7b26\u865f\uff09": [[178, "index-0", false], [193, "index-1", false], [319, "index-1", false], [319, "index-13", false], [344, "index-16", false], [345, "index-3", false], [381, "index-1", false], [430, "index-75", false]], "^=": [[436, "index-14", false]], "_ \uff08\u5e95\u7dda\uff09": [[230, "index-4", false], [345, "index-10", false], [435, "index-28", false], [435, "index-29", false]], "_, identifiers\uff08\u8b58\u5225\u5668\uff09": [[435, "index-15", false]], "__, identifiers\uff08\u8b58\u5225\u5668\uff09": [[435, "index-15", false]], "__abs__() (object \u7684\u65b9\u6cd5)": [[428, "object.__abs__", false]], "__abs__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__abs__", false]], "__add__() (object \u7684\u65b9\u6cd5)": [[428, "object.__add__", false]], "__add__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__add__", false]], "__aenter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aenter__", false]], "__aexit__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aexit__", false]], "__aiter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aiter__", false]], "__all__": [[31, "index-0", false], [450, "index-8", false]], "__all__\uff08\u53ef\u9078\u6a21\u7d44\u5c6c\u6027\uff09": [[436, "index-38", false]], "__all__\uff08\u5957\u4ef6\u8b8a\u6578\uff09": [[31, "index-0", false]], "__and__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__and__", false]], "__and__() (object \u7684\u65b9\u6cd5)": [[428, "object.__and__", false]], "__and__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__and__", false]], "__anext__() (agen \u7684\u65b9\u6cd5)": [[430, "agen.__anext__", false]], "__anext__() (object \u7684\u65b9\u6cd5)": [[428, "object.__anext__", false]], "__annotations__ (function \u7684\u5c6c\u6027)": [[428, "function.__annotations__", false]], "__annotations__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__annotations__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__annotations__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__args__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__args__", false]], "__await__() (object \u7684\u65b9\u6cd5)": [[428, "object.__await__", false]], "__bases__ (class \u7684\u5c6c\u6027)": [[344, "class.__bases__", false]], "__bases__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__bool__() (object \u7684\u65b9\u6cd5)": [[428, "object.__bool__", false]], "__bool__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-98", false]], "__bound__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__bound__", false]], "__breakpointhook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__breakpointhook__", false]], "__buffer__() (object \u7684\u65b9\u6cd5)": [[428, "object.__buffer__", false]], "__bytes__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__bytes__", false]], "__bytes__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__bytes__", false]], "__bytes__() (object \u7684\u65b9\u6cd5)": [[428, "object.__bytes__", false]], "__cached__": [[432, "cached__", false]], "__call__() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.__call__", false]], "__call__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__call__", false]], "__call__() (object \u7684\u65b9\u6cd5)": [[428, "object.__call__", false]], "__call__() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.__call__", false]], "__call__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__call__", false]], "__call__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[430, "index-56", false]], "__callback__ (weakref.ref \u7684\u5c6c\u6027)": [[402, "weakref.ref.__callback__", false]], "__cause__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__cause__", false]], "__cause__ (exception attribute)": [[213, "index-2", false]], "__cause__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__cause__", false]], "__cause__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-29", false]], "__ceil__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__ceil__", false]], "__ceil__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ceil__", false]], "__class__ (instance \u7684\u5c6c\u6027)": [[344, "instance.__class__", false]], "__class__ (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.__class__", false]], "__class__ \uff08\u5be6\u4f8b\u5c6c\u6027\uff09": [[428, "index-54", false]], "__class__ \uff08\u65b9\u6cd5 cell\uff09": [[428, "index-92", false]], "__class__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__class_getitem__() (object \u7684\u985e\u5225\u65b9\u6cd5)": [[428, "object.__class_getitem__", false]], "__classcell__ \uff08\u985e\u5225\u547d\u540d\u7a7a\u9593\u9805\u76ee\uff09": [[428, "index-92", false]], "__closure__ (function \u7684\u5c6c\u6027)": [[428, "function.__closure__", false]], "__closure__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-35", false]], "__code__ (function \u7684\u5c6c\u6027)": [[428, "function.__code__", false]], "__code__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__code__\uff08\u51fd\u5f0f\u7269\u4ef6\u5c6c\u6027\uff09": [[344, "index-63", false]], "__complex__() (object \u7684\u65b9\u6cd5)": [[428, "object.__complex__", false]], "__concat__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__concat__", false]], "__constraints__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__constraints__", false]], "__contains__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__contains__", false]], "__contains__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__contains__", false]], "__contains__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__contains__", false]], "__contains__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__contains__", false]], "__contains__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__contains__", false]], "__contains__() (object \u7684\u65b9\u6cd5)": [[428, "object.__contains__", false]], "__contains__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__contains__", false]], "__context__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__context__", false]], "__context__ (exception attribute)": [[213, "index-2", false]], "__context__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__context__", false]], "__context__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-29", false]], "__contravariant__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__contravariant__", false]], "__copy__() \uff08\u8907\u88fd\u5354\u5b9a\uff09": [[171, "index-1", false]], "__covariant__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__covariant__", false]], "__debug__": [[436, "index-19", false]], "__debug__ (\u5167\u5efa\u8b8a\u6578)": [[168, "debug__", false]], "__deepcopy__() \uff08\u8907\u88fd\u5354\u5b9a\uff09": [[171, "index-1", false]], "__defaults__ (function \u7684\u5c6c\u6027)": [[428, "function.__defaults__", false]], "__defaults__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__del__() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.__del__", false]], "__del__() (object \u7684\u65b9\u6cd5)": [[428, "object.__del__", false]], "__delattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delattr__", false]], "__delete__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delete__", false]], "__delitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__delitem__", false]], "__delitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__delitem__", false]], "__delitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__delitem__", false]], "__delitem__() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.__delitem__", false]], "__delitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delitem__", false]], "__delitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__delitem__", false]], "__dict__ (function \u7684\u5c6c\u6027)": [[428, "function.__dict__", false]], "__dict__ (object \u7684\u5c6c\u6027)": [[344, "object.__dict__", false]], "__dict__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__dict__ \uff08\u5be6\u4f8b\u5c6c\u6027\uff09": [[428, "index-54", false]], "__dict__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-46", false]], "__dict__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__dict__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-3", false]], "__dir__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__dir__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__dir__", false]], "__dir__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__dir__", false]], "__dir__() (object \u7684\u65b9\u6cd5)": [[428, "object.__dir__", false]], "__dir__() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.__dir__", false]], "__displayhook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__displayhook__", false]], "__divmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__divmod__", false]], "__doc__ (function \u7684\u5c6c\u6027)": [[428, "function.__doc__", false]], "__doc__ (method \u7684\u5c6c\u6027)": [[428, "method.__doc__", false]], "__doc__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__doc__", false]], "__doc__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__doc__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__doc__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__doc__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__doc__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__enter__() (contextmanager \u7684\u65b9\u6cd5)": [[344, "contextmanager.__enter__", false]], "__enter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__enter__", false]], "__enter__() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.__enter__", false]], "__eq__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__eq__", false]], "__eq__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__eq__", false]], "__eq__() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.__eq__", false]], "__eq__() (object \u7684\u65b9\u6cd5)": [[428, "object.__eq__", false]], "__eq__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__eq__", false]], "__eq__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__excepthook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__excepthook__", false]], "__excepthook__ (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.__excepthook__", false]], "__exit__() (contextmanager \u7684\u65b9\u6cd5)": [[344, "contextmanager.__exit__", false]], "__exit__() (object \u7684\u65b9\u6cd5)": [[428, "object.__exit__", false]], "__exit__() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.__exit__", false]], "__file__": [[432, "file__", false]], "__file__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__file__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false], [45, "index-5", false]], "__float__() (object \u7684\u65b9\u6cd5)": [[428, "object.__float__", false]], "__floor__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__floor__", false]], "__floor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__floor__", false]], "__floordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__floordiv__", false]], "__floordiv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__floordiv__", false]], "__format__": [[225, "index-4", false]], "__format__() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.__format__", false]], "__format__() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.__format__", false]], "__format__() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.__format__", false]], "__format__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__format__", false]], "__format__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__format__", false]], "__format__() (ipaddress.ipv4address \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Address.__format__", false]], "__format__() (ipaddress.ipv6address \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Address.__format__", false]], "__format__() (object \u7684\u65b9\u6cd5)": [[428, "object.__format__", false]], "__format__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-78", false]], "__fspath__() (os.pathlike \u7684\u65b9\u6cd5)": [[293, "os.PathLike.__fspath__", false]], "__func__ (method \u7684\u5c6c\u6027)": [[428, "method.__func__", false]], "__func__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__future__": [[87, "term-__future__", true], [113, "module-__future__", false], [436, "index-40", false]], "__ge__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ge__", false]], "__ge__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ge__", false]], "__ge__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__get__() (object \u7684\u65b9\u6cd5)": [[428, "object.__get__", false]], "__getattr__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__getattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getattr__", false]], "__getattribute__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getattribute__", false]], "__getitem__() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.__getitem__", false]], "__getitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__getitem__", false]], "__getitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__getitem__", false]], "__getitem__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__getitem__", false]], "__getitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__getitem__", false]], "__getitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getitem__", false]], "__getitem__() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.__getitem__", false]], "__getitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__getitem__", false]], "__getitem__() \uff08\u5c0d\u6620\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-71", false]], "__getnewargs__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getnewargs__", false]], "__getnewargs_ex__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getnewargs_ex__", false]], "__getstate__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getstate__", false]], "__getstate__()\uff08copy \u5354\u5b9a\uff09": [[299, "index-7", false]], "__globals__ (function \u7684\u5c6c\u6027)": [[428, "function.__globals__", false]], "__globals__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-35", false]], "__gt__() (object \u7684\u65b9\u6cd5)": [[428, "object.__gt__", false]], "__gt__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__gt__", false]], "__gt__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__hash__() (object \u7684\u65b9\u6cd5)": [[428, "object.__hash__", false]], "__iadd__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iadd__", false]], "__iadd__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iadd__", false]], "__iand__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iand__", false]], "__iand__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iand__", false]], "__iconcat__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iconcat__", false]], "__ifloordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ifloordiv__", false]], "__ifloordiv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ifloordiv__", false]], "__ilshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ilshift__", false]], "__ilshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ilshift__", false]], "__imatmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imatmul__", false]], "__imatmul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imatmul__", false]], "__imod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imod__", false]], "__imod__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imod__", false]], "__import__": [[31, "index-1", false]], "__import__()": [[225, "import__", false]], "__import__() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.__import__", false]], "__imul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imul__", false]], "__imul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imul__", false]], "__index__() (object \u7684\u65b9\u6cd5)": [[428, "object.__index__", false]], "__index__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__index__", false]], "__infer_variance__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__infer_variance__", false]], "__init__() (asyncio.future \u7684\u65b9\u6cd5)": [[128, "asyncio.Future.__init__", false]], "__init__() (asyncio.task \u7684\u65b9\u6cd5)": [[128, "asyncio.Task.__init__", false]], "__init__() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.__init__", false]], "__init__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__init__", false]], "__init__() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.__init__", false]], "__init__() (logging.logging.formatter \u7684\u65b9\u6cd5)": [[101, "logging.logging.Formatter.__init__", false]], "__init__() (object \u7684\u65b9\u6cd5)": [[428, "object.__init__", false]], "__init_subclass__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__init_subclass__", false]], "__init_subclass__() (object \u7684\u985e\u5225\u65b9\u6cd5)": [[428, "object.__init_subclass__", false]], "__instancecheck__() (class \u7684\u65b9\u6cd5)": [[428, "class.__instancecheck__", false]], "__int__() (object \u7684\u65b9\u6cd5)": [[428, "object.__int__", false]], "__interactivehook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__interactivehook__", false]], "__inv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__inv__", false]], "__invert__() (object \u7684\u65b9\u6cd5)": [[428, "object.__invert__", false]], "__invert__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__invert__", false]], "__ior__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ior__", false]], "__ior__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ior__", false]], "__ipow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ipow__", false]], "__ipow__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ipow__", false]], "__irshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__irshift__", false]], "__irshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__irshift__", false]], "__isub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__isub__", false]], "__isub__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__isub__", false]], "__iter__() (container \u7684\u65b9\u6cd5)": [[344, "container.__iter__", false]], "__iter__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__iter__", false]], "__iter__() (iterator \u7684\u65b9\u6cd5)": [[344, "iterator.__iter__", false]], "__iter__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__iter__", false]], "__iter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iter__", false]], "__iter__() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.__iter__", false]], "__itruediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__itruediv__", false]], "__itruediv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__itruediv__", false]], "__ixor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ixor__", false]], "__ixor__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ixor__", false]], "__kwdefaults__ (function \u7684\u5c6c\u6027)": [[428, "function.__kwdefaults__", false]], "__kwdefaults__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__le__() (object \u7684\u65b9\u6cd5)": [[428, "object.__le__", false]], "__le__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__le__", false]], "__le__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__len__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__len__", false]], "__len__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__len__", false]], "__len__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__len__", false]], "__len__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__len__", false]], "__len__() (object \u7684\u65b9\u6cd5)": [[428, "object.__len__", false]], "__len__() \uff08\u5c0d\u6620\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-82", false]], "__length_hint__() (object \u7684\u65b9\u6cd5)": [[428, "object.__length_hint__", false]], "__loader__": [[432, "loader__", false]], "__loader__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__loader__", false]], "__loader__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__lshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__lshift__", false]], "__lshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__lshift__", false]], "__lt__() (object \u7684\u65b9\u6cd5)": [[428, "object.__lt__", false]], "__lt__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__lt__", false]], "__lt__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__main__": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [114, "module-__main__", false], [324, "index-0", false], [324, "index-4", false], [429, "index-10", false], [437, "index-2", false], [437, "index-3", false]], "__matmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__matmul__", false]], "__matmul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__matmul__", false]], "__members__ (enum.enumtype \u7684\u5c6c\u6027)": [[211, "enum.EnumType.__members__", false]], "__missing__()": [[344, "index-53", false]], "__missing__() (collections.defaultdict \u7684\u65b9\u6cd5)": [[160, "collections.defaultdict.__missing__", false]], "__missing__() (object \u7684\u65b9\u6cd5)": [[428, "object.__missing__", false]], "__mod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mod__", false]], "__mod__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__mod__", false]], "__module__ (function \u7684\u5c6c\u6027)": [[428, "function.__module__", false]], "__module__ (method \u7684\u5c6c\u6027)": [[428, "method.__module__", false]], "__module__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__module__", false]], "__module__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__module__", false]], "__module__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__module__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__module__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__mro__ (class \u7684\u5c6c\u6027)": [[344, "class.__mro__", false]], "__mro_entries__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mro_entries__", false]], "__mul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mul__", false]], "__mul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__mul__", false]], "__name__": [[432, "name__", false]], "__name__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__name__", false]], "__name__ (function \u7684\u5c6c\u6027)": [[428, "function.__name__", false]], "__name__ (method \u7684\u5c6c\u6027)": [[428, "method.__name__", false]], "__name__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__name__", false]], "__name__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__name__", false]], "__name__ (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.__name__", false]], "__name__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__name__", false]], "__name__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__name__", false]], "__name__ (typing.typevartuple \u7684\u5c6c\u6027)": [[386, "typing.TypeVarTuple.__name__", false]], "__name__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__name__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__name__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__name__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__name__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false], [45, "index-4", false]], "__ne__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__ne__", false]], "__ne__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__ne__", false]], "__ne__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ne__", false]], "__ne__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ne__", false]], "__ne__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__neg__() (object \u7684\u65b9\u6cd5)": [[428, "object.__neg__", false]], "__neg__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__neg__", false]], "__new__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__new__", false]], "__new__() (object \u7684\u65b9\u6cd5)": [[428, "object.__new__", false]], "__next__() (csv.csvreader \u7684\u65b9\u6cd5)": [[175, "csv.csvreader.__next__", false]], "__next__() (generator \u7684\u65b9\u6cd5)": [[430, "generator.__next__", false]], "__next__() (iterator \u7684\u65b9\u6cd5)": [[344, "iterator.__next__", false]], "__not__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__not__", false]], "__notes__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__notes__", false]], "__notes__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__notes__", false]], "__objclass__ (object \u7684\u5c6c\u6027)": [[428, "object.__objclass__", false]], "__optional_keys__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__optional_keys__", false]], "__or__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__or__", false]], "__or__() (object \u7684\u65b9\u6cd5)": [[428, "object.__or__", false]], "__or__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__or__", false]], "__origin__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__origin__", false]], "__package__": [[432, "package__", false]], "__package__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__package__", false]], "__package__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__parameters__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__parameters__", false]], "__path__": [[432, "path__", false]], "__pos__() (object \u7684\u65b9\u6cd5)": [[428, "object.__pos__", false]], "__pos__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__pos__", false]], "__post_init__() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.__post_init__", false]], "__pow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__pow__", false]], "__pow__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__pow__", false]], "__prepare__ \uff08\u5143\u985e\u5225\u65b9\u6cd5\uff09": [[428, "index-89", false]], "__pyvenv_launcher__": [[34, "index-24", false], [34, "index-4", false]], "__qualname__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__qualname__", false]], "__qualname__ (function \u7684\u5c6c\u6027)": [[428, "function.__qualname__", false]], "__radd__() (object \u7684\u65b9\u6cd5)": [[428, "object.__radd__", false]], "__rand__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rand__", false]], "__rdivmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rdivmod__", false]], "__reduce__() (object \u7684\u65b9\u6cd5)": [[299, "object.__reduce__", false]], "__reduce_ex__() (object \u7684\u65b9\u6cd5)": [[299, "object.__reduce_ex__", false]], "__release_buffer__() (object \u7684\u65b9\u6cd5)": [[428, "object.__release_buffer__", false]], "__repr__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__repr__", false]], "__repr__() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy.__repr__", false]], "__repr__() (netrc.netrc \u7684\u65b9\u6cd5)": [[286, "netrc.netrc.__repr__", false]], "__repr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__repr__", false]], "__repr__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-75", false]], "__required_keys__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__required_keys__", false]], "__reversed__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__reversed__", false]], "__reversed__() (object \u7684\u65b9\u6cd5)": [[428, "object.__reversed__", false]], "__rfloordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rfloordiv__", false]], "__rlshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rlshift__", false]], "__rmatmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmatmul__", false]], "__rmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmod__", false]], "__rmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmul__", false]], "__ror__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ror__", false]], "__round__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__round__", false]], "__round__() (object \u7684\u65b9\u6cd5)": [[428, "object.__round__", false]], "__rpow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rpow__", false]], "__rrshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rrshift__", false]], "__rshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rshift__", false]], "__rshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__rshift__", false]], "__rsub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rsub__", false]], "__rtruediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rtruediv__", false]], "__rxor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rxor__", false]], "__self__ (method \u7684\u5c6c\u6027)": [[428, "method.__self__", false]], "__self__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__set__() (object \u7684\u65b9\u6cd5)": [[428, "object.__set__", false]], "__set_name__() (object \u7684\u65b9\u6cd5)": [[428, "object.__set_name__", false]], "__setattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__setattr__", false]], "__setitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__setitem__", false]], "__setitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__setitem__", false]], "__setitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__setitem__", false]], "__setitem__() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.__setitem__", false]], "__setitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__setitem__", false]], "__setitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__setitem__", false]], "__setstate__() (object \u7684\u65b9\u6cd5)": [[299, "object.__setstate__", false]], "__setstate__()\uff08copy \u5354\u5b9a\uff09": [[299, "index-7", false]], "__slots__": [[87, "term-__slots__", true]], "__spec__": [[432, "spec__", false]], "__spec__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__spec__", false]], "__stderr__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stderr__", false]], "__stdin__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stdin__", false]], "__stdout__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stdout__", false]], "__str__() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.__str__", false]], "__str__() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.__str__", false]], "__str__() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.__str__", false]], "__str__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__str__", false]], "__str__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__str__", false]], "__str__() (email.headerregistry.address \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.Address.__str__", false]], "__str__() (email.headerregistry.group \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.Group.__str__", false]], "__str__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__str__", false]], "__str__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__str__", false]], "__str__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__str__", false]], "__str__() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy.__str__", false]], "__str__() (object \u7684\u65b9\u6cd5)": [[428, "object.__str__", false]], "__str__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-76", false]], "__sub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__sub__", false]], "__sub__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__sub__", false]], "__subclasscheck__() (class \u7684\u65b9\u6cd5)": [[428, "class.__subclasscheck__", false]], "__subclasses__() (class \u7684\u65b9\u6cd5)": [[344, "class.__subclasses__", false]], "__subclasshook__() (abc.abcmeta \u7684\u65b9\u6cd5)": [[116, "abc.ABCMeta.__subclasshook__", false]], "__supertype__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__supertype__", false]], "__suppress_context__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__suppress_context__", false]], "__suppress_context__ (exception attribute)": [[213, "index-2", false]], "__suppress_context__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__suppress_context__", false]], "__total__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__total__", false]], "__traceback__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__traceback__", false]], "__traceback__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-27", false]], "__truediv__() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.__truediv__", false]], "__truediv__() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.__truediv__", false]], "__truediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__truediv__", false]], "__truediv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__truediv__", false]], "__trunc__() (object \u7684\u65b9\u6cd5)": [[428, "object.__trunc__", false]], "__type_params__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__type_params__", false]], "__type_params__ (function \u7684\u5c6c\u6027)": [[428, "function.__type_params__", false]], "__type_params__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__type_params__", false]], "__type_params__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__type_params__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__unpacked__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__unpacked__", false]], "__unraisablehook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__unraisablehook__", false]], "__value__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__value__", false]], "__version__ (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.__version__", false]], "__xor__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__xor__", false]], "__xor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__xor__", false]], "__xor__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__xor__", false]], "_anonymous_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._anonymous_", false]], "_asdict() (collections.somenamedtuple \u7684\u65b9\u6cd5)": [[160, "collections.somenamedtuple._asdict", false]], "_b_base_ (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._b_base_", false]], "_b_needsfree_ (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._b_needsfree_", false]], "_callmethod() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy._callmethod", false]], "_cdata (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._CData", false]], "_clear_type_cache() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._clear_type_cache", false]], "_current_exceptions() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._current_exceptions", false]], "_current_frames() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._current_frames", false]], "_debugmallocstats() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._debugmallocstats", false]], "_emscripten_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._emscripten_info", false]], "_enablelegacywindowsfsencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._enablelegacywindowsfsencoding", false]], "_enter_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._enter_task", false]], "_exit() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os._exit", false]], "_feature (__future__ \u4e2d\u7684\u985e\u5225)": [[113, "future__._Feature", false]], "_field_defaults (collections.somenamedtuple \u7684\u5c6c\u6027)": [[160, "collections.somenamedtuple._field_defaults", false]], "_fields (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST._fields", false]], "_fields (collections.somenamedtuple \u7684\u5c6c\u6027)": [[160, "collections.somenamedtuple._fields", false]], "_fields_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._fields_", false]], "_flush() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler._flush", false]], "_frozen (c struct)": [[31, "c._frozen", false]], "_funcptr (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._FuncPtr", false]], "_generate_next_value_() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum._generate_next_value_", false]], "_get_child_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock._get_child_mock", false]], "_get_preferred_schemes() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig._get_preferred_schemes", false]], "_getframe() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._getframe", false]], "_getframemodulename() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._getframemodulename", false]], "_getvalue() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy._getvalue", false]], "_handle (ctypes.pydll \u7684\u5c6c\u6027)": [[176, "ctypes.PyDLL._handle", false]], "_ignore_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._ignore_", false]], "_incompatible_extension_module_restrictions() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util._incompatible_extension_module_restrictions", false]], "_inittab (c struct)": [[31, "c._inittab", false]], "_inittab.initfunc (c member)": [[31, "c._inittab.initfunc", false]], "_inittab.name (c member)": [[31, "c._inittab.name", false]], "_leave_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._leave_task", false]], "_length_ (ctypes.array \u7684\u5c6c\u6027)": [[176, "ctypes.Array._length_", false]], "_locale": [[266, "index-0", false]], "_log (logging.loggeradapter \u7684\u5c6c\u6027)": [[267, "logging.LoggerAdapter._log", false]], "_make() (collections.somenamedtuple \u7684\u985e\u5225\u65b9\u6cd5)": [[160, "collections.somenamedtuple._make", false]], "_makeresult() (unittest.texttestrunner \u7684\u65b9\u6cd5)": [[388, "unittest.TextTestRunner._makeResult", false]], "_missing_() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum._missing_", false]], "_name (ctypes.pydll \u7684\u5c6c\u6027)": [[176, "ctypes.PyDLL._name", false]], "_name_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._name_", false]], "_numeric_repr_() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag._numeric_repr_", false]], "_objects (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._objects", false]], "_order_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._order_", false]], "_pack_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._pack_", false]], "_parse() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations._parse", false]], "_pointer (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._Pointer", false]], "_py_c_diff (c function)": [[15, "c._Py_c_diff", false]], "_py_c_neg (c function)": [[15, "c._Py_c_neg", false]], "_py_c_pow (c function)": [[15, "c._Py_c_pow", false]], "_py_c_prod (c function)": [[15, "c._Py_c_prod", false]], "_py_c_quot (c function)": [[15, "c._Py_c_quot", false]], "_py_c_sum (c function)": [[15, "c._Py_c_sum", false]], "_py_initializemain (c function)": [[34, "c._Py_InitializeMain", false]], "_py_nonestruct (c var)": [[3, "c._Py_NoneStruct", false]], "_pybytes_resize (c function)": [[9, "c._PyBytes_Resize", false]], "_pycfunctionfast (c type)": [[58, "c._PyCFunctionFast", false]], "_pycfunctionfastwithkeywords (c type)": [[58, "c._PyCFunctionFastWithKeywords", false]], "_pycode_getextra\uff08c \u51fd\u5f0f\uff09": [[13, "index-4", false]], "_pycode_setextra\uff08c \u51fd\u5f0f\uff09": [[13, "index-5", false]], "_pyeval_requestcodeextraindex\uff08c \u51fd\u5f0f\uff09": [[13, "index-3", false]], "_pyframeevalfunction (c type)": [[33, "c._PyFrameEvalFunction", false]], "_pyinterpreterframe (c struct)": [[26, "c._PyInterpreterFrame", false]], "_pyinterpreterstate_getevalframefunc (c function)": [[33, "c._PyInterpreterState_GetEvalFrameFunc", false]], "_pyinterpreterstate_setevalframefunc (c function)": [[33, "c._PyInterpreterState_SetEvalFrameFunc", false]], "_pyobject_getdictptr (c function)": [[49, "c._PyObject_GetDictPtr", false]], "_pyobject_new (c function)": [[3, "c._PyObject_New", false]], "_pyobject_newvar (c function)": [[3, "c._PyObject_NewVar", false]], "_pytuple_resize (c function)": [[60, "c._PyTuple_Resize", false]], "_register_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._register_task", false]], "_replace() (collections.somenamedtuple \u7684\u65b9\u6cd5)": [[160, "collections.somenamedtuple._replace", false]], "_setroot() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree._setroot", false]], "_simplecdata (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._SimpleCData", false]], "_structure() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators._structure", false]], "_thread": [[33, "index-38", false], [115, "module-_thread", false]], "_tkinter": [[369, "module-_tkinter", false]], "_type_ (ctypes._pointer \u7684\u5c6c\u6027)": [[176, "ctypes._Pointer._type_", false]], "_type_ (ctypes.array \u7684\u5c6c\u6027)": [[176, "ctypes.Array._type_", false]], "_unregister_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._unregister_task", false]], "_value_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._value_", false]], "_write() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler._write", false]], "_xoptions (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._xoptions", false]], "a (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.A", false]], "a-law": [[117, "index-2", false], [141, "index-1", false], [336, "index-0", false]], "a2b_base64() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_base64", false]], "a2b_hex() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_hex", false]], "a2b_qp() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_qp", false]], "a2b_uu() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_uu", false]], "a85decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.a85decode", false]], "a85encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.a85encode", false]], "a_altcharset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ALTCHARSET", false]], "a_attributes (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ATTRIBUTES", false]], "a_blink (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_BLINK", false]], "a_bold (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_BOLD", false]], "a_chartext (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_CHARTEXT", false]], "a_color (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_COLOR", false]], "a_dim (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_DIM", false]], "a_horizontal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_HORIZONTAL", false]], "a_invis (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_INVIS", false]], "a_italic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ITALIC", false]], "a_left (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_LEFT", false]], "a_low (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_LOW", false]], "a_normal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_NORMAL", false]], "a_protect (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_PROTECT", false]], "a_reverse (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_REVERSE", false]], "a_right (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_RIGHT", false]], "a_standout (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_STANDOUT", false]], "a_top (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_TOP", false]], "a_underline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_UNDERLINE", false]], "a_vertical (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_VERTICAL", false]], "abc": [[116, "module-abc", false]], "abc (abc \u4e2d\u7684\u985e\u5225)": [[116, "abc.ABC", false]], "abcmeta (abc \u4e2d\u7684\u985e\u5225)": [[116, "abc.ABCMeta", false]], "abday_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_1", false]], "abday_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_2", false]], "abday_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_3", false]], "abday_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_4", false]], "abday_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_5", false]], "abday_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_6", false]], "abday_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_7", false]], "abiflags (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.abiflags", false]], "abmon_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_1", false]], "abmon_10 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_10", false]], "abmon_11 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_11", false]], "abmon_12 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_12", false]], "abmon_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_2", false]], "abmon_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_3", false]], "abmon_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_4", false]], "abmon_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_5", false]], "abmon_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_6", false]], "abmon_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_7", false]], "abmon_8 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_8", false]], "abmon_9 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_9", false]], "abort (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ABORT", false]], "abort() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.abort", false]], "abort() (asyncio.datagramtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramTransport.abort", false]], "abort() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.abort", false]], "abort() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.abort", false]], "abort() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.abort", false]], "abort() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.abort", false]], "abortretryignore (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ABORTRETRYIGNORE", false]], "abort\uff08c \u51fd\u5f0f\uff09": [[59, "index-2", false]], "above() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.above", false]], "above_normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.ABOVE_NORMAL_PRIORITY_CLASS", false]], "abs": [[47, "index-2", false], [428, "index-103", false]], "abs()": [[225, "abs", false]], "abs() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.abs", false]], "abs() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.abs", false]], "absolute() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.absolute", false]], "absolutelinkerror": [[358, "tarfile.AbsoluteLinkError", false]], "absolutepatherror": [[358, "tarfile.AbsolutePathError", false]], "abspath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.abspath", false]], "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09": [[87, "term-abstract-base-class", true]], "abstractasynccontextmanager (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AbstractAsyncContextManager", false]], "abstractbasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.AbstractBasicAuthHandler", false]], "abstractchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.AbstractChildWatcher", false]], "abstractclassmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractclassmethod", false]], "abstractcontextmanager (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AbstractContextManager", false]], "abstractdigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.AbstractDigestAuthHandler", false]], "abstracteventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.AbstractEventLoop", false]], "abstracteventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.AbstractEventLoopPolicy", false]], "abstractmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractmethod", false]], "abstractproperty() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractproperty", false]], "abstractset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AbstractSet", false]], "abstractstaticmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractstaticmethod", false]], "accept() (multiprocessing.connection.listener \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Listener.accept", false]], "accept() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.accept", false]], "access() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.access", false]], "accumulate() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.accumulate", false]], "ack (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ACK", false]], "aclose() (agen \u7684\u65b9\u6cd5)": [[430, "agen.aclose", false]], "aclose() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.aclose", false]], "aclosing() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.aclosing", false]], "acos() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.acos", false]], "acos() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.acos", false]], "acosh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.acosh", false]], "acosh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.acosh", false]], "acquire() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.acquire", false]], "acquire() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.acquire", false]], "acquire() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.acquire", false]], "acquire() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.acquire", false]], "acquire() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.acquire", false]], "acquire() (multiprocessing.lock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Lock.acquire", false]], "acquire() (multiprocessing.rlock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.RLock.acquire", false]], "acquire() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.acquire", false]], "acquire() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.acquire", false]], "acquire() (threading.rlock \u7684\u65b9\u6cd5)": [[365, "threading.RLock.acquire", false]], "acquire() (threading.semaphore \u7684\u65b9\u6cd5)": [[365, "threading.Semaphore.acquire", false]], "acs_bbss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BBSS", false]], "acs_block (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BLOCK", false]], "acs_board (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BOARD", false]], "acs_bsbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSBS", false]], "acs_bssb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSSB", false]], "acs_bsss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSSS", false]], "acs_btee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BTEE", false]], "acs_bullet (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BULLET", false]], "acs_ckboard (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_CKBOARD", false]], "acs_darrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DARROW", false]], "acs_degree (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DEGREE", false]], "acs_diamond (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DIAMOND", false]], "acs_gequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_GEQUAL", false]], "acs_hline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_HLINE", false]], "acs_lantern (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LANTERN", false]], "acs_larrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LARROW", false]], "acs_lequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LEQUAL", false]], "acs_llcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LLCORNER", false]], "acs_lrcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LRCORNER", false]], "acs_ltee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LTEE", false]], "acs_nequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_NEQUAL", false]], "acs_pi (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PI", false]], "acs_plminus (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PLMINUS", false]], "acs_plus (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PLUS", false]], "acs_rarrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_RARROW", false]], "acs_rtee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_RTEE", false]], "acs_s1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S1", false]], "acs_s3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S3", false]], "acs_s7 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S7", false]], "acs_s9 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S9", false]], "acs_sbbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBBS", false]], "acs_sbsb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBSB", false]], "acs_sbss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBSS", false]], "acs_ssbb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSBB", false]], "acs_ssbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSBS", false]], "acs_sssb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSSB", false]], "acs_ssss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSSS", false]], "acs_sterling (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_STERLING", false]], "acs_ttee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_TTEE", false]], "acs_uarrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_UARROW", false]], "acs_ulcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_ULCORNER", false]], "acs_urcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_URCORNER", false]], "acs_vline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_VLINE", false]], "action (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.Action", false]], "action (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.action", false]], "actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.ACTIONS", false]], "activate_stack_trampoline() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.activate_stack_trampoline", false]], "active_children() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.active_children", false]], "active_count() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.active_count", false]], "actual() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.actual", false]], "add (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Add", false]], "add() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.add", false]], "add() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.add", false]], "add() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.add", false]], "add() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.add", false]], "add() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.add", false]], "add() (msilib.radiobuttongroup \u7684\u65b9\u6cd5)": [[281, "msilib.RadioButtonGroup.add", false]], "add() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.add", false]], "add() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.add", false]], "add() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.add", false]], "add() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.add", false]], "add() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.add", false]], "add_alias() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_alias", false]], "add_alternative() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_alternative", false]], "add_argument() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_argument", false]], "add_argument_group() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_argument_group", false]], "add_attachment() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_attachment", false]], "add_cgi_vars() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.add_cgi_vars", false]], "add_charset() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_charset", false]], "add_child_handler() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.add_child_handler", false]], "add_codec() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_codec", false]], "add_cookie_header() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.add_cookie_header", false]], "add_data() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_data", false]], "add_dll_directory() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.add_dll_directory", false]], "add_done_callback() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.add_done_callback", false]], "add_done_callback() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.add_done_callback", false]], "add_done_callback() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.add_done_callback", false]], "add_fallback() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.add_fallback", false]], "add_file() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.add_file", false]], "add_flag() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.add_flag", false]], "add_flag() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.add_flag", false]], "add_flag() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.add_flag", false]], "add_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.add_folder", false]], "add_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.add_folder", false]], "add_get_handler() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.add_get_handler", false]], "add_handler() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.add_handler", false]], "add_header() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_header", false]], "add_header() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.add_header", false]], "add_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.add_header", false]], "add_header() (wsgiref.headers.headers \u7684\u65b9\u6cd5)": [[407, "wsgiref.headers.Headers.add_header", false]], "add_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.add_history", false]], "add_label() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.add_label", false]], "add_mutually_exclusive_group() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_mutually_exclusive_group", false]], "add_note() (baseexception \u7684\u65b9\u6cd5)": [[213, "BaseException.add_note", false]], "add_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.add_option", false]], "add_parent() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.add_parent", false]], "add_password() (urllib.request.httppasswordmgr \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgr.add_password", false]], "add_password() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.add_password", false]], "add_reader() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_reader", false]], "add_related() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_related", false]], "add_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.add_section", false]], "add_section() (configparser.rawconfigparser \u7684\u65b9\u6cd5)": [[167, "configparser.RawConfigParser.add_section", false]], "add_sequence() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.add_sequence", false]], "add_set_handler() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.add_set_handler", false]], "add_signal_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_signal_handler", false]], "add_stream() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_stream", false]], "add_subparsers() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_subparsers", false]], "add_tables() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_tables", false]], "add_type() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.add_type", false]], "add_unredirected_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.add_unredirected_header", false]], "add_writer() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_writer", false]], "addasynccleanup() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.addAsyncCleanup", false]], "addaudithook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.addaudithook", false]], "addch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addch", false]], "addclasscleanup() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.addClassCleanup", false]], "addcleanup() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.addCleanup", false]], "addcomponent() (turtle.shape \u7684\u65b9\u6cd5)": [[384, "turtle.Shape.addcomponent", false]], "addduration() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addDuration", false]], "adderror() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addError", false]], "addexpectedfailure() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addExpectedFailure", false]], "addfailure() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addFailure", false]], "addfile() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.addfile", false]], "addfilter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.addFilter", false]], "addfilter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.addFilter", false]], "addhandler() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.addHandler", false]], "addinfourl (urllib.response \u4e2d\u7684\u985e\u5225)": [[395, "urllib.response.addinfourl", false]], "addition\uff08\u52a0\uff09": [[430, "index-69", false]], "addlevelname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.addLevelName", false]], "addmodulecleanup() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.addModuleCleanup", false]], "addnstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addnstr", false]], "addpackagepath() (\u65bc modulefinder \u6a21\u7d44\u4e2d)": [[279, "modulefinder.AddPackagePath", false]], "addr_spec (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.addr_spec", false]], "address (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.Address", false]], "address (email.headerregistry.singleaddressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.SingleAddressHeader.address", false]], "address (multiprocessing.connection.listener \u7684\u5c6c\u6027)": [[283, "multiprocessing.connection.Listener.address", false]], "address (multiprocessing.managers.basemanager \u7684\u5c6c\u6027)": [[283, "multiprocessing.managers.BaseManager.address", false]], "address_exclude() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.address_exclude", false]], "address_exclude() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.address_exclude", false]], "address_family (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.address_family", false]], "address_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.address_string", false]], "addresses (email.headerregistry.addressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.AddressHeader.addresses", false]], "addresses (email.headerregistry.group \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Group.addresses", false]], "addressheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.AddressHeader", false]], "addressof() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.addressof", false]], "addressvalueerror": [[259, "ipaddress.AddressValueError", false]], "addshape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.addshape", false]], "addsitedir() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.addsitedir", false]], "addskip() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSkip", false]], "addstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addstr", false]], "addsubtest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSubTest", false]], "addsuccess() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSuccess", false]], "addtest() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.addTest", false]], "addtests() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.addTests", false]], "addtypeequalityfunc() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.addTypeEqualityFunc", false]], "addunexpectedsuccess() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addUnexpectedSuccess", false]], "adjust_int_max_str_digits() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.adjust_int_max_str_digits", false]], "adjusted() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.adjusted", false]], "adler32() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.adler32", false]], "adpcm, intel/dvi": [[141, "index-1", false]], "adpcm2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.adpcm2lin", false]], "af_alg (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_ALG", false]], "af_can (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_CAN", false]], "af_divert (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_DIVERT", false]], "af_hyperv (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_HYPERV", false]], "af_inet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_INET", false]], "af_inet6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_INET6", false]], "af_link (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_LINK", false]], "af_packet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_PACKET", false]], "af_qipcrtr (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_QIPCRTR", false]], "af_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_RDS", false]], "af_unix (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_UNIX", false]], "af_unspec (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_UNSPEC", false]], "af_vsock (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_VSOCK", false]], "aifc": [[117, "module-aifc", false]], "aifc() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.aifc", false]], "aiff": [[117, "index-0", false], [153, "index-0", false]], "aiff() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.aiff", false]], "aiff-c": [[117, "index-0", false], [153, "index-0", false]], "aiter()": [[225, "aiter", false]], "alarm() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.alarm", false]], "alaw2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.alaw2lin", false]], "alert_description_handshake_failure (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE", false]], "alert_description_internal_error (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.ALERT_DESCRIPTION_INTERNAL_ERROR", false]], "alertdescription (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.AlertDescription", false]], "algorithm (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.algorithm", false]], "algorithms_available (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.algorithms_available", false]], "algorithms_guaranteed (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.algorithms_guaranteed", false]], "alias (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.alias", false]], "alias (pdb command)": [[297, "pdbcommand-alias", false]], "alias\uff08\u5225\u540d\uff09": [[344, "index-56", false]], "alignment() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.alignment", false]], "alive (weakref.finalize \u7684\u5c6c\u6027)": [[402, "weakref.finalize.alive", false]], "all()": [[225, "all", false]], "all_completed (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.ALL_COMPLETED", false]], "all_completed (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.ALL_COMPLETED", false]], "all_errors (\u65bc ftplib \u6a21\u7d44\u4e2d)": [[223, "ftplib.all_errors", false]], "all_features (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.all_features", false]], "all_frames (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.all_frames", false]], "all_properties (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.all_properties", false]], "all_suffixes() (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.all_suffixes", false]], "all_tasks() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.all_tasks", false]], "allocate_lock() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.allocate_lock", false]], "allocfunc (c type)": [[63, "c.allocfunc", false]], "allow_reuse_address (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.allow_reuse_address", false]], "allowed_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.allowed_domains", false]], "alt() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.alt", false]], "alt_digits (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ALT_DIGITS", false]], "altsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.altsep", false]], "altzone (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.altzone", false]], "always_eq (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.ALWAYS_EQ", false]], "always_typed_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.ALWAYS_TYPED_ACTIONS", false]], "ambiguousoptionerror": [[292, "optparse.AmbiguousOptionError", false]], "amper (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AMPER", false]], "amperequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AMPEREQUAL", false]], "anchor (importlib.resources \u4e2d\u7684\u985e\u5225)": [[252, "importlib.resources.Anchor", false]], "anchor (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.anchor", false]], "and": [[344, "index-4", false], [344, "index-6", false], [430, "index-74", false], [430, "index-84", false]], "and (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.And", false]], "and_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.and_", false]], "anext()": [[225, "anext", false]], "annassign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AnnAssign", false]], "annotated (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Annotated", false]], "annotated variable\uff08\u8a3b\u91cb\u8b8a\u6578\uff09": [[436, "index-15", false]], "annotated\uff08\u8a3b\u91cb\uff09": [[436, "index-15", false]], "annotation (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.annotation", false]], "annotations\uff08\u8a3b\u91cb\uff09": [[427, "index-34", false], [441, "index-6", false]], "annotation\uff08\u8a3b\u8a18\uff09": [[344, "index-55", false]], "annotation\uff08\u8a3b\u91cb\uff09": [[87, "term-annotation", true]], "anonymous\uff08\u533f\u540d\uff09": [[430, "index-90", false]], "answer_challenge() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.answer_challenge", false]], "anticipate_failure() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.anticipate_failure", false]], "any (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Any", false]], "any (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.ANY", false]], "any()": [[225, "any", false]], "any_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.ANY_CONTIGUOUS", false]], "anystr (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.AnyStr", false]], "api_version (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.api_version", false]], "apilevel (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.apilevel", false]], "apop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.apop", false]], "appdata": [[468, "index-5", false]], "append() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.append", false]], "append() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.append", false]], "append() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.append", false]], "append() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.append", false]], "append() (msilib.cab \u7684\u65b9\u6cd5)": [[281, "msilib.CAB.append", false]], "append() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.append", false]], "append() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.append", false]], "append()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "append_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.append_history_file", false]], "appendchild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.appendChild", false]], "appendleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.appendleft", false]], "application_uri() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.application_uri", false]], "apply (2to3 fixer)": [[112, "to3fixer-apply", false]], "apply() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.apply", false]], "apply_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.apply_async", false]], "apply_defaults() (inspect.boundarguments \u7684\u65b9\u6cd5)": [[255, "inspect.BoundArguments.apply_defaults", false]], "april (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.APRIL", false]], "architecture() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.architecture", false]], "archive (zipimport.zipimporter \u7684\u5c6c\u6027)": [[423, "zipimport.zipimporter.archive", false]], "aregtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.AREGTYPE", false]], "arepr (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.aRepr", false]], "arg (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.arg", false]], "argparse": [[120, "module-argparse", false]], "args (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.args", false]], "args (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.args", false]], "args (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.args", false]], "args (pdb command)": [[297, "pdbcommand-args", false]], "args (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.args", false]], "args (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.args", false]], "args (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.args", false]], "args_from_interpreter_flags() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.args_from_interpreter_flags", false]], "argtypes (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.argtypes", false]], "argument list\uff08\u5f15\u6578\u5217\u8868\uff09": [[430, "index-47", false]], "argumentdefaultshelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.ArgumentDefaultsHelpFormatter", false]], "argumenterror": [[120, "argparse.ArgumentError", false], [176, "ctypes.ArgumentError", false]], "argumentparser (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.ArgumentParser", false]], "arguments (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.arguments", false]], "arguments (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.arguments", false]], "argumenttypeerror": [[120, "argparse.ArgumentTypeError", false]], "argument\uff08\u5f15\u6578\uff09": [[85, "index-1", false], [87, "term-argument", true], [427, "index-31", false], [428, "index-33", false], [430, "index-47", false]], "argv (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.argv", false]], "argv\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-29", false]], "arithmetic": [[430, "index-1", false], [430, "index-59", false], [430, "index-64", false]], "arithmeticerror": [[213, "ArithmeticError", false]], "arithmetic\uff08\u7b97\u8853\uff09": [[344, "index-13", false]], "array": [[121, "module-array", false]], "array (array \u4e2d\u7684\u985e\u5225)": [[121, "array.array", false]], "array (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Array", false]], "array() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Array", false]], "array() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Array", false]], "array() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.Array", false]], "arraysize (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.arraysize", false]], "arrays\uff08\u9663\u5217\uff09": [[121, "index-0", false]], "array\uff08\u9663\u5217\uff09": [[344, "index-40", false], [428, "index-23", false]], "article() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.article", false]], "as": [[427, "index-10", false], [427, "index-16", false], [427, "index-18", false], [427, "index-9", false], [436, "index-34", false], [436, "index-35", false]], "as pattern, or pattern, capture pattern, wildcard pattern": [[427, "index-23", false]], "as_bytes() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.as_bytes", false]], "as_bytes() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.as_bytes", false]], "as_completed() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.as_completed", false]], "as_completed() (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.as_completed", false]], "as_file() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.as_file", false]], "as_integer_ratio() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.as_integer_ratio", false]], "as_integer_ratio() (float \u7684\u65b9\u6cd5)": [[344, "float.as_integer_ratio", false]], "as_integer_ratio() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.as_integer_ratio", false]], "as_integer_ratio() (int \u7684\u65b9\u6cd5)": [[344, "int.as_integer_ratio", false]], "as_posix() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.as_posix", false]], "as_string() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.as_string", false]], "as_string() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.as_string", false]], "as_tuple() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.as_tuple", false]], "as_uri() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.as_uri", false]], "ascii": [[49, "index-1", false], [434, "index-1", false], [435, "index-17", false]], "ascii (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.ASCII", false]], "ascii()": [[225, "ascii", false]], "ascii() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ascii", false]], "ascii_letters (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_letters", false]], "ascii_lowercase (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_lowercase", false]], "ascii_uppercase (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_uppercase", false]], "asctime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.asctime", false]], "asdict() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.asdict", false]], "asend() (agen \u7684\u65b9\u6cd5)": [[430, "agen.asend", false]], "asin() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.asin", false]], "asin() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.asin", false]], "asinh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.asinh", false]], "asinh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.asinh", false]], "askcolor() (\u65bc tkinter.colorchooser \u6a21\u7d44\u4e2d)": [[370, "tkinter.colorchooser.askcolor", false]], "askdirectory() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askdirectory", false]], "askfloat() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askfloat", false]], "askinteger() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askinteger", false]], "askokcancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askokcancel", false]], "askopenfile() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfile", false]], "askopenfilename() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfilename", false]], "askopenfilenames() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfilenames", false]], "askopenfiles() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfiles", false]], "askquestion() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askquestion", false]], "askretrycancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askretrycancel", false]], "asksaveasfile() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.asksaveasfile", false]], "asksaveasfilename() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.asksaveasfilename", false]], "askstring() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askstring", false]], "askyesno() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askyesno", false]], "askyesnocancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askyesnocancel", false]], "assert": [[213, "index-4", false], [436, "index-18", true]], "assert (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Assert", false]], "assert_any_await() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_any_await", false]], "assert_any_call() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_any_call", false]], "assert_awaited() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited", false]], "assert_awaited_once() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_once", false]], "assert_awaited_once_with() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_once_with", false]], "assert_awaited_with() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_with", false]], "assert_called() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called", false]], "assert_called_once() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_once", false]], "assert_called_once_with() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_once_with", false]], "assert_called_with() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_with", false]], "assert_has_awaits() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_has_awaits", false]], "assert_has_calls() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_has_calls", false]], "assert_never() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.assert_never", false]], "assert_not_awaited() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_not_awaited", false]], "assert_not_called() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_not_called", false]], "assert_python_failure() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.assert_python_failure", false]], "assert_python_ok() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.assert_python_ok", false]], "assert_type() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.assert_type", false]], "assertalmostequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertAlmostEqual", false]], "assertcountequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertCountEqual", false]], "assertdictequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertDictEqual", false]], "assertequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertEqual", false]], "assertfalse() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertFalse", false]], "assertgreater() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertGreater", false]], "assertgreaterequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertGreaterEqual", false]], "assertin() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIn", false]], "assertinbytecode() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.assertInBytecode", false]], "assertionerror": [[213, "AssertionError", false], [436, "index-19", false]], "assertions\uff08\u65b7\u8a00\uff09": [[436, "index-18", false]], "assertis() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIs", false]], "assertisinstance() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsInstance", false]], "assertisnone() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNone", false]], "assertisnot() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNot", false]], "assertisnotnone() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNotNone", false]], "assertless() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLess", false]], "assertlessequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLessEqual", false]], "assertlistequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertListEqual", false]], "assertlogs() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLogs", false]], "assertmultilineequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertMultiLineEqual", false]], "assertnologs() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNoLogs", false]], "assertnotalmostequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotAlmostEqual", false]], "assertnotequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotEqual", false]], "assertnotin() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotIn", false]], "assertnotinbytecode() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.assertNotInBytecode", false]], "assertnotisinstance() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotIsInstance", false]], "assertnotregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotRegex", false]], "assertraises() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRaises", false]], "assertraisesregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRaisesRegex", false]], "assertregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRegex", false]], "asserts (2to3 fixer)": [[112, "to3fixer-asserts", false]], "assertsequenceequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertSequenceEqual", false]], "assertsetequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertSetEqual", false]], "asserttrue() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertTrue", false]], "asserttupleequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertTupleEqual", false]], "assertwarns() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertWarns", false]], "assertwarnsregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertWarnsRegex", false]], "assign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Assign", false]], "assignment expression\uff08\u8ce6\u503c\u904b\u7b97\u5f0f\uff09": [[430, "index-86", false]], "assignment statement\uff08\u8ce6\u503c\u9673\u8ff0\u5f0f\uff09": [[436, "index-4", false]], "assignment\uff08\u8ce6\u503c\uff09": [[344, "index-24", false], [428, "index-22", false], [428, "index-48", false], [428, "index-52", false], [436, "index-12", false], [436, "index-14", false], [436, "index-15", false], [436, "index-4", false], [436, "index-6", false], [436, "index-8", false], [436, "index-9", false]], "assignment\uff08\u8ce6\u503c\uff09\u3001annotated\uff08\u8a3b\u91cb\uff09": [[436, "index-15", false]], "assignment\uff08\u8ce6\u503c\uff09\u3001augmented\uff08\u589e\u5f37\uff09": [[436, "index-14", false]], "ast": [[122, "module-ast", false]], "ast (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AST", false]], "ast \u547d\u4ee4\u5217\u9078\u9805": [[122, "cmdoption-ast-a", false], [122, "cmdoption-ast-h", false], [122, "cmdoption-ast-i", false], [122, "cmdoption-ast-indent", false], [122, "cmdoption-ast-m", false], [122, "cmdoption-ast-mode", false], [122, "cmdoption-ast-no-type-comments", false]], "astimezone() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.astimezone", false]], "astuple() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.astuple", false]], "async": [[427, "index-49", false]], "async (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ASYNC", false]], "async def": [[427, "index-48", false]], "async for": [[427, "index-50", false], [430, "index-12", false]], "async with": [[427, "index-51", false]], "asynccontextdecorator (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AsyncContextDecorator", false]], "asynccontextmanager (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncContextManager", false]], "asynccontextmanager() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.asynccontextmanager", false]], "asyncexitstack (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AsyncExitStack", false]], "asyncfor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncFor", false]], "asyncfunctiondef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncFunctionDef", false]], "asyncgenerator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncGenerator", false]], "asyncgenerator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncGenerator", false]], "asyncgeneratortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.AsyncGeneratorType", false]], "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09": [[87, "term-asynchronous-context-manager", true]], "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": [[87, "term-asynchronous-generator-iterator", true]], "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": [[87, "term-asynchronous-generator", true], [428, "index-41", false]], "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": [[87, "term-asynchronous-iterable", true]], "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09": [[87, "term-asynchronous-iterator", true], [428, "index-41", false]], "asynchronous-generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": [[430, "index-35", false]], "asyncio": [[123, "module-asyncio", false]], "asyncio.subprocess.devnull (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.DEVNULL", false]], "asyncio.subprocess.pipe (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.PIPE", false]], "asyncio.subprocess.process (\u5167\u5efa\u985e\u5225)": [[137, "asyncio.subprocess.Process", false]], "asyncio.subprocess.stdout (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.STDOUT", false]], "asynciterable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncIterable", false]], "asynciterable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncIterable", false]], "asynciterator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncIterator", false]], "asynciterator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncIterator", false]], "asyncmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.AsyncMock", false]], "asyncresult (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.AsyncResult", false]], "asyncsetup() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.asyncSetUp", false]], "asyncteardown() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.asyncTearDown", false]], "asyncwith (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncWith", false]], "at (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AT", false]], "at_eof() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.at_eof", false]], "atan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.atan", false]], "atan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atan", false]], "atan2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atan2", false]], "atanh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.atanh", false]], "atanh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atanh", false]], "atequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ATEQUAL", false]], "atexit": [[140, "module-atexit", false]], "atexit (weakref.finalize \u7684\u5c6c\u6027)": [[402, "weakref.finalize.atexit", false]], "athrow() (agen \u7684\u65b9\u6cd5)": [[430, "agen.athrow", false]], "atof() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.atof", false]], "atoi() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.atoi", false]], "atom": [[430, "index-2", false]], "attach() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.attach", false]], "attach_loop() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.attach_loop", false]], "attach_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.attach_mock", false]], "attlistdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.AttlistDeclHandler", false]], "attrgetter() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.attrgetter", false]], "attrib (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.attrib", false]], "attribute (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Attribute", false]], "attribute reference\uff08\u5c6c\u6027\u53c3\u7167\uff09": [[430, "index-39", false]], "attributeerror": [[213, "AttributeError", false], [430, "index-40", false]], "attributes (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.attributes", false]], "attributesimpl (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.AttributesImpl", false]], "attributesnsimpl (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.AttributesNSImpl", false]], "attribute\uff08\u5c6c\u6027\uff09": [[87, "term-attribute", true], [428, "index-47", false], [428, "index-48", false], [428, "index-5", false], [428, "index-51", false], [428, "index-52", false], [430, "index-39", false], [436, "index-23", false], [436, "index-4", false], [436, "index-8", false]], "attroff() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attroff", false]], "attron() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attron", false]], "attrset() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attrset", false]], "audio interchange file format\uff08\u97f3\u8a0a\u4ea4\u63db\u6a94\u6848\u683c\u5f0f\uff09": [[117, "index-0", false], [153, "index-0", false]], "audio_file_encoding_adpcm_g721 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G721", false]], "audio_file_encoding_adpcm_g722 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G722", false]], "audio_file_encoding_adpcm_g723_3 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3", false]], "audio_file_encoding_adpcm_g723_5 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5", false]], "audio_file_encoding_alaw_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ALAW_8", false]], "audio_file_encoding_double (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_DOUBLE", false]], "audio_file_encoding_float (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_FLOAT", false]], "audio_file_encoding_linear_16 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_16", false]], "audio_file_encoding_linear_24 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_24", false]], "audio_file_encoding_linear_32 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_32", false]], "audio_file_encoding_linear_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_8", false]], "audio_file_encoding_mulaw_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_MULAW_8", false]], "audio_file_magic (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_MAGIC", false]], "audiodev": [[295, "index-1", false]], "audioop": [[141, "module-audioop", false]], "audit events\uff08\u7a3d\u6838\u4e8b\u4ef6\uff09": [[142, "index-0", false]], "audit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.audit", false]], "auditing": [[352, "index-2", false]], "augassign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AugAssign", false]], "augmented assignment\uff08\u589e\u5f37\u8ce6\u503c\uff09": [[436, "index-14", false]], "augmented\uff08\u589e\u5f37\uff09": [[436, "index-14", false]], "august (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.AUGUST", false]], "auth() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.auth", false]], "auth() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.auth", false]], "authenticate() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.authenticate", false]], "authenticationerror": [[283, "multiprocessing.AuthenticationError", false]], "authenticators() (netrc.netrc \u7684\u65b9\u6cd5)": [[286, "netrc.netrc.authenticators", false]], "authkey (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.authkey", false]], "auto (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.auto", false]], "autocommit (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.autocommit", false]], "autorange() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.autorange", false]], "available_timezones() (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.available_timezones", false]], "avg() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.avg", false]], "avgpp() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.avgpp", false]], "avoids_symlink_attacks (shutil.rmtree \u7684\u5c6c\u6027)": [[332, "shutil.rmtree.avoids_symlink_attacks", false]], "await": [[427, "index-49", false], [430, "index-13", false], [430, "index-57", false]], "await (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Await", false]], "await (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AWAIT", false]], "await_args (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_args", false]], "await_args_list (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_args_list", false]], "await_count (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_count", false]], "awaitable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Awaitable", false]], "awaitable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Awaitable", false]], "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09": [[87, "term-awaitable", true]], "b\"": [[435, "index-19", false]], "b'": [[435, "index-19", false]], "b16decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b16decode", false]], "b16encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b16encode", false]], "b2a_base64() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_base64", false]], "b2a_hex() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_hex", false]], "b2a_qp() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_qp", false]], "b2a_uu() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_uu", false]], "b32decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32decode", false]], "b32encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32encode", false]], "b32hexdecode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32hexdecode", false]], "b32hexencode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32hexencode", false]], "b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b64decode", false]], "b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b64encode", false]], "b85decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b85decode", false]], "b85encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b85encode", false]], "babyl (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Babyl", false]], "babylmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.BabylMessage", false]], "back() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.back", false]], "backslash character\uff08\u53cd\u659c\u7dda\u5b57\u5143\uff09": [[435, "index-6", false]], "backslashreplace": [[158, "index-1", false]], "backslashreplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.backslashreplace_errors", false]], "backup() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.backup", false]], "backward() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.backward", false]], "badgzipfile": [[234, "gzip.BadGzipFile", false]], "badoptionerror": [[292, "optparse.BadOptionError", false]], "badstatusline": [[242, "http.client.BadStatusLine", false]], "badzipfile": [[422, "zipfile.BadZipFile", false], [422, "zipfile.BadZipfile", false]], "balloon (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Balloon", false]], "barrier (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Barrier", false]], "barrier (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Barrier", false]], "barrier (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Barrier", false]], "barrier() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Barrier", false]], "base64": [[143, "index-0", false], [143, "module-base64", false], [146, "index-0", false]], "base64 encoding\uff08base64 \u7de8\u78bc\uff09": [[143, "index-0", false]], "base_exec_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.base_exec_prefix", false]], "base_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.base_prefix", false]], "basecflags": [[456, "envvar-BASECFLAGS", false]], "basecgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.BaseCGIHandler", false]], "basecookie (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.BaseCookie", false]], "basecppflags": [[456, "envvar-BASECPPFLAGS", false]], "baseexception": [[213, "BaseException", false]], "baseexceptiongroup": [[213, "BaseExceptionGroup", false]], "basehandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.BaseHandler", false]], "basehandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.BaseHandler", false]], "baseheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.BaseHeader", false]], "basehttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.BaseHTTPRequestHandler", false]], "basemanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.BaseManager", false]], "basename() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.basename", false]], "baseprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BaseProtocol", false]], "baseproxy (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.BaseProxy", false]], "baserequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.BaseRequestHandler", false]], "baserotatinghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.BaseRotatingHandler", false]], "baseselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.BaseSelector", false]], "baseserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.BaseServer", false]], "basestring (2to3 fixer)": [[112, "to3fixer-basestring", false]], "basetransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BaseTransport", false]], "basicconfig() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.basicConfig", false]], "basiccontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.BasicContext", false]], "basicinterpolation (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.BasicInterpolation", false]], "batched() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.batched", false]], "baudrate() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.baudrate", false]], "bbox() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.bbox", false]], "bdaddr_any (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.BDADDR_ANY", false]], "bdaddr_local (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.BDADDR_LOCAL", false]], "bdb": [[144, "module-bdb", false], [297, "index-1", false]], "bdb (bdb \u4e2d\u7684\u985e\u5225)": [[144, "bdb.Bdb", false]], "bdbquit": [[144, "bdb.BdbQuit", false]], "bdfl": [[87, "term-BDFL", true]], "beep() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.beep", false]], "beep() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.Beep", false]], "before_async_with (opcode)": [[191, "opcode-BEFORE_ASYNC_WITH", false]], "before_with (opcode)": [[191, "opcode-BEFORE_WITH", false]], "begin_fill() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.begin_fill", false]], "begin_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.begin_poly", false]], "bel (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.BEL", false]], "below() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.below", false]], "below_normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.BELOW_NORMAL_PRIORITY_CLASS", false]], "benchmarking\uff08\u57fa\u6e96\u6e2c\u8a66\uff09": [[366, "index-12", false], [366, "index-6", false], [366, "index-7", false]], "betavariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.betavariate", false]], "bgcolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bgcolor", false]], "bgpic() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bgpic", false]], "bias() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.bias", false]], "bidirectional() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.bidirectional", false]], "bigaddrspacetest() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.bigaddrspacetest", false]], "bigendianstructure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.BigEndianStructure", false]], "bigendianunion (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.BigEndianUnion", false]], "bigmemtest() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.bigmemtest", false]], "bin()": [[225, "bin", false]], "binary (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Binary", false]], "binary (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.Binary", false]], "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09": [[87, "term-binary-file", true]], "binary literal\uff08\u4e8c\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "binary mode\uff08\u4e8c\u9032\u4f4d\u6a21\u5f0f\uff09": [[225, "index-8", false]], "binary operator\uff08\u4e8c\u5143\u904b\u7b97\u5b50\uff09": [[344, "index-13", false], [430, "index-69", false], [430, "index-70", false]], "binary semaphores": [[115, "index-0", false]], "binary sequence types\uff08\u4e8c\u9032\u4f4d\u5e8f\u5217\u578b\u5225\uff09": [[344, "index-39", false]], "binary_op (opcode)": [[191, "opcode-BINARY_OP", false]], "binary_slice (opcode)": [[191, "opcode-BINARY_SLICE", false]], "binary_subscr (opcode)": [[191, "opcode-BINARY_SUBSCR", false]], "binaryfunc (c type)": [[63, "c.binaryfunc", false]], "binaryio (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.BinaryIO", false]], "binary\uff08\u4e8c\u9032\u4f4d\uff09": [[344, "index-12", false], [347, "index-0", false], [430, "index-64", false], [430, "index-73", false]], "binascii": [[146, "module-binascii", false]], "bind (widgets)": [[369, "index-5", false]], "bind() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.bind", false]], "bind() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.bind", false]], "bind_partial() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.bind_partial", false]], "bind_port() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.bind_port", false]], "bind_textdomain_codeset() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.bind_textdomain_codeset", false]], "bind_unix_socket() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.bind_unix_socket", false]], "binding\uff08\u7d81\u5b9a\uff09": [[427, "index-28", false], [427, "index-42", false]], "binding\uff08\u7e6b\u7d50\uff09": [[429, "index-4", false], [436, "index-34", false], [436, "index-36", false], [436, "index-4", false], [436, "index-43", false]], "bindtextdomain() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.bindtextdomain", false]], "bindtextdomain() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.bindtextdomain", false]], "binomialvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.binomialvariate", false]], "binop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BinOp", false]], "bisect": [[147, "module-bisect", false]], "bisect() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect", false]], "bisect_left() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect_left", false]], "bisect_right() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect_right", false]], "bit_count() (int \u7684\u65b9\u6cd5)": [[344, "int.bit_count", false]], "bit_length() (int \u7684\u65b9\u6cd5)": [[344, "int.bit_length", false]], "bitand (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitAnd", false]], "bitmap() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.bitmap", false]], "bitor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitOr", false]], "bits_per_digit (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.bits_per_digit", false]], "bitwise\uff08\u4f4d\u5143\uff09": [[344, "index-16", false], [430, "index-59", false], [430, "index-73", false], [430, "index-74", false], [430, "index-75", false], [430, "index-76", false]], "bitxor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitXor", false]], "bk() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bk", false]], "bkgd() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.bkgd", false]], "bkgdset() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.bkgdset", false]], "blake2b() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b", false]], "blake2b, blake2s": [[235, "index-4", false]], "blake2b.max_digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.MAX_DIGEST_SIZE", false]], "blake2b.max_key_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.MAX_KEY_SIZE", false]], "blake2b.person_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.PERSON_SIZE", false]], "blake2b.salt_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.SALT_SIZE", false]], "blake2s() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s", false]], "blake2s.max_digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.MAX_DIGEST_SIZE", false]], "blake2s.max_key_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.MAX_KEY_SIZE", false]], "blake2s.person_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.PERSON_SIZE", false]], "blake2s.salt_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.SALT_SIZE", false]], "blank line\uff08\u7a7a\u767d\u5217\uff09": [[435, "index-7", false]], "bldshared": [[456, "envvar-BLDSHARED", false]], "blktype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.BLKTYPE", false]], "blob (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Blob", false]], "blobopen() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.blobopen", false]], "block": [[429, "index-0", false], [429, "index-1", false]], "block_on_close (socketserver.threadingmixin \u7684\u5c6c\u6027)": [[338, "socketserver.ThreadingMixIn.block_on_close", false]], "block_size (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.block_size", false]], "blocked_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.blocked_domains", false]], "blockingioerror": [[213, "BlockingIOError", false], [258, "io.BlockingIOError", false]], "blocksize (http.client.httpconnection \u7684\u5c6c\u6027)": [[242, "http.client.HTTPConnection.blocksize", false]], "bnf": [[430, "index-0", false], [434, "index-0", false]], "body": [[428, "index-91", false]], "body() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.body", false]], "body() (tkinter.simpledialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.simpledialog.Dialog.body", false]], "body_encode() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.body_encode", false]], "body_encoding (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.body_encoding", false]], "body_line_iterator() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators.body_line_iterator", false]], "bold (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.BOLD", false]], "bom (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM", false]], "bom_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_BE", false]], "bom_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_LE", false]], "bom_utf16 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16", false]], "bom_utf16_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16_BE", false]], "bom_utf16_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16_LE", false]], "bom_utf32 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32", false]], "bom_utf32_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32_BE", false]], "bom_utf32_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32_LE", false]], "bom_utf8 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF8", false]], "bool (\u5167\u5efa\u985e\u5225)": [[225, "bool", false]], "boolean_states (configparser.configparser \u7684\u5c6c\u6027)": [[167, "configparser.ConfigParser.BOOLEAN_STATES", false]], "boolean\uff08\u5e03\u6797\u503c\uff09": [[225, "index-0", false]], "boolean\uff08\u5e03\u6797\uff09": [[344, "index-1", false], [344, "index-11", false], [344, "index-17", false], [344, "index-5", false], [428, "index-12", false], [430, "index-82", false]], "boolop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BoolOp", false]], "bootstrap() (\u65bc ensurepip \u6a21\u7d44\u4e2d)": [[210, "ensurepip.bootstrap", false]], "border() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.border", false]], "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09": [[87, "term-borrowed-reference", true]], "bottom() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.bottom", false]], "bottom_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.bottom_panel", false]], "boundarguments (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.BoundArguments", false]], "boundaryerror": [[199, "email.errors.BoundaryError", false]], "boundedsemaphore (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.BoundedSemaphore", false]], "boundedsemaphore (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.BoundedSemaphore", false]], "boundedsemaphore (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.BoundedSemaphore", false]], "boundedsemaphore() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.BoundedSemaphore", false]], "box() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.box", false]], "bpbynumber (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.bpbynumber", false]], "bpformat() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.bpformat", false]], "bplist (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.bplist", false]], "bpprint() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.bpprint", false]], "branch (monitoring event)": [[353, "monitoring-event-BRANCH", false]], "break": [[427, "index-13", false], [427, "index-15", false], [427, "index-5", false], [427, "index-7", false], [436, "index-30", true]], "break (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Break", false]], "break (pdb command)": [[297, "pdbcommand-break", false]], "break_anywhere() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.break_anywhere", false]], "break_here() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.break_here", false]], "break_long_words (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.break_long_words", false]], "break_on_hyphens (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.break_on_hyphens", false]], "breakpoint (bdb \u4e2d\u7684\u985e\u5225)": [[144, "bdb.Breakpoint", false]], "breakpoint()": [[225, "breakpoint", false]], "breakpointhook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.breakpointhook", false]], "breakpoints\uff08\u4e2d\u65b7\u9ede\uff09": [[247, "index-4", false]], "broadcast_address (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.broadcast_address", false]], "broadcast_address (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.broadcast_address", false]], "broken (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.broken", false]], "broken (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.broken", false]], "brokenbarriererror": [[138, "asyncio.BrokenBarrierError", false], [365, "threading.BrokenBarrierError", false]], "brokenexecutor": [[166, "concurrent.futures.BrokenExecutor", false]], "brokenpipeerror": [[213, "BrokenPipeError", false]], "brokenprocesspool": [[166, "concurrent.futures.process.BrokenProcessPool", false]], "brokenthreadpool": [[166, "concurrent.futures.thread.BrokenThreadPool", false]], "browser": [[403, "index-0", false], [403, "index-1", false]], "bs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.BS", false]], "bsddbshelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.BsdDbShelf", false]], "buf (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.buf", false]], "buffer (2to3 fixer)": [[112, "to3fixer-buffer", false]], "buffer (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Buffer", false]], "buffer (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.buffer", false]], "buffer (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.buffer", false]], "buffer interface\uff08\u7de9\u885d\u4ecb\u9762\uff09": [[7, "index-0", false]], "buffer object\uff08\u7de9\u885d\u7269\u4ef6\uff09": [[7, "index-0", false]], "buffer protocol\uff08\u7de9\u885d\u5340\u5354\u5b9a\uff09": [[344, "index-31", false], [344, "index-39", false]], "buffer protocol\uff08\u7de9\u885d\u5354\u5b9a\uff09": [[7, "index-0", false]], "buffer size, i/o\uff08\u7de9\u885d\u5340\u5927\u5c0f\u3001i/o\uff09": [[225, "index-8", false]], "buffer_info() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.buffer_info", false]], "buffer_size (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_size", false]], "buffer_text (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_text", false]], "buffer_updated() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.buffer_updated", false]], "buffer_used (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_used", false]], "bufferediobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedIOBase", false]], "bufferedprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BufferedProtocol", false]], "bufferedrandom (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedRandom", false]], "bufferedreader (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedReader", false]], "bufferedrwpair (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedRWPair", false]], "bufferedwriter (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedWriter", false]], "buffererror": [[213, "BufferError", false]], "bufferflags (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.BufferFlags", false]], "bufferingformatter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.BufferingFormatter", false]], "bufferinghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.BufferingHandler", false]], "buffering\uff08\u7de9\u885d\uff09": [[225, "index-8", false], [337, "index-6", false]], "buffertooshort": [[283, "multiprocessing.BufferTooShort", false]], "bufsize() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.bufsize", false]], "build_const_key_map (opcode)": [[191, "opcode-BUILD_CONST_KEY_MAP", false]], "build_list (opcode)": [[191, "opcode-BUILD_LIST", false]], "build_map (opcode)": [[191, "opcode-BUILD_MAP", false]], "build_opener() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.build_opener", false]], "build_set (opcode)": [[191, "opcode-BUILD_SET", false]], "build_slice (opcode)": [[191, "opcode-BUILD_SLICE", false]], "build_string (opcode)": [[191, "opcode-BUILD_STRING", false]], "build_tuple (opcode)": [[191, "opcode-BUILD_TUPLE", false]], "built-in function": [[225, "abs", false], [225, "aiter", false], [225, "all", false], [225, "anext", false], [225, "any", false], [225, "ascii", false], [225, "bin", false], [225, "breakpoint", false], [225, "callable", false], [225, "chr", false], [225, "classmethod", false], [225, "compile", false], [225, "delattr", false], [225, "dir", false], [225, "divmod", false], [225, "enumerate", false], [225, "eval", false], [225, "exec", false], [225, "filter", false], [225, "format", false], [225, "getattr", false], [225, "globals", false], [225, "hasattr", false], [225, "hash", false], [225, "help", false], [225, "hex", false], [225, "id", false], [225, "import__", false], [225, "input", false], [225, "isinstance", false], [225, "issubclass", false], [225, "iter", false], [225, "len", false], [225, "locals", false], [225, "map", false], [225, "max", false], [225, "min", false], [225, "next", false], [225, "oct", false], [225, "open", false], [225, "ord", false], [225, "pow", false], [225, "print", false], [225, "property.deleter", false], [225, "property.getter", false], [225, "property.setter", false], [225, "repr", false], [225, "reversed", false], [225, "round", false], [225, "setattr", false], [225, "sorted", false], [225, "staticmethod", false], [225, "sum", false], [225, "vars", false], [225, "zip", false], [283, "multiprocessing.Manager", false]], "built-in function\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[22, "index-1", false], [31, "index-1", false], [31, "index-2", false], [38, "index-1", false], [38, "index-2", false], [40, "index-0", false], [47, "index-0", false], [47, "index-1", false], [47, "index-2", false], [47, "index-3", false], [47, "index-4", false], [47, "index-5", false], [55, "index-1", false], [58, "index-0", false], [58, "index-1", false], [63, "index-1", false], [63, "index-2", false], [75, "index-3", false], [191, "index-1", false], [225, "index-2", false], [307, "index-0", false], [307, "index-2", false], [344, "index-13", false], [344, "index-20", false], [344, "index-22", false], [344, "index-52", false], [344, "index-63", false], [344, "index-64", false], [344, "index-65", false], [385, "index-4", false], [427, "index-8", false], [428, "index-1", false], [428, "index-100", false], [428, "index-101", false], [428, "index-102", false], [428, "index-103", false], [428, "index-104", false], [428, "index-105", false], [428, "index-15", false], [428, "index-19", false], [428, "index-27", false], [428, "index-30", false], [428, "index-42", false], [428, "index-55", false], [428, "index-69", false], [428, "index-77", false], [428, "index-78", false], [428, "index-80", false], [428, "index-86", false], [428, "index-98", false], [430, "index-53", false], [436, "index-3", false], [436, "index-44", false], [437, "index-6", false], [446, "index-0", false], [451, "index-0", false]], "built-in function\uff08\u5185\u5efa\u51fd\u5f0f\uff09": [[54, "index-0", false], [54, "index-1", false]], "built-in method\uff08\u5167\u5efa\u65b9\u6cd5\uff09": [[428, "index-43", false], [430, "index-53", false]], "built-in\uff08\u5167\u5efa\uff09": [[344, "index-0", false], [428, "index-43", false]], "builtin_module_names (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.builtin_module_names", false]], "builtinfunctiontype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.BuiltinFunctionType", false]], "builtinimporter (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.BuiltinImporter", false]], "builtinmethodtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.BuiltinMethodType", false]], "builtins": [[148, "module-builtins", false]], "builtins\uff08\u5167\u5efa\uff09": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [225, "index-13", false], [437, "index-2", false], [450, "index-7", false]], "bulit-in function\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[49, "index-0", false], [49, "index-1", false], [49, "index-3", false], [49, "index-6", false], [49, "index-7", false], [49, "index-8", false]], "busy_retry() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.busy_retry", false]], "button_alt (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_ALT", false]], "button_ctrl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_CTRL", false]], "button_shift (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_SHIFT", false]], "buttonbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ButtonBox", false]], "buttonbox() (tkinter.simpledialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.simpledialog.Dialog.buttonbox", false]], "buttonn_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_CLICKED", false]], "buttonn_double_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_DOUBLE_CLICKED", false]], "buttonn_pressed (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_PRESSED", false]], "buttonn_released (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_RELEASED", false]], "buttonn_triple_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_TRIPLE_CLICKED", false]], "bye() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bye", false]], "byref() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.byref", false]], "byte-code\uff08\u4f4d\u5143\u7d44\u78bc\uff09": [[311, "index-0", false]], "bytearray (%)": [[344, "index-45", false]], "bytearray (\u5167\u5efa\u985e\u5225)": [[344, "bytearray", false]], "bytearray.splitlines \u65b9\u6cd5": [[344, "index-44", false]], "bytearray\uff08\u4f4d\u5143\u7d44\u9663\u5217\uff09": [[8, "index-0", false], [344, "index-23", false], [344, "index-40", false], [344, "index-42", false], [344, "index-43", false], [344, "index-45", false], [428, "index-26", false]], "bytecode (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Bytecode", false]], "bytecode.codeobj (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Bytecode.codeobj", false]], "bytecode.first_line (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Bytecode.first_line", false]], "bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.BYTECODE_SUFFIXES", false]], "bytecodetestcase (test.support.bytecode_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.bytecode_helper.BytecodeTestCase", false]], "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09": [[87, "term-bytecode", true], [428, "index-57", false]], "byteorder (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.byteorder", false]], "bytes (%)": [[344, "index-45", false]], "bytes (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.bytes", false]], "bytes (\u5167\u5efa\u985e\u5225)": [[344, "bytes", false]], "bytes literal\uff08\u4f4d\u5143\u7d44\u5e38\u6578\uff09": [[435, "index-17", false], [435, "index-19", false]], "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09": [[87, "term-bytes-like-object", true]], "bytes.splitlines \u65b9\u6cd5": [[344, "index-44", false]], "bytes_le (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.bytes_le", false]], "bytes_warning (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.bytes_warning", false]], "bytesfeedparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesFeedParser", false]], "bytesgenerator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.BytesGenerator", false]], "bytesheaderparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesHeaderParser", false]], "bytesio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BytesIO", false]], "bytesparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesParser", false]], "bytestring (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ByteString", false]], "bytestring (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ByteString", false]], "byteswap() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.byteswap", false]], "byteswap() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.byteswap", false]], "byteswarning": [[213, "BytesWarning", false]], "bytes\uff08\u4f4d\u5143\u7d44\uff09": [[9, "index-0", false], [49, "index-3", false], [344, "index-31", false], [344, "index-40", false], [344, "index-41", false], [344, "index-43", false], [344, "index-45", false], [428, "index-21", false], [428, "index-77", false]], "byte\uff08\u4f4d\u5143\u7d44\uff09": [[428, "index-21", false]], "bz2": [[149, "module-bz2", false]], "bz2compressor (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2Compressor", false]], "bz2decompressor (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2Decompressor", false]], "bz2file (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2File", false]], "c": [[344, "index-11", false], [347, "index-0", false], [428, "index-13", false], [428, "index-4", false], [428, "index-42", false], [430, "index-77", false], [435, "index-23", false]], "c-contiguous\uff08c \u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "index-10", false]], "c14nwritertarget (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.C14NWriterTarget", false]], "c_bool (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_bool", false]], "c_byte (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_byte", false]], "c_char (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_char", false]], "c_char_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_char_p", false]], "c_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.C_CONTIGUOUS", false]], "c_contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.c_contiguous", false]], "c_double (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_double", false]], "c_float (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_float", false]], "c_int (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int", false]], "c_int16 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int16", false]], "c_int32 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int32", false]], "c_int64 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int64", false]], "c_int8 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int8", false]], "c_long (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_long", false]], "c_longdouble (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_longdouble", false]], "c_longlong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_longlong", false]], "c_raise (monitoring event)": [[353, "monitoring-event-C_RAISE", false]], "c_return (monitoring event)": [[353, "monitoring-event-C_RETURN", false]], "c_short (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_short", false]], "c_size_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_size_t", false]], "c_ssize_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ssize_t", false]], "c_time_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_time_t", false]], "c_ubyte (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ubyte", false]], "c_uint (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint", false]], "c_uint16 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint16", false]], "c_uint32 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint32", false]], "c_uint64 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint64", false]], "c_uint8 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint8", false]], "c_ulong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ulong", false]], "c_ulonglong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ulonglong", false]], "c_ushort (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ushort", false]], "c_void_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_void_p", false]], "c_wchar (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_wchar", false]], "c_wchar_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_wchar_p", false]], "cab (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.CAB", false]], "cache (opcode)": [[191, "opcode-CACHE", false]], "cache() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cache", false]], "cache_from_source() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.cache_from_source", false]], "cached (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.cached", false]], "cached_property() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cached_property", false]], "cacheftphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.CacheFTPHandler", false]], "calcobjsize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.calcobjsize", false]], "calcsize() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.calcsize", false]], "calcvobjsize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.calcvobjsize", false]], "calendar": [[150, "module-calendar", false]], "calendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Calendar", false]], "calendar \u547d\u4ee4\u5217\u9078\u9805": [[150, "cmdoption-calendar-arg-month", false], [150, "cmdoption-calendar-arg-year", false], [150, "cmdoption-calendar-css", false], [150, "cmdoption-calendar-encoding", false], [150, "cmdoption-calendar-help", false], [150, "cmdoption-calendar-lines", false], [150, "cmdoption-calendar-locale", false], [150, "cmdoption-calendar-months", false], [150, "cmdoption-calendar-spacing", false], [150, "cmdoption-calendar-type", false], [150, "cmdoption-calendar-width", false]], "calendar() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.calendar", false]], "call": [[436, "index-3", false]], "call (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Call", false]], "call (monitoring event)": [[353, "monitoring-event-CALL", false]], "call (opcode)": [[191, "opcode-CALL", false]], "call semantics\uff08\u547c\u53eb\u8a9e\u610f\uff09": [[430, "index-47", false], [430, "index-48", false]], "call() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.call", false]], "call() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.call", false]], "call() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.call", false]], "call_args (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_args", false]], "call_args_list (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_args_list", false]], "call_at() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_at", false]], "call_count (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_count", false]], "call_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_exception_handler", false]], "call_function_ex (opcode)": [[191, "opcode-CALL_FUNCTION_EX", false]], "call_intrinsic_1 (opcode)": [[191, "opcode-CALL_INTRINSIC_1", false]], "call_intrinsic_2 (opcode)": [[191, "opcode-CALL_INTRINSIC_2", false]], "call_later() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_later", false]], "call_list() (unittest.mock.call \u7684\u65b9\u6cd5)": [[389, "unittest.mock.call.call_list", false]], "call_soon() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_soon", false]], "call_soon_threadsafe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_soon_threadsafe", false]], "call_tracing() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.call_tracing", false]], "callable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Callable", false]], "callable (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Callable", false]], "callable()": [[225, "callable", false]], "callableproxytype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.CallableProxyType", false]], "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09": [[87, "term-callable", true], [428, "index-33", false], [430, "index-47", false]], "callback (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback", false]], "callback() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.callback", false]], "callback_args (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback_args", false]], "callback_kwargs (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback_kwargs", false]], "callbacks (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.callbacks", false]], "callback\uff08\u56de\u547c\uff09": [[87, "term-callback", true]], "called (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.called", false]], "calledprocesserror": [[348, "subprocess.CalledProcessError", false]], "calloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "call\uff08\u547c\u53eb\uff09": [[428, "index-33", false], [428, "index-47", false], [428, "index-49", false], [428, "index-97", false], [430, "index-47", false], [430, "index-52", false], [430, "index-53", false], [430, "index-54", false], [430, "index-55", false], [430, "index-56", false]], "can (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.CAN", false]], "can_bcm (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_BCM", false]], "can_change_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.can_change_color", false]], "can_fetch() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.can_fetch", false]], "can_isotp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_ISOTP", false]], "can_j1939 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_J1939", false]], "can_raw_fd_frames (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_RAW_FD_FRAMES", false]], "can_raw_join_filters (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_RAW_JOIN_FILTERS", false]], "can_symlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.can_symlink", false]], "can_write_eof() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.can_write_eof", false]], "can_write_eof() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.can_write_eof", false]], "can_xattr() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.can_xattr", false]], "cancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.CANCEL", false]], "cancel() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.cancel", false]], "cancel() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.cancel", false]], "cancel() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancel", false]], "cancel() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.cancel", false]], "cancel() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.cancel", false]], "cancel() (threading.timer \u7684\u65b9\u6cd5)": [[365, "threading.Timer.cancel", false]], "cancel() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.cancel", false]], "cancel_command() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.cancel_command", false]], "cancel_dump_traceback_later() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.cancel_dump_traceback_later", false]], "cancel_join_thread() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.cancel_join_thread", false]], "cancelled() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.cancelled", false]], "cancelled() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.cancelled", false]], "cancelled() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancelled", false]], "cancelled() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.cancelled", false]], "cancellederror": [[127, "asyncio.CancelledError", false], [166, "concurrent.futures.CancelledError", false]], "cancelling() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancelling", false]], "cannotsendheader": [[242, "http.client.CannotSendHeader", false]], "cannotsendrequest": [[242, "http.client.CannotSendRequest", false]], "canonic() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.canonic", false]], "canonical() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.canonical", false]], "canonical() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.canonical", false]], "canonicalize() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.canonicalize", false]], "capa() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.capa", false]], "capitalize() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.capitalize", false]], "capitalize() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.capitalize", false]], "capitalize() (str \u7684\u65b9\u6cd5)": [[344, "str.capitalize", false]], "capsule": [[11, "index-0", false]], "captured_stderr() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stderr", false]], "captured_stdin() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stdin", false]], "captured_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stdout", false]], "capturewarnings() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.captureWarnings", false]], "capwords() (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.capwords", false]], "case": [[427, "index-18", false], [427, "index-18", true]], "case block": [[427, "index-22", false]], "casefold() (str \u7684\u65b9\u6cd5)": [[344, "str.casefold", false]], "cast() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.cast", false]], "cast() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.cast", false]], "cast() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.cast", false]], "cat() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.cat", false]], "catch_threading_exception() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.catch_threading_exception", false]], "catch_unraisable_exception() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.catch_unraisable_exception", false]], "catch_warnings (warnings \u4e2d\u7684\u985e\u5225)": [[400, "warnings.catch_warnings", false]], "category() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.category", false]], "cbreak() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.cbreak", false]], "cbrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cbrt", false]], "cc": [[456, "envvar-CC", false], [465, "index-24", false]], "ccc() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.ccc", false]], "ccshared": [[456, "envvar-CCSHARED", false]], "cdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.cdf", false]], "cdll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.CDLL", false]], "ceil() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ceil", false]], "ceil()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "celltype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.CellType", false]], "center() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.center", false]], "center() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.center", false]], "center() (str \u7684\u65b9\u6cd5)": [[344, "str.center", false]], "cert_none (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_NONE", false]], "cert_optional (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_OPTIONAL", false]], "cert_required (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_REQUIRED", false]], "cert_store_stats() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.cert_store_stats", false]], "cert_time_to_seconds() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.cert_time_to_seconds", false]], "certificateerror": [[341, "ssl.CertificateError", false]], "certificates\uff08\u6191\u8b49\uff09": [[341, "index-14", false]], "cflags": [[456, "envvar-CFLAGS", false], [456, "index-14", false], [456, "index-15", false], [456, "index-16", false], [456, "index-17", false], [456, "index-20", false], [456, "index-5", false], [465, "index-25", false]], "cflags_aliasing": [[456, "envvar-CFLAGS_ALIASING", false]], "cflags_nodist": [[456, "envvar-CFLAGS_NODIST", false], [456, "index-13", false], [456, "index-18", false], [456, "index-23", false]], "cflagsforshared": [[456, "envvar-CFLAGSFORSHARED", false]], "cfmakecbreak() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.cfmakecbreak", false]], "cfmakeraw() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.cfmakeraw", false]], "cfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.CFUNCTYPE", false]], "cget() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.cget", false]], "cgi": [[151, "index-0", false], [151, "index-2", false], [151, "index-5", false], [151, "module-cgi", false], [152, "index-0", false]], "cgi_directories (http.server.cgihttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.CGIHTTPRequestHandler.cgi_directories", false]], "cgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.CGIHandler", false]], "cgihttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.CGIHTTPRequestHandler", false]], "cgitb": [[152, "module-cgitb", false]], "cgixmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler", false]], "chain() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.chain", false]], "chaining": [[213, "index-2", false]], "chaining\uff08\u93c8\u63a5\uff09": [[430, "index-78", false]], "chaining\uff08\u93c8\u7d50\uff09": [[344, "index-7", false], [436, "index-29", false]], "chainmap (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.ChainMap", false]], "chainmap (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ChainMap", false]], "change_cwd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.change_cwd", false]], "changing\uff08\u6539\u8b8a\uff09": [[293, "index-26", false]], "channel_binding_types (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CHANNEL_BINDING_TYPES", false]], "channels() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.channels", false]], "char_max (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CHAR_MAX", false]], "characterdatahandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.CharacterDataHandler", false]], "characters() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.characters", false]], "characters_written (blockingioerror \u7684\u5c6c\u6027)": [[213, "BlockingIOError.characters_written", false]], "character\uff08\u5b57\u5143\uff09": [[387, "index-0", false], [428, "index-19", false], [430, "index-43", false]], "charset (email.charset \u4e2d\u7684\u985e\u5225)": [[195, "email.charset.Charset", false]], "charset() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.charset", false]], "chdir() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.chdir", false]], "chdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chdir", false]], "check (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.check", false]], "check() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.check", false]], "check() (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.check", false]], "check__all__() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check__all__", false]], "check_call() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.check_call", false]], "check_disallow_instantiation() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_disallow_instantiation", false]], "check_eg_match (opcode)": [[191, "opcode-CHECK_EG_MATCH", false]], "check_exc_match (opcode)": [[191, "opcode-CHECK_EXC_MATCH", false]], "check_free_after_iterating() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_free_after_iterating", false]], "check_hostname (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.check_hostname", false]], "check_impl_detail() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_impl_detail", false]], "check_no_resource_warning() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_no_resource_warning", false]], "check_output() (doctest.outputchecker \u7684\u65b9\u6cd5)": [[193, "doctest.OutputChecker.check_output", false]], "check_output() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.check_output", false]], "check_returncode() (subprocess.completedprocess \u7684\u65b9\u6cd5)": [[348, "subprocess.CompletedProcess.check_returncode", false]], "check_syntax_error() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_syntax_error", false]], "check_syntax_warning() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_syntax_warning", false]], "check_unused_args() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.check_unused_args", false]], "check_warnings() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_warnings", false]], "checkbox() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.checkbox", false]], "checkcache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.checkcache", false]], "checked_hash (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.CHECKED_HASH", false]], "checkfuncname() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.checkfuncname", false]], "checklist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.CheckList", false]], "checksizeof() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.checksizeof", false]], "checksum\uff08\u6838\u5c0d\u548c\uff09": [[424, "index-0", false]], "chflags() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chflags", false]], "chgat() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.chgat", false]], "childnodes (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.childNodes", false]], "childprocesserror": [[213, "ChildProcessError", false]], "children (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.children", false]], "children (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.children", false]], "children (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.children", false]], "chksum (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.chksum", false]], "chmod() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.chmod", false]], "chmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chmod", false]], "choice() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.choice", false]], "choice() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.choice", false]], "choices (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.choices", false]], "choices() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.choices", false]], "chooser (tkinter.colorchooser \u4e2d\u7684\u985e\u5225)": [[370, "tkinter.colorchooser.Chooser", false]], "chown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chown", false]], "chown() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.chown", false]], "chr": [[428, "index-19", false]], "chr()": [[225, "chr", false]], "chroot() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chroot", false]], "chrtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.CHRTYPE", false]], "chunk": [[153, "module-chunk", false]], "chunk (chunk \u4e2d\u7684\u985e\u5225)": [[153, "chunk.Chunk", false]], "cipher": [[173, "index-0", false]], "cipher() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.cipher", false]], "circle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.circle", false]], "circumflex (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.CIRCUMFLEX", false]], "circumflexequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.CIRCUMFLEXEQUAL", false]], "clamped (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Clamped", false]], "class (pyclbr \u4e2d\u7684\u985e\u5225)": [[312, "pyclbr.Class", false]], "class (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Class", false]], "class definition\uff08\u985e\u5225\u5b9a\u7fa9\uff09": [[427, "index-42", false], [427, "index-43", false], [428, "index-86", false]], "class instance\uff08\u985e\u5225\u5be6\u4f8b\uff09": [[428, "index-47", false], [428, "index-51", false], [428, "index-52", false], [430, "index-55", false]], "class object\uff08\u985e\u5225\u7269\u4ef6\uff09": [[428, "index-47", false], [428, "index-49", false], [430, "index-54", false]], "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09": [[87, "term-class-variable", true]], "classdef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ClassDef", false]], "classmethod": [[58, "index-0", false]], "classmethod()": [[225, "classmethod", false]], "classmethoddescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.ClassMethodDescriptorType", false]], "classvar (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ClassVar", false]], "class\uff08\u985e\u5225\uff09": [[87, "term-class", true], [427, "index-42", false], [428, "index-47", false], [428, "index-48", false], [428, "index-51", false], [428, "index-73", false], [428, "index-91", false], [430, "index-54", false], [436, "index-24", false]], "clause\uff08\u5b50\u53e5\uff09": [[427, "index-1", false]], "cld_continued (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_CONTINUED", false]], "cld_dumped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_DUMPED", false]], "cld_exited (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_EXITED", false]], "cld_killed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_KILLED", false]], "cld_stopped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_STOPPED", false]], "cld_trapped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_TRAPPED", false]], "clean() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.clean", false]], "cleandoc() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.cleandoc", false]], "cleanimport (test.support.import_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.import_helper.CleanImport", false]], "cleanup functions\uff08\u6e05\u7406\u51fd\u5f0f\uff09": [[59, "index-4", false]], "cleanup() (tempfile.temporarydirectory \u7684\u65b9\u6cd5)": [[360, "tempfile.TemporaryDirectory.cleanup", false]], "cleanup_throw (opcode)": [[191, "opcode-CLEANUP_THROW", false]], "clear (pdb command)": [[297, "pdbcommand-clear", false]], "clear breakpoint": [[247, "index-4", false]], "clear() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.clear", false]], "clear() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.clear", false]], "clear() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clear", false]], "clear() (dict \u7684\u65b9\u6cd5)": [[344, "dict.clear", false]], "clear() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.clear", false]], "clear() (frame \u7684\u65b9\u6cd5)": [[428, "frame.clear", false]], "clear() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.clear", false]], "clear() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.clear", false]], "clear() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.clear", false]], "clear() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.clear", false]], "clear() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.clear", false]], "clear() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clear", false]], "clear()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "clear_all_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_all_breaks", false]], "clear_all_file_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_all_file_breaks", false]], "clear_bpbynumber() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_bpbynumber", false]], "clear_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_break", false]], "clear_cache() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.clear_cache", false]], "clear_cache() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.clear_cache", false]], "clear_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.clear_content", false]], "clear_flags() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.clear_flags", false]], "clear_frames() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.clear_frames", false]], "clear_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.clear_history", false]], "clear_overloads() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.clear_overloads", false]], "clear_session_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.clear_session_cookies", false]], "clear_traces() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.clear_traces", false]], "clear_traps() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.clear_traps", false]], "clearcache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.clearcache", false]], "cleardata() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.ClearData", false]], "clearok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clearok", false]], "clearscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearscreen", false]], "clearstamp() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearstamp", false]], "clearstamps() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearstamps", false]], "client() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.Client", false]], "client_address (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.client_address", false]], "client_address (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.client_address", false]], "clock_boottime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_BOOTTIME", false]], "clock_getres() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_getres", false]], "clock_gettime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_gettime", false]], "clock_gettime_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_gettime_ns", false]], "clock_highres (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_HIGHRES", false]], "clock_monotonic (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_MONOTONIC", false]], "clock_monotonic_raw (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_MONOTONIC_RAW", false]], "clock_process_cputime_id (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_PROCESS_CPUTIME_ID", false]], "clock_prof (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_PROF", false]], "clock_realtime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_REALTIME", false]], "clock_seq (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq", false]], "clock_seq_hi_variant (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq_hi_variant", false]], "clock_seq_low (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq_low", false]], "clock_settime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_settime", false]], "clock_settime_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_settime_ns", false]], "clock_tai (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_TAI", false]], "clock_thread_cputime_id (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_THREAD_CPUTIME_ID", false]], "clock_uptime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_UPTIME", false]], "clock_uptime_raw (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_UPTIME_RAW", false]], "clone() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.clone", false]], "clone() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.clone", false]], "clone() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.clone", false]], "clone() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.clone", false]], "clone() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clone", false]], "clone_files (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_FILES", false]], "clone_fs (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_FS", false]], "clone_newcgroup (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWCGROUP", false]], "clone_newipc (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWIPC", false]], "clone_newnet (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWNET", false]], "clone_newns (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWNS", false]], "clone_newpid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWPID", false]], "clone_newtime (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWTIME", false]], "clone_newuser (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWUSER", false]], "clone_newuts (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWUTS", false]], "clone_sighand (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_SIGHAND", false]], "clone_sysvsem (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_SYSVSEM", false]], "clone_thread (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_THREAD", false]], "clone_vm (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_VM", false]], "clonenode() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.cloneNode", false]], "close() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.close", false]], "close() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.close", false]], "close() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.close", false]], "close() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.close", false]], "close() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.close", false]], "close() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.close", false]], "close() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.close", false]], "close() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.close", false]], "close() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.close", false]], "close() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.close", false]], "close() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.close", false]], "close() (dbm.dumb.dumbdbm \u7684\u65b9\u6cd5)": [[184, "dbm.dumb.dumbdbm.close", false]], "close() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.close", false]], "close() (dbm.ndbm.ndbm \u7684\u65b9\u6cd5)": [[184, "dbm.ndbm.ndbm.close", false]], "close() (email.parser.bytesfeedparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesFeedParser.close", false]], "close() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.close", false]], "close() (generator \u7684\u65b9\u6cd5)": [[430, "generator.close", false]], "close() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.close", false]], "close() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.close", false]], "close() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.close", false]], "close() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.close", false]], "close() (logging.filehandler \u7684\u65b9\u6cd5)": [[269, "logging.FileHandler.close", false]], "close() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.close", false]], "close() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.close", false]], "close() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.close", false]], "close() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.close", false]], "close() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.close", false]], "close() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.close", false]], "close() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.close", false]], "close() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.close", false]], "close() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.close", false]], "close() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.Close", false]], "close() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Close", false]], "close() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.close", false]], "close() (multiprocessing.connection.listener \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Listener.close", false]], "close() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.close", false]], "close() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.close", false]], "close() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.close", false]], "close() (multiprocessing.shared_memory.sharedmemory \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.SharedMemory.close", false]], "close() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.close", false]], "close() (os.scandir \u7684\u65b9\u6cd5)": [[293, "os.scandir.close", false]], "close() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.close", false]], "close() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.close", false]], "close() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.close", false]], "close() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.close", false]], "close() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.close", false]], "close() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.close", false]], "close() (shelve.shelf \u7684\u65b9\u6cd5)": [[330, "shelve.Shelf.close", false]], "close() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.close", false]], "close() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.close", false]], "close() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.close", false]], "close() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.close", false]], "close() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.close", false]], "close() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.close", false]], "close() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.close", false]], "close() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.close", false]], "close() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.close", false]], "close() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.close", false]], "close() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.close", false]], "close() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.Close", false]], "close() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.close", false]], "close() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.close", false]], "close() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.close", false]], "close() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.close", false]], "close() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.close", false]], "close() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.close", false]], "close() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.close", false]], "close() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.close", false]], "close_connection (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.close_connection", false]], "closed (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.closed", false]], "closed (io.iobase \u7684\u5c6c\u6027)": [[258, "io.IOBase.closed", false]], "closed (mmap.mmap \u7684\u5c6c\u6027)": [[278, "mmap.mmap.closed", false]], "closed (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.closed", false]], "closed (select.devpoll \u7684\u5c6c\u6027)": [[328, "select.devpoll.closed", false]], "closed (select.epoll \u7684\u5c6c\u6027)": [[328, "select.epoll.closed", false]], "closed (select.kqueue \u7684\u5c6c\u6027)": [[328, "select.kqueue.closed", false]], "closekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CloseKey", false]], "closelog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.closelog", false]], "closerange() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.closerange", false]], "close\uff08os \u6a21\u7d44\u4e2d\uff09": [[33, "index-44", false]], "closing() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.closing", false]], "clrtobot() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clrtobot", false]], "clrtoeol() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clrtoeol", false]], "cmath": [[154, "module-cmath", false]], "cmd": [[155, "module-cmd", false], [297, "index-1", false]], "cmd (cmd \u4e2d\u7684\u985e\u5225)": [[155, "cmd.Cmd", false]], "cmd (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.cmd", false]], "cmd (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.cmd", false]], "cmdloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.cmdloop", false]], "cmdqueue (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.cmdqueue", false]], "cmp() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.cmp", false]], "cmp_op (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.cmp_op", false]], "cmp_to_key() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cmp_to_key", false]], "cmpfiles() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.cmpfiles", false]], "cmsg_len() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CMSG_LEN", false]], "cmsg_space() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CMSG_SPACE", false]], "co_argcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_argcount", false]], "co_argcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_async_generator (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_ASYNC_GENERATOR", false]], "co_cellvars (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_cellvars", false]], "co_cellvars \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_code (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_code", false]], "co_code \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_consts (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_consts", false]], "co_consts \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_coroutine (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_COROUTINE", false]], "co_filename (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_filename", false]], "co_filename \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_firstlineno (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_firstlineno", false]], "co_firstlineno \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_flags (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_flags", false]], "co_flags \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_freevars (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_freevars", false]], "co_freevars \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_future_division (c var)": [[66, "c.CO_FUTURE_DIVISION", false]], "co_generator (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_GENERATOR", false]], "co_iterable_coroutine (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_ITERABLE_COROUTINE", false]], "co_kwonlyargcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_kwonlyargcount", false]], "co_kwonlyargcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_lines() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.co_lines", false]], "co_lnotab (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_lnotab", false]], "co_lnotab \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_name (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_name", false]], "co_name \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_names (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_names", false]], "co_names \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_nested (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_NESTED", false]], "co_newlocals (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_NEWLOCALS", false]], "co_nlocals (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_nlocals", false]], "co_nlocals \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_optimized (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_OPTIMIZED", false]], "co_positions() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.co_positions", false]], "co_posonlyargcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_posonlyargcount", false]], "co_posonlyargcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_qualname (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_qualname", false]], "co_qualname \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_stacksize (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_stacksize", false]], "co_stacksize \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_varargs (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_VARARGS", false]], "co_varkeywords (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_VARKEYWORDS", false]], "co_varnames (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_varnames", false]], "co_varnames \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "code": [[157, "module-code", false]], "code (systemexit \u7684\u5c6c\u6027)": [[213, "SystemExit.code", false]], "code (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.code", false]], "code (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.code", false]], "code (xml.etree.elementtree.parseerror \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.ParseError.code", false]], "code (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.code", false]], "code object\uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\uff09": [[13, "index-0", false], [274, "index-1", false], [344, "index-62", false], [428, "index-57", false]], "code_context (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.code_context", false]], "code_context (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.code_context", false]], "code_info() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.code_info", false]], "codec (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.Codec", false]], "codecinfo (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.CodecInfo", false]], "codecs": [[158, "index-0", false], [158, "module-codecs", false]], "coded_value (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.coded_value", false]], "codeop": [[159, "module-codeop", false]], "codepoint2name (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.codepoint2name", false]], "codes (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.codes", false]], "codeset (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CODESET", false]], "codetype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.CodeType", false]], "code\uff08\u7a0b\u5f0f\u78bc\uff09": [[13, "index-0", false], [274, "index-1", false], [344, "index-62", false], [428, "index-57", false], [429, "index-0", false]], "coding\uff08\u7a0b\u5f0f\u7de8\u5beb\uff09": [[441, "index-9", false]], "col_offset (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.col_offset", false]], "collapse_addresses() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.collapse_addresses", false]], "collapse_rfc2231_value() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.collapse_rfc2231_value", false]], "collect() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.collect", false]], "collecteddurations (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.collectedDurations", false]], "collection (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Collection", false]], "collection (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Collection", false]], "collections": [[160, "module-collections", false], [428, "index-24", false]], "collections.abc": [[161, "module-collections.abc", false]], "colno (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.colno", false]], "colno (re.error \u7684\u5c6c\u6027)": [[319, "re.error.colno", false]], "colon (mailbox.maildir \u7684\u5c6c\u6027)": [[271, "mailbox.Maildir.colon", false]], "colon (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COLON", false]], "colonequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COLONEQUAL", false]], "color() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.color", false]], "color_black (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_BLACK", false]], "color_blue (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_BLUE", false]], "color_content() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.color_content", false]], "color_cyan (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_CYAN", false]], "color_green (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_GREEN", false]], "color_magenta (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_MAGENTA", false]], "color_pair() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.color_pair", false]], "color_pairs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_PAIRS", false]], "color_red (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_RED", false]], "color_white (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_WHITE", false]], "color_yellow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_YELLOW", false]], "colormode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.colormode", false]], "colors (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLORS", false]], "colorsys": [[162, "module-colorsys", false]], "cols (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLS", false]], "column() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.column", false]], "columnize() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.columnize", false]], "columns": [[177, "index-4", false], [177, "index-6", false]], "columns (os.terminal_size \u7684\u5c6c\u6027)": [[293, "os.terminal_size.columns", false]], "comb() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.comb", false]], "combinations() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.combinations", false]], "combinations_with_replacement() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.combinations_with_replacement", false]], "combine() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.combine", false]], "combining() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.combining", false]], "combobox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ComboBox", false]], "combobox (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Combobox", false]], "comma": [[430, "index-10", false], [430, "index-95", false]], "comma (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COMMA", false]], "command (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.command", false]], "command line\uff08\u547d\u4ee4\u5217\uff09": [[437, "index-4", false]], "commandcompiler (codeop \u4e2d\u7684\u985e\u5225)": [[159, "codeop.CommandCompiler", false]], "commands (pdb command)": [[297, "pdbcommand-commands", false]], "comment (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.comment", false]], "comment (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.comment", false]], "comment (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.comment", false]], "comment (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.comment", false]], "comment (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COMMENT", false]], "comment() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.comment", false]], "comment() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.comment", false]], "comment() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.Comment", false]], "comment_url (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.comment_url", false]], "commenters (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.commenters", false]], "commenthandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.CommentHandler", false]], "comment\uff08\u8a3b\u89e3\uff09": [[334, "index-2", false], [435, "index-4", false], [449, "index-0", false]], "commit() (msilib.cab \u7684\u65b9\u6cd5)": [[281, "msilib.CAB.commit", false]], "commit() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.Commit", false]], "commit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.commit", false]], "common (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common", false]], "common gateway interface\uff08\u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\uff09": [[151, "index-0", false]], "common_dirs (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_dirs", false]], "common_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_files", false]], "common_funny (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_funny", false]], "common_types (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.common_types", false]], "commonpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.commonpath", false]], "commonprefix() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.commonprefix", false]], "communicate() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.communicate", false]], "communicate() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.communicate", false]], "compare (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Compare", false]], "compare() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare", false]], "compare() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare", false]], "compare() (difflib.differ \u7684\u65b9\u6cd5)": [[190, "difflib.Differ.compare", false]], "compare_digest() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.compare_digest", false]], "compare_digest() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.compare_digest", false]], "compare_networks() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.compare_networks", false]], "compare_networks() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.compare_networks", false]], "compare_op (opcode)": [[191, "opcode-COMPARE_OP", false]], "compare_signal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_signal", false]], "compare_signal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_signal", false]], "compare_to() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.compare_to", false]], "compare_total() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_total", false]], "compare_total() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_total", false]], "compare_total_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_total_mag", false]], "compare_total_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_total_mag", false]], "comparing\uff08\u6bd4\u8f03\uff09": [[344, "index-8", false]], "comparison_flags (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.COMPARISON_FLAGS", false]], "comparisons\uff08\u6bd4\u8f03\uff09": [[344, "index-7", false], [430, "index-78", false]], "comparison\uff08\u6bd4\u8f03\uff09": [[344, "index-7", false], [428, "index-79", false], [430, "index-77", false]], "compat32 (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.Compat32", false]], "compat32 (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.compat32", false]], "compile (codeop \u4e2d\u7684\u985e\u5225)": [[159, "codeop.Compile", false]], "compile()": [[225, "compile", false]], "compile() (\u65bc py_compile \u6a21\u7d44\u4e2d)": [[311, "py_compile.compile", false]], "compile() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.compile", false]], "compile_command() (\u65bc code \u6a21\u7d44\u4e2d)": [[157, "code.compile_command", false]], "compile_command() (\u65bc codeop \u6a21\u7d44\u4e2d)": [[159, "codeop.compile_command", false]], "compile_dir() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_dir", false]], "compile_file() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_file", false]], "compile_path() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_path", false]], "compileall": [[163, "module-compileall", false]], "compileall \u547d\u4ee4\u5217\u9078\u9805": [[163, "cmdoption-compileall-arg-directory", false], [163, "cmdoption-compileall-arg-file", false], [163, "cmdoption-compileall-b", false], [163, "cmdoption-compileall-d", false], [163, "cmdoption-compileall-e", false], [163, "cmdoption-compileall-f", false], [163, "cmdoption-compileall-hardlink-dupes", false], [163, "cmdoption-compileall-i", false], [163, "cmdoption-compileall-invalidation-mode", false], [163, "cmdoption-compileall-j", false], [163, "cmdoption-compileall-l", false], [163, "cmdoption-compileall-o", false], [163, "cmdoption-compileall-p", false], [163, "cmdoption-compileall-q", false], [163, "cmdoption-compileall-r", false], [163, "cmdoption-compileall-s", false], [163, "cmdoption-compileall-x", false]], "compileall_opts": [[456, "envvar-COMPILEALL_OPTS", false]], "compiler_flag (__future__._feature \u7684\u5c6c\u6027)": [[113, "future__._Feature.compiler_flag", false]], "compile\uff08\u7de8\u8b6f\uff09": [[31, "index-2", false], [344, "index-63", false], [385, "index-4", false], [436, "index-44", false]], "complete() (rlcompleter.completer \u7684\u65b9\u6cd5)": [[323, "rlcompleter.Completer.complete", false]], "complete_statement() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.complete_statement", false]], "completedefault() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.completedefault", false]], "completedprocess (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.CompletedProcess", false]], "completer (rlcompleter \u4e2d\u7684\u985e\u5225)": [[323, "rlcompleter.Completer", false]], "complex (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Complex", false]], "complex (\u5167\u5efa\u985e\u5225)": [[225, "complex", false]], "complex literal\uff08\u8907\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "complex number\uff08\u8907\u6578\uff09": [[15, "index-0", false], [87, "term-complex-number", true], [344, "index-11", false], [344, "index-12", false]], "complex\uff08\u8907\u6578\uff09": [[344, "index-13", false], [428, "index-104", false], [428, "index-14", false]], "compound statement\uff08\u8907\u5408\u9673\u8ff0\u5f0f\uff09": [[427, "index-16", false], [427, "index-18", false], [427, "index-28", false], [427, "index-3", false], [427, "index-4", false], [427, "index-42", false], [427, "index-6", false], [427, "index-9", false]], "compound\uff08\u8907\u5408\uff09": [[427, "index-0", false]], "comprehension (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.comprehension", false]], "comprehensions": [[430, "index-11", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false]], "compress() (bz2.bz2compressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Compressor.compress", false]], "compress() (lzma.lzmacompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMACompressor.compress", false]], "compress() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.compress", false]], "compress() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.compress", false]], "compress() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.compress", false]], "compress() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.compress", false]], "compress() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.compress", false]], "compress() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.compress", false]], "compress_size (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.compress_size", false]], "compress_type (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.compress_type", false]], "compressed (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.compressed", false]], "compressed (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.compressed", false]], "compressed (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.compressed", false]], "compressed (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.compressed", false]], "compression() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.compression", false]], "compressionerror": [[358, "tarfile.CompressionError", false]], "compressobj() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.compressobj", false]], "comspec": [[293, "index-43", false], [348, "index-3", false]], "concat() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.concat", false]], "concatenate (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Concatenate", false]], "concatenation\uff08\u4e32\u63a5\uff09": [[344, "index-20", false]], "concurrent.futures": [[166, "module-concurrent.futures", false]], "cond (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.cond", false]], "condition (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Condition", false]], "condition (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Condition", false]], "condition (pdb command)": [[297, "pdbcommand-condition", false]], "condition (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Condition", false]], "condition() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.condition", false]], "condition() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Condition", false]], "conditional expression\uff08\u689d\u4ef6\u904b\u7b97\u5f0f\uff09": [[430, "index-88", false]], "conditional\uff08\u689d\u4ef6\u5f0f\uff09": [[430, "index-82", false], [430, "index-88", false]], "config() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.config", false]], "config_site": [[456, "cmdoption-arg-CONFIG_SITE", false]], "configparser": [[167, "module-configparser", false]], "configparser (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.ConfigParser", false]], "configuration information\uff08\u8a2d\u5b9a\u8cc7\u8a0a\uff09": [[355, "index-0", false]], "configuration\uff08\u8a2d\u5b9a\uff09": [[167, "index-0", false], [297, "index-2", false], [334, "index-4", false]], "configure() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.configure", false]], "configure_cflags": [[456, "envvar-CONFIGURE_CFLAGS", false]], "configure_cflags_nodist": [[456, "envvar-CONFIGURE_CFLAGS_NODIST", false]], "configure_cppflags": [[456, "envvar-CONFIGURE_CPPFLAGS", false]], "configure_ldflags": [[456, "envvar-CONFIGURE_LDFLAGS", false]], "configure_ldflags_nodist": [[456, "envvar-CONFIGURE_LDFLAGS_NODIST", false]], "configure_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.configure_mock", false]], "conform (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.CONFORM", false]], "confstr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.confstr", false]], "confstr_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.confstr_names", false]], "conjugate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.conjugate", false]], "conjugate() (numbers.complex \u7684\u65b9\u6cd5)": [[289, "numbers.Complex.conjugate", false]], "conjugate()\uff08\u8907\u6578\u65b9\u6cd5\uff09": [[344, "index-14", false]], "connect() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.connect", false]], "connect() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.connect", false]], "connect() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.connect", false]], "connect() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.connect", false]], "connect() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.connect", false]], "connect() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.connect", false]], "connect_accepted_socket() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_accepted_socket", false]], "connect_ex() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.connect_ex", false]], "connect_read_pipe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_read_pipe", false]], "connect_write_pipe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_write_pipe", false]], "connection (multiprocessing.connection \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.connection.Connection", false]], "connection (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Connection", false]], "connection (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.connection", false]], "connection_lost() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.connection_lost", false]], "connection_made() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.connection_made", false]], "connectionabortederror": [[213, "ConnectionAbortedError", false]], "connectionerror": [[213, "ConnectionError", false]], "connectionrefusederror": [[213, "ConnectionRefusedError", false]], "connectionreseterror": [[213, "ConnectionResetError", false]], "connectregistry() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.ConnectRegistry", false]], "const (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.const", false]], "constant (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Constant", false]], "constant\uff08\u5e38\u6578\uff09": [[435, "index-16", false]], "constructor() (\u65bc copyreg \u6a21\u7d44\u4e2d)": [[172, "copyreg.constructor", false]], "constructor\uff08\u5efa\u69cb\u51fd\u5f0f\uff09": [[428, "index-73", false]], "consumed (asyncio.limitoverrunerror \u7684\u5c6c\u6027)": [[127, "asyncio.LimitOverrunError.consumed", false]], "container (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Container", false]], "container (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Container", false]], "container\uff08\u5bb9\u5668\uff09": [[344, "index-18", false], [428, "index-3", false], [428, "index-47", false]], "contains() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.contains", false]], "contains_op (opcode)": [[191, "opcode-CONTAINS_OP", false]], "content (urllib.error.contenttooshorterror \u7684\u5c6c\u6027)": [[393, "urllib.error.ContentTooShortError.content", false]], "content type\uff08\u5167\u5bb9\u985e\u578b\uff09": [[276, "index-0", false]], "content_disposition (email.headerregistry.contentdispositionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentDispositionHeader.content_disposition", false]], "content_manager (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.content_manager", false]], "content_type (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.content_type", false]], "contentdispositionheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentDispositionHeader", false]], "contenthandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.ContentHandler", false]], "contentmanager (email.contentmanager \u4e2d\u7684\u985e\u5225)": [[197, "email.contentmanager.ContentManager", false]], "contents (ctypes._pointer \u7684\u5c6c\u6027)": [[176, "ctypes._Pointer.contents", false]], "contents() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.contents", false]], "contents() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.contents", false]], "contents() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.contents", false]], "contenttooshorterror": [[393, "urllib.error.ContentTooShortError", false]], "contenttransferencoding (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentTransferEncoding", false]], "contenttypeheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentTypeHeader", false]], "context (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.Context", false]], "context (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Context", false]], "context (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.context", false]], "context management protocol\uff08\u60c5\u5883\u7ba1\u7406\u5354\u5b9a\uff09": [[344, "index-54", false]], "context management\uff08\u60c5\u5883\u7ba1\u7406\uff09": [[344, "index-54", false]], "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09": [[87, "term-context-manager", true], [344, "index-54", false], [428, "index-106", false]], "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09": [[87, "term-context-variable", true]], "context_diff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.context_diff", false]], "contextdecorator (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.ContextDecorator", false]], "contextlib": [[169, "module-contextlib", false]], "contextmanager (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ContextManager", false]], "contextmanager() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.contextmanager", false]], "contextvar (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.ContextVar", false]], "contextvars": [[170, "module-contextvars", false]], "contig (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.CONTIG", false]], "contig_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.CONTIG_RO", false]], "contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.contiguous", false]], "contiguous\uff08\u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "term-contiguous", true]], "continue": [[427, "index-13", false], [427, "index-15", false], [427, "index-5", false], [427, "index-7", false], [436, "index-33", true]], "continue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Continue", false]], "continue (pdb command)": [[297, "pdbcommand-continue", false]], "continuous (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.CONTINUOUS", false]], "control (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Control", false]], "control (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Control", false]], "control() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.control", false]], "control() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.control", false]], "controlnames (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.controlnames", false]], "controls() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.controls", false]], "conttype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.CONTTYPE", false]], "conversion": [[428, "index-78", false], [430, "index-1", false], [436, "index-3", false]], "conversionerror": [[408, "xdrlib.ConversionError", false]], "conversions\uff08\u8f49\u63db\uff09": [[344, "index-15", false]], "convert_arg_line_to_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.convert_arg_line_to_args", false]], "convert_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.convert_field", false]], "cookie (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.Cookie", false]], "cookieerror": [[244, "http.cookies.CookieError", false]], "cookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.CookieJar", false]], "cookiejar (urllib.request.httpcookieprocessor \u7684\u5c6c\u6027)": [[395, "urllib.request.HTTPCookieProcessor.cookiejar", false]], "cookiepolicy (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.CookiePolicy", false]], "coordinated universal time\uff08\u4e16\u754c\u5354\u8abf\u6642\u9593\uff09": [[366, "index-4", false]], "copy": [[171, "module-copy", false]], "copy (opcode)": [[191, "opcode-COPY", false]], "copy() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.copy", false]], "copy() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.copy", false]], "copy() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy", false]], "copy() (dict \u7684\u65b9\u6cd5)": [[344, "dict.copy", false]], "copy() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.copy", false]], "copy() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.copy", false]], "copy() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.copy", false]], "copy() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.copy", false]], "copy() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.copy", false]], "copy() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.copy", false]], "copy() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.copy", false]], "copy() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.copy", false]], "copy() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.copy", false]], "copy() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.copy", false]], "copy() (\u65bc copy \u6a21\u7d44\u4e2d)": [[171, "copy.copy", false]], "copy() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.copy", false]], "copy() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copy", false]], "copy()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "copy2() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copy2", false]], "copy_abs() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_abs", false]], "copy_abs() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_abs", false]], "copy_context() (\u65bc contextvars \u6a21\u7d44\u4e2d)": [[170, "contextvars.copy_context", false]], "copy_decimal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_decimal", false]], "copy_file_range() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.copy_file_range", false]], "copy_free_vars (opcode)": [[191, "opcode-COPY_FREE_VARS", false]], "copy_location() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.copy_location", false]], "copy_negate() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_negate", false]], "copy_negate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_negate", false]], "copy_sign() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_sign", false]], "copy_sign() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_sign", false]], "copyfile() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copyfile", false]], "copyfileobj() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copyfileobj", false]], "copying files\uff08\u8907\u88fd\u6a94\u6848\uff09": [[332, "index-0", false]], "copying\uff08\u8907\u88fd\uff09": [[332, "index-0", false]], "copymode() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copymode", false]], "copyreg": [[172, "module-copyreg", false]], "copyright (\u5167\u5efa\u8b8a\u6578)": [[168, "copyright", false]], "copyright (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.copyright", false]], "copyright\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-26", false]], "copysign() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.copysign", false]], "copystat() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copystat", false]], "copytree() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copytree", false]], "copy\uff08\u8907\u88fd\uff09": [[172, "index-0", false], [247, "index-4", false], [299, "index-5", false]], "coroutine (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Coroutine", false]], "coroutine (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Coroutine", false]], "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09": [[87, "term-coroutine-function", true]], "coroutine() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.coroutine", false]], "coroutinetype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.CoroutineType", false]], "coroutine\uff08\u5354\u7a0b\uff09": [[87, "term-coroutine", true], [428, "index-110", false], [428, "index-40", false], [430, "index-24", false]], "correlation() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.correlation", false]], "cos() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.cos", false]], "cos() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cos", false]], "cosh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.cosh", false]], "cosh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cosh", false]], "count (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.count", false]], "count (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.count", false]], "count() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.count", false]], "count() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.count", false]], "count() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.count", false]], "count() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.count", false]], "count() (multiprocessing.shared_memory.shareablelist \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.ShareableList.count", false]], "count() (str \u7684\u65b9\u6cd5)": [[344, "str.count", false]], "count() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.count", false]], "count()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-20", false]], "count_diff (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.count_diff", false]], "counter (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.Counter", false]], "counter (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Counter", false]], "countof() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.countOf", false]], "counttestcases() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.countTestCases", false]], "counttestcases() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.countTestCases", false]], "covariance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.covariance", false]], "coverageresults (trace \u4e2d\u7684\u985e\u5225)": [[380, "trace.CoverageResults", false]], "cppflags": [[456, "envvar-CPPFLAGS", false], [456, "index-10", false], [456, "index-11", false], [456, "index-28", false], [465, "index-27", false]], "cprofile": [[308, "module-cProfile", false]], "cpu time\uff08cpu \u6642\u9593\uff09": [[366, "index-12", false], [366, "index-7", false]], "cpu_count() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.cpu_count", false]], "cpu_count() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.cpu_count", false]], "cpython": [[87, "term-CPython", true]], "cpython_only() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.cpython_only", false]], "cr (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.CR", false]], "crawl_delay() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.crawl_delay", false]], "crc (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.CRC", false]], "crc32() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.crc32", false]], "crc32() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.crc32", false]], "crc_hqx() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.crc_hqx", false]], "create() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.create", false]], "create() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.create", false]], "create() (\u65bc venv \u6a21\u7d44\u4e2d)": [[399, "venv.create", false]], "create_aggregate() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_aggregate", false]], "create_archive() (\u65bc zipapp \u6a21\u7d44\u4e2d)": [[421, "zipapp.create_archive", false]], "create_autospec() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.create_autospec", false]], "create_breakaway_from_job (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_BREAKAWAY_FROM_JOB", false]], "create_collation() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_collation", false]], "create_configuration() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.create_configuration", false]], "create_connection() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_connection", false]], "create_connection() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.create_connection", false]], "create_datagram_endpoint() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_datagram_endpoint", false]], "create_decimal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.create_decimal", false]], "create_decimal_from_float() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.create_decimal_from_float", false]], "create_default_context() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.create_default_context", false]], "create_default_error_mode (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_DEFAULT_ERROR_MODE", false]], "create_eager_task_factory() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.create_eager_task_factory", false]], "create_empty_file() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.create_empty_file", false]], "create_function() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_function", false]], "create_future() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_future", false]], "create_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.create_module", false]], "create_module() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.create_module", false]], "create_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.create_module", false]], "create_new_console (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NEW_CONSOLE", false]], "create_new_process_group (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NEW_PROCESS_GROUP", false]], "create_no_window (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NO_WINDOW", false]], "create_server() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_server", false]], "create_server() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.create_server", false]], "create_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.create_stats", false]], "create_string_buffer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.create_string_buffer", false]], "create_subprocess_exec() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[137, "asyncio.create_subprocess_exec", false]], "create_subprocess_shell() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[137, "asyncio.create_subprocess_shell", false]], "create_system (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.create_system", false]], "create_task() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_task", false]], "create_task() (asyncio.taskgroup \u7684\u65b9\u6cd5)": [[139, "asyncio.TaskGroup.create_task", false]], "create_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.create_task", false]], "create_unicode_buffer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.create_unicode_buffer", false]], "create_unix_connection() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_unix_connection", false]], "create_unix_server() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_unix_server", false]], "create_version (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.create_version", false]], "create_window_function() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_window_function", false]], "createattribute() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createAttribute", false]], "createattributens() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createAttributeNS", false]], "createcomment() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createComment", false]], "createdocument() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.createDocument", false]], "createdocumenttype() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.createDocumentType", false]], "createelement() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createElement", false]], "createelementns() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createElementNS", false]], "createfilehandler() (_tkinter.widget.tk \u7684\u65b9\u6cd5)": [[369, "tkinter.Widget.tk.createfilehandler", false]], "createkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CreateKey", false]], "createkeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CreateKeyEx", false]], "createlock() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.createLock", false]], "createlock() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.createLock", false]], "createprocessinginstruction() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createProcessingInstruction", false]], "createrecord() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.CreateRecord", false]], "createsocket() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.createSocket", false]], "createsocket() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.createSocket", false]], "createtextnode() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createTextNode", false]], "creating\uff08\u5efa\u7acb\uff09": [[293, "index-28", false]], "credits (\u5167\u5efa\u8b8a\u6578)": [[168, "credits", false]], "critical (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.CRITICAL", false]], "critical() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.critical", false]], "critical() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.critical", false]], "crncystr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CRNCYSTR", false]], "cross() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.cross", false]], "crt_assembly_version (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.CRT_ASSEMBLY_VERSION", false]], "crypt": [[173, "module-crypt", false], [310, "index-0", false]], "crypt() (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.crypt", false]], "crypt(3)": [[173, "index-0", false], [173, "index-2", false], [173, "index-3", false]], "cryptography\uff08\u5bc6\u78bc\u5b78\uff09": [[174, "index-0", false]], "cssclass_month (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_month", false]], "cssclass_month_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_month_head", false]], "cssclass_noday (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_noday", false]], "cssclass_year (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_year", false]], "cssclass_year_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_year_head", false]], "cssclasses (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclasses", false]], "cssclasses_weekday_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclasses_weekday_head", false]], "csv": [[175, "index-0", false], [175, "module-csv", false]], "csv.reader \u51fd\u5f0f": [[175, "index-3", false]], "cte (email.headerregistry.contenttransferencoding \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTransferEncoding.cte", false]], "cte_type (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.cte_type", false]], "ctermid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ctermid", false]], "ctime() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.ctime", false]], "ctime() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.ctime", false]], "ctime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.ctime", false]], "ctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ctrl", false]], "ctrl_break_event (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.CTRL_BREAK_EVENT", false]], "ctrl_c_event (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.CTRL_C_EVENT", false]], "ctypes": [[176, "module-ctypes", false]], "curdir (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.curdir", false]], "currency() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.currency", false]], "current() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.current", false]], "current_process() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.current_process", false]], "current_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.current_task", false]], "current_thread() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.current_thread", false]], "currentbyteindex (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentByteIndex", false]], "currentcolumnnumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentColumnNumber", false]], "currentframe() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.currentframe", false]], "currentlinenumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentLineNumber", false]], "curs_set() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.curs_set", false]], "curses": [[177, "module-curses", false]], "curses.ascii": [[178, "module-curses.ascii", false]], "curses.panel": [[179, "module-curses.panel", false]], "curses.textpad": [[177, "module-curses.textpad", false]], "cursor (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Cursor", false]], "cursor() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.cursor", false]], "cursyncup() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.cursyncup", false]], "cut\uff08\u526a\u4e0b\uff09": [[247, "index-4", false]], "cwd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.cwd", false]], "cwd() (pathlib.path \u7684\u985e\u5225\u65b9\u6cd5)": [[296, "pathlib.Path.cwd", false]], "cxx": [[456, "envvar-CXX", false]], "cycle() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.cycle", false]], "cycleerror": [[232, "graphlib.CycleError", false]], "cyclic redundancy check\uff08\u5faa\u74b0\u5197\u9918\u6838\u5c0d\uff09": [[424, "index-0", false]], "d_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.D_FMT", false]], "d_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.D_T_FMT", false]], "daemon (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.daemon", false]], "daemon (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.daemon", false]], "daemon_threads (socketserver.threadingmixin \u7684\u5c6c\u6027)": [[338, "socketserver.ThreadingMixIn.daemon_threads", false]], "dangling": [[427, "index-2", false]], "data (collections.userdict \u7684\u5c6c\u6027)": [[160, "collections.UserDict.data", false]], "data (collections.userlist \u7684\u5c6c\u6027)": [[160, "collections.UserList.data", false]], "data (collections.userstring \u7684\u5c6c\u6027)": [[160, "collections.UserString.data", false]], "data (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.data", false]], "data (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.data", false]], "data (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.data", false]], "data (xml.dom.comment \u7684\u5c6c\u6027)": [[410, "xml.dom.Comment.data", false]], "data (xml.dom.processinginstruction \u7684\u5c6c\u6027)": [[410, "xml.dom.ProcessingInstruction.data", false]], "data (xml.dom.text \u7684\u5c6c\u6027)": [[410, "xml.dom.Text.data", false]], "data (xmlrpc.client.binary \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Binary.data", false]], "data() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.data", false]], "data_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.data_filter", false]], "data_open() (urllib.request.datahandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.DataHandler.data_open", false]], "data_received() (asyncio.protocol \u7684\u65b9\u6cd5)": [[133, "asyncio.Protocol.data_received", false]], "databaseerror": [[340, "sqlite3.DatabaseError", false]], "databases\uff08\u8cc7\u6599\u5eab\uff09": [[184, "index-0", false]], "database\uff08\u8cc7\u6599\u5eab\uff09": [[387, "index-0", false]], "dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.dataclass", false]], "dataclass_transform() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.dataclass_transform", false]], "dataclasses": [[181, "module-dataclasses", false]], "dataerror": [[340, "sqlite3.DataError", false]], "datagram_received() (asyncio.datagramprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramProtocol.datagram_received", false]], "datagramhandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.DatagramHandler", false]], "datagramprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.DatagramProtocol", false]], "datagramrequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.DatagramRequestHandler", false]], "datagramtransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.DatagramTransport", false]], "datahandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.DataHandler", false]], "data\uff08\u8cc7\u6599\uff09": [[175, "index-0", false], [347, "index-0", false], [428, "index-0", false], [428, "index-4", false], [430, "index-7", false]], "date (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.date", false]], "date() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.date", false]], "date() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.date", false]], "date_time (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.date_time", false]], "date_time_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.date_time_string", false]], "dateheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.DateHeader", false]], "datetime": [[183, "module-datetime", false]], "datetime (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.datetime", false]], "datetime (email.headerregistry.dateheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.DateHeader.datetime", false]], "datetime (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.DateTime", false]], "datetime format\uff08\u65e5\u671f\u6642\u9593\u683c\u5f0f\uff09": [[183, "index-0", false], [366, "index-11", false], [366, "index-9", false]], "day (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Day", false]], "day (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.day", false]], "day (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.day", false]], "day_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_1", false]], "day_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_2", false]], "day_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_3", false]], "day_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_4", false]], "day_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_5", false]], "day_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_6", false]], "day_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_7", false]], "day_abbr (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.day_abbr", false]], "day_name (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.day_name", false]], "daylight (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.daylight", false]], "daylight saving time\uff08\u65e5\u5149\u7bc0\u7d04\u6642\u9593\uff09": [[366, "index-5", false]], "dbfilenameshelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.DbfilenameShelf", false]], "dbm": [[184, "module-dbm", false]], "dbm.dumb": [[184, "module-dbm.dumb", false]], "dbm.gnu": [[184, "module-dbm.gnu", false], [330, "index-1", false], [428, "index-32", false]], "dbm.ndbm": [[184, "module-dbm.ndbm", false], [330, "index-1", false], [428, "index-32", false]], "dc1 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC1", false]], "dc2 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC2", false]], "dc3 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC3", false]], "dc4 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC4", false]], "dcgettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.dcgettext", false]], "ddocumentation strings\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[441, "index-2", false], [441, "index-5", false]], "deactivate_stack_trampoline() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.deactivate_stack_trampoline", false]], "deallocation": [[75, "index-0", false]], "deallocation, object": [[75, "index-0", false]], "debug (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.debug", false]], "debug (pdb command)": [[297, "pdbcommand-debug", false]], "debug (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.debug", false]], "debug (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.debug", false]], "debug (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.debug", false]], "debug (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.DEBUG", false]], "debug (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.DEBUG", false]], "debug() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.debug", false]], "debug() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.debug", false]], "debug() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.debug", false]], "debug() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.debug", false]], "debug() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.debug", false]], "debug() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.debug", false]], "debug_bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.DEBUG_BYTECODE_SUFFIXES", false]], "debug_collectable (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_COLLECTABLE", false]], "debug_leak (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_LEAK", false]], "debug_saveall (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_SAVEALL", false]], "debug_src() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.debug_src", false]], "debug_stats (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_STATS", false]], "debug_uncollectable (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_UNCOLLECTABLE", false]], "debugger\uff08\u9664\u932f\u5668\uff09": [[247, "index-3", false], [297, "index-2", false], [352, "index-11", false], [352, "index-29", false], [365, "index-1", false]], "debugging\uff08\u9664\u932f\uff09": [[151, "index-5", false], [297, "index-0", false], [436, "index-18", false]], "debuglevel (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.debuglevel", false]], "debugrunner (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DebugRunner", false]], "december (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.DECEMBER", false]], "decimal": [[186, "module-decimal", false]], "decimal (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Decimal", false]], "decimal literal\uff08\u5341\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "decimal() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.decimal", false]], "decimalexception (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DecimalException", false]], "decode (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.decode", false]], "decode() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.decode", false]], "decode() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.decode", false]], "decode() (codecs.codec \u7684\u65b9\u6cd5)": [[158, "codecs.Codec.decode", false]], "decode() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.decode", false]], "decode() (json.jsondecoder \u7684\u65b9\u6cd5)": [[262, "json.JSONDecoder.decode", false]], "decode() (xmlrpc.client.binary \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.Binary.decode", false]], "decode() (xmlrpc.client.datetime \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.DateTime.decode", false]], "decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.decode", false]], "decode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.decode", false]], "decode() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.decode", false]], "decode() (\u65bc uu \u6a21\u7d44\u4e2d)": [[397, "uu.decode", false]], "decode_header() (\u65bc email.header \u6a21\u7d44\u4e2d)": [[202, "email.header.decode_header", false]], "decode_header() (\u65bc nntplib \u6a21\u7d44\u4e2d)": [[288, "nntplib.decode_header", false]], "decode_params() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.decode_params", false]], "decode_rfc2231() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.decode_rfc2231", false]], "decode_source() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.decode_source", false]], "decodebytes() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.decodebytes", false]], "decodedgenerator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.DecodedGenerator", false]], "decodestring() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.decodestring", false]], "decode\uff08\u89e3\u78bc\uff09": [[158, "index-0", false]], "decomposition() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.decomposition", false]], "decompress() (bz2.bz2decompressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Decompressor.decompress", false]], "decompress() (lzma.lzmadecompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMADecompressor.decompress", false]], "decompress() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.decompress", false]], "decompress() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.decompress", false]], "decompress() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.decompress", false]], "decompress() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.decompress", false]], "decompress() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.decompress", false]], "decompressobj() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.decompressobj", false]], "decorator\uff08\u88dd\u98fe\u5668\uff09": [[87, "term-decorator", true]], "dedent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DEDENT", false]], "dedent token\uff08\u7e2e\u6392\u6a19\u8a8c\uff09": [[427, "index-2", false], [435, "index-9", false]], "dedent() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.dedent", false]], "deepcopy() (\u65bc copy \u6a21\u7d44\u4e2d)": [[171, "copy.deepcopy", false]], "def": [[427, "index-28", false]], "def_prog_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.def_prog_mode", false]], "def_shell_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.def_shell_mode", false]], "default (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.default", false]], "default (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.default", false]], "default (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.default", false]], "default (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.DEFAULT", false]], "default() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.default", false]], "default() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.default", false]], "default_buffer_size (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.DEFAULT_BUFFER_SIZE", false]], "default_bufsize (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.default_bufsize", false]], "default_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.default_exception_handler", false]], "default_factory (collections.defaultdict \u7684\u5c6c\u6027)": [[160, "collections.defaultdict.default_factory", false]], "default_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.DEFAULT_FORMAT", false]], "default_ignores (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.DEFAULT_IGNORES", false]], "default_loader() (\u65bc xml.etree.elementinclude \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementInclude.default_loader", false]], "default_max_str_digits (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.default_max_str_digits", false]], "default_open() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.default_open", false]], "default_protocol (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.DEFAULT_PROTOCOL", false]], "default_timer() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.default_timer", false]], "defaultcontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DefaultContext", false]], "defaultcookiepolicy (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.DefaultCookiePolicy", false]], "defaultdict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.defaultdict", false]], "defaultdict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.DefaultDict", false]], "defaulteventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.DefaultEventLoopPolicy", false]], "defaulthandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.DefaultHandler", false]], "defaulthandlerexpand() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.DefaultHandlerExpand", false]], "defaults() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.defaults", false]], "defaultselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.DefaultSelector", false]], "defaulttestloader (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.defaultTestLoader", false]], "defaulttestresult() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.defaultTestResult", false]], "default\uff08\u9810\u8a2d\uff09": [[427, "index-31", false]], "defects (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.defects", false]], "defects (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.defects", false]], "defects (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.defects", false]], "definition\uff08\u5b9a\u7fa9\uff09": [[427, "index-28", false], [427, "index-42", false], [436, "index-24", false]], "defpath (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.defpath", false]], "defragresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.DefragResult", false]], "defragresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.DefragResultBytes", false]], "degrees() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.degrees", false]], "degrees() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.degrees", false]], "del": [[344, "index-24", false], [344, "index-52", false], [428, "index-74", false], [436, "index-21", true]], "del (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Del", false]], "del (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DEL", false]], "del_param() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.del_param", false]], "del_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.del_param", false]], "delattr()": [[225, "delattr", false]], "delay() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.delay", false]], "delay_output() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.delay_output", false]], "delayload (http.cookiejar.filecookiejar \u7684\u5c6c\u6027)": [[243, "http.cookiejar.FileCookieJar.delayload", false]], "delch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.delch", false]], "dele() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.dele", false]], "delete (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Delete", false]], "delete() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.delete", false]], "delete() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.delete", false]], "delete() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.delete", false]], "delete_attr (opcode)": [[191, "opcode-DELETE_ATTR", false]], "delete_deref (opcode)": [[191, "opcode-DELETE_DEREF", false]], "delete_fast (opcode)": [[191, "opcode-DELETE_FAST", false]], "delete_global (opcode)": [[191, "opcode-DELETE_GLOBAL", false]], "delete_name (opcode)": [[191, "opcode-DELETE_NAME", false]], "delete_subscr (opcode)": [[191, "opcode-DELETE_SUBSCR", false]], "deleteacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.deleteacl", false]], "deletefilehandler() (_tkinter.widget.tk \u7684\u65b9\u6cd5)": [[369, "tkinter.Widget.tk.deletefilehandler", false]], "deletekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteKey", false]], "deletekeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteKeyEx", false]], "deleteln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.deleteln", false]], "deleteme() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.deleteMe", false]], "deletevalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteValue", false]], "deleting\uff08\u522a\u9664\uff09": [[293, "index-21", false], [293, "index-29", false], [332, "index-1", false]], "deletion\uff08\u522a\u9664\uff09": [[436, "index-21", false], [436, "index-23", false]], "delimiter (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.delimiter", false]], "delimiters\uff08\u5206\u9694\u7b26\u865f\uff09": [[435, "index-32", false]], "delitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.delitem", false]], "deliver_challenge() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.deliver_challenge", false]], "delocalize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.delocalize", false]], "demo_app() (\u65bc wsgiref.simple_server \u6a21\u7d44\u4e2d)": [[407, "wsgiref.simple_server.demo_app", false]], "denominator (fractions.fraction \u7684\u5c6c\u6027)": [[221, "fractions.Fraction.denominator", false]], "denominator (numbers.rational \u7684\u5c6c\u6027)": [[289, "numbers.Rational.denominator", false]], "deprecationwarning": [[213, "DeprecationWarning", false]], "deque (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.deque", false]], "deque (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Deque", false]], "dequeue() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.dequeue", false]], "der_cert_to_pem_cert() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.DER_cert_to_PEM_cert", false]], "derive() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.derive", false]], "derwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.derwin", false]], "des": [[173, "index-0", false]], "descrgetfunc (c type)": [[63, "c.descrgetfunc", false]], "description (inspect.parameter.kind \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.kind.description", false]], "description (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.description", false]], "description() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.description", false]], "descriptions() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.descriptions", false]], "descriptor\uff08\u63cf\u8ff0\u5668\uff09": [[87, "term-descriptor", true]], "descrsetfunc (c type)": [[63, "c.descrsetfunc", false]], "deserialize() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.deserialize", false]], "dest (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.dest", false]], "destructor (c type)": [[63, "c.destructor", false]], "destructor\uff08\u89e3\u69cb\u51fd\u5f0f\uff09": [[428, "index-74", false], [436, "index-7", false]], "detach() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.detach", false]], "detach() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.detach", false]], "detach() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.detach", false]], "detach() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.detach", false]], "detach() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.detach", false]], "detach() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.Detach", false]], "detached_process (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.DETACHED_PROCESS", false]], "detect_api_mismatch() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.detect_api_mismatch", false]], "detect_encoding() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.detect_encoding", false]], "deterministic profiling": [[308, "index-0", false]], "dev_mode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.dev_mode", false]], "device_encoding() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.device_encoding", false]], "devmajor (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.devmajor", false]], "devminor (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.devminor", false]], "devnull (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.devnull", false]], "devnull (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.DEVNULL", false]], "devpoll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.devpoll", false]], "devpollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.DevpollSelector", false]], "dgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dgettext", false]], "dgettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.dgettext", false]], "dialect (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.Dialect", false]], "dialect (csv.csvreader \u7684\u5c6c\u6027)": [[175, "csv.csvreader.dialect", false]], "dialect (csv.csvwriter \u7684\u5c6c\u6027)": [[175, "csv.csvwriter.dialect", false]], "dialog (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Dialog", false]], "dialog (tkinter.commondialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.commondialog.Dialog", false]], "dialog (tkinter.simpledialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.simpledialog.Dialog", false]], "dict (2to3 fixer)": [[112, "to3fixer-dict", false]], "dict (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Dict", false]], "dict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Dict", false]], "dict (\u5167\u5efa\u985e\u5225)": [[344, "dict", false]], "dict() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.dict", false]], "dict_merge (opcode)": [[191, "opcode-DICT_MERGE", false]], "dict_update (opcode)": [[191, "opcode-DICT_UPDATE", false]], "dictcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.DictComp", false]], "dictconfig() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.dictConfig", false]], "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-dictionary-comprehension", true]], "dictionary expression\uff08\u5b57\u5178\u904b\u7b97\u5f0f\uff09": [[430, "index-17", false]], "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09": [[87, "term-dictionary-view", true]], "dictionary\uff08\u5b57\u5178\uff09": [[22, "index-0", false], [87, "term-dictionary", true], [344, "index-52", false], [428, "index-31", false], [428, "index-47", false], [428, "index-80", false], [430, "index-17", false], [430, "index-18", false], [430, "index-42", false], [436, "index-11", false]], "dictreader (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.DictReader", false]], "dictwriter (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.DictWriter", false]], "diff_bytes() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.diff_bytes", false]], "diff_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.diff_files", false]], "differ (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.Differ", false]], "difference() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.difference", false]], "difference_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.difference_update", false]], "difflib": [[190, "module-difflib", false]], "dig (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.dig", false]], "digest() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.digest", false]], "digest() (hashlib.shake \u7684\u65b9\u6cd5)": [[235, "hashlib.shake.digest", false]], "digest() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.digest", false]], "digest() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.digest", false]], "digest_size (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.digest_size", false]], "digit() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.digit", false]], "digits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.digits", false]], "dir()": [[225, "dir", false]], "dir() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.dir", false]], "dircmp (filecmp \u4e2d\u7684\u985e\u5225)": [[216, "filecmp.dircmp", false]], "directory": [[163, "cmdoption-compileall-arg-directory", false]], "directory (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Directory", false]], "directory (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.Directory", false]], "directory\uff08\u76ee\u9304\uff09": [[293, "index-26", false], [293, "index-28", false], [293, "index-29", false], [293, "index-31", false], [293, "index-32", false], [332, "index-1", false], [334, "index-1", false]], "direntry (os \u4e2d\u7684\u985e\u5225)": [[293, "os.DirEntry", false]], "dirlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirList", false]], "dirname() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.dirname", false]], "dirs_double_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.dirs_double_event", false]], "dirs_select_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.dirs_select_event", false]], "dirselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirSelectBox", false]], "dirselectdialog (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirSelectDialog", false]], "dirsonsyspath (test.support.import_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.import_helper.DirsOnSysPath", false]], "dirtree (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirTree", false]], "dirtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.DIRTYPE", false]], "dis": [[191, "module-dis", false]], "dis \u547d\u4ee4\u5217\u9078\u9805": [[191, "cmdoption-dis-h", false]], "dis() (dis.bytecode \u7684\u65b9\u6cd5)": [[191, "dis.Bytecode.dis", false]], "dis() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.dis", false]], "dis() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.dis", false]], "disable (pdb command)": [[297, "pdbcommand-disable", false]], "disable (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.DISABLE", false]], "disable() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.disable", false]], "disable() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.disable", false]], "disable() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.disable", false]], "disable() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.disable", false]], "disable() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.disable", false]], "disable_faulthandler() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.disable_faulthandler", false]], "disable_gc() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.disable_gc", false]], "disable_interspersed_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.disable_interspersed_args", false]], "disabled (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.disabled", false]], "disablereflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DisableReflectionKey", false]], "disassemble() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.disassemble", false]], "discard (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.discard", false]], "discard() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.discard", false]], "discard() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.discard", false]], "discard() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.discard", false]], "disco() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.disco", false]], "discover() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.discover", false]], "disk_usage() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.disk_usage", false]], "dispatch_call() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_call", false]], "dispatch_exception() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_exception", false]], "dispatch_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_line", false]], "dispatch_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_return", false]], "dispatch_table (pickle.pickler \u7684\u5c6c\u6027)": [[299, "pickle.Pickler.dispatch_table", false]], "display": [[369, "index-0", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false]], "display (pdb command)": [[297, "pdbcommand-display", false]], "display_name (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.display_name", false]], "display_name (email.headerregistry.group \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Group.display_name", false]], "displayhook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.displayhook", false]], "dist() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.dist", false]], "distance() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.distance", false]], "distb() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.distb", false]], "div (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Div", false]], "divide() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divide", false]], "divide_int() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divide_int", false]], "divisionbyzero (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DivisionByZero", false]], "division\uff08\u9664\uff09": [[430, "index-67", false]], "divmod": [[47, "index-0", false], [428, "index-100", false], [428, "index-101", false]], "divmod()": [[225, "divmod", false]], "divmod() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divmod", false]], "dle (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DLE", false]], "dllcanunloadnow() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.DllCanUnloadNow", false]], "dllgetclassobject() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.DllGetClassObject", false]], "dllhandle (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.dllhandle", false]], "dnd_start() (\u65bc tkinter.dnd \u6a21\u7d44\u4e2d)": [[371, "tkinter.dnd.dnd_start", false]], "dndhandler (tkinter.dnd \u4e2d\u7684\u985e\u5225)": [[371, "tkinter.dnd.DndHandler", false]], "dngettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dngettext", false]], "dnpgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dnpgettext", false]], "do_clear() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.do_clear", false]], "do_command() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.do_command", false]], "do_get() (http.server.simplehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.SimpleHTTPRequestHandler.do_GET", false]], "do_handshake() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.do_handshake", false]], "do_head() (http.server.simplehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.SimpleHTTPRequestHandler.do_HEAD", false]], "do_help() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.do_help", false]], "do_post() (http.server.cgihttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.CGIHTTPRequestHandler.do_POST", false]], "doc (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.doc", false]], "doc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.doc_header", false]], "doccgixmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler", false]], "docfilesuite() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DocFileSuite", false]], "doclasscleanups() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.doClassCleanups", false]], "docleanups() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.doCleanups", false]], "docmd() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.docmd", false]], "docstring (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.docstring", false]], "docstrings\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[441, "index-2", false], [441, "index-5", false]], "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[87, "term-docstring", true], [427, "index-42", false]], "doctest": [[193, "module-doctest", false]], "doctest (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTest", false]], "doctestfailure": [[193, "doctest.DocTestFailure", false]], "doctestfinder (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestFinder", false]], "doctestparser (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestParser", false]], "doctestrunner (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestRunner", false]], "doctestsuite() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DocTestSuite", false]], "doctype() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.doctype", false]], "documentation string\uff08\u6587\u4ef6\u5b57\u4e32\uff09": [[428, "index-60", false]], "documentation\uff08\u6587\u4ef6\uff09": [[313, "index-0", false]], "documentelement (xml.dom.document \u7684\u5c6c\u6027)": [[410, "xml.dom.Document.documentElement", false]], "docxmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocXMLRPCRequestHandler", false]], "docxmlrpcserver (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocXMLRPCServer", false]], "domain (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.domain", false]], "domain (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain", false]], "domain (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.domain", false]], "domain (tracemalloc.domainfilter \u7684\u5c6c\u6027)": [[382, "tracemalloc.DomainFilter.domain", false]], "domain (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.domain", false]], "domain (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.domain", false]], "domain_initial_dot (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain_initial_dot", false]], "domain_return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.domain_return_ok", false]], "domain_specified (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain_specified", false]], "domainfilter (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.DomainFilter", false]], "domainliberal (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainLiberal", false]], "domainrfc2965match (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainRFC2965Match", false]], "domainstrict (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrict", false]], "domainstrictnodots (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrictNoDots", false]], "domainstrictnondomain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrictNonDomain", false]], "domeventstream (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.DOMEventStream", false]], "domexception": [[410, "xml.dom.DOMException", false]], "domodulecleanups() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.doModuleCleanups", false]], "domstringsizeerr": [[410, "xml.dom.DomstringSizeErr", false]], "done() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.done", false]], "done() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.done", false]], "done() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.done", false]], "done() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.done", false]], "done() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.done", false]], "done() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.done", false]], "dont_accept_blankline (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DONT_ACCEPT_BLANKLINE", false]], "dont_accept_true_for_1 (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DONT_ACCEPT_TRUE_FOR_1", false]], "dont_write_bytecode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.dont_write_bytecode", false]], "dont_write_bytecode (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.dont_write_bytecode", false]], "dorollover() (logging.handlers.rotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.RotatingFileHandler.doRollover", false]], "dorollover() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.doRollover", false]], "dot (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOT", false]], "dot() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.dot", false]], "dotall (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.DOTALL", false]], "doublequote (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.doublequote", false]], "doubleslash (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESLASH", false]], "doubleslashequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESLASHEQUAL", false]], "doublestar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESTAR", false]], "doublestarequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESTAREQUAL", false]], "doupdate() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.doupdate", false]], "down (pdb command)": [[297, "pdbcommand-down", false]], "down() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.down", false]], "dpgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dpgettext", false]], "drain() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.drain", false]], "drive (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.drive", false]], "drop_whitespace (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.drop_whitespace", false]], "dropwhile() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.dropwhile", false]], "dst() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.dst", false]], "dst() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.dst", false]], "dst() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.dst", false]], "dst() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.dst", false]], "dtdhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.DTDHandler", false]], "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09": [[87, "term-duck-typing", true]], "dump() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.dump", false]], "dump() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.dump", false]], "dump() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.dump", false]], "dump() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.dump", false]], "dump() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.dump", false]], "dump() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.dump", false]], "dump() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.dump", false]], "dump() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.dump", false]], "dump_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.dump_stats", false]], "dump_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.dump_stats", false]], "dump_traceback() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.dump_traceback", false]], "dump_traceback_later() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.dump_traceback_later", false]], "dumps() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.dumps", false]], "dumps() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.dumps", false]], "dumps() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.dumps", false]], "dumps() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.dumps", false]], "dumps() (\u65bc xmlrpc.client \u6a21\u7d44\u4e2d)": [[419, "xmlrpc.client.dumps", false]], "dup() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.dup", false]], "dup() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.dup", false]], "dup2() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.dup2", false]], "duplicateoptionerror": [[167, "configparser.DuplicateOptionError", false]], "duplicatesectionerror": [[167, "configparser.DuplicateSectionError", false]], "dwflags (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.dwFlags", false]], "dynamicclassattribute() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.DynamicClassAttribute", false]], "e": [[435, "index-29", false]], "e (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.e", false]], "e (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.e", false]], "e2big (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.E2BIG", false]], "eacces (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EACCES", false]], "eaddrinuse (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADDRINUSE", false]], "eaddrnotavail (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADDRNOTAVAIL", false]], "eadv (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADV", false]], "eafnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EAFNOSUPPORT", false]], "eafp": [[87, "term-EAFP", true]], "eagain (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EAGAIN", false]], "eager_task_factory() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.eager_task_factory", false]], "ealready (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EALREADY", false]], "east_asian_width() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.east_asian_width", false]], "ebade (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADE", false]], "ebadf (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADF", false]], "ebadfd (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADFD", false]], "ebadmsg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADMSG", false]], "ebadr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADR", false]], "ebadrqc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADRQC", false]], "ebadslt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADSLT", false]], "ebfont (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBFONT", false]], "ebusy (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBUSY", false]], "ecanceled (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECANCELED", false]], "echild (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECHILD", false]], "echo() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.echo", false]], "echochar() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.echochar", false]], "echrng (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECHRNG", false]], "ecomm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECOMM", false]], "econnaborted (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNABORTED", false]], "econnrefused (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNREFUSED", false]], "econnreset (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNRESET", false]], "edeadlk (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDEADLK", false]], "edeadlock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDEADLOCK", false]], "edestaddrreq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDESTADDRREQ", false]], "edit() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.edit", false]], "edom (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDOM", false]], "edotdot (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDOTDOT", false]], "edquot (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDQUOT", false]], "eexist (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EEXIST", false]], "efault (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EFAULT", false]], "efbig (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EFBIG", false]], "efd_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_CLOEXEC", false]], "efd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_NONBLOCK", false]], "efd_semaphore (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_SEMAPHORE", false]], "effective id": [[293, "index-8", false]], "effective() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.effective", false]], "ehlo() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.ehlo", false]], "ehlo_or_helo_if_needed() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.ehlo_or_helo_if_needed", false]], "ehostdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EHOSTDOWN", false]], "ehostunreach (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EHOSTUNREACH", false]], "eidrm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EIDRM", false]], "eilseq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EILSEQ", false]], "einprogress (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINPROGRESS", false]], "eintr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINTR", false]], "einval (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINVAL", false]], "eio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EIO", false]], "eisconn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISCONN", false]], "eisdir (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISDIR", false]], "eisnam (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISNAM", false]], "eject (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.EJECT", false]], "el2hlt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL2HLT", false]], "el2nsync (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL2NSYNC", false]], "el3hlt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL3HLT", false]], "el3rst (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL3RST", false]], "element (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.Element", false]], "element_create() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_create", false]], "element_names() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_names", false]], "element_options() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_options", false]], "elementdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ElementDeclHandler", false]], "elements() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.elements", false]], "elementtree (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.ElementTree", false]], "elibacc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBACC", false]], "elibbad (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBBAD", false]], "elibexec (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBEXEC", false]], "elibmax (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBMAX", false]], "elibscn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBSCN", false]], "elif": [[427, "index-3", false]], "ellinghouse, lance": [[397, "index-1", false]], "ellipsis": [[428, "index-8", false]], "ellipsis (\u5167\u5efa\u8b8a\u6578)": [[168, "Ellipsis", false]], "ellipsis (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.ELLIPSIS", false]], "ellipsis (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ELLIPSIS", false]], "ellipsis literal\uff08\u522a\u7bc0\u865f\uff09": [[168, "index-0", false], [344, "index-66", false], [428, "index-8", false]], "ellipsistype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.EllipsisType", false]], "elnrng (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELNRNG", false]], "eloop (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELOOP", false]], "else": [[427, "index-13", false], [427, "index-2", false], [427, "index-3", false], [427, "index-4", false], [427, "index-6", false], [427, "index-9", false], [430, "index-88", false], [436, "index-31", false]], "em (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.EM", false]], "email": [[194, "module-email", false]], "email.charset": [[195, "module-email.charset", false]], "email.contentmanager": [[197, "module-email.contentmanager", false]], "email.encoders": [[198, "module-email.encoders", false]], "email.errors": [[199, "module-email.errors", false]], "email.generator": [[201, "module-email.generator", false]], "email.header": [[202, "module-email.header", false]], "email.headerregistry": [[203, "module-email.headerregistry", false]], "email.iterators": [[204, "module-email.iterators", false]], "email.message": [[205, "module-email.message", false]], "email.mime": [[206, "module-email.mime", false]], "email.mime.application": [[206, "module-email.mime.application", false]], "email.mime.audio": [[206, "module-email.mime.audio", false]], "email.mime.base": [[206, "module-email.mime.base", false]], "email.mime.image": [[206, "module-email.mime.image", false]], "email.mime.message": [[206, "module-email.mime.message", false]], "email.mime.multipart": [[206, "module-email.mime.multipart", false]], "email.mime.nonmultipart": [[206, "module-email.mime.nonmultipart", false]], "email.mime.text": [[206, "module-email.mime.text", false]], "email.parser": [[207, "module-email.parser", false]], "email.policy": [[208, "module-email.policy", false]], "email.utils": [[209, "module-email.utils", false]], "emailmessage (email.message \u4e2d\u7684\u985e\u5225)": [[205, "email.message.EmailMessage", false]], "emailpolicy (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.EmailPolicy", false]], "emfile (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMFILE", false]], "emit() (logging.filehandler \u7684\u65b9\u6cd5)": [[269, "logging.FileHandler.emit", false]], "emit() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.emit", false]], "emit() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.emit", false]], "emit() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.emit", false]], "emit() (logging.handlers.httphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.HTTPHandler.emit", false]], "emit() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.emit", false]], "emit() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.emit", false]], "emit() (logging.handlers.rotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.RotatingFileHandler.emit", false]], "emit() (logging.handlers.smtphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SMTPHandler.emit", false]], "emit() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.emit", false]], "emit() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.emit", false]], "emit() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.emit", false]], "emit() (logging.handlers.watchedfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.WatchedFileHandler.emit", false]], "emit() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.emit", false]], "emit() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.emit", false]], "emlink (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMLINK", false]], "empty": [[316, "queue.Empty", false], [430, "index-15", false], [430, "index-9", false]], "empty (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.empty", false]], "empty (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.empty", false]], "empty() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.empty", false]], "empty() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.empty", false]], "empty() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.empty", false]], "empty() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.empty", false]], "empty() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.empty", false]], "empty() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.empty", false]], "empty_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.EMPTY_NAMESPACE", false]], "emptyline() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.emptyline", false]], "empty\uff08\u7a7a\u7684\uff09": [[428, "index-20", false]], "emscripten_version (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.emscripten_version", false]], "emsgsize (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMSGSIZE", false]], "emultihop (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMULTIHOP", false]], "enable (pdb command)": [[297, "pdbcommand-enable", false]], "enable() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.enable", false]], "enable() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.enable", false]], "enable() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.enable", false]], "enable() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.enable", false]], "enable() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.enable", false]], "enable() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.enable", false]], "enable_callback_tracebacks() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.enable_callback_tracebacks", false]], "enable_interspersed_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.enable_interspersed_args", false]], "enable_load_extension() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.enable_load_extension", false]], "enable_traversal() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.enable_traversal", false]], "enable_user_site (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.ENABLE_USER_SITE", false]], "enablecontrolflowguard": [[483, "index-95", false]], "enabled (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.enabled", false]], "enablereflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnableReflectionKey", false]], "enametoolong (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENAMETOOLONG", false]], "enavail (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENAVAIL", false]], "enclose() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.enclose", false]], "encode (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.encode", false]], "encode() (codecs.codec \u7684\u65b9\u6cd5)": [[158, "codecs.Codec.encode", false]], "encode() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.encode", false]], "encode() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.encode", false]], "encode() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.encode", false]], "encode() (str \u7684\u65b9\u6cd5)": [[344, "str.encode", false]], "encode() (xmlrpc.client.binary \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.Binary.encode", false]], "encode() (xmlrpc.client.datetime \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.DateTime.encode", false]], "encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.encode", false]], "encode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.encode", false]], "encode() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.encode", false]], "encode() (\u65bc uu \u6a21\u7d44\u4e2d)": [[397, "uu.encode", false]], "encode_7or8bit() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_7or8bit", false]], "encode_base64() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_base64", false]], "encode_noop() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_noop", false]], "encode_quopri() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_quopri", false]], "encode_rfc2231() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.encode_rfc2231", false]], "encodebytes() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.encodebytes", false]], "encodedfile() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.EncodedFile", false]], "encodepriority() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.encodePriority", false]], "encodestring() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.encodestring", false]], "encode\uff08\u7de8\u78bc\uff09": [[158, "index-0", false]], "encoding (curses.window \u7684\u5c6c\u6027)": [[177, "curses.window.encoding", false]], "encoding (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.encoding", false]], "encoding (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.encoding", false]], "encoding (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.ENCODING", false]], "encoding (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ENCODING", false]], "encoding declarations (source file)\uff08\u7de8\u78bc\u5ba3\u544a\uff08\u539f\u59cb\u6a94\u6848\uff09\uff09": [[435, "index-5", false]], "encodings.idna": [[158, "module-encodings.idna", false]], "encodings.mbcs": [[158, "module-encodings.mbcs", false]], "encodings.utf_8_sig": [[158, "module-encodings.utf_8_sig", false]], "encodings_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.encodings_map", false]], "encodings_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.encodings_map", false]], "encodingwarning": [[213, "EncodingWarning", false]], "encoding\uff08\u7de8\u78bc\uff09": [[143, "index-0", false], [317, "index-0", false]], "end (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.end", false]], "end() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.end", false]], "end() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.end", false]], "end_async_for (opcode)": [[191, "opcode-END_ASYNC_FOR", false]], "end_col_offset (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.end_col_offset", false]], "end_fill() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.end_fill", false]], "end_for (opcode)": [[191, "opcode-END_FOR", false]], "end_headers() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.end_headers", false]], "end_lineno (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.end_lineno", false]], "end_lineno (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.end_lineno", false]], "end_lineno (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.end_lineno", false]], "end_ns() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.end_ns", false]], "end_offset (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.end_offset", false]], "end_offset (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.end_offset", false]], "end_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.end_poly", false]], "end_send (opcode)": [[191, "opcode-END_SEND", false]], "endcdata() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.endCDATA", false]], "endcdatasectionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndCdataSectionHandler", false]], "enddoctypedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndDoctypeDeclHandler", false]], "enddocument() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endDocument", false]], "enddtd() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.endDTD", false]], "endelement() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endElement", false]], "endelementhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndElementHandler", false]], "endelementns() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endElementNS", false]], "endheaders() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.endheaders", false]], "endmarker (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ENDMARKER", false]], "endnamespacedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndNamespaceDeclHandler", false]], "endpos (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.endpos", false]], "endprefixmapping() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endPrefixMapping", false]], "endswith() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.endswith", false]], "endswith() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.endswith", false]], "endswith() (str \u7684\u65b9\u6cd5)": [[344, "str.endswith", false]], "endwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.endwin", false]], "enetdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETDOWN", false]], "enetreset (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETRESET", false]], "enetunreach (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETUNREACH", false]], "enfile (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENFILE", false]], "enoano (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOANO", false]], "enobufs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOBUFS", false]], "enocsi (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOCSI", false]], "enodata (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENODATA", false]], "enodev (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENODEV", false]], "enoent (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOENT", false]], "enoexec (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOEXEC", false]], "enolck (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOLCK", false]], "enolink (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOLINK", false]], "enomem (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOMEM", false]], "enomsg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOMSG", false]], "enonet (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENONET", false]], "enopkg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOPKG", false]], "enoprotoopt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOPROTOOPT", false]], "enospc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSPC", false]], "enosr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSR", false]], "enostr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSTR", false]], "enosys (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSYS", false]], "enotblk (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTBLK", false]], "enotcapable (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTCAPABLE", false]], "enotconn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTCONN", false]], "enotdir (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTDIR", false]], "enotempty (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTEMPTY", false]], "enotnam (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTNAM", false]], "enotrecoverable (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTRECOVERABLE", false]], "enotsock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTSOCK", false]], "enotsup (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTSUP", false]], "enotty (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTTY", false]], "enotuniq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTUNIQ", false]], "enq (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ENQ", false]], "enqueue() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.enqueue", false]], "enqueue_sentinel() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.enqueue_sentinel", false]], "ensure_directories() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.ensure_directories", false]], "ensure_future() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.ensure_future", false]], "ensurepip": [[210, "module-ensurepip", false]], "enter() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.enter", false]], "enter_async_context() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.enter_async_context", false]], "enter_context() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.enter_context", false]], "enterabs() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.enterabs", false]], "enterasynccontext() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.enterAsyncContext", false]], "enterclasscontext() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.enterClassContext", false]], "entercontext() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.enterContext", false]], "entermodulecontext() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.enterModuleContext", false]], "entities (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.entities", false]], "entitydeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EntityDeclHandler", false]], "entitydefs (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.entitydefs", false]], "entityresolver (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.EntityResolver", false]], "enum": [[211, "module-enum", false]], "enum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.Enum", false]], "enum_certificates() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.enum_certificates", false]], "enum_crls() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.enum_crls", false]], "enumcheck (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.EnumCheck", false]], "enumerate()": [[225, "enumerate", false]], "enumerate() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.enumerate", false]], "enumkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnumKey", false]], "enumtype (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.EnumType", false]], "enumvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnumValue", false]], "envbuilder (venv \u4e2d\u7684\u985e\u5225)": [[399, "venv.EnvBuilder", false]], "environ (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.environ", false]], "environ (\u65bc posix \u6a21\u7d44\u4e2d)": [[306, "posix.environ", false]], "environb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.environb", false]], "environment variables expansion (windows) \uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b (windows)\uff09": [[405, "index-0", false]], "environment variables expansion (windows)\uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b (windows)\uff09": [[294, "index-9", false]], "environment variables expansion\uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b\uff09": [[294, "index-9", false]], "environment variables\uff08\u74b0\u5883\u8b8a\u6578\uff09": [[293, "index-17", false], [293, "index-21", false]], "environmenterror": [[213, "EnvironmentError", false]], "environments \uff08\u74b0\u5883\uff09": [[399, "index-0", false]], "environmentvarguard (test.support.os_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.os_helper.EnvironmentVarGuard", false]], "environment\uff08\u74b0\u5883\uff09": [[429, "index-8", false]], "enxio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENXIO", false]], "eof (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.eof", false]], "eof (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.eof", false]], "eof (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.eof", false]], "eof (ssl.memorybio \u7684\u5c6c\u6027)": [[341, "ssl.MemoryBIO.eof", false]], "eof (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.eof", false]], "eof_received() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.eof_received", false]], "eof_received() (asyncio.protocol \u7684\u65b9\u6cd5)": [[133, "asyncio.Protocol.eof_received", false]], "eoferror": [[213, "EOFError", false]], "eoferror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[24, "index-1", false]], "eopnotsupp (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOPNOTSUPP", false]], "eot (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.EOT", false]], "eoverflow (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOVERFLOW", false]], "eownerdead (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOWNERDEAD", false]], "eperm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPERM", false]], "epfnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPFNOSUPPORT", false]], "epilogue (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.epilogue", false]], "epilogue (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.epilogue", false]], "epipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPIPE", false]], "epoch\uff08\u7d00\u5143\uff09": [[366, "index-0", false]], "epoll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.epoll", false]], "epollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.EpollSelector", false]], "eproto (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTO", false]], "eprotonosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTONOSUPPORT", false]], "eprototype (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTOTYPE", false]], "epsilon (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.epsilon", false]], "eq (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Eq", false]], "eq() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.eq", false]], "eqequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EQEQUAL", false]], "eqfull (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EQFULL", false]], "equal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EQUAL", false]], "era (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA", false]], "era_d_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_D_FMT", false]], "era_d_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_D_T_FMT", false]], "era_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_T_FMT", false]], "erange (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ERANGE", false]], "erase() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.erase", false]], "erasechar() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.erasechar", false]], "eremchg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMCHG", false]], "eremote (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMOTE", false]], "eremoteio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMOTEIO", false]], "erestart (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ERESTART", false]], "erf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.erf", false]], "erfc() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.erfc", false]], "erofs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EROFS", false]], "err (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ERR", false]], "errcheck (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.errcheck", false]], "errcode (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.errcode", false]], "errmsg (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.errmsg", false]], "errno": [[212, "module-errno", false], [213, "index-5", false]], "errno (oserror \u7684\u5c6c\u6027)": [[213, "OSError.errno", false]], "error": [[115, "thread.error", false], [141, "audioop.error", false], [146, "binascii.Error", false], [167, "configparser.Error", false], [171, "copy.Error", false], [175, "csv.Error", false], [177, "curses.error", false], [184, "dbm.dumb.error", false], [184, "dbm.error", false], [184, "dbm.gnu.error", false], [184, "dbm.ndbm.error", false], [228, "getopt.error", false], [266, "locale.Error", false], [271, "mailbox.Error", false], [287, "nis.error", false], [293, "os.error", false], [314, "xml.parsers.expat.error", false], [319, "re.error", false], [322, "resource.error", false], [328, "select.error", false], [332, "shutil.Error", false], [337, "socket.error", false], [340, "sqlite3.Error", false], [347, "struct.error", false], [349, "sunau.Error", false], [397, "uu.Error", false], [401, "wave.Error", false], [403, "webbrowser.Error", false], [408, "xdrlib.Error", false], [424, "zlib.error", false]], "error (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.ERROR", false]], "error (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ERROR", false]], "error handler's name\uff08\u932f\u8aa4\u8655\u7406\u5668\u540d\u7a31\uff09": [[158, "index-1", false], [158, "index-3", false], [158, "index-4", false]], "error handling\uff08\u932f\u8aa4\u8655\u7406\uff09": [[429, "index-15", false]], "error() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.error", false]], "error() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.error", false]], "error() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.error", false]], "error() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.error", false]], "error() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.error", false]], "error_body (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_body", false]], "error_content_type (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.error_content_type", false]], "error_headers (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_headers", false]], "error_leader() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.error_leader", false]], "error_message_format (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.error_message_format", false]], "error_output() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.error_output", false]], "error_perm": [[223, "ftplib.error_perm", false]], "error_proto": [[223, "ftplib.error_proto", false], [305, "poplib.error_proto", false]], "error_received() (asyncio.datagramprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramProtocol.error_received", false]], "error_reply": [[223, "ftplib.error_reply", false]], "error_status (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_status", false]], "error_temp": [[223, "ftplib.error_temp", false]], "errorbyteindex (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorByteIndex", false]], "errorcode (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorCode", false]], "errorcode (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.errorcode", false]], "errorcolumnnumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorColumnNumber", false]], "errorhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.ErrorHandler", false]], "errorlevel (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.errorlevel", false]], "errorlinenumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorLineNumber", false]], "errors (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.errors", false]], "errors (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.errors", false]], "errors (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.errors", false]], "errorstream (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.ErrorStream", false]], "errorstring() (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.ErrorString", false]], "errors\uff08\u932f\u8aa4\uff09": [[267, "index-0", false], [429, "index-15", false]], "errortoken (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ERRORTOKEN", false]], "esc (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ESC", false]], "escape (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.escape", false]], "escape sequence\uff08\u8df3\u812b\u5e8f\u5217\uff09": [[158, "index-1", false], [158, "index-3", false], [435, "index-23", false]], "escape() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.escape", false]], "escape() (\u65bc html \u6a21\u7d44\u4e2d)": [[238, "html.escape", false]], "escape() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.escape", false]], "escape() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.escape", false]], "escapechar (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.escapechar", false]], "escapedquotes (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.escapedquotes", false]], "eshutdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESHUTDOWN", false]], "esocktnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESOCKTNOSUPPORT", false]], "espipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESPIPE", false]], "esrch (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESRCH", false]], "esrmnt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESRMNT", false]], "estale (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESTALE", false]], "estrpipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESTRPIPE", false]], "etb (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ETB", false]], "eth_p_all (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETH_P_ALL", false]], "ethertype_arp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_ARP", false]], "ethertype_ip (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_IP", false]], "ethertype_ipv6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_IPV6", false]], "ethertype_vlan (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_VLAN", false]], "etime (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETIME", false]], "etimedout (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETIMEDOUT", false]], "etiny() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.Etiny", false]], "etoomanyrefs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETOOMANYREFS", false]], "etop() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.Etop", false]], "etx (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ETX", false]], "etxtbsy (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETXTBSY", false]], "euclean (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUCLEAN", false]], "eunatch (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUNATCH", false]], "eusers (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUSERS", false]], "eval": [[307, "index-0", false], [307, "index-2", false], [344, "index-64", false], [436, "index-44", false], [437, "index-6", false]], "eval()": [[225, "eval", false]], "evaluation": [[430, "index-96", false]], "event (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Event", false]], "event (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Event", false]], "event (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Event", false]], "event scheduling\uff08\u4e8b\u4ef6\u6392\u7a0b\uff09": [[325, "index-0", false]], "event() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.event", false]], "event() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Event", false]], "event_read (\u65bc selectors \u6a21\u7d44\u4e2d)": [[329, "selectors.EVENT_READ", false]], "event_write (\u65bc selectors \u6a21\u7d44\u4e2d)": [[329, "selectors.EVENT_WRITE", false]], "eventfd() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd", false]], "eventfd_read() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd_read", false]], "eventfd_write() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd_write", false]], "events (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.events", false]], "events (widgets)": [[369, "index-5", false]], "ewouldblock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EWOULDBLOCK", false]], "ex_cantcreat (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_CANTCREAT", false]], "ex_config (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_CONFIG", false]], "ex_dataerr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_DATAERR", false]], "ex_ioerr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_IOERR", false]], "ex_nohost (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOHOST", false]], "ex_noinput (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOINPUT", false]], "ex_noperm (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOPERM", false]], "ex_notfound (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOTFOUND", false]], "ex_nouser (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOUSER", false]], "ex_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OK", false]], "ex_oserr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OSERR", false]], "ex_osfile (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OSFILE", false]], "ex_protocol (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_PROTOCOL", false]], "ex_software (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_SOFTWARE", false]], "ex_tempfail (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_TEMPFAIL", false]], "ex_unavailable (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_UNAVAILABLE", false]], "ex_usage (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_USAGE", false]], "example (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.Example", false]], "example (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.example", false]], "example (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.example", false]], "examples (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.examples", false]], "exc_info (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.exc_info", false]], "exc_info \uff08sys \u6a21\u7d44\u4e2d\uff09": [[35, "index-13", false], [428, "index-66", false]], "exc_info() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exc_info", false]], "exc_msg (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.exc_msg", false]], "exc_type (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.exc_type", false]], "excel (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.excel", false]], "excel_tab (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.excel_tab", false]], "except": [[213, "index-0", false], [427, "index-9", false]], "except (2to3 fixer)": [[112, "to3fixer-except", false]], "except clause\uff08\u4f8b\u5916\u5b50\u53e5\uff09": [[427, "index-10", false]], "except_star": [[427, "index-12", false]], "excepthandler (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ExceptHandler", false]], "excepthook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.excepthook", false]], "excepthook() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.excepthook", false]], "excepthook() \uff08sys \u6a21\u7d44\u4e2d\uff09": [[152, "index-2", false]], "exception": [[213, "Exception", false], [430, "index-32", false], [430, "index-33", false], [430, "index-36", false], [430, "index-37", false], [430, "index-4", false], [430, "index-40", false], [430, "index-63", false], [430, "index-67", false], [430, "index-72", false]], "exception (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.EXCEPTION", false]], "exception handler\uff08\u4f8b\u5916\u8655\u7406\u5668\uff09": [[429, "index-15", false]], "exception() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.exception", false]], "exception() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.exception", false]], "exception() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.exception", false]], "exception() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.exception", false]], "exception() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.exception", false]], "exception() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exception", false]], "exception_handled (monitoring event)": [[353, "monitoring-event-EXCEPTION_HANDLED", false]], "exceptiongroup": [[213, "ExceptionGroup", false]], "exceptions (baseexceptiongroup \u7684\u5c6c\u6027)": [[213, "BaseExceptionGroup.exceptions", false]], "exceptions (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.exceptions", false]], "exceptions\uff08\u4f8b\u5916\uff09": [[152, "index-0", false]], "exception\uff08\u4f8b\u5916\uff09": [[213, "index-2", false], [428, "index-66", false], [429, "index-14", false], [436, "index-19", false], [436, "index-26", false], [436, "index-27", false], [436, "index-29", false], [436, "index-34", false]], "exclamation (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EXCLAMATION", false]], "exclusive\uff08\u6392\u5916\uff09": [[430, "index-75", false]], "exdev (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EXDEV", false]], "exec": [[225, "index-2", false], [344, "index-64", false], [436, "index-44", false]], "exec (2to3 fixer)": [[112, "to3fixer-exec", false]], "exec()": [[225, "exec", false]], "exec_module() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.exec_module", false]], "exec_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.exec_module", false]], "exec_module() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.exec_module", false]], "exec_module() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.exec_module", false]], "exec_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.exec_module", false]], "exec_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exec_prefix", false]], "execfile (2to3 fixer)": [[112, "to3fixer-execfile", false]], "execl() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execl", false]], "execle() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execle", false]], "execlp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execlp", false]], "execlpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execlpe", false]], "executable (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.executable", false]], "executable zip files\uff08\u53ef\u57f7\u884c\u7684 zip \u6a94\u6848\uff09": [[421, "index-0", false]], "executable\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-21", false]], "execute() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Execute", false]], "execute() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.execute", false]], "execute() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.execute", false]], "executemany() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.executemany", false]], "executemany() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.executemany", false]], "executescript() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.executescript", false]], "executescript() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.executescript", false]], "execution model\uff08\u57f7\u884c\u6a21\u578b\uff09": [[429, "index-0", false]], "executionloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ExecutionLoader", false]], "execution\uff08\u57f7\u884c\uff09": [[427, "index-42", false], [428, "index-66", false], [429, "index-13", false], [429, "index-2", false]], "executor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.Executor", false]], "execv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execv", false]], "execve() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execve", false]], "execvp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execvp", false]], "execvpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execvpe", false]], "exfileselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ExFileSelectBox", false]], "exfull (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EXFULL", false]], "exists() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.exists", false]], "exists() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.exists", false]], "exists() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.exists", false]], "exists() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.exists", false]], "exit (\u5167\u5efa\u8b8a\u6578)": [[168, "exit", false]], "exit() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.exit", false]], "exit() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.exit", false]], "exit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exit", false]], "exitcode (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.exitcode", false]], "exitfunc (2to3 fixer)": [[112, "to3fixer-exitfunc", false]], "exitonclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.exitonclick", false]], "exitstack (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.ExitStack", false]], "exit\uff08c \u51fd\u5f0f\uff09": [[59, "index-3", false]], "exp() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.exp", false]], "exp() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.exp", false]], "exp() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.exp", false]], "exp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.exp", false]], "exp2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.exp2", false]], "expand() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.expand", false]], "expand_tabs (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.expand_tabs", false]], "expandenvironmentstrings() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.ExpandEnvironmentStrings", false]], "expandnode() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.expandNode", false]], "expandtabs() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.expandtabs", false]], "expandtabs() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.expandtabs", false]], "expandtabs() (str \u7684\u65b9\u6cd5)": [[344, "str.expandtabs", false]], "expanduser() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.expanduser", false]], "expanduser() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.expanduser", false]], "expandvars() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.expandvars", false]], "expat": [[314, "index-0", false]], "expaterror": [[314, "xml.parsers.expat.ExpatError", false]], "expect() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.expect", false]], "expected (asyncio.incompletereaderror \u7684\u5c6c\u6027)": [[127, "asyncio.IncompleteReadError.expected", false]], "expectedfailure() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.expectedFailure", false]], "expectedfailures (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.expectedFailures", false]], "expired() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.expired", false]], "expires (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.expires", false]], "expires (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.expires", false]], "exploded (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.exploded", false]], "exploded (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.exploded", false]], "exploded (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.exploded", false]], "exploded (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.exploded", false]], "expm1() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.expm1", false]], "expovariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.expovariate", false]], "expr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Expr", false]], "expression": [[430, "index-0", false], [430, "index-22", false], [430, "index-23", false], [430, "index-82", false], [430, "index-88", false], [430, "index-90", false], [430, "index-91", false], [436, "index-1", false], [436, "index-2", false]], "expression (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Expression", false]], "expression list\uff08\u8868\u9054\u5f0f\u5217\u8868\uff09": [[427, "index-42", false]], "expression list\uff08\u904b\u7b97\u5f0f\u4e32\u5217\uff09": [[430, "index-15", false], [430, "index-16", false], [430, "index-91", false]], "expression list\uff08\u904b\u7b97\u5f0f\u5217\u8868\uff09": [[436, "index-18", false]], "expression\uff08\u904b\u7b97\u5f0f\uff09": [[87, "term-expression", true], [427, "index-35", false]], "expunge() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.expunge", false]], "extend() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.extend", false]], "extend() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.extend", false]], "extend() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.extend", false]], "extend()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "extend_path() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.extend_path", false]], "extended_arg (opcode)": [[191, "opcode-EXTENDED_ARG", false]], "extendedcontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.ExtendedContext", false]], "extendedinterpolation (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.ExtendedInterpolation", false]], "extendleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.extendleft", false]], "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09": [[87, "term-extension-module", true]], "extension_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.EXTENSION_SUFFIXES", false]], "extensionfileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.ExtensionFileLoader", false]], "extensions_map (http.server.simplehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.SimpleHTTPRequestHandler.extensions_map", false]], "extension\uff08\u64f4\u5145\uff09": [[428, "index-4", false]], "external data representation \uff08\u5916\u90e8\u8cc7\u6599\u8868\u793a\uff09": [[408, "index-0", false]], "external data representation\uff08\u5916\u90e8\u8cc7\u6599\u8868\u793a\u6cd5\uff09": [[299, "index-1", false]], "external_attr (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.external_attr", false]], "externalclasherror": [[271, "mailbox.ExternalClashError", false]], "externalentityparsercreate() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ExternalEntityParserCreate", false]], "externalentityrefhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ExternalEntityRefHandler", false]], "extra (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.extra", false]], "extra_cflags": [[456, "envvar-EXTRA_CFLAGS", false]], "extract() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extract", false]], "extract() (traceback.stacksummary \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.StackSummary.extract", false]], "extract() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.extract", false]], "extract_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.extract_cookies", false]], "extract_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.extract_stack", false]], "extract_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.extract_tb", false]], "extract_version (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.extract_version", false]], "extractall() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extractall", false]], "extractall() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.extractall", false]], "extracterror": [[358, "tarfile.ExtractError", false]], "extractfile() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extractfile", false]], "extraction_filter (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.extraction_filter", false]], "extsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.extsep", false]], "f\"": [[435, "index-22", false]], "f'": [[435, "index-22", false]], "f-string\uff08f \u5b57\u4e32\uff09": [[87, "term-f-string", true], [435, "index-25", false]], "f_back (frame \u7684\u5c6c\u6027)": [[428, "frame.f_back", false]], "f_back \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_builtins (frame \u7684\u5c6c\u6027)": [[428, "frame.f_builtins", false]], "f_builtins \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_code (frame \u7684\u5c6c\u6027)": [[428, "frame.f_code", false]], "f_code \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.F_CONTIGUOUS", false]], "f_contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.f_contiguous", false]], "f_globals (frame \u7684\u5c6c\u6027)": [[428, "frame.f_globals", false]], "f_globals \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lasti (frame \u7684\u5c6c\u6027)": [[428, "frame.f_lasti", false]], "f_lasti \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lineno (frame \u7684\u5c6c\u6027)": [[428, "frame.f_lineno", false]], "f_lineno \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_locals (frame \u7684\u5c6c\u6027)": [[428, "frame.f_locals", false]], "f_locals \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_LOCK", false]], "f_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_OK", false]], "f_test (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_TEST", false]], "f_tlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_TLOCK", false]], "f_trace (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace", false]], "f_trace \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_trace_lines (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace_lines", false]], "f_trace_lines \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_trace_opcodes (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace_opcodes", false]], "f_trace_opcodes \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_ulock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_ULOCK", false]], "fabs() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fabs", false]], "factorial() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.factorial", false]], "factory() (importlib.util.lazyloader \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.util.LazyLoader.factory", false]], "fail() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.fail", false]], "fail_fast (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.FAIL_FAST", false]], "failfast (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.failfast", false]], "failureexception": [[193, "doctest.failureException", false]], "failureexception (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.failureException", false]], "failures (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.failures", false]], "fakepath (test.support.os_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.os_helper.FakePath", false]], "false": [[344, "index-17", false], [344, "index-4", false], [344, "index-1", false], [428, "index-12", false]], "false (\u5167\u5efa\u8b8a\u6578)": [[168, "False", false]], "false\uff08\u5167\u5efa\u7269\u4ef6\uff09": [[344, "index-3", false]], "families() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.families", false]], "family (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.family", false]], "fancyurlopener (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FancyURLopener", false]], "fast (pickle.pickler \u7684\u5c6c\u6027)": [[299, "pickle.Pickler.fast", false]], "fastchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.FastChildWatcher", false]], "fatalerror() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.fatalError", false]], "fault (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.Fault", false]], "faultcode (xmlrpc.client.fault \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Fault.faultCode", false]], "faulthandler": [[214, "module-faulthandler", false]], "faultstring (xmlrpc.client.fault \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Fault.faultString", false]], "fchdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchdir", false]], "fchmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchmod", false]], "fchown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchown", false]], "fcicreate() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.FCICreate", false]], "fcntl": [[215, "module-fcntl", false]], "fcntl() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.fcntl", false]], "fd (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.fd", false]], "fd() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.fd", false]], "fd_count() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.fd_count", false]], "fdatasync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fdatasync", false]], "fdopen() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fdopen", false]], "feature (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Feature", false]], "feature_external_ges (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_external_ges", false]], "feature_external_pes (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_external_pes", false]], "feature_namespace_prefixes (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_namespace_prefixes", false]], "feature_namespaces (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_namespaces", false]], "feature_string_interning (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_string_interning", false]], "feature_validation (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_validation", false]], "february (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.FEBRUARY", false]], "feed() (email.parser.bytesfeedparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesFeedParser.feed", false]], "feed() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.feed", false]], "feed() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.feed", false]], "feed() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.feed", false]], "feed() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.feed", false]], "feed_eof() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.feed_eof", false]], "feedparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.FeedParser", false]], "fetch() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.fetch", false]], "fetch() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Fetch", false]], "fetchall() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchall", false]], "fetchmany() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchmany", false]], "fetchone() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchone", false]], "ff (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.FF", false]], "fflags (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.fflags", false]], "field (dataclasses \u4e2d\u7684\u985e\u5225)": [[181, "dataclasses.Field", false]], "field() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.field", false]], "field_size_limit() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.field_size_limit", false]], "fieldnames (csv.dictreader \u7684\u5c6c\u6027)": [[175, "csv.DictReader.fieldnames", false]], "fields (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.fields", false]], "fields() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.fields", false]], "fifotype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.FIFOTYPE", false]], "file": [[163, "cmdoption-compileall-arg-file", false], [234, "cmdoption-gzip-arg-file", false]], "file (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.file", false]], "file (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.file", false]], "file (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.file", false]], "file control\uff08\u6a94\u6848\u63a7\u5236\uff09": [[215, "index-0", false]], "file name\uff08\u6a94\u6848\u540d\u7a31\uff09": [[360, "index-0", false]], "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09": [[87, "term-file-object", true], [225, "index-5", false], [258, "index-0", false]], "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09": [[87, "term-file-like-object", true]], "file_attribute_archive (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_ARCHIVE", false]], "file_attribute_compressed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_COMPRESSED", false]], "file_attribute_device (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_DEVICE", false]], "file_attribute_directory (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_DIRECTORY", false]], "file_attribute_encrypted (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_ENCRYPTED", false]], "file_attribute_hidden (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_HIDDEN", false]], "file_attribute_integrity_stream (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_INTEGRITY_STREAM", false]], "file_attribute_no_scrub_data (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NO_SCRUB_DATA", false]], "file_attribute_normal (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NORMAL", false]], "file_attribute_not_content_indexed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED", false]], "file_attribute_offline (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_OFFLINE", false]], "file_attribute_readonly (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_READONLY", false]], "file_attribute_reparse_point (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_REPARSE_POINT", false]], "file_attribute_sparse_file (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_SPARSE_FILE", false]], "file_attribute_system (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_SYSTEM", false]], "file_attribute_temporary (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_TEMPORARY", false]], "file_attribute_virtual (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_VIRTUAL", false]], "file_digest() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.file_digest", false]], "file_open() (urllib.request.filehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.FileHandler.file_open", false]], "file_size (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.file_size", false]], "filecmp": [[216, "module-filecmp", false]], "fileconfig() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.fileConfig", false]], "filecookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.FileCookieJar", false]], "filedialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.FileDialog", false]], "fileentry (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.FileEntry", false]], "fileexistserror": [[213, "FileExistsError", false]], "filefinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.FileFinder", false]], "filehandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.FileHandler", false]], "filehandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FileHandler", false]], "fileinput": [[218, "module-fileinput", false]], "fileinput (fileinput \u4e2d\u7684\u985e\u5225)": [[218, "fileinput.FileInput", false]], "fileio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.FileIO", false]], "filelineno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.filelineno", false]], "fileloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.FileLoader", false]], "filemode() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.filemode", false]], "filename (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.filename", false]], "filename (http.cookiejar.filecookiejar \u7684\u5c6c\u6027)": [[243, "http.cookiejar.FileCookieJar.filename", false]], "filename (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.filename", false]], "filename (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.filename", false]], "filename (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.filename", false]], "filename (oserror \u7684\u5c6c\u6027)": [[213, "OSError.filename", false]], "filename (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.filename", false]], "filename (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.filename", false]], "filename (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.filename", false]], "filename (tracemalloc.frame \u7684\u5c6c\u6027)": [[382, "tracemalloc.Frame.filename", false]], "filename (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.filename", false]], "filename (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.filename", false]], "filename() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.filename", false]], "filename2 (oserror \u7684\u5c6c\u6027)": [[213, "OSError.filename2", false]], "filename_only (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.filename_only", false]], "filename_pattern (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.filename_pattern", false]], "filenames\uff08\u6a94\u6848\u540d\u7a31\uff09": [[220, "index-0", false], [231, "index-0", false]], "fileno() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.fileno", false]], "fileno() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.fileno", false]], "fileno() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.fileno", false]], "fileno() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.fileno", false]], "fileno() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.fileno", false]], "fileno() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.fileno", false]], "fileno() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.fileno", false]], "fileno() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.fileno", false]], "fileno() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.fileno", false]], "fileno() (selectors.devpollselector \u7684\u65b9\u6cd5)": [[329, "selectors.DevpollSelector.fileno", false]], "fileno() (selectors.epollselector \u7684\u65b9\u6cd5)": [[329, "selectors.EpollSelector.fileno", false]], "fileno() (selectors.kqueueselector \u7684\u65b9\u6cd5)": [[329, "selectors.KqueueSelector.fileno", false]], "fileno() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.fileno", false]], "fileno() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.fileno", false]], "fileno() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.fileno", false]], "fileno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.fileno", false]], "filenotfounderror": [[213, "FileNotFoundError", false]], "fileobj (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.fileobj", false]], "files() (importlib.abc.traversableresources \u7684\u65b9\u6cd5)": [[250, "importlib.abc.TraversableResources.files", false]], "files() (importlib.resources.abc.traversableresources \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.TraversableResources.files", false]], "files() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.files", false]], "files_double_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.files_double_event", false]], "files_select_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.files_select_event", false]], "fileselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.FileSelectBox", false]], "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09": [[87, "term-filesystem-encoding-and-error-handler", true]], "filetype (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.FileType", false]], "filewrapper (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.FileWrapper", false]], "filewrapper (wsgiref.util \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.util.FileWrapper", false]], "file\uff08\u6a94\u6848\uff09": [[24, "index-0", false], [167, "index-0", false], [225, "index-6", false], [276, "index-2", false], [297, "index-2", false], [304, "index-0", false], [306, "index-1", false], [311, "index-0", false], [332, "index-0", false], [334, "index-4", false], [360, "index-0", false], [446, "index-0", false]], "fill() (textwrap.textwrapper \u7684\u65b9\u6cd5)": [[364, "textwrap.TextWrapper.fill", false]], "fill() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.fill", false]], "fillcolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.fillcolor", false]], "filling() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.filling", false]], "fillvalue (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.fillvalue", false]], "filter (2to3 fixer)": [[112, "to3fixer-filter", false]], "filter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Filter", false]], "filter (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.filter", false]], "filter (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Filter", false]], "filter()": [[225, "filter", false]], "filter() (logging.filter \u7684\u65b9\u6cd5)": [[267, "logging.Filter.filter", false]], "filter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.filter", false]], "filter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.filter", false]], "filter() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.filter", false]], "filter() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.filter", false]], "filter_command() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.filter_command", false]], "filter_dir (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.FILTER_DIR", false]], "filter_traces() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.filter_traces", false]], "filtererror": [[358, "tarfile.FilterError", false]], "filterfalse() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.filterfalse", false]], "filterwarnings() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.filterwarnings", false]], "final (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Final", false]], "final() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.final", false]], "finalization": [[75, "index-0", false]], "finalization, of objects": [[75, "index-0", false]], "finalize (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.finalize", false]], "finalizer\uff08\u7d42\u7d50\u51fd\u5f0f\uff09": [[428, "index-74", false]], "finally": [[427, "index-14", false], [427, "index-9", false], [436, "index-25", false], [436, "index-32", false], [436, "index-33", false]], "find() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.find", false]], "find() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.find", false]], "find() (doctest.doctestfinder \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestFinder.find", false]], "find() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.find", false]], "find() (str \u7684\u65b9\u6cd5)": [[344, "str.find", false]], "find() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.find", false]], "find() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.find", false]], "find() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.find", false]], "find_class() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.find_class", false]], "find_class()\uff08pickle \u5354\u5b9a\uff09": [[299, "index-9", false]], "find_library() (\u65bc ctypes.util \u6a21\u7d44\u4e2d)": [[176, "ctypes.util.find_library", false]], "find_loader() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.find_loader", false]], "find_longest_match() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.find_longest_match", false]], "find_msvcrt() (\u65bc ctypes.util \u6a21\u7d44\u4e2d)": [[176, "ctypes.util.find_msvcrt", false]], "find_spec": [[432, "index-10", false]], "find_spec() (importlib.abc.metapathfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.MetaPathFinder.find_spec", false]], "find_spec() (importlib.abc.pathentryfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.PathEntryFinder.find_spec", false]], "find_spec() (importlib.machinery.filefinder \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.find_spec", false]], "find_spec() (importlib.machinery.pathfinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.PathFinder.find_spec", false]], "find_spec() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.find_spec", false]], "find_spec() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.find_spec", false]], "find_unused_port() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.find_unused_port", false]], "find_user_password() (urllib.request.httppasswordmgr \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgr.find_user_password", false]], "find_user_password() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.find_user_password", false]], "findall() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.findall", false]], "findall() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.findall", false]], "findall() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.findall", false]], "findall() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.findall", false]], "findcaller() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.findCaller", false]], "finder\uff08\u5c0b\u6aa2\u5668\uff09": [[87, "term-finder", true]], "finder\uff08\u641c\u5c0b\u5668\uff09": [[432, "index-10", false], [432, "index-8", false]], "findfactor() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findfactor", false]], "findfile() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.findfile", false]], "findfit() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findfit", false]], "finditer() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.finditer", false]], "finditer() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.finditer", false]], "findlabels() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.findlabels", false]], "findlinestarts() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.findlinestarts", false]], "findmatch() (\u65bc mailcap \u6a21\u7d44\u4e2d)": [[272, "mailcap.findmatch", false]], "findmax() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findmax", false]], "findtext() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.findtext", false]], "findtext() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.findtext", false]], "finish() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.finish", false]], "finish() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.finish", false]], "finish_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.finish_request", false]], "first_completed (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.FIRST_COMPLETED", false]], "first_completed (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.FIRST_COMPLETED", false]], "first_exception (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.FIRST_EXCEPTION", false]], "first_exception (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.FIRST_EXCEPTION", false]], "firstchild (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.firstChild", false]], "firstkey() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.firstkey", false]], "firstweekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.firstweekday", false]], "fix_missing_locations() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.fix_missing_locations", false]], "fix_sentence_endings (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.fix_sentence_endings", false]], "flag (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.Flag", false]], "flag_bits (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.flag_bits", false]], "flagboundary (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.FlagBoundary", false]], "flags (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.flags", false]], "flags (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.flags", false]], "flags (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.flags", false]], "flash() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.flash", false]], "flatten() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.flatten", false]], "flatten() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.flatten", false]], "flattening\uff08\u6524\u5e73\uff09": [[299, "index-0", false]], "float": [[47, "index-5", false], [344, "index-13", false], [428, "index-104", false]], "float (\u5167\u5efa\u985e\u5225)": [[225, "float", false]], "float_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.float_info", false]], "float_repr_style (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.float_repr_style", false]], "floating point literal\uff08\u6d6e\u9ede\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "floating point\uff08\u6d6e\u9ede\u6578\uff09": [[344, "index-11", false], [344, "index-12", false]], "floating point\uff08\u6d6e\u9ede\uff09": [[25, "index-0", false], [428, "index-13", false]], "floatingpointerror": [[213, "FloatingPointError", false]], "floatoperation (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.FloatOperation", false]], "flock() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.flock", false]], "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09": [[87, "term-floor-division", true]], "floor() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.floor", false]], "floor()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "floordiv (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FloorDiv", false]], "floordiv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.floordiv", false]], "flush() (bz2.bz2compressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Compressor.flush", false]], "flush() (io.bufferedwriter \u7684\u65b9\u6cd5)": [[258, "io.BufferedWriter.flush", false]], "flush() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.flush", false]], "flush() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.flush", false]], "flush() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.flush", false]], "flush() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.flush", false]], "flush() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.flush", false]], "flush() (lzma.lzmacompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMACompressor.flush", false]], "flush() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.flush", false]], "flush() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.flush", false]], "flush() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.flush", false]], "flush() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.flush", false]], "flush() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.flush", false]], "flush() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.flush", false]], "flush() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.flush", false]], "flush() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.flush", false]], "flush_headers() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.flush_headers", false]], "flush_std_streams() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.flush_std_streams", false]], "flushinp() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.flushinp", false]], "flushkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.FlushKey", false]], "fma() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.fma", false]], "fma() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.fma", false]], "fmean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.fmean", false]], "fmod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fmod", false]], "fmt_binary (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.FMT_BINARY", false]], "fmt_xml (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.FMT_XML", false]], "fnmatch": [[220, "module-fnmatch", false]], "fnmatch() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.fnmatch", false]], "fnmatchcase() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.fnmatchcase", false]], "focus() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.focus", false]], "fold (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.fold", false]], "fold (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.fold", false]], "fold() (email.headerregistry.baseheader \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.BaseHeader.fold", false]], "fold() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.fold", false]], "fold() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.fold", false]], "fold() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.fold", false]], "fold_binary() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.fold_binary", false]], "fold_binary() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.fold_binary", false]], "fold_binary() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.fold_binary", false]], "font (tkinter.font \u4e2d\u7684\u985e\u5225)": [[372, "tkinter.font.Font", false]], "for": [[427, "index-6", true], [430, "index-12", false], [436, "index-30", false], [436, "index-33", false], [441, "index-0", false]], "for (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.For", false]], "for help in debugging using string literals\uff08\u4f7f\u7528\u5b57\u4e32\u5e38\u6578\u9032\u884c\u9664\u932f\uff09": [[435, "index-25", false]], "for_iter (opcode)": [[191, "opcode-FOR_ITER", false]], "forget() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.forget", false]], "forget() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.forget", false]], "fork() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fork", false]], "fork() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.fork", false]], "forkingmixin (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingMixIn", false]], "forkingtcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingTCPServer", false]], "forkingudpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUDPServer", false]], "forkingunixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUnixDatagramServer", false]], "forkingunixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUnixStreamServer", false]], "forkpty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.forkpty", false]], "form": [[430, "index-90", false]], "form (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Form", false]], "format (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FORMAT", false]], "format (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.format", false]], "format (multiprocessing.shared_memory.shareablelist \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.ShareableList.format", false]], "format (struct.struct \u7684\u5c6c\u6027)": [[347, "struct.Struct.format", false]], "format()": [[225, "format", false]], "format() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.format", false]], "format() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.format", false]], "format() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.format", false]], "format() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.format", false]], "format() (str \u7684\u65b9\u6cd5)": [[344, "str.format", false]], "format() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.format", false]], "format() (traceback.stacksummary \u7684\u65b9\u6cd5)": [[381, "traceback.StackSummary.format", false]], "format() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.format", false]], "format() (tracemalloc.traceback \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Traceback.format", false]], "format() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-76", false]], "format()\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[225, "index-4", false]], "format_datetime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.format_datetime", false]], "format_exc() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exc", false]], "format_exception() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exception", false]], "format_exception_only() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.format_exception_only", false]], "format_exception_only() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exception_only", false]], "format_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.format_field", false]], "format_frame_summary() (traceback.stacksummary \u7684\u65b9\u6cd5)": [[381, "traceback.StackSummary.format_frame_summary", false]], "format_help() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.format_help", false]], "format_list() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_list", false]], "format_map() (str \u7684\u65b9\u6cd5)": [[344, "str.format_map", false]], "format_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_stack", false]], "format_stack_entry() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.format_stack_entry", false]], "format_string() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.format_string", false]], "format_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_tb", false]], "format_usage() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.format_usage", false]], "format_value (opcode)": [[191, "opcode-FORMAT_VALUE", false]], "formataddr() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.formataddr", false]], "formatargvalues() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.formatargvalues", false]], "formatdate() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.formatdate", false]], "formaterror": [[271, "mailbox.FormatError", false]], "formaterror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.FormatError", false]], "formatexception() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatException", false]], "formatfooter() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.formatFooter", false]], "formatheader() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.formatHeader", false]], "formatmonth() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatmonth", false]], "formatmonth() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.formatmonth", false]], "formatmonthname() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatmonthname", false]], "formatstack() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatStack", false]], "formatted literal\uff08\u683c\u5f0f\u5316\u5e38\u6578\uff09": [[435, "index-25", false]], "formatted string literal\uff08\u683c\u5f0f\u5316\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-22", false], [435, "index-25", false]], "formattedvalue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FormattedValue", false]], "formatter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Formatter", false]], "formatter (string \u4e2d\u7684\u985e\u5225)": [[345, "string.Formatter", false]], "formattime() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatTime", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09": [[344, "index-45", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09\u3001printf": [[344, "index-35", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09\u3001\u5b57\u4e32 (%)": [[344, "index-35", false]], "formatwarning() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.formatwarning", false]], "formatyear() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatyear", false]], "formatyear() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.formatyear", false]], "formatyearpage() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatyearpage", false]], "fortran contiguous\uff08fortran \u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "index-10", false]], "forward() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.forward", false]], "forwardref (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ForwardRef", false]], "fp (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.fp", false]], "fpathconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fpathconf", false]], "fraction (fractions \u4e2d\u7684\u985e\u5225)": [[221, "fractions.Fraction", false]], "fractions": [[221, "module-fractions", false]], "frame": [[427, "index-42", false], [428, "index-63", false], [429, "index-2", false]], "frame (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.frame", false]], "frame (tkinter.scrolledtext.scrolledtext \u7684\u5c6c\u6027)": [[374, "tkinter.scrolledtext.ScrolledText.frame", false]], "frame (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Frame", false]], "frameinfo (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.FrameInfo", false]], "framesummary (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.FrameSummary", false]], "frametype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.FrameType", false]], "free": [[429, "index-6", false]], "free_tool_id() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.free_tool_id", false]], "freedesktop_os_release() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.freedesktop_os_release", false]], "freefunc (c type)": [[63, "c.freefunc", false]], "freeze utility\uff08\u51cd\u7d50\u5de5\u5177\uff09": [[31, "index-4", false]], "freeze() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.freeze", false]], "freeze_support() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.freeze_support", false]], "free\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "frexp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.frexp", false]], "friday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.FRIDAY", false]], "from": [[429, "index-5", false], [430, "index-23", false], [430, "index-25", false], [436, "index-34", false], [436, "index-36", false]], "from_address() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_address", false]], "from_buffer() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_buffer", false]], "from_buffer_copy() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_buffer_copy", false]], "from_bytes() (int \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "int.from_bytes", false]], "from_callable() (inspect.signature \u7684\u985e\u5225\u65b9\u6cd5)": [[255, "inspect.Signature.from_callable", false]], "from_decimal() (fractions.fraction \u7684\u985e\u5225\u65b9\u6cd5)": [[221, "fractions.Fraction.from_decimal", false]], "from_exception() (traceback.tracebackexception \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.TracebackException.from_exception", false]], "from_file() (zipfile.zipinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[422, "zipfile.ZipInfo.from_file", false]], "from_file() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.from_file", false]], "from_float() (decimal.decimal \u7684\u985e\u5225\u65b9\u6cd5)": [[186, "decimal.Decimal.from_float", false]], "from_float() (fractions.fraction \u7684\u985e\u5225\u65b9\u6cd5)": [[221, "fractions.Fraction.from_float", false]], "from_iterable() (itertools.chain \u7684\u985e\u5225\u65b9\u6cd5)": [[261, "itertools.chain.from_iterable", false]], "from_list() (traceback.stacksummary \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.StackSummary.from_list", false]], "from_param() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_param", false]], "from_samples() (statistics.normaldist \u7684\u985e\u5225\u65b9\u6cd5)": [[343, "statistics.NormalDist.from_samples", false]], "from_traceback() (dis.bytecode \u7684\u985e\u5225\u65b9\u6cd5)": [[191, "dis.Bytecode.from_traceback", false]], "frombuf() (tarfile.tarinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarInfo.frombuf", false]], "frombytes() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.frombytes", false]], "fromfd() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.fromfd", false]], "fromfd() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.fromfd", false]], "fromfd() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.fromfd", false]], "fromfile() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromfile", false]], "fromhex() (bytearray \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "bytearray.fromhex", false]], "fromhex() (bytes \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "bytes.fromhex", false]], "fromhex() (float \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "float.fromhex", false]], "fromisocalendar() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromisocalendar", false]], "fromisocalendar() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromisocalendar", false]], "fromisoformat() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromisoformat", false]], "fromisoformat() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromisoformat", false]], "fromisoformat() (datetime.time \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.time.fromisoformat", false]], "fromkeys() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.fromkeys", false]], "fromkeys() (dict \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "dict.fromkeys", false]], "fromlist() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromlist", false]], "fromordinal() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromordinal", false]], "fromordinal() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromordinal", false]], "fromshare() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.fromshare", false]], "fromstring() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.fromstring", false]], "fromstringlist() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.fromstringlist", false]], "fromtarfile() (tarfile.tarinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarInfo.fromtarfile", false]], "fromtimestamp() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromtimestamp", false]], "fromtimestamp() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromtimestamp", false]], "fromunicode() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromunicode", false]], "fromutc() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.fromutc", false]], "fromutc() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.fromutc", false]], "frozenimporter (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.FrozenImporter", false]], "frozeninstanceerror": [[181, "dataclasses.FrozenInstanceError", false]], "frozenset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.FrozenSet", false]], "frozenset (\u5167\u5efa\u985e\u5225)": [[344, "frozenset", false]], "frozenset\uff08\u51cd\u7d50\u96c6\u5408\uff09": [[55, "index-0", false], [428, "index-29", false]], "fs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.FS", false]], "fs_is_case_insensitive() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.fs_is_case_insensitive", false]], "fs_nonascii (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.FS_NONASCII", false]], "fsdecode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsdecode", false]], "fsencode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsencode", false]], "fspath() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fspath", false]], "fstat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fstat", false]], "fstatvfs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fstatvfs", false]], "fstring_end (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_END", false]], "fstring_middle (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_MIDDLE", false]], "fstring_start (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_START", false]], "fstring\uff08f \u5b57\u4e32\uff09": [[435, "index-25", false]], "fsum() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fsum", false]], "fsync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsync", false]], "ftp": [[223, "index-0", false], [395, "index-11", false], [395, "index-9", false]], "ftp (ftplib \u4e2d\u7684\u985e\u5225)": [[223, "ftplib.FTP", false]], "ftp_open() (urllib.request.ftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.FTPHandler.ftp_open", false]], "ftp_tls (ftplib \u4e2d\u7684\u985e\u5225)": [[223, "ftplib.FTP_TLS", false]], "ftphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FTPHandler", false]], "ftplib": [[223, "module-ftplib", false]], "ftplib\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[223, "index-0", false]], "ftruncate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ftruncate", false]], "full": [[316, "queue.Full", false]], "full (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FULL", false]], "full() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.full", false]], "full() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.full", false]], "full() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.full", false]], "full_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FULL_RO", false]], "full_url (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.full_url", false]], "fullmatch() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.fullmatch", false]], "fullmatch() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.fullmatch", false]], "fully_trusted_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.fully_trusted_filter", false]], "func (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.func", false]], "funcattrs (2to3 fixer)": [[112, "to3fixer-funcattrs", false]], "funcname (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.funcname", false]], "function (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.function", false]], "function (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.function", false]], "function (pyclbr \u4e2d\u7684\u985e\u5225)": [[312, "pyclbr.Function", false]], "function (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Function", false]], "function annotations\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": [[427, "index-34", false], [441, "index-6", false]], "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": [[87, "term-function-annotation", true]], "function definition\uff08\u51fd\u5f0f\u5b9a\u7fa9\uff09": [[427, "index-27", false], [427, "index-28", false], [427, "index-29", false], [427, "index-31", false], [427, "index-32", false]], "function \uff08\u51fd\u5f0f\uff09": [[427, "index-28", false], [427, "index-34", false], [428, "index-33", false], [428, "index-34", false], [428, "index-39", false], [428, "index-40", false], [428, "index-41", false], [428, "index-42", false], [430, "index-23", false], [430, "index-52", false], [430, "index-53", false], [430, "index-90", false], [436, "index-24", false], [436, "index-26", false]], "functiondef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FunctionDef", false]], "functiontestcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.FunctionTestCase", false]], "functiontype (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FunctionType", false]], "functiontype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.FunctionType", false]], "function\uff08\u51fd\u5f0f\uff09": [[27, "index-0", false], [87, "term-function", true], [441, "index-6", false]], "functools": [[226, "module-functools", false]], "funny_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.funny_files", false]], "future": [[436, "index-40", false]], "future (2to3 fixer)": [[112, "to3fixer-future", false]], "future (asyncio \u4e2d\u7684\u985e\u5225)": [[129, "asyncio.Future", false]], "future (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.Future", false]], "future statement\uff08future \u9673\u8ff0\u5f0f\uff09": [[436, "index-40", false]], "futurewarning": [[213, "FutureWarning", false]], "fwalk() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fwalk", false]], "g.722": [[117, "index-2", false]], "gaierror": [[337, "socket.gaierror", false]], "gamma() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.gamma", false]], "gammavariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.gammavariate", false]], "garbage (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.garbage", false]], "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09": [[87, "term-garbage-collection", true], [428, "index-2", false]], "gather() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.gather", false]], "gather() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.gather", false]], "gauss() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.gauss", false]], "gc": [[227, "module-gc", false]], "gc_collect() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.gc_collect", false]], "gcd() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.gcd", false]], "gcvisitobjects_t (c type)": [[28, "c.gcvisitobjects_t", false]], "ge() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ge", false]], "gen_uuid() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.gen_uuid", false]], "generate_tokens() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.generate_tokens", false]], "generation\uff08\u7522\u751f\uff09": [[313, "index-0", false]], "generator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Generator", false]], "generator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.Generator", false]], "generator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Generator", false]], "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09": [[87, "index-17", false], [87, "term-generator-expression", true], [430, "index-22", false]], "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": [[87, "term-generator-iterator", true]], "generatorexit": [[213, "GeneratorExit", false], [430, "index-33", false], [430, "index-37", false]], "generatorexp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.GeneratorExp", false]], "generatortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.GeneratorType", false]], "generator\uff08\u7522\u751f\u5668\uff09": [[87, "index-16", false], [87, "term-generator", true], [428, "index-39", false], [428, "index-59", false], [430, "index-22", false], [430, "index-23", false], [430, "index-31", false], [436, "index-26", false]], "generic (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Generic", false]], "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09": [[87, "term-generic-function", true]], "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09": [[87, "term-generic-type", true]], "generic_visit() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.generic_visit", false]], "genericalias (types \u4e2d\u7684\u985e\u5225)": [[385, "types.GenericAlias", false]], "genericalias\uff08\u6cdb\u578b\u5225\u540d\uff09": [[344, "index-56", false]], "generic\uff08\u6cdb\u578b\uff09": [[344, "index-56", false], [428, "index-5", false]], "genops() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.genops", false]], "geometric_mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.geometric_mean", false]], "get() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.get", false]], "get() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.get", false]], "get() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.get", false]], "get() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.get", false]], "get() (dict \u7684\u65b9\u6cd5)": [[344, "dict.get", false]], "get() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get", false]], "get() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get", false]], "get() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get", false]], "get() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.get", false]], "get() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.get", false]], "get() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.get", false]], "get() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.get", false]], "get() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.get", false]], "get() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.get", false]], "get() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.get", false]], "get() (tkinter.ttk.spinbox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Spinbox.get", false]], "get() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.get", false]], "get() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.get", false]], "get() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.get", false]], "get_aiter (opcode)": [[191, "opcode-GET_AITER", false]], "get_all() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_all", false]], "get_all() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_all", false]], "get_all() (wsgiref.headers.headers \u7684\u65b9\u6cd5)": [[407, "wsgiref.headers.Headers.get_all", false]], "get_all_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_all_breaks", false]], "get_all_start_methods() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_all_start_methods", false]], "get_anext (opcode)": [[191, "opcode-GET_ANEXT", false]], "get_annotations() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.get_annotations", false]], "get_app() (wsgiref.simple_server.wsgiserver \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIServer.get_app", false]], "get_archive_formats() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_archive_formats", false]], "get_args() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_args", false]], "get_asyncgen_hooks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_asyncgen_hooks", false]], "get_attribute() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_attribute", false]], "get_awaitable (opcode)": [[191, "opcode-GET_AWAITABLE", false]], "get_begidx() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_begidx", false]], "get_blocking() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_blocking", false]], "get_body() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_body", false]], "get_body_encoding() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.get_body_encoding", false]], "get_boundary() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_boundary", false]], "get_boundary() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_boundary", false]], "get_bpbynumber() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_bpbynumber", false]], "get_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_break", false]], "get_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_breaks", false]], "get_buffer() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.get_buffer", false]], "get_buffer() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.get_buffer", false]], "get_buffer() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.get_buffer", false]], "get_bytes() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_bytes", false]], "get_ca_certs() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.get_ca_certs", false]], "get_cache_token() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.get_cache_token", false]], "get_channel_binding() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.get_channel_binding", false]], "get_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_charset", false]], "get_charsets() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_charsets", false]], "get_charsets() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_charsets", false]], "get_child_watcher() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.get_child_watcher", false]], "get_child_watcher() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.get_child_watcher", false]], "get_children() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_children", false]], "get_children() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.get_children", false]], "get_ciphers() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.get_ciphers", false]], "get_clock_info() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.get_clock_info", false]], "get_close_matches() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.get_close_matches", false]], "get_code() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.get_code", false]], "get_code() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.get_code", false]], "get_code() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_code", false]], "get_code() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.get_code", false]], "get_code() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_code", false]], "get_completer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completer", false]], "get_completer_delims() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completer_delims", false]], "get_completion_type() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completion_type", false]], "get_config_h_filename() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_h_filename", false]], "get_config_var() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_var", false]], "get_config_vars() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_vars", false]], "get_content() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.get_content", false]], "get_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content", false]], "get_content() (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.get_content", false]], "get_content_charset() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_charset", false]], "get_content_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_charset", false]], "get_content_disposition() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_disposition", false]], "get_content_disposition() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_disposition", false]], "get_content_maintype() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_maintype", false]], "get_content_maintype() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_maintype", false]], "get_content_subtype() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_subtype", false]], "get_content_subtype() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_subtype", false]], "get_content_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_type", false]], "get_content_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_type", false]], "get_context() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.get_context", false]], "get_context() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_context", false]], "get_context() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_context", false]], "get_coro() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_coro", false]], "get_coroutine_origin_tracking_depth() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_coroutine_origin_tracking_depth", false]], "get_count() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_count", false]], "get_current_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_current_history_length", false]], "get_data() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.get_data", false]], "get_data() (importlib.abc.resourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceLoader.get_data", false]], "get_data() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_data", false]], "get_data() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_data", false]], "get_date() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_date", false]], "get_debug() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_debug", false]], "get_debug() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_debug", false]], "get_default() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.get_default", false]], "get_default_domain() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.get_default_domain", false]], "get_default_scheme() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_default_scheme", false]], "get_default_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_default_type", false]], "get_default_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_default_type", false]], "get_default_verify_paths() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.get_default_verify_paths", false]], "get_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.get_dialect", false]], "get_disassembly_as_string() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.get_disassembly_as_string", false]], "get_docstring() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.get_docstring", false]], "get_doctest() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.get_doctest", false]], "get_endidx() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_endidx", false]], "get_environ() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.get_environ", false]], "get_errno() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.get_errno", false]], "get_escdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.get_escdelay", false]], "get_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.get_event_loop", false]], "get_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.get_event_loop", false]], "get_event_loop_policy() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.get_event_loop_policy", false]], "get_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_events", false]], "get_examples() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.get_examples", false]], "get_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_exception_handler", false]], "get_exec_path() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_exec_path", false]], "get_extra_info() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.get_extra_info", false]], "get_extra_info() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.get_extra_info", false]], "get_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.get_field", false]], "get_file() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.get_file", false]], "get_file() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_file", false]], "get_file() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.get_file", false]], "get_file() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.get_file", false]], "get_file() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_file", false]], "get_file() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.get_file", false]], "get_file_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_file_breaks", false]], "get_filename() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_filename", false]], "get_filename() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_filename", false]], "get_filename() (importlib.abc.executionloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ExecutionLoader.get_filename", false]], "get_filename() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.get_filename", false]], "get_filename() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_filename", false]], "get_filename() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_filename", false]], "get_filter() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.get_filter", false]], "get_flags() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_flags", false]], "get_flags() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.get_flags", false]], "get_flags() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.get_flags", false]], "get_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.get_folder", false]], "get_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_folder", false]], "get_frees() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_frees", false]], "get_freeze_count() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_freeze_count", false]], "get_from() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.get_from", false]], "get_from() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.get_from", false]], "get_full_url() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_full_url", false]], "get_globals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_globals", false]], "get_grouped_opcodes() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_grouped_opcodes", false]], "get_handle_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_handle_inheritable", false]], "get_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_header", false]], "get_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_history_item", false]], "get_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_history_length", false]], "get_id() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_id", false]], "get_ident() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.get_ident", false]], "get_ident() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.get_ident", false]], "get_identifiers() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.get_identifiers", false]], "get_identifiers() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_identifiers", false]], "get_importer() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_importer", false]], "get_info() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_info", false]], "get_inheritable() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.get_inheritable", false]], "get_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_inheritable", false]], "get_instructions() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.get_instructions", false]], "get_int_max_str_digits() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_int_max_str_digits", false]], "get_interpreter() (\u65bc zipapp \u6a21\u7d44\u4e2d)": [[421, "zipapp.get_interpreter", false]], "get_iter (opcode)": [[191, "opcode-GET_ITER", false]], "get_key() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.get_key", false]], "get_labels() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.get_labels", false]], "get_labels() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.get_labels", false]], "get_last_error() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.get_last_error", false]], "get_len (opcode)": [[191, "opcode-GET_LEN", false]], "get_line_buffer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_line_buffer", false]], "get_lineno() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_lineno", false]], "get_loader() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_loader", false]], "get_local_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_local_events", false]], "get_locals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_locals", false]], "get_logger() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_logger", false]], "get_loop() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.get_loop", false]], "get_loop() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.get_loop", false]], "get_loop() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.get_loop", false]], "get_makefile_filename() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_makefile_filename", false]], "get_map() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.get_map", false]], "get_matching_blocks() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_matching_blocks", false]], "get_message() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_message", false]], "get_method() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_method", false]], "get_methods() (symtable.class \u7684\u65b9\u6cd5)": [[351, "symtable.Class.get_methods", false]], "get_mixed_type_key() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.get_mixed_type_key", false]], "get_name() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_name", false]], "get_name() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_name", false]], "get_name() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_name", false]], "get_namespace() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_namespace", false]], "get_namespaces() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_namespaces", false]], "get_native_id() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.get_native_id", false]], "get_native_id() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.get_native_id", false]], "get_nonlocals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_nonlocals", false]], "get_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.get_nonstandard_attr", false]], "get_nowait() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.get_nowait", false]], "get_nowait() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.get_nowait", false]], "get_nowait() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.get_nowait", false]], "get_nowait() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.get_nowait", false]], "get_object_traceback() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_object_traceback", false]], "get_objects() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_objects", false]], "get_opcodes() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_opcodes", false]], "get_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_option", false]], "get_option_group() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_option_group", false]], "get_origin() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_origin", false]], "get_original_bases() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.get_original_bases", false]], "get_original_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_original_stdout", false]], "get_osfhandle() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.get_osfhandle", false]], "get_output_charset() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.get_output_charset", false]], "get_overloads() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_overloads", false]], "get_pagesize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_pagesize", false]], "get_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_param", false]], "get_parameters() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_parameters", false]], "get_params() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_params", false]], "get_path() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_path", false]], "get_path_names() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_path_names", false]], "get_paths() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_paths", false]], "get_payload() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_payload", false]], "get_pid() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_pid", false]], "get_pipe_transport() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_pipe_transport", false]], "get_platform() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_platform", false]], "get_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.get_poly", false]], "get_position() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.get_position", false]], "get_preferred_scheme() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_preferred_scheme", false]], "get_protocol() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.get_protocol", false]], "get_proxy_response_headers() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.get_proxy_response_headers", false]], "get_python_version() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_python_version", false]], "get_ready() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.get_ready", false]], "get_recsrc() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.get_recsrc", false]], "get_referents() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_referents", false]], "get_referrers() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_referrers", false]], "get_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.get_request", false]], "get_returncode() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_returncode", false]], "get_running_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.get_running_loop", false]], "get_scheme() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_scheme", false]], "get_scheme_names() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_scheme_names", false]], "get_selection() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.get_selection", false]], "get_sequences() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_sequences", false]], "get_sequences() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.get_sequences", false]], "get_server() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.get_server", false]], "get_server_certificate() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.get_server_certificate", false]], "get_shapepoly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.get_shapepoly", false]], "get_socket() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.get_socket", false]], "get_source() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.get_source", false]], "get_source() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.get_source", false]], "get_source() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_source", false]], "get_source() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.get_source", false]], "get_source() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_source", false]], "get_source_segment() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.get_source_segment", false]], "get_stack() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_stack", false]], "get_stack() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_stack", false]], "get_start_method() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_start_method", false]], "get_starttag_text() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.get_starttag_text", false]], "get_stats() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_stats", false]], "get_stats_profile() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.get_stats_profile", false]], "get_stderr() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_stderr", false]], "get_stderr() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.get_stderr", false]], "get_stdin() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_stdin", false]], "get_string() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_string", false]], "get_subdir() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_subdir", false]], "get_symbols() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_symbols", false]], "get_tabsize() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.get_tabsize", false]], "get_task_factory() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_task_factory", false]], "get_terminal_size() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_terminal_size", false]], "get_terminal_size() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_terminal_size", false]], "get_threshold() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_threshold", false]], "get_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.get_token", false]], "get_tool() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_tool", false]], "get_traceback_limit() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_traceback_limit", false]], "get_traced_memory() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_traced_memory", false]], "get_tracemalloc_memory() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_tracemalloc_memory", false]], "get_type() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_type", false]], "get_type_hints() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_type_hints", false]], "get_unixfrom() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_unixfrom", false]], "get_unixfrom() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_unixfrom", false]], "get_unpack_formats() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_unpack_formats", false]], "get_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_usage", false]], "get_value() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.get_value", false]], "get_version() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_version", false]], "get_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.get_visible", false]], "get_wch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.get_wch", false]], "get_write_buffer_limits() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.get_write_buffer_limits", false]], "get_write_buffer_size() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.get_write_buffer_size", false]], "get_yield_from_iter (opcode)": [[191, "opcode-GET_YIELD_FROM_ITER", false]], "getacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getacl", false]], "getaddresses() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.getaddresses", false]], "getaddrinfo() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.getaddrinfo", false]], "getaddrinfo() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getaddrinfo", false]], "getallocatedblocks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getallocatedblocks", false]], "getandroidapilevel() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getandroidapilevel", false]], "getannotation() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getannotation", false]], "getargvalues() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getargvalues", false]], "getasyncgenlocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getasyncgenlocals", false]], "getasyncgenstate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getasyncgenstate", false]], "getatime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getatime", false]], "getattr()": [[225, "getattr", false]], "getattr_static() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getattr_static", false]], "getattrfunc (c type)": [[63, "c.getattrfunc", false]], "getattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttribute", false]], "getattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNode", false]], "getattributenodens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNodeNS", false]], "getattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNS", false]], "getattrofunc (c type)": [[63, "c.getattrofunc", false]], "getbase() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetBase", false]], "getbegyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getbegyx", false]], "getbkgd() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getbkgd", false]], "getblocking() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getblocking", false]], "getboolean() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getboolean", false]], "getbuffer() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.getbuffer", false]], "getbufferproc (c type)": [[63, "c.getbufferproc", false]], "getbytestream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getByteStream", false]], "getcallargs() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcallargs", false]], "getcanvas() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getcanvas", false]], "getcapabilities() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.getcapabilities", false]], "getcaps() (\u65bc mailcap \u6a21\u7d44\u4e2d)": [[272, "mailcap.getcaps", false]], "getch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getch", false]], "getch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getch", false]], "getcharacterstream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getCharacterStream", false]], "getche() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getche", false]], "getchild() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getChild", false]], "getchildren() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getChildren", false]], "getclasstree() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getclasstree", false]], "getclosurevars() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getclosurevars", false]], "getcode() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getcode", false]], "getcode() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.getcode", false]], "getcolumninfo() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.GetColumnInfo", false]], "getcolumnnumber() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getColumnNumber", false]], "getcomments() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcomments", false]], "getcompname() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getcompname", false]], "getcompname() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getcompname", false]], "getcompname() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getcompname", false]], "getcomptype() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getcomptype", false]], "getcomptype() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getcomptype", false]], "getcomptype() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getcomptype", false]], "getconfig() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.getconfig", false]], "getcontenthandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getContentHandler", false]], "getcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.getcontext", false]], "getcoroutinelocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcoroutinelocals", false]], "getcoroutinestate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcoroutinestate", false]], "getctime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getctime", false]], "getcwd() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getcwd", false]], "getcwdb() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getcwdb", false]], "getcwdu (2to3 fixer)": [[112, "to3fixer-getcwdu", false]], "getdecoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getdecoder", false]], "getdefaultencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getdefaultencoding", false]], "getdefaultlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getdefaultlocale", false]], "getdefaulttimeout() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getdefaulttimeout", false]], "getdlopenflags() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getdlopenflags", false]], "getdoc() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getdoc", false]], "getdomimplementation() (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.getDOMImplementation", false]], "getdtdhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getDTDHandler", false]], "geteffectivelevel() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getEffectiveLevel", false]], "getegid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getegid", false]], "getelementsbytagname() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.getElementsByTagName", false]], "getelementsbytagname() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getElementsByTagName", false]], "getelementsbytagnamens() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.getElementsByTagNameNS", false]], "getelementsbytagnamens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getElementsByTagNameNS", false]], "getencoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getencoder", false]], "getencoding() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getEncoding", false]], "getencoding() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getencoding", false]], "getentityresolver() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getEntityResolver", false]], "getenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getenv", false]], "getenvb() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getenvb", false]], "geterrorhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getErrorHandler", false]], "geteuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.geteuid", false]], "getevent() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.getEvent", false]], "geteventcategory() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getEventCategory", false]], "geteventtype() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getEventType", false]], "getexception() (xml.sax.saxexception \u7684\u65b9\u6cd5)": [[414, "xml.sax.SAXException.getException", false]], "getfeature() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getFeature", false]], "getfieldcount() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetFieldCount", false]], "getfile() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getfile", false]], "getfilestodelete() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.getFilesToDelete", false]], "getfilesystemencodeerrors() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getfilesystemencodeerrors", false]], "getfilesystemencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getfilesystemencoding", false]], "getfirst() (cgi.fieldstorage \u7684\u65b9\u6cd5)": [[151, "cgi.FieldStorage.getfirst", false]], "getfloat() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getfloat", false]], "getfmts() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.getfmts", false]], "getfqdn() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getfqdn", false]], "getframeinfo() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getframeinfo", false]], "getframerate() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getframerate", false]], "getframerate() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getframerate", false]], "getframerate() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getframerate", false]], "getfullargspec() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getfullargspec", false]], "getgeneratorlocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getgeneratorlocals", false]], "getgeneratorstate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getgeneratorstate", false]], "getgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgid", false]], "getgrall() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrall", false]], "getgrgid() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrgid", false]], "getgrnam() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrnam", false]], "getgrouplist() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgrouplist", false]], "getgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgroups", false]], "gethandlerbyname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getHandlerByName", false]], "gethandlernames() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getHandlerNames", false]], "getheader() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getheader", false]], "getheaders() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getheaders", false]], "gethostbyaddr() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyaddr", false]], "gethostbyaddr()\uff08\u65bc socket \u6a21\u7d44\uff09": [[293, "index-20", false]], "gethostbyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyname", false]], "gethostbyname_ex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyname_ex", false]], "gethostname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostname", false]], "gethostname()\uff08\u65bc socket \u6a21\u7d44\uff09": [[293, "index-20", false]], "getincrementaldecoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getincrementaldecoder", false]], "getincrementalencoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getincrementalencoder", false]], "getinfo() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.getinfo", false]], "getinnerframes() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getinnerframes", false]], "getinputcontext() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetInputContext", false]], "getint() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getint", false]], "getinteger() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetInteger", false]], "getitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.getitem", false]], "getiterfunc (c type)": [[63, "c.getiterfunc", false]], "getitimer() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.getitimer", false]], "getkey() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getkey", false]], "getlasterror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.GetLastError", false]], "getlength() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getLength", false]], "getlevelname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLevelName", false]], "getlevelnamesmapping() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLevelNamesMapping", false]], "getlimit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.getlimit", false]], "getline() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.getline", false]], "getlinenumber() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getLineNumber", false]], "getlist() (cgi.fieldstorage \u7684\u65b9\u6cd5)": [[151, "cgi.FieldStorage.getlist", false]], "getloadavg() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getloadavg", false]], "getlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getlocale", false]], "getlogger() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLogger", false]], "getloggerclass() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLoggerClass", false]], "getlogin() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getlogin", false]], "getlogrecordfactory() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLogRecordFactory", false]], "getmandatoryrelease() (__future__._feature \u7684\u65b9\u6cd5)": [[113, "future__._Feature.getMandatoryRelease", false]], "getmark() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getmark", false]], "getmark() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getmark", false]], "getmark() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getmark", false]], "getmarkers() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getmarkers", false]], "getmarkers() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getmarkers", false]], "getmarkers() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getmarkers", false]], "getmaxyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getmaxyx", false]], "getmember() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getmember", false]], "getmembers() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getmembers", false]], "getmembers() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmembers", false]], "getmembers_static() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmembers_static", false]], "getmessage() (logging.logrecord \u7684\u65b9\u6cd5)": [[267, "logging.LogRecord.getMessage", false]], "getmessage() (xml.sax.saxexception \u7684\u65b9\u6cd5)": [[414, "xml.sax.SAXException.getMessage", false]], "getmessageid() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getMessageID", false]], "getmodule() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmodule", false]], "getmodulename() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmodulename", false]], "getmouse() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getmouse", false]], "getmro() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmro", false]], "getmtime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getmtime", false]], "getname() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.getname", false]], "getname() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.getName", false]], "getnamebyqname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getNameByQName", false]], "getnameinfo() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.getnameinfo", false]], "getnameinfo() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getnameinfo", false]], "getnames() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getnames", false]], "getnames() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getNames", false]], "getnchannels() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getnchannels", false]], "getnchannels() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getnchannels", false]], "getnchannels() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getnchannels", false]], "getnframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getnframes", false]], "getnframes() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getnframes", false]], "getnframes() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getnframes", false]], "getnode": [[398, "index-5", false]], "getnode() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.getnode", false]], "getopt": [[228, "module-getopt", false]], "getopt() (\u65bc getopt \u6a21\u7d44\u4e2d)": [[228, "getopt.getopt", false]], "getopterror": [[228, "getopt.GetoptError", false]], "getoptionalrelease() (__future__._feature \u7684\u65b9\u6cd5)": [[113, "future__._Feature.getOptionalRelease", false]], "getouterframes() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getouterframes", false]], "getoutput() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.getoutput", false]], "getpagesize() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getpagesize", false]], "getparams() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getparams", false]], "getparams() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getparams", false]], "getparams() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getparams", false]], "getparyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getparyx", false]], "getpass": [[229, "module-getpass", false]], "getpass() (\u65bc getpass \u6a21\u7d44\u4e2d)": [[229, "getpass.getpass", false]], "getpasswarning": [[229, "getpass.GetPassWarning", false]], "getpeercert() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.getpeercert", false]], "getpeername() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getpeername", false]], "getpen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getpen", false]], "getpgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpgid", false]], "getpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpgrp", false]], "getpid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpid", false]], "getpos() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.getpos", false]], "getppid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getppid", false]], "getpreferredencoding() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getpreferredencoding", false]], "getpriority() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpriority", false]], "getprofile() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getprofile", false]], "getprofile() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.getprofile", false]], "getproperty() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.GetProperty", false]], "getproperty() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getProperty", false]], "getpropertycount() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.GetPropertyCount", false]], "getprotobyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getprotobyname", false]], "getproxies() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.getproxies", false]], "getpublicid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getPublicId", false]], "getpublicid() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getPublicId", false]], "getpwall() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwall", false]], "getpwnam() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwnam", false]], "getpwuid() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwuid", false]], "getqnamebyname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getQNameByName", false]], "getqnames() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getQNames", false]], "getquota() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getquota", false]], "getquotaroot() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getquotaroot", false]], "getrandbits() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.getrandbits", false]], "getrandbits() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.getrandbits", false]], "getrandom() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getrandom", false]], "getreader() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getreader", false]], "getrecursionlimit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getrecursionlimit", false]], "getrefcount() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getrefcount", false]], "getreparsedeferralenabled() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetReparseDeferralEnabled", false]], "getresgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getresgid", false]], "getresponse() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.getresponse", false]], "getresuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getresuid", false]], "getrlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getrlimit", false]], "getroot() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.getroot", false]], "getrusage() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getrusage", false]], "getsample() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.getsample", false]], "getsampwidth() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getsampwidth", false]], "getsampwidth() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getsampwidth", false]], "getsampwidth() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getsampwidth", false]], "getscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getscreen", false]], "getservbyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getservbyname", false]], "getservbyport() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getservbyport", false]], "getsetdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.GetSetDescriptorType", false]], "getshapes() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getshapes", false]], "getsid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getsid", false]], "getsignal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.getsignal", false]], "getsitepackages() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getsitepackages", false]], "getsize() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.getsize", false]], "getsize() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getsize", false]], "getsizeof() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getsizeof", false]], "getsockname() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getsockname", false]], "getsockopt() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getsockopt", false]], "getsource() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsource", false]], "getsourcefile() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsourcefile", false]], "getsourcelines() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsourcelines", false]], "getspall() (\u65bc spwd \u6a21\u7d44\u4e2d)": [[339, "spwd.getspall", false]], "getspnam() (\u65bc spwd \u6a21\u7d44\u4e2d)": [[339, "spwd.getspnam", false]], "getstate() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.getstate", false]], "getstate() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.getstate", false]], "getstate() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.getstate", false]], "getstate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.getstate", false]], "getstatusoutput() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.getstatusoutput", false]], "getstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getstr", false]], "getstring() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetString", false]], "getsubject() (logging.handlers.smtphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SMTPHandler.getSubject", false]], "getsummaryinformation() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.GetSummaryInformation", false]], "getswitchinterval() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getswitchinterval", false]], "getsystemid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getSystemId", false]], "getsystemid() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getSystemId", false]], "getsyx() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getsyx", false]], "gettarinfo() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.gettarinfo", false]], "gettempdir() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempdir", false]], "gettempdirb() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempdirb", false]], "gettempprefix() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempprefix", false]], "gettempprefixb() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempprefixb", false]], "getter (c type)": [[58, "c.getter", false]], "gettestcasenames() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.getTestCaseNames", false]], "gettext": [[230, "index-4", false], [230, "module-gettext", false]], "gettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.gettext", false]], "gettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.gettext", false]], "gettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.gettext", false]], "gettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.gettext", false]], "gettimeout() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.gettimeout", false]], "gettrace() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.gettrace", false]], "gettrace() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.gettrace", false]], "getturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getturtle", false]], "gettype() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getType", false]], "getuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getuid", false]], "getunicodeinternedsize() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getunicodeinternedsize", false]], "geturl() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.geturl", false]], "geturl() (urllib.parse.urllib.parse.splitresult \u7684\u65b9\u6cd5)": [[394, "urllib.parse.urllib.parse.SplitResult.geturl", false]], "geturl() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.geturl", false]], "getuser() (\u65bc getpass \u6a21\u7d44\u4e2d)": [[229, "getpass.getuser", false]], "getuserbase() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getuserbase", false]], "getusersitepackages() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getusersitepackages", false]], "getvalue() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.getvalue", false]], "getvalue() (io.stringio \u7684\u65b9\u6cd5)": [[258, "io.StringIO.getvalue", false]], "getvalue() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getValue", false]], "getvaluebyqname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getValueByQName", false]], "getwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getwch", false]], "getwche() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getwche", false]], "getweakrefcount() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.getweakrefcount", false]], "getweakrefs() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.getweakrefs", false]], "getwelcome() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.getwelcome", false]], "getwelcome() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.getwelcome", false]], "getwelcome() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.getwelcome", false]], "getwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getwin", false]], "getwindowsversion() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getwindowsversion", false]], "getwriter() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getwriter", false]], "getxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getxattr", false]], "getyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getyx", false]], "gid (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.gid", false]], "gil": [[87, "term-GIL", true]], "glob": [[220, "index-3", false], [231, "module-glob", false]], "glob() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.glob", false]], "glob() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.glob", false]], "glob() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.glob", false]], "global": [[436, "index-22", false], [436, "index-43", false], [436, "index-43", true]], "global (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Global", false]], "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09": [[33, "index-32", false], [87, "term-global-interpreter-lock", true]], "global_enum() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.global_enum", false]], "globals()": [[225, "globals", false]], "global\uff08\u5168\u57df\uff09": [[428, "index-35", false]], "globs (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.globs", false]], "gmtime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.gmtime", false]], "gname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.gname", false]], "gnome": [[230, "index-10", false]], "gnu_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNU_FORMAT", false]], "gnu_getopt() (\u65bc getopt \u6a21\u7d44\u4e2d)": [[228, "getopt.gnu_getopt", false]], "gnutranslations (gettext \u4e2d\u7684\u985e\u5225)": [[230, "gettext.GNUTranslations", false]], "gnutype_longlink (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_LONGLINK", false]], "gnutype_longname (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_LONGNAME", false]], "gnutype_sparse (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_SPARSE", false]], "go() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.go", false]], "got (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.got", false]], "goto() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.goto", false]], "grammar\uff08\u6587\u6cd5\uff09": [[434, "index-0", false]], "graphical user interface\uff08\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\uff09": [[368, "index-0", false]], "graphlib": [[232, "module-graphlib", false]], "greater (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.GREATER", false]], "greaterequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.GREATEREQUAL", false]], "greenwich mean time\uff08\u683c\u6797\u5a01\u6cbb\u6a19\u6e96\u6642\u9593\uff09": [[366, "index-4", false]], "grnd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.GRND_NONBLOCK", false]], "grnd_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.GRND_RANDOM", false]], "group (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.Group", false]], "group() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.group", false]], "group() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.group", false]], "group() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.group", false]], "groupby() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.groupby", false]], "groupdict() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.groupdict", false]], "groupindex (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.groupindex", false]], "grouping\uff08\u7fa4\u7d44\uff09": [[435, "index-8", false]], "groups (email.headerregistry.addressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.AddressHeader.groups", false]], "groups (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.groups", false]], "groups() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.groups", false]], "group\uff08\u7fa4\u7d44\uff09": [[293, "index-12", false], [293, "index-9", false]], "grp": [[233, "module-grp", false]], "gs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.GS", false]], "gt (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Gt", false]], "gt() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.gt", false]], "gte (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.GtE", false]], "guard": [[427, "index-21", true]], "guess_all_extensions() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_all_extensions", false]], "guess_all_extensions() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_all_extensions", false]], "guess_extension() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_extension", false]], "guess_extension() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_extension", false]], "guess_scheme() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.guess_scheme", false]], "guess_type() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_type", false]], "guess_type() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_type", false]], "gui": [[368, "index-0", false]], "gzip": [[234, "module-gzip", false]], "gzip \u547d\u4ee4\u5217\u9078\u9805": [[234, "cmdoption-gzip-arg-file", false], [234, "cmdoption-gzip-best", false], [234, "cmdoption-gzip-d", false], [234, "cmdoption-gzip-fast", false], [234, "cmdoption-gzip-h", false]], "gzipfile (gzip \u4e2d\u7684\u985e\u5225)": [[234, "gzip.GzipFile", false]], "halfdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.halfdelay", false]], "handle (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.Handle", false]], "handle an exception\uff08\u8655\u7406\u4f8b\u5916\uff09": [[429, "index-15", false]], "handle() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle", false]], "handle() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.handle", false]], "handle() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.handle", false]], "handle() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.handle", false]], "handle() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.handle", false]], "handle() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.handle", false]], "handle() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.handle", false]], "handle_charref() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_charref", false]], "handle_comment() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_comment", false]], "handle_data() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_data", false]], "handle_decl() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_decl", false]], "handle_defect() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.handle_defect", false]], "handle_endtag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_endtag", false]], "handle_entityref() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_entityref", false]], "handle_error() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_error", false]], "handle_expect_100() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle_expect_100", false]], "handle_one_request() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle_one_request", false]], "handle_pi() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_pi", false]], "handle_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_request", false]], "handle_request() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.handle_request", false]], "handle_startendtag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_startendtag", false]], "handle_starttag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_starttag", false]], "handle_timeout() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_timeout", false]], "handleerror() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.handleError", false]], "handleerror() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.handleError", false]], "handler (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Handler", false]], "handler() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.handler", false]], "handlers (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.handlers", false]], "handlers (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Handlers", false]], "handler\uff08\u8655\u7406\u5668\uff09": [[428, "index-66", false]], "hardlink_to() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.hardlink_to", false]], "harmonic_mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.harmonic_mean", false]], "has_alpn (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_ALPN", false]], "has_children() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.has_children", false]], "has_colors() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_colors", false]], "has_dualstack_ipv6() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.has_dualstack_ipv6", false]], "has_ecdh (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_ECDH", false]], "has_extended_color_support() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_extended_color_support", false]], "has_extn() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.has_extn", false]], "has_header() (csv.sniffer \u7684\u65b9\u6cd5)": [[175, "csv.Sniffer.has_header", false]], "has_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.has_header", false]], "has_ic() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_ic", false]], "has_il() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_il", false]], "has_ipv6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.has_ipv6", false]], "has_key (2to3 fixer)": [[112, "to3fixer-has_key", false]], "has_key() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_key", false]], "has_location (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.has_location", false]], "has_never_check_common_name (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_NEVER_CHECK_COMMON_NAME", false]], "has_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.has_nonstandard_attr", false]], "has_npn (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_NPN", false]], "has_option() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.has_option", false]], "has_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.has_option", false]], "has_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.has_section", false]], "has_sni (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SNI", false]], "has_sslv2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SSLv2", false]], "has_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SSLv3", false]], "has_ticket (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.has_ticket", false]], "has_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1", false]], "has_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_1", false]], "has_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_2", false]], "has_tlsv1_3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_3", false]], "hasarg (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasarg", false]], "hasattr()": [[225, "hasattr", false]], "hasattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.hasAttribute", false]], "hasattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.hasAttributeNS", false]], "hasattributes() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.hasAttributes", false]], "haschildnodes() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.hasChildNodes", false]], "hascompare (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hascompare", false]], "hasconst (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasconst", false]], "hasexc (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasexc", false]], "hasfeature() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.hasFeature", false]], "hasfree (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasfree", false]], "hash character\uff08\u4e95\u5b57\u865f\uff09": [[435, "index-4", false]], "hash()": [[225, "hash", false]], "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09": [[87, "term-hash-based-pyc", true]], "hash.block_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.hash.block_size", false]], "hash.digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.hash.digest_size", false]], "hash_bits (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.hash_bits", false]], "hash_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.hash_info", false]], "hash_randomization (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.hash_randomization", false]], "hashable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Hashable", false]], "hashable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Hashable", false]], "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09": [[87, "term-hashable", true]], "hashable\uff08\u53ef\u96dc\u6e4a\uff09": [[430, "index-20", false]], "hashandlers() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.hasHandlers", false]], "hashfunc (c type)": [[63, "c.hashfunc", false]], "hashlib": [[235, "module-hashlib", false]], "hash\uff08\u96dc\u6e4a\uff09": [[49, "index-6", false], [63, "index-2", false], [344, "index-22", false], [428, "index-80", false]], "hasjabs (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasjabs", false]], "hasjrel (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasjrel", false]], "haslocal (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.haslocal", false]], "hasname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasname", false]], "have_argument (opcode)": [[191, "opcode-HAVE_ARGUMENT", false]], "have_contextvar (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.HAVE_CONTEXTVAR", false]], "have_docstrings (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.HAVE_DOCSTRINGS", false]], "have_threads (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.HAVE_THREADS", false]], "hci_data_dir (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_DATA_DIR", false]], "hci_filter (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_FILTER", false]], "hci_time_stamp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_TIME_STAMP", false]], "head() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.head", false]], "header (email.header \u4e2d\u7684\u985e\u5225)": [[202, "email.header.Header", false]], "header_encode() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.header_encode", false]], "header_encode_lines() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.header_encode_lines", false]], "header_encoding (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.header_encoding", false]], "header_factory (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.header_factory", false]], "header_fetch_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_fetch_parse", false]], "header_fetch_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_fetch_parse", false]], "header_fetch_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_fetch_parse", false]], "header_items() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.header_items", false]], "header_max_count() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_max_count", false]], "header_max_count() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_max_count", false]], "header_offset (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.header_offset", false]], "header_source_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_source_parse", false]], "header_source_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_source_parse", false]], "header_source_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_source_parse", false]], "header_store_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_store_parse", false]], "header_store_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_store_parse", false]], "header_store_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_store_parse", false]], "headerdefect": [[199, "email.errors.HeaderDefect", false]], "headererror": [[358, "tarfile.HeaderError", false]], "headerparseerror": [[199, "email.errors.HeaderParseError", false]], "headerparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.HeaderParser", false]], "headerregistry (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.HeaderRegistry", false]], "headers (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.headers", false]], "headers (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.headers", false]], "headers (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.headers", false]], "headers (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.headers", false]], "headers (wsgiref.headers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.headers.Headers", false]], "headers (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.headers", false]], "headers\uff08\u6a19\u982d\uff09": [[151, "index-0", false], [276, "index-1", false]], "heading() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.heading", false]], "heading() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.heading", false]], "heapify() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heapify", false]], "heapmin() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.heapmin", false]], "heappop() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappop", false]], "heappush() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappush", false]], "heappushpop() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappushpop", false]], "heapq": [[236, "module-heapq", false]], "heapreplace() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heapreplace", false]], "helo() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.helo", false]], "help (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.help", false]], "help (pdb command)": [[297, "pdbcommand-help", false]], "help()": [[225, "help", false]], "help() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.help", false]], "help\uff08\u5e6b\u52a9\uff09": [[313, "index-0", false], [451, "index-0", false]], "herror": [[337, "socket.herror", false]], "hex (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.hex", false]], "hex()": [[225, "hex", false]], "hex() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.hex", false]], "hex() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.hex", false]], "hex() (float \u7684\u65b9\u6cd5)": [[344, "float.hex", false]], "hex() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.hex", false]], "hexadecimal literal\uff08\u5341\u516d\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "hexadecimal\uff08\u5341\u516d\u9032\u4f4d\uff09": [[344, "index-12", false]], "hexdigest() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.hexdigest", false]], "hexdigest() (hashlib.shake \u7684\u65b9\u6cd5)": [[235, "hashlib.shake.hexdigest", false]], "hexdigest() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.hexdigest", false]], "hexdigits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.hexdigits", false]], "hexlify() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.hexlify", false]], "hexversion (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.hexversion", false]], "hidden() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.hidden", false]], "hide() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.hide", false]], "hide() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.hide", false]], "hide_cookie2 (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.hide_cookie2", false]], "hideturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.hideturtle", false]], "hierarchyrequesterr": [[410, "xml.dom.HierarchyRequestErr", false]], "hierarchy\uff08\u968e\u5c64\uff09": [[428, "index-4", false]], "high_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.HIGH_PRIORITY_CLASS", false]], "highest_protocol (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.HIGHEST_PROTOCOL", false]], "hits (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.hits", false]], "hkey_classes_root (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CLASSES_ROOT", false]], "hkey_current_config (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CURRENT_CONFIG", false]], "hkey_current_user (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CURRENT_USER", false]], "hkey_dyn_data (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_DYN_DATA", false]], "hkey_local_machine (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_LOCAL_MACHINE", false]], "hkey_performance_data (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_PERFORMANCE_DATA", false]], "hkey_users (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_USERS", false]], "hline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.hline", false]], "hlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.HList", false]], "hls_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.hls_to_rgb", false]], "hmac": [[237, "module-hmac", false]], "home": [[294, "index-16", false], [294, "index-21", false], [369, "index-1", false], [481, "index-14", false], [481, "index-21", false], [483, "index-202", false], [483, "index-203", false]], "home directory expansion\uff08\u5bb6\u76ee\u9304\u5c55\u958b\uff09": [[294, "index-1", false]], "home() (pathlib.path \u7684\u985e\u5225\u65b9\u6cd5)": [[296, "pathlib.Path.home", false]], "home() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.home", false]], "homedrive": [[294, "index-19", false]], "homepath": [[294, "index-18", false]], "hook_compressed() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.hook_compressed", false]], "hook_encoded() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.hook_encoded", false]], "hooks": [[432, "index-9", false]], "host (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.host", false]], "hostmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.hostmask", false]], "hostmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.hostmask", false]], "hostname_checks_common_name (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.hostname_checks_common_name", false]], "hosts (netrc.netrc \u7684\u5c6c\u6027)": [[286, "netrc.netrc.hosts", false]], "hosts() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.hosts", false]], "hosts() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.hosts", false]], "hour (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.hour", false]], "hour (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.hour", false]], "hresult (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.HRESULT", false]], "hstderror (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdError", false]], "hstdinput (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdInput", false]], "hstdoutput (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdOutput", false]], "hsv_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.hsv_to_rgb", false]], "ht (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.HT", false]], "ht() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ht", false]], "html": [[238, "module-html", false], [240, "index-0", false], [395, "index-10", false]], "html() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.html", false]], "html.entities": [[239, "module-html.entities", false]], "html.parser": [[240, "module-html.parser", false]], "html5 (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.html5", false]], "htmlcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.HTMLCalendar", false]], "htmldiff (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.HtmlDiff", false]], "htmlparser (html.parser \u4e2d\u7684\u985e\u5225)": [[240, "html.parser.HTMLParser", false]], "htonl() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.htonl", false]], "htons() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.htons", false]], "http": [[151, "index-0", false], [241, "index-0", false], [241, "module-http", false], [242, "index-0", false], [245, "index-0", false], [395, "index-10", false], [395, "index-9", false]], "http (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.HTTP", false]], "http.client": [[242, "module-http.client", false]], "http.client\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[242, "index-0", false]], "http.cookiejar": [[243, "module-http.cookiejar", false]], "http.cookies": [[244, "module-http.cookies", false]], "http.server": [[245, "index-3", false], [245, "module-http.server", false]], "http_error_301() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_301", false]], "http_error_302() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_302", false]], "http_error_303() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_303", false]], "http_error_307() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_307", false]], "http_error_308() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_308", false]], "http_error_401() (urllib.request.httpbasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPBasicAuthHandler.http_error_401", false]], "http_error_401() (urllib.request.httpdigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPDigestAuthHandler.http_error_401", false]], "http_error_407() (urllib.request.proxybasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.ProxyBasicAuthHandler.http_error_407", false]], "http_error_407() (urllib.request.proxydigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.ProxyDigestAuthHandler.http_error_407", false]], "http_error_auth_reqed() (urllib.request.abstractbasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed", false]], "http_error_auth_reqed() (urllib.request.abstractdigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed", false]], "http_error_default() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.http_error_default", false]], "http_open() (urllib.request.httphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPHandler.http_open", false]], "http_port (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.HTTP_PORT", false]], "http_response() (urllib.request.httperrorprocessor \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPErrorProcessor.http_response", false]], "http_version (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.http_version", false]], "httpbasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPBasicAuthHandler", false]], "httpconnection (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPConnection", false]], "httpcookieprocessor (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPCookieProcessor", false]], "httpd": [[245, "index-0", false]], "httpdefaulterrorhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPDefaultErrorHandler", false]], "httpdigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPDigestAuthHandler", false]], "httperror": [[393, "urllib.error.HTTPError", false]], "httperrorprocessor (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPErrorProcessor", false]], "httpexception": [[242, "http.client.HTTPException", false]], "httphandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.HTTPHandler", false]], "httphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPHandler", false]], "httpmessage (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPMessage", false]], "httpmethod (http \u4e2d\u7684\u985e\u5225)": [[241, "http.HTTPMethod", false]], "httponly (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.httponly", false]], "httppasswordmgr (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgr", false]], "httppasswordmgrwithdefaultrealm (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgrWithDefaultRealm", false]], "httppasswordmgrwithpriorauth (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth", false]], "httpredirecthandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPRedirectHandler", false]], "httpresponse (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPResponse", false]], "https_open() (urllib.request.httpshandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPSHandler.https_open", false]], "https_port (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.HTTPS_PORT", false]], "https_response() (urllib.request.httperrorprocessor \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPErrorProcessor.https_response", false]], "httpsconnection (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPSConnection", false]], "httpserver (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.HTTPServer", false]], "httpshandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPSHandler", false]], "httpstatus (http \u4e2d\u7684\u985e\u5225)": [[241, "http.HTTPStatus", false]], "http\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[241, "index-0", false]], "hv_guid_broadcast (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_BROADCAST", false]], "hv_guid_children (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_CHILDREN", false]], "hv_guid_loopback (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_LOOPBACK", false]], "hv_guid_parent (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_PARENT", false]], "hv_guid_wildcard (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_WILDCARD", false]], "hv_guid_zero (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_ZERO", false]], "hv_protocol_raw (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_PROTOCOL_RAW", false]], "hvsocket_address_flag_passthru (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_ADDRESS_FLAG_PASSTHRU", false]], "hvsocket_connect_timeout (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECT_TIMEOUT", false]], "hvsocket_connect_timeout_max (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECT_TIMEOUT_MAX", false]], "hvsocket_connected_suspend (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECTED_SUSPEND", false]], "hypot() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.hypot", false]], "i (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.I", false]], "i/o control\uff08i/o \u63a7\u5236\uff09": [[215, "index-0", false], [225, "index-8", false], [337, "index-6", false], [361, "index-0", false]], "iadd() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iadd", false]], "iand() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iand", false]], "iconcat() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iconcat", false]], "id": [[293, "index-13", false], [293, "index-16", false], [428, "index-1", false]], "id (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.id", false]], "id of parent": [[293, "index-14", false]], "id()": [[225, "id", false]], "id() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.id", false]], "id, setting\uff08\u8a2d\u5b9a\uff09": [[293, "index-19", false]], "idcok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.idcok", false]], "ident (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.ident", false]], "ident (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.ident", false]], "identchars (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.identchars", false]], "identifier": [[430, "index-3", false]], "identifier list\uff08\u8b58\u5225\u7b26\u865f\u6e05\u55ae\uff09": [[436, "index-43", false], [436, "index-45", false]], "identifier\uff08\u8b58\u5225\u5668\uff09": [[435, "index-10", false]], "identify() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.identify", false]], "identify() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify", false]], "identify() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.identify", false]], "identify_column() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_column", false]], "identify_element() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_element", false]], "identify_region() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_region", false]], "identify_row() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_row", false]], "identity": [[430, "index-81", false]], "identity of an object\uff08\u7269\u4ef6\u7684\u8b58\u5225\uff09": [[428, "index-1", false]], "idioms (2to3 fixer)": [[112, "to3fixer-idioms", false]], "idle": [[87, "term-IDLE", true], [247, "index-0", false]], "idle_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.IDLE_PRIORITY_CLASS", false]], "idlelib": [[247, "module-idlelib", false]], "idlestartup": [[247, "index-5", false], [483, "index-227", false], [483, "index-232", false], [483, "index-257", false]], "idlok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.idlok", false]], "if": [[344, "index-1", false], [427, "index-18", false], [427, "index-3", true], [430, "index-12", false], [430, "index-88", false]], "if (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.If", false]], "if_indextoname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_indextoname", false]], "if_nameindex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_nameindex", false]], "if_nametoindex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_nametoindex", false]], "ifexp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.IfExp", false]], "ifloordiv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ifloordiv", false]], "iglob() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.iglob", false]], "ignorablewhitespace() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.ignorableWhitespace", false]], "ignore": [[158, "index-1", false]], "ignore (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.ignore", false]], "ignore (pdb command)": [[297, "pdbcommand-ignore", false]], "ignore (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.IGNORE", false]], "ignore_environment (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.ignore_environment", false]], "ignore_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.ignore_errors", false]], "ignore_exception_detail (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.IGNORE_EXCEPTION_DETAIL", false]], "ignore_patterns() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.ignore_patterns", false]], "ignore_warnings() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.ignore_warnings", false]], "ignorecase (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.IGNORECASE", false]], "ihave() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.ihave", false]], "iiscgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.IISCGIHandler", false]], "illegalmontherror": [[150, "calendar.IllegalMonthError", false]], "illegalweekdayerror": [[150, "calendar.IllegalWeekdayError", false]], "ilshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ilshift", false]], "imag (numbers.complex \u7684\u5c6c\u6027)": [[289, "numbers.Complex.imag", false]], "imag (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.imag", false]], "imaginary literal\uff08\u865b\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "imap() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.imap", false]], "imap4": [[248, "index-0", false]], "imap4 (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4", false]], "imap4.abort": [[248, "imaplib.IMAP4.abort", false]], "imap4.error": [[248, "imaplib.IMAP4.error", false]], "imap4.readonly": [[248, "imaplib.IMAP4.readonly", false]], "imap4_ssl": [[248, "index-0", false]], "imap4_ssl (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4_SSL", false]], "imap4_stream": [[248, "index-0", false]], "imap4_stream (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4_stream", false]], "imap_unordered() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.imap_unordered", false]], "imaplib": [[248, "module-imaplib", false]], "imatmul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imatmul", false]], "imghdr": [[249, "module-imghdr", false]], "immedok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.immedok", false]], "immutable": [[430, "index-20", false], [430, "index-7", false]], "immutable object\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": [[428, "index-1", false]], "immutable sequences\uff08\u4e0d\u53ef\u8b8a\u5e8f\u5217\uff09": [[428, "index-18", false]], "immutable sequence\uff08\u4e0d\u53ef\u8b8a\u5e8f\u5217\uff09": [[428, "index-17", false]], "immutable types\uff08\u4e0d\u53ef\u8b8a\u578b\u5225\uff09": [[428, "index-72", false]], "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": [[87, "term-immutable", true]], "immutable\uff08\u4e0d\u53ef\u8b8a\uff09": [[344, "index-22", false], [428, "index-17", false]], "imod() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imod", false]], "impl_detail() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.impl_detail", false]], "implementation (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.implementation", false]], "import (2to3 fixer)": [[112, "to3fixer-import", false]], "import (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Import", false]], "import hooks": [[432, "index-9", false]], "import machinery\uff08\u5f15\u5165\u6a5f\u5236\uff09": [[432, "index-0", false]], "import path\uff08\u5f15\u5165\u8def\u5f91\uff09": [[87, "term-import-path", true]], "import statement\uff08\u5f15\u5165\u9673\u8ff0\u5f0f\uff09": [[429, "index-5", false], [436, "index-34", false], [436, "index-35", false], [436, "index-36", false], [436, "index-37", false]], "import_fresh_module() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.import_fresh_module", false]], "import_from (opcode)": [[191, "opcode-IMPORT_FROM", false]], "import_module() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.import_module", false]], "import_module() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.import_module", false]], "import_name (opcode)": [[191, "opcode-IMPORT_NAME", false]], "importerror": [[213, "ImportError", false], [436, "index-34", false]], "importer\uff08\u5f15\u5165\u5668\uff09": [[87, "term-importer", true]], "importfrom (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ImportFrom", false]], "importing\uff08\u5f15\u5165\uff09": [[87, "term-importing", true], [436, "index-34", false]], "importlib": [[250, "module-importlib", false]], "importlib.abc": [[250, "module-importlib.abc", false]], "importlib.abc.inspectloader.get_source \u65b9\u6cd5": [[250, "index-15", false]], "importlib.machinery": [[250, "module-importlib.machinery", false]], "importlib.metadata": [[251, "module-importlib.metadata", false]], "importlib.resources": [[252, "module-importlib.resources", false]], "importlib.resources.abc": [[253, "module-importlib.resources.abc", false]], "importlib.util": [[250, "module-importlib.util", false]], "imports (2to3 fixer)": [[112, "to3fixer-imports", false]], "imports2 (2to3 fixer)": [[112, "to3fixer-imports2", false]], "importwarning": [[213, "ImportWarning", false]], "import\uff08\u5f15\u5165\uff09": [[225, "index-13", false], [334, "index-2", false], [428, "index-44", false], [432, "index-9", false], [436, "index-34", true], [436, "index-39", false]], "improperconnectionstate": [[242, "http.client.ImproperConnectionState", false]], "imul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imul", false]], "in": [[344, "index-10", false], [344, "index-20", false], [427, "index-6", false], [430, "index-80", false]], "in (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.In", false]], "in pathnames (windows)\uff08\u5728\u8def\u5f91\u540d\u7a31\u4e2d (windows)\uff09": [[293, "index-48", false]], "in_dll() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.in_dll", false]], "in_table_a1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_a1", false]], "in_table_b1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_b1", false]], "in_table_c11() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c11", false]], "in_table_c11_c12() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c11_c12", false]], "in_table_c12() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c12", false]], "in_table_c21() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c21", false]], "in_table_c21_c22() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c21_c22", false]], "in_table_c22() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c22", false]], "in_table_c3() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c3", false]], "in_table_c4() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c4", false]], "in_table_c5() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c5", false]], "in_table_c6() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c6", false]], "in_table_c7() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c7", false]], "in_table_c8() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c8", false]], "in_table_c9() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c9", false]], "in_table_d1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_d1", false]], "in_table_d2() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_d2", false]], "in_transaction (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.in_transaction", false]], "inch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.inch", false]], "include() (\u65bc xml.etree.elementinclude \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementInclude.include", false]], "inclusive (tracemalloc.domainfilter \u7684\u5c6c\u6027)": [[382, "tracemalloc.DomainFilter.inclusive", false]], "inclusive (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.inclusive", false]], "inclusive\uff08\u5305\u542b\uff09": [[430, "index-76", false]], "incomplete": [[146, "binascii.Incomplete", false]], "incompleteread": [[242, "http.client.IncompleteRead", false]], "incompletereaderror": [[127, "asyncio.IncompleteReadError", false]], "incr_item()": [[35, "index-15", false], [35, "index-16", false]], "increment_lineno() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.increment_lineno", false]], "incrementaldecoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.IncrementalDecoder", false]], "incrementaldecoder (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.incrementaldecoder", false]], "incrementalencoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.IncrementalEncoder", false]], "incrementalencoder (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.incrementalencoder", false]], "incrementalnewlinedecoder (io \u4e2d\u7684\u985e\u5225)": [[258, "io.IncrementalNewlineDecoder", false]], "incrementalparser (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.IncrementalParser", false]], "indent (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.indent", false]], "indent (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.indent", false]], "indent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.INDENT", false]], "indent token\uff08\u7e2e\u6392\u6a19\u8a8c\uff09": [[435, "index-9", false]], "indent() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.indent", false]], "indent() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.indent", false]], "indentationerror": [[213, "IndentationError", false]], "indentation\uff08\u7e2e\u6392\uff09": [[435, "index-8", false]], "index (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.index", false]], "index (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.index", false]], "index operation\uff08\u7d22\u5f15\u64cd\u4f5c\uff09": [[428, "index-15", false]], "index() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.index", false]], "index() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.index", false]], "index() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.index", false]], "index() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.index", false]], "index() (multiprocessing.shared_memory.shareablelist \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.ShareableList.index", false]], "index() (str \u7684\u65b9\u6cd5)": [[344, "str.index", false]], "index() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.index", false]], "index() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.index", false]], "index() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.index", false]], "index()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-20", false]], "indexerror": [[213, "IndexError", false]], "indexof() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.indexOf", false]], "indexsizeerr": [[410, "xml.dom.IndexSizeErr", false]], "indices() (slice \u7684\u65b9\u6cd5)": [[428, "slice.indices", false]], "indirect (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.INDIRECT", false]], "inet_aton() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_aton", false]], "inet_ntoa() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_ntoa", false]], "inet_ntop() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_ntop", false]], "inet_pton() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_pton", false]], "inexact (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Inexact", false]], "inf (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.inf", false]], "inf (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.inf", false]], "inf (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.inf", false]], "infile": [[262, "cmdoption-json.tool-arg-infile", false]], "infile (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.infile", false]], "infinity\uff08\u7121\u7aae\uff09": [[225, "index-3", false]], "infj (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.infj", false]], "info (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.INFO", false]], "info (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.INFO", false]], "info() (dis.bytecode \u7684\u65b9\u6cd5)": [[191, "dis.Bytecode.info", false]], "info() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.info", false]], "info() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.info", false]], "info() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.info", false]], "info() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.info", false]], "info() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.info", false]], "infolist() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.infolist", false]], "inheritance\uff08\u7e7c\u627f\uff09": [[427, "index-42", false]], "ini file\uff08ini \u6a94\u6848\uff09": [[167, "index-0", false]], "init() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.init", false]], "init_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.init_color", false]], "init_database() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.init_database", false]], "init_pair() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.init_pair", false]], "inited (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.inited", false]], "initgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.initgroups", false]], "initial_indent (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.initial_indent", false]], "initproc (c type)": [[63, "c.initproc", false]], "initscr() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.initscr", false]], "inode() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.inode", false]], "input (2to3 fixer)": [[112, "to3fixer-input", false]], "input()": [[225, "input", false]], "input() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.input", false]], "input_charset (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.input_charset", false]], "input_codec (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.input_codec", false]], "inputonly (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.InputOnly", false]], "inputsource (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.InputSource", false]], "inputstream (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.InputStream", false]], "input\uff08\u8f38\u5165\uff09": [[437, "index-5", false]], "inquiry (c type)": [[28, "c.inquiry", false]], "insch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insch", false]], "insdelln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insdelln", false]], "insert() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.insert", false]], "insert() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.insert", false]], "insert() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.insert", false]], "insert() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.insert", false]], "insert() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.insert", false]], "insert()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "insert_text() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.insert_text", false]], "insertbefore() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.insertBefore", false]], "insertln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insertln", false]], "insnstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insnstr", false]], "insort() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort", false]], "insort_left() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort_left", false]], "insort_right() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort_right", false]], "inspect": [[255, "module-inspect", false]], "inspect (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.inspect", false]], "inspect \u547d\u4ee4\u5217\u9078\u9805": [[255, "cmdoption-inspect-details", false]], "inspectloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.InspectLoader", false]], "insstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insstr", false]], "install() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.install", false]], "install() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.install", false]], "install_opener() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.install_opener", false]], "install_scripts() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.install_scripts", false]], "installhandler() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.installHandler", false]], "instancemethod": [[44, "index-0", false]], "instance\uff08\u5be6\u4f8b\uff09": [[428, "index-47", false], [428, "index-51", false], [428, "index-97", false], [430, "index-55", false], [430, "index-56", false]], "instate() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.instate", false]], "instr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.instr", false]], "instream (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.instream", false]], "instruction (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Instruction", false]], "instruction (monitoring event)": [[353, "monitoring-event-INSTRUCTION", false]], "instruction.arg (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.arg", false]], "instruction.argrepr (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.argrepr", false]], "instruction.argval (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.argval", false]], "instruction.is_jump_target (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.is_jump_target", false]], "instruction.offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.offset", false]], "instruction.opcode (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.opcode", false]], "instruction.opname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.opname", false]], "instruction.positions (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.positions", false]], "instruction.starts_line (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.starts_line", false]], "int": [[47, "index-4", false], [344, "index-13", false], [428, "index-104", false]], "int (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.int", false]], "int (\u5167\u5efa\u985e\u5225)": [[225, "int", false]], "int2ap() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Int2AP", false]], "int_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.int_info", false]], "int_max_str_digits (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.int_max_str_digits", false]], "integer literal\uff08\u6574\u6578\u5e38\u6578\uff09": [[435, "index-27", false], [435, "index-28", false]], "integer\uff08\u6574\u6570\uff09": [[39, "index-0", false]], "integer\uff08\u6574\u6578\uff09": [[344, "index-11", false], [344, "index-12", false], [344, "index-16", false], [428, "index-10", false], [428, "index-11", false], [428, "index-19", false]], "integral (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Integral", false]], "integrated development environment\uff08\u6574\u5408\u958b\u767c\u74b0\u5883\uff09": [[247, "index-0", false]], "integrityerror": [[340, "sqlite3.IntegrityError", false]], "intel/dvi adpcm": [[141, "index-1", false]], "intenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.IntEnum", false]], "interact (pdb command)": [[297, "pdbcommand-interact", false]], "interact() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.interact", false]], "interact() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.interact", false]], "interact() (\u65bc code \u6a21\u7d44\u4e2d)": [[157, "code.interact", false]], "interactive (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Interactive", false]], "interactive (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.interactive", false]], "interactive mode\uff08\u4e92\u52d5\u6a21\u5f0f\uff09": [[437, "index-3", false]], "interactiveconsole (code \u4e2d\u7684\u985e\u5225)": [[157, "code.InteractiveConsole", false]], "interactiveinterpreter (code \u4e2d\u7684\u985e\u5225)": [[157, "code.InteractiveInterpreter", false]], "interactive\uff08\u4e92\u52d5\u7684\uff09": [[87, "term-interactive", true]], "interfaceerror": [[340, "sqlite3.InterfaceError", false]], "intern (2to3 fixer)": [[112, "to3fixer-intern", false]], "intern() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.intern", false]], "internal type\uff08\u5167\u90e8\u578b\u5225\uff09": [[428, "index-56", false]], "internal_attr (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.internal_attr", false]], "internaldate2tuple() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Internaldate2tuple", false]], "internalerror": [[340, "sqlite3.InternalError", false]], "internalsubset (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.internalSubset", false]], "internet_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.INTERNET_TIMEOUT", false]], "internet\uff08\u7db2\u969b\u7db2\u8def\uff09": [[256, "index-0", false]], "interpolated literal\uff08\u63d2\u503c\u5e38\u6578\uff09": [[435, "index-25", false]], "interpolated string literal\uff08\u63d2\u503c\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-25", false]], "interpolation in configuration files\uff08\u8a2d\u5b9a\u6a94\u4e2d\u7684\u63d2\u503c\uff09": [[167, "index-1", false], [167, "index-2", false]], "interpolationdeptherror": [[167, "configparser.InterpolationDepthError", false]], "interpolationerror": [[167, "configparser.InterpolationError", false]], "interpolationmissingoptionerror": [[167, "configparser.InterpolationMissingOptionError", false]], "interpolationsyntaxerror": [[167, "configparser.InterpolationSyntaxError", false]], "interpolation\uff08\u63d2\u503c\uff09": [[344, "index-45", false]], "interpolation\uff08\u63d2\u503c\uff09\u3001printf": [[344, "index-35", false]], "interpolation\uff08\u63d2\u503c\uff09\u3001\u5b57\u4e32 (%)": [[344, "index-35", false]], "interpreted\uff08\u76f4\u8b6f\u7684\uff09": [[87, "term-interpreted", true]], "interpreter lock\uff08\u76f4\u8b6f\u5668\u9396\uff09": [[33, "index-32", false]], "interpreter prompts\uff08\u76f4\u8b6f\u5668\u63d0\u793a\uff09": [[352, "index-27", false]], "interpreter prompt\uff08\u76f4\u8b6f\u5668\u63d0\u793a\uff09": [[193, "index-0", false], [352, "index-27", false]], "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09": [[87, "term-interpreter-shutdown", true]], "interpreter_requires_environment() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.interpreter_requires_environment", false]], "interpreter\uff08\u76f4\u8b6f\u5668\uff09": [[437, "index-0", false]], "interrupt() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.interrupt", false]], "interrupt_main() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.interrupt_main", false]], "interruptederror": [[213, "InterruptedError", false]], "intersection() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.intersection", false]], "intersection_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.intersection_update", false]], "intflag (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.IntFlag", false]], "intro (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.intro", false]], "inuseattributeerr": [[410, "xml.dom.InuseAttributeErr", false]], "inv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.inv", false]], "inv_cdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.inv_cdf", false]], "invalidaccesserr": [[410, "xml.dom.InvalidAccessErr", false]], "invalidate_caches() (importlib.abc.metapathfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.MetaPathFinder.invalidate_caches", false]], "invalidate_caches() (importlib.abc.pathentryfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.PathEntryFinder.invalidate_caches", false]], "invalidate_caches() (importlib.machinery.filefinder \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.invalidate_caches", false]], "invalidate_caches() (importlib.machinery.pathfinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.PathFinder.invalidate_caches", false]], "invalidate_caches() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.invalidate_caches", false]], "invalidate_caches() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.invalidate_caches", false]], "invalidcharactererr": [[410, "xml.dom.InvalidCharacterErr", false]], "invalidmodificationerr": [[410, "xml.dom.InvalidModificationErr", false]], "invalidoperation (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.InvalidOperation", false]], "invalidstateerr": [[410, "xml.dom.InvalidStateErr", false]], "invalidstateerror": [[127, "asyncio.InvalidStateError", false], [166, "concurrent.futures.InvalidStateError", false]], "invalidtzpathwarning": [[425, "zoneinfo.InvalidTZPathWarning", false]], "invalidurl": [[242, "http.client.InvalidURL", false]], "inversion\uff08\u53cd\u8f49\uff09": [[430, "index-62", false]], "invert (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Invert", false]], "invert() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.invert", false]], "invocation\uff08\u8abf\u7528\uff09": [[428, "index-33", false]], "io": [[258, "module-io", false], [428, "index-55", false]], "io (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.IO", false]], "io \u6a21\u7d44": [[258, "index-0", false]], "io.incrementalnewlinedecoder \u985e\u5225": [[258, "index-5", false]], "io.stringio": [[344, "index-29", false]], "io.textiowrapper \u985e\u5225": [[258, "index-4", false]], "io_reparse_tag_appexeclink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_APPEXECLINK", false]], "io_reparse_tag_mount_point (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_MOUNT_POINT", false]], "io_reparse_tag_symlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_SYMLINK", false]], "iobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.IOBase", false]], "ioctl() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.ioctl", false]], "ioctl() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.ioctl", false]], "ioctl_vm_sockets_get_local_cid (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.IOCTL_VM_SOCKETS_GET_LOCAL_CID", false]], "ioerror": [[213, "IOError", false]], "ior() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ior", false]], "ip (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.ip", false]], "ip (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.ip", false]], "ip_address() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_address", false]], "ip_interface() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_interface", false]], "ip_network() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_network", false]], "ipaddress": [[259, "module-ipaddress", false]], "ipow() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ipow", false]], "ipv4_mapped (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.ipv4_mapped", false]], "ipv4address (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Address", false]], "ipv4interface (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Interface", false]], "ipv4network (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Network", false]], "ipv6_enabled (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.IPV6_ENABLED", false]], "ipv6address (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Address", false]], "ipv6interface (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Interface", false]], "ipv6network (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Network", false]], "irrefutable case block": [[427, "index-22", false]], "irshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.irshift", false]], "is": [[344, "index-7", false], [430, "index-81", false]], "is (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Is", false]], "is not": [[344, "index-7", false], [430, "index-81", false]], "is_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.is_", false]], "is_absolute() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_absolute", false]], "is_active() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.is_active", false]], "is_active() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.is_active", false]], "is_alive() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.is_alive", false]], "is_alive() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.is_alive", false]], "is_android (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_android", false]], "is_annotated() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_annotated", false]], "is_assigned() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_assigned", false]], "is_async (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.is_async", false]], "is_attachment() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.is_attachment", false]], "is_authenticated() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated", false]], "is_block_device() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_block_device", false]], "is_blocked() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.is_blocked", false]], "is_canonical() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_canonical", false]], "is_canonical() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_canonical", false]], "is_char_device() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_char_device", false]], "is_character_junk() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.IS_CHARACTER_JUNK", false]], "is_check_supported() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.is_check_supported", false]], "is_closed() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.is_closed", false]], "is_closing() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.is_closing", false]], "is_closing() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.is_closing", false]], "is_dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.is_dataclass", false]], "is_declared_global() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_declared_global", false]], "is_dir() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.is_dir", false]], "is_dir() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.is_dir", false]], "is_dir() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_dir", false]], "is_dir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_dir", false]], "is_dir() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.is_dir", false]], "is_dir() (zipfile.zipinfo \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipInfo.is_dir", false]], "is_enabled() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.is_enabled", false]], "is_expired() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.is_expired", false]], "is_fifo() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_fifo", false]], "is_file() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.is_file", false]], "is_file() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.is_file", false]], "is_file() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_file", false]], "is_file() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_file", false]], "is_file() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.is_file", false]], "is_finalized() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.is_finalized", false]], "is_finalizing() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.is_finalizing", false]], "is_finite() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_finite", false]], "is_finite() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_finite", false]], "is_free() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_free", false]], "is_global (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_global", false]], "is_global (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_global", false]], "is_global() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_global", false]], "is_hop_by_hop() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.is_hop_by_hop", false]], "is_imported() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_imported", false]], "is_infinite() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_infinite", false]], "is_infinite() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_infinite", false]], "is_integer() (float \u7684\u65b9\u6cd5)": [[344, "float.is_integer", false]], "is_integer() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.is_integer", false]], "is_integer() (int \u7684\u65b9\u6cd5)": [[344, "int.is_integer", false]], "is_junction() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_junction", false]], "is_junction() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_junction", false]], "is_jython (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_jython", false]], "is_line_junk() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.IS_LINE_JUNK", false]], "is_linetouched() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.is_linetouched", false]], "is_link_local (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_link_local", false]], "is_link_local (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_link_local", false]], "is_link_local (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_link_local", false]], "is_link_local (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_link_local", false]], "is_local() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_local", false]], "is_loopback (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_loopback", false]], "is_loopback (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_loopback", false]], "is_loopback (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_loopback", false]], "is_loopback (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_loopback", false]], "is_mount() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_mount", false]], "is_multicast (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_multicast", false]], "is_multicast (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_multicast", false]], "is_multicast (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_multicast", false]], "is_multicast (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_multicast", false]], "is_multipart() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.is_multipart", false]], "is_multipart() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.is_multipart", false]], "is_namespace() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_namespace", false]], "is_nan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_nan", false]], "is_nan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_nan", false]], "is_nested() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.is_nested", false]], "is_nonlocal() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_nonlocal", false]], "is_normal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_normal", false]], "is_normal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_normal", false]], "is_normalized() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.is_normalized", false]], "is_not() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.is_not", false]], "is_not_allowed() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.is_not_allowed", false]], "is_op (opcode)": [[191, "opcode-IS_OP", false]], "is_optimized() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.is_optimized", false]], "is_package() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.is_package", false]], "is_package() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.is_package", false]], "is_package() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.is_package", false]], "is_package() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.is_package", false]], "is_package() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.is_package", false]], "is_package() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.is_package", false]], "is_parameter() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_parameter", false]], "is_private (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_private", false]], "is_private (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_private", false]], "is_private (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_private", false]], "is_private (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_private", false]], "is_python_build() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.is_python_build", false]], "is_qnan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_qnan", false]], "is_qnan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_qnan", false]], "is_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.is_reading", false]], "is_referenced() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_referenced", false]], "is_relative_to() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_relative_to", false]], "is_reserved (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_reserved", false]], "is_reserved (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_reserved", false]], "is_reserved (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_reserved", false]], "is_reserved (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_reserved", false]], "is_reserved() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_reserved", false]], "is_resource() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.is_resource", false]], "is_resource() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.is_resource", false]], "is_resource() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.is_resource", false]], "is_resource_enabled() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_resource_enabled", false]], "is_running() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.is_running", false]], "is_safe (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.is_safe", false]], "is_serving() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.is_serving", false]], "is_set() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.is_set", false]], "is_set() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.is_set", false]], "is_signed() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_signed", false]], "is_signed() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_signed", false]], "is_site_local (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_site_local", false]], "is_site_local (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_site_local", false]], "is_skipped_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.is_skipped_line", false]], "is_snan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_snan", false]], "is_snan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_snan", false]], "is_socket() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_socket", false]], "is_stack_trampoline_active() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.is_stack_trampoline_active", false]], "is_subnormal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_subnormal", false]], "is_subnormal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_subnormal", false]], "is_symlink() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_symlink", false]], "is_symlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_symlink", false]], "is_tarfile() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.is_tarfile", false]], "is_term_resized() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.is_term_resized", false]], "is_tracing() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.is_tracing", false]], "is_tracked() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.is_tracked", false]], "is_typeddict() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.is_typeddict", false]], "is_unspecified (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_unspecified", false]], "is_unspecified (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_unspecified", false]], "is_unspecified (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_unspecified", false]], "is_unspecified (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_unspecified", false]], "is_valid() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.is_valid", false]], "is_wintouched() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.is_wintouched", false]], "is_zero() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_zero", false]], "is_zero() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_zero", false]], "is_zipfile() (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.is_zipfile", false]], "isabs() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isabs", false]], "isabstract() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isabstract", false]], "isadirectoryerror": [[213, "IsADirectoryError", false]], "isalnum() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isalnum", false]], "isalnum() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isalnum", false]], "isalnum() (str \u7684\u65b9\u6cd5)": [[344, "str.isalnum", false]], "isalnum() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isalnum", false]], "isalpha() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isalpha", false]], "isalpha() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isalpha", false]], "isalpha() (str \u7684\u65b9\u6cd5)": [[344, "str.isalpha", false]], "isalpha() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isalpha", false]], "isascii() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isascii", false]], "isascii() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isascii", false]], "isascii() (str \u7684\u65b9\u6cd5)": [[344, "str.isascii", false]], "isascii() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isascii", false]], "isasyncgen() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isasyncgen", false]], "isasyncgenfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isasyncgenfunction", false]], "isatty() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.isatty", false]], "isatty() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.isatty", false]], "isatty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.isatty", false]], "isawaitable() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isawaitable", false]], "isblank() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isblank", false]], "isblk() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isblk", false]], "isbuiltin() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isbuiltin", false]], "ischr() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.ischr", false]], "isclass() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isclass", false]], "isclose() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isclose", false]], "isclose() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isclose", false]], "iscntrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.iscntrl", false]], "iscode() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscode", false]], "iscoroutine() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.iscoroutine", false]], "iscoroutine() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscoroutine", false]], "iscoroutinefunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscoroutinefunction", false]], "isctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isctrl", false]], "isdaemon() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.isDaemon", false]], "isdatadescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isdatadescriptor", false]], "isdecimal() (str \u7684\u65b9\u6cd5)": [[344, "str.isdecimal", false]], "isdev() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isdev", false]], "isdevdrive() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isdevdrive", false]], "isdigit() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isdigit", false]], "isdigit() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isdigit", false]], "isdigit() (str \u7684\u65b9\u6cd5)": [[344, "str.isdigit", false]], "isdigit() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isdigit", false]], "isdir() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isdir", false]], "isdir() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isdir", false]], "isdisjoint() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.isdisjoint", false]], "isdown() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.isdown", false]], "iselement() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.iselement", false]], "isenabled() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.isenabled", false]], "isenabledfor() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.isEnabledFor", false]], "isendwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.isendwin", false]], "iseof() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISEOF", false]], "isfifo() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isfifo", false]], "isfile() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isfile", false]], "isfile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isfile", false]], "isfinite() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isfinite", false]], "isfinite() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isfinite", false]], "isfirstline() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.isfirstline", false]], "isframe() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isframe", false]], "isfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isfunction", false]], "isfuture() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.isfuture", false]], "isgenerator() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgenerator", false]], "isgeneratorfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgeneratorfunction", false]], "isgetsetdescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgetsetdescriptor", false]], "isgraph() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isgraph", false]], "isidentifier() (str \u7684\u65b9\u6cd5)": [[344, "str.isidentifier", false]], "isinf() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isinf", false]], "isinf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isinf", false]], "isinstance (2to3 fixer)": [[112, "to3fixer-isinstance", false]], "isinstance()": [[225, "isinstance", false]], "isjunction() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isjunction", false]], "iskeyword() (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.iskeyword", false]], "isleap() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.isleap", false]], "islice() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.islice", false]], "islink() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.islink", false]], "islnk() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.islnk", false]], "islower() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.islower", false]], "islower() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.islower", false]], "islower() (str \u7684\u65b9\u6cd5)": [[344, "str.islower", false]], "islower() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.islower", false]], "ismemberdescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismemberdescriptor", false]], "ismeta() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ismeta", false]], "ismethod() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethod", false]], "ismethoddescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethoddescriptor", false]], "ismethodwrapper() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethodwrapper", false]], "ismodule() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismodule", false]], "ismount() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.ismount", false]], "isnan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isnan", false]], "isnan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isnan", false]], "isnonterminal() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISNONTERMINAL", false]], "isnot (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.IsNot", false]], "isnumeric() (str \u7684\u65b9\u6cd5)": [[344, "str.isnumeric", false]], "isocalendar() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isocalendar", false]], "isocalendar() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isocalendar", false]], "isoformat() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isoformat", false]], "isoformat() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isoformat", false]], "isoformat() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.isoformat", false]], "isolated (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.isolated", false]], "isolatedasynciotestcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.IsolatedAsyncioTestCase", false]], "isolation_level (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.isolation_level", false]], "isoweekday() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isoweekday", false]], "isoweekday() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isoweekday", false]], "isprint() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isprint", false]], "isprintable() (str \u7684\u65b9\u6cd5)": [[344, "str.isprintable", false]], "ispunct() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ispunct", false]], "isqrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isqrt", false]], "isreadable() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.isreadable", false]], "isreadable() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.isreadable", false]], "isrecursive() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.isrecursive", false]], "isrecursive() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.isrecursive", false]], "isreg() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isreg", false]], "isreservedkey() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.isReservedKey", false]], "isroutine() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isroutine", false]], "issamenode() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.isSameNode", false]], "issoftkeyword() (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.issoftkeyword", false]], "isspace() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isspace", false]], "isspace() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isspace", false]], "isspace() (str \u7684\u65b9\u6cd5)": [[344, "str.isspace", false]], "isspace() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isspace", false]], "isstdin() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.isstdin", false]], "issubclass()": [[225, "issubclass", false]], "issubset() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.issubset", false]], "issuperset() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.issuperset", false]], "issym() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.issym", false]], "isterminal() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISTERMINAL", false]], "istitle() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.istitle", false]], "istitle() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.istitle", false]], "istitle() (str \u7684\u65b9\u6cd5)": [[344, "str.istitle", false]], "istraceback() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.istraceback", false]], "isub() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.isub", false]], "isupper() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isupper", false]], "isupper() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isupper", false]], "isupper() (str \u7684\u65b9\u6cd5)": [[344, "str.isupper", false]], "isupper() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isupper", false]], "isvisible() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.isvisible", false]], "isxdigit() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isxdigit", false]], "italic (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.ITALIC", false]], "item selection\uff08\u9805\u76ee\u9078\u53d6\uff09": [[428, "index-15", false]], "item() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.item", false]], "item() (xml.dom.namednodemap \u7684\u65b9\u6cd5)": [[410, "xml.dom.NamedNodeMap.item", false]], "item() (xml.dom.nodelist \u7684\u65b9\u6cd5)": [[410, "xml.dom.NodeList.item", false]], "itemgetter() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.itemgetter", false]], "items() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.items", false]], "items() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.items", false]], "items() (dict \u7684\u65b9\u6cd5)": [[344, "dict.items", false]], "items() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.items", false]], "items() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.items", false]], "items() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.items", false]], "items() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.items", false]], "items() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.items", false]], "itemsize (array.array \u7684\u5c6c\u6027)": [[121, "array.array.itemsize", false]], "itemsize (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.itemsize", false]], "itemsview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ItemsView", false]], "itemsview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ItemsView", false]], "item\uff08\u9805\u76ee\uff09": [[430, "index-42", false], [430, "index-43", false]], "iter()": [[225, "iter", false]], "iter() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.iter", false]], "iter() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.iter", false]], "iter_attachments() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.iter_attachments", false]], "iter_child_nodes() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.iter_child_nodes", false]], "iter_fields() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.iter_fields", false]], "iter_importers() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.iter_importers", false]], "iter_modules() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.iter_modules", false]], "iter_parts() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.iter_parts", false]], "iter_unpack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.iter_unpack", false]], "iter_unpack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.iter_unpack", false]], "iterable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Iterable", false]], "iterable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Iterable", false]], "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": [[87, "term-iterable", true]], "iterable\uff08\u53ef\u758a\u4ee3\uff09": [[430, "index-93", false]], "iteration over\uff08\u758a\u4ee3\u65bc\uff09": [[344, "index-18", false]], "iteration\uff08\u758a\u4ee3\uff09": [[344, "index-18", false]], "iterator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Iterator", false]], "iterator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Iterator", false]], "iterator protocol\uff08\u758a\u4ee3\u5668\u5354\u5b9a\uff09": [[344, "index-18", false]], "iterator\uff08\u758a\u4ee3\u5668\uff09": [[87, "term-iterator", true], [344, "index-18", false], [436, "index-26", false]], "iterdecode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.iterdecode", false]], "iterdir() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.iterdir", false]], "iterdir() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.iterdir", false]], "iterdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.iterdir", false]], "iterdir() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.iterdir", false]], "iterdump() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.iterdump", false]], "iterencode() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.iterencode", false]], "iterencode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.iterencode", false]], "iterfind() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.iterfind", false]], "iterfind() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.iterfind", false]], "iteritems() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.iteritems", false]], "iterkeys() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.iterkeys", false]], "itermonthdates() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdates", false]], "itermonthdays() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays", false]], "itermonthdays2() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays2", false]], "itermonthdays3() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays3", false]], "itermonthdays4() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays4", false]], "iternextfunc (c type)": [[63, "c.iternextfunc", false]], "iterparse() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.iterparse", false]], "itertext() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.itertext", false]], "itertools": [[261, "module-itertools", false]], "itertools (2to3 fixer)": [[112, "to3fixer-itertools", false]], "itertools_imports (2to3 fixer)": [[112, "to3fixer-itertools_imports", false]], "itervalues() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.itervalues", false]], "iterweekdays() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.iterweekdays", false]], "itimer_prof (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_PROF", false]], "itimer_real (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_REAL", false]], "itimer_virtual (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_VIRTUAL", false]], "itimererror": [[333, "signal.ItimerError", false]], "itorator\uff08\u758a\u4ee3\u5668\uff09": [[428, "index-39", false]], "itruediv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.itruediv", false]], "ixor() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ixor", false]], "j": [[435, "index-30", false]], "jansen, jack": [[397, "index-1", false]], "january (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JANUARY", false]], "java": [[428, "index-13", false]], "java_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.java_ver", false]], "join() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.join", false]], "join() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.join", false]], "join() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.join", false]], "join() (multiprocessing.joinablequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.JoinableQueue.join", false]], "join() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.join", false]], "join() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.join", false]], "join() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.join", false]], "join() (str \u7684\u65b9\u6cd5)": [[344, "str.join", false]], "join() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.join", false]], "join() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.join", false]], "join() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.join", false]], "join_thread() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.join_thread", false]], "join_thread() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.join_thread", false]], "joinablequeue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.JoinableQueue", false]], "joinedstr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.JoinedStr", false]], "joinpath() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.joinpath", false]], "joinpath() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.joinpath", false]], "joinpath() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.joinpath", false]], "joinpath() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.joinpath", false]], "js_output() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.js_output", false]], "js_output() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.js_output", false]], "json": [[262, "module-json", false], [446, "index-1", false]], "json.tool": [[262, "module-json.tool", false]], "json.tool \u547d\u4ee4\u5217\u9078\u9805": [[262, "cmdoption-json.tool-arg-infile", false], [262, "cmdoption-json.tool-arg-outfile", false], [262, "cmdoption-json.tool-h", false], [262, "cmdoption-json.tool-indent", false], [262, "cmdoption-json.tool-json-lines", false], [262, "cmdoption-json.tool-no-ensure-ascii", false], [262, "cmdoption-json.tool-sort-keys", false]], "jsondecodeerror": [[262, "json.JSONDecodeError", false]], "jsondecoder (json \u4e2d\u7684\u985e\u5225)": [[262, "json.JSONDecoder", false]], "jsonencoder (json \u4e2d\u7684\u985e\u5225)": [[262, "json.JSONEncoder", false]], "july (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JULY", false]], "jump (monitoring event)": [[353, "monitoring-event-JUMP", false]], "jump (opcode)": [[191, "opcode-JUMP", false]], "jump (pdb command)": [[297, "pdbcommand-jump", false]], "jump_backward (opcode)": [[191, "opcode-JUMP_BACKWARD", false]], "jump_backward_no_interrupt (opcode)": [[191, "opcode-JUMP_BACKWARD_NO_INTERRUPT", false]], "jump_forward (opcode)": [[191, "opcode-JUMP_FORWARD", false]], "jump_no_interrupt (opcode)": [[191, "opcode-JUMP_NO_INTERRUPT", false]], "june (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JUNE", false]], "kbhit() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.kbhit", false]], "kdedir": [[403, "index-2", false]], "keep (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.KEEP", false]], "kevent() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.kevent", false]], "key (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.key", false]], "key (zoneinfo.zoneinfo \u7684\u5c6c\u6027)": [[425, "zoneinfo.ZoneInfo.key", false]], "key function\uff08\u9375\u51fd\u5f0f\uff09": [[87, "term-key-function", true]], "key/value pair\uff08\u9375/\u503c\u5c0d\uff09": [[430, "index-17", false]], "key_a1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_A1", false]], "key_a3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_A3", false]], "key_all_access (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_ALL_ACCESS", false]], "key_b2 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_B2", false]], "key_backspace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BACKSPACE", false]], "key_beg (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BEG", false]], "key_break (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BREAK", false]], "key_btab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BTAB", false]], "key_c1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_C1", false]], "key_c3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_C3", false]], "key_cancel (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CANCEL", false]], "key_catab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CATAB", false]], "key_clear (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CLEAR", false]], "key_close (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CLOSE", false]], "key_command (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_COMMAND", false]], "key_copy (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_COPY", false]], "key_create (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CREATE", false]], "key_create_link (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_CREATE_LINK", false]], "key_create_sub_key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_CREATE_SUB_KEY", false]], "key_ctab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CTAB", false]], "key_dc (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DC", false]], "key_dl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DL", false]], "key_down (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DOWN", false]], "key_eic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EIC", false]], "key_end (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_END", false]], "key_enter (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_ENTER", false]], "key_enumerate_sub_keys (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_ENUMERATE_SUB_KEYS", false]], "key_eol (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EOL", false]], "key_eos (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EOS", false]], "key_execute (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_EXECUTE", false]], "key_exit (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EXIT", false]], "key_f0 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_F0", false]], "key_find (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_FIND", false]], "key_fn (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_Fn", false]], "key_help (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_HELP", false]], "key_home (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_HOME", false]], "key_ic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_IC", false]], "key_il (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_IL", false]], "key_left (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_LEFT", false]], "key_ll (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_LL", false]], "key_mark (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MARK", false]], "key_max (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MAX", false]], "key_message (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MESSAGE", false]], "key_min (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MIN", false]], "key_mouse (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MOUSE", false]], "key_move (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MOVE", false]], "key_next (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_NEXT", false]], "key_notify (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_NOTIFY", false]], "key_npage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_NPAGE", false]], "key_open (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_OPEN", false]], "key_options (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_OPTIONS", false]], "key_ppage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PPAGE", false]], "key_previous (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PREVIOUS", false]], "key_print (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PRINT", false]], "key_query_value (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_QUERY_VALUE", false]], "key_read (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_READ", false]], "key_redo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REDO", false]], "key_reference (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REFERENCE", false]], "key_refresh (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REFRESH", false]], "key_replace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REPLACE", false]], "key_reset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESET", false]], "key_resize (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESIZE", false]], "key_restart (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESTART", false]], "key_resume (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESUME", false]], "key_right (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RIGHT", false]], "key_save (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SAVE", false]], "key_sbeg (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SBEG", false]], "key_scancel (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCANCEL", false]], "key_scommand (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCOMMAND", false]], "key_scopy (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCOPY", false]], "key_screate (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCREATE", false]], "key_sdc (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SDC", false]], "key_sdl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SDL", false]], "key_select (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SELECT", false]], "key_send (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEND", false]], "key_seol (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEOL", false]], "key_set_value (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_SET_VALUE", false]], "key_sexit (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEXIT", false]], "key_sf (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SF", false]], "key_sfind (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SFIND", false]], "key_shelp (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SHELP", false]], "key_shome (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SHOME", false]], "key_sic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SIC", false]], "key_sleft (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SLEFT", false]], "key_smessage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SMESSAGE", false]], "key_smove (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SMOVE", false]], "key_snext (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SNEXT", false]], "key_soptions (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SOPTIONS", false]], "key_sprevious (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SPREVIOUS", false]], "key_sprint (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SPRINT", false]], "key_sr (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SR", false]], "key_sredo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SREDO", false]], "key_sreplace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SREPLACE", false]], "key_sreset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRESET", false]], "key_sright (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRIGHT", false]], "key_srsume (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRSUME", false]], "key_ssave (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SSAVE", false]], "key_ssuspend (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SSUSPEND", false]], "key_stab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_STAB", false]], "key_sundo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SUNDO", false]], "key_suspend (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SUSPEND", false]], "key_undo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_UNDO", false]], "key_up (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_UP", false]], "key_wow64_32key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WOW64_32KEY", false]], "key_wow64_64key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WOW64_64KEY", false]], "key_write (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WRITE", false]], "keyboardinterrupt": [[213, "KeyboardInterrupt", false]], "keyboardinterrupt\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false]], "keyerror": [[213, "KeyError", false]], "keylog_filename (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.keylog_filename", false]], "keyname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.keyname", false]], "keypad() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.keypad", false]], "keyrefs() (weakref.weakkeydictionary \u7684\u65b9\u6cd5)": [[402, "weakref.WeakKeyDictionary.keyrefs", false]], "keys() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.keys", false]], "keys() (dict \u7684\u65b9\u6cd5)": [[344, "dict.keys", false]], "keys() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.keys", false]], "keys() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.keys", false]], "keys() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.keys", false]], "keys() (sqlite3.row \u7684\u65b9\u6cd5)": [[340, "sqlite3.Row.keys", false]], "keys() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.keys", false]], "keys() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.keys", false]], "keysview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.KeysView", false]], "keysview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.KeysView", false]], "keyword": [[263, "module-keyword", false]], "keyword (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.keyword", false]], "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09": [[87, "term-keyword-argument", true]], "keywords (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.keywords", false]], "keyword\uff08\u95dc\u9375\u5b57\uff09": [[427, "index-12", false], [427, "index-13", false], [427, "index-14", false], [427, "index-16", false], [427, "index-18", false], [427, "index-18", true], [427, "index-3", false], [427, "index-4", false], [427, "index-49", false], [427, "index-6", false], [427, "index-9", false], [430, "index-23", false], [430, "index-57", false], [435, "index-13", false], [435, "index-14", false], [436, "index-25", false], [436, "index-31", false], [436, "index-32", false], [436, "index-33", false], [436, "index-34", false]], "key\uff08\u9375\uff09": [[430, "index-17", false]], "kill() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.kill", false]], "kill() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.kill", false]], "kill() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.kill", false]], "kill() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.kill", false]], "kill() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.kill", false]], "kill_python() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.kill_python", false]], "killchar() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.killchar", false]], "killing": [[293, "index-37", false], [293, "index-38", false]], "killpg() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.killpg", false]], "kind (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.kind", false]], "knownfiles (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.knownfiles", false]], "kqueue() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.kqueue", false]], "kqueueselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.KqueueSelector", false]], "kw_names (opcode)": [[191, "opcode-KW_NAMES", false]], "kw_only (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.KW_ONLY", false]], "kwargs (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.kwargs", false]], "kwargs (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.kwargs", false]], "kwlist (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.kwlist", false]], "l (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.L", false]], "labelentry (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.LabelEntry", false]], "labelframe (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.LabelFrame", false]], "lambda": [[87, "term-lambda", true], [427, "index-35", false], [430, "index-90", false]], "lambda (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Lambda", false]], "lambda expression\uff08lambda \u904b\u7b97\u5f0f\uff09": [[430, "index-90", false]], "lambdatype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.LambdaType", false]], "lang": [[230, "index-3", false], [230, "index-8", false], [266, "index-1", false], [266, "index-2", false], [266, "index-3", false]], "language": [[230, "index-0", false], [230, "index-5", false]], "language\uff08\u8a9e\u8a00\uff09": [[344, "index-11", false], [428, "index-13", false], [428, "index-4", false], [428, "index-42", false], [430, "index-77", false]], "large files\uff08\u5927\u578b\u6a94\u6848\uff09": [[306, "index-1", false]], "largest (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LARGEST", false]], "largezipfile": [[422, "zipfile.LargeZipFile", false]], "last() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.last", false]], "last_accepted (multiprocessing.connection.listener \u7684\u5c6c\u6027)": [[283, "multiprocessing.connection.Listener.last_accepted", false]], "last_exc (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_exc", false]], "last_traceback (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_traceback", false]], "last_traceback \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-66", false]], "last_type (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_type", false]], "last_value (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_value", false]], "lastchild (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.lastChild", false]], "lastcmd (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.lastcmd", false]], "lastgroup (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.lastgroup", false]], "lastindex (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.lastindex", false]], "lastresort (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.lastResort", false]], "lastrowid (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.lastrowid", false]], "layout() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.layout", false]], "lazycache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.lazycache", false]], "lazyloader (importlib.util \u4e2d\u7684\u985e\u5225)": [[250, "importlib.util.LazyLoader", false]], "lbrace (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LBRACE", false]], "lbyl": [[87, "term-LBYL", true]], "lc_all": [[230, "index-1", false], [230, "index-6", false]], "lc_all (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_ALL", false]], "lc_collate (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_COLLATE", false]], "lc_ctype (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_CTYPE", false]], "lc_messages": [[230, "index-2", false], [230, "index-7", false]], "lc_messages (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_MESSAGES", false]], "lc_monetary (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_MONETARY", false]], "lc_numeric (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_NUMERIC", false]], "lc_time (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_TIME", false]], "lchflags() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchflags", false]], "lchmod() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.lchmod", false]], "lchmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchmod", false]], "lchown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchown", false]], "lcm() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.lcm", false]], "ldcxxshared": [[469, "index-11", false]], "ldexp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ldexp", false]], "ldflags": [[456, "envvar-LDFLAGS", false], [456, "index-12", false], [456, "index-19", false], [456, "index-21", false], [456, "index-24", false], [456, "index-25", false], [456, "index-26", false], [456, "index-29", false], [465, "index-26", false]], "ldflags_nodist": [[456, "envvar-LDFLAGS_NODIST", false], [456, "index-22", false], [456, "index-27", false]], "ldshared": [[456, "envvar-LDSHARED", false]], "le() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.le", false]], "leading whitespace\uff08\u524d\u7f6e\u7a7a\u767d\uff09": [[435, "index-8", false]], "leapdays() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.leapdays", false]], "leaveok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.leaveok", false]], "left (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left", false]], "left() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.left", false]], "left_list (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left_list", false]], "left_only (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left_only", false]], "leftshift (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LEFTSHIFT", false]], "leftshiftequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LEFTSHIFTEQUAL", false]], "legacy_transaction_control (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.LEGACY_TRANSACTION_CONTROL", false]], "len": [[22, "index-1", false], [38, "index-1", false], [40, "index-0", false], [49, "index-8", false], [54, "index-0", false], [55, "index-1", false], [344, "index-20", false], [344, "index-52", false], [428, "index-15", false], [428, "index-27", false], [428, "index-30", false], [428, "index-98", false]], "len()": [[225, "len", false]], "lenfunc (c type)": [[63, "c.lenfunc", false]], "length (xml.dom.namednodemap \u7684\u5c6c\u6027)": [[410, "xml.dom.NamedNodeMap.length", false]], "length (xml.dom.nodelist \u7684\u5c6c\u6027)": [[410, "xml.dom.NodeList.length", false]], "length_hint() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.length_hint", false]], "less (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LESS", false]], "lessequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LESSEQUAL", false]], "level (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.level", false]], "lexical analysis\uff08\u8a5e\u6cd5\u5206\u6790\uff09": [[435, "index-0", false]], "lexical definitions\uff08\u8a5e\u6cd5\u5b9a\u7fa9\uff09": [[434, "index-1", false]], "lexicalhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.LexicalHandler", false]], "lexists() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.lexists", false]], "lf (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.LF", false]], "lgamma() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.lgamma", false]], "lib2to3": [[112, "module-lib2to3", false]], "libc_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.libc_ver", false]], "libraries_assembly_name_prefix (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LIBRARIES_ASSEMBLY_NAME_PREFIX", false]], "library (ssl.sslerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLError.library", false]], "library (\u65bc dbm.ndbm \u6a21\u7d44\u4e2d)": [[184, "dbm.ndbm.library", false]], "libraryloader (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LibraryLoader", false]], "libs": [[456, "envvar-LIBS", false]], "license (\u5167\u5efa\u8b8a\u6578)": [[168, "license", false]], "lifoqueue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.LifoQueue", false]], "lifoqueue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.LifoQueue", false]], "light-weight processes": [[115, "index-0", false]], "limit_denominator() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.limit_denominator", false]], "limitoverrunerror": [[127, "asyncio.LimitOverrunError", false]], "lin2adpcm() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2adpcm", false]], "lin2alaw() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2alaw", false]], "lin2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2lin", false]], "lin2ulaw() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2ulaw", false]], "line (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.line", false]], "line (monitoring event)": [[353, "monitoring-event-LINE", false]], "line (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.line", false]], "line continuation\uff08\u5217\u5ef6\u7e8c\uff09": [[435, "index-6", false]], "line joining\uff08\u5217\u9023\u63a5\uff09": [[435, "index-3", false], [435, "index-6", false]], "line structure\uff08\u5217\u7d50\u69cb\uff09": [[435, "index-2", false]], "line() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.line", false]], "line-buffered i/o\uff08\u5217\u7de9\u885d i/o\uff09": [[225, "index-8", false]], "line_buffering (io.textiowrapper \u7684\u5c6c\u6027)": [[258, "io.TextIOWrapper.line_buffering", false]], "line_num (csv.csvreader \u7684\u5c6c\u6027)": [[175, "csv.csvreader.line_num", false]], "linear_regression() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.linear_regression", false]], "linecache": [[265, "module-linecache", false]], "lineno (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.lineno", false]], "lineno (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.lineno", false]], "lineno (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.lineno", false]], "lineno (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.lineno", false]], "lineno (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.lineno", false]], "lineno (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.lineno", false]], "lineno (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.lineno", false]], "lineno (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.lineno", false]], "lineno (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.lineno", false]], "lineno (re.error \u7684\u5c6c\u6027)": [[319, "re.error.lineno", false]], "lineno (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.lineno", false]], "lineno (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.lineno", false]], "lineno (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.lineno", false]], "lineno (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.lineno", false]], "lineno (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.lineno", false]], "lineno (tracemalloc.frame \u7684\u5c6c\u6027)": [[382, "tracemalloc.Frame.lineno", false]], "lineno (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.lineno", false]], "lineno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.lineno", false]], "lines": [[177, "index-0", false], [177, "index-3", false], [177, "index-5", false]], "lines (os.terminal_size \u7684\u5c6c\u6027)": [[293, "os.terminal_size.lines", false]], "lines (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.LINES", false]], "linesep (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.linesep", false]], "linesep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.linesep", false]], "lineterminator (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.lineterminator", false]], "linetoolong": [[242, "http.client.LineTooLong", false]], "link() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.link", false]], "linkcc": [[456, "envvar-LINKCC", false]], "linkname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.linkname", false]], "linkoutsidedestinationerror": [[358, "tarfile.LinkOutsideDestinationError", false]], "list (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.List", false]], "list (pdb command)": [[297, "pdbcommand-list", false]], "list (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.List", false]], "list (\u5167\u5efa\u985e\u5225)": [[344, "list", false]], "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-list-comprehension", true]], "list expression\uff08\u4e32\u5217\u904b\u7b97\u5f0f\uff09": [[430, "index-15", false]], "list() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.list", false]], "list() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.list", false]], "list() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.list", false]], "list() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.list", false]], "list() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.list", false]], "list_append (opcode)": [[191, "opcode-LIST_APPEND", false]], "list_dialects() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.list_dialects", false]], "list_extend (opcode)": [[191, "opcode-LIST_EXTEND", false]], "list_folders() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.list_folders", false]], "list_folders() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.list_folders", false]], "listcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ListComp", false]], "listdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listdir", false]], "listdrives() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listdrives", false]], "listen() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.listen", false]], "listen() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.listen", false]], "listen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.listen", false]], "listener (logging.handlers.queuehandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.QueueHandler.listener", false]], "listener (multiprocessing.connection \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.connection.Listener", false]], "listmethods() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.listMethods", false]], "listmounts() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listmounts", false]], "listnotebook (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ListNoteBook", false]], "listvolumes() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listvolumes", false]], "listxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listxattr", false]], "list\uff08\u4e32\u5217\uff09": [[38, "index-0", false], [87, "term-list", true], [344, "index-23", false], [344, "index-24", false], [344, "index-25", false], [427, "index-6", false], [428, "index-25", false], [430, "index-15", false], [430, "index-40", false], [430, "index-42", false], [430, "index-45", false], [430, "index-91", false], [436, "index-1", false], [436, "index-10", false], [436, "index-2", false], [436, "index-21", false], [436, "index-5", false], [436, "index-6", false]], "literal": [[430, "index-6", false]], "literal (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Literal", false]], "literal_eval() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.literal_eval", false]], "literalstring (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.LiteralString", false]], "literals\uff08\u5b57\u9762\u503c\uff09": [[344, "index-12", false]], "literal\uff08\u5e38\u6578\uff09": [[435, "index-16", false]], "littleendianstructure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LittleEndianStructure", false]], "littleendianunion (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LittleEndianUnion", false]], "ljust() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.ljust", false]], "ljust() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.ljust", false]], "ljust() (str \u7684\u65b9\u6cd5)": [[344, "str.ljust", false]], "lk_lock (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_LOCK", false]], "lk_nblck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_NBLCK", false]], "lk_nbrlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_NBRLCK", false]], "lk_rlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_RLCK", false]], "lk_unlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_UNLCK", false]], "ll (pdb command)": [[297, "pdbcommand-ll", false]], "lmtp (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.LMTP", false]], "ln() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.ln", false]], "ln() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.ln", false]], "lnktype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.LNKTYPE", false]], "load (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Load", false]], "load() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.load", false]], "load() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.load", false]], "load() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.load", false]], "load() (tracemalloc.snapshot \u7684\u985e\u5225\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.load", false]], "load() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.load", false]], "load() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.load", false]], "load() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.load", false]], "load() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.load", false]], "load() (\u65bc tomllib \u6a21\u7d44\u4e2d)": [[379, "tomllib.load", false]], "load_assertion_error (opcode)": [[191, "opcode-LOAD_ASSERTION_ERROR", false]], "load_attr (opcode)": [[191, "opcode-LOAD_ATTR", false]], "load_build_class (opcode)": [[191, "opcode-LOAD_BUILD_CLASS", false]], "load_cert_chain() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_cert_chain", false]], "load_closure (opcode)": [[191, "opcode-LOAD_CLOSURE", false]], "load_const (opcode)": [[191, "opcode-LOAD_CONST", false]], "load_default_certs() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_default_certs", false]], "load_deref (opcode)": [[191, "opcode-LOAD_DEREF", false]], "load_dh_params() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_dh_params", false]], "load_extension() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.load_extension", false]], "load_fast (opcode)": [[191, "opcode-LOAD_FAST", false]], "load_fast_and_clear (opcode)": [[191, "opcode-LOAD_FAST_AND_CLEAR", false]], "load_fast_check (opcode)": [[191, "opcode-LOAD_FAST_CHECK", false]], "load_from_dict_or_deref (opcode)": [[191, "opcode-LOAD_FROM_DICT_OR_DEREF", false]], "load_from_dict_or_globals (opcode)": [[191, "opcode-LOAD_FROM_DICT_OR_GLOBALS", false]], "load_global (opcode)": [[191, "opcode-LOAD_GLOBAL", false]], "load_locals (opcode)": [[191, "opcode-LOAD_LOCALS", false]], "load_method (opcode)": [[191, "opcode-LOAD_METHOD", false]], "load_module() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.load_module", false]], "load_module() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.load_module", false]], "load_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.load_module", false]], "load_module() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.load_module", false]], "load_module() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.load_module", false]], "load_module() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.load_module", false]], "load_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.load_module", false]], "load_name (opcode)": [[191, "opcode-LOAD_NAME", false]], "load_package_tests() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.load_package_tests", false]], "load_super_attr (opcode)": [[191, "opcode-LOAD_SUPER_ATTR", false]], "load_verify_locations() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_verify_locations", false]], "loader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.Loader", false]], "loader (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.loader", false]], "loader_state (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.loader_state", false]], "loaderror": [[243, "http.cookiejar.LoadError", false]], "loader\uff08\u8f09\u5165\u5668\uff09": [[87, "term-loader", true], [432, "index-8", false]], "loadfiledialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.LoadFileDialog", false]], "loadkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.LoadKey", false]], "loadlibrary() (ctypes.libraryloader \u7684\u65b9\u6cd5)": [[176, "ctypes.LibraryLoader.LoadLibrary", false]], "loads() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.loads", false]], "loads() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.loads", false]], "loads() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.loads", false]], "loads() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.loads", false]], "loads() (\u65bc tomllib \u6a21\u7d44\u4e2d)": [[379, "tomllib.loads", false]], "loads() (\u65bc xmlrpc.client \u6a21\u7d44\u4e2d)": [[419, "xmlrpc.client.loads", false]], "loadtestsfrommodule() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromModule", false]], "loadtestsfromname() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromName", false]], "loadtestsfromnames() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromNames", false]], "loadtestsfromtestcase() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromTestCase", false]], "local (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.local", false]], "local_creds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.LOCAL_CREDS", false]], "local_creds_persistent (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.LOCAL_CREDS_PERSISTENT", false]], "localcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.localcontext", false]], "locale": [[266, "module-locale", false]], "locale (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.LOCALE", false]], "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09": [[87, "term-locale-encoding", true]], "localeconv() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.localeconv", false]], "localehtmlcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.LocaleHTMLCalendar", false]], "localetextcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.LocaleTextCalendar", false]], "localize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.localize", false]], "localname (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.localName", false]], "localname (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.localName", false]], "locals()": [[225, "locals", false]], "localtime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.localtime", false]], "localtime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.localtime", false]], "locator (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.Locator", false]], "lock (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Lock", false]], "lock (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Lock", false]], "lock (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.lock", false]], "lock (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Lock", false]], "lock() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.lock", false]], "lock() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.lock", false]], "lock() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.lock", false]], "lock() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.lock", false]], "lock() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.lock", false]], "lock() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.lock", false]], "lock() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Lock", false]], "lock, interpreter\uff08\u9396\u3001\u76f4\u8b6f\u5668\uff09": [[33, "index-32", false]], "lock_ex (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_EX", false]], "lock_nb (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_NB", false]], "lock_sh (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_SH", false]], "lock_un (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_UN", false]], "locked() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.locked", false]], "locked() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.locked", false]], "locked() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.locked", false]], "locked() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.locked", false]], "locked() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.locked", false]], "lockf() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.lockf", false]], "lockf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lockf", false]], "locking() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.locking", false]], "locktype (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.LockType", false]], "log() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.log", false]], "log() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.log", false]], "log() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.log", false]], "log() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log", false]], "log10() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.log10", false]], "log10() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.log10", false]], "log10() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.log10", false]], "log10() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log10", false]], "log1p() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log1p", false]], "log2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log2", false]], "log_date_time_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_date_time_string", false]], "log_error() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_error", false]], "log_exception() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.log_exception", false]], "log_message() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_message", false]], "log_request() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_request", false]], "log_to_stderr() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.log_to_stderr", false]], "logb() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logb", false]], "logb() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logb", false]], "logger (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Logger", false]], "loggeradapter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.LoggerAdapter", false]], "logging": [[267, "module-logging", false]], "logging.config": [[268, "module-logging.config", false]], "logging.handlers": [[269, "module-logging.handlers", false]], "logging\uff08\u65e5\u8a8c\uff09": [[267, "index-0", false]], "logical line\uff08\u908f\u8f2f\u5217\uff09": [[435, "index-3", false]], "logical_and() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_and", false]], "logical_and() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_and", false]], "logical_invert() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_invert", false]], "logical_invert() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_invert", false]], "logical_or() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_or", false]], "logical_or() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_or", false]], "logical_xor() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_xor", false]], "logical_xor() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_xor", false]], "login() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.login", false]], "login() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.login", false]], "login() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.login", false]], "login() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.login", false]], "login_cram_md5() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.login_cram_md5", false]], "login_tty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.login_tty", false]], "logname": [[229, "index-6", false], [293, "index-10", false]], "lognormvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.lognormvariate", false]], "logout() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.logout", false]], "logrecord (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.LogRecord", false]], "long (2to3 fixer)": [[112, "to3fixer-long", false]], "long integer\uff08\u9577\u6574\u6570\uff09": [[39, "index-0", false]], "long_max\uff08c \u5de8\u96c6\uff09": [[39, "index-1", false]], "long_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LONG_TIMEOUT", false]], "longmessage (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.longMessage", false]], "longname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.longname", false]], "lookup() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.lookup", false]], "lookup() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.lookup", false]], "lookup() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.lookup", false]], "lookup() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.lookup", false]], "lookup_error() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.lookup_error", false]], "lookuperror": [[213, "LookupError", false]], "loop control\uff08\u8ff4\u5708\u63a7\u5236\uff09": [[436, "index-31", false]], "loop over\uff08\u8ff4\u5708\uff09": [[344, "index-21", false]], "loopback_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LOOPBACK_TIMEOUT", false]], "loop\uff08\u8ff4\u5708\uff09": [[344, "index-21", false], [427, "index-4", false], [427, "index-6", false], [436, "index-30", false], [436, "index-33", false]], "lower() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.lower", false]], "lower() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.lower", false]], "lower() (str \u7684\u65b9\u6cd5)": [[344, "str.lower", false]], "lpar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LPAR", false]], "lpattributelist (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.lpAttributeList", false]], "lru_cache() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.lru_cache", false]], "lseek() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lseek", false]], "lshift (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.LShift", false]], "lshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.lshift", false]], "lsqb (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LSQB", false]], "lstat() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.lstat", false]], "lstat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lstat", false]], "lstrip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.lstrip", false]], "lstrip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.lstrip", false]], "lstrip() (str \u7684\u65b9\u6cd5)": [[344, "str.lstrip", false]], "lsub() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.lsub", false]], "lt (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Lt", false]], "lt() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.lt", false]], "lt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.lt", false]], "lte (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.LtE", false]], "lwpcookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.LWPCookieJar", false]], "lzma": [[270, "module-lzma", false]], "lzmacompressor (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMACompressor", false]], "lzmadecompressor (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMADecompressor", false]], "lzmaerror": [[270, "lzma.LZMAError", false]], "lzmafile (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMAFile", false]], "m (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.M", false]], "mac_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.mac_ver", false]], "machine() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.machine", false]], "macros (netrc.netrc \u7684\u5c6c\u6027)": [[286, "netrc.netrc.macros", false]], "madv_autosync (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_AUTOSYNC", false]], "madv_core (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_CORE", false]], "madv_dodump (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DODUMP", false]], "madv_dofork (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DOFORK", false]], "madv_dontdump (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTDUMP", false]], "madv_dontfork (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTFORK", false]], "madv_dontneed (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTNEED", false]], "madv_free (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE", false]], "madv_free_reusable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE_REUSABLE", false]], "madv_free_reuse (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE_REUSE", false]], "madv_hugepage (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_HUGEPAGE", false]], "madv_hwpoison (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_HWPOISON", false]], "madv_mergeable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_MERGEABLE", false]], "madv_nocore (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOCORE", false]], "madv_nohugepage (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOHUGEPAGE", false]], "madv_normal (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NORMAL", false]], "madv_nosync (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOSYNC", false]], "madv_protect (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_PROTECT", false]], "madv_random (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_RANDOM", false]], "madv_remove (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_REMOVE", false]], "madv_sequential (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_SEQUENTIAL", false]], "madv_soft_offline (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_SOFT_OFFLINE", false]], "madv_unmergeable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_UNMERGEABLE", false]], "madv_willneed (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_WILLNEED", false]], "madvise() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.madvise", false]], "magic": [[87, "index-23", false]], "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09": [[87, "term-magic-method", true]], "magic_number (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.MAGIC_NUMBER", false]], "magicmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.MagicMock", false]], "mailbox": [[271, "module-mailbox", false]], "mailbox (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Mailbox", false]], "mailcap": [[272, "module-mailcap", false]], "maildir (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Maildir", false]], "maildirmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MaildirMessage", false]], "main()": [[33, "index-16", false], [33, "index-19", false], [33, "index-29", false]], "main() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.main", false]], "main() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.main", false]], "main_thread() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.main_thread", false]], "mainloop() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.mainloop", false]], "maintype (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.maintype", false]], "major (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.major", false]], "major() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.major", false]], "make_alternative() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_alternative", false]], "make_archive() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.make_archive", false]], "make_bad_fd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.make_bad_fd", false]], "make_cell (opcode)": [[191, "opcode-MAKE_CELL", false]], "make_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.make_cookies", false]], "make_dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.make_dataclass", false]], "make_file() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.make_file", false]], "make_function (opcode)": [[191, "opcode-MAKE_FUNCTION", false]], "make_header() (\u65bc email.header \u6a21\u7d44\u4e2d)": [[202, "email.header.make_header", false]], "make_legacy_pyc() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.make_legacy_pyc", false]], "make_mixed() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_mixed", false]], "make_msgid() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.make_msgid", false]], "make_parser() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.make_parser", false]], "make_pkg() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_pkg", false]], "make_related() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_related", false]], "make_script() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_script", false]], "make_server() (\u65bc wsgiref.simple_server \u6a21\u7d44\u4e2d)": [[407, "wsgiref.simple_server.make_server", false]], "make_table() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.make_table", false]], "make_zip_pkg() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_zip_pkg", false]], "make_zip_script() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_zip_script", false]], "makedev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.makedev", false]], "makedirs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.makedirs", false]], "makeelement() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.makeelement", false]], "makefile() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.makefile", false]], "makefile() \uff08socket \u65b9\u6cd5\uff09": [[428, "index-55", false]], "makelogrecord() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.makeLogRecord", false]], "makepickle() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.makePickle", false]], "makerecord() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.makeRecord", false]], "makesocket() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.makeSocket", false]], "makesocket() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.makeSocket", false]], "maketrans() (bytearray \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "bytearray.maketrans", false]], "maketrans() (bytes \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "bytes.maketrans", false]], "maketrans() (str \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "str.maketrans", false]], "malloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "manager (logging.loggeradapter \u7684\u5c6c\u6027)": [[267, "logging.LoggerAdapter.manager", false]], "mangle_from_ (email.policy.compat32 \u7684\u5c6c\u6027)": [[208, "email.policy.Compat32.mangle_from_", false]], "mangle_from_ (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.mangle_from_", false]], "mangling": [[430, "index-5", false]], "mangling\uff08\u4fee\u98fe\uff09": [[440, "index-1", false]], "mant_dig (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.mant_dig", false]], "map (2to3 fixer)": [[112, "to3fixer-map", false]], "map()": [[225, "map", false]], "map() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.map", false]], "map() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.map", false]], "map() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.map", false]], "map_add (opcode)": [[191, "opcode-MAP_ADD", false]], "map_aligned_super (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ALIGNED_SUPER", false]], "map_anon (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ANON", false]], "map_anonymous (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ANONYMOUS", false]], "map_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.map_async", false]], "map_conceal (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_CONCEAL", false]], "map_denywrite (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_DENYWRITE", false]], "map_executable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_EXECUTABLE", false]], "map_populate (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_POPULATE", false]], "map_private (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_PRIVATE", false]], "map_shared (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_SHARED", false]], "map_stack (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_STACK", false]], "map_table_b2() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.map_table_b2", false]], "map_table_b3() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.map_table_b3", false]], "map_to_type() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.map_to_type", false]], "maplogrecord() (logging.handlers.httphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.HTTPHandler.mapLogRecord", false]], "mapping (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Mapping", false]], "mapping (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Mapping", false]], "mapping() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.mapping", false]], "mappingproxytype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.MappingProxyType", false]], "mappingview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MappingView", false]], "mappingview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MappingView", false]], "mapping\uff08\u5c0d\u6620\uff09": [[16, "index-2", false], [87, "term-mapping", true], [344, "index-52", false], [428, "index-30", false], [428, "index-53", false], [430, "index-42", false], [436, "index-11", false]], "mappriority() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.mapPriority", false]], "maps (collections.chainmap \u7684\u5c6c\u6027)": [[160, "collections.ChainMap.maps", false]], "maps() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.maps", false]], "march (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MARCH", false]], "markcoroutinefunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.markcoroutinefunction", false]], "marker\uff08\u6a19\u8a18\uff09": [[193, "index-1", false], [381, "index-1", false]], "marshal": [[274, "module-marshal", false]], "marshalling": [[299, "index-0", false]], "masking\uff08\u906e\u7f69\uff09": [[344, "index-16", false]], "master (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.master", false]], "match": [[427, "index-18", false], [427, "index-18", true]], "match (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Match", false]], "match (re \u4e2d\u7684\u985e\u5225)": [[319, "re.Match", false]], "match (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Match", false]], "match statement\uff08\u5339\u914d\u9673\u8ff0\u5f0f\uff09": [[427, "index-18", false]], "match() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.match", false]], "match() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.match", false]], "match() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.match", false]], "match() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.match", false]], "match_case (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.match_case", false]], "match_class (opcode)": [[191, "opcode-MATCH_CLASS", false]], "match_keys (opcode)": [[191, "opcode-MATCH_KEYS", false]], "match_mapping (opcode)": [[191, "opcode-MATCH_MAPPING", false]], "match_sequence (opcode)": [[191, "opcode-MATCH_SEQUENCE", false]], "match_value() (test.support.matcher \u7684\u65b9\u6cd5)": [[362, "test.support.Matcher.match_value", false]], "matchas (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchAs", false]], "matchclass (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchClass", false]], "matcher (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.Matcher", false]], "matches() (test.support.matcher \u7684\u65b9\u6cd5)": [[362, "test.support.Matcher.matches", false]], "matchmapping (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchMapping", false]], "matchor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchOr", false]], "matchsequence (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchSequence", false]], "matchsingleton (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchSingleton", false]], "matchstar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchStar", false]], "matchvalue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchValue", false]], "math": [[275, "module-math", false], [344, "index-15", false]], "math\uff08\u6578\u5b78\uff09": [[154, "index-1", false]], "matmul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.matmul", false]], "matmult (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatMult", false]], "matrix multiplication\uff08\u77e9\u9663\u4e58\u6cd5\uff09": [[430, "index-66", false]], "max": [[344, "index-20", false]], "max (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.max", false]], "max (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.max", false]], "max (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.max", false]], "max (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.max", false]], "max (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max", false]], "max()": [[225, "max", false]], "max() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.max", false]], "max() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.max", false]], "max() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.max", false]], "max_10_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max_10_exp", false]], "max_count (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.max_count", false]], "max_emax (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MAX_EMAX", false]], "max_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max_exp", false]], "max_interpolation_depth (\u65bc configparser \u6a21\u7d44\u4e2d)": [[167, "configparser.MAX_INTERPOLATION_DEPTH", false]], "max_line_length (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.max_line_length", false]], "max_lines (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.max_lines", false]], "max_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.max_mag", false]], "max_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.max_mag", false]], "max_memuse (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.max_memuse", false]], "max_prec (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MAX_PREC", false]], "max_prefixlen (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.max_prefixlen", false]], "max_py_ssize_t (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.MAX_Py_ssize_t", false]], "maxarray (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxarray", false]], "maxdeque (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxdeque", false]], "maxdict (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxdict", false]], "maxdiff (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.maxDiff", false]], "maxfrozenset (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxfrozenset", false]], "maximum_supported (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.MAXIMUM_SUPPORTED", false]], "maximum_version (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.maximum_version", false]], "maxlen (collections.deque \u7684\u5c6c\u6027)": [[160, "collections.deque.maxlen", false]], "maxlevel (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlevel", false]], "maxlist (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlist", false]], "maxlong (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlong", false]], "maxother (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxother", false]], "maxpp() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.maxpp", false]], "maxset (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxset", false]], "maxsize (asyncio.queue \u7684\u5c6c\u6027)": [[134, "asyncio.Queue.maxsize", false]], "maxsize (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.maxsize", false]], "maxstring (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxstring", false]], "maxtuple (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxtuple", false]], "maxunicode (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.maxunicode", false]], "maxyear (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.MAXYEAR", false]], "may (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MAY", false]], "mb_iconasterisk (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONASTERISK", false]], "mb_iconexclamation (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONEXCLAMATION", false]], "mb_iconhand (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONHAND", false]], "mb_iconquestion (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONQUESTION", false]], "mb_ok (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_OK", false]], "mbox (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.mbox", false]], "mboxmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.mboxMessage", false]], "md5() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.md5", false]], "mean (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.mean", false]], "mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.mean", false]], "measure() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.measure", false]], "median (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.median", false]], "median() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median", false]], "median_grouped() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_grouped", false]], "median_high() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_high", false]], "median_low() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_low", false]], "member() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.member", false]], "memberdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MemberDescriptorType", false]], "membership\uff08\u6210\u54e1\uff09": [[430, "index-80", false]], "memfd_create() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.memfd_create", false]], "memmove() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.memmove", false]], "memorybio (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.MemoryBIO", false]], "memoryerror": [[213, "MemoryError", false]], "memoryhandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.MemoryHandler", false]], "memoryview (\u5167\u5efa\u985e\u5225)": [[344, "memoryview", false]], "memoryview\uff08\u8a18\u61b6\u9ad4\u8996\u5716\uff09": [[43, "index-0", false], [344, "index-40", false]], "memset() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.memset", false]], "merge() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.merge", false]], "message (baseexceptiongroup \u7684\u5c6c\u6027)": [[213, "BaseExceptionGroup.message", false]], "message (email.message \u4e2d\u7684\u985e\u5225)": [[196, "email.message.Message", false]], "message (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Message", false]], "message (tkinter.messagebox \u4e2d\u7684\u985e\u5225)": [[373, "tkinter.messagebox.Message", false]], "message digest, md5": [[235, "index-0", false]], "message_factory (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.message_factory", false]], "message_from_binary_file() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_binary_file", false]], "message_from_bytes() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_bytes", false]], "message_from_file() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_file", false]], "message_from_string() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_string", false]], "messagebeep() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MessageBeep", false]], "messageclass (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.MessageClass", false]], "messagedefect": [[199, "email.errors.MessageDefect", false]], "messageerror": [[199, "email.errors.MessageError", false]], "messageparseerror": [[199, "email.errors.MessageParseError", false]], "messages (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.messages", false]], "meta": [[432, "index-9", false]], "meta hooks": [[432, "index-9", false]], "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09": [[87, "term-meta-path-finder", true]], "meta() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.meta", false]], "meta_path (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.meta_path", false]], "metaclass (2to3 fixer)": [[112, "to3fixer-metaclass", false]], "metaclass hint\uff08\u5143\u985e\u5225\u63d0\u793a\uff09": [[428, "index-88", false]], "metaclass\uff08\u5143\u985e\u5225\uff09": [[87, "term-metaclass", true], [428, "index-86", false]], "metapathfinder (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.MetaPathFinder", false]], "metavar (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.metavar", false]], "metavartypehelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.MetavarTypeHelpFormatter", false]], "meter (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Meter", false]], "meth_class (c macro)": [[58, "c.METH_CLASS", false]], "meth_coexist (c macro)": [[58, "c.METH_COEXIST", false]], "meth_fastcall (c macro)": [[58, "c.METH_FASTCALL", false]], "meth_keywords (c macro)": [[58, "c.METH_KEYWORDS", false]], "meth_method (c macro)": [[58, "c.METH_METHOD", false]], "meth_noargs (c macro)": [[58, "c.METH_NOARGS", false]], "meth_o (c macro)": [[58, "c.METH_O", false]], "meth_static (c macro)": [[58, "c.METH_STATIC", false]], "meth_varargs (c macro)": [[58, "c.METH_VARARGS", false]], "method (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.method", false]], "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09": [[87, "term-method-resolution-order", true]], "method_blowfish (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_BLOWFISH", false]], "method_calls (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.method_calls", false]], "method_crypt (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_CRYPT", false]], "method_md5 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_MD5", false]], "method_sha256 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_SHA256", false]], "method_sha512 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_SHA512", false]], "methodattrs (2to3 fixer)": [[112, "to3fixer-methodattrs", false]], "methodcaller() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.methodcaller", false]], "methoddescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodDescriptorType", false]], "methodhelp() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.methodHelp", false]], "methods (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.methods", false]], "methods (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.methods", false]], "methodsignature() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.methodSignature", false]], "methods\uff08\u65b9\u6cd5\uff09": [[344, "index-32", false], [344, "index-43", false]], "methodtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodType", false]], "methodtype\uff08types \u6a21\u7d44\u4e2d\uff09": [[27, "index-1", false], [44, "index-2", false], [45, "index-1", false]], "methodwrappertype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodWrapperType", false]], "method\uff08\u65b9\u6cd5\uff09": [[44, "index-1", false], [87, "index-23", false], [87, "index-31", false], [87, "term-method", true], [344, "index-61", false], [428, "index-37", false], [428, "index-43", false], [430, "index-53", false], [440, "index-0", false]], "metrics() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.metrics", false]], "mfd_allow_sealing (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_ALLOW_SEALING", false]], "mfd_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_CLOEXEC", false]], "mfd_huge_16gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_16GB", false]], "mfd_huge_16mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_16MB", false]], "mfd_huge_1gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_1GB", false]], "mfd_huge_1mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_1MB", false]], "mfd_huge_256mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_256MB", false]], "mfd_huge_2gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_2GB", false]], "mfd_huge_2mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_2MB", false]], "mfd_huge_32mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_32MB", false]], "mfd_huge_512kb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_512KB", false]], "mfd_huge_512mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_512MB", false]], "mfd_huge_64kb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_64KB", false]], "mfd_huge_8mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_8MB", false]], "mfd_huge_mask (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_MASK", false]], "mfd_huge_shift (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_SHIFT", false]], "mfd_hugetlb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGETLB", false]], "mh (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MH", false]], "mhmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MHMessage", false]], "microsecond (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.microsecond", false]], "microsecond (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.microsecond", false]], "mime": [[143, "index-0", false], [151, "index-0", false], [276, "index-0", false], [276, "index-1", false], [317, "index-0", false]], "mime.types": [[276, "index-2", false]], "mimeapplication (email.mime.application \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.application.MIMEApplication", false]], "mimeaudio (email.mime.audio \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.audio.MIMEAudio", false]], "mimebase (email.mime.base \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.base.MIMEBase", false]], "mimeimage (email.mime.image \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.image.MIMEImage", false]], "mimemessage (email.mime.message \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.message.MIMEMessage", false]], "mimemultipart (email.mime.multipart \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.multipart.MIMEMultipart", false]], "mimenonmultipart (email.mime.nonmultipart \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.nonmultipart.MIMENonMultipart", false]], "mimepart (email.message \u4e2d\u7684\u985e\u5225)": [[205, "email.message.MIMEPart", false]], "mimetext (email.mime.text \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.text.MIMEText", false]], "mimetypes": [[276, "module-mimetypes", false]], "mimetypes (mimetypes \u4e2d\u7684\u985e\u5225)": [[276, "mimetypes.MimeTypes", false]], "mimeversionheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.MIMEVersionHeader", false]], "min": [[344, "index-20", false]], "min (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.min", false]], "min (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.min", false]], "min (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.min", false]], "min (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.min", false]], "min (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min", false]], "min()": [[225, "min", false]], "min() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.min", false]], "min() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.min", false]], "min_10_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min_10_exp", false]], "min_emin (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MIN_EMIN", false]], "min_etiny (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MIN_ETINY", false]], "min_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min_exp", false]], "min_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.min_mag", false]], "min_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.min_mag", false]], "minequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.MINEQUAL", false]], "minimum_supported (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.MINIMUM_SUPPORTED", false]], "minimum_version (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.minimum_version", false]], "minmax() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.minmax", false]], "minor (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.minor", false]], "minor() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.minor", false]], "minus (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.MINUS", false]], "minus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.minus", false]], "minus\uff08\u6e1b\uff09": [[430, "index-60", false]], "minute (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.minute", false]], "minute (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.minute", false]], "minyear (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.MINYEAR", false]], "mirrored() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.mirrored", false]], "misc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.misc_header", false]], "missing (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.MISSING", false]], "missing (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.MISSING", false]], "missing (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.MISSING", false]], "missing_c_docstrings (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.MISSING_C_DOCSTRINGS", false]], "missing_compiler_executable() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.missing_compiler_executable", false]], "missingsectionheadererror": [[167, "configparser.MissingSectionHeaderError", false]], "mixerdev": [[295, "index-2", false]], "mkd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.mkd", false]], "mkdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.mkdir", false]], "mkdir() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.mkdir", false]], "mkdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mkdir", false]], "mkdtemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mkdtemp", false]], "mkfifo() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mkfifo", false]], "mknod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mknod", false]], "mksalt() (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.mksalt", false]], "mkstemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mkstemp", false]], "mktemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mktemp", false]], "mktime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.mktime", false]], "mktime_tz() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.mktime_tz", false]], "mlsd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.mlsd", false]], "mmap": [[278, "module-mmap", false]], "mmap (mmap \u4e2d\u7684\u985e\u5225)": [[278, "mmap.mmap", false]], "mmdf (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MMDF", false]], "mmdfmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MMDFMessage", false]], "mock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.Mock", false]], "mock_add_spec() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.mock_add_spec", false]], "mock_calls (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.mock_calls", false]], "mock_open() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.mock_open", false]], "mod (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Mod", false]], "mod() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.mod", false]], "mode (io.fileio \u7684\u5c6c\u6027)": [[258, "io.FileIO.mode", false]], "mode (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.mode", false]], "mode (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.mode", false]], "mode (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.mode", false]], "mode() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.mode", false]], "mode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.mode", false]], "modes\uff08\u6a21\u5f0f\uff09": [[225, "index-6", false]], "modf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.modf", false]], "modified() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.modified", false]], "modify() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Modify", false]], "modify() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.modify", false]], "modify() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.modify", false]], "modify() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.modify", false]], "modify() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.modify", false]], "module": [[112, "module-lib2to3", false], [113, "module-__future__", false], [114, "module-__main__", false], [115, "module-_thread", false], [116, "module-abc", false], [117, "module-aifc", false], [120, "module-argparse", false], [121, "module-array", false], [122, "module-ast", false], [123, "module-asyncio", false], [140, "module-atexit", false], [141, "module-audioop", false], [143, "module-base64", false], [144, "module-bdb", false], [146, "module-binascii", false], [147, "module-bisect", false], [148, "module-builtins", false], [149, "module-bz2", false], [150, "module-calendar", false], [151, "module-cgi", false], [152, "module-cgitb", false], [153, "module-chunk", false], [154, "module-cmath", false], [155, "module-cmd", false], [157, "module-code", false], [158, "module-codecs", false], [158, "module-encodings.idna", false], [158, "module-encodings.mbcs", false], [158, "module-encodings.utf_8_sig", false], [159, "module-codeop", false], [160, "module-collections", false], [161, "module-collections.abc", false], [162, "module-colorsys", false], [163, "module-compileall", false], [166, "module-concurrent.futures", false], [167, "module-configparser", false], [169, "module-contextlib", false], [170, "module-contextvars", false], [171, "module-copy", false], [172, "module-copyreg", false], [173, "module-crypt", false], [175, "module-csv", false], [176, "module-ctypes", false], [177, "module-curses", false], [177, "module-curses.textpad", false], [178, "module-curses.ascii", false], [179, "module-curses.panel", false], [181, "module-dataclasses", false], [183, "module-datetime", false], [184, "module-dbm", false], [184, "module-dbm.dumb", false], [184, "module-dbm.gnu", false], [184, "module-dbm.ndbm", false], [186, "module-decimal", false], [189, "module-tkinter.commondialog", false], [189, "module-tkinter.filedialog", false], [189, "module-tkinter.simpledialog", false], [190, "module-difflib", false], [191, "module-dis", false], [193, "module-doctest", false], [194, "module-email", false], [195, "module-email.charset", false], [197, "module-email.contentmanager", false], [198, "module-email.encoders", false], [199, "module-email.errors", false], [201, "module-email.generator", false], [202, "module-email.header", false], [203, "module-email.headerregistry", false], [204, "module-email.iterators", false], [205, "module-email.message", false], [206, "module-email.mime", false], [206, "module-email.mime.application", false], [206, "module-email.mime.audio", false], [206, "module-email.mime.base", false], [206, "module-email.mime.image", false], [206, "module-email.mime.message", false], [206, "module-email.mime.multipart", false], [206, "module-email.mime.nonmultipart", false], [206, "module-email.mime.text", false], [207, "module-email.parser", false], [208, "module-email.policy", false], [209, "module-email.utils", false], [210, "module-ensurepip", false], [211, "module-enum", false], [212, "module-errno", false], [214, "module-faulthandler", false], [215, "module-fcntl", false], [216, "module-filecmp", false], [218, "module-fileinput", false], [220, "module-fnmatch", false], [221, "module-fractions", false], [223, "module-ftplib", false], [226, "module-functools", false], [227, "module-gc", false], [228, "module-getopt", false], [229, "module-getpass", false], [230, "module-gettext", false], [231, "module-glob", false], [232, "module-graphlib", false], [233, "module-grp", false], [234, "module-gzip", false], [235, "module-hashlib", false], [236, "module-heapq", false], [237, "module-hmac", false], [238, "module-html", false], [239, "module-html.entities", false], [240, "module-html.parser", false], [241, "module-http", false], [242, "module-http.client", false], [243, "module-http.cookiejar", false], [244, "module-http.cookies", false], [245, "module-http.server", false], [247, "module-idlelib", false], [248, "module-imaplib", false], [249, "module-imghdr", false], [250, "module-importlib", false], [250, "module-importlib.abc", false], [250, "module-importlib.machinery", false], [250, "module-importlib.util", false], [251, "module-importlib.metadata", false], [252, "module-importlib.resources", false], [253, "module-importlib.resources.abc", false], [255, "module-inspect", false], [258, "module-io", false], [259, "module-ipaddress", false], [261, "module-itertools", false], [262, "module-json", false], [262, "module-json.tool", false], [263, "module-keyword", false], [265, "module-linecache", false], [266, "module-locale", false], [267, "module-logging", false], [268, "module-logging.config", false], [269, "module-logging.handlers", false], [270, "module-lzma", false], [271, "module-mailbox", false], [272, "module-mailcap", false], [274, "module-marshal", false], [275, "module-math", false], [276, "module-mimetypes", false], [278, "module-mmap", false], [279, "module-modulefinder", false], [281, "module-msilib", false], [282, "module-msvcrt", false], [283, "module-multiprocessing", false], [283, "module-multiprocessing.connection", false], [283, "module-multiprocessing.dummy", false], [283, "module-multiprocessing.managers", false], [283, "module-multiprocessing.pool", false], [283, "module-multiprocessing.sharedctypes", false], [284, "module-multiprocessing.shared_memory", false], [286, "module-netrc", false], [287, "module-nis", false], [288, "module-nntplib", false], [289, "module-numbers", false], [291, "module-operator", false], [292, "module-optparse", false], [293, "module-os", false], [294, "module-os.path", false], [295, "module-ossaudiodev", false], [296, "module-pathlib", false], [297, "module-pdb", false], [299, "module-pickle", false], [300, "module-pickletools", false], [301, "module-pipes", false], [302, "module-pkgutil", false], [303, "module-platform", false], [304, "module-plistlib", false], [305, "module-poplib", false], [306, "module-posix", false], [307, "module-pprint", false], [308, "module-cProfile", false], [308, "module-profile", false], [308, "module-pstats", false], [309, "module-pty", false], [310, "module-pwd", false], [311, "module-py_compile", false], [312, "module-pyclbr", false], [313, "module-pydoc", false], [314, "module-xml.parsers.expat", false], [314, "module-xml.parsers.expat.errors", false], [314, "module-xml.parsers.expat.model", false], [316, "module-queue", false], [317, "module-quopri", false], [318, "module-random", false], [319, "module-re", false], [320, "module-readline", false], [321, "module-reprlib", false], [322, "module-resource", false], [323, "module-rlcompleter", false], [324, "module-runpy", false], [325, "module-sched", false], [326, "module-secrets", false], [328, "module-select", false], [329, "module-selectors", false], [330, "module-shelve", false], [331, "module-shlex", false], [332, "module-shutil", false], [333, "module-signal", false], [334, "module-site", false], [334, "module-sitecustomize", false], [334, "module-usercustomize", false], [335, "module-smtplib", false], [336, "module-sndhdr", false], [337, "module-socket", false], [338, "module-socketserver", false], [339, "module-spwd", false], [340, "module-sqlite3", false], [341, "module-ssl", false], [342, "module-stat", false], [343, "module-statistics", false], [345, "module-string", false], [346, "module-stringprep", false], [347, "module-struct", false], [348, "module-subprocess", false], [349, "module-sunau", false], [351, "module-symtable", false], [352, "module-sys", false], [353, "module-sys.monitoring", false], [355, "module-sysconfig", false], [356, "module-syslog", false], [357, "module-tabnanny", false], [358, "module-tarfile", false], [359, "module-telnetlib", false], [360, "module-tempfile", false], [361, "module-termios", false], [362, "module-test", false], [362, "module-test.regrtest", false], [362, "module-test.support", false], [362, "module-test.support.bytecode_helper", false], [362, "module-test.support.import_helper", false], [362, "module-test.support.os_helper", false], [362, "module-test.support.script_helper", false], [362, "module-test.support.socket_helper", false], [362, "module-test.support.threading_helper", false], [362, "module-test.support.warnings_helper", false], [364, "module-textwrap", false], [365, "module-threading", false], [366, "module-time", false], [367, "module-timeit", false], [369, "module-_tkinter", false], [369, "module-tkinter", false], [370, "module-tkinter.colorchooser", false], [371, "module-tkinter.dnd", false], [372, "module-tkinter.font", false], [373, "module-tkinter.messagebox", false], [374, "module-tkinter.scrolledtext", false], [375, "module-tkinter.tix", false], [376, "module-tkinter.ttk", false], [377, "module-token", false], [378, "module-tokenize", false], [379, "module-tomllib", false], [380, "module-trace", false], [381, "module-traceback", false], [382, "module-tracemalloc", false], [383, "module-tty", false], [384, "module-turtle", false], [384, "module-turtledemo", false], [385, "module-types", false], [386, "module-typing", false], [387, "module-unicodedata", false], [388, "module-unittest", false], [389, "module-unittest.mock", false], [392, "module-urllib", false], [393, "module-urllib.error", false], [394, "module-urllib.parse", false], [395, "module-urllib.request", false], [395, "module-urllib.response", false], [396, "module-urllib.robotparser", false], [397, "module-uu", false], [398, "module-uuid", false], [399, "module-venv", false], [400, "module-warnings", false], [401, "module-wave", false], [402, "module-weakref", false], [403, "module-webbrowser", false], [405, "module-winreg", false], [406, "module-winsound", false], [407, "module-wsgiref", false], [407, "module-wsgiref.handlers", false], [407, "module-wsgiref.headers", false], [407, "module-wsgiref.simple_server", false], [407, "module-wsgiref.types", false], [407, "module-wsgiref.util", false], [407, "module-wsgiref.validate", false], [408, "module-xdrlib", false], [409, "module-xml", false], [410, "module-xml.dom", false], [411, "module-xml.dom.minidom", false], [412, "module-xml.dom.pulldom", false], [413, "module-xml.etree.ElementInclude", false], [413, "module-xml.etree.ElementTree", false], [414, "module-xml.sax", false], [415, "module-xml.sax.handler", false], [416, "module-xml.sax.xmlreader", false], [417, "module-xml.sax.saxutils", false], [419, "module-xmlrpc.client", false], [420, "module-xmlrpc.server", false], [421, "module-zipapp", false], [422, "module-zipfile", false], [423, "module-zipimport", false], [424, "module-zlib", false], [425, "module-zoneinfo", false]], "module (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Module", false]], "module (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.module", false]], "module (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.module", false]], "module browser\uff08\u6a21\u7d44\u700f\u89bd\u5668\uff09": [[247, "index-1", false]], "module spec": [[432, "index-8", false]], "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09": [[87, "term-module-spec", true]], "module_from_spec() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.module_from_spec", false]], "modulefinder": [[279, "module-modulefinder", false]], "modulefinder (modulefinder \u4e2d\u7684\u985e\u5225)": [[279, "modulefinder.ModuleFinder", false]], "moduleinfo (pkgutil \u4e2d\u7684\u985e\u5225)": [[302, "pkgutil.ModuleInfo", false]], "modulenotfounderror": [[213, "ModuleNotFoundError", false]], "modules (modulefinder.modulefinder \u7684\u5c6c\u6027)": [[279, "modulefinder.ModuleFinder.modules", false]], "modules (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.modules", false]], "modules_cleanup() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.modules_cleanup", false]], "modules_setup() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.modules_setup", false]], "modulespec (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.ModuleSpec", false]], "modules\uff08sys \u6a21\u7d44\u4e2d\uff09": [[31, "index-0", false], [33, "index-15", false]], "moduletype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.ModuleType", false]], "module\uff08\u6a21\u7d44\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false], [35, "index-18", false], [45, "index-0", false], [87, "term-module", true], [115, "index-2", false], [146, "index-0", false], [154, "index-1", false], [171, "index-0", false], [172, "index-0", false], [213, "index-5", false], [220, "index-1", false], [220, "index-3", false], [225, "index-13", false], [225, "index-8", false], [242, "index-1", false], [256, "index-1", false], [265, "index-0", false], [266, "index-0", false], [274, "index-0", false], [293, "index-23", false], [293, "index-30", false], [294, "index-2", false], [297, "index-1", false], [306, "index-0", false], [310, "index-0", false], [314, "index-1", false], [324, "index-0", false], [324, "index-4", false], [330, "index-0", false], [330, "index-1", false], [334, "index-0", false], [337, "index-14", false], [352, "index-21", false], [427, "index-11", false], [428, "index-23", false], [428, "index-24", false], [428, "index-32", false], [428, "index-4", false], [428, "index-44", false], [428, "index-45", false], [428, "index-55", false], [429, "index-10", false], [430, "index-40", false], [436, "index-34", false], [437, "index-2", false], [437, "index-3", false], [446, "index-1", false], [450, "index-0", false], [450, "index-4", false], [450, "index-7", false]], "modulo\uff08\u9918\u6578\uff09": [[430, "index-68", false]], "modulus (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.modulus", false]], "mon_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_1", false]], "mon_10 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_10", false]], "mon_11 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_11", false]], "mon_12 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_12", false]], "mon_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_2", false]], "mon_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_3", false]], "mon_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_4", false]], "mon_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_5", false]], "mon_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_6", false]], "mon_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_7", false]], "mon_8 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_8", false]], "mon_9 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_9", false]], "monday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MONDAY", false]], "monotonic() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.monotonic", false]], "monotonic_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.monotonic_ns", false]], "month": [[150, "cmdoption-calendar-arg-month", false]], "month (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Month", false]], "month (calendar.illegalmontherror \u7684\u5c6c\u6027)": [[150, "calendar.IllegalMonthError.month", false]], "month (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.month", false]], "month (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.month", false]], "month() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month", false]], "month_abbr (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month_abbr", false]], "month_name (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month_name", false]], "monthcalendar() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.monthcalendar", false]], "monthdatescalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdatescalendar", false]], "monthdays2calendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdays2calendar", false]], "monthdayscalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdayscalendar", false]], "monthrange() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.monthrange", false]], "morsel (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.Morsel", false]], "most_common() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.most_common", false]], "mouseinterval() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.mouseinterval", false]], "mousemask() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.mousemask", false]], "move() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.move", false]], "move() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.move", false]], "move() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.move", false]], "move() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.move", false]], "move() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.move", false]], "move_to_end() (collections.ordereddict \u7684\u65b9\u6cd5)": [[160, "collections.OrderedDict.move_to_end", false]], "mozillacookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.MozillaCookieJar", false]], "mro": [[87, "term-MRO", true]], "mro() (class \u7684\u65b9\u6cd5)": [[344, "class.mro", false]], "msg (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.msg", false]], "msg (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.msg", false]], "msg (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.msg", false]], "msg (re.error \u7684\u5c6c\u6027)": [[319, "re.error.msg", false]], "msg (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.msg", false]], "msg() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.msg", false]], "msi": [[281, "index-0", false]], "msilib": [[281, "module-msilib", false]], "msvcrt": [[282, "module-msvcrt", false]], "mt_interact() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.mt_interact", false]], "mtime (gzip.gzipfile \u7684\u5c6c\u6027)": [[234, "gzip.GzipFile.mtime", false]], "mtime (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.mtime", false]], "mtime() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.mtime", false]], "mul() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.mul", false]], "mul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.mul", false]], "mult (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Mult", false]], "multicall (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.MultiCall", false]], "multiline (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.MULTILINE", false]], "multiloopchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.MultiLoopChildWatcher", false]], "multimode() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.multimode", false]], "multipartconversionerror": [[199, "email.errors.MultipartConversionError", false]], "multiplication\uff08\u4e58\uff09": [[430, "index-65", false]], "multiply() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.multiply", false]], "multiprocessing": [[283, "module-multiprocessing", false]], "multiprocessing.connection": [[283, "module-multiprocessing.connection", false]], "multiprocessing.dummy": [[283, "module-multiprocessing.dummy", false]], "multiprocessing.manager()": [[283, "multiprocessing.Manager", false]], "multiprocessing.managers": [[283, "module-multiprocessing.managers", false]], "multiprocessing.pool": [[283, "module-multiprocessing.pool", false]], "multiprocessing.shared_memory": [[284, "module-multiprocessing.shared_memory", false]], "multiprocessing.sharedctypes": [[283, "module-multiprocessing.sharedctypes", false]], "mutable object\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": [[428, "index-1", false]], "mutable sequence\uff08\u53ef\u8b8a\u5e8f\u5217\uff09": [[344, "index-21", false], [428, "index-22", false]], "mutablemapping (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableMapping", false]], "mutablemapping (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableMapping", false]], "mutablesequence (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableSequence", false]], "mutablesequence (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableSequence", false]], "mutableset (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableSet", false]], "mutableset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableSet", false]], "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": [[87, "term-mutable", true]], "mutable\uff08\u53ef\u8b8a\u7684\uff09": [[428, "index-22", false], [436, "index-4", false], [436, "index-9", false]], "mutable\uff08\u53ef\u8b8a\uff09": [[344, "index-23", false]], "mvderwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.mvderwin", false]], "mvwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.mvwin", false]], "myrights() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.myrights", false]], "n_tokens (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.N_TOKENS", false]], "n_waiting (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.n_waiting", false]], "n_waiting (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.n_waiting", false]], "nak (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NAK", false]], "name (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Name", false]], "name (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.name", false]], "name (contextvars.contextvar \u7684\u5c6c\u6027)": [[170, "contextvars.ContextVar.name", false]], "name (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.name", false]], "name (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.name", false]], "name (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum.name", false]], "name (gzip.gzipfile \u7684\u5c6c\u6027)": [[234, "gzip.GzipFile.name", false]], "name (hashlib.hash \u7684\u5c6c\u6027)": [[235, "hashlib.hash.name", false]], "name (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.name", false]], "name (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.name", false]], "name (importerror \u7684\u5c6c\u6027)": [[213, "ImportError.name", false]], "name (importlib.abc.fileloader \u7684\u5c6c\u6027)": [[250, "importlib.abc.FileLoader.name", false]], "name (importlib.abc.traversable \u7684\u5c6c\u6027)": [[250, "importlib.abc.Traversable.name", false]], "name (importlib.machinery.extensionfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ExtensionFileLoader.name", false]], "name (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.name", false]], "name (importlib.machinery.sourcefileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourceFileLoader.name", false]], "name (importlib.machinery.sourcelessfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourcelessFileLoader.name", false]], "name (importlib.resources.abc.traversable \u7684\u5c6c\u6027)": [[253, "importlib.resources.abc.Traversable.name", false]], "name (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.name", false]], "name (io.fileio \u7684\u5c6c\u6027)": [[258, "io.FileIO.name", false]], "name (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.name", false]], "name (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.name", false]], "name (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.name", false]], "name (os.direntry \u7684\u5c6c\u6027)": [[293, "os.DirEntry.name", false]], "name (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.name", false]], "name (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.name", false]], "name (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.name", false]], "name (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.name", false]], "name (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.name", false]], "name (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.name", false]], "name (tempfile.temporarydirectory \u7684\u5c6c\u6027)": [[360, "tempfile.TemporaryDirectory.name", false]], "name (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.name", false]], "name (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.name", false]], "name (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.name", false]], "name (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.name", false]], "name (zipfile.path \u7684\u5c6c\u6027)": [[422, "zipfile.Path.name", false]], "name (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.name", false]], "name (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NAME", false]], "name (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.name", false]], "name() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.name", false]], "name2codepoint (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.name2codepoint", false]], "named expression\uff08\u9644\u540d\u904b\u7b97\u5f0f\uff09": [[430, "index-86", false]], "named shared memory\uff08\u9644\u540d\u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09": [[87, "term-named-tuple", true]], "named_flags (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.NAMED_FLAGS", false]], "namedexpr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NamedExpr", false]], "namedtemporaryfile() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.NamedTemporaryFile", false]], "namedtuple (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.NamedTuple", false]], "namedtuple() (\u65bc collections \u6a21\u7d44\u4e2d)": [[160, "collections.namedtuple", false]], "nameerror": [[213, "NameError", false], [430, "index-4", false]], "nameerror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[429, "index-9", false]], "namelist() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.namelist", false]], "nameprep() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.nameprep", false]], "namer (logging.handlers.baserotatinghandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.BaseRotatingHandler.namer", false]], "namereplace": [[158, "index-3", false]], "namereplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.namereplace_errors", false]], "names": [[430, "index-5", false]], "names() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.names", false]], "namespace (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.Namespace", false]], "namespace (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.Namespace", false]], "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09": [[87, "term-namespace-package", true]], "namespace() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.namespace", false]], "namespace() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Namespace", false]], "namespace_dns (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_DNS", false]], "namespace_oid (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_OID", false]], "namespace_url (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_URL", false]], "namespace_x500 (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_X500", false]], "namespaceerr": [[410, "xml.dom.NamespaceErr", false]], "namespaceloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.NamespaceLoader", false]], "namespaceuri (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.namespaceURI", false]], "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09": [[87, "term-namespace", true], [428, "index-35", false], [428, "index-45", false], [429, "index-3", false], [432, "index-5", false]], "nametofont() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.nametofont", false]], "name\uff08\u540d\u7a31\uff09": [[427, "index-28", false], [427, "index-42", false], [429, "index-4", false], [430, "index-3", false], [430, "index-5", false], [435, "index-10", false], [436, "index-22", false], [436, "index-34", false], [436, "index-36", false], [436, "index-4", false], [436, "index-43", false], [440, "index-1", false]], "nan": [[225, "index-3", false]], "nan (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.nan", false]], "nan (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.nan", false]], "nan (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.nan", false]], "nanj (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.nanj", false]], "nannynag": [[357, "tabnanny.NannyNag", false]], "napms() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.napms", false]], "nargs (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.nargs", false]], "native_id (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.native_id", false]], "nbytes (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.nbytes", false]], "ncurses_version (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ncurses_version", false]], "nd (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.ND", false]], "ndiff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.ndiff", false]], "ndim (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.ndim", false]], "ne (2to3 fixer)": [[112, "to3fixer-ne", false]], "ne() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ne", false]], "needs_input (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.needs_input", false]], "needs_input (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.needs_input", false]], "neg() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.neg", false]], "negation\uff08\u5426\u5b9a\uff09": [[430, "index-60", false]], "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09": [[87, "term-nested-scope", true]], "netmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.netmask", false]], "netmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.netmask", false]], "netmaskvalueerror": [[259, "ipaddress.NetmaskValueError", false]], "netrc": [[286, "module-netrc", false]], "netrc (netrc \u4e2d\u7684\u985e\u5225)": [[286, "netrc.netrc", false]], "netrcparseerror": [[286, "netrc.NetrcParseError", false]], "netscape (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.netscape", false]], "network (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.network", false]], "network (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.network", false]], "network news transfer protocol\uff08\u7db2\u8def\u65b0\u805e\u50b3\u8f38\u5354\u5b9a\uff09": [[288, "index-0", false]], "network_address (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.network_address", false]], "network_address (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.network_address", false]], "never (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Never", false]], "never_eq (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.NEVER_EQ", false]], "new() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.new", false]], "new() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.new", false]], "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09": [[87, "term-new-style-class", true]], "new_child() (collections.chainmap \u7684\u65b9\u6cd5)": [[160, "collections.ChainMap.new_child", false]], "new_class() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.new_class", false]], "new_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.new_event_loop", false]], "new_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.new_event_loop", false]], "new_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.new_panel", false]], "newfunc (c type)": [[63, "c.newfunc", false]], "newgroups() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.newgroups", false]], "newline (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NEWLINE", false]], "newline token\uff08\u63db\u884c\u6a19\u8a8c\uff09": [[427, "index-2", false], [435, "index-3", false]], "newlines (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.newlines", false]], "newnews() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.newnews", false]], "newpad() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.newpad", false]], "newtype (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.NewType", false]], "newwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.newwin", false]], "next (2to3 fixer)": [[112, "to3fixer-next", false]], "next (pdb command)": [[297, "pdbcommand-next", false]], "next()": [[225, "next", false]], "next() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.next", false]], "next() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.next", false]], "next() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.next", false]], "next_minus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_minus", false]], "next_minus() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_minus", false]], "next_plus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_plus", false]], "next_plus() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_plus", false]], "next_toward() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_toward", false]], "next_toward() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_toward", false]], "nextafter() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.nextafter", false]], "nextfile() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.nextfile", false]], "nextkey() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.nextkey", false]], "nextsibling (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nextSibling", false]], "ngettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.ngettext", false]], "ngettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.ngettext", false]], "ngettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.ngettext", false]], "nice() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.nice", false]], "nis": [[287, "module-nis", false]], "nl (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NL", false]], "nl (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NL", false]], "nl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nl", false]], "nl_langinfo() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.nl_langinfo", false]], "nlargest() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.nlargest", false]], "nlst() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.nlst", false]], "nntp": [[288, "index-0", false]], "nntp (nntplib \u4e2d\u7684\u985e\u5225)": [[288, "nntplib.NNTP", false]], "nntp_implementation (nntplib.nntp \u7684\u5c6c\u6027)": [[288, "nntplib.NNTP.nntp_implementation", false]], "nntp_ssl (nntplib \u4e2d\u7684\u985e\u5225)": [[288, "nntplib.NNTP_SSL", false]], "nntp_version (nntplib.nntp \u7684\u5c6c\u6027)": [[288, "nntplib.NNTP.nntp_version", false]], "nntpdataerror": [[288, "nntplib.NNTPDataError", false]], "nntperror": [[288, "nntplib.NNTPError", false]], "nntplib": [[288, "module-nntplib", false]], "nntppermanenterror": [[288, "nntplib.NNTPPermanentError", false]], "nntpprotocolerror": [[288, "nntplib.NNTPProtocolError", false]], "nntpreplyerror": [[288, "nntplib.NNTPReplyError", false]], "nntptemporaryerror": [[288, "nntplib.NNTPTemporaryError", false]], "no (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.NO", false]], "no_cache() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.no_cache", false]], "no_events (monitoring event)": [[353, "monitoring-event-NO_EVENTS", false]], "no_proxy": [[395, "index-3", false]], "no_site (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.no_site", false]], "no_tracing() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.no_tracing", false]], "no_type_check() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.no_type_check", false]], "no_type_check_decorator() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.no_type_check_decorator", false]], "no_user_site (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.no_user_site", false]], "nocbreak() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nocbreak", false]], "nodataallowederr": [[410, "xml.dom.NoDataAllowedErr", false]], "node (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.node", false]], "node() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.node", false]], "nodelay() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.nodelay", false]], "nodename (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeName", false]], "nodetransformer (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NodeTransformer", false]], "nodetype (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeType", false]], "nodevalue (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeValue", false]], "nodevisitor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NodeVisitor", false]], "noecho() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noecho", false]], "noexpr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.NOEXPR", false]], "noflag (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.NOFLAG", false]], "nomodificationallowederr": [[410, "xml.dom.NoModificationAllowedErr", false]], "nonblock() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.nonblock", false]], "noncallablemagicmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.NonCallableMagicMock", false]], "noncallablemock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.NonCallableMock", false]], "none": [[46, "index-0", false], [428, "index-6", false], [436, "index-3", false]], "none (\u5167\u5efa\u8b8a\u6578)": [[168, "None", false]], "nonetype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.NoneType", false]], "none\uff08\u5167\u5efa\u7269\u4ef6\uff09": [[344, "index-3", false]], "nonl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nonl", false]], "nonlocal": [[436, "index-45", false]], "nonlocal (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Nonlocal", false]], "nonmember() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.nonmember", false]], "nonzero (2to3 fixer)": [[112, "to3fixer-nonzero", false]], "noop() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.noop", false]], "noop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.noop", false]], "nooptionerror": [[167, "configparser.NoOptionError", false]], "nop (opcode)": [[191, "opcode-NOP", false]], "noqiflush() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noqiflush", false]], "noraw() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noraw", false]], "noreturn (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.NoReturn", false]], "normal (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.NORMAL", false]], "normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.NORMAL_PRIORITY_CLASS", false]], "normaldist (statistics \u4e2d\u7684\u985e\u5225)": [[343, "statistics.NormalDist", false]], "normalize() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.normalize", false]], "normalize() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.normalize", false]], "normalize() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.normalize", false]], "normalize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.normalize", false]], "normalize() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.normalize", false]], "normalize_whitespace (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.NORMALIZE_WHITESPACE", false]], "normalvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.normalvariate", false]], "normcase() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.normcase", false]], "normpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.normpath", false]], "nosectionerror": [[167, "configparser.NoSectionError", false]], "nosuchmailboxerror": [[271, "mailbox.NoSuchMailboxError", false]], "not": [[344, "index-6", false], [430, "index-83", false]], "not (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Not", false]], "not in": [[344, "index-10", false], [344, "index-20", false], [430, "index-80", false]], "not_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.not_", false]], "notadirectoryerror": [[213, "NotADirectoryError", false]], "notationdecl() (xml.sax.handler.dtdhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.DTDHandler.notationDecl", false]], "notationdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.NotationDeclHandler", false]], "notations (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.notations", false]], "notation\uff08\u6a19\u8a18\u6cd5\uff09": [[434, "index-0", false]], "notconnected": [[242, "http.client.NotConnected", false]], "notebook (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.NoteBook", false]], "notebook (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Notebook", false]], "notemptyerror": [[271, "mailbox.NotEmptyError", false]], "noteq (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NotEq", false]], "notequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NOTEQUAL", false]], "notfounderr": [[410, "xml.dom.NotFoundErr", false]], "notify() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.notify", false]], "notify() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.notify", false]], "notify_all() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.notify_all", false]], "notify_all() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.notify_all", false]], "notimeout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.notimeout", false]], "notimplemented": [[428, "index-7", false]], "notimplemented (\u5167\u5efa\u8b8a\u6578)": [[168, "NotImplemented", false]], "notimplementederror": [[213, "NotImplementedError", false]], "notimplementedtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.NotImplementedType", false]], "notin (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NotIn", false]], "notrequired (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.NotRequired", false]], "notset (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.NOTSET", false]], "notstandalonehandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.NotStandaloneHandler", false]], "notsupportederr": [[410, "xml.dom.NotSupportedErr", false]], "notsupportederror": [[340, "sqlite3.NotSupportedError", false]], "noutrefresh() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.noutrefresh", false]], "november (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.NOVEMBER", false]], "now() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.now", false]], "npgettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.npgettext", false]], "npgettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.npgettext", false]], "npgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.npgettext", false]], "nsig (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.NSIG", false]], "nsmallest() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.nsmallest", false]], "nt_offset (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NT_OFFSET", false]], "nteventloghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.NTEventLogHandler", false]], "ntohl() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ntohl", false]], "ntohs() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ntohs", false]], "ntransfercmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.ntransfercmd", false]], "nul (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NUL", false]], "null": [[436, "index-20", false]], "nullcontext() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.nullcontext", false]], "nullhandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.NullHandler", false]], "nulltranslations (gettext \u4e2d\u7684\u985e\u5225)": [[230, "gettext.NullTranslations", false]], "num_addresses (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.num_addresses", false]], "num_addresses (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.num_addresses", false]], "num_tickets (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.num_tickets", false]], "number (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Number", false]], "number (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NUMBER", false]], "number_class() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.number_class", false]], "number_class() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.number_class", false]], "numbers": [[289, "module-numbers", false]], "number\uff08\u6578\u5b57\uff09": [[428, "index-13", false], [428, "index-14", false], [435, "index-27", false]], "numerator (fractions.fraction \u7684\u5c6c\u6027)": [[221, "fractions.Fraction.numerator", false]], "numerator (numbers.rational \u7684\u5c6c\u6027)": [[289, "numbers.Rational.numerator", false]], "numeric literal\uff08\u6578\u503c\u5e38\u6578\uff09": [[435, "index-27", false]], "numeric() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.numeric", false]], "numeric\uff08\u6578\u503c\uff09": [[16, "index-0", false], [344, "index-11", false], [344, "index-12", false], [344, "index-14", false], [344, "index-15", false], [344, "index-8", false], [428, "index-53", false], [428, "index-9", false]], "numinput() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.numinput", false]], "numliterals (2to3 fixer)": [[112, "to3fixer-numliterals", false]], "o_append (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_APPEND", false]], "o_async (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_ASYNC", false]], "o_binary (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_BINARY", false]], "o_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_CLOEXEC", false]], "o_creat (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_CREAT", false]], "o_direct (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DIRECT", false]], "o_directory (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DIRECTORY", false]], "o_dsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DSYNC", false]], "o_evtonly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EVTONLY", false]], "o_excl (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EXCL", false]], "o_exlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EXLOCK", false]], "o_fsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_FSYNC", false]], "o_ndelay (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NDELAY", false]], "o_noatime (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOATIME", false]], "o_noctty (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOCTTY", false]], "o_nofollow (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOFOLLOW", false]], "o_nofollow_any (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOFOLLOW_ANY", false]], "o_noinherit (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOINHERIT", false]], "o_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NONBLOCK", false]], "o_path (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_PATH", false]], "o_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RANDOM", false]], "o_rdonly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RDONLY", false]], "o_rdwr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RDWR", false]], "o_rsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RSYNC", false]], "o_sequential (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SEQUENTIAL", false]], "o_shlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SHLOCK", false]], "o_short_lived (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SHORT_LIVED", false]], "o_symlink (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SYMLINK", false]], "o_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SYNC", false]], "o_temporary (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TEMPORARY", false]], "o_text (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TEXT", false]], "o_tmpfile (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TMPFILE", false]], "o_trunc (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TRUNC", false]], "o_wronly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_WRONLY", false]], "obj (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.obj", false]], "object (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.object", false]], "object (\u5167\u5efa\u985e\u5225)": [[225, "object", false]], "object representation\uff08\u7269\u4ef6\u8868\u793a\uff09": [[75, "index-3", false]], "object.__match_args__ (\u5167\u5efa\u8b8a\u6578)": [[428, "object.__match_args__", false]], "object.__slots__ (\u5167\u5efa\u8b8a\u6578)": [[428, "object.__slots__", false]], "objects\uff08\u7269\u4ef6\uff09": [[299, "index-0", false], [344, "index-8", false]], "object\uff08\u6a21\u7d44\uff09": [[45, "index-0", false]], "object\uff08\u7269\u4ef6\uff09": [[8, "index-0", false], [9, "index-0", false], [11, "index-0", false], [13, "index-0", false], [15, "index-0", false], [16, "index-0", false], [16, "index-1", false], [16, "index-2", false], [22, "index-0", false], [24, "index-0", false], [25, "index-0", false], [27, "index-0", false], [35, "index-3", false], [38, "index-0", false], [39, "index-0", false], [43, "index-0", false], [44, "index-0", false], [44, "index-1", false], [46, "index-0", false], [55, "index-0", false], [60, "index-0", false], [61, "index-0", false], [75, "index-0", false], [87, "term-object", true], [225, "index-12", false], [274, "index-1", false], [337, "index-0", false], [344, "index-11", false], [344, "index-19", false], [344, "index-22", false], [344, "index-23", false], [344, "index-25", false], [344, "index-26", false], [344, "index-27", false], [344, "index-28", false], [344, "index-29", false], [344, "index-40", false], [344, "index-41", false], [344, "index-42", false], [344, "index-51", false], [344, "index-52", false], [344, "index-56", false], [344, "index-59", false], [344, "index-61", false], [344, "index-62", false], [344, "index-8", false], [352, "index-8", false], [381, "index-0", false], [427, "index-11", false], [427, "index-28", false], [427, "index-42", false], [427, "index-6", false], [428, "index-0", false], [428, "index-10", false], [428, "index-12", false], [428, "index-13", false], [428, "index-14", false], [428, "index-15", false], [428, "index-17", false], [428, "index-20", false], [428, "index-22", false], [428, "index-25", false], [428, "index-27", false], [428, "index-28", false], [428, "index-29", false], [428, "index-30", false], [428, "index-31", false], [428, "index-33", false], [428, "index-34", false], [428, "index-37", false], [428, "index-42", false], [428, "index-43", false], [428, "index-44", false], [428, "index-47", false], [428, "index-51", false], [428, "index-53", false], [428, "index-57", false], [428, "index-59", false], [428, "index-6", false], [428, "index-63", false], [428, "index-66", false], [428, "index-7", false], [428, "index-8", false], [428, "index-80", false], [428, "index-9", false], [428, "index-99", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false], [430, "index-20", false], [430, "index-22", false], [430, "index-31", false], [430, "index-35", false], [430, "index-40", false], [430, "index-42", false], [430, "index-45", false], [430, "index-47", false], [430, "index-52", false], [430, "index-53", false], [430, "index-54", false], [430, "index-55", false], [430, "index-7", false], [430, "index-80", false], [430, "index-92", false], [436, "index-10", false], [436, "index-11", false], [436, "index-28", false], [436, "index-3", false], [436, "index-4", false], [436, "index-9", false], [440, "index-0", false], [446, "index-0", false]], "objobjargproc (c type)": [[63, "c.objobjargproc", false]], "objobjproc (c type)": [[63, "c.objobjproc", false]], "obufcount() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.obufcount", false]], "obuffree() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.obuffree", false]], "oct()": [[225, "oct", false]], "octal literal\uff08\u516b\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "octal\uff08\u516b\u9032\u4f4d\uff09": [[344, "index-12", false]], "octdigits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.octdigits", false]], "october (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.OCTOBER", false]], "offset (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.offset", false]], "offset (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.offset", false]], "offset (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.offset", false]], "offset (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.offset", false]], "offset_data (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.offset_data", false]], "ok (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.OK", false]], "ok (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.OK", false]], "ok_command() (tkinter.filedialog.loadfiledialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.LoadFileDialog.ok_command", false]], "ok_command() (tkinter.filedialog.savefiledialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.SaveFileDialog.ok_command", false]], "ok_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.ok_event", false]], "okcancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.OKCANCEL", false]], "old_value (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.old_value", false]], "oledll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.OleDLL", false]], "on_motion() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.on_motion", false]], "on_release() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.on_release", false]], "onclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onclick", false]], "ondrag() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ondrag", false]], "onecmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.onecmd", false]], "onkey() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkey", false]], "onkeypress() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkeypress", false]], "onkeyrelease() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkeyrelease", false]], "online\uff08\u7dda\u4e0a\uff09": [[313, "index-0", false]], "onrelease() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onrelease", false]], "onscreenclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onscreenclick", false]], "ontimer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ontimer", false]], "op (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.OP", false]], "op_all (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ALL", false]], "op_cipher_server_preference (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_CIPHER_SERVER_PREFERENCE", false]], "op_enable_ktls (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ENABLE_KTLS", false]], "op_enable_middlebox_compat (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ENABLE_MIDDLEBOX_COMPAT", false]], "op_ignore_unexpected_eof (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_IGNORE_UNEXPECTED_EOF", false]], "op_legacy_server_connect (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_LEGACY_SERVER_CONNECT", false]], "op_no_compression (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_COMPRESSION", false]], "op_no_renegotiation (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_RENEGOTIATION", false]], "op_no_sslv2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_SSLv2", false]], "op_no_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_SSLv3", false]], "op_no_ticket (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TICKET", false]], "op_no_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1", false]], "op_no_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_1", false]], "op_no_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_2", false]], "op_no_tlsv1_3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_3", false]], "op_single_dh_use (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_SINGLE_DH_USE", false]], "op_single_ecdh_use (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_SINGLE_ECDH_USE", false]], "open": [[428, "index-55", false], [446, "index-0", false]], "open (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.Open", false]], "open()": [[225, "open", false]], "open() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.open", false]], "open() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.open", false]], "open() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.open", false]], "open() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.open", false]], "open() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.open", false]], "open() (tarfile.tarfile \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarFile.open", false]], "open() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.open", false]], "open() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.open", false]], "open() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.open", false]], "open() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open", false]], "open() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.open", false]], "open() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.open", false]], "open() (\u65bc aifc \u6a21\u7d44\u4e2d)": [[117, "aifc.open", false]], "open() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.open", false]], "open() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.open", false]], "open() (\u65bc dbm \u6a21\u7d44\u4e2d)": [[184, "dbm.open", false]], "open() (\u65bc dbm.dumb \u6a21\u7d44\u4e2d)": [[184, "dbm.dumb.open", false]], "open() (\u65bc dbm.gnu \u6a21\u7d44\u4e2d)": [[184, "dbm.gnu.open", false]], "open() (\u65bc dbm.ndbm \u6a21\u7d44\u4e2d)": [[184, "dbm.ndbm.open", false]], "open() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.open", false]], "open() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.open", false]], "open() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.open", false]], "open() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.open", false]], "open() (\u65bc ossaudiodev \u6a21\u7d44\u4e2d)": [[295, "ossaudiodev.open", false]], "open() (\u65bc shelve \u6a21\u7d44\u4e2d)": [[330, "shelve.open", false]], "open() (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.open", false]], "open() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.open", false]], "open() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.open", false]], "open() (\u65bc wave \u6a21\u7d44\u4e2d)": [[401, "wave.open", false]], "open() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open", false]], "open() \u5167\u5efa\u51fd\u5f0f": [[225, "index-5", false], [225, "index-7", false]], "open_binary() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.open_binary", false]], "open_code() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.open_code", false]], "open_connection() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.open_connection", false]], "open_flags (\u65bc dbm.gnu \u6a21\u7d44\u4e2d)": [[184, "dbm.gnu.open_flags", false]], "open_new() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open_new", false]], "open_new() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open_new", false]], "open_new_tab() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open_new_tab", false]], "open_new_tab() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open_new_tab", false]], "open_osfhandle() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.open_osfhandle", false]], "open_resource() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.open_resource", false]], "open_resource() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.open_resource", false]], "open_text() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.open_text", false]], "open_unix_connection() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.open_unix_connection", false]], "open_unknown() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.open_unknown", false]], "open_urlresource() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.open_urlresource", false]], "opendatabase() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.OpenDatabase", false]], "openerdirector (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.OpenerDirector", false]], "openkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.OpenKey", false]], "openkeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.OpenKeyEx", false]], "openlog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.openlog", false]], "openmixer() (\u65bc ossaudiodev \u6a21\u7d44\u4e2d)": [[295, "ossaudiodev.openmixer", false]], "openpty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.openpty", false]], "openpty() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.openpty", false]], "openssl": [[235, "index-2", false], [341, "index-0", false]], "openssl_version (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION", false]], "openssl_version_info (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION_INFO", false]], "openssl_version_number (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION_NUMBER", false]], "openview() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.OpenView", false]], "operationalerror": [[340, "sqlite3.OperationalError", false]], "operations on\uff08\u64cd\u4f5c\u65bc\uff09": [[344, "index-14", false], [344, "index-16", false], [344, "index-20", false], [344, "index-24", false], [344, "index-52", false]], "operations\uff08\u64cd\u4f5c\uff09": [[294, "index-0", false], [296, "index-0", false], [344, "index-1", false], [344, "index-16", false], [344, "index-5", false]], "operation\uff08\u64cd\u4f5c\uff09": [[344, "index-20", false], [430, "index-58", false], [430, "index-59", false], [430, "index-64", false], [430, "index-71", false], [430, "index-73", false], [430, "index-82", false], [436, "index-20", false]], "operator": [[291, "module-operator", false]], "operator (2to3 fixer)": [[112, "to3fixer-operator", false]], "operators\uff08\u904b\u7b97\u5b50\uff09": [[435, "index-31", false]], "operator\uff08\u904b\u7b97\u5b50\uff09": [[344, "index-10", false], [344, "index-13", false], [344, "index-16", false], [344, "index-20", false], [344, "index-4", false], [344, "index-6", false], [344, "index-7", false], [428, "index-71", false], [430, "index-58", false], [430, "index-60", false], [430, "index-61", false], [430, "index-62", false], [430, "index-65", false], [430, "index-66", false], [430, "index-67", false], [430, "index-68", false], [430, "index-69", false], [430, "index-70", false], [430, "index-71", false], [430, "index-74", false], [430, "index-75", false], [430, "index-76", false], [430, "index-77", false], [430, "index-80", false], [430, "index-81", false], [430, "index-83", false], [430, "index-84", false], [430, "index-85", false], [430, "index-88", false], [430, "index-97", false]], "opmap (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.opmap", false]], "opname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.opname", false]], "opt": [[456, "envvar-OPT", false], [456, "index-9", false]], "optim_args_from_interpreter_flags() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.optim_args_from_interpreter_flags", false]], "optimize (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.optimize", false]], "optimize() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.optimize", false]], "optimized_bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES", false]], "option (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.Option", false]], "optional (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Optional", false]], "optionconflicterror": [[292, "optparse.OptionConflictError", false]], "optionerror": [[292, "optparse.OptionError", false]], "optiongroup (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.OptionGroup", false]], "optionmenu (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.OptionMenu", false]], "optionparser (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.OptionParser", false]], "options (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.options", false]], "options (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.Options", false]], "options (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.options", false]], "options() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.options", false]], "optionvalueerror": [[292, "optparse.OptionValueError", false]], "optionxform() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.optionxform", false]], "optparse": [[292, "module-optparse", false]], "or": [[344, "index-4", false], [344, "index-6", false], [430, "index-75", false], [430, "index-76", false], [430, "index-85", false]], "or (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Or", false]], "or_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.or_", false]], "ord": [[428, "index-19", false]], "ord()": [[225, "ord", false]], "ordered_attributes (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ordered_attributes", false]], "ordereddict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.OrderedDict", false]], "ordereddict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.OrderedDict", false]], "order\uff08\u9806\u5e8f\uff09": [[430, "index-96", false]], "orig_argv (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.orig_argv", false]], "origin (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.origin", false]], "origin_req_host (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.origin_req_host", false]], "origin_server (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.origin_server", false]], "os": [[293, "module-os", false], [306, "index-0", false]], "os.path": [[294, "module-os.path", false]], "os_environ (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.os_environ", false]], "oserror": [[213, "OSError", false]], "ossaudiodev": [[295, "module-ossaudiodev", false]], "ossaudioerror": [[295, "ossaudiodev.OSSAudioError", false]], "outfile": [[262, "cmdoption-json.tool-arg-outfile", false]], "output": [[436, "index-3", false]], "output (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.output", false]], "output (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.output", false]], "output (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.output", false]], "output() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.output", false]], "output() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.output", false]], "output_charset (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.output_charset", false]], "output_codec (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.output_codec", false]], "output_difference() (doctest.outputchecker \u7684\u65b9\u6cd5)": [[193, "doctest.OutputChecker.output_difference", false]], "outputchecker (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.OutputChecker", false]], "outputstring() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.OutputString", false]], "outsidedestinationerror": [[358, "tarfile.OutsideDestinationError", false]], "over mutable sequence\uff08\u65bc\u53ef\u8b8a\u5e8f\u5217\uff09": [[344, "index-21", false]], "over() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.over", false]], "overflow (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Overflow", false]], "overflowerror": [[213, "OverflowError", false]], "overflowerror\uff08\u5185\u5efa\u4f8b\u5916\uff09": [[39, "index-1", false], [39, "index-2", false], [39, "index-3", false], [39, "index-4", false], [39, "index-5", false], [39, "index-6", false]], "overlap() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.overlap", false]], "overlaps() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.overlaps", false]], "overlaps() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.overlaps", false]], "overlay() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.overlay", false]], "overload() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.overload", false]], "overloading\uff08\u591a\u8f09\uff09": [[428, "index-71", false]], "override() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.override", false]], "overwrite() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.overwrite", false]], "owner() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.owner", false]], "p (pdb command)": [[297, "pdbcommand-p", false]], "p_all (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_ALL", false]], "p_detach (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_DETACH", false]], "p_nowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_NOWAIT", false]], "p_nowaito (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_NOWAITO", false]], "p_overlay (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_OVERLAY", false]], "p_pgid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PGID", false]], "p_pid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PID", false]], "p_pidfd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PIDFD", false]], "p_wait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_WAIT", false]], "pack() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.pack", false]], "pack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.pack", false]], "pack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.pack", false]], "pack_array() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_array", false]], "pack_bytes() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_bytes", false]], "pack_double() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_double", false]], "pack_farray() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_farray", false]], "pack_float() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_float", false]], "pack_fopaque() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_fopaque", false]], "pack_fstring() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_fstring", false]], "pack_into() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.pack_into", false]], "pack_into() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.pack_into", false]], "pack_list() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_list", false]], "pack_opaque() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_opaque", false]], "pack_string() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_string", false]], "package (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.Package", false]], "package variable\uff08\u5957\u4ef6\u8b8a\u6578\uff09": [[31, "index-0", false]], "package\uff08\u5957\u4ef6\uff09": [[87, "term-package", true], [334, "index-4", false], [432, "index-3", false], [432, "index-4", false], [432, "index-5", false]], "packed (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.packed", false]], "packed (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.packed", false]], "packer (xdrlib \u4e2d\u7684\u985e\u5225)": [[408, "xdrlib.Packer", false]], "packing (widgets)": [[369, "index-2", false]], "packing\uff08\u6253\u5305\uff09": [[347, "index-0", false]], "pager": [[313, "index-1", false]], "pair_content() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.pair_content", false]], "pair_number() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.pair_number", false]], "pairwise() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.pairwise", false]], "panedwindow (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.PanedWindow", false]], "parameter (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Parameter", false]], "parameter list\uff08\u53c3\u6578\u5217\u8868\uff09": [[427, "index-28", false]], "parameterizedmimeheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ParameterizedMIMEHeader", false]], "parameters (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.parameters", false]], "parameter\uff08\u53c3\u6578\uff09": [[85, "index-1", false], [87, "term-parameter", true], [427, "index-27", false], [427, "index-31", false], [430, "index-48", false]], "params (email.headerregistry.parameterizedmimeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ParameterizedMIMEHeader.params", false]], "paramspec (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ParamSpec", false]], "paramspec (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ParamSpec", false]], "paramspecargs (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ParamSpecArgs", false]], "paramspeckwargs (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ParamSpecKwargs", false]], "paramstyle (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.paramstyle", false]], "pardir (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pardir", false]], "paren (2to3 fixer)": [[112, "to3fixer-paren", false]], "parent (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.parent", false]], "parent (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.parent", false]], "parent (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parent", false]], "parent (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.parent", false]], "parent (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.parent", false]], "parent (urllib.request.basehandler \u7684\u5c6c\u6027)": [[395, "urllib.request.BaseHandler.parent", false]], "parent() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.parent", false]], "parent_process() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.parent_process", false]], "parenthesized form": [[430, "index-8", false]], "parentnode (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.parentNode", false]], "parents (collections.chainmap \u7684\u5c6c\u6027)": [[160, "collections.ChainMap.parents", false]], "parents (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parents", false]], "paretovariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.paretovariate", false]], "parse() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.parse", false]], "parse() (email.parser.bytesparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesParser.parse", false]], "parse() (email.parser.parser \u7684\u65b9\u6cd5)": [[207, "email.parser.Parser.parse", false]], "parse() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.parse", false]], "parse() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.parse", false]], "parse() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.parse", false]], "parse() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.Parse", false]], "parse() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.parse", false]], "parse() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.parse", false]], "parse() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse", false]], "parse() (\u65bc xml.dom.minidom \u6a21\u7d44\u4e2d)": [[411, "xml.dom.minidom.parse", false]], "parse() (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.parse", false]], "parse() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.parse", false]], "parse() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.parse", false]], "parse_and_bind() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.parse_and_bind", false]], "parse_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_args", false]], "parse_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.parse_args", false]], "parse_colnames (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.PARSE_COLNAMES", false]], "parse_config_h() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.parse_config_h", false]], "parse_decltypes (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.PARSE_DECLTYPES", false]], "parse_header() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse_header", false]], "parse_headers() (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.parse_headers", false]], "parse_intermixed_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_intermixed_args", false]], "parse_known_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_known_args", false]], "parse_known_intermixed_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_known_intermixed_args", false]], "parse_multipart() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse_multipart", false]], "parse_qs() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.parse_qs", false]], "parse_qsl() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.parse_qsl", false]], "parseaddr() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parseaddr", false]], "parsebytes() (email.parser.bytesparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesParser.parsebytes", false]], "parsedate() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate", false]], "parsedate_to_datetime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate_to_datetime", false]], "parsedate_tz() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate_tz", false]], "parseerror (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.ParseError", false]], "parsefile() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ParseFile", false]], "parseflags() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.ParseFlags", false]], "parser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.Parser", false]], "parsercreate() (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.ParserCreate", false]], "parseresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.ParseResult", false]], "parseresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.ParseResultBytes", false]], "parser\uff08\u5256\u6790\u5668\uff09": [[435, "index-0", false]], "parsestr() (email.parser.parser \u7684\u65b9\u6cd5)": [[207, "email.parser.Parser.parsestr", false]], "parsestring() (\u65bc xml.dom.minidom \u6a21\u7d44\u4e2d)": [[411, "xml.dom.minidom.parseString", false]], "parsestring() (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.parseString", false]], "parsestring() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.parseString", false]], "parsingerror": [[167, "configparser.ParsingError", false]], "parsing\uff08\u5256\u6790\uff09": [[394, "index-0", false]], "partial (asyncio.incompletereaderror \u7684\u5c6c\u6027)": [[127, "asyncio.IncompleteReadError.partial", false]], "partial() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.partial", false]], "partial() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.partial", false]], "partialmethod (functools \u4e2d\u7684\u985e\u5225)": [[226, "functools.partialmethod", false]], "parties (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.parties", false]], "parties (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.parties", false]], "partition() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.partition", false]], "partition() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.partition", false]], "partition() (str \u7684\u65b9\u6cd5)": [[344, "str.partition", false]], "parts (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parts", false]], "pass": [[436, "index-20", false]], "pass (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Pass", false]], "pass_() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.pass_", false]], "paste\uff08\u8cbc\u4e0a\uff09": [[247, "index-4", false]], "patch() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.patch", false]], "patch() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch", false]], "patch.dict() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.dict", false]], "patch.multiple() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.multiple", false]], "patch.object() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.object", false]], "patch.stopall() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.stopall", false]], "path": [[35, "index-41", false], [35, "index-42", false], [84, "index-0", false], [84, "index-1", false], [151, "index-3", false], [151, "index-6", false], [293, "index-33", false], [293, "index-34", false], [293, "index-35", false], [293, "index-36", false], [293, "index-39", false], [293, "index-40", false], [293, "index-41", false], [293, "index-42", false], [293, "index-52", false], [334, "index-3", false], [348, "index-2", false], [399, "index-10", false], [399, "index-11", false], [399, "index-12", false], [403, "index-3", false], [438, "index-12", false], [450, "index-15", false], [455, "index-32", false], [460, "index-2", false], [461, "index-10", false], [461, "index-12", false], [461, "index-13", false], [461, "index-14", false], [461, "index-18", false], [461, "index-2", false], [461, "index-20", false], [461, "index-22", false], [461, "index-23", false], [461, "index-25", false], [461, "index-3", false], [461, "index-40", false], [461, "index-5", false], [461, "index-9", false], [477, "index-54", false], [477, "index-57", false], [477, "index-58", false], [481, "index-22", false], [483, "index-213", false], [483, "index-214", false], [483, "index-55", false], [483, "index-80", false]], "path (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.path", false]], "path (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.path", false]], "path (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.path", false]], "path (importerror \u7684\u5c6c\u6027)": [[213, "ImportError.path", false]], "path (importlib.abc.fileloader \u7684\u5c6c\u6027)": [[250, "importlib.abc.FileLoader.path", false]], "path (importlib.machinery.extensionfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ExtensionFileLoader.path", false]], "path (importlib.machinery.filefinder \u7684\u5c6c\u6027)": [[250, "importlib.machinery.FileFinder.path", false]], "path (importlib.machinery.sourcefileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourceFileLoader.path", false]], "path (importlib.machinery.sourcelessfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourcelessFileLoader.path", false]], "path (os.direntry \u7684\u5c6c\u6027)": [[293, "os.DirEntry.path", false]], "path (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.Path", false]], "path (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.Path", false]], "path (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path", false]], "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09": [[87, "term-path-based-finder", true]], "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u641c\u5c0b\u5668\uff09": [[432, "index-16", false]], "path browser\uff08\u8def\u5f91\u700f\u89bd\u5668\uff09": [[247, "index-1", false]], "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09": [[87, "term-path-entry-finder", true]], "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09": [[87, "term-path-entry-hook", true]], "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09": [[87, "term-path-entry", true]], "path hooks": [[432, "index-9", false]], "path separator (posix)\uff08\u8def\u5f91\u5206\u9694\u5668 (posix)\uff09": [[293, "index-51", false]], "path() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.path", false]], "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09": [[87, "term-path-like-object", true]], "path.stem (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.stem", false]], "path.suffix (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.suffix", false]], "path.suffixes (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.suffixes", false]], "path_hook() (importlib.machinery.filefinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.path_hook", false]], "path_hooks (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path_hooks", false]], "path_importer_cache (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path_importer_cache", false]], "path_mtime() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.path_mtime", false]], "path_return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.path_return_ok", false]], "path_stats() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.path_stats", false]], "path_stats() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.path_stats", false]], "pathconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathconf", false]], "pathconf_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathconf_names", false]], "pathentryfinder (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.PathEntryFinder", false]], "pathext": [[461, "index-4", false], [461, "index-6", false], [477, "index-50", false], [483, "index-138", false]], "pathfinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.PathFinder", false]], "pathlib": [[296, "module-pathlib", false]], "pathlike (os \u4e2d\u7684\u985e\u5225)": [[293, "os.PathLike", false]], "pathname expansion\uff08\u8def\u5f91\u540d\u7a31\u5c55\u958b\uff09": [[231, "index-0", false]], "pathname2url() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.pathname2url", false]], "pathsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathsep", false]], "path\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false]], "path\uff08\u8def\u5f91\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false], [265, "index-0", false], [294, "index-0", false], [296, "index-0", false], [334, "index-0", false], [334, "index-4", false], [352, "index-21", false], [432, "index-9", false], [450, "index-0", false]], "pattern (re \u4e2d\u7684\u985e\u5225)": [[319, "re.Pattern", false]], "pattern (re.error \u7684\u5c6c\u6027)": [[319, "re.error.pattern", false]], "pattern (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.pattern", false]], "pattern (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Pattern", false]], "pattern matching\uff08\u6a21\u5f0f\u5339\u914d\uff09": [[427, "index-18", true]], "pause() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pause", false]], "pause_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.pause_reading", false]], "pause_writing() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.pause_writing", false]], "pax_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.PAX_FORMAT", false]], "pax_headers (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.pax_headers", false]], "pax_headers (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.pax_headers", false]], "pbkdf2_hmac() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.pbkdf2_hmac", false]], "pd() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pd", false]], "pdb": [[297, "module-pdb", false]], "pdb (pdb \u4e2d\u7684\u985e\u5225)": [[297, "pdb.Pdb", false]], "pdb\uff08pdb \u4e2d\u7684\u985e\u5225\uff09": [[297, "index-1", false]], "pdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.pdf", false]], "peek() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.peek", false]], "peek() (gzip.gzipfile \u7684\u65b9\u6cd5)": [[234, "gzip.GzipFile.peek", false]], "peek() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.peek", false]], "peek() (lzma.lzmafile \u7684\u65b9\u6cd5)": [[270, "lzma.LZMAFile.peek", false]], "peek() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.peek", false]], "pem_cert_to_der_cert() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PEM_cert_to_DER_cert", false]], "pen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pen", false]], "pencolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pencolor", false]], "pending (ssl.memorybio \u7684\u5c6c\u6027)": [[341, "ssl.MemoryBIO.pending", false]], "pending() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.pending", false]], "pendingdeprecationwarning": [[213, "PendingDeprecationWarning", false]], "pendown() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pendown", false]], "pensize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pensize", false]], "penup() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.penup", false]], "pep": [[87, "term-PEP", true]], "pep 1": [[87, "index-94", false], [462, "index-0", false], [462, "index-1", false]], "pep 100": [[462, "index-3", false]], "pep 11": [[456, "index-1", false], [461, "index-0", false], [461, "index-38", false], [470, "index-19", false], [473, "index-115", false], [478, "index-48", false], [480, "index-5", false], [483, "index-254", false], [483, "index-53", false], [483, "index-54", false]], "pep 11#tier-3": [[473, "index-116", false]], "pep 201": [[462, "index-2", false]], "pep 205": [[402, "index-8", false], [463, "index-9", false]], "pep 207": [[463, "index-4", false], [463, "index-5", false]], "pep 208": [[463, "index-13", false]], "pep 217": [[463, "index-12", false]], "pep 218": [[465, "index-0", false], [466, "index-0", false], [466, "index-13", false]], "pep 227": [[113, "index-24", false], [463, "index-2", false], [464, "index-16", false]], "pep 229": [[463, "index-8", false]], "pep 230": [[463, "index-7", false]], "pep 232": [[463, "index-10", false]], "pep 234": [[464, "index-25", false]], "pep 235": [[250, "index-0", false]], "pep 236": [[113, "index-35", false], [436, "index-42", false], [463, "index-0", false], [463, "index-1", false], [463, "index-3", false]], "pep 237": [[344, "index-71", false], [344, "index-72", false], [464, "index-10", false], [466, "index-1", false], [466, "index-16", false], [470, "index-1", false]], "pep 238": [[66, "index-3", false], [87, "index-84", false], [113, "index-26", false], [464, "index-11", false], [464, "index-12", false], [464, "index-13", false], [470, "index-2", false]], "pep 241": [[463, "index-14", false], [463, "index-15", false], [463, "index-16", false]], "pep 243": [[463, "index-17", false]], "pep 246": [[340, "index-8", false], [483, "index-50", false]], "pep 247": [[477, "index-37", false]], "pep 249": [[340, "index-0", false], [340, "index-10", false], [340, "index-11", false], [340, "index-12", false], [340, "index-14", false], [340, "index-2", false], [340, "index-3", false], [340, "index-4", false], [340, "index-5", false], [340, "index-9", false], [467, "index-24", false], [467, "index-25", false], [474, "index-24", false], [483, "index-41", false], [483, "index-73", false]], "pep 252": [[428, "index-85", false], [464, "index-2", false], [464, "index-4", false]], "pep 253": [[464, "index-0", false], [464, "index-1", false], [464, "index-3", false], [464, "index-5", false], [464, "index-6", false]], "pep 255": [[113, "index-25", false], [430, "index-26", false], [464, "index-8", false], [464, "index-9", false], [465, "index-1", false], [465, "index-2", false]], "pep 261": [[464, "index-14", false], [464, "index-26", false]], "pep 263": [[109, "index-0", false], [250, "index-1", false], [378, "index-0", false], [378, "index-1", false], [465, "index-3", false], [467, "index-19", false], [483, "index-82", false]], "pep 264": [[464, "index-22", false]], "pep 273": [[423, "index-0", false], [423, "index-1", false], [465, "index-4", false], [465, "index-5", false]], "pep 274": [[470, "index-10", false]], "pep 277": [[465, "index-7", false]], "pep 278": [[87, "index-100", false], [465, "index-9", false]], "pep 279": [[465, "index-10", false]], "pep 282": [[267, "index-1", false], [332, "index-2", false], [465, "index-11", false], [465, "index-12", false]], "pep 285": [[465, "index-13", false], [465, "index-14", false]], "pep 288": [[467, "index-12", false]], "pep 289": [[95, "index-4", false], [466, "index-15", false], [466, "index-2", false]], "pep 292": [[345, "index-23", false], [466, "index-3", false]], "pep 293": [[465, "index-15", false]], "pep 3000": [[468, "index-1", false]], "pep 301": [[465, "index-16", false]], "pep 302": [[87, "index-90", false], [225, "index-14", false], [250, "index-12", false], [250, "index-13", false], [250, "index-14", false], [250, "index-16", false], [250, "index-2", false], [265, "index-1", false], [302, "index-0", false], [302, "index-2", false], [302, "index-3", false], [302, "index-5", false], [302, "index-6", false], [302, "index-7", false], [324, "index-1", false], [352, "index-25", false], [352, "index-26", false], [423, "index-2", false], [432, "index-1", false], [432, "index-19", false], [465, "index-17", false], [465, "index-18", false], [465, "index-19", false], [465, "index-6", false], [467, "index-21", false], [471, "index-2", false], [476, "index-20", false], [476, "index-21", false], [476, "index-37", false]], "pep 305": [[175, "index-7", false], [465, "index-20", false]], "pep 307": [[299, "index-2", false], [465, "index-21", false], [465, "index-22", false], [465, "index-23", false]], "pep 308": [[430, "index-89", false], [467, "index-1", false], [467, "index-2", false]], "pep 309": [[467, "index-3", false]], "pep 3100": [[468, "index-2", false]], "pep 3101": [[68, "index-23", false], [345, "index-1", false], [345, "index-19", false], [468, "index-9", false], [470, "index-23", false], [470, "index-24", false], [484, "index-23", false]], "pep 3102": [[470, "index-7", false]], "pep 3104": [[436, "index-46", false], [470, "index-8", false]], "pep 3105": [[113, "index-29", false], [468, "index-10", false], [470, "index-0", false]], "pep 3106": [[469, "index-6", false]], "pep 3107": [[427, "index-36", false], [441, "index-16", false], [470, "index-6", false], [478, "index-9", false], [480, "index-0", false]], "pep 3108": [[470, "index-17", false], [470, "index-20", false], [470, "index-22", false]], "pep 3109": [[470, "index-11", false], [470, "index-26", false]], "pep 3110": [[468, "index-11", false], [470, "index-13", false], [470, "index-27", false]], "pep 3111": [[470, "index-32", false]], "pep 3112": [[113, "index-30", false], [468, "index-12", false]], "pep 3113": [[470, "index-15", false]], "pep 3114": [[470, "index-30", false]], "pep 3115": [[385, "index-0", false], [427, "index-45", false], [428, "index-90", false], [470, "index-14", false], [476, "index-29", false]], "pep 3116": [[87, "index-101", false], [468, "index-14", false], [471, "index-3", false]], "pep 3118": [[344, "index-50", false], [468, "index-15", false], [470, "index-39", false], [476, "index-4", false], [476, "index-53", false], [476, "index-61", false], [481, "index-8", false], [483, "index-252", false], [483, "index-259", false], [483, "index-304", false]], "pep 3119": [[49, "index-4", false], [49, "index-5", false], [116, "index-4", false], [161, "index-7", false], [428, "index-94", false], [468, "index-16", false]], "pep 3120": [[250, "index-10", false], [435, "index-1", false], [470, "index-4", false]], "pep 3121": [[45, "index-10", false], [470, "index-34", false], [483, "index-153", false]], "pep 3123": [[470, "index-35", false]], "pep 3127": [[468, "index-17", false]], "pep 3129": [[427, "index-41", false], [427, "index-46", false], [468, "index-18", false]], "pep 3131": [[435, "index-11", false], [435, "index-12", false], [470, "index-5", false], [483, "index-221", false]], "pep 3132": [[436, "index-13", false], [470, "index-9", false]], "pep 3134": [[213, "index-14", false], [470, "index-12", false], [470, "index-28", false], [470, "index-29", false], [483, "index-67", false]], "pep 3135": [[428, "index-93", false], [470, "index-31", false]], "pep 3137": [[469, "index-7", false]], "pep 3138": [[470, "index-3", false]], "pep 314": [[467, "index-4", false]], "pep 3141": [[116, "index-5", false], [289, "index-2", false], [468, "index-19", false]], "pep 3144": [[476, "index-59", false]], "pep 3147": [[31, "index-3", false], [85, "index-3", false], [163, "index-0", false], [163, "index-2", false], [163, "index-3", false], [250, "index-11", false], [250, "index-21", false], [250, "index-23", false], [250, "index-24", false], [311, "index-1", false], [311, "index-4", false], [324, "index-2", false], [362, "index-3", false], [432, "index-13", false], [450, "index-16", false], [475, "index-5", false], [476, "index-18", false]], "pep 3148": [[166, "index-2", false], [475, "index-4", false]], "pep 3149": [[352, "index-0", false], [475, "index-6", false], [483, "index-299", false]], "pep 3151": [[23, "index-9", false], [213, "index-9", false], [322, "index-0", false], [328, "index-0", false], [337, "index-2", false], [476, "index-10", false]], "pep 3154": [[299, "index-3", false], [477, "index-12", false], [477, "index-39", false], [483, "index-224", false]], "pep 3155": [[87, "index-97", false], [476, "index-15", false]], "pep 3156": [[477, "index-25", false], [477, "index-26", false], [477, "index-31", false], [477, "index-4", false], [477, "index-8", false]], "pep 318": [[427, "index-40", false], [427, "index-47", false], [466, "index-12", false], [466, "index-4", false], [466, "index-5", false]], "pep 322": [[466, "index-14", false], [466, "index-6", false]], "pep 324": [[348, "index-0", false], [466, "index-8", false]], "pep 325": [[467, "index-13", false]], "pep 327": [[466, "index-9", false]], "pep 328": [[113, "index-27", false], [225, "index-15", false], [250, "index-3", false], [432, "index-24", false], [466, "index-10", false], [466, "index-17", false], [467, "index-5", false], [467, "index-6", false], [470, "index-16", false], [476, "index-36", false]], "pep 331": [[466, "index-11", false]], "pep 333": [[467, "index-26", false], [467, "index-27", false]], "pep 3333": [[407, "index-38", false], [407, "index-39", false], [407, "index-40", false], [407, "index-41", false], [407, "index-42", false], [407, "index-44", false], [407, "index-45", false], [407, "index-46", false], [407, "index-47", false], [407, "index-49", false], [407, "index-50", false], [407, "index-51", false], [407, "index-52", false], [407, "index-53", false], [407, "index-54", false], [407, "index-55", false], [407, "index-56", false], [473, "index-107", false], [475, "index-9", false]], "pep 338": [[324, "index-6", false], [432, "index-26", false], [455, "index-0", false], [467, "index-7", false]], "pep 339": [[467, "index-30", false]], "pep 341": [[467, "index-8", false]], "pep 342": [[95, "index-0", false], [95, "index-2", false], [161, "index-1", false], [430, "index-27", false], [467, "index-11", false], [467, "index-31", false], [467, "index-9", false]], "pep 343": [[87, "index-80", false], [113, "index-28", false], [169, "index-2", false], [427, "index-17", false], [428, "index-107", false], [467, "index-10", false], [467, "index-14", false], [468, "index-3", false]], "pep 347": [[467, "index-28", false]], "pep 352": [[467, "index-15", false], [468, "index-25", false], [470, "index-25", false]], "pep 353": [[35, "index-40", false], [467, "index-16", false], [467, "index-17", false], [467, "index-29", false], [472, "index-116", false], [483, "index-159", false]], "pep 356": [[467, "index-0", false]], "pep 357": [[467, "index-18", false]], "pep 361": [[468, "index-0", false]], "pep 362": [[87, "index-73", false], [87, "index-92", false], [255, "index-0", false], [476, "index-57", false]], "pep 366": [[250, "index-4", false], [324, "index-7", false], [432, "index-11", false], [432, "index-12", false], [432, "index-23", false], [432, "index-25", false], [476, "index-22", false]], "pep 370": [[334, "index-9", false], [455, "index-16", false], [455, "index-39", false], [455, "index-40", false], [468, "index-7", false], [483, "index-48", false]], "pep 371": [[468, "index-8", false]], "pep 372": [[68, "index-4", false], [469, "index-2", false], [471, "index-4", false], [471, "index-6", false], [484, "index-4", false]], "pep 373": [[105, "index-0", false], [469, "index-0", false]], "pep 378": [[345, "index-21", false], [469, "index-3", false], [471, "index-1", false]], "pep 380": [[430, "index-28", false], [476, "index-12", false]], "pep 380#use-of-stopiteration-to-return-values": [[353, "index-0", false]], "pep 383": [[64, "index-2", false], [64, "index-3", false], [64, "index-4", false], [158, "index-2", false], [337, "index-1", false], [483, "index-63", false]], "pep 384": [[472, "index-118", false], [475, "index-1", false], [483, "index-109", false]], "pep 385": [[475, "index-14", false]], "pep 387": [[57, "index-3", false], [80, "index-0", false], [213, "index-11", false], [213, "index-12", false]], "pep 389": [[469, "index-4", false], [475, "index-2", false]], "pep 391": [[469, "index-5", false], [475, "index-3", false]], "pep 392": [[475, "index-0", false]], "pep 393": [[64, "index-0", false], [158, "index-5", false], [352, "index-19", false], [472, "index-117", false], [476, "index-30", false], [476, "index-32", false], [476, "index-33", false], [476, "index-38", false], [476, "index-54", false], [476, "index-6", false], [476, "index-62", false], [476, "index-8", false], [482, "index-25", false], [482, "index-26", false], [483, "index-97", false]], "pep 397": [[461, "index-19", false], [476, "index-55", false], [478, "index-22", false]], "pep 398": [[476, "index-51", false]], "pep 4": [[470, "index-18", false]], "pep 405": [[399, "index-9", false], [476, "index-52", false]], "pep 409": [[476, "index-13", false]], "pep 411": [[87, "index-96", false], [352, "index-13", false], [352, "index-14", false], [352, "index-31", false], [352, "index-32", false]], "pep 412": [[226, "index-0", false], [476, "index-56", false]], "pep 414": [[435, "index-21", false], [476, "index-14", false]], "pep 418": [[476, "index-60", false]], "pep 420": [[87, "index-91", false], [87, "index-95", false], [250, "index-5", false], [432, "index-14", false], [432, "index-15", false], [432, "index-2", false], [432, "index-20", false], [432, "index-21", false], [432, "index-22", false], [432, "index-6", false], [476, "index-2", false], [476, "index-3", false], [483, "index-285", false], [483, "index-292", false]], "pep 421": [[352, "index-15", false], [352, "index-16", false], [476, "index-58", false]], "pep 424": [[477, "index-24", false], [477, "index-38", false]], "pep 428": [[296, "index-3", false], [477, "index-30", false], [477, "index-7", false]], "pep 429": [[477, "index-0", false]], "pep 432": [[34, "index-37", false], [34, "index-38", false], [480, "index-38", false], [483, "index-251", false]], "pep 434": [[247, "index-7", false], [469, "index-13", false]], "pep 435": [[477, "index-28", false], [477, "index-29", false], [477, "index-6", false]], "pep 436": [[477, "index-18", false], [477, "index-48", false], [477, "index-49", false]], "pep 441": [[478, "index-29", false], [478, "index-30", false]], "pep 442": [[63, "index-5", false], [75, "index-2", false], [227, "index-2", false], [477, "index-15", false], [477, "index-16", false], [477, "index-45", false], [477, "index-46", false], [482, "index-20", false], [483, "index-210", false]], "pep 443": [[87, "index-86", false], [477, "index-11", false], [477, "index-36", false]], "pep 445": [[477, "index-17", false], [477, "index-43", false], [477, "index-44", false], [477, "index-51", false]], "pep 446": [[477, "index-14", false], [477, "index-2", false], [477, "index-21", false], [477, "index-22", false]], "pep 448": [[430, "index-19", false], [430, "index-51", false], [430, "index-94", false], [478, "index-5", false], [478, "index-6", false], [483, "index-283", false], [483, "index-294", false], [483, "index-295", false], [483, "index-296", false]], "pep 450": [[477, "index-32", false], [477, "index-33", false], [477, "index-9", false]], "pep 451": [[45, "index-7", false], [250, "index-6", false], [302, "index-10", false], [302, "index-11", false], [324, "index-3", false], [324, "index-5", false], [324, "index-8", false], [352, "index-20", false], [432, "index-27", false], [472, "index-112", false], [474, "index-36", false], [477, "index-23", false], [477, "index-3", false], [478, "index-27", false], [483, "index-286", false], [483, "index-46", false]], "pep 453": [[210, "index-2", false], [469, "index-19", false], [469, "index-20", false], [469, "index-21", false], [477, "index-1", false], [477, "index-19", false], [477, "index-20", false], [477, "index-27", false], [477, "index-42", false], [477, "index-5", false], [477, "index-52", false]], "pep 454": [[477, "index-10", false], [477, "index-34", false], [477, "index-35", false]], "pep 456": [[30, "index-2", false], [477, "index-13", false], [477, "index-47", false]], "pep 461": [[344, "index-49", false], [478, "index-7", false], [478, "index-8", false]], "pep 465": [[478, "index-3", false], [478, "index-4", false], [478, "index-46", false], [483, "index-306", false]], "pep 466": [[469, "index-14", false], [469, "index-15", false], [469, "index-16", false], [469, "index-17", false]], "pep 468": [[160, "index-10", false], [479, "index-24", false], [483, "index-261", false]], "pep 471": [[478, "index-13", false], [478, "index-14", false], [483, "index-302", false]], "pep 475": [[213, "index-8", false], [225, "index-20", false], [293, "index-22", false], [293, "index-24", false], [293, "index-25", false], [293, "index-44", false], [328, "index-3", false], [328, "index-4", false], [328, "index-5", false], [328, "index-6", false], [328, "index-7", false], [329, "index-0", false], [333, "index-0", false], [333, "index-1", false], [337, "index-10", false], [337, "index-11", false], [337, "index-12", false], [337, "index-13", false], [337, "index-4", false], [337, "index-5", false], [337, "index-7", false], [337, "index-8", false], [337, "index-9", false], [366, "index-8", false], [478, "index-15", false], [478, "index-16", false], [478, "index-49", false], [483, "index-244", false], [483, "index-301", false]], "pep 476": [[469, "index-22", false]], "pep 477": [[469, "index-18", false]], "pep 478": [[478, "index-0", false]], "pep 479": [[113, "index-31", false], [213, "index-6", false], [213, "index-7", false], [478, "index-17", false], [478, "index-18", false], [480, "index-37", false], [483, "index-223", false], [483, "index-231", false], [483, "index-234", false], [483, "index-256", false], [483, "index-277", false], [483, "index-291", false]], "pep 483": [[87, "index-87", false], [478, "index-12", false]], "pep 484": [[87, "index-102", false], [87, "index-71", false], [87, "index-85", false], [87, "index-88", false], [87, "index-98", false], [87, "index-99", false], [122, "index-14", false], [122, "index-15", false], [122, "index-17", false], [122, "index-18", false], [344, "index-57", false], [386, "index-18", false], [386, "index-31", false], [386, "index-93", false], [386, "index-96", false], [386, "index-97", false], [427, "index-37", false], [428, "index-95", false], [436, "index-17", false], [441, "index-17", false], [472, "index-101", false], [472, "index-103", false], [472, "index-99", false], [473, "index-93", false], [473, "index-94", false], [474, "index-15", false], [474, "index-16", false], [474, "index-3", false], [478, "index-10", false], [478, "index-11", false], [479, "index-5", false], [480, "index-20", false], [481, "index-10", false], [481, "index-12", false]], "pep 484#annotating-instance-and-class-methods": [[473, "index-98", false]], "pep 485": [[154, "index-3", false], [275, "index-2", false], [478, "index-19", false], [478, "index-20", false], [483, "index-298", false]], "pep 486": [[478, "index-21", false], [478, "index-23", false], [483, "index-303", false]], "pep 487": [[479, "index-13", false], [479, "index-14", false], [479, "index-15", false], [479, "index-37", false], [483, "index-253", false], [483, "index-263", false], [483, "index-272", false]], "pep 488": [[250, "index-22", false], [250, "index-25", false], [250, "index-7", false], [311, "index-2", false], [362, "index-4", false], [455, "index-10", false], [455, "index-53", false], [455, "index-54", false], [455, "index-7", false], [478, "index-24", false], [478, "index-25", false], [478, "index-50", false], [483, "index-300", false]], "pep 489": [[33, "index-41", false], [45, "index-8", false], [71, "index-1", false], [73, "index-0", false], [250, "index-17", false], [250, "index-18", false], [250, "index-19", false], [250, "index-20", false], [250, "index-26", false], [250, "index-8", false], [478, "index-26", false], [478, "index-28", false], [478, "index-45", false], [483, "index-113", false], [483, "index-114", false], [483, "index-116", false], [483, "index-119", false], [483, "index-121", false], [483, "index-122", false], [483, "index-123", false], [483, "index-124", false], [483, "index-125", false], [483, "index-126", false], [483, "index-127", false], [483, "index-128", false], [483, "index-129", false], [483, "index-130", false], [483, "index-131", false], [483, "index-132", false], [483, "index-133", false], [483, "index-134", false], [483, "index-136", false], [483, "index-141", false], [483, "index-142", false], [483, "index-143", false], [483, "index-144", false], [483, "index-145", false], [483, "index-146", false], [483, "index-147", false], [483, "index-148", false], [483, "index-149", false], [483, "index-150", false], [483, "index-151", false], [483, "index-155", false], [483, "index-156", false], [483, "index-157", false], [483, "index-161", false], [483, "index-162", false], [483, "index-163", false], [483, "index-167", false], [483, "index-168", false], [483, "index-169", false], [483, "index-170", false], [483, "index-171", false], [483, "index-179", false], [483, "index-180", false], [483, "index-181", false], [483, "index-184", false], [483, "index-186", false], [483, "index-188", false], [483, "index-195", false], [483, "index-196", false], [483, "index-197", false], [483, "index-198", false], [483, "index-199", false], [483, "index-204", false], [483, "index-31", false]], "pep 492": [[87, "index-74", false], [87, "index-75", false], [87, "index-77", false], [87, "index-78", false], [87, "index-79", false], [87, "index-81", false], [87, "index-82", false], [161, "index-3", false], [255, "index-1", false], [255, "index-2", false], [427, "index-52", false], [428, "index-111", false], [430, "index-30", false], [478, "index-1", false], [478, "index-2", false], [478, "index-47", false], [478, "index-52", false], [479, "index-35", false], [479, "index-9", false], [483, "index-248", false], [483, "index-282", false], [483, "index-293", false], [483, "index-297", false]], "pep 493": [[469, "index-23", false]], "pep 494": [[479, "index-0", false]], "pep 495": [[425, "index-1", false], [479, "index-17", false], [479, "index-18", false], [483, "index-275", false]], "pep 498": [[87, "index-83", false], [435, "index-26", false], [479, "index-3", false], [479, "index-4", false], [483, "index-289", false]], "pep 5": [[80, "index-6", false], [463, "index-6", false]], "pep 506": [[326, "index-0", false], [479, "index-28", false], [483, "index-290", false]], "pep 511": [[479, "index-36", false]], "pep 514": [[461, "index-21", false], [473, "index-92", false], [483, "index-276", false], [483, "index-76", false]], "pep 515": [[221, "index-0", false], [345, "index-22", false], [473, "index-108", false], [479, "index-7", false], [479, "index-8", false], [483, "index-264", false], [483, "index-265", false]], "pep 519": [[87, "index-93", false], [479, "index-16", false], [483, "index-273", false], [483, "index-278", false], [483, "index-279", false], [483, "index-280", false], [483, "index-281", false], [483, "index-284", false]], "pep 520": [[479, "index-23", false]], "pep 523": [[26, "index-0", false], [33, "index-39", false], [33, "index-40", false], [473, "index-118", false], [474, "index-41", false], [479, "index-25", false], [479, "index-26", false], [482, "index-24", false], [483, "index-255", false], [483, "index-260", false], [483, "index-268", false], [483, "index-8", false]], "pep 524": [[293, "index-53", false], [479, "index-1", false], [479, "index-31", false], [479, "index-32", false], [483, "index-270", false], [483, "index-271", false]], "pep 525": [[87, "index-76", false], [161, "index-2", false], [255, "index-3", false], [352, "index-30", false], [352, "index-43", false], [430, "index-29", false], [479, "index-10", false], [483, "index-266", false]], "pep 526": [[87, "index-103", false], [87, "index-72", false], [122, "index-16", false], [122, "index-19", false], [181, "index-1", false], [181, "index-2", false], [386, "index-11", false], [386, "index-25", false], [386, "index-27", false], [427, "index-38", false], [436, "index-16", false], [472, "index-107", false], [479, "index-33", false], [479, "index-6", false], [480, "index-1", false], [481, "index-11", false], [483, "index-267", false]], "pep 528": [[33, "index-70", false], [34, "index-17", false], [461, "index-16", false], [479, "index-22", false]], "pep 529": [[33, "index-69", false], [64, "index-5", false], [293, "index-27", false], [352, "index-44", false], [352, "index-9", false], [455, "index-58", false], [461, "index-17", false], [479, "index-20", false], [481, "index-19", false], [483, "index-208", false], [483, "index-262", false], [483, "index-64", false]], "pep 530": [[430, "index-14", false], [479, "index-11", false], [479, "index-12", false], [483, "index-269", false]], "pep 538": [[34, "index-33", false], [266, "index-6", false], [455, "index-59", false], [456, "index-35", false], [480, "index-10", false], [480, "index-3", false], [480, "index-6", false], [480, "index-7", false], [483, "index-225", false], [483, "index-229", false], [483, "index-250", false]], "pep 539": [[33, "index-48", false], [480, "index-14", false], [480, "index-15", false], [483, "index-249", false]], "pep 540": [[34, "index-34", false], [266, "index-7", false], [293, "index-55", false], [480, "index-11", false], [480, "index-9", false], [483, "index-239", false]], "pep 544": [[386, "index-26", false], [386, "index-98", false], [481, "index-18", false]], "pep 545": [[480, "index-24", false], [480, "index-42", false]], "pep 552": [[34, "index-7", false], [250, "index-9", false], [311, "index-5", false], [473, "index-105", false], [480, "index-22", false], [480, "index-23", false], [483, "index-222", false], [483, "index-242", false]], "pep 553": [[480, "index-13", false], [483, "index-247", false]], "pep 554": [[33, "index-47", false], [474, "index-10", false]], "pep 557": [[181, "index-0", false], [480, "index-29", false]], "pep 560": [[385, "index-1", false], [385, "index-2", false], [385, "index-3", false], [428, "index-87", false], [428, "index-96", false], [480, "index-21", false], [480, "index-33", false], [483, "index-240", false]], "pep 562": [[428, "index-115", false], [480, "index-41", false], [483, "index-236", false], [483, "index-241", false]], "pep 563": [[113, "index-32", false], [113, "index-33", false], [386, "index-34", false], [386, "index-37", false], [427, "index-39", false], [436, "index-41", false], [473, "index-102", false], [480, "index-2", false], [483, "index-102", false], [483, "index-135", false]], "pep 564": [[480, "index-17", false], [480, "index-18", false], [480, "index-32", false], [483, "index-245", false]], "pep 565": [[213, "index-10", false], [480, "index-19", false]], "pep 566": [[251, "index-0", false]], "pep 567": [[126, "index-12", false], [126, "index-13", false], [126, "index-14", false], [129, "index-2", false], [170, "index-2", false], [480, "index-28", false], [480, "index-30", false], [483, "index-226", false], [483, "index-230", false], [483, "index-235", false]], "pep 570": [[427, "index-33", false], [481, "index-23", false], [481, "index-34", false], [483, "index-215", false]], "pep 572": [[78, "index-2", false], [427, "index-24", false], [430, "index-21", false], [430, "index-87", false], [474, "index-20", false], [481, "index-24", false], [481, "index-33", false], [483, "index-194", false], [483, "index-207", false], [483, "index-217", false], [483, "index-33", false]], "pep 573": [[482, "index-23", false], [482, "index-6", false], [483, "index-160", false], [483, "index-165", false]], "pep 574": [[299, "index-4", false], [299, "index-8", false], [481, "index-38", false]], "pep 578": [[59, "index-1", false], [142, "index-3", false], [352, "index-42", false], [481, "index-35", false]], "pep 584": [[160, "index-11", false], [160, "index-8", false], [160, "index-9", false], [293, "index-6", false], [293, "index-7", false], [385, "index-6", false], [402, "index-6", false], [402, "index-7", false], [482, "index-1", false], [482, "index-11", false], [483, "index-175", false], [483, "index-176", false], [483, "index-177", false], [483, "index-189", false], [483, "index-190", false], [483, "index-191", false], [483, "index-192", false]], "pep 585": [[87, "index-89", false], [161, "index-0", false], [344, "index-58", false], [385, "index-5", false], [386, "index-36", false], [386, "index-38", false], [386, "index-39", false], [386, "index-40", false], [386, "index-41", false], [386, "index-42", false], [386, "index-43", false], [386, "index-44", false], [386, "index-45", false], [386, "index-46", false], [386, "index-47", false], [386, "index-48", false], [386, "index-49", false], [386, "index-50", false], [386, "index-51", false], [386, "index-52", false], [386, "index-53", false], [386, "index-54", false], [386, "index-55", false], [386, "index-56", false], [386, "index-57", false], [386, "index-58", false], [386, "index-59", false], [386, "index-60", false], [386, "index-61", false], [386, "index-62", false], [386, "index-63", false], [386, "index-64", false], [386, "index-65", false], [386, "index-66", false], [386, "index-67", false], [386, "index-68", false], [386, "index-69", false], [386, "index-70", false], [386, "index-72", false], [386, "index-73", false], [386, "index-74", false], [386, "index-75", false], [386, "index-76", false], [482, "index-13", false], [482, "index-2", false], [483, "index-34", false], [483, "index-83", false], [483, "index-87", false]], "pep 586": [[386, "index-10", false], [472, "index-111", false], [481, "index-16", false], [482, "index-27", false]], "pep 587": [[34, "index-0", false], [481, "index-36", false], [481, "index-5", false], [483, "index-206", false], [483, "index-211", false], [483, "index-96", false]], "pep 589": [[386, "index-28", false], [481, "index-15", false]], "pep 590": [[10, "index-2", false], [472, "index-113", false], [473, "index-119", false], [481, "index-37", false], [482, "index-18", false], [482, "index-8", false], [483, "index-105", false], [483, "index-106", false], [483, "index-139", false], [483, "index-140", false], [483, "index-166", false], [483, "index-173", false], [483, "index-182", false], [483, "index-183", false], [483, "index-185", false], [483, "index-212", false], [483, "index-38", false], [483, "index-69", false], [483, "index-79", false], [483, "index-85", false], [483, "index-90", false]], "pep 591": [[386, "index-12", false], [386, "index-32", false], [481, "index-17", false]], "pep 593": [[386, "index-106", false], [386, "index-15", false], [482, "index-17", false], [482, "index-5", false], [483, "index-200", false]], "pep 594": [[288, "index-12", false], [473, "index-113", false], [473, "index-84", false], [474, "index-31", false], [474, "index-32", false], [474, "index-35", false], [483, "index-40", false], [483, "index-49", false], [483, "index-59", false], [483, "index-70", false], [483, "index-71", false], [483, "index-75", false]], "pep 594#aifc": [[117, "index-4", false]], "pep 594#audioop": [[141, "index-3", false]], "pep 594#cgi": [[151, "index-8", false]], "pep 594#cgitb": [[152, "index-4", false]], "pep 594#chunk": [[153, "index-3", false]], "pep 594#crypt": [[173, "index-1", false]], "pep 594#imghdr": [[249, "index-2", false]], "pep 594#mailcap": [[272, "index-0", false]], "pep 594#msilib": [[281, "index-3", false]], "pep 594#nis": [[287, "index-2", false]], "pep 594#ossaudiodev": [[295, "index-4", false]], "pep 594#pipes": [[301, "index-2", false]], "pep 594#sndhdr": [[336, "index-3", false]], "pep 594#spwd": [[339, "index-2", false]], "pep 594#sunau": [[349, "index-2", false]], "pep 594#telnetlib": [[359, "index-5", false]], "pep 594#uu-and-the-uu-encoding": [[397, "index-3", false]], "pep 594#xdrlib": [[408, "index-7", false]], "pep 596": [[482, "index-0", false]], "pep 597": [[258, "index-8", false], [472, "index-93", false], [483, "index-107", false]], "pep 602": [[80, "index-5", false], [482, "index-10", false]], "pep 604": [[88, "index-2", false], [344, "index-60", false], [472, "index-100", false], [472, "index-85", false], [483, "index-117", false], [483, "index-158", false]], "pep 612": [[386, "index-107", false], [386, "index-24", false], [386, "index-9", false], [386, "index-94", false], [386, "index-95", false], [472, "index-102", false], [472, "index-86", false], [483, "index-100", false], [483, "index-115", false], [483, "index-118", false], [483, "index-120", false], [483, "index-93", false]], "pep 613": [[386, "index-101", false], [472, "index-104", false], [472, "index-87", false], [483, "index-137", false]], "pep 614": [[427, "index-30", false], [427, "index-44", false], [482, "index-15", false], [482, "index-3", false], [483, "index-187", false]], "pep 615": [[425, "index-0", false], [482, "index-16", false], [482, "index-9", false], [483, "index-164", false]], "pep 616": [[482, "index-12", false], [482, "index-4", false], [483, "index-172", false]], "pep 617": [[112, "index-0", false], [431, "index-0", false], [472, "index-94", false], [473, "index-114", false], [474, "index-8", false], [482, "index-14", false], [482, "index-19", false], [482, "index-7", false], [483, "index-174", false], [483, "index-91", false]], "pep 618": [[472, "index-106", false], [472, "index-83", false], [483, "index-152", false]], "pep 623": [[64, "index-1", false], [472, "index-91", false], [474, "index-1", false], [474, "index-26", false], [474, "index-48", false], [483, "index-110", false], [483, "index-112", false], [483, "index-66", false]], "pep 624": [[472, "index-92", false], [473, "index-120", false], [473, "index-85", false], [483, "index-98", false]], "pep 624#alternative-apis": [[473, "index-121", false]], "pep 626": [[191, "index-0", false], [428, "index-62", false], [472, "index-84", false], [474, "index-30", false], [483, "index-44", false]], "pep 628": [[479, "index-29", false], [479, "index-30", false], [483, "index-274", false]], "pep 632": [[472, "index-108", false], [472, "index-90", false], [474, "index-2", false], [474, "index-33", false], [483, "index-39", false]], "pep 634": [[63, "index-3", false], [63, "index-4", false], [112, "index-1", false], [427, "index-19", false], [427, "index-25", false], [428, "index-108", false], [472, "index-80", false], [472, "index-95", false], [483, "index-111", false], [483, "index-57", false], [483, "index-99", false]], "pep 635": [[472, "index-81", false], [472, "index-96", false]], "pep 636": [[427, "index-20", false], [427, "index-26", false], [441, "index-15", false], [472, "index-82", false], [472, "index-97", false]], "pep 644": [[341, "index-31", false], [472, "index-109", false], [472, "index-110", false], [472, "index-114", false], [472, "index-89", false], [474, "index-34", false], [483, "index-103", false], [483, "index-47", false]], "pep 646": [[386, "index-21", false], [473, "index-95", false], [473, "index-96", false]], "pep 647": [[386, "index-16", false], [472, "index-105", false], [472, "index-88", false], [483, "index-101", false]], "pep 649": [[113, "index-34", false], [429, "index-11", false]], "pep 652": [[472, "index-115", false], [483, "index-104", false]], "pep 654": [[473, "index-112", false], [473, "index-89", false], [473, "index-90", false], [483, "index-43", false], [483, "index-81", false], [483, "index-84", false]], "pep 655": [[386, "index-102", false], [386, "index-103", false], [386, "index-29", false], [473, "index-97", false], [483, "index-62", false]], "pep 657": [[473, "index-109", false], [473, "index-87", false], [483, "index-61", false], [483, "index-89", false]], "pep 659": [[473, "index-110", false], [473, "index-111", false]], "pep 669": [[474, "index-11", false], [483, "index-12", false]], "pep 670": [[473, "index-117", false], [473, "index-86", false]], "pep 673": [[386, "index-100", false], [473, "index-99", false], [483, "index-78", false]], "pep 675": [[386, "index-99", false], [473, "index-100", false], [483, "index-68", false]], "pep 676": [[483, "index-74", false]], "pep 678": [[473, "index-91", false], [474, "index-21", false], [483, "index-11", false], [483, "index-25", false], [483, "index-58", false]], "pep 680": [[473, "index-106", false], [473, "index-82", false], [483, "index-72", false]], "pep 681": [[386, "index-104", false], [473, "index-101", false], [483, "index-60", false]], "pep 682": [[345, "index-20", false], [473, "index-104", false]], "pep 683": [[474, "index-43", false], [483, "index-9", false]], "pep 684": [[474, "index-44", false], [474, "index-9", false]], "pep 686": [[258, "index-1", false], [293, "index-5", false]], "pep 687": [[483, "index-17", false], [483, "index-18", false], [483, "index-19", false], [483, "index-20", false], [483, "index-21", false], [483, "index-22", false], [483, "index-26", false], [483, "index-28", false], [483, "index-29", false]], "pep 688": [[161, "index-4", false], [428, "index-109", false], [474, "index-12", false], [483, "index-13", false]], "pep 689": [[483, "index-30", false]], "pep 692": [[386, "index-17", false], [474, "index-17", false], [474, "index-60", false], [483, "index-16", false], [483, "index-23", false]], "pep 693": [[474, "index-56", false]], "pep 695": [[386, "index-19", false], [386, "index-20", false], [386, "index-22", false], [386, "index-23", false], [386, "index-77", false], [429, "index-12", false], [436, "index-48", false], [474, "index-29", false], [474, "index-4", false], [474, "index-57", false], [483, "index-0", false], [483, "index-10", false], [483, "index-15", false], [483, "index-3", false], [483, "index-4", false], [483, "index-5", false], [483, "index-6", false], [483, "index-7", false]], "pep 697": [[474, "index-40", false], [474, "index-42", false], [483, "index-24", false]], "pep 698": [[386, "index-105", false], [474, "index-61", false], [483, "index-27", false]], "pep 699": [[474, "index-45", false], [474, "index-46", false], [483, "index-32", false]], "pep 7": [[35, "index-37", false], [35, "index-38", false], [35, "index-39", false], [456, "index-0", false], [479, "index-34", false]], "pep 701": [[474, "index-25", false], [474, "index-27", false], [474, "index-37", false], [474, "index-38", false], [474, "index-39", false], [474, "index-58", false], [474, "index-6", false]], "pep 706": [[358, "index-0", false], [472, "index-40", false], [473, "index-41", false], [474, "index-22", false], [481, "index-26", false], [482, "index-29", false]], "pep 709": [[474, "index-13", false], [474, "index-28", false], [474, "index-59", false], [483, "index-14", false]], "pep 8": [[85, "index-2", false], [85, "index-7", false], [86, "index-2", false], [108, "index-0", false], [225, "index-10", false], [430, "index-79", false], [441, "index-18", false], [457, "index-0", false], [470, "index-38", false], [483, "index-243", false], [483, "index-305", false]], "percent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PERCENT", false]], "percentequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PERCENTEQUAL", false]], "perf_counter() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.perf_counter", false]], "perf_counter_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.perf_counter_ns", false]], "perm() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.perm", false]], "permissionerror": [[213, "PermissionError", false]], "permutations() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.permutations", false]], "persist() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.Persist", false]], "persistence\uff08\u6301\u7e8c\u6027\uff09": [[299, "index-0", false]], "persistent_id() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.persistent_id", false]], "persistent_id\uff08pickle \u5354\u5b9a\uff09": [[299, "index-6", false]], "persistent_load() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.persistent_load", false]], "persistent_load\uff08pickle \u5354\u5b9a\uff09": [[299, "index-6", false]], "persistent\uff08\u6301\u7e8c\uff09": [[299, "index-0", false]], "pf_can (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_CAN", false]], "pf_divert (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_DIVERT", false]], "pf_packet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_PACKET", false]], "pf_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_RDS", false]], "pformat() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.pformat", false]], "pformat() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pformat", false]], "pgettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.pgettext", false]], "pgettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.pgettext", false]], "pgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.pgettext", false]], "pgo (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.PGO", false]], "phase() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.phase", false]], "philbrick, geoff": [[73, "index-4", false]], "physical line\uff08\u7269\u7406\u5217\uff09": [[435, "index-23", false], [435, "index-3", false], [435, "index-6", false]], "pi (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.pi", false]], "pi (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.pi", false]], "pi() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.pi", false]], "pickle": [[171, "index-0", false], [172, "index-0", false], [274, "index-0", false], [299, "module-pickle", false], [330, "index-0", false]], "pickle() (\u65bc copyreg \u6a21\u7d44\u4e2d)": [[172, "copyreg.pickle", false]], "picklebuffer (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.PickleBuffer", false]], "pickleerror": [[299, "pickle.PickleError", false]], "pickler (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.Pickler", false]], "pickletools": [[300, "module-pickletools", false]], "pickletools \u547d\u4ee4\u5217\u9078\u9805": [[300, "cmdoption-pickletools-a", false], [300, "cmdoption-pickletools-l", false], [300, "cmdoption-pickletools-m", false], [300, "cmdoption-pickletools-o", false], [300, "cmdoption-pickletools-p", false]], "pickling": [[299, "index-0", false]], "picklingerror": [[299, "pickle.PicklingError", false]], "pid (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.pid", false]], "pid (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.pid", false]], "pid (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.pid", false]], "pidfd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PIDFD_NONBLOCK", false]], "pidfd_open() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pidfd_open", false]], "pidfd_send_signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pidfd_send_signal", false]], "pidfdchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.PidfdChildWatcher", false]], "pip_user": [[483, "index-209", false]], "pipe (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.PIPE", false]], "pipe() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Pipe", false]], "pipe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pipe", false]], "pipe2() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pipe2", false]], "pipe_buf (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.PIPE_BUF", false]], "pipe_connection_lost() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.pipe_connection_lost", false]], "pipe_data_received() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.pipe_data_received", false]], "pipe_max_size (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.PIPE_MAX_SIZE", false]], "pipes": [[301, "module-pipes", false]], "pkgutil": [[302, "module-pkgutil", false]], "placeholder (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.placeholder", false]], "placeholder\uff08\u4f54\u4f4d\u7b26\u865f\uff09": [[307, "index-1", false], [321, "index-0", false], [364, "index-0", false]], "platform": [[303, "module-platform", false]], "platform (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.platform", false]], "platform() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.platform", false]], "platform\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-25", false]], "platlibdir (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.platlibdir", false]], "playsound() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.PlaySound", false]], "plist": [[304, "index-0", false]], "plistlib": [[304, "module-plistlib", false]], "plock() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.plock", false]], "plus (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PLUS", false]], "plus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.plus", false]], "plusequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PLUSEQUAL", false]], "plus\uff08\u52a0\uff09": [[430, "index-61", false]], "pm() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.pm", false]], "pointer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.POINTER", false], [176, "ctypes.pointer", false]], "polar() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.polar", false]], "policy (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.Policy", false]], "poll() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.poll", false]], "poll() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.poll", false]], "poll() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.poll", false]], "poll() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.poll", false]], "poll() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.poll", false]], "poll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.poll", false]], "pollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.PollSelector", false]], "pool (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.Pool", false]], "pop() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.pop", false]], "pop() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.pop", false]], "pop() (dict \u7684\u65b9\u6cd5)": [[344, "dict.pop", false]], "pop() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.pop", false]], "pop() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.pop", false]], "pop()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "pop3": [[305, "index-0", false]], "pop3 (poplib \u4e2d\u7684\u985e\u5225)": [[305, "poplib.POP3", false]], "pop3_ssl (poplib \u4e2d\u7684\u985e\u5225)": [[305, "poplib.POP3_SSL", false]], "pop_all() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.pop_all", false]], "pop_block (opcode)": [[191, "opcode-POP_BLOCK", false]], "pop_except (opcode)": [[191, "opcode-POP_EXCEPT", false]], "pop_jump_if_false (opcode)": [[191, "opcode-POP_JUMP_IF_FALSE", false]], "pop_jump_if_none (opcode)": [[191, "opcode-POP_JUMP_IF_NONE", false]], "pop_jump_if_not_none (opcode)": [[191, "opcode-POP_JUMP_IF_NOT_NONE", false]], "pop_jump_if_true (opcode)": [[191, "opcode-POP_JUMP_IF_TRUE", false]], "pop_source() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.pop_source", false]], "pop_top (opcode)": [[191, "opcode-POP_TOP", false]], "popen (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.Popen", false]], "popen() (\u65bc os \u6a21\u7d44)": [[328, "index-1", false]], "popen() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.popen", false]], "popen() \uff08\u65bc os \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "popitem() (collections.ordereddict \u7684\u65b9\u6cd5)": [[160, "collections.OrderedDict.popitem", false]], "popitem() (dict \u7684\u65b9\u6cd5)": [[344, "dict.popitem", false]], "popitem() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.popitem", false]], "popleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.popleft", false]], "poplib": [[305, "module-poplib", false]], "popupmenu (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.PopupMenu", false]], "port (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.port", false]], "port_specified (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.port_specified", false]], "portion\uff08\u90e8\u5206\uff09": [[87, "term-portion", true], [432, "index-5", false]], "pos (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.pos", false]], "pos (re.error \u7684\u5c6c\u6027)": [[319, "re.error.pos", false]], "pos (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.pos", false]], "pos() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.pos", false]], "pos() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pos", false]], "position (xml.etree.elementtree.parseerror \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.ParseError.position", false]], "position() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.position", false]], "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09": [[87, "term-positional-argument", true]], "positions (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Positions", false]], "positions (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.positions", false]], "positions (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.positions", false]], "positions.col_offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.col_offset", false]], "positions.end_col_offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.end_col_offset", false]], "positions.end_lineno (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.end_lineno", false]], "positions.lineno (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.lineno", false]], "posix": [[115, "index-1", false], [306, "module-posix", false], [361, "index-0", false]], "posix shared memory\uff08posix \u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "posix_fadv_dontneed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_DONTNEED", false]], "posix_fadv_noreuse (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_NOREUSE", false]], "posix_fadv_normal (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_NORMAL", false]], "posix_fadv_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_RANDOM", false]], "posix_fadv_sequential (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_SEQUENTIAL", false]], "posix_fadv_willneed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_WILLNEED", false]], "posix_fadvise() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_fadvise", false]], "posix_fallocate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_fallocate", false]], "posix_spawn() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_spawn", false]], "posix_spawn_close (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_CLOSE", false]], "posix_spawn_dup2 (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_DUP2", false]], "posix_spawn_open (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_OPEN", false]], "posix_spawnp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_spawnp", false]], "posixly_correct": [[228, "index-0", false]], "posixpath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PosixPath", false]], "post() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.post", false]], "post() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.post", false]], "post_handshake_auth (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.post_handshake_auth", false]], "post_mortem() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.post_mortem", false]], "post_setup() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.post_setup", false]], "postcmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.postcmd", false]], "postloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.postloop", false]], "pow": [[47, "index-1", false], [47, "index-3", false], [428, "index-100", false], [428, "index-101", false], [428, "index-102", false]], "pow (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Pow", false]], "pow()": [[225, "pow", false]], "pow() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.pow", false]], "pow() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.pow", false]], "power() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.power", false]], "power\uff08\u6b21\u65b9\uff09": [[430, "index-58", false]], "pp (pdb command)": [[297, "pdbcommand-pp", false]], "pp() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pp", false]], "pprint": [[307, "module-pprint", false]], "pprint() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.pprint", false]], "pprint() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pprint", false]], "prcal() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.prcal", false]], "pread() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pread", false]], "preadv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.preadv", false]], "preamble (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.preamble", false]], "preamble (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.preamble", false]], "precedence\uff08\u512a\u5148\u9806\u5e8f\uff09": [[430, "index-97", false]], "precmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.precmd", false]], "prefix (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.prefix", false]], "prefix (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.prefix", false]], "prefix (zipimport.zipimporter \u7684\u5c6c\u6027)": [[423, "zipimport.zipimporter.prefix", false]], "prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.prefix", false]], "prefixes (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.PREFIXES", false]], "prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.prefixlen", false]], "prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.prefixlen", false]], "preloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.preloop", false]], "prepare() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.prepare", false]], "prepare() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.prepare", false]], "prepare() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.prepare", false]], "prepare_class() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.prepare_class", false]], "prepare_input_source() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.prepare_input_source", false]], "prepareprotocol (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.PrepareProtocol", false]], "prepend() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.prepend", false]], "prettyprinter (pprint \u4e2d\u7684\u985e\u5225)": [[307, "pprint.PrettyPrinter", false]], "prev() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.prev", false]], "previoussibling (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.previousSibling", false]], "primary\uff08\u4e3b\u8981\uff09": [[430, "index-38", false]], "print": [[428, "index-78", false]], "print (2to3 fixer)": [[112, "to3fixer-print", false]], "print()": [[225, "print", false]], "print() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.print", false]], "print() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-76", false]], "print_callees() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_callees", false]], "print_callers() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_callers", false]], "print_directory() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_directory", false]], "print_environ() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_environ", false]], "print_environ_usage() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_environ_usage", false]], "print_exc() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.print_exc", false]], "print_exc() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_exc", false]], "print_exception() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_exception", false]], "print_form() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_form", false]], "print_help() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.print_help", false]], "print_last() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_last", false]], "print_stack() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.print_stack", false]], "print_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_stack", false]], "print_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.print_stats", false]], "print_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_stats", false]], "print_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_tb", false]], "print_usage() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.print_usage", false]], "print_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.print_usage", false]], "print_version() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.print_version", false]], "print_warning() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.print_warning", false]], "printable (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.printable", false]], "printdir() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.printdir", false]], "printf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-35", false], [344, "index-45", false]], "prio_darwin_bg (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_BG", false]], "prio_darwin_nonui (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_NONUI", false]], "prio_darwin_process (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_PROCESS", false]], "prio_darwin_thread (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_THREAD", false]], "prio_pgrp (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_PGRP", false]], "prio_process (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_PROCESS", false]], "prio_user (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_USER", false]], "priorityqueue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.PriorityQueue", false]], "priorityqueue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.PriorityQueue", false]], "private": [[430, "index-5", false]], "prlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.prlimit", false]], "prmonth() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.prmonth", false]], "prmonth() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.prmonth", false]], "proactoreventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.ProactorEventLoop", false]], "procedure": [[436, "index-3", false]], "process": [[293, "index-12", false], [293, "index-13", false], [293, "index-14", false], [293, "index-15", false], [293, "index-18", false], [293, "index-37", false], [293, "index-38", false], [293, "index-9", false]], "process (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Process", false]], "process() (logging.loggeradapter \u7684\u65b9\u6cd5)": [[267, "logging.LoggerAdapter.process", false]], "process_exited() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.process_exited", false]], "process_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.process_request", false]], "process_time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.process_time", false]], "process_time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.process_time_ns", false]], "process_tokens() (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.process_tokens", false]], "processerror": [[283, "multiprocessing.ProcessError", false]], "processes, light-weight": [[115, "index-0", false]], "processinginstruction() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.processingInstruction", false]], "processinginstruction() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.ProcessingInstruction", false]], "processinginstructionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ProcessingInstructionHandler", false]], "processlookuperror": [[213, "ProcessLookupError", false]], "processor time\uff08\u8655\u7406\u5668\u6642\u9593\uff09": [[366, "index-12", false], [366, "index-7", false]], "processor() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.processor", false]], "processpoolexecutor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.ProcessPoolExecutor", false]], "prod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.prod", false]], "product() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.product", false]], "profile": [[308, "module-profile", false]], "profile (profile \u4e2d\u7684\u985e\u5225)": [[308, "profile.Profile", false]], "profile function": [[352, "index-10", false], [352, "index-28", false], [365, "index-2", false], [365, "index-3", false]], "profile_task": [[456, "envvar-PROFILE_TASK", false], [456, "index-4", false]], "profiler": [[352, "index-10", false], [352, "index-28", false]], "profiling, deterministic": [[308, "index-0", false]], "programmingerror": [[340, "sqlite3.ProgrammingError", false]], "program\uff08\u7a0b\u5f0f\uff09": [[437, "index-1", false]], "progressbar (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Progressbar", false]], "prompt (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.prompt", false]], "prompt_user_passwd() (urllib.request.fancyurlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.FancyURLopener.prompt_user_passwd", false]], "prompts, interpreter\uff08\u63d0\u793a\u3001\u76f4\u8b6f\u5668\uff09": [[352, "index-27", false]], "propagate (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.propagate", false]], "property (\u5167\u5efa\u985e\u5225)": [[225, "property", false]], "property list\uff08\u5c6c\u6027\u6e05\u55ae\uff09": [[304, "index-0", false]], "property() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.property", false]], "property.deleter()": [[225, "property.deleter", false]], "property.getter()": [[225, "property.getter", false]], "property.setter()": [[225, "property.setter", false]], "property_declaration_handler (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_declaration_handler", false]], "property_dom_node (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_dom_node", false]], "property_lexical_handler (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_lexical_handler", false]], "property_xml_string (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_xml_string", false]], "propertymock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.PropertyMock", false]], "prot_c() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.prot_c", false]], "prot_p() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.prot_p", false]], "proto (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.proto", false]], "protocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.Protocol", false]], "protocol (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.protocol", false]], "protocol (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Protocol", false]], "protocol_sslv23 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_SSLv23", false]], "protocol_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_SSLv3", false]], "protocol_tls (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS", false]], "protocol_tls_client (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS_CLIENT", false]], "protocol_tls_server (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS_SERVER", false]], "protocol_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1", false]], "protocol_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1_1", false]], "protocol_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1_2", false]], "protocol_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.protocol_version", false]], "protocol_version (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.PROTOCOL_VERSION", false]], "protocolerror (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.ProtocolError", false]], "protocol\uff08\u5354\u5b9a\uff09": [[151, "index-0", false], [223, "index-0", false], [241, "index-0", false], [242, "index-0", false], [245, "index-0", false], [248, "index-0", false], [288, "index-0", false], [299, "index-5", false], [305, "index-0", false], [335, "index-0", false], [344, "index-18", false], [344, "index-54", false], [359, "index-0", false], [395, "index-10", false], [395, "index-9", false]], "provisional api\uff08\u66ab\u884c api\uff09": [[87, "term-provisional-API", true]], "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09": [[87, "term-provisional-package", true]], "proxy() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.proxy", false]], "proxyauth() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.proxyauth", false]], "proxybasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyBasicAuthHandler", false]], "proxydigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyDigestAuthHandler", false]], "proxyhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyHandler", false]], "proxytype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ProxyType", false]], "proxytypes (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ProxyTypes", false]], "pryear() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.pryear", false]], "ps1 (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.ps1", false]], "ps2 (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.ps2", false]], "pstats": [[308, "module-pstats", false]], "pstdev() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.pstdev", false]], "pthread_getcpuclockid() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.pthread_getcpuclockid", false]], "pthread_kill() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pthread_kill", false]], "pthread_sigmask() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pthread_sigmask", false]], "pthreads": [[115, "index-1", false]], "pthreads (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.pthreads", false]], "pty": [[293, "index-23", false], [309, "module-pty", false]], "pu() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pu", false]], "publicid (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.publicId", false]], "pulldom (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.PullDom", false]], "punctuation (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.punctuation", false]], "punctuation_chars (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.punctuation_chars", false]], "purepath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PurePath", false]], "pureposixpath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PurePosixPath", false]], "purewindowspath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PureWindowsPath", false]], "purge() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.purge", false]], "purify": [[456, "envvar-PURIFY", false]], "purpose.client_auth (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.Purpose.CLIENT_AUTH", false]], "purpose.server_auth (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.Purpose.SERVER_AUTH", false]], "push() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.push", false]], "push() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.push", false]], "push_async_callback() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.push_async_callback", false]], "push_async_exit() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.push_async_exit", false]], "push_exc_info (opcode)": [[191, "opcode-PUSH_EXC_INFO", false]], "push_null (opcode)": [[191, "opcode-PUSH_NULL", false]], "push_source() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.push_source", false]], "push_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.push_token", false]], "pushbutton() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.pushbutton", false]], "put() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.put", false]], "put() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.put", false]], "put() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.put", false]], "put() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.put", false]], "put() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.put", false]], "put_nowait() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.put_nowait", false]], "put_nowait() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.put_nowait", false]], "put_nowait() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.put_nowait", false]], "put_nowait() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.put_nowait", false]], "putch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.putch", false]], "putenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.putenv", false]], "putheader() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.putheader", false]], "putp() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.putp", false]], "putrequest() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.putrequest", false]], "putwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.putwch", false]], "putwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.putwin", false]], "pvariance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.pvariance", false]], "pwd": [[294, "index-2", false], [310, "module-pwd", false]], "pwd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.pwd", false]], "pwrite() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pwrite", false]], "pwritev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pwritev", false]], "py_abs (c macro)": [[35, "c.Py_ABS", false]], "py_addpendingcall (c function)": [[33, "c.Py_AddPendingCall", false]], "py_always_inline (c macro)": [[35, "c.Py_ALWAYS_INLINE", false]], "py_atexit (c function)": [[59, "c.Py_AtExit", false]], "py_audit_read (c macro)": [[58, "c.Py_AUDIT_READ", false]], "py_audithookfunction (c type)": [[59, "c.Py_AuditHookFunction", false]], "py_begin_allow_threads (c macro)": [[33, "c.Py_BEGIN_ALLOW_THREADS", false]], "py_begin_allow_threads\uff08c \u5de8\u96c6\uff09": [[33, "index-35", false]], "py_block_threads (c macro)": [[33, "c.Py_BLOCK_THREADS", false]], "py_buffer (c type)": [[7, "c.Py_buffer", false]], "py_buffer.buf (c member)": [[7, "c.Py_buffer.buf", false]], "py_buffer.format (c member)": [[7, "c.Py_buffer.format", false]], "py_buffer.internal (c member)": [[7, "c.Py_buffer.internal", false]], "py_buffer.itemsize (c member)": [[7, "c.Py_buffer.itemsize", false]], "py_buffer.len (c member)": [[7, "c.Py_buffer.len", false]], "py_buffer.ndim (c member)": [[7, "c.Py_buffer.ndim", false]], "py_buffer.obj (c member)": [[7, "c.Py_buffer.obj", false]], "py_buffer.readonly (c member)": [[7, "c.Py_buffer.readonly", false]], "py_buffer.shape (c member)": [[7, "c.Py_buffer.shape", false]], "py_buffer.strides (c member)": [[7, "c.Py_buffer.strides", false]], "py_buffer.suboffsets (c member)": [[7, "c.Py_buffer.suboffsets", false]], "py_buildvalue (c function)": [[5, "c.Py_BuildValue", false]], "py_builtin_module_cflags": [[456, "envvar-PY_BUILTIN_MODULE_CFLAGS", false]], "py_bytesmain (c function)": [[66, "c.Py_BytesMain", false]], "py_byteswarningflag (c var)": [[33, "c.Py_BytesWarningFlag", false]], "py_cflags": [[456, "envvar-PY_CFLAGS", false]], "py_cflags_nodist": [[456, "envvar-PY_CFLAGS_NODIST", false]], "py_charmask (c macro)": [[35, "c.Py_CHARMASK", false]], "py_clear (c function)": [[52, "c.Py_CLEAR", false]], "py_compile": [[311, "module-py_compile", false]], "py_compilestring (c function)": [[66, "c.Py_CompileString", false]], "py_compilestringexflags (c function)": [[66, "c.Py_CompileStringExFlags", false]], "py_compilestringflags (c function)": [[66, "c.Py_CompileStringFlags", false]], "py_compilestringobject (c function)": [[66, "c.Py_CompileStringObject", false]], "py_compilestring\uff08c \u51fd\u5f0f\uff09": [[66, "index-0", false], [66, "index-1", false], [66, "index-2", false]], "py_complex (c type)": [[15, "c.Py_complex", false]], "py_core_cflags": [[456, "envvar-PY_CORE_CFLAGS", false]], "py_core_ldflags": [[456, "envvar-PY_CORE_LDFLAGS", false]], "py_cppflags": [[456, "envvar-PY_CPPFLAGS", false]], "py_debug (c macro)": [[35, "c.Py_DEBUG", false]], "py_debug (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.Py_DEBUG", false]], "py_debugflag (c var)": [[33, "c.Py_DebugFlag", false]], "py_decodelocale (c function)": [[59, "c.Py_DecodeLocale", false]], "py_decref (c function)": [[52, "c.Py_DECREF", false], [52, "c.Py_DecRef", false]], "py_decref\uff08c \u51fd\u5f0f\uff09": [[35, "index-4", false]], "py_deprecated (c macro)": [[35, "c.Py_DEPRECATED", false]], "py_dontwritebytecodeflag (c var)": [[33, "c.Py_DontWriteBytecodeFlag", false]], "py_ellipsis (c var)": [[56, "c.Py_Ellipsis", false]], "py_encodelocale (c function)": [[59, "c.Py_EncodeLocale", false]], "py_end_allow_threads (c macro)": [[33, "c.Py_END_ALLOW_THREADS", false]], "py_end_allow_threads\uff08c \u5de8\u96c6\uff09": [[33, "index-35", false]], "py_endinterpreter (c function)": [[33, "c.Py_EndInterpreter", false]], "py_enterrecursivecall (c function)": [[23, "c.Py_EnterRecursiveCall", false]], "py_eq (c macro)": [[63, "c.Py_EQ", false]], "py_eval_input (c var)": [[66, "c.Py_eval_input", false]], "py_exit (c function)": [[59, "c.Py_Exit", false]], "py_exitstatusexception (c function)": [[34, "c.Py_ExitStatusException", false]], "py_false (c var)": [[6, "c.Py_False", false]], "py_fatalerror (c function)": [[59, "c.Py_FatalError", false]], "py_fatalerror()": [[33, "index-29", false]], "py_fdisinteractive (c function)": [[59, "c.Py_FdIsInteractive", false]], "py_file_input (c var)": [[66, "c.Py_file_input", false]], "py_finalize (c function)": [[33, "c.Py_Finalize", false]], "py_finalizeex (c function)": [[33, "c.Py_FinalizeEx", false]], "py_finalizeex\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false], [33, "index-43", false], [33, "index-46", false], [59, "index-3", false], [59, "index-4", false]], "py_frozenflag (c var)": [[33, "c.Py_FrozenFlag", false]], "py_ge (c macro)": [[63, "c.Py_GE", false]], "py_genericalias (c function)": [[62, "c.Py_GenericAlias", false]], "py_genericaliastype (c var)": [[62, "c.Py_GenericAliasType", false]], "py_getargcargv (c function)": [[34, "c.Py_GetArgcArgv", false]], "py_getbuildinfo (c function)": [[33, "c.Py_GetBuildInfo", false]], "py_getcompiler (c function)": [[33, "c.Py_GetCompiler", false]], "py_getcopyright (c function)": [[33, "c.Py_GetCopyright", false]], "py_getenv (c macro)": [[35, "c.Py_GETENV", false]], "py_getexecprefix (c function)": [[33, "c.Py_GetExecPrefix", false]], "py_getexecprefix\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getpath (c function)": [[33, "c.Py_GetPath", false]], "py_getpath()": [[33, "index-19", false], [33, "index-23", false]], "py_getpath\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getplatform (c function)": [[33, "c.Py_GetPlatform", false]], "py_getprefix (c function)": [[33, "c.Py_GetPrefix", false]], "py_getprefix\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getprogramfullpath (c function)": [[33, "c.Py_GetProgramFullPath", false]], "py_getprogramfullpath\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getprogramname (c function)": [[33, "c.Py_GetProgramName", false]], "py_getpythonhome (c function)": [[33, "c.Py_GetPythonHome", false]], "py_getversion (c function)": [[33, "c.Py_GetVersion", false]], "py_gt (c macro)": [[63, "c.Py_GT", false]], "py_hash_t (c type)": [[30, "c.Py_hash_t", false]], "py_hashrandomizationflag (c var)": [[33, "c.Py_HashRandomizationFlag", false]], "py_ignoreenvironmentflag (c var)": [[33, "c.Py_IgnoreEnvironmentFlag", false]], "py_incref (c function)": [[52, "c.Py_INCREF", false], [52, "c.Py_IncRef", false]], "py_incref\uff08c \u51fd\u5f0f\uff09": [[35, "index-4", false]], "py_initialize (c function)": [[33, "c.Py_Initialize", false]], "py_initialize()": [[33, "index-16", false], [33, "index-19", false]], "py_initializeex (c function)": [[33, "c.Py_InitializeEx", false]], "py_initializefromconfig (c function)": [[34, "c.Py_InitializeFromConfig", false]], "py_initialize\uff08c \u51fd\u5f0f\uff09": [[33, "index-43", false], [35, "index-18", false]], "py_inspectflag (c var)": [[33, "c.Py_InspectFlag", false]], "py_interactiveflag (c var)": [[33, "c.Py_InteractiveFlag", false]], "py_is (c function)": [[58, "c.Py_Is", false]], "py_is_type (c function)": [[58, "c.Py_IS_TYPE", false]], "py_isfalse (c function)": [[58, "c.Py_IsFalse", false]], "py_isinitialized (c function)": [[33, "c.Py_IsInitialized", false]], "py_isinitialized\uff08c \u51fd\u5f0f\uff09": [[35, "index-26", false]], "py_isnone (c function)": [[58, "c.Py_IsNone", false]], "py_isolatedflag (c var)": [[33, "c.Py_IsolatedFlag", false]], "py_istrue (c function)": [[58, "c.Py_IsTrue", false]], "py_ldflags": [[456, "envvar-PY_LDFLAGS", false]], "py_ldflags_nodist": [[456, "envvar-PY_LDFLAGS_NODIST", false]], "py_le (c macro)": [[63, "c.Py_LE", false]], "py_leaverecursivecall (c function)": [[23, "c.Py_LeaveRecursiveCall", false]], "py_legacywindowsfsencodingflag (c var)": [[33, "c.Py_LegacyWindowsFSEncodingFlag", false]], "py_legacywindowsstdioflag (c var)": [[33, "c.Py_LegacyWindowsStdioFlag", false]], "py_limited_api (c macro)": [[57, "c.Py_LIMITED_API", false]], "py_lt (c macro)": [[63, "c.Py_LT", false]], "py_main (c function)": [[66, "c.Py_Main", false]], "py_major_version (c macro)": [[4, "c.PY_MAJOR_VERSION", false]], "py_max (c macro)": [[35, "c.Py_MAX", false]], "py_member_size (c macro)": [[35, "c.Py_MEMBER_SIZE", false]], "py_micro_version (c macro)": [[4, "c.PY_MICRO_VERSION", false]], "py_min (c macro)": [[35, "c.Py_MIN", false]], "py_minor_version (c macro)": [[4, "c.PY_MINOR_VERSION", false]], "py_mod_create (c macro)": [[45, "c.Py_mod_create", false]], "py_mod_exec (c macro)": [[45, "c.Py_mod_exec", false]], "py_mod_multiple_interpreters (c macro)": [[45, "c.Py_mod_multiple_interpreters", false]], "py_mod_multiple_interpreters_not_supported (c macro)": [[45, "c.Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED", false]], "py_mod_multiple_interpreters_supported (c macro)": [[45, "c.Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED", false]], "py_mod_per_interpreter_gil_supported (c macro)": [[45, "c.Py_MOD_PER_INTERPRETER_GIL_SUPPORTED", false]], "py_ne (c macro)": [[63, "c.Py_NE", false]], "py_newinterpreter (c function)": [[33, "c.Py_NewInterpreter", false]], "py_newinterpreterfromconfig (c function)": [[33, "c.Py_NewInterpreterFromConfig", false]], "py_newref (c function)": [[52, "c.Py_NewRef", false]], "py_no_inline (c macro)": [[35, "c.Py_NO_INLINE", false]], "py_none (c var)": [[46, "c.Py_None", false]], "py_nositeflag (c var)": [[33, "c.Py_NoSiteFlag", false]], "py_notimplemented (c var)": [[49, "c.Py_NotImplemented", false]], "py_nousersitedirectory (c var)": [[33, "c.Py_NoUserSiteDirectory", false]], "py_object (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.py_object", false]], "py_optimizeflag (c var)": [[33, "c.Py_OptimizeFlag", false]], "py_preinitialize (c function)": [[34, "c.Py_PreInitialize", false]], "py_preinitializefromargs (c function)": [[34, "c.Py_PreInitializeFromArgs", false]], "py_preinitializefrombytesargs (c function)": [[34, "c.Py_PreInitializeFromBytesArgs", false]], "py_print_raw (c macro)": [[49, "c.Py_PRINT_RAW", false]], "py_print_raw\uff08c \u5de8\u96c6\uff09": [[24, "index-2", false]], "py_python": [[461, "index-26", false]], "py_quietflag (c var)": [[33, "c.Py_QuietFlag", false]], "py_readonly (c macro)": [[58, "c.Py_READONLY", false]], "py_refcnt (c function)": [[52, "c.Py_REFCNT", false]], "py_relative_offset (c macro)": [[58, "c.Py_RELATIVE_OFFSET", false]], "py_release_level (c macro)": [[4, "c.PY_RELEASE_LEVEL", false]], "py_release_serial (c macro)": [[4, "c.PY_RELEASE_SERIAL", false]], "py_reprenter (c function)": [[23, "c.Py_ReprEnter", false]], "py_reprleave (c function)": [[23, "c.Py_ReprLeave", false]], "py_resume (monitoring event)": [[353, "monitoring-event-PY_RESUME", false]], "py_return (monitoring event)": [[353, "monitoring-event-PY_RETURN", false]], "py_return_false (c macro)": [[6, "c.Py_RETURN_FALSE", false]], "py_return_none (c macro)": [[46, "c.Py_RETURN_NONE", false]], "py_return_notimplemented (c macro)": [[49, "c.Py_RETURN_NOTIMPLEMENTED", false]], "py_return_richcompare (c macro)": [[63, "c.Py_RETURN_RICHCOMPARE", false]], "py_return_true (c macro)": [[6, "c.Py_RETURN_TRUE", false]], "py_runmain (c function)": [[34, "c.Py_RunMain", false]], "py_set_refcnt (c function)": [[52, "c.Py_SET_REFCNT", false]], "py_set_size (c function)": [[58, "c.Py_SET_SIZE", false]], "py_set_type (c function)": [[58, "c.Py_SET_TYPE", false]], "py_setpath (c function)": [[33, "c.Py_SetPath", false]], "py_setpath()": [[33, "index-22", false]], "py_setprogramname (c function)": [[33, "c.Py_SetProgramName", false]], "py_setprogramname()": [[33, "index-15", false], [33, "index-20", false], [33, "index-21", false]], "py_setprogramname\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_setpythonhome (c function)": [[33, "c.Py_SetPythonHome", false]], "py_setref (c macro)": [[52, "c.Py_SETREF", false]], "py_setstandardstreamencoding (c function)": [[33, "c.Py_SetStandardStreamEncoding", false]], "py_single_input (c var)": [[66, "c.Py_single_input", false]], "py_size (c function)": [[58, "c.Py_SIZE", false]], "py_ssize_t (c type)": [[35, "c.Py_ssize_t", false]], "py_ssize_t_max\uff08c \u5de8\u96c6\uff09": [[39, "index-3", false]], "py_start (monitoring event)": [[353, "monitoring-event-PY_START", false]], "py_stdmodule_cflags": [[456, "envvar-PY_STDMODULE_CFLAGS", false]], "py_stringify (c macro)": [[35, "c.Py_STRINGIFY", false]], "py_t_bool (c macro)": [[58, "c.Py_T_BOOL", false]], "py_t_byte (c macro)": [[58, "c.Py_T_BYTE", false]], "py_t_char (c macro)": [[58, "c.Py_T_CHAR", false]], "py_t_double (c macro)": [[58, "c.Py_T_DOUBLE", false]], "py_t_float (c macro)": [[58, "c.Py_T_FLOAT", false]], "py_t_int (c macro)": [[58, "c.Py_T_INT", false]], "py_t_long (c macro)": [[58, "c.Py_T_LONG", false]], "py_t_longlong (c macro)": [[58, "c.Py_T_LONGLONG", false]], "py_t_object_ex (c macro)": [[58, "c.Py_T_OBJECT_EX", false]], "py_t_pyssizet (c macro)": [[58, "c.Py_T_PYSSIZET", false]], "py_t_short (c macro)": [[58, "c.Py_T_SHORT", false]], "py_t_string (c macro)": [[58, "c.Py_T_STRING", false]], "py_t_string_inplace (c macro)": [[58, "c.Py_T_STRING_INPLACE", false]], "py_t_ubyte (c macro)": [[58, "c.Py_T_UBYTE", false]], "py_t_uint (c macro)": [[58, "c.Py_T_UINT", false]], "py_t_ulong (c macro)": [[58, "c.Py_T_ULONG", false]], "py_t_ulonglong (c macro)": [[58, "c.Py_T_ULONGLONG", false]], "py_t_ushort (c macro)": [[58, "c.Py_T_USHORT", false]], "py_throw (monitoring event)": [[353, "monitoring-event-PY_THROW", false]], "py_tpflags_base_exc_subclass (c macro)": [[63, "c.Py_TPFLAGS_BASE_EXC_SUBCLASS", false]], "py_tpflags_basetype (c macro)": [[63, "c.Py_TPFLAGS_BASETYPE", false]], "py_tpflags_bytes_subclass (c macro)": [[63, "c.Py_TPFLAGS_BYTES_SUBCLASS", false]], "py_tpflags_default (c macro)": [[63, "c.Py_TPFLAGS_DEFAULT", false]], "py_tpflags_dict_subclass (c macro)": [[63, "c.Py_TPFLAGS_DICT_SUBCLASS", false]], "py_tpflags_disallow_instantiation (c macro)": [[63, "c.Py_TPFLAGS_DISALLOW_INSTANTIATION", false]], "py_tpflags_have_finalize (c macro)": [[63, "c.Py_TPFLAGS_HAVE_FINALIZE", false]], "py_tpflags_have_gc (c macro)": [[63, "c.Py_TPFLAGS_HAVE_GC", false]], "py_tpflags_have_vectorcall (c macro)": [[63, "c.Py_TPFLAGS_HAVE_VECTORCALL", false]], "py_tpflags_heaptype (c macro)": [[63, "c.Py_TPFLAGS_HEAPTYPE", false]], "py_tpflags_immutabletype (c macro)": [[63, "c.Py_TPFLAGS_IMMUTABLETYPE", false]], "py_tpflags_items_at_end (c macro)": [[63, "c.Py_TPFLAGS_ITEMS_AT_END", false]], "py_tpflags_list_subclass (c macro)": [[63, "c.Py_TPFLAGS_LIST_SUBCLASS", false]], "py_tpflags_long_subclass (c macro)": [[63, "c.Py_TPFLAGS_LONG_SUBCLASS", false]], "py_tpflags_managed_dict (c macro)": [[63, "c.Py_TPFLAGS_MANAGED_DICT", false]], "py_tpflags_managed_weakref (c macro)": [[63, "c.Py_TPFLAGS_MANAGED_WEAKREF", false]], "py_tpflags_mapping (c macro)": [[63, "c.Py_TPFLAGS_MAPPING", false]], "py_tpflags_method_descriptor (c macro)": [[63, "c.Py_TPFLAGS_METHOD_DESCRIPTOR", false]], "py_tpflags_ready (c macro)": [[63, "c.Py_TPFLAGS_READY", false]], "py_tpflags_readying (c macro)": [[63, "c.Py_TPFLAGS_READYING", false]], "py_tpflags_sequence (c macro)": [[63, "c.Py_TPFLAGS_SEQUENCE", false]], "py_tpflags_tuple_subclass (c macro)": [[63, "c.Py_TPFLAGS_TUPLE_SUBCLASS", false]], "py_tpflags_type_subclass (c macro)": [[63, "c.Py_TPFLAGS_TYPE_SUBCLASS", false]], "py_tpflags_unicode_subclass (c macro)": [[63, "c.Py_TPFLAGS_UNICODE_SUBCLASS", false]], "py_tpflags_valid_version_tag (c macro)": [[63, "c.Py_TPFLAGS_VALID_VERSION_TAG", false]], "py_tracefunc (c type)": [[33, "c.Py_tracefunc", false]], "py_true (c var)": [[6, "c.Py_True", false]], "py_tss_needs_init (c macro)": [[33, "c.Py_tss_NEEDS_INIT", false]], "py_tss_t (c type)": [[33, "c.Py_tss_t", false]], "py_type (c function)": [[58, "c.Py_TYPE", false]], "py_ucs1 (c type)": [[64, "c.Py_UCS1", false]], "py_ucs2 (c type)": [[64, "c.Py_UCS2", false]], "py_ucs4 (c type)": [[64, "c.Py_UCS4", false]], "py_uhash_t (c type)": [[30, "c.Py_uhash_t", false]], "py_unblock_threads (c macro)": [[33, "c.Py_UNBLOCK_THREADS", false]], "py_unbufferedstdioflag (c var)": [[33, "c.Py_UnbufferedStdioFlag", false]], "py_unicode (c type)": [[64, "c.Py_UNICODE", false]], "py_unicode_is_high_surrogate (c function)": [[64, "c.Py_UNICODE_IS_HIGH_SURROGATE", false]], "py_unicode_is_low_surrogate (c function)": [[64, "c.Py_UNICODE_IS_LOW_SURROGATE", false]], "py_unicode_is_surrogate (c function)": [[64, "c.Py_UNICODE_IS_SURROGATE", false]], "py_unicode_isalnum (c function)": [[64, "c.Py_UNICODE_ISALNUM", false]], "py_unicode_isalpha (c function)": [[64, "c.Py_UNICODE_ISALPHA", false]], "py_unicode_isdecimal (c function)": [[64, "c.Py_UNICODE_ISDECIMAL", false]], "py_unicode_isdigit (c function)": [[64, "c.Py_UNICODE_ISDIGIT", false]], "py_unicode_islinebreak (c function)": [[64, "c.Py_UNICODE_ISLINEBREAK", false]], "py_unicode_islower (c function)": [[64, "c.Py_UNICODE_ISLOWER", false]], "py_unicode_isnumeric (c function)": [[64, "c.Py_UNICODE_ISNUMERIC", false]], "py_unicode_isprintable (c function)": [[64, "c.Py_UNICODE_ISPRINTABLE", false]], "py_unicode_isspace (c function)": [[64, "c.Py_UNICODE_ISSPACE", false]], "py_unicode_istitle (c function)": [[64, "c.Py_UNICODE_ISTITLE", false]], "py_unicode_isupper (c function)": [[64, "c.Py_UNICODE_ISUPPER", false]], "py_unicode_join_surrogates (c function)": [[64, "c.Py_UNICODE_JOIN_SURROGATES", false]], "py_unicode_todecimal (c function)": [[64, "c.Py_UNICODE_TODECIMAL", false]], "py_unicode_todigit (c function)": [[64, "c.Py_UNICODE_TODIGIT", false]], "py_unicode_tolower (c function)": [[64, "c.Py_UNICODE_TOLOWER", false]], "py_unicode_tonumeric (c function)": [[64, "c.Py_UNICODE_TONUMERIC", false]], "py_unicode_totitle (c function)": [[64, "c.Py_UNICODE_TOTITLE", false]], "py_unicode_toupper (c function)": [[64, "c.Py_UNICODE_TOUPPER", false]], "py_unreachable (c macro)": [[35, "c.Py_UNREACHABLE", false]], "py_unused (c macro)": [[35, "c.Py_UNUSED", false]], "py_unwind (monitoring event)": [[353, "monitoring-event-PY_UNWIND", false]], "py_vabuildvalue (c function)": [[5, "c.Py_VaBuildValue", false]], "py_vectorcall_arguments_offset (c macro)": [[10, "c.PY_VECTORCALL_ARGUMENTS_OFFSET", false]], "py_verboseflag (c var)": [[33, "c.Py_VerboseFlag", false]], "py_version (c var)": [[4, "c.Py_Version", false]], "py_version_hex (c macro)": [[4, "c.PY_VERSION_HEX", false]], "py_visit (c function)": [[28, "c.Py_VISIT", false]], "py_xdecref (c function)": [[52, "c.Py_XDECREF", false]], "py_xdecref\uff08c \u51fd\u5f0f\uff09": [[35, "index-17", false]], "py_xincref (c function)": [[52, "c.Py_XINCREF", false]], "py_xnewref (c function)": [[52, "c.Py_XNewRef", false]], "py_xsetref (c macro)": [[52, "c.Py_XSETREF", false]], "py_yield (monitoring event)": [[353, "monitoring-event-PY_YIELD", false]], "pyaiter_check (c function)": [[36, "c.PyAIter_Check", false]], "pyanyset_check (c function)": [[55, "c.PyAnySet_Check", false]], "pyanyset_checkexact (c function)": [[55, "c.PyAnySet_CheckExact", false]], "pyarg_parse (c function)": [[5, "c.PyArg_Parse", false]], "pyarg_parsetuple (c function)": [[5, "c.PyArg_ParseTuple", false]], "pyarg_parsetupleandkeywords (c function)": [[5, "c.PyArg_ParseTupleAndKeywords", false]], "pyarg_parsetupleandkeywords\uff08c \u51fd\u5f0f\uff09": [[73, "index-3", false]], "pyarg_parsetuple\uff08c \u51fd\u5f0f\uff09": [[73, "index-2", false]], "pyarg_unpacktuple (c function)": [[5, "c.PyArg_UnpackTuple", false]], "pyarg_validatekeywordarguments (c function)": [[5, "c.PyArg_ValidateKeywordArguments", false]], "pyarg_vaparse (c function)": [[5, "c.PyArg_VaParse", false]], "pyarg_vaparsetupleandkeywords (c function)": [[5, "c.PyArg_VaParseTupleAndKeywords", false]], "pyasciiobject (c type)": [[64, "c.PyASCIIObject", false]], "pyasyncmethods (c type)": [[63, "c.PyAsyncMethods", false]], "pyasyncmethods.am_aiter (c member)": [[63, "c.PyAsyncMethods.am_aiter", false]], "pyasyncmethods.am_anext (c member)": [[63, "c.PyAsyncMethods.am_anext", false]], "pyasyncmethods.am_await (c member)": [[63, "c.PyAsyncMethods.am_await", false]], "pyasyncmethods.am_send (c member)": [[63, "c.PyAsyncMethods.am_send", false]], "pybool_check (c function)": [[6, "c.PyBool_Check", false]], "pybool_fromlong (c function)": [[6, "c.PyBool_FromLong", false]], "pybool_type (c var)": [[6, "c.PyBool_Type", false]], "pybuf_any_contiguous (c macro)": [[7, "c.PyBUF_ANY_CONTIGUOUS", false]], "pybuf_c_contiguous (c macro)": [[7, "c.PyBUF_C_CONTIGUOUS", false]], "pybuf_contig (c macro)": [[7, "c.PyBUF_CONTIG", false]], "pybuf_contig_ro (c macro)": [[7, "c.PyBUF_CONTIG_RO", false]], "pybuf_f_contiguous (c macro)": [[7, "c.PyBUF_F_CONTIGUOUS", false]], "pybuf_format (c macro)": [[7, "c.PyBUF_FORMAT", false]], "pybuf_full (c macro)": [[7, "c.PyBUF_FULL", false]], "pybuf_full_ro (c macro)": [[7, "c.PyBUF_FULL_RO", false]], "pybuf_indirect (c macro)": [[7, "c.PyBUF_INDIRECT", false]], "pybuf_max_ndim (c macro)": [[7, "c.PyBUF_MAX_NDIM", false]], "pybuf_nd (c macro)": [[7, "c.PyBUF_ND", false]], "pybuf_read (c macro)": [[43, "c.PyBUF_READ", false]], "pybuf_records (c macro)": [[7, "c.PyBUF_RECORDS", false]], "pybuf_records_ro (c macro)": [[7, "c.PyBUF_RECORDS_RO", false]], "pybuf_simple (c macro)": [[7, "c.PyBUF_SIMPLE", false]], "pybuf_strided (c macro)": [[7, "c.PyBUF_STRIDED", false]], "pybuf_strided_ro (c macro)": [[7, "c.PyBUF_STRIDED_RO", false]], "pybuf_strides (c macro)": [[7, "c.PyBUF_STRIDES", false]], "pybuf_writable (c macro)": [[7, "c.PyBUF_WRITABLE", false]], "pybuf_write (c macro)": [[43, "c.PyBUF_WRITE", false]], "pybuffer_fillcontiguousstrides (c function)": [[7, "c.PyBuffer_FillContiguousStrides", false]], "pybuffer_fillinfo (c function)": [[7, "c.PyBuffer_FillInfo", false]], "pybuffer_fromcontiguous (c function)": [[7, "c.PyBuffer_FromContiguous", false]], "pybuffer_getpointer (c function)": [[7, "c.PyBuffer_GetPointer", false]], "pybuffer_iscontiguous (c function)": [[7, "c.PyBuffer_IsContiguous", false]], "pybuffer_release (c function)": [[7, "c.PyBuffer_Release", false]], "pybuffer_sizefromformat (c function)": [[7, "c.PyBuffer_SizeFromFormat", false]], "pybuffer_tocontiguous (c function)": [[7, "c.PyBuffer_ToContiguous", false]], "pybufferprocs (c type)": [[63, "c.PyBufferProcs", false]], "pybufferprocs.bf_getbuffer (c member)": [[63, "c.PyBufferProcs.bf_getbuffer", false]], "pybufferprocs.bf_releasebuffer (c member)": [[63, "c.PyBufferProcs.bf_releasebuffer", false]], "pybufferprocs\uff08c \u578b\u5225\uff09": [[7, "index-1", false]], "pybytearray_as_string (c function)": [[8, "c.PyByteArray_AS_STRING", false]], "pybytearray_asstring (c function)": [[8, "c.PyByteArray_AsString", false]], "pybytearray_check (c function)": [[8, "c.PyByteArray_Check", false]], "pybytearray_checkexact (c function)": [[8, "c.PyByteArray_CheckExact", false]], "pybytearray_concat (c function)": [[8, "c.PyByteArray_Concat", false]], "pybytearray_fromobject (c function)": [[8, "c.PyByteArray_FromObject", false]], "pybytearray_fromstringandsize (c function)": [[8, "c.PyByteArray_FromStringAndSize", false]], "pybytearray_get_size (c function)": [[8, "c.PyByteArray_GET_SIZE", false]], "pybytearray_resize (c function)": [[8, "c.PyByteArray_Resize", false]], "pybytearray_size (c function)": [[8, "c.PyByteArray_Size", false]], "pybytearray_type (c var)": [[8, "c.PyByteArray_Type", false]], "pybytearrayobject (c type)": [[8, "c.PyByteArrayObject", false]], "pybytes_as_string (c function)": [[9, "c.PyBytes_AS_STRING", false]], "pybytes_asstring (c function)": [[9, "c.PyBytes_AsString", false]], "pybytes_asstringandsize (c function)": [[9, "c.PyBytes_AsStringAndSize", false]], "pybytes_check (c function)": [[9, "c.PyBytes_Check", false]], "pybytes_checkexact (c function)": [[9, "c.PyBytes_CheckExact", false]], "pybytes_concat (c function)": [[9, "c.PyBytes_Concat", false]], "pybytes_concatanddel (c function)": [[9, "c.PyBytes_ConcatAndDel", false]], "pybytes_fromformat (c function)": [[9, "c.PyBytes_FromFormat", false]], "pybytes_fromformatv (c function)": [[9, "c.PyBytes_FromFormatV", false]], "pybytes_fromobject (c function)": [[9, "c.PyBytes_FromObject", false]], "pybytes_fromstring (c function)": [[9, "c.PyBytes_FromString", false]], "pybytes_fromstringandsize (c function)": [[9, "c.PyBytes_FromStringAndSize", false]], "pybytes_get_size (c function)": [[9, "c.PyBytes_GET_SIZE", false]], "pybytes_size (c function)": [[9, "c.PyBytes_Size", false]], "pybytes_type (c var)": [[9, "c.PyBytes_Type", false]], "pybytesobject (c type)": [[9, "c.PyBytesObject", false]], "pycache_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.pycache_prefix", false]], "pycallable_check (c function)": [[10, "c.PyCallable_Check", false]], "pycalliter_check (c function)": [[37, "c.PyCallIter_Check", false]], "pycalliter_new (c function)": [[37, "c.PyCallIter_New", false]], "pycalliter_type (c var)": [[37, "c.PyCallIter_Type", false]], "pycapsule (c type)": [[11, "c.PyCapsule", false]], "pycapsule_checkexact (c function)": [[11, "c.PyCapsule_CheckExact", false]], "pycapsule_destructor (c type)": [[11, "c.PyCapsule_Destructor", false]], "pycapsule_getcontext (c function)": [[11, "c.PyCapsule_GetContext", false]], "pycapsule_getdestructor (c function)": [[11, "c.PyCapsule_GetDestructor", false]], "pycapsule_getname (c function)": [[11, "c.PyCapsule_GetName", false]], "pycapsule_getpointer (c function)": [[11, "c.PyCapsule_GetPointer", false]], "pycapsule_import (c function)": [[11, "c.PyCapsule_Import", false]], "pycapsule_isvalid (c function)": [[11, "c.PyCapsule_IsValid", false]], "pycapsule_new (c function)": [[11, "c.PyCapsule_New", false]], "pycapsule_setcontext (c function)": [[11, "c.PyCapsule_SetContext", false]], "pycapsule_setdestructor (c function)": [[11, "c.PyCapsule_SetDestructor", false]], "pycapsule_setname (c function)": [[11, "c.PyCapsule_SetName", false]], "pycapsule_setpointer (c function)": [[11, "c.PyCapsule_SetPointer", false]], "pycell_check (c function)": [[12, "c.PyCell_Check", false]], "pycell_get (c function)": [[12, "c.PyCell_GET", false], [12, "c.PyCell_Get", false]], "pycell_new (c function)": [[12, "c.PyCell_New", false]], "pycell_set (c function)": [[12, "c.PyCell_SET", false], [12, "c.PyCell_Set", false]], "pycell_type (c var)": [[12, "c.PyCell_Type", false]], "pycellobject (c type)": [[12, "c.PyCellObject", false]], "pycf_allow_top_level_await (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_ALLOW_TOP_LEVEL_AWAIT", false]], "pycf_only_ast (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_ONLY_AST", false]], "pycf_type_comments (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_TYPE_COMMENTS", false]], "pycfunction (c type)": [[58, "c.PyCFunction", false]], "pycfunction_new (c function)": [[58, "c.PyCFunction_New", false]], "pycfunction_newex (c function)": [[58, "c.PyCFunction_NewEx", false]], "pycfunctionwithkeywords (c type)": [[58, "c.PyCFunctionWithKeywords", false]], "pycinvalidationmode (py_compile \u4e2d\u7684\u985e\u5225)": [[311, "py_compile.PycInvalidationMode", false]], "pyclbr": [[312, "module-pyclbr", false]], "pycmethod (c type)": [[58, "c.PyCMethod", false]], "pycmethod_new (c function)": [[58, "c.PyCMethod_New", false]], "pycode_addr2line (c function)": [[13, "c.PyCode_Addr2Line", false]], "pycode_addr2location (c function)": [[13, "c.PyCode_Addr2Location", false]], "pycode_addwatcher (c function)": [[13, "c.PyCode_AddWatcher", false]], "pycode_check (c function)": [[13, "c.PyCode_Check", false]], "pycode_clearwatcher (c function)": [[13, "c.PyCode_ClearWatcher", false]], "pycode_getcellvars (c function)": [[13, "c.PyCode_GetCellvars", false]], "pycode_getcode (c function)": [[13, "c.PyCode_GetCode", false]], "pycode_getfirstfree (c function)": [[13, "c.PyCode_GetFirstFree", false]], "pycode_getfreevars (c function)": [[13, "c.PyCode_GetFreevars", false]], "pycode_getnumfree (c function)": [[13, "c.PyCode_GetNumFree", false]], "pycode_getvarnames (c function)": [[13, "c.PyCode_GetVarnames", false]], "pycode_newempty (c function)": [[13, "c.PyCode_NewEmpty", false]], "pycode_newwithposonlyargs\uff08c \u51fd\u5f0f\uff09": [[13, "index-2", false]], "pycode_new\uff08c \u51fd\u5f0f\uff09": [[13, "index-1", false]], "pycode_type (c var)": [[13, "c.PyCode_Type", false]], "pycode_watchcallback (c type)": [[13, "c.PyCode_WatchCallback", false]], "pycodec_backslashreplaceerrors (c function)": [[14, "c.PyCodec_BackslashReplaceErrors", false]], "pycodec_decode (c function)": [[14, "c.PyCodec_Decode", false]], "pycodec_decoder (c function)": [[14, "c.PyCodec_Decoder", false]], "pycodec_encode (c function)": [[14, "c.PyCodec_Encode", false]], "pycodec_encoder (c function)": [[14, "c.PyCodec_Encoder", false]], "pycodec_ignoreerrors (c function)": [[14, "c.PyCodec_IgnoreErrors", false]], "pycodec_incrementaldecoder (c function)": [[14, "c.PyCodec_IncrementalDecoder", false]], "pycodec_incrementalencoder (c function)": [[14, "c.PyCodec_IncrementalEncoder", false]], "pycodec_knownencoding (c function)": [[14, "c.PyCodec_KnownEncoding", false]], "pycodec_lookuperror (c function)": [[14, "c.PyCodec_LookupError", false]], "pycodec_namereplaceerrors (c function)": [[14, "c.PyCodec_NameReplaceErrors", false]], "pycodec_register (c function)": [[14, "c.PyCodec_Register", false]], "pycodec_registererror (c function)": [[14, "c.PyCodec_RegisterError", false]], "pycodec_replaceerrors (c function)": [[14, "c.PyCodec_ReplaceErrors", false]], "pycodec_streamreader (c function)": [[14, "c.PyCodec_StreamReader", false]], "pycodec_streamwriter (c function)": [[14, "c.PyCodec_StreamWriter", false]], "pycodec_stricterrors (c function)": [[14, "c.PyCodec_StrictErrors", false]], "pycodec_unregister (c function)": [[14, "c.PyCodec_Unregister", false]], "pycodec_xmlcharrefreplaceerrors (c function)": [[14, "c.PyCodec_XMLCharRefReplaceErrors", false]], "pycodeevent (c type)": [[13, "c.PyCodeEvent", false]], "pycodeobject (c type)": [[13, "c.PyCodeObject", false]], "pycompactunicodeobject (c type)": [[64, "c.PyCompactUnicodeObject", false]], "pycompileerror": [[311, "py_compile.PyCompileError", false]], "pycompilerflags (c struct)": [[66, "c.PyCompilerFlags", false]], "pycompilerflags.cf_feature_version (c member)": [[66, "c.PyCompilerFlags.cf_feature_version", false]], "pycompilerflags.cf_flags (c member)": [[66, "c.PyCompilerFlags.cf_flags", false]], "pycomplex_asccomplex (c function)": [[15, "c.PyComplex_AsCComplex", false]], "pycomplex_check (c function)": [[15, "c.PyComplex_Check", false]], "pycomplex_checkexact (c function)": [[15, "c.PyComplex_CheckExact", false]], "pycomplex_fromccomplex (c function)": [[15, "c.PyComplex_FromCComplex", false]], "pycomplex_fromdoubles (c function)": [[15, "c.PyComplex_FromDoubles", false]], "pycomplex_imagasdouble (c function)": [[15, "c.PyComplex_ImagAsDouble", false]], "pycomplex_realasdouble (c function)": [[15, "c.PyComplex_RealAsDouble", false]], "pycomplex_type (c var)": [[15, "c.PyComplex_Type", false]], "pycomplexobject (c type)": [[15, "c.PyComplexObject", false]], "pyconfig (c type)": [[34, "c.PyConfig", false]], "pyconfig.argv (c member)": [[34, "c.PyConfig.argv", false]], "pyconfig.base_exec_prefix (c member)": [[34, "c.PyConfig.base_exec_prefix", false]], "pyconfig.base_executable (c member)": [[34, "c.PyConfig.base_executable", false]], "pyconfig.base_prefix (c member)": [[34, "c.PyConfig.base_prefix", false]], "pyconfig.buffered_stdio (c member)": [[34, "c.PyConfig.buffered_stdio", false]], "pyconfig.bytes_warning (c member)": [[34, "c.PyConfig.bytes_warning", false]], "pyconfig.check_hash_pycs_mode (c member)": [[34, "c.PyConfig.check_hash_pycs_mode", false]], "pyconfig.code_debug_ranges (c member)": [[34, "c.PyConfig.code_debug_ranges", false]], "pyconfig.configure_c_stdio (c member)": [[34, "c.PyConfig.configure_c_stdio", false]], "pyconfig.dev_mode (c member)": [[34, "c.PyConfig.dev_mode", false]], "pyconfig.dump_refs (c member)": [[34, "c.PyConfig.dump_refs", false]], "pyconfig.exec_prefix (c member)": [[34, "c.PyConfig.exec_prefix", false]], "pyconfig.executable (c member)": [[34, "c.PyConfig.executable", false]], "pyconfig.faulthandler (c member)": [[34, "c.PyConfig.faulthandler", false]], "pyconfig.filesystem_encoding (c member)": [[34, "c.PyConfig.filesystem_encoding", false]], "pyconfig.filesystem_errors (c member)": [[34, "c.PyConfig.filesystem_errors", false]], "pyconfig.hash_seed (c member)": [[34, "c.PyConfig.hash_seed", false]], "pyconfig.home (c member)": [[34, "c.PyConfig.home", false]], "pyconfig.import_time (c member)": [[34, "c.PyConfig.import_time", false]], "pyconfig.inspect (c member)": [[34, "c.PyConfig.inspect", false]], "pyconfig.install_signal_handlers (c member)": [[34, "c.PyConfig.install_signal_handlers", false]], "pyconfig.int_max_str_digits (c member)": [[34, "c.PyConfig.int_max_str_digits", false]], "pyconfig.interactive (c member)": [[34, "c.PyConfig.interactive", false]], "pyconfig.isolated (c member)": [[34, "c.PyConfig.isolated", false]], "pyconfig.legacy_windows_stdio (c member)": [[34, "c.PyConfig.legacy_windows_stdio", false]], "pyconfig.malloc_stats (c member)": [[34, "c.PyConfig.malloc_stats", false]], "pyconfig.module_search_paths (c member)": [[34, "c.PyConfig.module_search_paths", false]], "pyconfig.module_search_paths_set (c member)": [[34, "c.PyConfig.module_search_paths_set", false]], "pyconfig.optimization_level (c member)": [[34, "c.PyConfig.optimization_level", false]], "pyconfig.orig_argv (c member)": [[34, "c.PyConfig.orig_argv", false]], "pyconfig.parse_argv (c member)": [[34, "c.PyConfig.parse_argv", false]], "pyconfig.parser_debug (c member)": [[34, "c.PyConfig.parser_debug", false]], "pyconfig.pathconfig_warnings (c member)": [[34, "c.PyConfig.pathconfig_warnings", false]], "pyconfig.perf_profiling (c member)": [[34, "c.PyConfig.perf_profiling", false]], "pyconfig.platlibdir (c member)": [[34, "c.PyConfig.platlibdir", false]], "pyconfig.prefix (c member)": [[34, "c.PyConfig.prefix", false]], "pyconfig.program_name (c member)": [[34, "c.PyConfig.program_name", false]], "pyconfig.pycache_prefix (c member)": [[34, "c.PyConfig.pycache_prefix", false]], "pyconfig.pythonpath_env (c member)": [[34, "c.PyConfig.pythonpath_env", false]], "pyconfig.quiet (c member)": [[34, "c.PyConfig.quiet", false]], "pyconfig.run_command (c member)": [[34, "c.PyConfig.run_command", false]], "pyconfig.run_filename (c member)": [[34, "c.PyConfig.run_filename", false]], "pyconfig.run_module (c member)": [[34, "c.PyConfig.run_module", false]], "pyconfig.safe_path (c member)": [[34, "c.PyConfig.safe_path", false]], "pyconfig.show_ref_count (c member)": [[34, "c.PyConfig.show_ref_count", false]], "pyconfig.site_import (c member)": [[34, "c.PyConfig.site_import", false]], "pyconfig.skip_source_first_line (c member)": [[34, "c.PyConfig.skip_source_first_line", false]], "pyconfig.stdio_encoding (c member)": [[34, "c.PyConfig.stdio_encoding", false]], "pyconfig.stdio_errors (c member)": [[34, "c.PyConfig.stdio_errors", false]], "pyconfig.tracemalloc (c member)": [[34, "c.PyConfig.tracemalloc", false]], "pyconfig.use_environment (c member)": [[34, "c.PyConfig.use_environment", false]], "pyconfig.use_hash_seed (c member)": [[34, "c.PyConfig.use_hash_seed", false]], "pyconfig.user_site_directory (c member)": [[34, "c.PyConfig.user_site_directory", false]], "pyconfig.verbose (c member)": [[34, "c.PyConfig.verbose", false]], "pyconfig.warn_default_encoding (c member)": [[34, "c.PyConfig.warn_default_encoding", false]], "pyconfig.warnoptions (c member)": [[34, "c.PyConfig.warnoptions", false]], "pyconfig.write_bytecode (c member)": [[34, "c.PyConfig.write_bytecode", false]], "pyconfig.xoptions (c member)": [[34, "c.PyConfig.xoptions", false]], "pyconfig_clear (c function)": [[34, "c.PyConfig_Clear", false]], "pyconfig_initisolatedconfig (c function)": [[34, "c.PyConfig_InitIsolatedConfig", false]], "pyconfig_initpythonconfig (c function)": [[34, "c.PyConfig_InitPythonConfig", false]], "pyconfig_read (c function)": [[34, "c.PyConfig_Read", false]], "pyconfig_setargv (c function)": [[34, "c.PyConfig_SetArgv", false]], "pyconfig_setbytesargv (c function)": [[34, "c.PyConfig_SetBytesArgv", false]], "pyconfig_setbytesstring (c function)": [[34, "c.PyConfig_SetBytesString", false]], "pyconfig_setstring (c function)": [[34, "c.PyConfig_SetString", false]], "pyconfig_setwidestringlist (c function)": [[34, "c.PyConfig_SetWideStringList", false]], "pycontext (c type)": [[17, "c.PyContext", false]], "pycontext_checkexact (c function)": [[17, "c.PyContext_CheckExact", false]], "pycontext_copy (c function)": [[17, "c.PyContext_Copy", false]], "pycontext_copycurrent (c function)": [[17, "c.PyContext_CopyCurrent", false]], "pycontext_enter (c function)": [[17, "c.PyContext_Enter", false]], "pycontext_exit (c function)": [[17, "c.PyContext_Exit", false]], "pycontext_new (c function)": [[17, "c.PyContext_New", false]], "pycontext_type (c var)": [[17, "c.PyContext_Type", false]], "pycontexttoken (c type)": [[17, "c.PyContextToken", false]], "pycontexttoken_checkexact (c function)": [[17, "c.PyContextToken_CheckExact", false]], "pycontexttoken_type (c var)": [[17, "c.PyContextToken_Type", false]], "pycontextvar (c type)": [[17, "c.PyContextVar", false]], "pycontextvar_checkexact (c function)": [[17, "c.PyContextVar_CheckExact", false]], "pycontextvar_get (c function)": [[17, "c.PyContextVar_Get", false]], "pycontextvar_new (c function)": [[17, "c.PyContextVar_New", false]], "pycontextvar_reset (c function)": [[17, "c.PyContextVar_Reset", false]], "pycontextvar_set (c function)": [[17, "c.PyContextVar_Set", false]], "pycontextvar_type (c var)": [[17, "c.PyContextVar_Type", false]], "pycoro_checkexact (c function)": [[19, "c.PyCoro_CheckExact", false]], "pycoro_new (c function)": [[19, "c.PyCoro_New", false]], "pycoro_type (c var)": [[19, "c.PyCoro_Type", false]], "pycoroobject (c type)": [[19, "c.PyCoroObject", false]], "pydate_check (c function)": [[20, "c.PyDate_Check", false]], "pydate_checkexact (c function)": [[20, "c.PyDate_CheckExact", false]], "pydate_fromdate (c function)": [[20, "c.PyDate_FromDate", false]], "pydate_fromtimestamp (c function)": [[20, "c.PyDate_FromTimestamp", false]], "pydatetime_check (c function)": [[20, "c.PyDateTime_Check", false]], "pydatetime_checkexact (c function)": [[20, "c.PyDateTime_CheckExact", false]], "pydatetime_date (c type)": [[20, "c.PyDateTime_Date", false]], "pydatetime_date_get_fold (c function)": [[20, "c.PyDateTime_DATE_GET_FOLD", false]], "pydatetime_date_get_hour (c function)": [[20, "c.PyDateTime_DATE_GET_HOUR", false]], "pydatetime_date_get_microsecond (c function)": [[20, "c.PyDateTime_DATE_GET_MICROSECOND", false]], "pydatetime_date_get_minute (c function)": [[20, "c.PyDateTime_DATE_GET_MINUTE", false]], "pydatetime_date_get_second (c function)": [[20, "c.PyDateTime_DATE_GET_SECOND", false]], "pydatetime_date_get_tzinfo (c function)": [[20, "c.PyDateTime_DATE_GET_TZINFO", false]], "pydatetime_datetime (c type)": [[20, "c.PyDateTime_DateTime", false]], "pydatetime_datetimetype (c var)": [[20, "c.PyDateTime_DateTimeType", false]], "pydatetime_datetype (c var)": [[20, "c.PyDateTime_DateType", false]], "pydatetime_delta (c type)": [[20, "c.PyDateTime_Delta", false]], "pydatetime_delta_get_days (c function)": [[20, "c.PyDateTime_DELTA_GET_DAYS", false]], "pydatetime_delta_get_microseconds (c function)": [[20, "c.PyDateTime_DELTA_GET_MICROSECONDS", false]], "pydatetime_delta_get_seconds (c function)": [[20, "c.PyDateTime_DELTA_GET_SECONDS", false]], "pydatetime_deltatype (c var)": [[20, "c.PyDateTime_DeltaType", false]], "pydatetime_fromdateandtime (c function)": [[20, "c.PyDateTime_FromDateAndTime", false]], "pydatetime_fromdateandtimeandfold (c function)": [[20, "c.PyDateTime_FromDateAndTimeAndFold", false]], "pydatetime_fromtimestamp (c function)": [[20, "c.PyDateTime_FromTimestamp", false]], "pydatetime_get_day (c function)": [[20, "c.PyDateTime_GET_DAY", false]], "pydatetime_get_month (c function)": [[20, "c.PyDateTime_GET_MONTH", false]], "pydatetime_get_year (c function)": [[20, "c.PyDateTime_GET_YEAR", false]], "pydatetime_time (c type)": [[20, "c.PyDateTime_Time", false]], "pydatetime_time_get_fold (c function)": [[20, "c.PyDateTime_TIME_GET_FOLD", false]], "pydatetime_time_get_hour (c function)": [[20, "c.PyDateTime_TIME_GET_HOUR", false]], "pydatetime_time_get_microsecond (c function)": [[20, "c.PyDateTime_TIME_GET_MICROSECOND", false]], "pydatetime_time_get_minute (c function)": [[20, "c.PyDateTime_TIME_GET_MINUTE", false]], "pydatetime_time_get_second (c function)": [[20, "c.PyDateTime_TIME_GET_SECOND", false]], "pydatetime_time_get_tzinfo (c function)": [[20, "c.PyDateTime_TIME_GET_TZINFO", false]], "pydatetime_timetype (c var)": [[20, "c.PyDateTime_TimeType", false]], "pydatetime_timezone_utc (c var)": [[20, "c.PyDateTime_TimeZone_UTC", false]], "pydatetime_tzinfotype (c var)": [[20, "c.PyDateTime_TZInfoType", false]], "pydelta_check (c function)": [[20, "c.PyDelta_Check", false]], "pydelta_checkexact (c function)": [[20, "c.PyDelta_CheckExact", false]], "pydelta_fromdsu (c function)": [[20, "c.PyDelta_FromDSU", false]], "pydescr_isdata (c function)": [[21, "c.PyDescr_IsData", false]], "pydescr_newclassmethod (c function)": [[21, "c.PyDescr_NewClassMethod", false]], "pydescr_newgetset (c function)": [[21, "c.PyDescr_NewGetSet", false]], "pydescr_newmember (c function)": [[21, "c.PyDescr_NewMember", false]], "pydescr_newmethod (c function)": [[21, "c.PyDescr_NewMethod", false]], "pydescr_newwrapper (c function)": [[21, "c.PyDescr_NewWrapper", false]], "pydict_addwatcher (c function)": [[22, "c.PyDict_AddWatcher", false]], "pydict_check (c function)": [[22, "c.PyDict_Check", false]], "pydict_checkexact (c function)": [[22, "c.PyDict_CheckExact", false]], "pydict_clear (c function)": [[22, "c.PyDict_Clear", false]], "pydict_clearwatcher (c function)": [[22, "c.PyDict_ClearWatcher", false]], "pydict_contains (c function)": [[22, "c.PyDict_Contains", false]], "pydict_copy (c function)": [[22, "c.PyDict_Copy", false]], "pydict_delitem (c function)": [[22, "c.PyDict_DelItem", false]], "pydict_delitemstring (c function)": [[22, "c.PyDict_DelItemString", false]], "pydict_getitem (c function)": [[22, "c.PyDict_GetItem", false]], "pydict_getitemstring (c function)": [[22, "c.PyDict_GetItemString", false]], "pydict_getitemwitherror (c function)": [[22, "c.PyDict_GetItemWithError", false]], "pydict_items (c function)": [[22, "c.PyDict_Items", false]], "pydict_keys (c function)": [[22, "c.PyDict_Keys", false]], "pydict_merge (c function)": [[22, "c.PyDict_Merge", false]], "pydict_mergefromseq2 (c function)": [[22, "c.PyDict_MergeFromSeq2", false]], "pydict_new (c function)": [[22, "c.PyDict_New", false]], "pydict_next (c function)": [[22, "c.PyDict_Next", false]], "pydict_setdefault (c function)": [[22, "c.PyDict_SetDefault", false]], "pydict_setitem (c function)": [[22, "c.PyDict_SetItem", false]], "pydict_setitemstring (c function)": [[22, "c.PyDict_SetItemString", false]], "pydict_size (c function)": [[22, "c.PyDict_Size", false]], "pydict_type (c var)": [[22, "c.PyDict_Type", false]], "pydict_unwatch (c function)": [[22, "c.PyDict_Unwatch", false]], "pydict_update (c function)": [[22, "c.PyDict_Update", false]], "pydict_values (c function)": [[22, "c.PyDict_Values", false]], "pydict_watch (c function)": [[22, "c.PyDict_Watch", false]], "pydict_watchcallback (c type)": [[22, "c.PyDict_WatchCallback", false]], "pydict_watchevent (c type)": [[22, "c.PyDict_WatchEvent", false]], "pydictobject (c type)": [[22, "c.PyDictObject", false]], "pydictproxy_new (c function)": [[22, "c.PyDictProxy_New", false]], "pydll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.PyDLL", false]], "pydoc": [[313, "module-pydoc", false]], "pydoc_str (c macro)": [[35, "c.PyDoc_STR", false]], "pydoc_strvar (c macro)": [[35, "c.PyDoc_STRVAR", false]], "pyerr_badargument (c function)": [[23, "c.PyErr_BadArgument", false]], "pyerr_badinternalcall (c function)": [[23, "c.PyErr_BadInternalCall", false]], "pyerr_checksignals (c function)": [[23, "c.PyErr_CheckSignals", false]], "pyerr_clear (c function)": [[23, "c.PyErr_Clear", false]], "pyerr_clear\uff08c \u51fd\u5f0f\uff09": [[35, "index-12", false], [35, "index-17", false]], "pyerr_displayexception (c function)": [[23, "c.PyErr_DisplayException", false]], "pyerr_exceptionmatches (c function)": [[23, "c.PyErr_ExceptionMatches", false]], "pyerr_exceptionmatches\uff08c \u51fd\u5f0f\uff09": [[35, "index-17", false]], "pyerr_fetch (c function)": [[23, "c.PyErr_Fetch", false]], "pyerr_fetch\uff08c \u51fd\u5f0f\uff09": [[75, "index-1", false]], "pyerr_format (c function)": [[23, "c.PyErr_Format", false]], "pyerr_formatv (c function)": [[23, "c.PyErr_FormatV", false]], "pyerr_getexcinfo (c function)": [[23, "c.PyErr_GetExcInfo", false]], "pyerr_gethandledexception (c function)": [[23, "c.PyErr_GetHandledException", false]], "pyerr_getraisedexception (c function)": [[23, "c.PyErr_GetRaisedException", false]], "pyerr_givenexceptionmatches (c function)": [[23, "c.PyErr_GivenExceptionMatches", false]], "pyerr_newexception (c function)": [[23, "c.PyErr_NewException", false]], "pyerr_newexceptionwithdoc (c function)": [[23, "c.PyErr_NewExceptionWithDoc", false]], "pyerr_nomemory (c function)": [[23, "c.PyErr_NoMemory", false]], "pyerr_normalizeexception (c function)": [[23, "c.PyErr_NormalizeException", false]], "pyerr_occurred (c function)": [[23, "c.PyErr_Occurred", false]], "pyerr_occurred\uff08c \u51fd\u5f0f\uff09": [[35, "index-11", false]], "pyerr_print (c function)": [[23, "c.PyErr_Print", false]], "pyerr_printex (c function)": [[23, "c.PyErr_PrintEx", false]], "pyerr_resourcewarning (c function)": [[23, "c.PyErr_ResourceWarning", false]], "pyerr_restore (c function)": [[23, "c.PyErr_Restore", false]], "pyerr_restore\uff08c \u51fd\u5f0f\uff09": [[75, "index-1", false]], "pyerr_setexcfromwindowserr (c function)": [[23, "c.PyErr_SetExcFromWindowsErr", false]], "pyerr_setexcfromwindowserrwithfilename (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilename", false]], "pyerr_setexcfromwindowserrwithfilenameobject (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", false]], "pyerr_setexcfromwindowserrwithfilenameobjects (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", false]], "pyerr_setexcinfo (c function)": [[23, "c.PyErr_SetExcInfo", false]], "pyerr_setfromerrno (c function)": [[23, "c.PyErr_SetFromErrno", false]], "pyerr_setfromerrnowithfilename (c function)": [[23, "c.PyErr_SetFromErrnoWithFilename", false]], "pyerr_setfromerrnowithfilenameobject (c function)": [[23, "c.PyErr_SetFromErrnoWithFilenameObject", false]], "pyerr_setfromerrnowithfilenameobjects (c function)": [[23, "c.PyErr_SetFromErrnoWithFilenameObjects", false]], "pyerr_setfromwindowserr (c function)": [[23, "c.PyErr_SetFromWindowsErr", false]], "pyerr_setfromwindowserrwithfilename (c function)": [[23, "c.PyErr_SetFromWindowsErrWithFilename", false]], "pyerr_sethandledexception (c function)": [[23, "c.PyErr_SetHandledException", false]], "pyerr_setimporterror (c function)": [[23, "c.PyErr_SetImportError", false]], "pyerr_setimporterrorsubclass (c function)": [[23, "c.PyErr_SetImportErrorSubclass", false]], "pyerr_setinterrupt (c function)": [[23, "c.PyErr_SetInterrupt", false]], "pyerr_setinterruptex (c function)": [[23, "c.PyErr_SetInterruptEx", false]], "pyerr_setnone (c function)": [[23, "c.PyErr_SetNone", false]], "pyerr_setobject (c function)": [[23, "c.PyErr_SetObject", false]], "pyerr_setraisedexception (c function)": [[23, "c.PyErr_SetRaisedException", false]], "pyerr_setstring (c function)": [[23, "c.PyErr_SetString", false]], "pyerr_setstring\uff08c \u51fd\u5f0f\uff09": [[35, "index-12", false]], "pyerr_syntaxlocation (c function)": [[23, "c.PyErr_SyntaxLocation", false]], "pyerr_syntaxlocationex (c function)": [[23, "c.PyErr_SyntaxLocationEx", false]], "pyerr_syntaxlocationobject (c function)": [[23, "c.PyErr_SyntaxLocationObject", false]], "pyerr_warnex (c function)": [[23, "c.PyErr_WarnEx", false]], "pyerr_warnexplicit (c function)": [[23, "c.PyErr_WarnExplicit", false]], "pyerr_warnexplicitobject (c function)": [[23, "c.PyErr_WarnExplicitObject", false]], "pyerr_warnformat (c function)": [[23, "c.PyErr_WarnFormat", false]], "pyerr_writeunraisable (c function)": [[23, "c.PyErr_WriteUnraisable", false]], "pyeval_acquirelock (c function)": [[33, "c.PyEval_AcquireLock", false]], "pyeval_acquirethread (c function)": [[33, "c.PyEval_AcquireThread", false]], "pyeval_acquirethread()": [[33, "index-37", false]], "pyeval_evalcode (c function)": [[66, "c.PyEval_EvalCode", false]], "pyeval_evalcodeex (c function)": [[66, "c.PyEval_EvalCodeEx", false]], "pyeval_evalframe (c function)": [[66, "c.PyEval_EvalFrame", false]], "pyeval_evalframeex (c function)": [[66, "c.PyEval_EvalFrameEx", false]], "pyeval_getbuiltins (c function)": [[53, "c.PyEval_GetBuiltins", false]], "pyeval_getframe (c function)": [[53, "c.PyEval_GetFrame", false]], "pyeval_getfuncdesc (c function)": [[53, "c.PyEval_GetFuncDesc", false]], "pyeval_getfuncname (c function)": [[53, "c.PyEval_GetFuncName", false]], "pyeval_getglobals (c function)": [[53, "c.PyEval_GetGlobals", false]], "pyeval_getlocals (c function)": [[53, "c.PyEval_GetLocals", false]], "pyeval_initthreads (c function)": [[33, "c.PyEval_InitThreads", false]], "pyeval_initthreads()": [[33, "index-15", false]], "pyeval_mergecompilerflags (c function)": [[66, "c.PyEval_MergeCompilerFlags", false]], "pyeval_releaselock (c function)": [[33, "c.PyEval_ReleaseLock", false]], "pyeval_releasethread (c function)": [[33, "c.PyEval_ReleaseThread", false]], "pyeval_releasethread()": [[33, "index-37", false]], "pyeval_restorethread (c function)": [[33, "c.PyEval_RestoreThread", false]], "pyeval_restorethread()": [[33, "index-37", false]], "pyeval_restorethread\uff08c \u51fd\u5f0f\uff09": [[33, "index-36", false]], "pyeval_savethread (c function)": [[33, "c.PyEval_SaveThread", false]], "pyeval_savethread()": [[33, "index-37", false]], "pyeval_savethread\uff08c \u51fd\u5f0f\uff09": [[33, "index-36", false]], "pyeval_setprofile (c function)": [[33, "c.PyEval_SetProfile", false]], "pyeval_setprofileallthreads (c function)": [[33, "c.PyEval_SetProfileAllThreads", false]], "pyeval_settrace (c function)": [[33, "c.PyEval_SetTrace", false]], "pyeval_settraceallthreads (c function)": [[33, "c.PyEval_SetTraceAllThreads", false]], "pyeval_threadsinitialized (c function)": [[33, "c.PyEval_ThreadsInitialized", false]], "pyexc_arithmeticerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_assertionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_attributeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_baseexception\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_blockingioerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_brokenpipeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_buffererror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_byteswarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_childprocesserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionabortederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionrefusederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionreseterror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_deprecationwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_environmenterror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_eoferror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_exception\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_fileexistserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_filenotfounderror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_floatingpointerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_futurewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_generatorexit\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_importerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_importwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_indentationerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_indexerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_interruptederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_ioerror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_isadirectoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_keyboardinterrupt\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_keyerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_lookuperror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_memoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_modulenotfounderror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_nameerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_notadirectoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_notimplementederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_oserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_overflowerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_pendingdeprecationwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_permissionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_processlookuperror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_recursionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_referenceerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_resourcewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_runtimeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_runtimewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_stopasynciteration\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_stopiteration\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_syntaxerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_syntaxwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_systemerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_systemexit\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_taberror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_timeouterror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_typeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unboundlocalerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodedecodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodeencodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodetranslateerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_userwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_valueerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_warning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_windowserror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_zerodivisionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexception_getargs (c function)": [[23, "c.PyException_GetArgs", false]], "pyexception_getcause (c function)": [[23, "c.PyException_GetCause", false]], "pyexception_getcontext (c function)": [[23, "c.PyException_GetContext", false]], "pyexception_gettraceback (c function)": [[23, "c.PyException_GetTraceback", false]], "pyexception_setargs (c function)": [[23, "c.PyException_SetArgs", false]], "pyexception_setcause (c function)": [[23, "c.PyException_SetCause", false]], "pyexception_setcontext (c function)": [[23, "c.PyException_SetContext", false]], "pyexception_settraceback (c function)": [[23, "c.PyException_SetTraceback", false]], "pyexpat": [[314, "index-1", false]], "pyfile_fromfd (c function)": [[24, "c.PyFile_FromFd", false]], "pyfile_getline (c function)": [[24, "c.PyFile_GetLine", false]], "pyfile_setopencodehook (c function)": [[24, "c.PyFile_SetOpenCodeHook", false]], "pyfile_setopencodehook.py_opencodehookfunction (c type)": [[24, "c.PyFile_SetOpenCodeHook.Py_OpenCodeHookFunction", false]], "pyfile_writeobject (c function)": [[24, "c.PyFile_WriteObject", false]], "pyfile_writestring (c function)": [[24, "c.PyFile_WriteString", false]], "pyfloat_as_double (c function)": [[25, "c.PyFloat_AS_DOUBLE", false]], "pyfloat_asdouble (c function)": [[25, "c.PyFloat_AsDouble", false]], "pyfloat_check (c function)": [[25, "c.PyFloat_Check", false]], "pyfloat_checkexact (c function)": [[25, "c.PyFloat_CheckExact", false]], "pyfloat_fromdouble (c function)": [[25, "c.PyFloat_FromDouble", false]], "pyfloat_fromstring (c function)": [[25, "c.PyFloat_FromString", false]], "pyfloat_getinfo (c function)": [[25, "c.PyFloat_GetInfo", false]], "pyfloat_getmax (c function)": [[25, "c.PyFloat_GetMax", false]], "pyfloat_getmin (c function)": [[25, "c.PyFloat_GetMin", false]], "pyfloat_pack2 (c function)": [[25, "c.PyFloat_Pack2", false]], "pyfloat_pack4 (c function)": [[25, "c.PyFloat_Pack4", false]], "pyfloat_pack8 (c function)": [[25, "c.PyFloat_Pack8", false]], "pyfloat_type (c var)": [[25, "c.PyFloat_Type", false]], "pyfloat_unpack2 (c function)": [[25, "c.PyFloat_Unpack2", false]], "pyfloat_unpack4 (c function)": [[25, "c.PyFloat_Unpack4", false]], "pyfloat_unpack8 (c function)": [[25, "c.PyFloat_Unpack8", false]], "pyfloatobject (c type)": [[25, "c.PyFloatObject", false]], "pyframe_check (c function)": [[26, "c.PyFrame_Check", false]], "pyframe_getback (c function)": [[26, "c.PyFrame_GetBack", false]], "pyframe_getbuiltins (c function)": [[26, "c.PyFrame_GetBuiltins", false]], "pyframe_getcode (c function)": [[26, "c.PyFrame_GetCode", false]], "pyframe_getgenerator (c function)": [[26, "c.PyFrame_GetGenerator", false]], "pyframe_getglobals (c function)": [[26, "c.PyFrame_GetGlobals", false]], "pyframe_getlasti (c function)": [[26, "c.PyFrame_GetLasti", false]], "pyframe_getlinenumber (c function)": [[26, "c.PyFrame_GetLineNumber", false]], "pyframe_getlocals (c function)": [[26, "c.PyFrame_GetLocals", false]], "pyframe_getvar (c function)": [[26, "c.PyFrame_GetVar", false]], "pyframe_getvarstring (c function)": [[26, "c.PyFrame_GetVarString", false]], "pyframe_type (c var)": [[26, "c.PyFrame_Type", false]], "pyframeobject (c type)": [[26, "c.PyFrameObject", false]], "pyfrozenset_check (c function)": [[55, "c.PyFrozenSet_Check", false]], "pyfrozenset_checkexact (c function)": [[55, "c.PyFrozenSet_CheckExact", false]], "pyfrozenset_new (c function)": [[55, "c.PyFrozenSet_New", false]], "pyfrozenset_type (c var)": [[55, "c.PyFrozenSet_Type", false]], "pyfunction_addwatcher (c function)": [[27, "c.PyFunction_AddWatcher", false]], "pyfunction_check (c function)": [[27, "c.PyFunction_Check", false]], "pyfunction_clearwatcher (c function)": [[27, "c.PyFunction_ClearWatcher", false]], "pyfunction_getannotations (c function)": [[27, "c.PyFunction_GetAnnotations", false]], "pyfunction_getclosure (c function)": [[27, "c.PyFunction_GetClosure", false]], "pyfunction_getcode (c function)": [[27, "c.PyFunction_GetCode", false]], "pyfunction_getdefaults (c function)": [[27, "c.PyFunction_GetDefaults", false]], "pyfunction_getglobals (c function)": [[27, "c.PyFunction_GetGlobals", false]], "pyfunction_getmodule (c function)": [[27, "c.PyFunction_GetModule", false]], "pyfunction_new (c function)": [[27, "c.PyFunction_New", false]], "pyfunction_newwithqualname (c function)": [[27, "c.PyFunction_NewWithQualName", false]], "pyfunction_setannotations (c function)": [[27, "c.PyFunction_SetAnnotations", false]], "pyfunction_setclosure (c function)": [[27, "c.PyFunction_SetClosure", false]], "pyfunction_setdefaults (c function)": [[27, "c.PyFunction_SetDefaults", false]], "pyfunction_setvectorcall (c function)": [[27, "c.PyFunction_SetVectorcall", false]], "pyfunction_type (c var)": [[27, "c.PyFunction_Type", false]], "pyfunction_watchcallback (c type)": [[27, "c.PyFunction_WatchCallback", false]], "pyfunction_watchevent (c type)": [[27, "c.PyFunction_WatchEvent", false]], "pyfunctionobject (c type)": [[27, "c.PyFunctionObject", false]], "pyfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.PYFUNCTYPE", false]], "pygc_collect (c function)": [[28, "c.PyGC_Collect", false]], "pygc_disable (c function)": [[28, "c.PyGC_Disable", false]], "pygc_enable (c function)": [[28, "c.PyGC_Enable", false]], "pygc_isenabled (c function)": [[28, "c.PyGC_IsEnabled", false]], "pygen_check (c function)": [[29, "c.PyGen_Check", false]], "pygen_checkexact (c function)": [[29, "c.PyGen_CheckExact", false]], "pygen_new (c function)": [[29, "c.PyGen_New", false]], "pygen_newwithqualname (c function)": [[29, "c.PyGen_NewWithQualName", false]], "pygen_type (c var)": [[29, "c.PyGen_Type", false]], "pygenobject (c type)": [[29, "c.PyGenObject", false]], "pygetsetdef (c type)": [[58, "c.PyGetSetDef", false]], "pygetsetdef.closure (c member)": [[58, "c.PyGetSetDef.closure", false]], "pygetsetdef.doc (c member)": [[58, "c.PyGetSetDef.doc", false]], "pygetsetdef.get (c member)": [[58, "c.PyGetSetDef.get", false]], "pygetsetdef.name (c member)": [[58, "c.PyGetSetDef.name", false]], "pygetsetdef.set (c member)": [[58, "c.PyGetSetDef.set", false]], "pygilstate_check (c function)": [[33, "c.PyGILState_Check", false]], "pygilstate_ensure (c function)": [[33, "c.PyGILState_Ensure", false]], "pygilstate_getthisthreadstate (c function)": [[33, "c.PyGILState_GetThisThreadState", false]], "pygilstate_release (c function)": [[33, "c.PyGILState_Release", false]], "pyhash_funcdef (c type)": [[30, "c.PyHash_FuncDef", false]], "pyhash_funcdef.hash_bits (c member)": [[30, "c.PyHash_FuncDef.hash_bits", false]], "pyhash_funcdef.name (c member)": [[30, "c.PyHash_FuncDef.name", false]], "pyhash_funcdef.seed_bits (c member)": [[30, "c.PyHash_FuncDef.seed_bits", false]], "pyhash_getfuncdef (c function)": [[30, "c.PyHash_GetFuncDef", false]], "pyimport_addmodule (c function)": [[31, "c.PyImport_AddModule", false]], "pyimport_addmoduleobject (c function)": [[31, "c.PyImport_AddModuleObject", false]], "pyimport_appendinittab (c function)": [[31, "c.PyImport_AppendInittab", false]], "pyimport_execcodemodule (c function)": [[31, "c.PyImport_ExecCodeModule", false]], "pyimport_execcodemoduleex (c function)": [[31, "c.PyImport_ExecCodeModuleEx", false]], "pyimport_execcodemoduleobject (c function)": [[31, "c.PyImport_ExecCodeModuleObject", false]], "pyimport_execcodemodulewithpathnames (c function)": [[31, "c.PyImport_ExecCodeModuleWithPathnames", false]], "pyimport_extendinittab (c function)": [[31, "c.PyImport_ExtendInittab", false]], "pyimport_frozenmodules (c var)": [[31, "c.PyImport_FrozenModules", false]], "pyimport_getimporter (c function)": [[31, "c.PyImport_GetImporter", false]], "pyimport_getmagicnumber (c function)": [[31, "c.PyImport_GetMagicNumber", false]], "pyimport_getmagictag (c function)": [[31, "c.PyImport_GetMagicTag", false]], "pyimport_getmodule (c function)": [[31, "c.PyImport_GetModule", false]], "pyimport_getmoduledict (c function)": [[31, "c.PyImport_GetModuleDict", false]], "pyimport_import (c function)": [[31, "c.PyImport_Import", false]], "pyimport_importfrozenmodule (c function)": [[31, "c.PyImport_ImportFrozenModule", false]], "pyimport_importfrozenmoduleobject (c function)": [[31, "c.PyImport_ImportFrozenModuleObject", false]], "pyimport_importmodule (c function)": [[31, "c.PyImport_ImportModule", false]], "pyimport_importmoduleex (c function)": [[31, "c.PyImport_ImportModuleEx", false]], "pyimport_importmodulelevel (c function)": [[31, "c.PyImport_ImportModuleLevel", false]], "pyimport_importmodulelevelobject (c function)": [[31, "c.PyImport_ImportModuleLevelObject", false]], "pyimport_importmodulenoblock (c function)": [[31, "c.PyImport_ImportModuleNoBlock", false]], "pyimport_reloadmodule (c function)": [[31, "c.PyImport_ReloadModule", false]], "pyindex_check (c function)": [[47, "c.PyIndex_Check", false]], "pyinit_modulename (c function)": [[71, "c.PyInit_modulename", false]], "pyinstancemethod_check (c function)": [[44, "c.PyInstanceMethod_Check", false]], "pyinstancemethod_function (c function)": [[44, "c.PyInstanceMethod_Function", false]], "pyinstancemethod_get_function (c function)": [[44, "c.PyInstanceMethod_GET_FUNCTION", false]], "pyinstancemethod_new (c function)": [[44, "c.PyInstanceMethod_New", false]], "pyinstancemethod_type (c var)": [[44, "c.PyInstanceMethod_Type", false]], "pyinterpreterconfig (c type)": [[33, "c.PyInterpreterConfig", false]], "pyinterpreterconfig.allow_daemon_threads (c member)": [[33, "c.PyInterpreterConfig.allow_daemon_threads", false]], "pyinterpreterconfig.allow_exec (c member)": [[33, "c.PyInterpreterConfig.allow_exec", false]], "pyinterpreterconfig.allow_fork (c member)": [[33, "c.PyInterpreterConfig.allow_fork", false]], "pyinterpreterconfig.allow_threads (c member)": [[33, "c.PyInterpreterConfig.allow_threads", false]], "pyinterpreterconfig.check_multi_interp_extensions (c member)": [[33, "c.PyInterpreterConfig.check_multi_interp_extensions", false]], "pyinterpreterconfig.gil (c member)": [[33, "c.PyInterpreterConfig.gil", false]], "pyinterpreterconfig.use_main_obmalloc (c member)": [[33, "c.PyInterpreterConfig.use_main_obmalloc", false]], "pyinterpreterconfig_default_gil (c macro)": [[33, "c.PyInterpreterConfig_DEFAULT_GIL", false]], "pyinterpreterconfig_own_gil (c macro)": [[33, "c.PyInterpreterConfig_OWN_GIL", false]], "pyinterpreterconfig_shared_gil (c macro)": [[33, "c.PyInterpreterConfig_SHARED_GIL", false]], "pyinterpreterstate (c type)": [[33, "c.PyInterpreterState", false]], "pyinterpreterstate_clear (c function)": [[33, "c.PyInterpreterState_Clear", false]], "pyinterpreterstate_delete (c function)": [[33, "c.PyInterpreterState_Delete", false]], "pyinterpreterstate_get (c function)": [[33, "c.PyInterpreterState_Get", false]], "pyinterpreterstate_getdict (c function)": [[33, "c.PyInterpreterState_GetDict", false]], "pyinterpreterstate_getid (c function)": [[33, "c.PyInterpreterState_GetID", false]], "pyinterpreterstate_head (c function)": [[33, "c.PyInterpreterState_Head", false]], "pyinterpreterstate_main (c function)": [[33, "c.PyInterpreterState_Main", false]], "pyinterpreterstate_new (c function)": [[33, "c.PyInterpreterState_New", false]], "pyinterpreterstate_next (c function)": [[33, "c.PyInterpreterState_Next", false]], "pyinterpreterstate_threadhead (c function)": [[33, "c.PyInterpreterState_ThreadHead", false]], "pyiter_check (c function)": [[36, "c.PyIter_Check", false]], "pyiter_next (c function)": [[36, "c.PyIter_Next", false]], "pyiter_send (c function)": [[36, "c.PyIter_Send", false]], "pylauncher_allow_install": [[461, "index-29", false], [483, "index-2", false], [483, "index-77", false]], "pylauncher_always_install": [[461, "index-30", false]], "pylauncher_debug": [[461, "index-27", false]], "pylauncher_dryrun": [[461, "index-28", false], [461, "index-31", false]], "pylauncher_no_search_path": [[461, "index-24", false]], "pylist_append (c function)": [[38, "c.PyList_Append", false]], "pylist_astuple (c function)": [[38, "c.PyList_AsTuple", false]], "pylist_check (c function)": [[38, "c.PyList_Check", false]], "pylist_checkexact (c function)": [[38, "c.PyList_CheckExact", false]], "pylist_get_item (c function)": [[38, "c.PyList_GET_ITEM", false]], "pylist_get_size (c function)": [[38, "c.PyList_GET_SIZE", false]], "pylist_getitem (c function)": [[38, "c.PyList_GetItem", false]], "pylist_getitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-7", false]], "pylist_getslice (c function)": [[38, "c.PyList_GetSlice", false]], "pylist_insert (c function)": [[38, "c.PyList_Insert", false]], "pylist_new (c function)": [[38, "c.PyList_New", false]], "pylist_reverse (c function)": [[38, "c.PyList_Reverse", false]], "pylist_set_item (c function)": [[38, "c.PyList_SET_ITEM", false]], "pylist_setitem (c function)": [[38, "c.PyList_SetItem", false]], "pylist_setitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-5", false]], "pylist_setslice (c function)": [[38, "c.PyList_SetSlice", false]], "pylist_size (c function)": [[38, "c.PyList_Size", false]], "pylist_sort (c function)": [[38, "c.PyList_Sort", false]], "pylist_type (c var)": [[38, "c.PyList_Type", false]], "pylistobject (c type)": [[38, "c.PyListObject", false]], "pylong_asdouble (c function)": [[39, "c.PyLong_AsDouble", false]], "pylong_aslong (c function)": [[39, "c.PyLong_AsLong", false]], "pylong_aslongandoverflow (c function)": [[39, "c.PyLong_AsLongAndOverflow", false]], "pylong_aslonglong (c function)": [[39, "c.PyLong_AsLongLong", false]], "pylong_aslonglongandoverflow (c function)": [[39, "c.PyLong_AsLongLongAndOverflow", false]], "pylong_assize_t (c function)": [[39, "c.PyLong_AsSize_t", false]], "pylong_asssize_t (c function)": [[39, "c.PyLong_AsSsize_t", false]], "pylong_asunsignedlong (c function)": [[39, "c.PyLong_AsUnsignedLong", false]], "pylong_asunsignedlonglong (c function)": [[39, "c.PyLong_AsUnsignedLongLong", false]], "pylong_asunsignedlonglongmask (c function)": [[39, "c.PyLong_AsUnsignedLongLongMask", false]], "pylong_asunsignedlongmask (c function)": [[39, "c.PyLong_AsUnsignedLongMask", false]], "pylong_asvoidptr (c function)": [[39, "c.PyLong_AsVoidPtr", false]], "pylong_check (c function)": [[39, "c.PyLong_Check", false]], "pylong_checkexact (c function)": [[39, "c.PyLong_CheckExact", false]], "pylong_fromdouble (c function)": [[39, "c.PyLong_FromDouble", false]], "pylong_fromlong (c function)": [[39, "c.PyLong_FromLong", false]], "pylong_fromlonglong (c function)": [[39, "c.PyLong_FromLongLong", false]], "pylong_fromsize_t (c function)": [[39, "c.PyLong_FromSize_t", false]], "pylong_fromssize_t (c function)": [[39, "c.PyLong_FromSsize_t", false]], "pylong_fromstring (c function)": [[39, "c.PyLong_FromString", false]], "pylong_fromunicodeobject (c function)": [[39, "c.PyLong_FromUnicodeObject", false]], "pylong_fromunsignedlong (c function)": [[39, "c.PyLong_FromUnsignedLong", false]], "pylong_fromunsignedlonglong (c function)": [[39, "c.PyLong_FromUnsignedLongLong", false]], "pylong_fromvoidptr (c function)": [[39, "c.PyLong_FromVoidPtr", false]], "pylong_type (c var)": [[39, "c.PyLong_Type", false]], "pylongobject (c type)": [[39, "c.PyLongObject", false]], "pymapping_check (c function)": [[40, "c.PyMapping_Check", false]], "pymapping_delitem (c function)": [[40, "c.PyMapping_DelItem", false]], "pymapping_delitemstring (c function)": [[40, "c.PyMapping_DelItemString", false]], "pymapping_getitemstring (c function)": [[40, "c.PyMapping_GetItemString", false]], "pymapping_haskey (c function)": [[40, "c.PyMapping_HasKey", false]], "pymapping_haskeystring (c function)": [[40, "c.PyMapping_HasKeyString", false]], "pymapping_items (c function)": [[40, "c.PyMapping_Items", false]], "pymapping_keys (c function)": [[40, "c.PyMapping_Keys", false]], "pymapping_length (c function)": [[40, "c.PyMapping_Length", false]], "pymapping_setitemstring (c function)": [[40, "c.PyMapping_SetItemString", false]], "pymapping_size (c function)": [[40, "c.PyMapping_Size", false]], "pymapping_values (c function)": [[40, "c.PyMapping_Values", false]], "pymappingmethods (c type)": [[63, "c.PyMappingMethods", false]], "pymappingmethods.mp_ass_subscript (c member)": [[63, "c.PyMappingMethods.mp_ass_subscript", false]], "pymappingmethods.mp_length (c member)": [[63, "c.PyMappingMethods.mp_length", false]], "pymappingmethods.mp_subscript (c member)": [[63, "c.PyMappingMethods.mp_subscript", false]], "pymarshal_readlastobjectfromfile (c function)": [[41, "c.PyMarshal_ReadLastObjectFromFile", false]], "pymarshal_readlongfromfile (c function)": [[41, "c.PyMarshal_ReadLongFromFile", false]], "pymarshal_readobjectfromfile (c function)": [[41, "c.PyMarshal_ReadObjectFromFile", false]], "pymarshal_readobjectfromstring (c function)": [[41, "c.PyMarshal_ReadObjectFromString", false]], "pymarshal_readshortfromfile (c function)": [[41, "c.PyMarshal_ReadShortFromFile", false]], "pymarshal_writelongtofile (c function)": [[41, "c.PyMarshal_WriteLongToFile", false]], "pymarshal_writeobjecttofile (c function)": [[41, "c.PyMarshal_WriteObjectToFile", false]], "pymarshal_writeobjecttostring (c function)": [[41, "c.PyMarshal_WriteObjectToString", false]], "pymem_calloc (c function)": [[42, "c.PyMem_Calloc", false]], "pymem_del (c function)": [[42, "c.PyMem_Del", false]], "pymem_domain_mem (c macro)": [[42, "c.PYMEM_DOMAIN_MEM", false]], "pymem_domain_obj (c macro)": [[42, "c.PYMEM_DOMAIN_OBJ", false]], "pymem_domain_raw (c macro)": [[42, "c.PYMEM_DOMAIN_RAW", false]], "pymem_free (c function)": [[42, "c.PyMem_Free", false]], "pymem_getallocator (c function)": [[42, "c.PyMem_GetAllocator", false]], "pymem_malloc (c function)": [[42, "c.PyMem_Malloc", false]], "pymem_new (c macro)": [[42, "c.PyMem_New", false]], "pymem_rawcalloc (c function)": [[42, "c.PyMem_RawCalloc", false]], "pymem_rawfree (c function)": [[42, "c.PyMem_RawFree", false]], "pymem_rawmalloc (c function)": [[42, "c.PyMem_RawMalloc", false]], "pymem_rawrealloc (c function)": [[42, "c.PyMem_RawRealloc", false]], "pymem_realloc (c function)": [[42, "c.PyMem_Realloc", false]], "pymem_resize (c macro)": [[42, "c.PyMem_Resize", false]], "pymem_setallocator (c function)": [[42, "c.PyMem_SetAllocator", false]], "pymem_setupdebughooks (c function)": [[42, "c.PyMem_SetupDebugHooks", false]], "pymemallocatordomain (c type)": [[42, "c.PyMemAllocatorDomain", false]], "pymemallocatorex (c type)": [[42, "c.PyMemAllocatorEx", false]], "pymember_getone (c function)": [[58, "c.PyMember_GetOne", false]], "pymember_setone (c function)": [[58, "c.PyMember_SetOne", false]], "pymemberdef (c type)": [[58, "c.PyMemberDef", false]], "pymemberdef.doc (c member)": [[58, "c.PyMemberDef.doc", false]], "pymemberdef.flags (c member)": [[58, "c.PyMemberDef.flags", false]], "pymemberdef.name (c member)": [[58, "c.PyMemberDef.name", false]], "pymemberdef.offset (c member)": [[58, "c.PyMemberDef.offset", false]], "pymemberdef.type (c member)": [[58, "c.PyMemberDef.type", false]], "pymemoryview_check (c function)": [[43, "c.PyMemoryView_Check", false]], "pymemoryview_frombuffer (c function)": [[43, "c.PyMemoryView_FromBuffer", false]], "pymemoryview_frommemory (c function)": [[43, "c.PyMemoryView_FromMemory", false]], "pymemoryview_fromobject (c function)": [[43, "c.PyMemoryView_FromObject", false]], "pymemoryview_get_base (c function)": [[43, "c.PyMemoryView_GET_BASE", false]], "pymemoryview_get_buffer (c function)": [[43, "c.PyMemoryView_GET_BUFFER", false]], "pymemoryview_getcontiguous (c function)": [[43, "c.PyMemoryView_GetContiguous", false]], "pymethod_check (c function)": [[44, "c.PyMethod_Check", false]], "pymethod_function (c function)": [[44, "c.PyMethod_Function", false]], "pymethod_get_function (c function)": [[44, "c.PyMethod_GET_FUNCTION", false]], "pymethod_get_self (c function)": [[44, "c.PyMethod_GET_SELF", false]], "pymethod_new (c function)": [[44, "c.PyMethod_New", false]], "pymethod_self (c function)": [[44, "c.PyMethod_Self", false]], "pymethod_type (c var)": [[44, "c.PyMethod_Type", false]], "pymethoddef (c type)": [[58, "c.PyMethodDef", false]], "pymethoddef.ml_doc (c member)": [[58, "c.PyMethodDef.ml_doc", false]], "pymethoddef.ml_flags (c member)": [[58, "c.PyMethodDef.ml_flags", false]], "pymethoddef.ml_meth (c member)": [[58, "c.PyMethodDef.ml_meth", false]], "pymethoddef.ml_name (c member)": [[58, "c.PyMethodDef.ml_name", false]], "pymodinit_func (c macro)": [[35, "c.PyMODINIT_FUNC", false]], "pymodule_addfunctions (c function)": [[45, "c.PyModule_AddFunctions", false]], "pymodule_addintconstant (c function)": [[45, "c.PyModule_AddIntConstant", false]], "pymodule_addintmacro (c macro)": [[45, "c.PyModule_AddIntMacro", false]], "pymodule_addobject (c function)": [[45, "c.PyModule_AddObject", false]], "pymodule_addobjectref (c function)": [[45, "c.PyModule_AddObjectRef", false]], "pymodule_addstringconstant (c function)": [[45, "c.PyModule_AddStringConstant", false]], "pymodule_addstringmacro (c macro)": [[45, "c.PyModule_AddStringMacro", false]], "pymodule_addtype (c function)": [[45, "c.PyModule_AddType", false]], "pymodule_check (c function)": [[45, "c.PyModule_Check", false]], "pymodule_checkexact (c function)": [[45, "c.PyModule_CheckExact", false]], "pymodule_create (c function)": [[45, "c.PyModule_Create", false]], "pymodule_create2 (c function)": [[45, "c.PyModule_Create2", false]], "pymodule_execdef (c function)": [[45, "c.PyModule_ExecDef", false]], "pymodule_fromdefandspec (c function)": [[45, "c.PyModule_FromDefAndSpec", false]], "pymodule_fromdefandspec2 (c function)": [[45, "c.PyModule_FromDefAndSpec2", false]], "pymodule_getdef (c function)": [[45, "c.PyModule_GetDef", false]], "pymodule_getdict (c function)": [[45, "c.PyModule_GetDict", false]], "pymodule_getfilename (c function)": [[45, "c.PyModule_GetFilename", false]], "pymodule_getfilenameobject (c function)": [[45, "c.PyModule_GetFilenameObject", false]], "pymodule_getname (c function)": [[45, "c.PyModule_GetName", false]], "pymodule_getnameobject (c function)": [[45, "c.PyModule_GetNameObject", false]], "pymodule_getstate (c function)": [[45, "c.PyModule_GetState", false]], "pymodule_new (c function)": [[45, "c.PyModule_New", false]], "pymodule_newobject (c function)": [[45, "c.PyModule_NewObject", false]], "pymodule_setdocstring (c function)": [[45, "c.PyModule_SetDocString", false]], "pymodule_type (c var)": [[45, "c.PyModule_Type", false]], "pymoduledef (c type)": [[45, "c.PyModuleDef", false]], "pymoduledef.m_base (c member)": [[45, "c.PyModuleDef.m_base", false]], "pymoduledef.m_clear (c member)": [[45, "c.PyModuleDef.m_clear", false]], "pymoduledef.m_doc (c member)": [[45, "c.PyModuleDef.m_doc", false]], "pymoduledef.m_free (c member)": [[45, "c.PyModuleDef.m_free", false]], "pymoduledef.m_methods (c member)": [[45, "c.PyModuleDef.m_methods", false]], "pymoduledef.m_name (c member)": [[45, "c.PyModuleDef.m_name", false]], "pymoduledef.m_size (c member)": [[45, "c.PyModuleDef.m_size", false]], "pymoduledef.m_slots (c member)": [[45, "c.PyModuleDef.m_slots", false]], "pymoduledef.m_slots.m_reload (c member)": [[45, "c.PyModuleDef.m_slots.m_reload", false]], "pymoduledef.m_traverse (c member)": [[45, "c.PyModuleDef.m_traverse", false]], "pymoduledef_init (c function)": [[45, "c.PyModuleDef_Init", false]], "pymoduledef_slot (c type)": [[45, "c.PyModuleDef_Slot", false]], "pymoduledef_slot.slot (c member)": [[45, "c.PyModuleDef_Slot.slot", false]], "pymoduledef_slot.value (c member)": [[45, "c.PyModuleDef_Slot.value", false]], "pynumber_absolute (c function)": [[47, "c.PyNumber_Absolute", false]], "pynumber_add (c function)": [[47, "c.PyNumber_Add", false]], "pynumber_and (c function)": [[47, "c.PyNumber_And", false]], "pynumber_asssize_t (c function)": [[47, "c.PyNumber_AsSsize_t", false]], "pynumber_check (c function)": [[47, "c.PyNumber_Check", false]], "pynumber_divmod (c function)": [[47, "c.PyNumber_Divmod", false]], "pynumber_float (c function)": [[47, "c.PyNumber_Float", false]], "pynumber_floordivide (c function)": [[47, "c.PyNumber_FloorDivide", false]], "pynumber_index (c function)": [[47, "c.PyNumber_Index", false]], "pynumber_inplaceadd (c function)": [[47, "c.PyNumber_InPlaceAdd", false]], "pynumber_inplaceand (c function)": [[47, "c.PyNumber_InPlaceAnd", false]], "pynumber_inplacefloordivide (c function)": [[47, "c.PyNumber_InPlaceFloorDivide", false]], "pynumber_inplacelshift (c function)": [[47, "c.PyNumber_InPlaceLshift", false]], "pynumber_inplacematrixmultiply (c function)": [[47, "c.PyNumber_InPlaceMatrixMultiply", false]], "pynumber_inplacemultiply (c function)": [[47, "c.PyNumber_InPlaceMultiply", false]], "pynumber_inplaceor (c function)": [[47, "c.PyNumber_InPlaceOr", false]], "pynumber_inplacepower (c function)": [[47, "c.PyNumber_InPlacePower", false]], "pynumber_inplaceremainder (c function)": [[47, "c.PyNumber_InPlaceRemainder", false]], "pynumber_inplacershift (c function)": [[47, "c.PyNumber_InPlaceRshift", false]], "pynumber_inplacesubtract (c function)": [[47, "c.PyNumber_InPlaceSubtract", false]], "pynumber_inplacetruedivide (c function)": [[47, "c.PyNumber_InPlaceTrueDivide", false]], "pynumber_inplacexor (c function)": [[47, "c.PyNumber_InPlaceXor", false]], "pynumber_invert (c function)": [[47, "c.PyNumber_Invert", false]], "pynumber_long (c function)": [[47, "c.PyNumber_Long", false]], "pynumber_lshift (c function)": [[47, "c.PyNumber_Lshift", false]], "pynumber_matrixmultiply (c function)": [[47, "c.PyNumber_MatrixMultiply", false]], "pynumber_multiply (c function)": [[47, "c.PyNumber_Multiply", false]], "pynumber_negative (c function)": [[47, "c.PyNumber_Negative", false]], "pynumber_or (c function)": [[47, "c.PyNumber_Or", false]], "pynumber_positive (c function)": [[47, "c.PyNumber_Positive", false]], "pynumber_power (c function)": [[47, "c.PyNumber_Power", false]], "pynumber_remainder (c function)": [[47, "c.PyNumber_Remainder", false]], "pynumber_rshift (c function)": [[47, "c.PyNumber_Rshift", false]], "pynumber_subtract (c function)": [[47, "c.PyNumber_Subtract", false]], "pynumber_tobase (c function)": [[47, "c.PyNumber_ToBase", false]], "pynumber_truedivide (c function)": [[47, "c.PyNumber_TrueDivide", false]], "pynumber_xor (c function)": [[47, "c.PyNumber_Xor", false]], "pynumbermethods (c type)": [[63, "c.PyNumberMethods", false]], "pynumbermethods.nb_absolute (c member)": [[63, "c.PyNumberMethods.nb_absolute", false]], "pynumbermethods.nb_add (c member)": [[63, "c.PyNumberMethods.nb_add", false]], "pynumbermethods.nb_and (c member)": [[63, "c.PyNumberMethods.nb_and", false]], "pynumbermethods.nb_bool (c member)": [[63, "c.PyNumberMethods.nb_bool", false]], "pynumbermethods.nb_divmod (c member)": [[63, "c.PyNumberMethods.nb_divmod", false]], "pynumbermethods.nb_float (c member)": [[63, "c.PyNumberMethods.nb_float", false]], "pynumbermethods.nb_floor_divide (c member)": [[63, "c.PyNumberMethods.nb_floor_divide", false]], "pynumbermethods.nb_index (c member)": [[63, "c.PyNumberMethods.nb_index", false]], "pynumbermethods.nb_inplace_add (c member)": [[63, "c.PyNumberMethods.nb_inplace_add", false]], "pynumbermethods.nb_inplace_and (c member)": [[63, "c.PyNumberMethods.nb_inplace_and", false]], "pynumbermethods.nb_inplace_floor_divide (c member)": [[63, "c.PyNumberMethods.nb_inplace_floor_divide", false]], "pynumbermethods.nb_inplace_lshift (c member)": [[63, "c.PyNumberMethods.nb_inplace_lshift", false]], "pynumbermethods.nb_inplace_matrix_multiply (c member)": [[63, "c.PyNumberMethods.nb_inplace_matrix_multiply", false]], "pynumbermethods.nb_inplace_multiply (c member)": [[63, "c.PyNumberMethods.nb_inplace_multiply", false]], "pynumbermethods.nb_inplace_or (c member)": [[63, "c.PyNumberMethods.nb_inplace_or", false]], "pynumbermethods.nb_inplace_power (c member)": [[63, "c.PyNumberMethods.nb_inplace_power", false]], "pynumbermethods.nb_inplace_remainder (c member)": [[63, "c.PyNumberMethods.nb_inplace_remainder", false]], "pynumbermethods.nb_inplace_rshift (c member)": [[63, "c.PyNumberMethods.nb_inplace_rshift", false]], "pynumbermethods.nb_inplace_subtract (c member)": [[63, "c.PyNumberMethods.nb_inplace_subtract", false]], "pynumbermethods.nb_inplace_true_divide (c member)": [[63, "c.PyNumberMethods.nb_inplace_true_divide", false]], "pynumbermethods.nb_inplace_xor (c member)": [[63, "c.PyNumberMethods.nb_inplace_xor", false]], "pynumbermethods.nb_int (c member)": [[63, "c.PyNumberMethods.nb_int", false]], "pynumbermethods.nb_invert (c member)": [[63, "c.PyNumberMethods.nb_invert", false]], "pynumbermethods.nb_lshift (c member)": [[63, "c.PyNumberMethods.nb_lshift", false]], "pynumbermethods.nb_matrix_multiply (c member)": [[63, "c.PyNumberMethods.nb_matrix_multiply", false]], "pynumbermethods.nb_multiply (c member)": [[63, "c.PyNumberMethods.nb_multiply", false]], "pynumbermethods.nb_negative (c member)": [[63, "c.PyNumberMethods.nb_negative", false]], "pynumbermethods.nb_or (c member)": [[63, "c.PyNumberMethods.nb_or", false]], "pynumbermethods.nb_positive (c member)": [[63, "c.PyNumberMethods.nb_positive", false]], "pynumbermethods.nb_power (c member)": [[63, "c.PyNumberMethods.nb_power", false]], "pynumbermethods.nb_remainder (c member)": [[63, "c.PyNumberMethods.nb_remainder", false]], "pynumbermethods.nb_reserved (c member)": [[63, "c.PyNumberMethods.nb_reserved", false]], "pynumbermethods.nb_rshift (c member)": [[63, "c.PyNumberMethods.nb_rshift", false]], "pynumbermethods.nb_subtract (c member)": [[63, "c.PyNumberMethods.nb_subtract", false]], "pynumbermethods.nb_true_divide (c member)": [[63, "c.PyNumberMethods.nb_true_divide", false]], "pynumbermethods.nb_xor (c member)": [[63, "c.PyNumberMethods.nb_xor", false]], "pyobject (c type)": [[58, "c.PyObject", false]], "pyobject._ob_next (c member)": [[63, "c.PyObject._ob_next", false]], "pyobject._ob_prev (c member)": [[63, "c.PyObject._ob_prev", false]], "pyobject.ob_refcnt (c member)": [[63, "c.PyObject.ob_refcnt", false]], "pyobject.ob_type (c member)": [[63, "c.PyObject.ob_type", false]], "pyobject_ascharbuffer (c function)": [[48, "c.PyObject_AsCharBuffer", false]], "pyobject_ascii (c function)": [[49, "c.PyObject_ASCII", false]], "pyobject_asfiledescriptor (c function)": [[24, "c.PyObject_AsFileDescriptor", false]], "pyobject_asreadbuffer (c function)": [[48, "c.PyObject_AsReadBuffer", false]], "pyobject_aswritebuffer (c function)": [[48, "c.PyObject_AsWriteBuffer", false]], "pyobject_bytes (c function)": [[49, "c.PyObject_Bytes", false]], "pyobject_call (c function)": [[10, "c.PyObject_Call", false]], "pyobject_callfunction (c function)": [[10, "c.PyObject_CallFunction", false]], "pyobject_callfunctionobjargs (c function)": [[10, "c.PyObject_CallFunctionObjArgs", false]], "pyobject_callmethod (c function)": [[10, "c.PyObject_CallMethod", false]], "pyobject_callmethodnoargs (c function)": [[10, "c.PyObject_CallMethodNoArgs", false]], "pyobject_callmethodobjargs (c function)": [[10, "c.PyObject_CallMethodObjArgs", false]], "pyobject_callmethodonearg (c function)": [[10, "c.PyObject_CallMethodOneArg", false]], "pyobject_callnoargs (c function)": [[10, "c.PyObject_CallNoArgs", false]], "pyobject_callobject (c function)": [[10, "c.PyObject_CallObject", false]], "pyobject_callobject\uff08c \u51fd\u5f0f\uff09": [[73, "index-1", false]], "pyobject_calloc (c function)": [[42, "c.PyObject_Calloc", false]], "pyobject_callonearg (c function)": [[10, "c.PyObject_CallOneArg", false]], "pyobject_checkbuffer (c function)": [[7, "c.PyObject_CheckBuffer", false]], "pyobject_checkreadbuffer (c function)": [[48, "c.PyObject_CheckReadBuffer", false]], "pyobject_clearweakrefs (c function)": [[67, "c.PyObject_ClearWeakRefs", false]], "pyobject_copydata (c function)": [[7, "c.PyObject_CopyData", false]], "pyobject_del (c function)": [[3, "c.PyObject_Del", false]], "pyobject_delattr (c function)": [[49, "c.PyObject_DelAttr", false]], "pyobject_delattrstring (c function)": [[49, "c.PyObject_DelAttrString", false]], "pyobject_delitem (c function)": [[49, "c.PyObject_DelItem", false]], "pyobject_dir (c function)": [[49, "c.PyObject_Dir", false]], "pyobject_format (c function)": [[49, "c.PyObject_Format", false]], "pyobject_free (c function)": [[42, "c.PyObject_Free", false]], "pyobject_gc_del (c function)": [[28, "c.PyObject_GC_Del", false]], "pyobject_gc_isfinalized (c function)": [[28, "c.PyObject_GC_IsFinalized", false]], "pyobject_gc_istracked (c function)": [[28, "c.PyObject_GC_IsTracked", false]], "pyobject_gc_new (c macro)": [[28, "c.PyObject_GC_New", false]], "pyobject_gc_newvar (c macro)": [[28, "c.PyObject_GC_NewVar", false]], "pyobject_gc_resize (c macro)": [[28, "c.PyObject_GC_Resize", false]], "pyobject_gc_track (c function)": [[28, "c.PyObject_GC_Track", false]], "pyobject_gc_untrack (c function)": [[28, "c.PyObject_GC_UnTrack", false]], "pyobject_genericgetattr (c function)": [[49, "c.PyObject_GenericGetAttr", false]], "pyobject_genericgetdict (c function)": [[49, "c.PyObject_GenericGetDict", false]], "pyobject_genericsetattr (c function)": [[49, "c.PyObject_GenericSetAttr", false]], "pyobject_genericsetdict (c function)": [[49, "c.PyObject_GenericSetDict", false]], "pyobject_getaiter (c function)": [[49, "c.PyObject_GetAIter", false]], "pyobject_getarenaallocator (c function)": [[42, "c.PyObject_GetArenaAllocator", false]], "pyobject_getattr (c function)": [[49, "c.PyObject_GetAttr", false]], "pyobject_getattrstring (c function)": [[49, "c.PyObject_GetAttrString", false]], "pyobject_getbuffer (c function)": [[7, "c.PyObject_GetBuffer", false]], "pyobject_getitem (c function)": [[49, "c.PyObject_GetItem", false]], "pyobject_getitemdata (c function)": [[49, "c.PyObject_GetItemData", false]], "pyobject_getiter (c function)": [[49, "c.PyObject_GetIter", false]], "pyobject_gettypedata (c function)": [[49, "c.PyObject_GetTypeData", false]], "pyobject_hasattr (c function)": [[49, "c.PyObject_HasAttr", false]], "pyobject_hasattrstring (c function)": [[49, "c.PyObject_HasAttrString", false]], "pyobject_hash (c function)": [[49, "c.PyObject_Hash", false]], "pyobject_hashnotimplemented (c function)": [[49, "c.PyObject_HashNotImplemented", false]], "pyobject_head (c macro)": [[58, "c.PyObject_HEAD", false]], "pyobject_head_init (c macro)": [[58, "c.PyObject_HEAD_INIT", false]], "pyobject_init (c function)": [[3, "c.PyObject_Init", false]], "pyobject_initvar (c function)": [[3, "c.PyObject_InitVar", false]], "pyobject_is_gc (c function)": [[28, "c.PyObject_IS_GC", false]], "pyobject_isinstance (c function)": [[49, "c.PyObject_IsInstance", false]], "pyobject_issubclass (c function)": [[49, "c.PyObject_IsSubclass", false]], "pyobject_istrue (c function)": [[49, "c.PyObject_IsTrue", false]], "pyobject_length (c function)": [[49, "c.PyObject_Length", false]], "pyobject_lengthhint (c function)": [[49, "c.PyObject_LengthHint", false]], "pyobject_malloc (c function)": [[42, "c.PyObject_Malloc", false]], "pyobject_new (c macro)": [[3, "c.PyObject_New", false]], "pyobject_newvar (c macro)": [[3, "c.PyObject_NewVar", false]], "pyobject_not (c function)": [[49, "c.PyObject_Not", false]], "pyobject_print (c function)": [[49, "c.PyObject_Print", false]], "pyobject_realloc (c function)": [[42, "c.PyObject_Realloc", false]], "pyobject_repr (c function)": [[49, "c.PyObject_Repr", false]], "pyobject_richcompare (c function)": [[49, "c.PyObject_RichCompare", false]], "pyobject_richcomparebool (c function)": [[49, "c.PyObject_RichCompareBool", false]], "pyobject_setarenaallocator (c function)": [[42, "c.PyObject_SetArenaAllocator", false]], "pyobject_setattr (c function)": [[49, "c.PyObject_SetAttr", false]], "pyobject_setattrstring (c function)": [[49, "c.PyObject_SetAttrString", false]], "pyobject_setitem (c function)": [[49, "c.PyObject_SetItem", false]], "pyobject_size (c function)": [[49, "c.PyObject_Size", false]], "pyobject_str (c function)": [[49, "c.PyObject_Str", false]], "pyobject_str\uff08c \u51fd\u5f0f\uff09": [[49, "index-2", false]], "pyobject_type (c function)": [[49, "c.PyObject_Type", false]], "pyobject_typecheck (c function)": [[49, "c.PyObject_TypeCheck", false]], "pyobject_var_head (c macro)": [[58, "c.PyObject_VAR_HEAD", false]], "pyobject_vectorcall (c function)": [[10, "c.PyObject_Vectorcall", false]], "pyobject_vectorcalldict (c function)": [[10, "c.PyObject_VectorcallDict", false]], "pyobject_vectorcallmethod (c function)": [[10, "c.PyObject_VectorcallMethod", false]], "pyobjectarenaallocator (c type)": [[42, "c.PyObjectArenaAllocator", false]], "pyos_afterfork (c function)": [[59, "c.PyOS_AfterFork", false]], "pyos_afterfork_child (c function)": [[59, "c.PyOS_AfterFork_Child", false]], "pyos_afterfork_parent (c function)": [[59, "c.PyOS_AfterFork_Parent", false]], "pyos_beforefork (c function)": [[59, "c.PyOS_BeforeFork", false]], "pyos_checkstack (c function)": [[59, "c.PyOS_CheckStack", false]], "pyos_double_to_string (c function)": [[18, "c.PyOS_double_to_string", false]], "pyos_fspath (c function)": [[59, "c.PyOS_FSPath", false]], "pyos_getsig (c function)": [[59, "c.PyOS_getsig", false]], "pyos_inputhook (c var)": [[66, "c.PyOS_InputHook", false]], "pyos_readlinefunctionpointer (c var)": [[66, "c.PyOS_ReadlineFunctionPointer", false]], "pyos_setsig (c function)": [[59, "c.PyOS_setsig", false]], "pyos_sighandler_t (c type)": [[59, "c.PyOS_sighandler_t", false]], "pyos_snprintf (c function)": [[18, "c.PyOS_snprintf", false]], "pyos_stricmp (c function)": [[18, "c.PyOS_stricmp", false]], "pyos_string_to_double (c function)": [[18, "c.PyOS_string_to_double", false]], "pyos_strnicmp (c function)": [[18, "c.PyOS_strnicmp", false]], "pyos_strtol (c function)": [[18, "c.PyOS_strtol", false]], "pyos_strtoul (c function)": [[18, "c.PyOS_strtoul", false]], "pyos_vsnprintf (c function)": [[18, "c.PyOS_vsnprintf", false]], "pypreconfig (c type)": [[34, "c.PyPreConfig", false]], "pypreconfig.allocator (c member)": [[34, "c.PyPreConfig.allocator", false]], "pypreconfig.coerce_c_locale (c member)": [[34, "c.PyPreConfig.coerce_c_locale", false]], "pypreconfig.coerce_c_locale_warn (c member)": [[34, "c.PyPreConfig.coerce_c_locale_warn", false]], "pypreconfig.configure_locale (c member)": [[34, "c.PyPreConfig.configure_locale", false]], "pypreconfig.dev_mode (c member)": [[34, "c.PyPreConfig.dev_mode", false]], "pypreconfig.isolated (c member)": [[34, "c.PyPreConfig.isolated", false]], "pypreconfig.legacy_windows_fs_encoding (c member)": [[34, "c.PyPreConfig.legacy_windows_fs_encoding", false]], "pypreconfig.parse_argv (c member)": [[34, "c.PyPreConfig.parse_argv", false]], "pypreconfig.use_environment (c member)": [[34, "c.PyPreConfig.use_environment", false]], "pypreconfig.utf8_mode (c member)": [[34, "c.PyPreConfig.utf8_mode", false]], "pypreconfig_initisolatedconfig (c function)": [[34, "c.PyPreConfig_InitIsolatedConfig", false]], "pypreconfig_initpythonconfig (c function)": [[34, "c.PyPreConfig_InitPythonConfig", false]], "pyproperty_type (c var)": [[21, "c.PyProperty_Type", false]], "pyrun_anyfile (c function)": [[66, "c.PyRun_AnyFile", false]], "pyrun_anyfileex (c function)": [[66, "c.PyRun_AnyFileEx", false]], "pyrun_anyfileexflags (c function)": [[66, "c.PyRun_AnyFileExFlags", false]], "pyrun_anyfileflags (c function)": [[66, "c.PyRun_AnyFileFlags", false]], "pyrun_file (c function)": [[66, "c.PyRun_File", false]], "pyrun_fileex (c function)": [[66, "c.PyRun_FileEx", false]], "pyrun_fileexflags (c function)": [[66, "c.PyRun_FileExFlags", false]], "pyrun_fileflags (c function)": [[66, "c.PyRun_FileFlags", false]], "pyrun_interactiveloop (c function)": [[66, "c.PyRun_InteractiveLoop", false]], "pyrun_interactiveloopflags (c function)": [[66, "c.PyRun_InteractiveLoopFlags", false]], "pyrun_interactiveone (c function)": [[66, "c.PyRun_InteractiveOne", false]], "pyrun_interactiveoneflags (c function)": [[66, "c.PyRun_InteractiveOneFlags", false]], "pyrun_simplefile (c function)": [[66, "c.PyRun_SimpleFile", false]], "pyrun_simplefileex (c function)": [[66, "c.PyRun_SimpleFileEx", false]], "pyrun_simplefileexflags (c function)": [[66, "c.PyRun_SimpleFileExFlags", false]], "pyrun_simplestring (c function)": [[66, "c.PyRun_SimpleString", false]], "pyrun_simplestringflags (c function)": [[66, "c.PyRun_SimpleStringFlags", false]], "pyrun_string (c function)": [[66, "c.PyRun_String", false]], "pyrun_stringflags (c function)": [[66, "c.PyRun_StringFlags", false]], "pysendresult (c type)": [[36, "c.PySendResult", false]], "pyseqiter_check (c function)": [[37, "c.PySeqIter_Check", false]], "pyseqiter_new (c function)": [[37, "c.PySeqIter_New", false]], "pyseqiter_type (c var)": [[37, "c.PySeqIter_Type", false]], "pysequence_check (c function)": [[54, "c.PySequence_Check", false]], "pysequence_concat (c function)": [[54, "c.PySequence_Concat", false]], "pysequence_contains (c function)": [[54, "c.PySequence_Contains", false]], "pysequence_count (c function)": [[54, "c.PySequence_Count", false]], "pysequence_delitem (c function)": [[54, "c.PySequence_DelItem", false]], "pysequence_delslice (c function)": [[54, "c.PySequence_DelSlice", false]], "pysequence_fast (c function)": [[54, "c.PySequence_Fast", false]], "pysequence_fast_get_item (c function)": [[54, "c.PySequence_Fast_GET_ITEM", false]], "pysequence_fast_get_size (c function)": [[54, "c.PySequence_Fast_GET_SIZE", false]], "pysequence_fast_items (c function)": [[54, "c.PySequence_Fast_ITEMS", false]], "pysequence_getitem (c function)": [[54, "c.PySequence_GetItem", false]], "pysequence_getitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-7", false]], "pysequence_getslice (c function)": [[54, "c.PySequence_GetSlice", false]], "pysequence_index (c function)": [[54, "c.PySequence_Index", false]], "pysequence_inplaceconcat (c function)": [[54, "c.PySequence_InPlaceConcat", false]], "pysequence_inplacerepeat (c function)": [[54, "c.PySequence_InPlaceRepeat", false]], "pysequence_item (c function)": [[54, "c.PySequence_ITEM", false]], "pysequence_length (c function)": [[54, "c.PySequence_Length", false]], "pysequence_list (c function)": [[54, "c.PySequence_List", false]], "pysequence_repeat (c function)": [[54, "c.PySequence_Repeat", false]], "pysequence_setitem (c function)": [[54, "c.PySequence_SetItem", false]], "pysequence_setslice (c function)": [[54, "c.PySequence_SetSlice", false]], "pysequence_size (c function)": [[54, "c.PySequence_Size", false]], "pysequence_tuple (c function)": [[54, "c.PySequence_Tuple", false]], "pysequencemethods (c type)": [[63, "c.PySequenceMethods", false]], "pysequencemethods.sq_ass_item (c member)": [[63, "c.PySequenceMethods.sq_ass_item", false]], "pysequencemethods.sq_concat (c member)": [[63, "c.PySequenceMethods.sq_concat", false]], "pysequencemethods.sq_contains (c member)": [[63, "c.PySequenceMethods.sq_contains", false]], "pysequencemethods.sq_inplace_concat (c member)": [[63, "c.PySequenceMethods.sq_inplace_concat", false]], "pysequencemethods.sq_inplace_repeat (c member)": [[63, "c.PySequenceMethods.sq_inplace_repeat", false]], "pysequencemethods.sq_item (c member)": [[63, "c.PySequenceMethods.sq_item", false]], "pysequencemethods.sq_length (c member)": [[63, "c.PySequenceMethods.sq_length", false]], "pysequencemethods.sq_repeat (c member)": [[63, "c.PySequenceMethods.sq_repeat", false]], "pyset_add (c function)": [[55, "c.PySet_Add", false]], "pyset_check (c function)": [[55, "c.PySet_Check", false]], "pyset_checkexact (c function)": [[55, "c.PySet_CheckExact", false]], "pyset_clear (c function)": [[55, "c.PySet_Clear", false]], "pyset_contains (c function)": [[55, "c.PySet_Contains", false]], "pyset_discard (c function)": [[55, "c.PySet_Discard", false]], "pyset_get_size (c function)": [[55, "c.PySet_GET_SIZE", false]], "pyset_new (c function)": [[55, "c.PySet_New", false]], "pyset_pop (c function)": [[55, "c.PySet_Pop", false]], "pyset_size (c function)": [[55, "c.PySet_Size", false]], "pyset_type (c var)": [[55, "c.PySet_Type", false]], "pysetobject (c type)": [[55, "c.PySetObject", false]], "pysignal_setwakeupfd (c function)": [[23, "c.PySignal_SetWakeupFd", false]], "pyslice_adjustindices (c function)": [[56, "c.PySlice_AdjustIndices", false]], "pyslice_check (c function)": [[56, "c.PySlice_Check", false]], "pyslice_getindices (c function)": [[56, "c.PySlice_GetIndices", false]], "pyslice_getindicesex (c function)": [[56, "c.PySlice_GetIndicesEx", false]], "pyslice_new (c function)": [[56, "c.PySlice_New", false]], "pyslice_type (c var)": [[56, "c.PySlice_Type", false]], "pyslice_unpack (c function)": [[56, "c.PySlice_Unpack", false]], "pystate_addmodule (c function)": [[45, "c.PyState_AddModule", false]], "pystate_findmodule (c function)": [[45, "c.PyState_FindModule", false]], "pystate_removemodule (c function)": [[45, "c.PyState_RemoveModule", false]], "pystatus (c type)": [[34, "c.PyStatus", false]], "pystatus.err_msg (c member)": [[34, "c.PyStatus.err_msg", false]], "pystatus.exitcode (c member)": [[34, "c.PyStatus.exitcode", false]], "pystatus.func (c member)": [[34, "c.PyStatus.func", false]], "pystatus_error (c function)": [[34, "c.PyStatus_Error", false]], "pystatus_exception (c function)": [[34, "c.PyStatus_Exception", false]], "pystatus_exit (c function)": [[34, "c.PyStatus_Exit", false]], "pystatus_iserror (c function)": [[34, "c.PyStatus_IsError", false]], "pystatus_isexit (c function)": [[34, "c.PyStatus_IsExit", false]], "pystatus_nomemory (c function)": [[34, "c.PyStatus_NoMemory", false]], "pystatus_ok (c function)": [[34, "c.PyStatus_Ok", false]], "pystructsequence_desc (c type)": [[60, "c.PyStructSequence_Desc", false]], "pystructsequence_desc.doc (c member)": [[60, "c.PyStructSequence_Desc.doc", false]], "pystructsequence_desc.fields (c member)": [[60, "c.PyStructSequence_Desc.fields", false]], "pystructsequence_desc.n_in_sequence (c member)": [[60, "c.PyStructSequence_Desc.n_in_sequence", false]], "pystructsequence_desc.name (c member)": [[60, "c.PyStructSequence_Desc.name", false]], "pystructsequence_field (c type)": [[60, "c.PyStructSequence_Field", false]], "pystructsequence_field.doc (c member)": [[60, "c.PyStructSequence_Field.doc", false]], "pystructsequence_field.name (c member)": [[60, "c.PyStructSequence_Field.name", false]], "pystructsequence_get_item (c function)": [[60, "c.PyStructSequence_GET_ITEM", false]], "pystructsequence_getitem (c function)": [[60, "c.PyStructSequence_GetItem", false]], "pystructsequence_inittype (c function)": [[60, "c.PyStructSequence_InitType", false]], "pystructsequence_inittype2 (c function)": [[60, "c.PyStructSequence_InitType2", false]], "pystructsequence_new (c function)": [[60, "c.PyStructSequence_New", false]], "pystructsequence_newtype (c function)": [[60, "c.PyStructSequence_NewType", false]], "pystructsequence_set_item (c function)": [[60, "c.PyStructSequence_SET_ITEM", false]], "pystructsequence_setitem (c function)": [[60, "c.PyStructSequence_SetItem", false]], "pystructsequence_unnamedfield (c var)": [[60, "c.PyStructSequence_UnnamedField", false]], "pysys_addaudithook (c function)": [[59, "c.PySys_AddAuditHook", false]], "pysys_addwarnoption (c function)": [[59, "c.PySys_AddWarnOption", false]], "pysys_addwarnoptionunicode (c function)": [[59, "c.PySys_AddWarnOptionUnicode", false]], "pysys_addxoption (c function)": [[59, "c.PySys_AddXOption", false]], "pysys_audit (c function)": [[59, "c.PySys_Audit", false]], "pysys_formatstderr (c function)": [[59, "c.PySys_FormatStderr", false]], "pysys_formatstdout (c function)": [[59, "c.PySys_FormatStdout", false]], "pysys_getobject (c function)": [[59, "c.PySys_GetObject", false]], "pysys_getxoptions (c function)": [[59, "c.PySys_GetXOptions", false]], "pysys_resetwarnoptions (c function)": [[59, "c.PySys_ResetWarnOptions", false]], "pysys_setargv (c function)": [[33, "c.PySys_SetArgv", false]], "pysys_setargvex (c function)": [[33, "c.PySys_SetArgvEx", false]], "pysys_setargvex\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false]], "pysys_setargv\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false]], "pysys_setobject (c function)": [[59, "c.PySys_SetObject", false]], "pysys_setpath (c function)": [[59, "c.PySys_SetPath", false]], "pysys_writestderr (c function)": [[59, "c.PySys_WriteStderr", false]], "pysys_writestdout (c function)": [[59, "c.PySys_WriteStdout", false]], "python 3000": [[87, "term-Python-3000", true]], "python editor\uff08python \u7de8\u8f2f\u5668\uff09": [[247, "index-0", false]], "python enhancement proposals": [[10, "index-2", false], [23, "index-9", false], [26, "index-0", false], [30, "index-2", false], [31, "index-3", false], [33, "index-39", false], [33, "index-40", false], [33, "index-41", false], [33, "index-47", false], [33, "index-48", false], [33, "index-69", false], [33, "index-70", false], [34, "index-0", false], [34, "index-17", false], [34, "index-33", false], [34, "index-34", false], [34, "index-37", false], [34, "index-38", false], [34, "index-7", false], [35, "index-37", false], [35, "index-38", false], [35, "index-39", false], [35, "index-40", false], [45, "index-10", false], [45, "index-7", false], [45, "index-8", false], [49, "index-4", false], [49, "index-5", false], [57, "index-3", false], [59, "index-1", false], [63, "index-3", false], [63, "index-4", false], [63, "index-5", false], [64, "index-0", false], [64, "index-1", false], [64, "index-2", false], [64, "index-3", false], [64, "index-4", false], [64, "index-5", false], [66, "index-3", false], [68, "index-23", false], [68, "index-4", false], [71, "index-1", false], [73, "index-0", false], [75, "index-2", false], [78, "index-2", false], [80, "index-0", false], [80, "index-5", false], [80, "index-6", false], [85, "index-2", false], [85, "index-3", false], [85, "index-7", false], [86, "index-2", false], [87, "index-100", false], [87, "index-101", false], [87, "index-102", false], [87, "index-103", false], [87, "index-71", false], [87, "index-72", false], [87, "index-73", false], [87, "index-74", false], [87, "index-75", false], [87, "index-76", false], [87, "index-77", false], [87, "index-78", false], [87, "index-79", false], [87, "index-80", false], [87, "index-81", false], [87, "index-82", false], [87, "index-83", false], [87, "index-84", false], [87, "index-85", false], [87, "index-86", false], [87, "index-87", false], [87, "index-88", false], [87, "index-89", false], [87, "index-90", false], [87, "index-91", false], [87, "index-92", false], [87, "index-93", false], [87, "index-94", false], [87, "index-95", false], [87, "index-96", false], [87, "index-97", false], [87, "index-98", false], [87, "index-99", false], [88, "index-2", false], [95, "index-0", false], [95, "index-2", false], [95, "index-4", false], [105, "index-0", false], [108, "index-0", false], [109, "index-0", false], [112, "index-0", false], [112, "index-1", false], [113, "index-24", false], [113, "index-25", false], [113, "index-26", false], [113, "index-27", false], [113, "index-28", false], [113, "index-29", false], [113, "index-30", false], [113, "index-31", false], [113, "index-32", false], [113, "index-33", false], [113, "index-34", false], [113, "index-35", false], [116, "index-4", false], [116, "index-5", false], [117, "index-4", false], [122, "index-14", false], [122, "index-15", false], [122, "index-16", false], [122, "index-17", false], [122, "index-18", false], [122, "index-19", false], [126, "index-12", false], [126, "index-13", false], [126, "index-14", false], [129, "index-2", false], [141, "index-3", false], [142, "index-3", false], [151, "index-8", false], [152, "index-4", false], [153, "index-3", false], [154, "index-3", false], [158, "index-2", false], [158, "index-5", false], [160, "index-10", false], [160, "index-11", false], [160, "index-8", false], [160, "index-9", false], [161, "index-0", false], [161, "index-1", false], [161, "index-2", false], [161, "index-3", false], [161, "index-4", false], [161, "index-7", false], [163, "index-0", false], [163, "index-2", false], [163, "index-3", false], [166, "index-2", false], [169, "index-2", false], [170, "index-2", false], [173, "index-1", false], [175, "index-7", false], [181, "index-0", false], [181, "index-1", false], [181, "index-2", false], [191, "index-0", false], [210, "index-2", false], [213, "index-10", false], [213, "index-11", false], [213, "index-12", false], [213, "index-14", false], [213, "index-6", false], [213, "index-7", false], [213, "index-8", false], [213, "index-9", false], [221, "index-0", false], [225, "index-10", false], [225, "index-14", false], [225, "index-15", false], [225, "index-20", false], [226, "index-0", false], [227, "index-2", false], [247, "index-7", false], [249, "index-2", false], [250, "index-0", false], [250, "index-1", false], [250, "index-10", false], [250, "index-11", false], [250, "index-12", false], [250, "index-13", false], [250, "index-14", false], [250, "index-16", false], [250, "index-17", false], [250, "index-18", false], [250, "index-19", false], [250, "index-2", false], [250, "index-20", false], [250, "index-21", false], [250, "index-22", false], [250, "index-23", false], [250, "index-24", false], [250, "index-25", false], [250, "index-26", false], [250, "index-3", false], [250, "index-4", false], [250, "index-5", false], [250, "index-6", false], [250, "index-7", false], [250, "index-8", false], [250, "index-9", false], [251, "index-0", false], [255, "index-0", false], [255, "index-1", false], [255, "index-2", false], [255, "index-3", false], [258, "index-1", false], [258, "index-8", false], [265, "index-1", false], [266, "index-6", false], [266, "index-7", false], [267, "index-1", false], [272, "index-0", false], [275, "index-2", false], [281, "index-3", false], [287, "index-2", false], [288, "index-12", false], [289, "index-2", false], [293, "index-22", false], [293, "index-24", false], [293, "index-25", false], [293, "index-27", false], [293, "index-44", false], [293, "index-5", false], [293, "index-53", false], [293, "index-55", false], [293, "index-6", false], [293, "index-7", false], [295, "index-4", false], [296, "index-3", false], [299, "index-2", false], [299, "index-3", false], [299, "index-4", false], [299, "index-8", false], [301, "index-2", false], [302, "index-0", false], [302, "index-10", false], [302, "index-11", false], [302, "index-2", false], [302, "index-3", false], [302, "index-5", false], [302, "index-6", false], [302, "index-7", false], [311, "index-1", false], [311, "index-2", false], [311, "index-4", false], [311, "index-5", false], [322, "index-0", false], [324, "index-1", false], [324, "index-2", false], [324, "index-3", false], [324, "index-5", false], [324, "index-6", false], [324, "index-7", false], [324, "index-8", false], [326, "index-0", false], [328, "index-0", false], [328, "index-3", false], [328, "index-4", false], [328, "index-5", false], [328, "index-6", false], [328, "index-7", false], [329, "index-0", false], [332, "index-2", false], [333, "index-0", false], [333, "index-1", false], [334, "index-9", false], [336, "index-3", false], [337, "index-1", false], [337, "index-10", false], [337, "index-11", false], [337, "index-12", false], [337, "index-13", false], [337, "index-2", false], [337, "index-4", false], [337, "index-5", false], [337, "index-7", false], [337, "index-8", false], [337, "index-9", false], [339, "index-2", false], [340, "index-0", false], [340, "index-10", false], [340, "index-11", false], [340, "index-12", false], [340, "index-14", false], [340, "index-2", false], [340, "index-3", false], [340, "index-4", false], [340, "index-5", false], [340, "index-8", false], [340, "index-9", false], [341, "index-31", false], [344, "index-49", false], [344, "index-50", false], [344, "index-57", false], [344, "index-58", false], [344, "index-60", false], [344, "index-71", false], [344, "index-72", false], [345, "index-1", false], [345, "index-19", false], [345, "index-20", false], [345, "index-21", false], [345, "index-22", false], [345, "index-23", false], [348, "index-0", false], [349, "index-2", false], [352, "index-0", false], [352, "index-13", false], [352, "index-14", false], [352, "index-15", false], [352, "index-16", false], [352, "index-19", false], [352, "index-20", false], [352, "index-25", false], [352, "index-26", false], [352, "index-30", false], [352, "index-31", false], [352, "index-32", false], [352, "index-42", false], [352, "index-43", false], [352, "index-44", false], [352, "index-9", false], [353, "index-0", false], [358, "index-0", false], [359, "index-5", false], [362, "index-3", false], [362, "index-4", false], [366, "index-8", false], [378, "index-0", false], [378, "index-1", false], [385, "index-0", false], [385, "index-1", false], [385, "index-2", false], [385, "index-3", false], [385, "index-5", false], [385, "index-6", false], [386, "index-10", false], [386, "index-100", false], [386, "index-101", false], [386, "index-102", false], [386, "index-103", false], [386, "index-104", false], [386, "index-105", false], [386, "index-106", false], [386, "index-107", false], [386, "index-11", false], [386, "index-12", false], [386, "index-15", false], [386, "index-16", false], [386, "index-17", false], [386, "index-18", false], [386, "index-19", false], [386, "index-20", false], [386, "index-21", false], [386, "index-22", false], [386, "index-23", false], [386, "index-24", false], [386, "index-25", false], [386, "index-26", false], [386, "index-27", false], [386, "index-28", false], [386, "index-29", false], [386, "index-31", false], [386, "index-32", false], [386, "index-34", false], [386, "index-36", false], [386, "index-37", false], [386, "index-38", false], [386, "index-39", false], [386, "index-40", false], [386, "index-41", false], [386, "index-42", false], [386, "index-43", false], [386, "index-44", false], [386, "index-45", false], [386, "index-46", false], [386, "index-47", false], [386, "index-48", false], [386, "index-49", false], [386, "index-50", false], [386, "index-51", false], [386, "index-52", false], [386, "index-53", false], [386, "index-54", false], [386, "index-55", false], [386, "index-56", false], [386, "index-57", false], [386, "index-58", false], [386, "index-59", false], [386, "index-60", false], [386, "index-61", false], [386, "index-62", false], [386, "index-63", false], [386, "index-64", false], [386, "index-65", false], [386, "index-66", false], [386, "index-67", false], [386, "index-68", false], [386, "index-69", false], [386, "index-70", false], [386, "index-72", false], [386, "index-73", false], [386, "index-74", false], [386, "index-75", false], [386, "index-76", false], [386, "index-77", false], [386, "index-9", false], [386, "index-93", false], [386, "index-94", false], [386, "index-95", false], [386, "index-96", false], [386, "index-97", false], [386, "index-98", false], [386, "index-99", false], [397, "index-3", false], [399, "index-9", false], [402, "index-6", false], [402, "index-7", false], [402, "index-8", false], [407, "index-38", false], [407, "index-39", false], [407, "index-40", false], [407, "index-41", false], [407, "index-42", false], [407, "index-44", false], [407, "index-45", false], [407, "index-46", false], [407, "index-47", false], [407, "index-49", false], [407, "index-50", false], [407, "index-51", false], [407, "index-52", false], [407, "index-53", false], [407, "index-54", false], [407, "index-55", false], [407, "index-56", false], [408, "index-7", false], [423, "index-0", false], [423, "index-1", false], [423, "index-2", false], [425, "index-0", false], [425, "index-1", false], [427, "index-17", false], [427, "index-19", false], [427, "index-20", false], [427, "index-24", false], [427, "index-25", false], [427, "index-26", false], [427, "index-30", false], [427, "index-33", false], [427, "index-36", false], [427, "index-37", false], [427, "index-38", false], [427, "index-39", false], [427, "index-40", false], [427, "index-41", false], [427, "index-44", false], [427, "index-45", false], [427, "index-46", false], [427, "index-47", false], [427, "index-52", false], [428, "index-107", false], [428, "index-108", false], [428, "index-109", false], [428, "index-111", false], [428, "index-115", false], [428, "index-62", false], [428, "index-85", false], [428, "index-87", false], [428, "index-90", false], [428, "index-93", false], [428, "index-94", false], [428, "index-95", false], [428, "index-96", false], [429, "index-11", false], [429, "index-12", false], [430, "index-14", false], [430, "index-19", false], [430, "index-21", false], [430, "index-26", false], [430, "index-27", false], [430, "index-28", false], [430, "index-29", false], [430, "index-30", false], [430, "index-51", false], [430, "index-79", false], [430, "index-87", false], [430, "index-89", false], [430, "index-94", false], [431, "index-0", false], [432, "index-1", false], [432, "index-11", false], [432, "index-12", false], [432, "index-13", false], [432, "index-14", false], [432, "index-15", false], [432, "index-19", false], [432, "index-2", false], [432, "index-20", false], [432, "index-21", false], [432, "index-22", false], [432, "index-23", false], [432, "index-24", false], [432, "index-25", false], [432, "index-26", false], [432, "index-27", false], [432, "index-6", false], [435, "index-1", false], [435, "index-11", false], [435, "index-12", false], [435, "index-21", false], [435, "index-26", false], [436, "index-13", false], [436, "index-16", false], [436, "index-17", false], [436, "index-41", false], [436, "index-42", false], [436, "index-46", false], [436, "index-48", false], [441, "index-15", false], [441, "index-16", false], [441, "index-17", false], [441, "index-18", false], [450, "index-16", false], [455, "index-0", false], [455, "index-10", false], [455, "index-16", false], [455, "index-39", false], [455, "index-40", false], [455, "index-53", false], [455, "index-54", false], [455, "index-58", false], [455, "index-59", false], [455, "index-7", false], [456, "index-0", false], [456, "index-1", false], [456, "index-35", false], [457, "index-0", false], [461, "index-0", false], [461, "index-16", false], [461, "index-17", false], [461, "index-19", false], [461, "index-21", false], [461, "index-38", false], [462, "index-0", false], [462, "index-1", false], [462, "index-2", false], [462, "index-3", false], [463, "index-0", false], [463, "index-1", false], [463, "index-10", false], [463, "index-12", false], [463, "index-13", false], [463, "index-14", false], [463, "index-15", false], [463, "index-16", false], [463, "index-17", false], [463, "index-2", false], [463, "index-3", false], [463, "index-4", false], [463, "index-5", false], [463, "index-6", false], [463, "index-7", false], [463, "index-8", false], [463, "index-9", false], [464, "index-0", false], [464, "index-1", false], [464, "index-10", false], [464, "index-11", false], [464, "index-12", false], [464, "index-13", false], [464, "index-14", false], [464, "index-16", false], [464, "index-2", false], [464, "index-22", false], [464, "index-25", false], [464, "index-26", false], [464, "index-3", false], [464, "index-4", false], [464, "index-5", false], [464, "index-6", false], [464, "index-8", false], [464, "index-9", false], [465, "index-0", false], [465, "index-1", false], [465, "index-10", false], [465, "index-11", false], [465, "index-12", false], [465, "index-13", false], [465, "index-14", false], [465, "index-15", false], [465, "index-16", false], [465, "index-17", false], [465, "index-18", false], [465, "index-19", false], [465, "index-2", false], [465, "index-20", false], [465, "index-21", false], [465, "index-22", false], [465, "index-23", false], [465, "index-3", false], [465, "index-4", false], [465, "index-5", false], [465, "index-6", false], [465, "index-7", false], [465, "index-9", false], [466, "index-0", false], [466, "index-1", false], [466, "index-10", false], [466, "index-11", false], [466, "index-12", false], [466, "index-13", false], [466, "index-14", false], [466, "index-15", false], [466, "index-16", false], [466, "index-17", false], [466, "index-2", false], [466, "index-3", false], [466, "index-4", false], [466, "index-5", false], [466, "index-6", false], [466, "index-8", false], [466, "index-9", false], [467, "index-0", false], [467, "index-1", false], [467, "index-10", false], [467, "index-11", false], [467, "index-12", false], [467, "index-13", false], [467, "index-14", false], [467, "index-15", false], [467, "index-16", false], [467, "index-17", false], [467, "index-18", false], [467, "index-19", false], [467, "index-2", false], [467, "index-21", false], [467, "index-24", false], [467, "index-25", false], [467, "index-26", false], [467, "index-27", false], [467, "index-28", false], [467, "index-29", false], [467, "index-3", false], [467, "index-30", false], [467, "index-31", false], [467, "index-4", false], [467, "index-5", false], [467, "index-6", false], [467, "index-7", false], [467, "index-8", false], [467, "index-9", false], [468, "index-0", false], [468, "index-1", false], [468, "index-10", false], [468, "index-11", false], [468, "index-12", false], [468, "index-14", false], [468, "index-15", false], [468, "index-16", false], [468, "index-17", false], [468, "index-18", false], [468, "index-19", false], [468, "index-2", false], [468, "index-25", false], [468, "index-3", false], [468, "index-7", false], [468, "index-8", false], [468, "index-9", false], [469, "index-0", false], [469, "index-13", false], [469, "index-14", false], [469, "index-15", false], [469, "index-16", false], [469, "index-17", false], [469, "index-18", false], [469, "index-19", false], [469, "index-2", false], [469, "index-20", false], [469, "index-21", false], [469, "index-22", false], [469, "index-23", false], [469, "index-3", false], [469, "index-4", false], [469, "index-5", false], [469, "index-6", false], [469, "index-7", false], [470, "index-0", false], [470, "index-1", false], [470, "index-10", false], [470, "index-11", false], [470, "index-12", false], [470, "index-13", false], [470, "index-14", false], [470, "index-15", false], [470, "index-16", false], [470, "index-17", false], [470, "index-18", false], [470, "index-19", false], [470, "index-2", false], [470, "index-20", false], [470, "index-22", false], [470, "index-23", false], [470, "index-24", false], [470, "index-25", false], [470, "index-26", false], [470, "index-27", false], [470, "index-28", false], [470, "index-29", false], [470, "index-3", false], [470, "index-30", false], [470, "index-31", false], [470, "index-32", false], [470, "index-34", false], [470, "index-35", false], [470, "index-38", false], [470, "index-39", false], [470, "index-4", false], [470, "index-5", false], [470, "index-6", false], [470, "index-7", false], [470, "index-8", false], [470, "index-9", false], [471, "index-1", false], [471, "index-2", false], [471, "index-3", false], [471, "index-4", false], [471, "index-6", false], [472, "index-100", false], [472, "index-101", false], [472, "index-102", false], [472, "index-103", false], [472, "index-104", false], [472, "index-105", false], [472, "index-106", false], [472, "index-107", false], [472, "index-108", false], [472, "index-109", false], [472, "index-110", false], [472, "index-111", false], [472, "index-112", false], [472, "index-113", false], [472, "index-114", false], [472, "index-115", false], [472, "index-116", false], [472, "index-117", false], [472, "index-118", false], [472, "index-40", false], [472, "index-80", false], [472, "index-81", false], [472, "index-82", false], [472, "index-83", false], [472, "index-84", false], [472, "index-85", false], [472, "index-86", false], [472, "index-87", false], [472, "index-88", false], [472, "index-89", false], [472, "index-90", false], [472, "index-91", false], [472, "index-92", false], [472, "index-93", false], [472, "index-94", false], [472, "index-95", false], [472, "index-96", false], [472, "index-97", false], [472, "index-99", false], [473, "index-100", false], [473, "index-101", false], [473, "index-102", false], [473, "index-104", false], [473, "index-105", false], [473, "index-106", false], [473, "index-107", false], [473, "index-108", false], [473, "index-109", false], [473, "index-110", false], [473, "index-111", false], [473, "index-112", false], [473, "index-113", false], [473, "index-114", false], [473, "index-115", false], [473, "index-116", false], [473, "index-117", false], [473, "index-118", false], [473, "index-119", false], [473, "index-120", false], [473, "index-121", false], [473, "index-41", false], [473, "index-82", false], [473, "index-84", false], [473, "index-85", false], [473, "index-86", false], [473, "index-87", false], [473, "index-89", false], [473, "index-90", false], [473, "index-91", false], [473, "index-92", false], [473, "index-93", false], [473, "index-94", false], [473, "index-95", false], [473, "index-96", false], [473, "index-97", false], [473, "index-98", false], [473, "index-99", false], [474, "index-1", false], [474, "index-10", false], [474, "index-11", false], [474, "index-12", false], [474, "index-13", false], [474, "index-15", false], [474, "index-16", false], [474, "index-17", false], [474, "index-2", false], [474, "index-20", false], [474, "index-21", false], [474, "index-22", false], [474, "index-24", false], [474, "index-25", false], [474, "index-26", false], [474, "index-27", false], [474, "index-28", false], [474, "index-29", false], [474, "index-3", false], [474, "index-30", false], [474, "index-31", false], [474, "index-32", false], [474, "index-33", false], [474, "index-34", false], [474, "index-35", false], [474, "index-36", false], [474, "index-37", false], [474, "index-38", false], [474, "index-39", false], [474, "index-4", false], [474, "index-40", false], [474, "index-41", false], [474, "index-42", false], [474, "index-43", false], [474, "index-44", false], [474, "index-45", false], [474, "index-46", false], [474, "index-48", false], [474, "index-56", false], [474, "index-57", false], [474, "index-58", false], [474, "index-59", false], [474, "index-6", false], [474, "index-60", false], [474, "index-61", false], [474, "index-8", false], [474, "index-9", false], [475, "index-0", false], [475, "index-1", false], [475, "index-14", false], [475, "index-2", false], [475, "index-3", false], [475, "index-4", false], [475, "index-5", false], [475, "index-6", false], [475, "index-9", false], [476, "index-10", false], [476, "index-12", false], [476, "index-13", false], [476, "index-14", false], [476, "index-15", false], [476, "index-18", false], [476, "index-2", false], [476, "index-20", false], [476, "index-21", false], [476, "index-22", false], [476, "index-29", false], [476, "index-3", false], [476, "index-30", false], [476, "index-32", false], [476, "index-33", false], [476, "index-36", false], [476, "index-37", false], [476, "index-38", false], [476, "index-4", false], [476, "index-51", false], [476, "index-52", false], [476, "index-53", false], [476, "index-54", false], [476, "index-55", false], [476, "index-56", false], [476, "index-57", false], [476, "index-58", false], [476, "index-59", false], [476, "index-6", false], [476, "index-60", false], [476, "index-61", false], [476, "index-62", false], [476, "index-8", false], [477, "index-0", false], [477, "index-1", false], [477, "index-10", false], [477, "index-11", false], [477, "index-12", false], [477, "index-13", false], [477, "index-14", false], [477, "index-15", false], [477, "index-16", false], [477, "index-17", false], [477, "index-18", false], [477, "index-19", false], [477, "index-2", false], [477, "index-20", false], [477, "index-21", false], [477, "index-22", false], [477, "index-23", false], [477, "index-24", false], [477, "index-25", false], [477, "index-26", false], [477, "index-27", false], [477, "index-28", false], [477, "index-29", false], [477, "index-3", false], [477, "index-30", false], [477, "index-31", false], [477, "index-32", false], [477, "index-33", false], [477, "index-34", false], [477, "index-35", false], [477, "index-36", false], [477, "index-37", false], [477, "index-38", false], [477, "index-39", false], [477, "index-4", false], [477, "index-42", false], [477, "index-43", false], [477, "index-44", false], [477, "index-45", false], [477, "index-46", false], [477, "index-47", false], [477, "index-48", false], [477, "index-49", false], [477, "index-5", false], [477, "index-51", false], [477, "index-52", false], [477, "index-6", false], [477, "index-7", false], [477, "index-8", false], [477, "index-9", false], [478, "index-0", false], [478, "index-1", false], [478, "index-10", false], [478, "index-11", false], [478, "index-12", false], [478, "index-13", false], [478, "index-14", false], [478, "index-15", false], [478, "index-16", false], [478, "index-17", false], [478, "index-18", false], [478, "index-19", false], [478, "index-2", false], [478, "index-20", false], [478, "index-21", false], [478, "index-22", false], [478, "index-23", false], [478, "index-24", false], [478, "index-25", false], [478, "index-26", false], [478, "index-27", false], [478, "index-28", false], [478, "index-29", false], [478, "index-3", false], [478, "index-30", false], [478, "index-4", false], [478, "index-45", false], [478, "index-46", false], [478, "index-47", false], [478, "index-48", false], [478, "index-49", false], [478, "index-5", false], [478, "index-50", false], [478, "index-52", false], [478, "index-6", false], [478, "index-7", false], [478, "index-8", false], [478, "index-9", false], [479, "index-0", false], [479, "index-1", false], [479, "index-10", false], [479, "index-11", false], [479, "index-12", false], [479, "index-13", false], [479, "index-14", false], [479, "index-15", false], [479, "index-16", false], [479, "index-17", false], [479, "index-18", false], [479, "index-20", false], [479, "index-22", false], [479, "index-23", false], [479, "index-24", false], [479, "index-25", false], [479, "index-26", false], [479, "index-28", false], [479, "index-29", false], [479, "index-3", false], [479, "index-30", false], [479, "index-31", false], [479, "index-32", false], [479, "index-33", false], [479, "index-34", false], [479, "index-35", false], [479, "index-36", false], [479, "index-37", false], [479, "index-4", false], [479, "index-5", false], [479, "index-6", false], [479, "index-7", false], [479, "index-8", false], [479, "index-9", false], [480, "index-0", false], [480, "index-1", false], [480, "index-10", false], [480, "index-11", false], [480, "index-13", false], [480, "index-14", false], [480, "index-15", false], [480, "index-17", false], [480, "index-18", false], [480, "index-19", false], [480, "index-2", false], [480, "index-20", false], [480, "index-21", false], [480, "index-22", false], [480, "index-23", false], [480, "index-24", false], [480, "index-28", false], [480, "index-29", false], [480, "index-3", false], [480, "index-30", false], [480, "index-32", false], [480, "index-33", false], [480, "index-37", false], [480, "index-38", false], [480, "index-41", false], [480, "index-42", false], [480, "index-5", false], [480, "index-6", false], [480, "index-7", false], [480, "index-9", false], [481, "index-10", false], [481, "index-11", false], [481, "index-12", false], [481, "index-15", false], [481, "index-16", false], [481, "index-17", false], [481, "index-18", false], [481, "index-19", false], [481, "index-23", false], [481, "index-24", false], [481, "index-26", false], [481, "index-33", false], [481, "index-34", false], [481, "index-35", false], [481, "index-36", false], [481, "index-37", false], [481, "index-38", false], [481, "index-5", false], [481, "index-8", false], [482, "index-0", false], [482, "index-1", false], [482, "index-10", false], [482, "index-11", false], [482, "index-12", false], [482, "index-13", false], [482, "index-14", false], [482, "index-15", false], [482, "index-16", false], [482, "index-17", false], [482, "index-18", false], [482, "index-19", false], [482, "index-2", false], [482, "index-20", false], [482, "index-23", false], [482, "index-24", false], [482, "index-25", false], [482, "index-26", false], [482, "index-27", false], [482, "index-29", false], [482, "index-3", false], [482, "index-4", false], [482, "index-5", false], [482, "index-6", false], [482, "index-7", false], [482, "index-8", false], [482, "index-9", false], [483, "index-0", false], [483, "index-10", false], [483, "index-100", false], [483, "index-101", false], [483, "index-102", false], [483, "index-103", false], [483, "index-104", false], [483, "index-105", false], [483, "index-106", false], [483, "index-107", false], [483, "index-109", false], [483, "index-11", false], [483, "index-110", false], [483, "index-111", false], [483, "index-112", false], [483, "index-113", false], [483, "index-114", false], [483, "index-115", false], [483, "index-116", false], [483, "index-117", false], [483, "index-118", false], [483, "index-119", false], [483, "index-12", false], [483, "index-120", false], [483, "index-121", false], [483, "index-122", false], [483, "index-123", false], [483, "index-124", false], [483, "index-125", false], [483, "index-126", false], [483, "index-127", false], [483, "index-128", false], [483, "index-129", false], [483, "index-13", false], [483, "index-130", false], [483, "index-131", false], [483, "index-132", false], [483, "index-133", false], [483, "index-134", false], [483, "index-135", false], [483, "index-136", false], [483, "index-137", false], [483, "index-139", false], [483, "index-14", false], [483, "index-140", false], [483, "index-141", false], [483, "index-142", false], [483, "index-143", false], [483, "index-144", false], [483, "index-145", false], [483, "index-146", false], [483, "index-147", false], [483, "index-148", false], [483, "index-149", false], [483, "index-15", false], [483, "index-150", false], [483, "index-151", false], [483, "index-152", false], [483, "index-153", false], [483, "index-155", false], [483, "index-156", false], [483, "index-157", false], [483, "index-158", false], [483, "index-159", false], [483, "index-16", false], [483, "index-160", false], [483, "index-161", false], [483, "index-162", false], [483, "index-163", false], [483, "index-164", false], [483, "index-165", false], [483, "index-166", false], [483, "index-167", false], [483, "index-168", false], [483, "index-169", false], [483, "index-17", false], [483, "index-170", false], [483, "index-171", false], [483, "index-172", false], [483, "index-173", false], [483, "index-174", false], [483, "index-175", false], [483, "index-176", false], [483, "index-177", false], [483, "index-179", false], [483, "index-18", false], [483, "index-180", false], [483, "index-181", false], [483, "index-182", false], [483, "index-183", false], [483, "index-184", false], [483, "index-185", false], [483, "index-186", false], [483, "index-187", false], [483, "index-188", false], [483, "index-189", false], [483, "index-19", false], [483, "index-190", false], [483, "index-191", false], [483, "index-192", false], [483, "index-194", false], [483, "index-195", false], [483, "index-196", false], [483, "index-197", false], [483, "index-198", false], [483, "index-199", false], [483, "index-20", false], [483, "index-200", false], [483, "index-204", false], [483, "index-206", false], [483, "index-207", false], [483, "index-208", false], [483, "index-21", false], [483, "index-210", false], [483, "index-211", false], [483, "index-212", false], [483, "index-215", false], [483, "index-217", false], [483, "index-22", false], [483, "index-221", false], [483, "index-222", false], [483, "index-223", false], [483, "index-224", false], [483, "index-225", false], [483, "index-226", false], [483, "index-229", false], [483, "index-23", false], [483, "index-230", false], [483, "index-231", false], [483, "index-234", false], [483, "index-235", false], [483, "index-236", false], [483, "index-239", false], [483, "index-24", false], [483, "index-240", false], [483, "index-241", false], [483, "index-242", false], [483, "index-243", false], [483, "index-244", false], [483, "index-245", false], [483, "index-247", false], [483, "index-248", false], [483, "index-249", false], [483, "index-25", false], [483, "index-250", false], [483, "index-251", false], [483, "index-252", false], [483, "index-253", false], [483, "index-254", false], [483, "index-255", false], [483, "index-256", false], [483, "index-259", false], [483, "index-26", false], [483, "index-260", false], [483, "index-261", false], [483, "index-262", false], [483, "index-263", false], [483, "index-264", false], [483, "index-265", false], [483, "index-266", false], [483, "index-267", false], [483, "index-268", false], [483, "index-269", false], [483, "index-27", false], [483, "index-270", false], [483, "index-271", false], [483, "index-272", false], [483, "index-273", false], [483, "index-274", false], [483, "index-275", false], [483, "index-276", false], [483, "index-277", false], [483, "index-278", false], [483, "index-279", false], [483, "index-28", false], [483, "index-280", false], [483, "index-281", false], [483, "index-282", false], [483, "index-283", false], [483, "index-284", false], [483, "index-285", false], [483, "index-286", false], [483, "index-289", false], [483, "index-29", false], [483, "index-290", false], [483, "index-291", false], [483, "index-292", false], [483, "index-293", false], [483, "index-294", false], [483, "index-295", false], [483, "index-296", false], [483, "index-297", false], [483, "index-298", false], [483, "index-299", false], [483, "index-3", false], [483, "index-30", false], [483, "index-300", false], [483, "index-301", false], [483, "index-302", false], [483, "index-303", false], [483, "index-304", false], [483, "index-305", false], [483, "index-306", false], [483, "index-31", false], [483, "index-32", false], [483, "index-33", false], [483, "index-34", false], [483, "index-38", false], [483, "index-39", false], [483, "index-4", false], [483, "index-40", false], [483, "index-41", false], [483, "index-43", false], [483, "index-44", false], [483, "index-46", false], [483, "index-47", false], [483, "index-48", false], [483, "index-49", false], [483, "index-5", false], [483, "index-50", false], [483, "index-53", false], [483, "index-54", false], [483, "index-57", false], [483, "index-58", false], [483, "index-59", false], [483, "index-6", false], [483, "index-60", false], [483, "index-61", false], [483, "index-62", false], [483, "index-63", false], [483, "index-64", false], [483, "index-66", false], [483, "index-67", false], [483, "index-68", false], [483, "index-69", false], [483, "index-7", false], [483, "index-70", false], [483, "index-71", false], [483, "index-72", false], [483, "index-73", false], [483, "index-74", false], [483, "index-75", false], [483, "index-76", false], [483, "index-78", false], [483, "index-79", false], [483, "index-8", false], [483, "index-81", false], [483, "index-82", false], [483, "index-83", false], [483, "index-84", false], [483, "index-85", false], [483, "index-87", false], [483, "index-89", false], [483, "index-9", false], [483, "index-90", false], [483, "index-91", false], [483, "index-93", false], [483, "index-96", false], [483, "index-97", false], [483, "index-98", false], [483, "index-99", false], [484, "index-23", false], [484, "index-4", false]], "python--m-py_compile \u547d\u4ee4\u5217\u9078\u9805": [[311, "cmdoption-python-m-py_compile", false], [311, "cmdoption-python-m-py_compile-arg-file", false], [311, "cmdoption-python-m-py_compile-q", false]], "python--m-sqlite3-[-h]-[-v]-[filename]-[sql] \u547d\u4ee4\u5217\u9078\u9805": [[340, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", false], [340, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", false]], "python_branch() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_branch", false]], "python_build() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_build", false]], "python_compiler() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_compiler", false]], "python_dom": [[410, "index-0", false]], "python_implementation() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_implementation", false]], "python_is_optimized() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.python_is_optimized", false]], "python_revision() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_revision", false]], "python_version() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_version", false]], "python_version_tuple() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_version_tuple", false]], "pythonasynciodebug": [[125, "index-2", false], [126, "index-17", false], [188, "index-17", false], [455, "envvar-PYTHONASYNCIODEBUG", false]], "pythonbreakpoint": [[225, "index-19", false], [352, "index-3", false], [352, "index-4", false], [352, "index-5", false], [455, "envvar-PYTHONBREAKPOINT", false], [480, "index-12", false]], "pythoncaseok": [[225, "index-16", false], [455, "envvar-PYTHONCASEOK", false], [463, "index-11", false], [482, "index-21", false], [483, "index-193", false]], "pythoncoerceclocale": [[34, "index-36", false], [293, "index-4", false], [455, "envvar-PYTHONCOERCECLOCALE", false], [456, "index-34", false], [480, "index-4", false]], "pythondebug": [[33, "index-62", false], [34, "index-22", false], [455, "envvar-PYTHONDEBUG", false], [455, "index-2", false], [456, "index-7", false]], "pythondevmode": [[34, "index-8", false], [188, "index-12", false], [455, "envvar-PYTHONDEVMODE", false], [455, "index-24", false], [480, "index-26", false]], "pythondontwritebytecode": [[33, "index-63", false], [34, "index-32", false], [85, "index-4", false], [352, "index-6", false], [455, "envvar-PYTHONDONTWRITEBYTECODE", false], [455, "index-1", false], [468, "index-20", false], [468, "index-24", false]], "pythondumprefs": [[34, "index-9", false], [63, "index-0", false], [455, "envvar-PYTHONDUMPREFS", false], [456, "index-37", false], [481, "index-3", false], [483, "index-216", false]], "pythondumprefsfile": [[483, "index-88", false]], "pythondumprefsfile=filename": [[455, "envvar-PYTHONDUMPREFSFILE-FILENAME", false]], "pythonexecutable": [[34, "index-23", false], [455, "envvar-PYTHONEXECUTABLE", false]], "pythonfaulthandler": [[34, "index-10", false], [188, "index-16", false], [214, "index-0", false], [455, "envvar-PYTHONFAULTHANDLER", false], [455, "index-20", false], [476, "index-24", false]], "pythonhashseed": [[33, "index-3", false], [33, "index-64", false], [34, "index-11", false], [428, "index-114", false], [455, "envvar-PYTHONHASHSEED", false], [455, "index-13", false], [455, "index-14", false], [455, "index-37", false], [476, "index-23", false], [476, "index-35", false], [483, "index-238", false]], "pythonhome": [[33, "index-30", false], [33, "index-31", false], [33, "index-66", false], [34, "index-12", false], [35, "index-43", false], [35, "index-45", false], [354, "index-2", false], [354, "index-4", false], [362, "index-0", false], [455, "envvar-PYTHONHOME", false], [455, "index-30", false], [455, "index-31", false], [455, "index-34", false], [455, "index-4", false], [461, "index-33", false], [461, "index-35", false], [461, "index-37", false], [474, "index-62", false], [479, "index-2", false]], "pythonic\uff08python \u98a8\u683c\u7684\uff09": [[87, "term-Pythonic", true]], "pythoninspect": [[33, "index-67", false], [34, "index-14", false], [455, "envvar-PYTHONINSPECT", false], [455, "index-6", false], [465, "index-28", false]], "pythonintmaxstrdigits": [[34, "index-15", false], [344, "index-67", false], [344, "index-68", false], [352, "index-17", false], [455, "envvar-PYTHONINTMAXSTRDIGITS", false], [455, "index-22", false], [483, "index-42", false]], "pythonioencoding": [[33, "index-17", false], [33, "index-18", false], [34, "index-26", false], [293, "index-1", false], [352, "index-35", false], [455, "envvar-PYTHONIOENCODING", false], [455, "index-43", false], [468, "index-21", false], [477, "index-53", false]], "pythonlegacywindowsfsencoding": [[33, "index-68", false], [34, "index-1", false], [352, "index-33", false], [455, "envvar-PYTHONLEGACYWINDOWSFSENCODING", false], [479, "index-19", false]], "pythonlegacywindowsstdio": [[33, "index-9", false], [34, "index-16", false], [352, "index-37", false], [455, "envvar-PYTHONLEGACYWINDOWSSTDIO", false], [455, "index-38", false], [479, "index-21", false]], "pythonmalloc": [[42, "index-1", false], [42, "index-3", false], [42, "index-4", false], [42, "index-5", false], [188, "index-14", false], [188, "index-15", false], [455, "envvar-PYTHONMALLOC", false], [455, "index-41", false], [456, "index-36", false], [479, "index-27", false], [479, "index-38", false], [483, "index-287", false]], "pythonmallocstats": [[34, "index-18", false], [42, "index-2", false], [455, "envvar-PYTHONMALLOCSTATS", false], [483, "index-288", false]], "pythonnodebugranges": [[34, "index-6", false], [428, "index-61", false], [455, "envvar-PYTHONNODEBUGRANGES", false], [455, "index-28", false], [473, "index-88", false]], "pythonnousersite": [[33, "index-71", false], [34, "index-29", false], [334, "index-6", false], [455, "envvar-PYTHONNOUSERSITE", false], [455, "index-55", false], [468, "index-6", false]], "pythonoptimize": [[33, "index-72", false], [34, "index-21", false], [455, "envvar-PYTHONOPTIMIZE", false], [455, "index-8", false]], "pythonpath": [[33, "index-65", false], [34, "index-20", false], [35, "index-44", false], [35, "index-46", false], [71, "index-0", false], [151, "index-4", false], [352, "index-22", false], [352, "index-23", false], [354, "index-0", false], [354, "index-1", false], [362, "index-1", false], [432, "index-17", false], [432, "index-18", false], [450, "index-14", false], [450, "index-17", false], [450, "index-18", false], [455, "envvar-PYTHONPATH", false], [455, "index-3", false], [455, "index-33", false], [455, "index-35", false], [455, "index-36", false], [459, "index-2", false], [461, "index-11", false], [461, "index-32", false], [461, "index-34", false], [461, "index-36", false], [477, "index-55", false], [477, "index-56", false]], "pythonperfsupport": [[34, "index-28", false], [104, "index-2", false], [455, "envvar-PYTHONPERFSUPPORT", false], [455, "index-29", false], [474, "index-23", false]], "pythonplatlibdir": [[34, "index-19", false], [354, "index-3", false], [455, "envvar-PYTHONPLATLIBDIR", false], [483, "index-154", false]], "pythonprofileimporttime": [[34, "index-13", false], [455, "envvar-PYTHONPROFILEIMPORTTIME", false], [455, "index-23", false], [480, "index-27", false], [483, "index-246", false]], "pythonpycacheprefix": [[34, "index-25", false], [352, "index-7", false], [455, "envvar-PYTHONPYCACHEPREFIX", false], [455, "index-26", false], [481, "index-2", false], [483, "index-218", false]], "pythonregrtest_unicode_guard": [[483, "index-65", false]], "pythonsafepath": [[34, "index-3", false], [327, "index-6", false], [352, "index-24", false], [455, "envvar-PYTHONSAFEPATH", false], [455, "index-12", false], [473, "index-103", false], [473, "index-83", false], [483, "index-56", false]], "pythonstartup": [[247, "index-6", false], [320, "index-0", false], [334, "index-5", false], [352, "index-18", false], [438, "index-13", false], [455, "envvar-PYTHONSTARTUP", false], [455, "index-5", false], [477, "index-40", false], [477, "index-41", false], [483, "index-228", false], [483, "index-233", false], [483, "index-258", false]], "pythontracemalloc": [[34, "index-27", false], [382, "index-0", false], [382, "index-1", false], [382, "index-2", false], [455, "envvar-PYTHONTRACEMALLOC", false], [455, "index-21", false]], "pythontzpath": [[425, "envvar-PYTHONTZPATH", false], [425, "index-2", false]], "pythonunbuffered": [[33, "index-73", false], [34, "index-5", false], [352, "index-38", false], [455, "envvar-PYTHONUNBUFFERED", false], [455, "index-56", false], [483, "index-205", false]], "pythonuserbase": [[334, "index-7", false], [334, "index-8", false], [455, "envvar-PYTHONUSERBASE", false], [468, "index-4", false]], "pythonusersite": [[362, "index-2", false]], "pythonutf8": [[34, "index-2", false], [34, "index-35", false], [293, "index-2", false], [293, "index-3", false], [352, "index-36", false], [455, "envvar-PYTHONUTF8", false], [455, "index-25", false], [455, "index-44", false], [461, "index-15", false], [480, "index-8", false]], "pythonverbose": [[33, "index-74", false], [34, "index-30", false], [455, "envvar-PYTHONVERBOSE", false], [455, "index-57", false]], "pythonwarndefaultencoding": [[258, "index-9", false], [455, "envvar-PYTHONWARNDEFAULTENCODING", false], [455, "index-27", false], [472, "index-98", false], [483, "index-108", false]], "pythonwarnings": [[34, "index-31", false], [188, "index-13", false], [400, "index-1", false], [400, "index-2", false], [400, "index-3", false], [400, "index-4", false], [400, "index-5", false], [455, "envvar-PYTHONWARNINGS", false], [455, "index-19", false], [469, "index-1", false], [469, "index-8", false], [475, "index-10", false], [480, "index-36", false], [483, "index-51", false]], "pythread_create_key (c function)": [[33, "c.PyThread_create_key", false]], "pythread_delete_key (c function)": [[33, "c.PyThread_delete_key", false]], "pythread_delete_key_value (c function)": [[33, "c.PyThread_delete_key_value", false]], "pythread_get_key_value (c function)": [[33, "c.PyThread_get_key_value", false]], "pythread_reinittls (c function)": [[33, "c.PyThread_ReInitTLS", false]], "pythread_set_key_value (c function)": [[33, "c.PyThread_set_key_value", false]], "pythread_tss_alloc (c function)": [[33, "c.PyThread_tss_alloc", false]], "pythread_tss_create (c function)": [[33, "c.PyThread_tss_create", false]], "pythread_tss_delete (c function)": [[33, "c.PyThread_tss_delete", false]], "pythread_tss_free (c function)": [[33, "c.PyThread_tss_free", false]], "pythread_tss_get (c function)": [[33, "c.PyThread_tss_get", false]], "pythread_tss_is_created (c function)": [[33, "c.PyThread_tss_is_created", false]], "pythread_tss_set (c function)": [[33, "c.PyThread_tss_set", false]], "pythreadstate (c type)": [[33, "c.PyThreadState", false]], "pythreadstate.interp (c member)": [[33, "c.PyThreadState.interp", false]], "pythreadstate_clear (c function)": [[33, "c.PyThreadState_Clear", false]], "pythreadstate_delete (c function)": [[33, "c.PyThreadState_Delete", false]], "pythreadstate_deletecurrent (c function)": [[33, "c.PyThreadState_DeleteCurrent", false]], "pythreadstate_entertracing (c function)": [[33, "c.PyThreadState_EnterTracing", false]], "pythreadstate_get (c function)": [[33, "c.PyThreadState_Get", false]], "pythreadstate_getdict (c function)": [[33, "c.PyThreadState_GetDict", false]], "pythreadstate_getframe (c function)": [[33, "c.PyThreadState_GetFrame", false]], "pythreadstate_getid (c function)": [[33, "c.PyThreadState_GetID", false]], "pythreadstate_getinterpreter (c function)": [[33, "c.PyThreadState_GetInterpreter", false]], "pythreadstate_leavetracing (c function)": [[33, "c.PyThreadState_LeaveTracing", false]], "pythreadstate_new (c function)": [[33, "c.PyThreadState_New", false]], "pythreadstate_next (c function)": [[33, "c.PyThreadState_Next", false]], "pythreadstate_setasyncexc (c function)": [[33, "c.PyThreadState_SetAsyncExc", false]], "pythreadstate_swap (c function)": [[33, "c.PyThreadState_Swap", false]], "pythreadstate\uff08c \u578b\u5225\uff09": [[33, "index-34", false]], "pytime_check (c function)": [[20, "c.PyTime_Check", false]], "pytime_checkexact (c function)": [[20, "c.PyTime_CheckExact", false]], "pytime_fromtime (c function)": [[20, "c.PyTime_FromTime", false]], "pytime_fromtimeandfold (c function)": [[20, "c.PyTime_FromTimeAndFold", false]], "pytimezone_fromoffset (c function)": [[20, "c.PyTimeZone_FromOffset", false]], "pytimezone_fromoffsetandname (c function)": [[20, "c.PyTimeZone_FromOffsetAndName", false]], "pytrace_c_call (c var)": [[33, "c.PyTrace_C_CALL", false]], "pytrace_c_exception (c var)": [[33, "c.PyTrace_C_EXCEPTION", false]], "pytrace_c_return (c var)": [[33, "c.PyTrace_C_RETURN", false]], "pytrace_call (c var)": [[33, "c.PyTrace_CALL", false]], "pytrace_exception (c var)": [[33, "c.PyTrace_EXCEPTION", false]], "pytrace_line (c var)": [[33, "c.PyTrace_LINE", false]], "pytrace_opcode (c var)": [[33, "c.PyTrace_OPCODE", false]], "pytrace_return (c var)": [[33, "c.PyTrace_RETURN", false]], "pytracemalloc_track (c function)": [[42, "c.PyTraceMalloc_Track", false]], "pytracemalloc_untrack (c function)": [[42, "c.PyTraceMalloc_Untrack", false]], "pytuple_check (c function)": [[60, "c.PyTuple_Check", false]], "pytuple_checkexact (c function)": [[60, "c.PyTuple_CheckExact", false]], "pytuple_get_item (c function)": [[60, "c.PyTuple_GET_ITEM", false]], "pytuple_get_size (c function)": [[60, "c.PyTuple_GET_SIZE", false]], "pytuple_getitem (c function)": [[60, "c.PyTuple_GetItem", false]], "pytuple_getslice (c function)": [[60, "c.PyTuple_GetSlice", false]], "pytuple_new (c function)": [[60, "c.PyTuple_New", false]], "pytuple_pack (c function)": [[60, "c.PyTuple_Pack", false]], "pytuple_set_item (c function)": [[60, "c.PyTuple_SET_ITEM", false]], "pytuple_setitem (c function)": [[60, "c.PyTuple_SetItem", false]], "pytuple_setitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-5", false]], "pytuple_size (c function)": [[60, "c.PyTuple_Size", false]], "pytuple_type (c var)": [[60, "c.PyTuple_Type", false]], "pytupleobject (c type)": [[60, "c.PyTupleObject", false]], "pytype_addwatcher (c function)": [[61, "c.PyType_AddWatcher", false]], "pytype_check (c function)": [[61, "c.PyType_Check", false]], "pytype_checkexact (c function)": [[61, "c.PyType_CheckExact", false]], "pytype_clearcache (c function)": [[61, "c.PyType_ClearCache", false]], "pytype_clearwatcher (c function)": [[61, "c.PyType_ClearWatcher", false]], "pytype_frommetaclass (c function)": [[61, "c.PyType_FromMetaclass", false]], "pytype_frommoduleandspec (c function)": [[61, "c.PyType_FromModuleAndSpec", false]], "pytype_fromspec (c function)": [[61, "c.PyType_FromSpec", false]], "pytype_fromspecwithbases (c function)": [[61, "c.PyType_FromSpecWithBases", false]], "pytype_genericalloc (c function)": [[61, "c.PyType_GenericAlloc", false]], "pytype_genericnew (c function)": [[61, "c.PyType_GenericNew", false]], "pytype_getdict (c function)": [[61, "c.PyType_GetDict", false]], "pytype_getflags (c function)": [[61, "c.PyType_GetFlags", false]], "pytype_getmodule (c function)": [[61, "c.PyType_GetModule", false]], "pytype_getmodulebydef (c function)": [[61, "c.PyType_GetModuleByDef", false]], "pytype_getmodulestate (c function)": [[61, "c.PyType_GetModuleState", false]], "pytype_getname (c function)": [[61, "c.PyType_GetName", false]], "pytype_getqualname (c function)": [[61, "c.PyType_GetQualName", false]], "pytype_getslot (c function)": [[61, "c.PyType_GetSlot", false]], "pytype_gettypedatasize (c function)": [[49, "c.PyType_GetTypeDataSize", false]], "pytype_hasfeature (c function)": [[61, "c.PyType_HasFeature", false]], "pytype_is_gc (c function)": [[61, "c.PyType_IS_GC", false]], "pytype_issubtype (c function)": [[61, "c.PyType_IsSubtype", false]], "pytype_modified (c function)": [[61, "c.PyType_Modified", false]], "pytype_ready (c function)": [[61, "c.PyType_Ready", false]], "pytype_slot (c type)": [[61, "c.PyType_Slot", false]], "pytype_slot.pfunc (c member)": [[61, "c.PyType_Slot.pfunc", false]], "pytype_slot.slot (c member)": [[61, "c.PyType_Slot.slot", false]], "pytype_spec (c type)": [[61, "c.PyType_Spec", false]], "pytype_spec.basicsize (c member)": [[61, "c.PyType_Spec.basicsize", false]], "pytype_spec.flags (c member)": [[61, "c.PyType_Spec.flags", false]], "pytype_spec.itemsize (c member)": [[61, "c.PyType_Spec.itemsize", false]], "pytype_spec.name (c member)": [[61, "c.PyType_Spec.name", false]], "pytype_spec.slots (c member)": [[61, "c.PyType_Spec.slots", false]], "pytype_type (c var)": [[61, "c.PyType_Type", false]], "pytype_watch (c function)": [[61, "c.PyType_Watch", false]], "pytype_watchcallback (c type)": [[61, "c.PyType_WatchCallback", false]], "pytypeobject (c type)": [[61, "c.PyTypeObject", false]], "pytypeobject.tp_alloc (c member)": [[63, "c.PyTypeObject.tp_alloc", false]], "pytypeobject.tp_as_async (c member)": [[63, "c.PyTypeObject.tp_as_async", false]], "pytypeobject.tp_as_buffer (c member)": [[63, "c.PyTypeObject.tp_as_buffer", false]], "pytypeobject.tp_as_mapping (c member)": [[63, "c.PyTypeObject.tp_as_mapping", false]], "pytypeobject.tp_as_number (c member)": [[63, "c.PyTypeObject.tp_as_number", false]], "pytypeobject.tp_as_sequence (c member)": [[63, "c.PyTypeObject.tp_as_sequence", false]], "pytypeobject.tp_base (c member)": [[63, "c.PyTypeObject.tp_base", false]], "pytypeobject.tp_bases (c member)": [[63, "c.PyTypeObject.tp_bases", false]], "pytypeobject.tp_basicsize (c member)": [[63, "c.PyTypeObject.tp_basicsize", false]], "pytypeobject.tp_cache (c member)": [[63, "c.PyTypeObject.tp_cache", false]], "pytypeobject.tp_call (c member)": [[63, "c.PyTypeObject.tp_call", false]], "pytypeobject.tp_clear (c member)": [[63, "c.PyTypeObject.tp_clear", false]], "pytypeobject.tp_dealloc (c member)": [[63, "c.PyTypeObject.tp_dealloc", false]], "pytypeobject.tp_del (c member)": [[63, "c.PyTypeObject.tp_del", false]], "pytypeobject.tp_descr_get (c member)": [[63, "c.PyTypeObject.tp_descr_get", false]], "pytypeobject.tp_descr_set (c member)": [[63, "c.PyTypeObject.tp_descr_set", false]], "pytypeobject.tp_dict (c member)": [[63, "c.PyTypeObject.tp_dict", false]], "pytypeobject.tp_dictoffset (c member)": [[63, "c.PyTypeObject.tp_dictoffset", false]], "pytypeobject.tp_doc (c member)": [[63, "c.PyTypeObject.tp_doc", false]], "pytypeobject.tp_finalize (c member)": [[63, "c.PyTypeObject.tp_finalize", false]], "pytypeobject.tp_flags (c member)": [[63, "c.PyTypeObject.tp_flags", false]], "pytypeobject.tp_free (c member)": [[63, "c.PyTypeObject.tp_free", false]], "pytypeobject.tp_getattr (c member)": [[63, "c.PyTypeObject.tp_getattr", false]], "pytypeobject.tp_getattro (c member)": [[63, "c.PyTypeObject.tp_getattro", false]], "pytypeobject.tp_getset (c member)": [[63, "c.PyTypeObject.tp_getset", false]], "pytypeobject.tp_hash (c member)": [[63, "c.PyTypeObject.tp_hash", false]], "pytypeobject.tp_init (c member)": [[63, "c.PyTypeObject.tp_init", false]], "pytypeobject.tp_is_gc (c member)": [[63, "c.PyTypeObject.tp_is_gc", false]], "pytypeobject.tp_itemsize (c member)": [[63, "c.PyTypeObject.tp_itemsize", false]], "pytypeobject.tp_iter (c member)": [[63, "c.PyTypeObject.tp_iter", false]], "pytypeobject.tp_iternext (c member)": [[63, "c.PyTypeObject.tp_iternext", false]], "pytypeobject.tp_members (c member)": [[63, "c.PyTypeObject.tp_members", false]], "pytypeobject.tp_methods (c member)": [[63, "c.PyTypeObject.tp_methods", false]], "pytypeobject.tp_mro (c member)": [[63, "c.PyTypeObject.tp_mro", false]], "pytypeobject.tp_name (c member)": [[63, "c.PyTypeObject.tp_name", false]], "pytypeobject.tp_new (c member)": [[63, "c.PyTypeObject.tp_new", false]], "pytypeobject.tp_repr (c member)": [[63, "c.PyTypeObject.tp_repr", false]], "pytypeobject.tp_richcompare (c member)": [[63, "c.PyTypeObject.tp_richcompare", false]], "pytypeobject.tp_setattr (c member)": [[63, "c.PyTypeObject.tp_setattr", false]], "pytypeobject.tp_setattro (c member)": [[63, "c.PyTypeObject.tp_setattro", false]], "pytypeobject.tp_str (c member)": [[63, "c.PyTypeObject.tp_str", false]], "pytypeobject.tp_subclasses (c member)": [[63, "c.PyTypeObject.tp_subclasses", false]], "pytypeobject.tp_traverse (c member)": [[63, "c.PyTypeObject.tp_traverse", false]], "pytypeobject.tp_vectorcall (c member)": [[63, "c.PyTypeObject.tp_vectorcall", false]], "pytypeobject.tp_vectorcall_offset (c member)": [[63, "c.PyTypeObject.tp_vectorcall_offset", false]], "pytypeobject.tp_version_tag (c member)": [[63, "c.PyTypeObject.tp_version_tag", false]], "pytypeobject.tp_watched (c member)": [[63, "c.PyTypeObject.tp_watched", false]], "pytypeobject.tp_weaklist (c member)": [[63, "c.PyTypeObject.tp_weaklist", false]], "pytypeobject.tp_weaklistoffset (c member)": [[63, "c.PyTypeObject.tp_weaklistoffset", false]], "pytzinfo_check (c function)": [[20, "c.PyTZInfo_Check", false]], "pytzinfo_checkexact (c function)": [[20, "c.PyTZInfo_CheckExact", false]], "pyunicode_1byte_data (c function)": [[64, "c.PyUnicode_1BYTE_DATA", false]], "pyunicode_1byte_kind (c macro)": [[64, "c.PyUnicode_1BYTE_KIND", false]], "pyunicode_2byte_data (c function)": [[64, "c.PyUnicode_2BYTE_DATA", false]], "pyunicode_2byte_kind (c macro)": [[64, "c.PyUnicode_2BYTE_KIND", false]], "pyunicode_4byte_data (c function)": [[64, "c.PyUnicode_4BYTE_DATA", false]], "pyunicode_4byte_kind (c macro)": [[64, "c.PyUnicode_4BYTE_KIND", false]], "pyunicode_asasciistring (c function)": [[64, "c.PyUnicode_AsASCIIString", false]], "pyunicode_ascharmapstring (c function)": [[64, "c.PyUnicode_AsCharmapString", false]], "pyunicode_asencodedstring (c function)": [[64, "c.PyUnicode_AsEncodedString", false]], "pyunicode_aslatin1string (c function)": [[64, "c.PyUnicode_AsLatin1String", false]], "pyunicode_asmbcsstring (c function)": [[64, "c.PyUnicode_AsMBCSString", false]], "pyunicode_asrawunicodeescapestring (c function)": [[64, "c.PyUnicode_AsRawUnicodeEscapeString", false]], "pyunicode_asucs4 (c function)": [[64, "c.PyUnicode_AsUCS4", false]], "pyunicode_asucs4copy (c function)": [[64, "c.PyUnicode_AsUCS4Copy", false]], "pyunicode_asunicodeescapestring (c function)": [[64, "c.PyUnicode_AsUnicodeEscapeString", false]], "pyunicode_asutf16string (c function)": [[64, "c.PyUnicode_AsUTF16String", false]], "pyunicode_asutf32string (c function)": [[64, "c.PyUnicode_AsUTF32String", false]], "pyunicode_asutf8 (c function)": [[64, "c.PyUnicode_AsUTF8", false]], "pyunicode_asutf8andsize (c function)": [[64, "c.PyUnicode_AsUTF8AndSize", false]], "pyunicode_asutf8string (c function)": [[64, "c.PyUnicode_AsUTF8String", false]], "pyunicode_aswidechar (c function)": [[64, "c.PyUnicode_AsWideChar", false]], "pyunicode_aswidecharstring (c function)": [[64, "c.PyUnicode_AsWideCharString", false]], "pyunicode_check (c function)": [[64, "c.PyUnicode_Check", false]], "pyunicode_checkexact (c function)": [[64, "c.PyUnicode_CheckExact", false]], "pyunicode_compare (c function)": [[64, "c.PyUnicode_Compare", false]], "pyunicode_comparewithasciistring (c function)": [[64, "c.PyUnicode_CompareWithASCIIString", false]], "pyunicode_concat (c function)": [[64, "c.PyUnicode_Concat", false]], "pyunicode_contains (c function)": [[64, "c.PyUnicode_Contains", false]], "pyunicode_copycharacters (c function)": [[64, "c.PyUnicode_CopyCharacters", false]], "pyunicode_count (c function)": [[64, "c.PyUnicode_Count", false]], "pyunicode_data (c function)": [[64, "c.PyUnicode_DATA", false]], "pyunicode_decode (c function)": [[64, "c.PyUnicode_Decode", false]], "pyunicode_decodeascii (c function)": [[64, "c.PyUnicode_DecodeASCII", false]], "pyunicode_decodecharmap (c function)": [[64, "c.PyUnicode_DecodeCharmap", false]], "pyunicode_decodefsdefault (c function)": [[64, "c.PyUnicode_DecodeFSDefault", false]], "pyunicode_decodefsdefaultandsize (c function)": [[64, "c.PyUnicode_DecodeFSDefaultAndSize", false]], "pyunicode_decodelatin1 (c function)": [[64, "c.PyUnicode_DecodeLatin1", false]], "pyunicode_decodelocale (c function)": [[64, "c.PyUnicode_DecodeLocale", false]], "pyunicode_decodelocaleandsize (c function)": [[64, "c.PyUnicode_DecodeLocaleAndSize", false]], "pyunicode_decodembcs (c function)": [[64, "c.PyUnicode_DecodeMBCS", false]], "pyunicode_decodembcsstateful (c function)": [[64, "c.PyUnicode_DecodeMBCSStateful", false]], "pyunicode_decoderawunicodeescape (c function)": [[64, "c.PyUnicode_DecodeRawUnicodeEscape", false]], "pyunicode_decodeunicodeescape (c function)": [[64, "c.PyUnicode_DecodeUnicodeEscape", false]], "pyunicode_decodeutf16 (c function)": [[64, "c.PyUnicode_DecodeUTF16", false]], "pyunicode_decodeutf16stateful (c function)": [[64, "c.PyUnicode_DecodeUTF16Stateful", false]], "pyunicode_decodeutf32 (c function)": [[64, "c.PyUnicode_DecodeUTF32", false]], "pyunicode_decodeutf32stateful (c function)": [[64, "c.PyUnicode_DecodeUTF32Stateful", false]], "pyunicode_decodeutf7 (c function)": [[64, "c.PyUnicode_DecodeUTF7", false]], "pyunicode_decodeutf7stateful (c function)": [[64, "c.PyUnicode_DecodeUTF7Stateful", false]], "pyunicode_decodeutf8 (c function)": [[64, "c.PyUnicode_DecodeUTF8", false]], "pyunicode_decodeutf8stateful (c function)": [[64, "c.PyUnicode_DecodeUTF8Stateful", false]], "pyunicode_encodecodepage (c function)": [[64, "c.PyUnicode_EncodeCodePage", false]], "pyunicode_encodefsdefault (c function)": [[64, "c.PyUnicode_EncodeFSDefault", false]], "pyunicode_encodelocale (c function)": [[64, "c.PyUnicode_EncodeLocale", false]], "pyunicode_fill (c function)": [[64, "c.PyUnicode_Fill", false]], "pyunicode_find (c function)": [[64, "c.PyUnicode_Find", false]], "pyunicode_findchar (c function)": [[64, "c.PyUnicode_FindChar", false]], "pyunicode_format (c function)": [[64, "c.PyUnicode_Format", false]], "pyunicode_fromencodedobject (c function)": [[64, "c.PyUnicode_FromEncodedObject", false]], "pyunicode_fromformat (c function)": [[64, "c.PyUnicode_FromFormat", false]], "pyunicode_fromformatv (c function)": [[64, "c.PyUnicode_FromFormatV", false]], "pyunicode_fromkindanddata (c function)": [[64, "c.PyUnicode_FromKindAndData", false]], "pyunicode_fromobject (c function)": [[64, "c.PyUnicode_FromObject", false]], "pyunicode_fromstring (c function)": [[64, "c.PyUnicode_FromString", false]], "pyunicode_fromstringandsize (c function)": [[64, "c.PyUnicode_FromStringAndSize", false]], "pyunicode_fromwidechar (c function)": [[64, "c.PyUnicode_FromWideChar", false]], "pyunicode_fsconverter (c function)": [[64, "c.PyUnicode_FSConverter", false]], "pyunicode_fsdecoder (c function)": [[64, "c.PyUnicode_FSDecoder", false]], "pyunicode_get_length (c function)": [[64, "c.PyUnicode_GET_LENGTH", false]], "pyunicode_getlength (c function)": [[64, "c.PyUnicode_GetLength", false]], "pyunicode_internfromstring (c function)": [[64, "c.PyUnicode_InternFromString", false]], "pyunicode_interninplace (c function)": [[64, "c.PyUnicode_InternInPlace", false]], "pyunicode_isidentifier (c function)": [[64, "c.PyUnicode_IsIdentifier", false]], "pyunicode_join (c function)": [[64, "c.PyUnicode_Join", false]], "pyunicode_kind (c function)": [[64, "c.PyUnicode_KIND", false]], "pyunicode_max_char_value (c function)": [[64, "c.PyUnicode_MAX_CHAR_VALUE", false]], "pyunicode_new (c function)": [[64, "c.PyUnicode_New", false]], "pyunicode_read (c function)": [[64, "c.PyUnicode_READ", false]], "pyunicode_read_char (c function)": [[64, "c.PyUnicode_READ_CHAR", false]], "pyunicode_readchar (c function)": [[64, "c.PyUnicode_ReadChar", false]], "pyunicode_ready (c function)": [[64, "c.PyUnicode_READY", false]], "pyunicode_replace (c function)": [[64, "c.PyUnicode_Replace", false]], "pyunicode_richcompare (c function)": [[64, "c.PyUnicode_RichCompare", false]], "pyunicode_split (c function)": [[64, "c.PyUnicode_Split", false]], "pyunicode_splitlines (c function)": [[64, "c.PyUnicode_Splitlines", false]], "pyunicode_substring (c function)": [[64, "c.PyUnicode_Substring", false]], "pyunicode_tailmatch (c function)": [[64, "c.PyUnicode_Tailmatch", false]], "pyunicode_translate (c function)": [[64, "c.PyUnicode_Translate", false]], "pyunicode_type (c var)": [[64, "c.PyUnicode_Type", false]], "pyunicode_write (c function)": [[64, "c.PyUnicode_WRITE", false]], "pyunicode_writechar (c function)": [[64, "c.PyUnicode_WriteChar", false]], "pyunicodedecodeerror_create (c function)": [[23, "c.PyUnicodeDecodeError_Create", false]], "pyunicodedecodeerror_getencoding (c function)": [[23, "c.PyUnicodeDecodeError_GetEncoding", false]], "pyunicodedecodeerror_getend (c function)": [[23, "c.PyUnicodeDecodeError_GetEnd", false]], "pyunicodedecodeerror_getobject (c function)": [[23, "c.PyUnicodeDecodeError_GetObject", false]], "pyunicodedecodeerror_getreason (c function)": [[23, "c.PyUnicodeDecodeError_GetReason", false]], "pyunicodedecodeerror_getstart (c function)": [[23, "c.PyUnicodeDecodeError_GetStart", false]], "pyunicodedecodeerror_setend (c function)": [[23, "c.PyUnicodeDecodeError_SetEnd", false]], "pyunicodedecodeerror_setreason (c function)": [[23, "c.PyUnicodeDecodeError_SetReason", false]], "pyunicodedecodeerror_setstart (c function)": [[23, "c.PyUnicodeDecodeError_SetStart", false]], "pyunicodeencodeerror_getencoding (c function)": [[23, "c.PyUnicodeEncodeError_GetEncoding", false]], "pyunicodeencodeerror_getend (c function)": [[23, "c.PyUnicodeEncodeError_GetEnd", false]], "pyunicodeencodeerror_getobject (c function)": [[23, "c.PyUnicodeEncodeError_GetObject", false]], "pyunicodeencodeerror_getreason (c function)": [[23, "c.PyUnicodeEncodeError_GetReason", false]], "pyunicodeencodeerror_getstart (c function)": [[23, "c.PyUnicodeEncodeError_GetStart", false]], "pyunicodeencodeerror_setend (c function)": [[23, "c.PyUnicodeEncodeError_SetEnd", false]], "pyunicodeencodeerror_setreason (c function)": [[23, "c.PyUnicodeEncodeError_SetReason", false]], "pyunicodeencodeerror_setstart (c function)": [[23, "c.PyUnicodeEncodeError_SetStart", false]], "pyunicodeobject (c type)": [[64, "c.PyUnicodeObject", false]], "pyunicodetranslateerror_getend (c function)": [[23, "c.PyUnicodeTranslateError_GetEnd", false]], "pyunicodetranslateerror_getobject (c function)": [[23, "c.PyUnicodeTranslateError_GetObject", false]], "pyunicodetranslateerror_getreason (c function)": [[23, "c.PyUnicodeTranslateError_GetReason", false]], "pyunicodetranslateerror_getstart (c function)": [[23, "c.PyUnicodeTranslateError_GetStart", false]], "pyunicodetranslateerror_setend (c function)": [[23, "c.PyUnicodeTranslateError_SetEnd", false]], "pyunicodetranslateerror_setreason (c function)": [[23, "c.PyUnicodeTranslateError_SetReason", false]], "pyunicodetranslateerror_setstart (c function)": [[23, "c.PyUnicodeTranslateError_SetStart", false]], "pyunstable": [[57, "index-1", false]], "pyunstable_code_getextra (c function)": [[13, "c.PyUnstable_Code_GetExtra", false]], "pyunstable_code_new (c function)": [[13, "c.PyUnstable_Code_New", false]], "pyunstable_code_newwithposonlyargs (c function)": [[13, "c.PyUnstable_Code_NewWithPosOnlyArgs", false]], "pyunstable_code_setextra (c function)": [[13, "c.PyUnstable_Code_SetExtra", false]], "pyunstable_eval_requestcodeextraindex (c function)": [[13, "c.PyUnstable_Eval_RequestCodeExtraIndex", false]], "pyunstable_exc_prepreraisestar (c function)": [[23, "c.PyUnstable_Exc_PrepReraiseStar", false]], "pyunstable_gc_visitobjects (c function)": [[28, "c.PyUnstable_GC_VisitObjects", false]], "pyunstable_interpreterframe_getcode (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetCode", false]], "pyunstable_interpreterframe_getlasti (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetLasti", false]], "pyunstable_interpreterframe_getline (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetLine", false]], "pyunstable_long_compactvalue (c function)": [[39, "c.PyUnstable_Long_CompactValue", false]], "pyunstable_long_iscompact (c function)": [[39, "c.PyUnstable_Long_IsCompact", false]], "pyunstable_object_gc_newwithextradata (c function)": [[28, "c.PyUnstable_Object_GC_NewWithExtraData", false]], "pyunstable_perfmapstate_fini (c function)": [[51, "c.PyUnstable_PerfMapState_Fini", false]], "pyunstable_perfmapstate_init (c function)": [[51, "c.PyUnstable_PerfMapState_Init", false]], "pyunstable_type_assignversiontag (c function)": [[61, "c.PyUnstable_Type_AssignVersionTag", false]], "pyunstable_writeperfmapentry (c function)": [[51, "c.PyUnstable_WritePerfMapEntry", false]], "pyvarobject (c type)": [[58, "c.PyVarObject", false]], "pyvarobject.ob_size (c member)": [[63, "c.PyVarObject.ob_size", false]], "pyvarobject_head_init (c macro)": [[58, "c.PyVarObject_HEAD_INIT", false]], "pyvectorcall_call (c function)": [[10, "c.PyVectorcall_Call", false]], "pyvectorcall_function (c function)": [[10, "c.PyVectorcall_Function", false]], "pyvectorcall_nargs (c function)": [[10, "c.PyVectorcall_NARGS", false]], "pyweakref_check (c function)": [[67, "c.PyWeakref_Check", false]], "pyweakref_checkproxy (c function)": [[67, "c.PyWeakref_CheckProxy", false]], "pyweakref_checkref (c function)": [[67, "c.PyWeakref_CheckRef", false]], "pyweakref_get_object (c function)": [[67, "c.PyWeakref_GET_OBJECT", false]], "pyweakref_getobject (c function)": [[67, "c.PyWeakref_GetObject", false]], "pyweakref_newproxy (c function)": [[67, "c.PyWeakref_NewProxy", false]], "pyweakref_newref (c function)": [[67, "c.PyWeakref_NewRef", false]], "pywidestringlist (c type)": [[34, "c.PyWideStringList", false]], "pywidestringlist.items (c member)": [[34, "c.PyWideStringList.items", false]], "pywidestringlist.length (c member)": [[34, "c.PyWideStringList.length", false]], "pywidestringlist_append (c function)": [[34, "c.PyWideStringList_Append", false]], "pywidestringlist_insert (c function)": [[34, "c.PyWideStringList_Insert", false]], "pywrapper_new (c function)": [[21, "c.PyWrapper_New", false]], "pyzipfile (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.PyZipFile", false]], "qiflush() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.qiflush", false]], "qname (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.QName", false]], "qsize() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.qsize", false]], "qsize() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.qsize", false]], "qsize() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.qsize", false]], "qsize() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.qsize", false]], "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09": [[87, "term-qualified-name", true]], "quantiles() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.quantiles", false]], "quantiles() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.quantiles", false]], "quantize() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.quantize", false]], "quantize() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.quantize", false]], "queryinfokey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryInfoKey", false]], "queryreflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryReflectionKey", false]], "queryvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryValue", false]], "queryvalueex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryValueEx", false]], "question (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.QUESTION", false]], "queue": [[316, "module-queue", false]], "queue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.Queue", false]], "queue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Queue", false]], "queue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.Queue", false]], "queue (sched.scheduler \u7684\u5c6c\u6027)": [[325, "sched.scheduler.queue", false]], "queue() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Queue", false]], "queueempty": [[134, "asyncio.QueueEmpty", false]], "queuefull": [[134, "asyncio.QueueFull", false]], "queuehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.QueueHandler", false]], "queuelistener (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.QueueListener", false]], "quick_ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.quick_ratio", false]], "quiet (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.quiet", false]], "quit (pdb command)": [[297, "pdbcommand-quit", false]], "quit (\u5167\u5efa\u8b8a\u6578)": [[168, "quit", false]], "quit() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.quit", false]], "quit() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.quit", false]], "quit() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.quit", false]], "quit() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.quit", false]], "quit() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.quit", false]], "quitting (bdb.bdb attribute)": [[144, "index-0", false]], "quopri": [[317, "module-quopri", false]], "quote() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.quote", false]], "quote() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.quote", false]], "quote() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote", false]], "quote_all (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_ALL", false]], "quote_from_bytes() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote_from_bytes", false]], "quote_minimal (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_MINIMAL", false]], "quote_none (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NONE", false]], "quote_nonnumeric (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NONNUMERIC", false]], "quote_notnull (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NOTNULL", false]], "quote_plus() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote_plus", false]], "quote_strings (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_STRINGS", false]], "quoteattr() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.quoteattr", false]], "quotechar (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.quotechar", false]], "quoted-printable encoding\uff08\u53ef\u5217\u5370\u5b57\u5143\u7de8\u78bc\uff09": [[317, "index-0", false]], "quoted-printable\uff08\u53ef\u5217\u5370\u5b57\u5143\uff09": [[317, "index-0", false]], "quotes (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.quotes", false]], "quoting (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.quoting", false]], "r\"": [[435, "index-20", false]], "r'": [[435, "index-20", false]], "r_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.R_OK", false]], "radians() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.radians", false]], "radians() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.radians", false]], "radiobuttongroup (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.RadioButtonGroup", false]], "radiogroup() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.radiogroup", false]], "radix (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.radix", false]], "radix() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.radix", false]], "radix() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.radix", false]], "radixchar (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.RADIXCHAR", false]], "raise": [[213, "index-1", false], [436, "index-27", true]], "raise (2to3 fixer)": [[112, "to3fixer-raise", false]], "raise (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Raise", false]], "raise (monitoring event)": [[353, "monitoring-event-RAISE", false]], "raise an exception\uff08\u5f15\u767c\u4f8b\u5916\uff09": [[429, "index-15", false]], "raise_on_defect (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.raise_on_defect", false]], "raise_signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.raise_signal", false]], "raise_varargs (opcode)": [[191, "opcode-RAISE_VARARGS", false]], "raiseexceptions (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.raiseExceptions", false]], "raiseing": [[436, "index-27", false]], "rand_add() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_add", false]], "rand_bytes() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_bytes", false]], "rand_status() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_status", false]], "randbelow() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.randbelow", false]], "randbits() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.randbits", false]], "randbytes() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randbytes", false]], "randint() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randint", false]], "random": [[318, "module-random", false]], "random (random \u4e2d\u7684\u985e\u5225)": [[318, "random.Random", false]], "random() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.random", false]], "random() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.random", false]], "randrange() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randrange", false]], "range": [[344, "index-27", false], [427, "index-8", false]], "range (\u5167\u5efa\u985e\u5225)": [[344, "range", false]], "rarrow (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RARROW", false]], "ratecv() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.ratecv", false]], "ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.ratio", false]], "rational (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Rational", false]], "raw (io.bufferediobase \u7684\u5c6c\u6027)": [[258, "io.BufferedIOBase.raw", false]], "raw string literal\uff08\u539f\u59cb\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-20", false]], "raw string\uff08\u539f\u59cb\u5b57\u4e32\uff09": [[435, "index-18", false]], "raw() (pickle.picklebuffer \u7684\u65b9\u6cd5)": [[299, "pickle.PickleBuffer.raw", false]], "raw() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.raw", false]], "raw_data_manager (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.raw_data_manager", false]], "raw_decode() (json.jsondecoder \u7684\u65b9\u6cd5)": [[262, "json.JSONDecoder.raw_decode", false]], "raw_input (2to3 fixer)": [[112, "to3fixer-raw_input", false]], "raw_input() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.raw_input", false]], "rawarray() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.RawArray", false]], "rawconfigparser (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.RawConfigParser", false]], "rawdescriptionhelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.RawDescriptionHelpFormatter", false]], "rawiobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.RawIOBase", false]], "rawpen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.RawPen", false]], "rawtexthelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.RawTextHelpFormatter", false]], "rawturtle (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.RawTurtle", false]], "rawvalue() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.RawValue", false]], "rbrace (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RBRACE", false]], "re": [[220, "index-1", false], [319, "module-re", false], [344, "index-33", false]], "re (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.re", false]], "read (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.READ", false]], "read() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.read", false]], "read() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.read", false]], "read() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.read", false]], "read() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read", false]], "read() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.read", false]], "read() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.read", false]], "read() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.read", false]], "read() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.read", false]], "read() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.read", false]], "read() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.read", false]], "read() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.read", false]], "read() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.read", false]], "read() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.read", false]], "read() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.read", false]], "read() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.read", false]], "read() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.read", false]], "read() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.read", false]], "read() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.read", false]], "read() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.read", false]], "read1() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.read1", false]], "read1() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.read1", false]], "read1() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.read1", false]], "read1() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.read1", false]], "read_all() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_all", false]], "read_binary() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.read_binary", false]], "read_byte() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.read_byte", false]], "read_bytes() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.read_bytes", false]], "read_bytes() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.read_bytes", false]], "read_bytes() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.read_bytes", false]], "read_bytes() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.read_bytes", false]], "read_dict() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_dict", false]], "read_eager() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_eager", false]], "read_environ() (\u65bc wsgiref.handlers \u6a21\u7d44\u4e2d)": [[407, "wsgiref.handlers.read_environ", false]], "read_events() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.read_events", false]], "read_file() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_file", false]], "read_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.read_history_file", false]], "read_init_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.read_init_file", false]], "read_lazy() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_lazy", false]], "read_mime_types() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.read_mime_types", false]], "read_restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "read_sb_data() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_sb_data", false]], "read_some() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_some", false]], "read_string() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_string", false]], "read_text() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.read_text", false]], "read_text() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.read_text", false]], "read_text() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.read_text", false]], "read_text() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.read_text", false]], "read_text() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.read_text", false]], "read_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.read_token", false]], "read_until() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_until", false]], "read_very_eager() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_very_eager", false]], "read_very_lazy() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_very_lazy", false]], "read_windows_registry() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.read_windows_registry", false]], "readable (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.READABLE", false]], "readable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.readable", false]], "readable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readable", false]], "readall() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.readall", false]], "reader() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.reader", false]], "readerror": [[358, "tarfile.ReadError", false]], "readexactly() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readexactly", false]], "readfp() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.readfp", false]], "readframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.readframes", false]], "readframes() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.readframes", false]], "readframes() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.readframes", false]], "readinto() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.readinto", false]], "readinto() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.readinto", false]], "readinto() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.readinto", false]], "readinto() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.readinto", false]], "readinto1() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.readinto1", false]], "readinto1() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.readinto1", false]], "readline": [[320, "module-readline", false]], "readline() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readline", false]], "readline() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.readline", false]], "readline() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.readline", false]], "readline() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readline", false]], "readline() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.readline", false]], "readline() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.readline", false]], "readlines() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.readlines", false]], "readlines() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readlines", false]], "readlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.readlink", false]], "readlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.readlink", false]], "readmodule() (\u65bc pyclbr \u6a21\u7d44\u4e2d)": [[312, "pyclbr.readmodule", false]], "readmodule_ex() (\u65bc pyclbr \u6a21\u7d44\u4e2d)": [[312, "pyclbr.readmodule_ex", false]], "readonly (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.readonly", false]], "readonly\uff08c \u5de8\u96c6\uff09": [[58, "index-3", false]], "readtransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.ReadTransport", false]], "readuntil() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readuntil", false]], "readv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.readv", false]], "ready() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.ready", false]], "real (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Real", false]], "real (numbers.complex \u7684\u5c6c\u6027)": [[289, "numbers.Complex.real", false]], "real media file format\uff08real media \u6a94\u6848\u683c\u5f0f\uff09": [[153, "index-0", false]], "real_max_memuse (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.real_max_memuse", false]], "real_quick_ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.real_quick_ratio", false]], "realloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "realpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.realpath", false]], "realtime_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.REALTIME_PRIORITY_CLASS", false]], "reap_children() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.reap_children", false]], "reap_threads() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.reap_threads", false]], "reason (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.reason", false]], "reason (ssl.sslerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLError.reason", false]], "reason (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.reason", false]], "reason (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.reason", false]], "reason (urllib.error.urlerror \u7684\u5c6c\u6027)": [[393, "urllib.error.URLError.reason", false]], "reattach() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.reattach", false]], "rebinding\uff08\u91cd\u65b0\u7e6b\u7d50\uff09": [[436, "index-4", false]], "reccontrols() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.reccontrols", false]], "recent() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.recent", false]], "reconfigure() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.reconfigure", false]], "record_original_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.record_original_stdout", false]], "records (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.RECORDS", false]], "records (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.records", false]], "records_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.RECORDS_RO", false]], "rect() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.rect", false]], "rectangle() (\u65bc curses.textpad \u6a21\u7d44\u4e2d)": [[177, "curses.textpad.rectangle", false]], "recursionerror": [[213, "RecursionError", false]], "recursive_repr() (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.recursive_repr", false]], "recv() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv", false]], "recv() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recv", false]], "recv_bytes() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv_bytes", false]], "recv_bytes_into() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv_bytes_into", false]], "recv_fds() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.recv_fds", false]], "recv_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recv_into", false]], "recvfrom() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvfrom", false]], "recvfrom_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvfrom_into", false]], "recvmsg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvmsg", false]], "recvmsg_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvmsg_into", false]], "redirect_request() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.redirect_request", false]], "redirect_stderr() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.redirect_stderr", false]], "redirect_stdout() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.redirect_stdout", false]], "redisplay() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.redisplay", false]], "redrawln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.redrawln", false]], "redrawwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.redrawwin", false]], "reduce (2to3 fixer)": [[112, "to3fixer-reduce", false]], "reduce() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.reduce", false]], "reducer_override() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.reducer_override", false]], "ref (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.ref", false]], "refcount_test() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.refcount_test", false]], "reference counting\uff08\u53c3\u7167\u8a08\u6578\uff09": [[428, "index-2", false]], "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09": [[87, "term-reference-count", true]], "referenceerror": [[213, "ReferenceError", false]], "referencetype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ReferenceType", false]], "reference\uff08\u53c3\u7167\uff09": [[430, "index-39", false]], "refold_source (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.refold_source", false]], "refresh() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.refresh", false]], "reg_binary (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_BINARY", false]], "reg_dword (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD", false]], "reg_dword_big_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD_BIG_ENDIAN", false]], "reg_dword_little_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD_LITTLE_ENDIAN", false]], "reg_expand_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_EXPAND_SZ", false]], "reg_full_resource_descriptor (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_FULL_RESOURCE_DESCRIPTOR", false]], "reg_link (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_LINK", false]], "reg_multi_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_MULTI_SZ", false]], "reg_none (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_NONE", false]], "reg_qword (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_QWORD", false]], "reg_qword_little_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_QWORD_LITTLE_ENDIAN", false]], "reg_resource_list (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_RESOURCE_LIST", false]], "reg_resource_requirements_list (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_RESOURCE_REQUIREMENTS_LIST", false]], "reg_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_SZ", false]], "regexflag (re \u4e2d\u7684\u985e\u5225)": [[319, "re.RegexFlag", false]], "register() (abc.abcmeta \u7684\u65b9\u6cd5)": [[116, "abc.ABCMeta.register", false]], "register() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.register", false]], "register() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.register", false]], "register() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.register", false]], "register() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.register", false]], "register() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.register", false]], "register() (\u65bc atexit \u6a21\u7d44\u4e2d)": [[140, "atexit.register", false]], "register() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.register", false]], "register() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.register", false]], "register() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.register", false]], "register_adapter() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.register_adapter", false]], "register_archive_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.register_archive_format", false]], "register_at_fork() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.register_at_fork", false]], "register_callback() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.register_callback", false]], "register_converter() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.register_converter", false]], "register_defect() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.register_defect", false]], "register_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.register_dialect", false]], "register_error() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.register_error", false]], "register_function() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_function", false]], "register_function() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_function", false]], "register_instance() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_instance", false]], "register_instance() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_instance", false]], "register_introspection_functions() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_introspection_functions", false]], "register_introspection_functions() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_introspection_functions", false]], "register_multicall_functions() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_multicall_functions", false]], "register_multicall_functions() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_multicall_functions", false]], "register_namespace() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.register_namespace", false]], "register_optionflag() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.register_optionflag", false]], "register_shape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.register_shape", false]], "register_unpack_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.register_unpack_format", false]], "registerdomimplementation() (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.registerDOMImplementation", false]], "registerresult() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.registerResult", false]], "regtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.REGTYPE", false]], "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09": [[87, "term-regular-package", true]], "regular\uff08\u4e00\u822c\uff09": [[432, "index-4", false]], "relative_to() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.relative_to", false]], "relative\uff08\u76f8\u5c0d\uff09": [[394, "index-0", false], [436, "index-39", false]], "release() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.release", false]], "release() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.release", false]], "release() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.release", false]], "release() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.release", false]], "release() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.release", false]], "release() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.release", false]], "release() (multiprocessing.lock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Lock.release", false]], "release() (multiprocessing.rlock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.RLock.release", false]], "release() (pickle.picklebuffer \u7684\u65b9\u6cd5)": [[299, "pickle.PickleBuffer.release", false]], "release() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.release", false]], "release() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.release", false]], "release() (threading.rlock \u7684\u65b9\u6cd5)": [[365, "threading.RLock.release", false]], "release() (threading.semaphore \u7684\u65b9\u6cd5)": [[365, "threading.Semaphore.release", false]], "release() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.release", false]], "releasebufferproc (c type)": [[63, "c.releasebufferproc", false]], "reload (2to3 fixer)": [[112, "to3fixer-reload", false]], "reload() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.reload", false]], "relpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.relpath", false]], "remainder() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.remainder", false]], "remainder() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.remainder", false]], "remainder_near() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.remainder_near", false]], "remainder_near() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.remainder_near", false]], "remotedisconnected": [[242, "http.client.RemoteDisconnected", false]], "remove() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.remove", false]], "remove() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.remove", false]], "remove() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.remove", false]], "remove() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.remove", false]], "remove() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.remove", false]], "remove() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.remove", false]], "remove() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.remove", false]], "remove()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "remove_child_handler() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.remove_child_handler", false]], "remove_done_callback() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.remove_done_callback", false]], "remove_done_callback() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.remove_done_callback", false]], "remove_flag() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.remove_flag", false]], "remove_flag() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.remove_flag", false]], "remove_flag() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.remove_flag", false]], "remove_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.remove_folder", false]], "remove_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.remove_folder", false]], "remove_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.remove_header", false]], "remove_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.remove_history_item", false]], "remove_label() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.remove_label", false]], "remove_option() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.remove_option", false]], "remove_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.remove_option", false]], "remove_pyc() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.remove_pyc", false]], "remove_reader() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_reader", false]], "remove_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.remove_section", false]], "remove_sequence() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.remove_sequence", false]], "remove_signal_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_signal_handler", false]], "remove_writer() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_writer", false]], "removeattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttribute", false]], "removeattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttributeNode", false]], "removeattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttributeNS", false]], "removechild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.removeChild", false]], "removedirs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.removedirs", false]], "removefilter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.removeFilter", false]], "removefilter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.removeFilter", false]], "removehandler() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.removeHandler", false]], "removehandler() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.removeHandler", false]], "removeprefix() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.removeprefix", false]], "removeprefix() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.removeprefix", false]], "removeprefix() (str \u7684\u65b9\u6cd5)": [[344, "str.removeprefix", false]], "removeresult() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.removeResult", false]], "removesuffix() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.removesuffix", false]], "removesuffix() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.removesuffix", false]], "removesuffix() (str \u7684\u65b9\u6cd5)": [[344, "str.removesuffix", false]], "removexattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.removexattr", false]], "rename() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.rename", false]], "rename() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.rename", false]], "rename() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rename", false]], "rename() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.rename", false]], "renames (2to3 fixer)": [[112, "to3fixer-renames", false]], "renames() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.renames", false]], "reopenifneeded() (logging.handlers.watchedfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.WatchedFileHandler.reopenIfNeeded", false]], "reorganize() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.reorganize", false]], "repeat() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.repeat", false]], "repeat() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.repeat", false]], "repeat() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.repeat", false]], "repetition\uff08\u91cd\u8907\uff09": [[344, "index-20", false]], "replace": [[158, "index-1", false]], "replace() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.replace", false]], "replace() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.replace", false]], "replace() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.replace", false]], "replace() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.replace", false]], "replace() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.replace", false]], "replace() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.replace", false]], "replace() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.replace", false]], "replace() (inspect.parameter \u7684\u65b9\u6cd5)": [[255, "inspect.Parameter.replace", false]], "replace() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.replace", false]], "replace() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.replace", false]], "replace() (str \u7684\u65b9\u6cd5)": [[344, "str.replace", false]], "replace() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.replace", false]], "replace() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.replace", false]], "replace() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.replace", false]], "replace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.replace_errors", false]], "replace_header() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.replace_header", false]], "replace_header() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.replace_header", false]], "replace_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.replace_history_item", false]], "replace_whitespace (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.replace_whitespace", false]], "replacechild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.replaceChild", false]], "replacement character\uff08\u66ff\u4ee3\u5b57\u5143\uff09": [[158, "index-1", false]], "replacepackage() (\u65bc modulefinder \u6a21\u7d44\u4e2d)": [[279, "modulefinder.ReplacePackage", false]], "report() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report", false]], "report() (modulefinder.modulefinder \u7684\u65b9\u6cd5)": [[279, "modulefinder.ModuleFinder.report", false]], "report_cdiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_CDIFF", false]], "report_failure() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_failure", false]], "report_full_closure() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report_full_closure", false]], "report_ndiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_NDIFF", false]], "report_only_first_failure (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_ONLY_FIRST_FAILURE", false]], "report_partial_closure() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report_partial_closure", false]], "report_start() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_start", false]], "report_success() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_success", false]], "report_udiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_UDIFF", false]], "report_unexpected_exception() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_unexpected_exception", false]], "reporting_flags (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORTING_FLAGS", false]], "repr": [[49, "index-0", false], [63, "index-1", false], [75, "index-3", false], [436, "index-3", false]], "repr (2to3 fixer)": [[112, "to3fixer-repr", false]], "repr (reprlib \u4e2d\u7684\u985e\u5225)": [[321, "reprlib.Repr", false]], "repr()": [[225, "repr", false]], "repr() (reprlib.repr \u7684\u65b9\u6cd5)": [[321, "reprlib.Repr.repr", false]], "repr() (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.repr", false]], "repr() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-75", false]], "repr1() (reprlib.repr \u7684\u65b9\u6cd5)": [[321, "reprlib.Repr.repr1", false]], "reprenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.ReprEnum", false]], "representation\uff08\u8868\u793a\uff09": [[428, "index-11", false]], "reprfunc (c type)": [[63, "c.reprfunc", false]], "reprlib": [[321, "module-reprlib", false]], "request (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.request", false]], "request (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.Request", false]], "request() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.request", false]], "request_queue_size (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.request_queue_size", false]], "request_rate() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.request_rate", false]], "request_uri() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.request_uri", false]], "request_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.request_version", false]], "requesthandlerclass (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.RequestHandlerClass", false]], "requestline (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.requestline", false]], "required (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Required", false]], "requires() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires", false]], "requires_bz2() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_bz2", false]], "requires_docstrings() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_docstrings", false]], "requires_freebsd_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_freebsd_version", false]], "requires_gzip() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_gzip", false]], "requires_ieee_754() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_IEEE_754", false]], "requires_limited_api() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_limited_api", false]], "requires_linux_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_linux_version", false]], "requires_lzma() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_lzma", false]], "requires_mac_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_mac_version", false]], "requires_resource() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_resource", false]], "requires_zlib() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_zlib", false]], "reraise (monitoring event)": [[353, "monitoring-event-RERAISE", false]], "reraise (opcode)": [[191, "opcode-RERAISE", false]], "reschedule() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.reschedule", false]], "reserved (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.reserved", false]], "reserved word\uff08\u4fdd\u7559\u5b57\uff09": [[435, "index-13", false]], "reserved_future (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_FUTURE", false]], "reserved_microsoft (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_MICROSOFT", false]], "reserved_ncs (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_NCS", false]], "reset() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.reset", false]], "reset() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.reset", false]], "reset() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.reset", false]], "reset() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.reset", false]], "reset() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.reset", false]], "reset() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.reset", false]], "reset() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.reset", false]], "reset() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.reset", false]], "reset() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.reset", false]], "reset() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.reset", false]], "reset() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.reset", false]], "reset() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.reset", false]], "reset() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.reset", false]], "reset() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.reset", false]], "reset() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.reset", false]], "reset() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.reset", false]], "reset_mock() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.reset_mock", false]], "reset_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.reset_mock", false]], "reset_peak() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.reset_peak", false]], "reset_prog_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.reset_prog_mode", false]], "reset_shell_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.reset_shell_mode", false]], "reset_tzpath() (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.reset_tzpath", false]], "resetbuffer() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.resetbuffer", false]], "resetlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.resetlocale", false]], "resetscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.resetscreen", false]], "resetty() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resetty", false]], "resetwarnings() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.resetwarnings", false]], "resize() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.resize", false]], "resize() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.resize", false]], "resize() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.resize", false]], "resize_term() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resize_term", false]], "resizemode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.resizemode", false]], "resizeterm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resizeterm", false]], "resolution (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.resolution", false]], "resolution (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.resolution", false]], "resolution (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.resolution", false]], "resolution (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.resolution", false]], "resolve() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.resolve", false]], "resolve_bases() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.resolve_bases", false]], "resolve_name() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.resolve_name", false]], "resolve_name() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.resolve_name", false]], "resolveentity() (xml.sax.handler.entityresolver \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.EntityResolver.resolveEntity", false]], "resource": [[322, "module-resource", false]], "resource (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.Resource", false]], "resource_path() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.resource_path", false]], "resource_path() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.resource_path", false]], "resourcedenied": [[362, "test.support.ResourceDenied", false]], "resourceloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ResourceLoader", false]], "resourcereader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ResourceReader", false]], "resourcereader (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.ResourceReader", false]], "resourcewarning": [[213, "ResourceWarning", false]], "response (nntplib.nntperror \u7684\u5c6c\u6027)": [[288, "nntplib.NNTPError.response", false]], "response() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.response", false]], "responsenotready": [[242, "http.client.ResponseNotReady", false]], "responses (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.responses", false]], "responses (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.responses", false]], "restart (pdb command)": [[297, "pdbcommand-restart", false]], "restart_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.restart_events", false]], "restore() (test.support.savesignals \u7684\u65b9\u6cd5)": [[362, "test.support.SaveSignals.restore", false]], "restore() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.restore", false]], "restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "restricted\uff08\u53d7\u9650\uff09": [[429, "index-13", false]], "restype (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.restype", false]], "result() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.result", false]], "result() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.result", false]], "result() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.result", false]], "results() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.results", false]], "resume (opcode)": [[191, "opcode-RESUME", false]], "resume_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.resume_reading", false]], "resume_writing() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.resume_writing", false]], "retr() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.retr", false]], "retrbinary() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.retrbinary", false]], "retrieve() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.retrieve", false]], "retrlines() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.retrlines", false]], "retry (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.RETRY", false]], "retrycancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.RETRYCANCEL", false]], "return (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Return", false]], "return (pdb command)": [[297, "pdbcommand-return", false]], "return \uff08\u56de\u50b3\uff09": [[427, "index-13", false], [427, "index-15", false], [436, "index-24", true]], "return_annotation (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.return_annotation", false]], "return_const (opcode)": [[191, "opcode-RETURN_CONST", false]], "return_generator (opcode)": [[191, "opcode-RETURN_GENERATOR", false]], "return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.return_ok", false]], "return_value (opcode)": [[191, "opcode-RETURN_VALUE", false]], "return_value (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.return_value", false]], "returncode (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.returncode", false]], "returncode (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.returncode", false]], "returncode (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.returncode", false]], "returncode (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.returncode", false]], "retval (pdb command)": [[297, "pdbcommand-retval", false]], "reveal_type() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.reveal_type", false]], "reverse() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.reverse", false]], "reverse() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.reverse", false]], "reverse() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.reverse", false]], "reverse()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "reverse_order() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.reverse_order", false]], "reverse_pointer (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.reverse_pointer", false]], "reverse_pointer (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.reverse_pointer", false]], "reversed()": [[225, "reversed", false]], "reversible (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Reversible", false]], "reversible (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Reversible", false]], "revert() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.revert", false]], "rewind() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.rewind", false]], "rewind() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.rewind", false]], "rewind() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.rewind", false]], "rfc": [[68, "index-12", false], [101, "index-0", false], [102, "index-0", false], [102, "index-1", false], [102, "index-2", false], [102, "index-3", false], [102, "index-4", false], [102, "index-5", false], [110, "index-1", false], [110, "index-2", false], [110, "index-4", false], [126, "index-15", false], [126, "index-16", false], [143, "index-25", false], [143, "index-26", false], [143, "index-27", false], [143, "index-28", false], [143, "index-29", false], [143, "index-30", false], [143, "index-31", false], [143, "index-32", false], [143, "index-33", false], [143, "index-34", false], [143, "index-35", false], [143, "index-36", false], [146, "index-1", false], [146, "index-2", false], [146, "index-3", false], [158, "index-10", false], [158, "index-11", false], [158, "index-12", false], [158, "index-13", false], [158, "index-14", false], [158, "index-6", false], [158, "index-7", false], [158, "index-8", false], [158, "index-9", false], [175, "index-6", false], [194, "index-0", false], [194, "index-1", false], [194, "index-2", false], [194, "index-3", false], [194, "index-4", false], [194, "index-5", false], [194, "index-6", false], [194, "index-7", false], [196, "index-0", false], [196, "index-1", false], [196, "index-10", false], [196, "index-11", false], [196, "index-2", false], [196, "index-3", false], [196, "index-4", false], [196, "index-5", false], [196, "index-6", false], [196, "index-7", false], [196, "index-8", false], [196, "index-9", false], [197, "index-0", false], [199, "index-0", false], [200, "index-0", false], [201, "index-0", false], [201, "index-1", false], [202, "index-0", false], [202, "index-1", false], [202, "index-10", false], [202, "index-11", false], [202, "index-12", false], [202, "index-13", false], [202, "index-2", false], [202, "index-3", false], [202, "index-4", false], [202, "index-5", false], [202, "index-6", false], [202, "index-7", false], [202, "index-8", false], [202, "index-9", false], [203, "index-0", false], [203, "index-1", false], [203, "index-10", false], [203, "index-11", false], [203, "index-12", false], [203, "index-13", false], [203, "index-14", false], [203, "index-2", false], [203, "index-3", false], [203, "index-4", false], [203, "index-5", false], [203, "index-6", false], [203, "index-7", false], [203, "index-8", false], [203, "index-9", false], [205, "index-0", false], [205, "index-1", false], [205, "index-10", false], [205, "index-2", false], [205, "index-3", false], [205, "index-4", false], [205, "index-5", false], [205, "index-6", false], [205, "index-7", false], [205, "index-8", false], [205, "index-9", false], [207, "index-0", false], [207, "index-1", false], [208, "index-0", false], [208, "index-1", false], [208, "index-2", false], [208, "index-3", false], [208, "index-4", false], [208, "index-5", false], [208, "index-6", false], [208, "index-7", false], [208, "index-8", false], [208, "index-9", false], [209, "index-0", false], [209, "index-1", false], [209, "index-10", false], [209, "index-2", false], [209, "index-3", false], [209, "index-4", false], [209, "index-5", false], [209, "index-6", false], [209, "index-7", false], [209, "index-8", false], [209, "index-9", false], [223, "index-12", false], [223, "index-13", false], [223, "index-14", false], [223, "index-15", false], [223, "index-16", false], [223, "index-5", false], [230, "index-9", false], [235, "index-1", false], [235, "index-3", false], [235, "index-5", false], [237, "index-2", false], [241, "index-152", false], [241, "index-153", false], [241, "index-154", false], [241, "index-155", false], [241, "index-156", false], [241, "index-157", false], [241, "index-158", false], [241, "index-159", false], [241, "index-160", false], [241, "index-161", false], [241, "index-162", false], [241, "index-163", false], [241, "index-164", false], [241, "index-165", false], [241, "index-166", false], [241, "index-167", false], [241, "index-168", false], [241, "index-169", false], [241, "index-170", false], [241, "index-171", false], [241, "index-172", false], [241, "index-173", false], [241, "index-174", false], [241, "index-175", false], [241, "index-176", false], [241, "index-177", false], [241, "index-178", false], [241, "index-179", false], [241, "index-180", false], [241, "index-181", false], [241, "index-182", false], [241, "index-183", false], [241, "index-184", false], [241, "index-185", false], [241, "index-186", false], [241, "index-187", false], [241, "index-188", false], [241, "index-189", false], [241, "index-190", false], [241, "index-191", false], [241, "index-192", false], [241, "index-193", false], [241, "index-194", false], [241, "index-195", false], [241, "index-196", false], [241, "index-197", false], [241, "index-198", false], [241, "index-199", false], [241, "index-200", false], [241, "index-201", false], [241, "index-202", false], [241, "index-203", false], [241, "index-204", false], [241, "index-205", false], [241, "index-206", false], [241, "index-207", false], [241, "index-208", false], [241, "index-209", false], [241, "index-210", false], [241, "index-211", false], [241, "index-212", false], [241, "index-213", false], [241, "index-214", false], [241, "index-215", false], [241, "index-216", false], [241, "index-217", false], [241, "index-218", false], [241, "index-219", false], [241, "index-220", false], [241, "index-221", false], [241, "index-222", false], [241, "index-223", false], [241, "index-224", false], [241, "index-225", false], [241, "index-226", false], [241, "index-76", false], [242, "index-2", false], [242, "index-3", false], [242, "index-4", false], [242, "index-5", false], [242, "index-6", false], [242, "index-7", false], [243, "index-0", false], [243, "index-1", false], [243, "index-10", false], [243, "index-11", false], [243, "index-12", false], [243, "index-13", false], [243, "index-14", false], [243, "index-15", false], [243, "index-16", false], [243, "index-17", false], [243, "index-18", false], [243, "index-19", false], [243, "index-2", false], [243, "index-20", false], [243, "index-21", false], [243, "index-22", false], [243, "index-23", false], [243, "index-24", false], [243, "index-25", false], [243, "index-3", false], [243, "index-4", false], [243, "index-5", false], [243, "index-6", false], [243, "index-7", false], [243, "index-8", false], [243, "index-9", false], [244, "index-0", false], [244, "index-1", false], [244, "index-2", false], [244, "index-3", false], [244, "index-4", false], [244, "index-5", false], [244, "index-6", false], [244, "index-7", false], [245, "index-1", false], [245, "index-2", false], [248, "index-1", false], [248, "index-2", false], [248, "index-3", false], [248, "index-4", false], [248, "index-5", false], [248, "index-6", false], [248, "index-7", false], [248, "index-8", false], [254, "index-12", false], [256, "index-12", false], [259, "index-0", false], [259, "index-1", false], [259, "index-10", false], [259, "index-11", false], [259, "index-12", false], [259, "index-13", false], [259, "index-2", false], [259, "index-3", false], [259, "index-4", false], [259, "index-5", false], [259, "index-6", false], [259, "index-7", false], [259, "index-8", false], [259, "index-9", false], [262, "index-2", false], [262, "index-3", false], [262, "index-4", false], [262, "index-7", false], [262, "index-8", false], [266, "index-4", false], [266, "index-5", false], [269, "index-0", false], [271, "index-0", false], [272, "index-1", false], [272, "index-2", false], [288, "index-10", false], [288, "index-2", false], [288, "index-3", false], [288, "index-4", false], [288, "index-5", false], [288, "index-6", false], [288, "index-7", false], [288, "index-8", false], [288, "index-9", false], [305, "index-1", false], [305, "index-2", false], [305, "index-3", false], [305, "index-4", false], [305, "index-5", false], [305, "index-6", false], [317, "index-10", false], [317, "index-11", false], [317, "index-12", false], [317, "index-9", false], [327, "index-5", false], [335, "index-1", false], [335, "index-10", false], [335, "index-11", false], [335, "index-12", false], [335, "index-2", false], [335, "index-3", false], [335, "index-4", false], [335, "index-5", false], [335, "index-6", false], [335, "index-7", false], [335, "index-8", false], [335, "index-9", false], [337, "index-15", false], [337, "index-3", false], [341, "index-10", false], [341, "index-11", false], [341, "index-12", false], [341, "index-13", false], [341, "index-16", false], [341, "index-17", false], [341, "index-18", false], [341, "index-19", false], [341, "index-20", false], [341, "index-21", false], [341, "index-22", false], [341, "index-34", false], [341, "index-35", false], [341, "index-36", false], [341, "index-37", false], [341, "index-38", false], [346, "index-0", false], [346, "index-1", false], [359, "index-2", false], [359, "index-3", false], [366, "index-10", false], [366, "index-19", false], [366, "index-20", false], [366, "index-21", false], [366, "index-22", false], [393, "index-2", false], [394, "index-1", false], [394, "index-10", false], [394, "index-11", false], [394, "index-12", false], [394, "index-13", false], [394, "index-18", false], [394, "index-19", false], [394, "index-2", false], [394, "index-3", false], [394, "index-4", false], [394, "index-5", false], [394, "index-6", false], [394, "index-7", false], [394, "index-8", false], [394, "index-9", false], [395, "index-15", false], [395, "index-16", false], [395, "index-17", false], [395, "index-4", false], [395, "index-5", false], [395, "index-6", false], [395, "index-7", false], [395, "index-8", false], [398, "index-12", false], [398, "index-19", false], [398, "index-20", false], [398, "index-21", false], [398, "index-22", false], [398, "index-23", false], [398, "index-24", false], [407, "index-43", false], [407, "index-48", false], [408, "index-2", false], [408, "index-3", false], [408, "index-4", false], [408, "index-5", false], [419, "index-0", false], [451, "index-3", false], [464, "index-17", false], [464, "index-18", false], [464, "index-19", false], [464, "index-20", false], [464, "index-21", false], [466, "index-18", false], [467, "index-22", false], [467, "index-23", false], [468, "index-22", false], [468, "index-23", false], [469, "index-10", false], [469, "index-12", false], [469, "index-9", false], [472, "index-32", false], [475, "index-11", false], [475, "index-12", false], [475, "index-13", false], [475, "index-7", false], [475, "index-8", false], [476, "index-26", false], [476, "index-27", false], [478, "index-31", false], [478, "index-32", false], [478, "index-33", false], [478, "index-34", false], [478, "index-35", false], [478, "index-36", false], [478, "index-37", false], [478, "index-38", false], [478, "index-39", false], [478, "index-40", false], [478, "index-41", false], [478, "index-42", false], [478, "index-43", false], [478, "index-44", false], [478, "index-51", false], [480, "index-34", false], [480, "index-35", false], [481, "index-25", false], [482, "index-22", false], [482, "index-28", false], [483, "index-1", false], [483, "index-178", false], [483, "index-219", false], [483, "index-35", false], [483, "index-36", false], [483, "index-37", false], [483, "index-45", false], [483, "index-86", false], [483, "index-92", false], [483, "index-94", false]], "rfc 1014": [[408, "index-2", false], [408, "index-3", false]], "rfc 1123": [[366, "index-21", false]], "rfc 1321": [[235, "index-1", false]], "rfc 1422": [[341, "index-16", false], [341, "index-17", false]], "rfc 1521": [[143, "index-36", false], [317, "index-11", false], [317, "index-9", false]], "rfc 1522": [[146, "index-3", false], [317, "index-10", false], [317, "index-12", false]], "rfc 1524": [[272, "index-1", false], [272, "index-2", false]], "rfc 1730": [[248, "index-2", false]], "rfc 1738": [[394, "index-19", false]], "rfc 1750": [[341, "index-34", false]], "rfc 1766": [[266, "index-4", false], [266, "index-5", false]], "rfc 1808": [[394, "index-1", false], [394, "index-18", false], [394, "index-3", false], [478, "index-43", false]], "rfc 1832": [[408, "index-4", false], [408, "index-5", false]], "rfc 1869": [[335, "index-2", false], [335, "index-5", false]], "rfc 1870": [[476, "index-27", false]], "rfc 1939": [[305, "index-1", false], [305, "index-2", false]], "rfc 2014": [[237, "index-2", false]], "rfc 2033": [[468, "index-22", false]], "rfc 2045": [[143, "index-28", false], [143, "index-29", false], [143, "index-33", false], [143, "index-34", false], [194, "index-3", false], [196, "index-4", false], [196, "index-5", false], [196, "index-6", false], [196, "index-9", false], [202, "index-4", false], [203, "index-10", false], [203, "index-9", false], [205, "index-6", false], [205, "index-7", false], [205, "index-8", false]], "rfc 2045#section-6.8": [[419, "index-0", false]], "rfc 2046": [[194, "index-4", false], [197, "index-0", false], [202, "index-5", false]], "rfc 2047": [[194, "index-5", false], [202, "index-11", false], [202, "index-13", false], [202, "index-6", false], [202, "index-8", false], [203, "index-1", false], [203, "index-4", false], [203, "index-6", false], [208, "index-3", false], [208, "index-4", false], [209, "index-1", false], [475, "index-11", false], [475, "index-8", false]], "rfc 2060": [[248, "index-1", false], [248, "index-7", false]], "rfc 2068": [[244, "index-1", false]], "rfc 2104": [[464, "index-17", false]], "rfc 2109": [[243, "index-1", false], [243, "index-15", false], [243, "index-21", false], [243, "index-23", false], [243, "index-24", false], [243, "index-3", false], [243, "index-4", false], [243, "index-6", false], [244, "index-0", false], [244, "index-2", false], [244, "index-3", false], [244, "index-4", false], [244, "index-5", false], [244, "index-6", false], [244, "index-7", false]], "rfc 2183": [[194, "index-6", false], [196, "index-11", false], [205, "index-10", false]], "rfc 2231": [[194, "index-7", false], [196, "index-10", false], [196, "index-2", false], [196, "index-3", false], [196, "index-7", false], [196, "index-8", false], [202, "index-7", false], [205, "index-4", false], [205, "index-5", false], [205, "index-9", false], [209, "index-5", false], [209, "index-6", false], [209, "index-7", false], [209, "index-8", false], [209, "index-9", false], [483, "index-1", false]], "rfc 2295": [[241, "index-209", false]], "rfc 2324": [[241, "index-192", false]], "rfc 2342": [[248, "index-6", false], [464, "index-19", false]], "rfc 2368": [[394, "index-13", false]], "rfc 2373": [[259, "index-1", false], [259, "index-3", false], [259, "index-5", false]], "rfc 2396": [[394, "index-12", false], [394, "index-5", false], [394, "index-8", false], [478, "index-44", false], [480, "index-34", false]], "rfc 2397": [[395, "index-7", false]], "rfc 2449": [[305, "index-4", false]], "rfc 2487": [[464, "index-18", false]], "rfc 2518": [[241, "index-154", false]], "rfc 2595": [[305, "index-3", false], [305, "index-6", false]], "rfc 2616": [[110, "index-1", false], [110, "index-2", false], [110, "index-4", false], [393, "index-2", false], [395, "index-5", false], [395, "index-6", false], [395, "index-8", false], [407, "index-43", false], [407, "index-48", false], [475, "index-7", false]], "rfc 2616#section-14.23": [[242, "index-4", false]], "rfc 2616#section-5.1.2": [[242, "index-3", false], [242, "index-5", false]], "rfc 2640": [[223, "index-13", false], [223, "index-14", false], [223, "index-16", false], [482, "index-22", false], [483, "index-178", false]], "rfc 2732": [[394, "index-11", false], [469, "index-10", false], [475, "index-13", false]], "rfc 2774": [[241, "index-212", false]], "rfc 2818": [[475, "index-12", false]], "rfc 2821": [[194, "index-0", false]], "rfc 2822": [[196, "index-1", false], [202, "index-0", false], [202, "index-10", false], [202, "index-12", false], [202, "index-2", false], [202, "index-3", false], [202, "index-9", false], [209, "index-0", false], [209, "index-10", false], [209, "index-2", false], [209, "index-3", false], [209, "index-4", false], [242, "index-2", false], [245, "index-2", false], [271, "index-0", false], [366, "index-10", false], [366, "index-22", false], [451, "index-3", false], [464, "index-20", false]], "rfc 2964": [[243, "index-10", false]], "rfc 2965": [[243, "index-0", false], [243, "index-11", false], [243, "index-12", false], [243, "index-13", false], [243, "index-14", false], [243, "index-16", false], [243, "index-17", false], [243, "index-18", false], [243, "index-19", false], [243, "index-2", false], [243, "index-20", false], [243, "index-22", false], [243, "index-25", false], [243, "index-5", false], [243, "index-7", false], [243, "index-8", false], [243, "index-9", false], [395, "index-16", false], [395, "index-17", false], [395, "index-4", false]], "rfc 2980": [[288, "index-4", false], [288, "index-9", false]], "rfc 3056": [[259, "index-12", false]], "rfc 3164": [[102, "index-5", false]], "rfc 3171": [[259, "index-0", false]], "rfc 3207": [[468, "index-23", false]], "rfc 3229": [[241, "index-165", false]], "rfc 3280": [[341, "index-10", false]], "rfc 3330": [[259, "index-4", false]], "rfc 3339": [[101, "index-0", false]], "rfc 3454": [[346, "index-0", false], [346, "index-1", false], [483, "index-35", false]], "rfc 3490": [[158, "index-13", false], [158, "index-14", false], [158, "index-6", false], [158, "index-8", false]], "rfc 3490#section-3.1": [[158, "index-12", false]], "rfc 3491": [[483, "index-37", false]], "rfc 3492": [[158, "index-7", false], [158, "index-9", false]], "rfc 3493": [[337, "index-15", false]], "rfc 3501": [[248, "index-8", false]], "rfc 3542": [[337, "index-3", false], [483, "index-219", false]], "rfc 3548": [[146, "index-1", false], [146, "index-2", false], [466, "index-18", false]], "rfc 3659": [[223, "index-15", false]], "rfc 3879": [[259, "index-9", false]], "rfc 3927": [[259, "index-6", false]], "rfc 3977": [[288, "index-10", false], [288, "index-2", false], [288, "index-6", false], [288, "index-7", false], [288, "index-8", false]], "rfc 3986": [[245, "index-1", false], [394, "index-10", false], [394, "index-2", false], [394, "index-4", false], [394, "index-6", false], [394, "index-7", false], [394, "index-9", false], [469, "index-12", false], [469, "index-9", false], [472, "index-32", false], [478, "index-42", false], [480, "index-35", false], [481, "index-25", false], [482, "index-28", false]], "rfc 4007": [[259, "index-11", false], [259, "index-8", false]], "rfc 4086": [[341, "index-18", false]], "rfc 4122": [[68, "index-12", false], [254, "index-12", false], [256, "index-12", false], [398, "index-12", false], [398, "index-19", false], [398, "index-20", false], [398, "index-21", false], [398, "index-22", false], [398, "index-23", false], [398, "index-24", false], [467, "index-22", false], [467, "index-23", false]], "rfc 4180": [[175, "index-6", false]], "rfc 4193": [[259, "index-10", false]], "rfc 4217": [[223, "index-5", false]], "rfc 4291": [[259, "index-7", false], [483, "index-92", false]], "rfc 4380": [[259, "index-13", false]], "rfc 4627": [[262, "index-3", false], [262, "index-8", false]], "rfc 4642": [[288, "index-5", false]], "rfc 4648": [[143, "index-25", false], [143, "index-26", false], [143, "index-27", false], [143, "index-30", false], [143, "index-31", false], [143, "index-32", false], [143, "index-35", false], [327, "index-5", false], [483, "index-94", false]], "rfc 4918": [[241, "index-163", false], [241, "index-194", false], [241, "index-195", false], [241, "index-196", false], [241, "index-210", false]], "rfc 4954": [[335, "index-7", false], [335, "index-8", false]], "rfc 5161": [[248, "index-3", false], [478, "index-33", false]], "rfc 5246": [[341, "index-20", false], [341, "index-38", false]], "rfc 5280": [[341, "index-19", false], [341, "index-35", false], [478, "index-41", false], [478, "index-51", false]], "rfc 5321": [[203, "index-13", false], [476, "index-26", false]], "rfc 5322": [[194, "index-1", false], [196, "index-0", false], [199, "index-0", false], [201, "index-0", false], [201, "index-1", false], [203, "index-0", false], [203, "index-11", false], [203, "index-12", false], [203, "index-14", false], [203, "index-2", false], [203, "index-3", false], [203, "index-5", false], [203, "index-7", false], [203, "index-8", false], [205, "index-0", false], [205, "index-2", false], [207, "index-0", false], [208, "index-0", false], [208, "index-1", false], [208, "index-2", false], [208, "index-5", false], [208, "index-6", false], [208, "index-9", false], [335, "index-11", false]], "rfc 5424": [[102, "index-0", false], [102, "index-2", false], [102, "index-3", false], [102, "index-4", false], [269, "index-0", false]], "rfc 5424#section-6": [[102, "index-1", false]], "rfc 5735": [[259, "index-2", false]], "rfc 5789": [[241, "index-76", false]], "rfc 5842": [[241, "index-164", false], [241, "index-211", false]], "rfc 5891": [[158, "index-10", false]], "rfc 5894": [[483, "index-36", false]], "rfc 5895": [[158, "index-11", false]], "rfc 5929": [[341, "index-11", false]], "rfc 6066": [[341, "index-13", false], [341, "index-21", false], [341, "index-37", false]], "rfc 6152": [[478, "index-37", false]], "rfc 6531": [[205, "index-3", false], [208, "index-8", false], [335, "index-3", false], [478, "index-32", false], [478, "index-38", false], [478, "index-39", false]], "rfc 6532": [[194, "index-2", false], [205, "index-1", false], [207, "index-1", false], [208, "index-7", false], [478, "index-31", false]], "rfc 6585": [[241, "index-199", false], [241, "index-200", false], [241, "index-201", false], [241, "index-213", false]], "rfc 6855": [[248, "index-4", false], [248, "index-5", false], [478, "index-34", false], [478, "index-35", false]], "rfc 6856": [[305, "index-5", false], [478, "index-36", false]], "rfc 7159": [[262, "index-2", false], [262, "index-4", false], [262, "index-7", false]], "rfc 7230": [[242, "index-7", false], [395, "index-15", false]], "rfc 7231": [[241, "index-152", false], [241, "index-153", false], [241, "index-156", false], [241, "index-157", false], [241, "index-158", false], [241, "index-159", false], [241, "index-160", false], [241, "index-161", false], [241, "index-166", false], [241, "index-167", false], [241, "index-168", false], [241, "index-169", false], [241, "index-171", false], [241, "index-172", false], [241, "index-174", false], [241, "index-176", false], [241, "index-177", false], [241, "index-178", false], [241, "index-179", false], [241, "index-180", false], [241, "index-182", false], [241, "index-183", false], [241, "index-184", false], [241, "index-185", false], [241, "index-187", false], [241, "index-188", false], [241, "index-189", false], [241, "index-191", false], [241, "index-198", false], [241, "index-203", false], [241, "index-204", false], [241, "index-205", false], [241, "index-206", false], [241, "index-207", false], [241, "index-208", false], [241, "index-214", false], [241, "index-215", false], [241, "index-216", false], [241, "index-217", false], [241, "index-218", false], [241, "index-219", false], [241, "index-220", false], [241, "index-221", false], [241, "index-222", false], [241, "index-223", false], [241, "index-224", false], [241, "index-225", false], [241, "index-226", false]], "rfc 7232": [[241, "index-170", false], [241, "index-186", false]], "rfc 7233": [[241, "index-162", false], [241, "index-190", false]], "rfc 7235": [[241, "index-175", false], [241, "index-181", false]], "rfc 7238": [[241, "index-173", false]], "rfc 7301": [[341, "index-12", false], [341, "index-36", false], [478, "index-40", false]], "rfc 7525": [[341, "index-22", false]], "rfc 7538": [[483, "index-86", false]], "rfc 7540": [[241, "index-193", false]], "rfc 7693": [[235, "index-5", false]], "rfc 7725": [[241, "index-202", false]], "rfc 7914": [[235, "index-3", false]], "rfc 821": [[335, "index-1", false], [335, "index-4", false]], "rfc 822": [[200, "index-0", false], [202, "index-1", false], [230, "index-9", false], [242, "index-6", false], [335, "index-10", false], [335, "index-12", false], [335, "index-6", false], [335, "index-9", false], [366, "index-19", false], [366, "index-20", false], [464, "index-21", false]], "rfc 8297": [[241, "index-155", false]], "rfc 8305": [[126, "index-15", false], [126, "index-16", false]], "rfc 8470": [[241, "index-197", false]], "rfc 854": [[359, "index-2", false], [359, "index-3", false]], "rfc 9239": [[483, "index-45", false]], "rfc 959": [[223, "index-12", false]], "rfc 977": [[288, "index-3", false]], "rfc2109 (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.rfc2109", false]], "rfc2109_as_netscape (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape", false]], "rfc2965 (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.rfc2965", false]], "rfc_4122 (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RFC_4122", false]], "rfile (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.rfile", false]], "rfile (socketserver.datagramrequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.DatagramRequestHandler.rfile", false]], "rfind() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rfind", false]], "rfind() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rfind", false]], "rfind() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.rfind", false]], "rfind() (str \u7684\u65b9\u6cd5)": [[344, "str.rfind", false]], "rgb_to_hls() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_hls", false]], "rgb_to_hsv() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_hsv", false]], "rgb_to_yiq() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_yiq", false]], "rglob() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rglob", false]], "richcmpfunc (c type)": [[63, "c.richcmpfunc", false]], "right (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right", false]], "right() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.right", false]], "right_list (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right_list", false]], "right_only (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right_only", false]], "rightshift (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RIGHTSHIFT", false]], "rightshiftequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RIGHTSHIFTEQUAL", false]], "rindex() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rindex", false]], "rindex() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rindex", false]], "rindex() (str \u7684\u65b9\u6cd5)": [[344, "str.rindex", false]], "rjust() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rjust", false]], "rjust() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rjust", false]], "rjust() (str \u7684\u65b9\u6cd5)": [[344, "str.rjust", false]], "rlcompleter": [[323, "module-rlcompleter", false]], "rlim_infinity (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIM_INFINITY", false]], "rlimit_as (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_AS", false]], "rlimit_core (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_CORE", false]], "rlimit_cpu (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_CPU", false]], "rlimit_data (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_DATA", false]], "rlimit_fsize (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_FSIZE", false]], "rlimit_kqueues (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_KQUEUES", false]], "rlimit_memlock (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_MEMLOCK", false]], "rlimit_msgqueue (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_MSGQUEUE", false]], "rlimit_nice (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NICE", false]], "rlimit_nofile (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NOFILE", false]], "rlimit_nproc (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NPROC", false]], "rlimit_npts (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NPTS", false]], "rlimit_ofile (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_OFILE", false]], "rlimit_rss (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RSS", false]], "rlimit_rtprio (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RTPRIO", false]], "rlimit_rttime (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RTTIME", false]], "rlimit_sbsize (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SBSIZE", false]], "rlimit_sigpending (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SIGPENDING", false]], "rlimit_stack (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_STACK", false]], "rlimit_swap (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SWAP", false]], "rlimit_vmem (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_VMEM", false]], "rlock (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.RLock", false]], "rlock (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.RLock", false]], "rlock() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.RLock", false]], "rmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.rmd", false]], "rmdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rmdir", false]], "rmdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.rmdir", false]], "rmdir() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.rmdir", false]], "rmff": [[153, "index-0", false]], "rms() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.rms", false]], "rmtree() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.rmtree", false]], "rmtree() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.rmtree", false]], "robotfileparser (urllib.robotparser \u4e2d\u7684\u985e\u5225)": [[396, "urllib.robotparser.RobotFileParser", false]], "robots.txt": [[396, "index-0", false]], "rollback() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.rollback", false]], "rollover() (tempfile.spooledtemporaryfile \u7684\u65b9\u6cd5)": [[360, "tempfile.SpooledTemporaryFile.rollover", false]], "roman (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.ROMAN", false]], "root (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.root", false]], "rotate() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.rotate", false]], "rotate() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.rotate", false]], "rotate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.rotate", false]], "rotate() (logging.handlers.baserotatinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BaseRotatingHandler.rotate", false]], "rotatingfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.RotatingFileHandler", false]], "rotation_filename() (logging.handlers.baserotatinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BaseRotatingHandler.rotation_filename", false]], "rotator (logging.handlers.baserotatinghandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.BaseRotatingHandler.rotator", false]], "round": [[428, "index-105", false]], "round()": [[225, "round", false]], "round_05up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_05UP", false]], "round_ceiling (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_CEILING", false]], "round_down (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_DOWN", false]], "round_floor (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_FLOOR", false]], "round_half_down (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_DOWN", false]], "round_half_even (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_EVEN", false]], "round_half_up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_UP", false]], "round_up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_UP", false]], "rounded (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Rounded", false]], "rounds (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.rounds", false]], "row (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Row", false]], "row_factory (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.row_factory", false]], "row_factory (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.row_factory", false]], "rowcount (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.rowcount", false]], "rpar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RPAR", false]], "rpartition() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rpartition", false]], "rpartition() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rpartition", false]], "rpartition() (str \u7684\u65b9\u6cd5)": [[344, "str.rpartition", false]], "rpc_paths (xmlrpc.server.simplexmlrpcrequesthandler \u7684\u5c6c\u6027)": [[420, "xmlrpc.server.SimpleXMLRPCRequestHandler.rpc_paths", false]], "rpop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.rpop", false]], "rs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.RS", false]], "rset() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.rset", false]], "rshift (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.RShift", false]], "rshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.rshift", false]], "rsplit() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rsplit", false]], "rsplit() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rsplit", false]], "rsplit() (str \u7684\u65b9\u6cd5)": [[344, "str.rsplit", false]], "rsqb (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RSQB", false]], "rstrip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rstrip", false]], "rstrip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rstrip", false]], "rstrip() (str \u7684\u65b9\u6cd5)": [[344, "str.rstrip", false]], "rt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.rt", false]], "rtld_deepbind (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_DEEPBIND", false]], "rtld_global (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_GLOBAL", false]], "rtld_lazy (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_LAZY", false]], "rtld_local (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_LOCAL", false]], "rtld_nodelete (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NODELETE", false]], "rtld_noload (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NOLOAD", false]], "rtld_now (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NOW", false]], "ruler (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.ruler", false]], "run (pdb command)": [[297, "pdbcommand-run", false]], "run script\uff08\u57f7\u884c\u8173\u672c\uff09": [[247, "index-2", false]], "run() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.run", false]], "run() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.run", false]], "run() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.run", false]], "run() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.run", false]], "run() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.run", false]], "run() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.run", false]], "run() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.run", false]], "run() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.run", false]], "run() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.run", false]], "run() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.run", false]], "run() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.run", false]], "run() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.run", false]], "run() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.run", false]], "run() (unittest.texttestrunner \u7684\u65b9\u6cd5)": [[388, "unittest.TextTestRunner.run", false]], "run() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.run", false]], "run() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[135, "asyncio.run", false]], "run() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.run", false]], "run() (\u65bc profile \u6a21\u7d44\u4e2d)": [[308, "profile.run", false]], "run() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.run", false]], "run_coroutine_threadsafe() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.run_coroutine_threadsafe", false]], "run_docstring_examples() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.run_docstring_examples", false]], "run_forever() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_forever", false]], "run_in_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_in_executor", false]], "run_in_subinterp() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_in_subinterp", false]], "run_module() (\u65bc runpy \u6a21\u7d44\u4e2d)": [[324, "runpy.run_module", false]], "run_path() (\u65bc runpy \u6a21\u7d44\u4e2d)": [[324, "runpy.run_path", false]], "run_python_until_end() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.run_python_until_end", false]], "run_script() (modulefinder.modulefinder \u7684\u65b9\u6cd5)": [[279, "modulefinder.ModuleFinder.run_script", false]], "run_until_complete() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_until_complete", false]], "run_with_locale() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_with_locale", false]], "run_with_tz() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_with_tz", false]], "runcall() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runcall", false]], "runcall() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.runcall", false]], "runcall() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.runcall", false]], "runcall() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.runcall", false]], "runcode() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.runcode", false]], "runctx() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runctx", false]], "runctx() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.runctx", false]], "runctx() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.runctx", false]], "runctx() (\u65bc profile \u6a21\u7d44\u4e2d)": [[308, "profile.runctx", false]], "runeval() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runeval", false]], "runeval() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.runeval", false]], "runeval() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.runeval", false]], "runfunc() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.runfunc", false]], "runner (asyncio \u4e2d\u7684\u985e\u5225)": [[135, "asyncio.Runner", false]], "running() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.running", false]], "runpy": [[324, "module-runpy", false]], "runsource() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.runsource", false]], "runtime (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.runtime", false]], "runtime_checkable() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.runtime_checkable", false]], "runtimeerror": [[213, "RuntimeError", false]], "runtimewarning": [[213, "RuntimeWarning", false]], "rusage_both (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_BOTH", false]], "rusage_children (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_CHILDREN", false]], "rusage_self (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_SELF", false]], "rusage_thread (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_THREAD", false]], "rwf_append (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_APPEND", false]], "rwf_dsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_DSYNC", false]], "rwf_hipri (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_HIPRI", false]], "rwf_nowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_NOWAIT", false]], "rwf_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_SYNC", false]], "s (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.S", false]], "s_enfmt (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ENFMT", false]], "s_iexec (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IEXEC", false]], "s_ifblk (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFBLK", false]], "s_ifchr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFCHR", false]], "s_ifdir (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFDIR", false]], "s_ifdoor (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFDOOR", false]], "s_ififo (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFIFO", false]], "s_iflnk (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFLNK", false]], "s_ifmt() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFMT", false]], "s_ifport (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFPORT", false]], "s_ifreg (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFREG", false]], "s_ifsock (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFSOCK", false]], "s_ifwht (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFWHT", false]], "s_imode() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IMODE", false]], "s_iread (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IREAD", false]], "s_irgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRGRP", false]], "s_iroth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IROTH", false]], "s_irusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRUSR", false]], "s_irwxg (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXG", false]], "s_irwxo (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXO", false]], "s_irwxu (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXU", false]], "s_isblk() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISBLK", false]], "s_ischr() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISCHR", false]], "s_isdir() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISDIR", false]], "s_isdoor() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISDOOR", false]], "s_isfifo() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISFIFO", false]], "s_isgid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISGID", false]], "s_islnk() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISLNK", false]], "s_isport() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISPORT", false]], "s_isreg() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISREG", false]], "s_issock() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISSOCK", false]], "s_isuid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISUID", false]], "s_isvtx (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISVTX", false]], "s_iswht() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISWHT", false]], "s_iwgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWGRP", false]], "s_iwoth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWOTH", false]], "s_iwrite (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWRITE", false]], "s_iwusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWUSR", false]], "s_ixgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXGRP", false]], "s_ixoth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXOTH", false]], "s_ixusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXUSR", false]], "safe (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.safe", false]], "safe_path (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.safe_path", false]], "safe_substitute() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.safe_substitute", false]], "safechildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.SafeChildWatcher", false]], "saferepr() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.saferepr", false]], "safeuuid (uuid \u4e2d\u7684\u985e\u5225)": [[398, "uuid.SafeUUID", false]], "same_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.same_files", false]], "same_quantum() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.same_quantum", false]], "same_quantum() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.same_quantum", false]], "samefile() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.samefile", false]], "samefile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.samefile", false]], "samefileerror": [[332, "shutil.SameFileError", false]], "sameopenfile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.sameopenfile", false]], "samesite (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.samesite", false]], "samestat() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.samestat", false]], "sample() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.sample", false]], "samples() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.samples", false]], "saturday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SATURDAY", false]], "save() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.save", false]], "save() (test.support.savesignals \u7684\u65b9\u6cd5)": [[362, "test.support.SaveSignals.save", false]], "saveas (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.SaveAs", false]], "savedcwd (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.SAVEDCWD", false]], "savefiledialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.SaveFileDialog", false]], "savekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SaveKey", false]], "savesignals (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.SaveSignals", false]], "savetty() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.savetty", false]], "sax2dom (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.SAX2DOM", false]], "saxexception": [[414, "xml.sax.SAXException", false]], "saxnotrecognizedexception": [[414, "xml.sax.SAXNotRecognizedException", false]], "saxnotsupportedexception": [[414, "xml.sax.SAXNotSupportedException", false]], "saxparseexception": [[414, "xml.sax.SAXParseException", false]], "scaleb() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.scaleb", false]], "scaleb() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.scaleb", false]], "scandir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.scandir", false]], "scanf\uff08c \u51fd\u5f0f\uff09": [[319, "index-40", false]], "sched": [[325, "module-sched", false]], "sched_batch (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_BATCH", false]], "sched_fifo (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_FIFO", false]], "sched_get_priority_max() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_get_priority_max", false]], "sched_get_priority_min() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_get_priority_min", false]], "sched_getaffinity() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getaffinity", false]], "sched_getparam() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getparam", false]], "sched_getscheduler() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getscheduler", false]], "sched_idle (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_IDLE", false]], "sched_other (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_OTHER", false]], "sched_param (os \u4e2d\u7684\u985e\u5225)": [[293, "os.sched_param", false]], "sched_priority (os.sched_param \u7684\u5c6c\u6027)": [[293, "os.sched_param.sched_priority", false]], "sched_reset_on_fork (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_RESET_ON_FORK", false]], "sched_rr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_RR", false]], "sched_rr_get_interval() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_rr_get_interval", false]], "sched_setaffinity() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setaffinity", false]], "sched_setparam() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setparam", false]], "sched_setscheduler() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setscheduler", false]], "sched_sporadic (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_SPORADIC", false]], "sched_yield() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_yield", false]], "scheduler (sched \u4e2d\u7684\u985e\u5225)": [[325, "sched.scheduler", false]], "scheduling priority\uff08\u6392\u7a0b\u512a\u5148\u6b0a\uff09": [[293, "index-15", false], [293, "index-18", false]], "schema (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.schema", false]], "scm_creds2 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SCM_CREDS2", false]], "scope_id (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.scope_id", false]], "scope\uff08\u4f5c\u7528\u57df\uff09": [[429, "index-3", false], [429, "index-7", false]], "screen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Screen", false]], "screensize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.screensize", false]], "script_from_examples() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.script_from_examples", false]], "scroll() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.scroll", false]], "scrolledcanvas (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.ScrolledCanvas", false]], "scrolledtext (tkinter.scrolledtext \u4e2d\u7684\u985e\u5225)": [[374, "tkinter.scrolledtext.ScrolledText", false]], "scrollok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.scrollok", false]], "scrypt() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.scrypt", false]], "sdterr": [[33, "index-16", false]], "seal() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.seal", false]], "search() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.search", false]], "search() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.search", false]], "search() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.search", false]], "search\uff08\u641c\u5c0b\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false], [265, "index-0", false], [334, "index-0", false], [352, "index-21", false], [450, "index-0", false]], "second (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.second", false]], "second (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.second", false]], "seconds since the epoch": [[366, "index-1", false]], "secrets": [[326, "module-secrets", false]], "sectcre (configparser.configparser \u7684\u5c6c\u6027)": [[167, "configparser.ConfigParser.SECTCRE", false]], "sections() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.sections", false]], "secure (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.secure", false]], "secure (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.secure", false]], "secure hash algorithm, sha1, sha2, sha224, sha256, sha384, sha512, sha3, shake, blake2": [[235, "index-0", false]], "secure sockets layer\uff08\u5b89\u5168 socket \u5c64\uff09": [[341, "index-1", false]], "security considerations\uff08\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805\uff09": [[327, "index-0", false]], "security_level (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.security_level", false]], "security\uff08\u5b89\u5168\uff09": [[151, "index-2", false], [245, "index-3", false]], "see() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.see", false]], "seed() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.seed", false]], "seed() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.seed", false]], "seed_bits (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.seed_bits", false]], "seek() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.seek", false]], "seek() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.seek", false]], "seek() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.seek", false]], "seek() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.seek", false]], "seek() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.seek", false]], "seek() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.seek", false]], "seek_cur (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_CUR", false]], "seek_data (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_DATA", false]], "seek_end (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_END", false]], "seek_hole (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_HOLE", false]], "seek_set (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_SET", false]], "seekable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.seekable", false]], "seekable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.seekable", false]], "select": [[328, "module-select", false]], "select (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Select", false]], "select() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.select", false]], "select() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.select", false]], "select() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.select", false]], "select() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.select", false]], "selected_alpn_protocol() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.selected_alpn_protocol", false]], "selected_npn_protocol() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.selected_npn_protocol", false]], "selection() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection", false]], "selection_add() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_add", false]], "selection_remove() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_remove", false]], "selection_set() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_set", false]], "selection_toggle() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_toggle", false]], "selector (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.selector", false]], "selectoreventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.SelectorEventLoop", false]], "selectorkey (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.SelectorKey", false]], "selectors": [[329, "module-selectors", false]], "selectselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.SelectSelector", false]], "self (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Self", false]], "semaphore (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Semaphore", false]], "semaphore (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Semaphore", false]], "semaphore (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Semaphore", false]], "semaphore() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Semaphore", false]], "semaphores, binary": [[115, "index-0", false]], "semi (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SEMI", false]], "send (opcode)": [[191, "opcode-SEND", false]], "send() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.send", false]], "send() (generator \u7684\u65b9\u6cd5)": [[430, "generator.send", false]], "send() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.send", false]], "send() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.send", false]], "send() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.send", false]], "send() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.send", false]], "send() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.send", false]], "send() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.send", false]], "send_bytes() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.send_bytes", false]], "send_error() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_error", false]], "send_fds() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.send_fds", false]], "send_header() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_header", false]], "send_message() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.send_message", false]], "send_response() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_response", false]], "send_response_only() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_response_only", false]], "send_signal() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.send_signal", false]], "send_signal() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.send_signal", false]], "send_signal() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.send_signal", false]], "sendall() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendall", false]], "sendcmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.sendcmd", false]], "sendfile() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sendfile", false]], "sendfile() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendfile", false]], "sendfile() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.sendfile", false]], "sendfile() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sendfile", false]], "sendfilenotavailableerror": [[127, "asyncio.SendfileNotAvailableError", false]], "sendfunc (c type)": [[63, "c.sendfunc", false]], "sendmail() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.sendmail", false]], "sendmsg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendmsg", false]], "sendmsg_afalg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendmsg_afalg", false]], "sendto() (asyncio.datagramtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramTransport.sendto", false]], "sendto() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendto", false]], "sentinel (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.sentinel", false]], "sentinel (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.sentinel", false]], "sep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sep", false]], "september (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SEPTEMBER", false]], "sequence (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Sequence", false]], "sequence (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Sequence", false]], "sequence (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.sequence", false]], "sequencematcher (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.SequenceMatcher", false]], "sequence\uff08\u5e8f\u5217\uff09": [[16, "index-1", false], [87, "term-sequence", true], [344, "index-18", false], [344, "index-19", false], [344, "index-20", false], [344, "index-22", false], [344, "index-23", false], [344, "index-24", false], [427, "index-6", false], [428, "index-15", false], [428, "index-53", false], [430, "index-42", false], [430, "index-45", false], [430, "index-80", false], [436, "index-10", false]], "serialize() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.serialize", false]], "serializing\uff08\u5e8f\u5217\u5316\uff09": [[299, "index-0", false]], "serve_forever() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.serve_forever", false]], "serve_forever() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.serve_forever", false]], "server (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.Server", false]], "server (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.server", false]], "server (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.server", false]], "server_activate() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_activate", false]], "server_address (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.server_address", false]], "server_bind() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_bind", false]], "server_close() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_close", false]], "server_hostname (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.server_hostname", false]], "server_side (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.server_side", false]], "server_software (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.server_software", false]], "server_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.server_version", false]], "server_version (http.server.simplehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.SimpleHTTPRequestHandler.server_version", false]], "serverproxy (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.ServerProxy", false]], "server\uff08\u4f3a\u670d\u5668\uff09": [[151, "index-0", false], [245, "index-0", false]], "service_actions() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.service_actions", false]], "session (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.session", false]], "session_reused (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.session_reused", false]], "session_stats() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.session_stats", false]], "set (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Set", false]], "set (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Set", false]], "set (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Set", false]], "set (\u5167\u5efa\u985e\u5225)": [[344, "set", false]], "set breakpoint": [[247, "index-4", false]], "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-set-comprehension", true]], "set expression\uff08\u96c6\u5408\u904b\u7b97\u5f0f\uff09": [[430, "index-16", false]], "set type\uff08\u96c6\u5408\u578b\u5225\uff09": [[428, "index-27", false]], "set() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.set", false]], "set() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.set", false]], "set() (configparser.rawconfigparser \u7684\u65b9\u6cd5)": [[167, "configparser.RawConfigParser.set", false]], "set() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.set", false]], "set() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.set", false]], "set() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.set", false]], "set() (test.support.os_helper.environmentvarguard \u7684\u65b9\u6cd5)": [[362, "test.support.os_helper.EnvironmentVarGuard.set", false]], "set() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.set", false]], "set() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.set", false]], "set() (tkinter.ttk.spinbox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Spinbox.set", false]], "set() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.set", false]], "set() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.set", false]], "set_add (opcode)": [[191, "opcode-SET_ADD", false]], "set_all()": [[35, "index-6", false]], "set_allowed_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.set_allowed_domains", false]], "set_alpn_protocols() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_alpn_protocols", false]], "set_app() (wsgiref.simple_server.wsgiserver \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIServer.set_app", false]], "set_asyncgen_hooks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_asyncgen_hooks", false]], "set_authorizer() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_authorizer", false]], "set_auto_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_auto_history", false]], "set_blocked_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.set_blocked_domains", false]], "set_blocking() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_blocking", false]], "set_boundary() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_boundary", false]], "set_boundary() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_boundary", false]], "set_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_break", false]], "set_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_charset", false]], "set_child_watcher() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.set_child_watcher", false]], "set_child_watcher() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.set_child_watcher", false]], "set_children() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.set_children", false]], "set_ciphers() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_ciphers", false]], "set_completer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completer", false]], "set_completer_delims() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completer_delims", false]], "set_completion_display_matches_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completion_display_matches_hook", false]], "set_content() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.set_content", false]], "set_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_content", false]], "set_content() (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.set_content", false]], "set_continue() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_continue", false]], "set_cookie() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_cookie", false]], "set_cookie_if_ok() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_cookie_if_ok", false]], "set_coroutine_origin_tracking_depth() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_coroutine_origin_tracking_depth", false]], "set_current() (msilib.feature \u7684\u65b9\u6cd5)": [[281, "msilib.Feature.set_current", false]], "set_data() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.set_data", false]], "set_data() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.set_data", false]], "set_date() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_date", false]], "set_debug() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_debug", false]], "set_debug() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.set_debug", false]], "set_debuglevel() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.set_debuglevel", false]], "set_debuglevel() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.set_debuglevel", false]], "set_debuglevel() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.set_debuglevel", false]], "set_debuglevel() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.set_debuglevel", false]], "set_debuglevel() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.set_debuglevel", false]], "set_debuglevel() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.set_debuglevel", false]], "set_default_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_default_executor", false]], "set_default_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_default_type", false]], "set_default_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_default_type", false]], "set_default_verify_paths() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_default_verify_paths", false]], "set_defaults() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.set_defaults", false]], "set_defaults() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.set_defaults", false]], "set_ecdh_curve() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_ecdh_curve", false]], "set_errno() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.set_errno", false]], "set_escdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.set_escdelay", false]], "set_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.set_event_loop", false]], "set_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.set_event_loop", false]], "set_event_loop_policy() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.set_event_loop_policy", false]], "set_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.set_events", false]], "set_exception() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.set_exception", false]], "set_exception() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_exception", false]], "set_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_exception_handler", false]], "set_executable() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_executable", false]], "set_filter() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.set_filter", false]], "set_flags() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_flags", false]], "set_flags() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.set_flags", false]], "set_flags() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.set_flags", false]], "set_forkserver_preload() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_forkserver_preload", false]], "set_from() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.set_from", false]], "set_from() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.set_from", false]], "set_handle_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_handle_inheritable", false]], "set_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_history_length", false]], "set_info() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_info", false]], "set_inheritable() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.set_inheritable", false]], "set_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_inheritable", false]], "set_int_max_str_digits() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_int_max_str_digits", false]], "set_labels() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.set_labels", false]], "set_last_error() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.set_last_error", false]], "set_literal (2to3 fixer)": [[112, "to3fixer-set_literal", false]], "set_local_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.set_local_events", false]], "set_memlimit() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.set_memlimit", false]], "set_name() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.set_name", false]], "set_next() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_next", false]], "set_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.set_nonstandard_attr", false]], "set_npn_protocols() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_npn_protocols", false]], "set_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.set_ok", false]], "set_option_negotiation_callback() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.set_option_negotiation_callback", false]], "set_param() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_param", false]], "set_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_param", false]], "set_pasv() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.set_pasv", false]], "set_payload() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_payload", false]], "set_policy() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_policy", false]], "set_position() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.set_position", false]], "set_pre_input_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_pre_input_hook", false]], "set_progress_handler() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_progress_handler", false]], "set_protocol() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.set_protocol", false]], "set_proxy() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.set_proxy", false]], "set_quit() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_quit", false]], "set_recsrc() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.set_recsrc", false]], "set_result() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.set_result", false]], "set_result() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_result", false]], "set_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_return", false]], "set_running_or_notify_cancel() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_running_or_notify_cancel", false]], "set_selection() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.set_selection", false]], "set_seq1() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seq1", false]], "set_seq2() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seq2", false]], "set_seqs() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seqs", false]], "set_sequences() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.set_sequences", false]], "set_sequences() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.set_sequences", false]], "set_server_documentation() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_documentation", false]], "set_server_documentation() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_documentation", false]], "set_server_name() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_name", false]], "set_server_name() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_name", false]], "set_server_title() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_title", false]], "set_server_title() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_title", false]], "set_servername_callback (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.set_servername_callback", false]], "set_start_method() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_start_method", false]], "set_startup_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_startup_hook", false]], "set_step() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_step", false]], "set_subdir() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_subdir", false]], "set_tabsize() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.set_tabsize", false]], "set_task_factory() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_task_factory", false]], "set_threshold() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.set_threshold", false]], "set_trace() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_trace", false]], "set_trace() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.set_trace", false]], "set_trace() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.set_trace", false]], "set_trace() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.set_trace", false]], "set_trace_callback() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_trace_callback", false]], "set_tunnel() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.set_tunnel", false]], "set_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_type", false]], "set_unittest_reportflags() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.set_unittest_reportflags", false]], "set_unixfrom() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_unixfrom", false]], "set_unixfrom() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_unixfrom", false]], "set_until() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_until", false]], "set_update (opcode)": [[191, "opcode-SET_UPDATE", false]], "set_url() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.set_url", false]], "set_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.set_usage", false]], "set_userptr() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.set_userptr", false]], "set_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.set_visible", false]], "set_wakeup_fd() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.set_wakeup_fd", false]], "set_write_buffer_limits() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.set_write_buffer_limits", false]], "setacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setacl", false]], "setannotation() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setannotation", false]], "setattr()": [[225, "setattr", false]], "setattrfunc (c type)": [[63, "c.setattrfunc", false]], "setattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttribute", false]], "setattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNode", false]], "setattributenodens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNodeNS", false]], "setattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNS", false]], "setattrofunc (c type)": [[63, "c.setattrofunc", false]], "setbase() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetBase", false]], "setblocking() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.setblocking", false]], "setbytestream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setByteStream", false]], "setcbreak() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.setcbreak", false]], "setcharacterstream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setCharacterStream", false]], "setcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.SetComp", false]], "setcomptype() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setcomptype", false]], "setcomptype() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setcomptype", false]], "setcomptype() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setcomptype", false]], "setconfig() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.setconfig", false]], "setcontenthandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setContentHandler", false]], "setcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.setcontext", false]], "setdaemon() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.setDaemon", false]], "setdefault() (dict \u7684\u65b9\u6cd5)": [[344, "dict.setdefault", false]], "setdefault() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.setdefault", false]], "setdefaulttimeout() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.setdefaulttimeout", false]], "setdlopenflags() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setdlopenflags", false]], "setdocumentlocator() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.setDocumentLocator", false]], "setdtdhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setDTDHandler", false]], "setegid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setegid", false]], "setencoding() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setEncoding", false]], "setentityresolver() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setEntityResolver", false]], "seterrorhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setErrorHandler", false]], "seteuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.seteuid", false]], "setfeature() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setFeature", false]], "setfirstweekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.setfirstweekday", false]], "setfmt() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.setfmt", false]], "setformatter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.setFormatter", false]], "setframerate() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setframerate", false]], "setframerate() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setframerate", false]], "setframerate() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setframerate", false]], "setgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setgid", false]], "setgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setgroups", false]], "seth() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.seth", false]], "setheading() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setheading", false]], "sethostname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.sethostname", false]], "setinputsizes() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.setinputsizes", false]], "setinteger() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetInteger", false]], "setitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.setitem", false]], "setitimer() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.setitimer", false]], "setlevel() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.setLevel", false]], "setlevel() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.setLevel", false]], "setlimit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.setlimit", false]], "setlocale() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setLocale", false]], "setlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.setlocale", false]], "setloggerclass() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.setLoggerClass", false]], "setlogmask() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.setlogmask", false]], "setlogrecordfactory() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.setLogRecordFactory", false]], "setmark() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setmark", false]], "setmaxconns() (urllib.request.cacheftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.CacheFTPHandler.setMaxConns", false]], "setmode() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.setmode", false]], "setname() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.setName", false]], "setnchannels() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setnchannels", false]], "setnchannels() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setnchannels", false]], "setnchannels() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setnchannels", false]], "setnframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setnframes", false]], "setnframes() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setnframes", false]], "setnframes() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setnframes", false]], "setns() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setns", false]], "setoutputsize() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.setoutputsize", false]], "setparamentityparsing() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetParamEntityParsing", false]], "setparameters() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.setparameters", false]], "setparams() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setparams", false]], "setparams() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setparams", false]], "setparams() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setparams", false]], "setpassword() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.setpassword", false]], "setpgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpgid", false]], "setpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpgrp", false]], "setpos() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setpos", false]], "setpos() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.setpos", false]], "setpos() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.setpos", false]], "setpos() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setpos", false]], "setposition() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setposition", false]], "setpriority() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpriority", false]], "setprofile() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setprofile", false]], "setprofile() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.setprofile", false]], "setprofile_all_threads() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.setprofile_all_threads", false]], "setproperty() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.SetProperty", false]], "setproperty() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setProperty", false]], "setpublicid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setPublicId", false]], "setquota() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setquota", false]], "setraw() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.setraw", false]], "setrecursionlimit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setrecursionlimit", false]], "setregid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setregid", false]], "setreparsedeferralenabled() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetReparseDeferralEnabled", false]], "setresgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setresgid", false]], "setresuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setresuid", false]], "setreuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setreuid", false]], "setrlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.setrlimit", false]], "setsampwidth() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setsampwidth", false]], "setsampwidth() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setsampwidth", false]], "setsampwidth() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setsampwidth", false]], "setscrreg() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.setscrreg", false]], "setsid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setsid", false]], "setsockopt() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.setsockopt", false]], "setstate() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.setstate", false]], "setstate() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.setstate", false]], "setstate() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.setstate", false]], "setstate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.setstate", false]], "setstream() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.setStream", false]], "setstream() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetStream", false]], "setstring() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetString", false]], "setswitchinterval \uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-33", false]], "setswitchinterval() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setswitchinterval", false]], "setswitchinterval() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.setswitchinterval", false]], "setsystemid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setSystemId", false]], "setsyx() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.setsyx", false]], "settarget() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.setTarget", false]], "setter (c type)": [[58, "c.setter", false]], "settiltangle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.settiltangle", false]], "settimeout() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.settimeout", false]], "settimeout() (urllib.request.cacheftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.CacheFTPHandler.setTimeout", false]], "setting\uff08\u8a2d\u5b9a\uff09": [[293, "index-17", false]], "settrace() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.settrace", false]], "settrace() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.settrace", false]], "settrace_all_threads() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.settrace_all_threads", false]], "setuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setuid", false]], "setundobuffer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setundobuffer", false]], "setup() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.setup", false]], "setup() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.setUp", false]], "setup() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setup", false]], "setup_annotations (opcode)": [[191, "opcode-SETUP_ANNOTATIONS", false]], "setup_cleanup (opcode)": [[191, "opcode-SETUP_CLEANUP", false]], "setup_environ() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.setup_environ", false]], "setup_finally (opcode)": [[191, "opcode-SETUP_FINALLY", false]], "setup_python() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.setup_python", false]], "setup_scripts() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.setup_scripts", false]], "setup_testing_defaults() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.setup_testing_defaults", false]], "setup_with (opcode)": [[191, "opcode-SETUP_WITH", false]], "setupclass() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.setUpClass", false]], "setupterm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.setupterm", false]], "setvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SetValue", false]], "setvalueex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SetValueEx", false]], "setworldcoordinates() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setworldcoordinates", false]], "setx() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setx", false]], "setxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setxattr", false]], "sety() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.sety", false]], "set\uff08\u96c6\u5408\uff09": [[55, "index-0", false], [344, "index-51", false], [428, "index-28", false], [430, "index-16", false]], "sf_append (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_APPEND", false]], "sf_archived (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_ARCHIVED", false]], "sf_immutable (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_IMMUTABLE", false]], "sf_mnowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_MNOWAIT", false]], "sf_nocache (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_NOCACHE", false]], "sf_nodiskio (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_NODISKIO", false]], "sf_nounlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_NOUNLINK", false]], "sf_snapshot (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_SNAPSHOT", false]], "sf_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_SYNC", false]], "sha1() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha1", false]], "sha224() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha224", false]], "sha256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha256", false]], "sha384() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha384", false]], "sha3_224() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_224", false]], "sha3_256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_256", false]], "sha3_384() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_384", false]], "sha3_512() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_512", false]], "sha512() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha512", false]], "shake_128() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.shake_128", false]], "shake_256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.shake_256", false]], "shape (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.shape", false]], "shape (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Shape", false]], "shape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shape", false]], "shapesize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shapesize", false]], "shapetransform() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shapetransform", false]], "share() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.share", false]], "shareablelist (multiprocessing.shared_memory \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.shared_memory.ShareableList", false]], "shareablelist() (multiprocessing.managers.sharedmemorymanager \u7684\u65b9\u6cd5)": [[284, "multiprocessing.managers.SharedMemoryManager.ShareableList", false]], "shared memory\uff08\u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "shared_ciphers() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.shared_ciphers", false]], "shared_memory (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.shared_memory", false]], "sharedmemory (multiprocessing.shared_memory \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.shared_memory.SharedMemory", false]], "sharedmemory() (multiprocessing.managers.sharedmemorymanager \u7684\u65b9\u6cd5)": [[284, "multiprocessing.managers.SharedMemoryManager.SharedMemory", false]], "sharedmemorymanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.managers.SharedMemoryManager", false]], "shearfactor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shearfactor", false]], "shelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.Shelf", false]], "shelve": [[274, "index-0", false], [330, "module-shelve", false]], "shield() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.shield", false]], "shift() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.shift", false]], "shift() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.shift", false]], "shift_path_info() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.shift_path_info", false]], "shifting\uff08\u79fb\u4f4d\uff09": [[344, "index-16", false]], "shifting\uff08\u79fb\u52d5\uff09": [[430, "index-71", false]], "shlex": [[331, "module-shlex", false]], "shlex (shlex \u4e2d\u7684\u985e\u5225)": [[331, "shlex.shlex", false]], "shm (multiprocessing.shared_memory.shareablelist \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.ShareableList.shm", false]], "short_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SHORT_TIMEOUT", false]], "shortdescription() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.shortDescription", false]], "shorten() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.shorten", false]], "shouldflush() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.shouldFlush", false]], "shouldflush() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.shouldFlush", false]], "shouldstop (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.shouldStop", false]], "show() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.show", false]], "show() (tkinter.commondialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.commondialog.Dialog.show", false]], "show() (tkinter.messagebox.message \u7684\u65b9\u6cd5)": [[373, "tkinter.messagebox.Message.show", false]], "show_code() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.show_code", false]], "show_flag_values() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.show_flag_values", false]], "showerror() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showerror", false]], "showinfo() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showinfo", false]], "showsyntaxerror() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.showsyntaxerror", false]], "showtraceback() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.showtraceback", false]], "showturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.showturtle", false]], "showwarning() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showwarning", false]], "showwarning() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.showwarning", false]], "shuffle() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.shuffle", false]], "shutdown() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.shutdown", false]], "shutdown() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.shutdown", false]], "shutdown() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.shutdown", false]], "shutdown() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.shutdown", false]], "shutdown() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.shutdown", false]], "shutdown() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.shutdown", false]], "shutdown_asyncgens() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.shutdown_asyncgens", false]], "shutdown_default_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.shutdown_default_executor", false]], "shutil": [[332, "module-shutil", false]], "si (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SI", false]], "side_effect (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.side_effect", false]], "sig_block (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_BLOCK", false]], "sig_dfl (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_DFL", false]], "sig_ign (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_IGN", false]], "sig_setmask (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_SETMASK", false]], "sig_unblock (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_UNBLOCK", false]], "sigabrt (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGABRT", false]], "sigalrm (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGALRM", false]], "sigbreak (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGBREAK", false]], "sigbus (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGBUS", false]], "sigchld (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCHLD", false]], "sigcld (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCLD", false]], "sigcont (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCONT", false]], "sigfpe (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGFPE", false]], "sighup (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGHUP", false]], "sigill (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGILL", false]], "sigint (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGINT", false]], "siginterrupt() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.siginterrupt", false]], "sigint\uff08c \u5de8\u96c6\uff09": [[23, "index-1", false], [23, "index-2", false]], "sigkill (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGKILL", false]], "sigmasks (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Sigmasks", false]], "signal": [[333, "module-signal", false]], "signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.signal", false]], "signalling\uff08\u4fe1\u865f\uff09": [[293, "index-37", false], [293, "index-38", false]], "signals (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Signals", false]], "signal\uff08\u8a0a\u865f\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false], [115, "index-2", false]], "signature (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Signature", false]], "signature (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.signature", false]], "signature() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.signature", false]], "sigpending() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigpending", false]], "sigpipe (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGPIPE", false]], "sigsegv (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGSEGV", false]], "sigstkflt (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGSTKFLT", false]], "sigterm (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGTERM", false]], "sigtimedwait() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigtimedwait", false]], "sigusr1 (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGUSR1", false]], "sigusr2 (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGUSR2", false]], "sigwait() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigwait", false]], "sigwaitinfo() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigwaitinfo", false]], "sigwinch (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGWINCH", false]], "simple": [[436, "index-0", false]], "simple (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.SIMPLE", false]], "simple mail transfer protocol\uff08\u7c21\u55ae\u90f5\u4ef6\u50b3\u8f38\u5354\u5b9a\uff09": [[335, "index-0", false]], "simplecookie (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.SimpleCookie", false]], "simplefilter() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.simplefilter", false]], "simplehandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.SimpleHandler", false]], "simplehttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.SimpleHTTPRequestHandler", false]], "simplenamespace (types \u4e2d\u7684\u985e\u5225)": [[385, "types.SimpleNamespace", false]], "simplequeue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.SimpleQueue", false]], "simplequeue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.SimpleQueue", false]], "simplexmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.SimpleXMLRPCRequestHandler", false]], "simplexmlrpcserver (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.SimpleXMLRPCServer", false]], "sin() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sin", false]], "sin() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sin", false]], "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09": [[87, "term-single-dispatch", true]], "singleaddressheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.SingleAddressHeader", false]], "singledispatch() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.singledispatch", false]], "singledispatchmethod (functools \u4e2d\u7684\u985e\u5225)": [[226, "functools.singledispatchmethod", false]], "singleton\uff08\u55ae\u4f8b\uff09": [[428, "index-20", false]], "sinh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sinh", false]], "sinh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sinh", false]], "sio_keepalive_vals (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_KEEPALIVE_VALS", false]], "sio_loopback_fast_path (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_LOOPBACK_FAST_PATH", false]], "sio_rcvall (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_RCVALL", false]], "site": [[334, "module-site", false]], "site \u547d\u4ee4\u5217\u9078\u9805": [[334, "cmdoption-site-user-base", false], [334, "cmdoption-site-user-site", false]], "site-packages": [[334, "index-1", false]], "site_maps() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.site_maps", false]], "sitecustomize": [[334, "module-sitecustomize", false], [438, "index-14", false], [438, "index-16", false]], "sixtofour (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.sixtofour", false]], "size (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.size", false]], "size (struct.struct \u7684\u5c6c\u6027)": [[347, "struct.Struct.size", false]], "size (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.size", false]], "size (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.size", false]], "size (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.size", false]], "size (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.size", false]], "size() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.size", false]], "size() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.size", false]], "size_diff (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.size_diff", false]], "size_max\uff08c \u5de8\u96c6\uff09": [[39, "index-5", false]], "sized (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Sized", false]], "sized (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Sized", false]], "sizeof() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.sizeof", false]], "sizeof_digit (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.sizeof_digit", false]], "skip (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.SKIP", false]], "skip() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.skip", false]], "skip() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skip", false]], "skip_if_broken_multiprocessing_synchronize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.skip_if_broken_multiprocessing_synchronize", false]], "skip_unless_bind_unix_socket() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.skip_unless_bind_unix_socket", false]], "skip_unless_symlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.skip_unless_symlink", false]], "skip_unless_xattr() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.skip_unless_xattr", false]], "skipif() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skipIf", false]], "skipinitialspace (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.skipinitialspace", false]], "skipped (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.skipped", false]], "skippedentity() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.skippedEntity", false]], "skiptest": [[388, "unittest.SkipTest", false]], "skiptest() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.skipTest", false]], "skipunless() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skipUnless", false]], "slash (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SLASH", false]], "slashequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SLASHEQUAL", false]], "slave() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.slave", false]], "sleep() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.sleep", false]], "sleep() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.sleep", false]], "sleeping_retry() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.sleeping_retry", false]], "slice (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Slice", false]], "slice (\u5167\u5efa\u985e\u5225)": [[225, "slice", false]], "slice\uff08\u5207\u7247\uff09": [[87, "term-slice", true], [191, "index-1", false], [344, "index-20", false], [344, "index-24", false], [428, "index-16", false], [428, "index-22", false], [428, "index-69", false], [428, "index-99", false], [430, "index-44", false], [436, "index-12", false]], "slicing\uff08\u5207\u7247\uff09": [[430, "index-44", false]], "slow_callback_duration (asyncio.loop \u7684\u5c6c\u6027)": [[126, "asyncio.loop.slow_callback_duration", false]], "smallest (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SMALLEST", false]], "smtp": [[335, "index-0", false]], "smtp (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.SMTP", false]], "smtp (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.SMTP", false]], "smtp_ssl (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.SMTP_SSL", false]], "smtpauthenticationerror": [[335, "smtplib.SMTPAuthenticationError", false]], "smtpconnecterror": [[335, "smtplib.SMTPConnectError", false]], "smtpdataerror": [[335, "smtplib.SMTPDataError", false]], "smtpexception": [[335, "smtplib.SMTPException", false]], "smtphandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SMTPHandler", false]], "smtpheloerror": [[335, "smtplib.SMTPHeloError", false]], "smtplib": [[335, "module-smtplib", false]], "smtpnotsupportederror": [[335, "smtplib.SMTPNotSupportedError", false]], "smtprecipientsrefused": [[335, "smtplib.SMTPRecipientsRefused", false]], "smtpresponseexception": [[335, "smtplib.SMTPResponseException", false]], "smtpsenderrefused": [[335, "smtplib.SMTPSenderRefused", false]], "smtpserverdisconnected": [[335, "smtplib.SMTPServerDisconnected", false]], "smtputf8 (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.SMTPUTF8", false]], "snapshot (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Snapshot", false]], "snd_alias (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_ALIAS", false]], "snd_async (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_ASYNC", false]], "snd_filename (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_FILENAME", false]], "snd_loop (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_LOOP", false]], "snd_memory (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_MEMORY", false]], "snd_nodefault (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NODEFAULT", false]], "snd_nostop (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NOSTOP", false]], "snd_nowait (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NOWAIT", false]], "snd_purge (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_PURGE", false]], "sndhdr": [[336, "module-sndhdr", false]], "sni_callback (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sni_callback", false]], "sniff() (csv.sniffer \u7684\u65b9\u6cd5)": [[175, "csv.Sniffer.sniff", false]], "sniffer (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.Sniffer", false]], "so (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SO", false]], "so_incoming_cpu (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SO_INCOMING_CPU", false]], "sock_accept() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_accept", false]], "sock_cloexec (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_CLOEXEC", false]], "sock_connect() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_connect", false]], "sock_dgram (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_DGRAM", false]], "sock_max_size (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SOCK_MAX_SIZE", false]], "sock_nonblock (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_NONBLOCK", false]], "sock_raw (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_RAW", false]], "sock_rdm (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_RDM", false]], "sock_recv() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recv", false]], "sock_recv_into() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recv_into", false]], "sock_recvfrom() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recvfrom", false]], "sock_recvfrom_into() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recvfrom_into", false]], "sock_sendall() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendall", false]], "sock_sendfile() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendfile", false]], "sock_sendto() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendto", false]], "sock_seqpacket (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_SEQPACKET", false]], "sock_stream (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_STREAM", false]], "socket": [[256, "index-1", false], [337, "index-0", false], [337, "module-socket", false]], "socket (socket \u4e2d\u7684\u985e\u5225)": [[337, "socket.socket", false]], "socket (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.socket", false]], "socket() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.socket", false]], "socket() (\u65bc socket \u6a21\u7d44)": [[328, "index-1", false]], "socket_type (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.socket_type", false]], "sockethandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SocketHandler", false]], "socketpair() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.socketpair", false]], "sockets (asyncio.server \u7684\u5c6c\u6027)": [[126, "asyncio.Server.sockets", false]], "socketserver": [[338, "module-socketserver", false]], "sockettype (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SocketType", false]], "soft keyword\uff08\u8edf\u95dc\u9375\u5b57\uff09": [[435, "index-14", false]], "soft_keyword (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SOFT_KEYWORD", false]], "softkwlist (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.softkwlist", false]], "soh (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SOH", false]], "sol_alg (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOL_ALG", false]], "sol_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOL_RDS", false]], "somaxconn (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOMAXCONN", false]], "sort() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.sort", false]], "sort() (list \u7684\u65b9\u6cd5)": [[344, "list.sort", false]], "sort_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.sort_stats", false]], "sortdict() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.sortdict", false]], "sorted()": [[225, "sorted", false]], "sorttestmethodsusing (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.sortTestMethodsUsing", false]], "source (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.source", false]], "source (pdb command)": [[297, "pdbcommand-source", false]], "source (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.source", false]], "source character set\uff08\u539f\u59cb\u5b57\u5143\u96c6\u5408\uff09": [[435, "index-5", false]], "source encoding declaration\uff08\u539f\u59cb\u7de8\u78bc\u5ba3\u544a\uff09": [[435, "index-5", false]], "source_date_epoch": [[163, "index-1", false], [311, "index-3", false], [311, "index-6", false], [311, "index-7", false], [480, "index-31", false], [483, "index-220", false], [483, "index-237", false]], "source_from_cache() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.source_from_cache", false]], "source_hash() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.source_hash", false]], "source_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.SOURCE_SUFFIXES", false]], "source_to_code() (importlib.abc.inspectloader \u7684\u975c\u614b\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.source_to_code", false]], "sourcefileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.SourceFileLoader", false]], "sourcehook() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.sourcehook", false]], "sourcelessfileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.SourcelessFileLoader", false]], "sourceloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.SourceLoader", false]], "sp (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SP", false]], "space": [[345, "index-4", false]], "space\uff08\u7a7a\u767d\uff09": [[344, "index-37", false], [344, "index-47", false], [435, "index-8", false]], "span() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.span", false]], "sparse (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.sparse", false]], "spawn() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.spawn", false]], "spawn_python() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.spawn_python", false]], "spawnl() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnl", false]], "spawnle() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnle", false]], "spawnlp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnlp", false]], "spawnlpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnlpe", false]], "spawnv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnv", false]], "spawnve() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnve", false]], "spawnvp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnvp", false]], "spawnvpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnvpe", false]], "spec_from_file_location() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.spec_from_file_location", false]], "spec_from_loader() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.spec_from_loader", false]], "special": [[87, "index-31", false], [428, "index-5", false]], "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09": [[87, "term-special-method", true]], "specialfileerror": [[358, "tarfile.SpecialFileError", false]], "specified_attributes (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.specified_attributes", false]], "speed() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.speed", false]], "speed() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.speed", false]], "spinbox (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Spinbox", false]], "splice() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.splice", false]], "splice_f_more (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_MORE", false]], "splice_f_move (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_MOVE", false]], "splice_f_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_NONBLOCK", false]], "split() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.split", false]], "split() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.split", false]], "split() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.split", false]], "split() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.split", false]], "split() (str \u7684\u65b9\u6cd5)": [[344, "str.split", false]], "split() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.split", false]], "split() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.split", false]], "split() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.split", false]], "splitdrive() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitdrive", false]], "splitext() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitext", false]], "splitlines() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.splitlines", false]], "splitlines() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.splitlines", false]], "splitlines() (str \u7684\u65b9\u6cd5)": [[344, "str.splitlines", false]], "splitresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.SplitResult", false]], "splitresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.SplitResultBytes", false]], "splitroot() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitroot", false]], "spooledtemporaryfile (tempfile \u4e2d\u7684\u985e\u5225)": [[360, "tempfile.SpooledTemporaryFile", false]], "sprintf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-35", false], [344, "index-45", false]], "spwd": [[339, "module-spwd", false]], "sqlite3": [[340, "module-sqlite3", false]], "sqlite_dbconfig_defensive (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DEFENSIVE", false]], "sqlite_dbconfig_dqs_ddl (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DQS_DDL", false]], "sqlite_dbconfig_dqs_dml (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DQS_DML", false]], "sqlite_dbconfig_enable_fkey (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_FKEY", false]], "sqlite_dbconfig_enable_fts3_tokenizer (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER", false]], "sqlite_dbconfig_enable_load_extension (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION", false]], "sqlite_dbconfig_enable_qpsg (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_QPSG", false]], "sqlite_dbconfig_enable_trigger (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_TRIGGER", false]], "sqlite_dbconfig_enable_view (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_VIEW", false]], "sqlite_dbconfig_legacy_alter_table (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_LEGACY_ALTER_TABLE", false]], "sqlite_dbconfig_legacy_file_format (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_LEGACY_FILE_FORMAT", false]], "sqlite_dbconfig_no_ckpt_on_close (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE", false]], "sqlite_dbconfig_reset_database (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_RESET_DATABASE", false]], "sqlite_dbconfig_trigger_eqp (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_TRIGGER_EQP", false]], "sqlite_dbconfig_trusted_schema (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_TRUSTED_SCHEMA", false]], "sqlite_dbconfig_writable_schema (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_WRITABLE_SCHEMA", false]], "sqlite_deny (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DENY", false]], "sqlite_errorcode (sqlite3.error \u7684\u5c6c\u6027)": [[340, "sqlite3.Error.sqlite_errorcode", false]], "sqlite_errorname (sqlite3.error \u7684\u5c6c\u6027)": [[340, "sqlite3.Error.sqlite_errorname", false]], "sqlite_ignore (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_IGNORE", false]], "sqlite_ok (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_OK", false]], "sqlite_version (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.sqlite_version", false]], "sqlite_version_info (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.sqlite_version_info", false]], "sqrt() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.sqrt", false]], "sqrt() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.sqrt", false]], "sqrt() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sqrt", false]], "sqrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sqrt", false]], "ssizeargfunc (c type)": [[63, "c.ssizeargfunc", false]], "ssizeobjargproc (c type)": [[63, "c.ssizeobjargproc", false]], "ssl": [[341, "index-1", false], [341, "module-ssl", false]], "ssl_version (ftplib.ftp_tls \u7684\u5c6c\u6027)": [[223, "ftplib.FTP_TLS.ssl_version", false]], "sslcertverificationerror": [[341, "ssl.SSLCertVerificationError", false]], "sslcontext (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLContext", false]], "ssleoferror": [[341, "ssl.SSLEOFError", false]], "sslerror": [[341, "ssl.SSLError", false]], "sslerrornumber (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLErrorNumber", false]], "sslkeylogfile": [[341, "index-32", false], [341, "index-33", false]], "sslobject (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLObject", false]], "sslobject_class (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sslobject_class", false]], "sslsession (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLSession", false]], "sslsocket (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLSocket", false]], "sslsocket_class (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sslsocket_class", false]], "sslsyscallerror": [[341, "ssl.SSLSyscallError", false]], "sslv3 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.SSLv3", false]], "sslwantreaderror": [[341, "ssl.SSLWantReadError", false]], "sslwantwriteerror": [[341, "ssl.SSLWantWriteError", false]], "sslzeroreturnerror": [[341, "ssl.SSLZeroReturnError", false]], "st() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.st", false]], "st_atime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_atime", false]], "st_atime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_ATIME", false]], "st_atime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_atime_ns", false]], "st_birthtime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_birthtime", false]], "st_birthtime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_birthtime_ns", false]], "st_blksize (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_blksize", false]], "st_blocks (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_blocks", false]], "st_creator (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_creator", false]], "st_ctime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ctime", false]], "st_ctime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_CTIME", false]], "st_ctime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ctime_ns", false]], "st_dev (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_dev", false]], "st_dev (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_DEV", false]], "st_file_attributes (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_file_attributes", false]], "st_flags (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_flags", false]], "st_fstype (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_fstype", false]], "st_gen (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_gen", false]], "st_gid (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_gid", false]], "st_gid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_GID", false]], "st_ino (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ino", false]], "st_ino (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_INO", false]], "st_mode (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mode", false]], "st_mode (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_MODE", false]], "st_mtime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mtime", false]], "st_mtime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_MTIME", false]], "st_mtime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mtime_ns", false]], "st_nlink (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_nlink", false]], "st_nlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_NLINK", false]], "st_rdev (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_rdev", false]], "st_reparse_tag (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_reparse_tag", false]], "st_rsize (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_rsize", false]], "st_size (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_size", false]], "st_size (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_SIZE", false]], "st_type (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_type", false]], "st_uid (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_uid", false]], "st_uid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_UID", false]], "stack (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.stack", false]], "stack viewer\uff08\u5806\u758a\u6aa2\u8996\u5668\uff09": [[247, "index-3", false]], "stack() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.stack", false]], "stack_effect() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.stack_effect", false]], "stack_size() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.stack_size", false]], "stack_size() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.stack_size", false]], "stackable\uff08\u53ef\u5806\u758a\uff09": [[158, "index-0", false]], "stacksummary (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.StackSummary", false]], "stack\uff08\u5806\u758a\uff09": [[428, "index-66", false]], "stamp() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.stamp", false]], "standard": [[436, "index-3", false]], "standard c\uff08\u6a19\u6e96 c\uff09": [[435, "index-23", false]], "standard input\uff08\u6a19\u6e96\u8f38\u5165\uff09": [[437, "index-4", false]], "standard_b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.standard_b64decode", false]], "standard_b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.standard_b64encode", false]], "standarderror (2to3 fixer)": [[112, "to3fixer-standarderror", false]], "standend() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.standend", false]], "standout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.standout", false]], "star (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STAR", false]], "starequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STAREQUAL", false]], "starmap() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.starmap", false]], "starmap() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.starmap", false]], "starmap_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.starmap_async", false]], "starred (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Starred", false]], "start (range \u7684\u5c6c\u6027)": [[344, "range.start", false]], "start (slice \u7684\u5c6c\u6027)": [[225, "slice.start", false]], "start (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.start", false]], "start \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "start() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.start", false]], "start() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.start", false]], "start() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.start", false]], "start() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.start", false]], "start() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.start", false]], "start() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.start", false]], "start() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.start", false]], "start() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.start", false]], "start_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.start_color", false]], "start_component() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.start_component", false]], "start_new_thread() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.start_new_thread", false]], "start_ns() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.start_ns", false]], "start_server() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.start_server", false]], "start_serving() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.start_serving", false]], "start_threads() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.start_threads", false]], "start_tls() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.start_tls", false]], "start_tls() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.start_tls", false]], "start_unix_server() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.start_unix_server", false]], "startcdata() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.startCDATA", false]], "startcdatasectionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartCdataSectionHandler", false]], "startdoctypedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartDoctypeDeclHandler", false]], "startdocument() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startDocument", false]], "startdtd() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.startDTD", false]], "startelement() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startElement", false]], "startelementhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartElementHandler", false]], "startelementns() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startElementNS", false]], "startf_useshowwindow (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STARTF_USESHOWWINDOW", false]], "startf_usestdhandles (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STARTF_USESTDHANDLES", false]], "startfile() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.startfile", false]], "startnamespacedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartNamespaceDeclHandler", false]], "startprefixmapping() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startPrefixMapping", false]], "startresponse (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.StartResponse", false]], "startswith() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.startswith", false]], "startswith() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.startswith", false]], "startswith() (str \u7684\u65b9\u6cd5)": [[344, "str.startswith", false]], "starttest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.startTest", false]], "starttestrun() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.startTestRun", false]], "starttls() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.starttls", false]], "starttls() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.starttls", false]], "starttls() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.starttls", false]], "startupinfo (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.STARTUPINFO", false]], "start\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "stat": [[293, "index-30", false], [342, "module-stat", false]], "stat() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.stat", false]], "stat() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.stat", false]], "stat() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.stat", false]], "stat() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.stat", false]], "stat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.stat", false]], "stat_result (os \u4e2d\u7684\u985e\u5225)": [[293, "os.stat_result", false]], "state() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.state", false]], "statement grouping\uff08\u9673\u8ff0\u5f0f\u7fa4\u7d44\uff09": [[435, "index-8", false]], "statement\uff08\u9673\u8ff0\u5f0f\uff09": [[87, "term-statement", true], [213, "index-0", false], [213, "index-1", false], [213, "index-4", false], [225, "index-13", false], [334, "index-2", false], [344, "index-1", false], [344, "index-24", false], [344, "index-52", false], [427, "index-0", false], [427, "index-13", false], [427, "index-15", false], [427, "index-16", true], [427, "index-18", true], [427, "index-28", false], [427, "index-3", true], [427, "index-4", false], [427, "index-4", true], [427, "index-42", false], [427, "index-48", false], [427, "index-5", false], [427, "index-50", false], [427, "index-51", false], [427, "index-6", false], [427, "index-6", true], [427, "index-7", false], [427, "index-9", true], [428, "index-106", false], [428, "index-22", false], [428, "index-44", false], [428, "index-67", false], [428, "index-74", false], [436, "index-0", false], [436, "index-1", false], [436, "index-14", false], [436, "index-15", false], [436, "index-18", true], [436, "index-20", false], [436, "index-21", true], [436, "index-22", false], [436, "index-24", true], [436, "index-26", false], [436, "index-27", true], [436, "index-30", false], [436, "index-30", true], [436, "index-33", false], [436, "index-33", true], [436, "index-34", true], [436, "index-4", false], [436, "index-40", false], [436, "index-43", true], [436, "index-45", false], [436, "index-47", false], [441, "index-0", false]], "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09": [[87, "term-static-type-checker", true]], "static_order() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.static_order", false]], "staticmethod": [[58, "index-1", false]], "staticmethod()": [[225, "staticmethod", false]], "statistic (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Statistic", false]], "statisticdiff (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.StatisticDiff", false]], "statistics": [[343, "module-statistics", false]], "statistics() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.statistics", false]], "statisticserror": [[343, "statistics.StatisticsError", false]], "stats (pstats \u4e2d\u7684\u985e\u5225)": [[308, "pstats.Stats", false]], "status (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.status", false]], "status (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.status", false]], "status() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.status", false]], "statvfs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.statvfs", false]], "std_error_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_ERROR_HANDLE", false]], "std_input_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_INPUT_HANDLE", false]], "std_output_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_OUTPUT_HANDLE", false]], "stdbuttonbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.StdButtonBox", false]], "stderr (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stderr", false]], "stderr (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.stderr", false]], "stderr (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.stderr", false]], "stderr (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stderr", false]], "stderr (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.stderr", false]], "stderr (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stderr", false]], "stderr \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stderr\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stdev (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.stdev", false]], "stdev() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.stdev", false]], "stdin": [[33, "index-16", false]], "stdin (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stdin", false]], "stdin (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stdin", false]], "stdin (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdin", false]], "stdin \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stdin\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stdio": [[428, "index-55", false]], "stdlib_module_names (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdlib_module_names", false]], "stdout": [[33, "index-16", false]], "stdout (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stdout", false]], "stdout (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.stdout", false]], "stdout (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.stdout", false]], "stdout (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stdout", false]], "stdout (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.stdout", false]], "stdout (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STDOUT", false]], "stdout (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdout", false]], "stdout \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stdout\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stem (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.stem", false]], "step (pdb command)": [[297, "pdbcommand-step", false]], "step (range \u7684\u5c6c\u6027)": [[344, "range.step", false]], "step (slice \u7684\u5c6c\u6027)": [[225, "slice.step", false]], "step \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "step() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.step", false]], "step\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "stereocontrols() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.stereocontrols", false]], "stls() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.stls", false]], "stop (range \u7684\u5c6c\u6027)": [[344, "range.stop", false]], "stop (slice \u7684\u5c6c\u6027)": [[225, "slice.stop", false]], "stop \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "stop() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.stop", false]], "stop() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.stop", false]], "stop() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.stop", false]], "stop() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stop", false]], "stop() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.stop", false]], "stop_here() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.stop_here", false]], "stop_iteration (monitoring event)": [[353, "monitoring-event-STOP_ITERATION", false]], "stopasynciteration": [[213, "StopAsyncIteration", false], [430, "index-36", false]], "stopiteration": [[213, "StopIteration", false], [430, "index-32", false], [436, "index-26", false]], "stoplistening() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.stopListening", false]], "stoptest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stopTest", false]], "stoptestrun() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stopTestRun", false]], "stop\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "storbinary() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.storbinary", false]], "store (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Store", false]], "store() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.store", false]], "store_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.STORE_ACTIONS", false]], "store_attr (opcode)": [[191, "opcode-STORE_ATTR", false]], "store_deref (opcode)": [[191, "opcode-STORE_DEREF", false]], "store_fast (opcode)": [[191, "opcode-STORE_FAST", false]], "store_global (opcode)": [[191, "opcode-STORE_GLOBAL", false]], "store_name (opcode)": [[191, "opcode-STORE_NAME", false]], "store_slice (opcode)": [[191, "opcode-STORE_SLICE", false]], "store_subscr (opcode)": [[191, "opcode-STORE_SUBSCR", false]], "storlines() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.storlines", false]], "str (\u5167\u5efa\u985e\u5225)": [[344, "str", false]], "str() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.str", false]], "str() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[225, "index-11", false]], "str.splitlines \u65b9\u6cd5": [[344, "index-34", false]], "str_digits_check_threshold (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.str_digits_check_threshold", false]], "strcoll() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.strcoll", false]], "streamerror": [[358, "tarfile.StreamError", false]], "streamhandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.StreamHandler", false]], "streamreader (asyncio \u4e2d\u7684\u985e\u5225)": [[136, "asyncio.StreamReader", false]], "streamreader (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamReader", false]], "streamreader (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.streamreader", false]], "streamreaderwriter (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamReaderWriter", false]], "streamrecoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamRecoder", false]], "streamrequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.StreamRequestHandler", false]], "streams\uff08\u4e32\u6d41\uff09": [[158, "index-0", false]], "streamwriter (asyncio \u4e2d\u7684\u985e\u5225)": [[136, "asyncio.StreamWriter", false]], "streamwriter (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamWriter", false]], "streamwriter (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.streamwriter", false]], "strenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.StrEnum", false]], "strerror (oserror \u7684\u5c6c\u6027)": [[213, "OSError.strerror", false]], "strerror() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.strerror", false]], "strerror\uff08c \u51fd\u5f0f\uff09": [[23, "index-0", false]], "strftime() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.strftime", false]], "strftime() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.strftime", false]], "strftime() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.strftime", false]], "strftime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.strftime", false]], "strict": [[158, "index-1", false]], "strict (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.strict", false]], "strict (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.STRICT", false]], "strict (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.strict", false]], "strict_domain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_domain", false]], "strict_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.strict_errors", false]], "strict_ns_domain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_domain", false]], "strict_ns_set_initial_dollar (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_set_initial_dollar", false]], "strict_ns_set_path (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_set_path", false]], "strict_ns_unverifiable (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_unverifiable", false]], "strict_rfc2965_unverifiable (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable", false]], "strided (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDED", false]], "strided_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDED_RO", false]], "strides (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDES", false]], "strides (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.strides", false]], "string": [[345, "module-string", false]], "string (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.string", false]], "string (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STRING", false]], "string literal\uff08\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-17", false], [435, "index-18", false]], "string_at() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.string_at", false]], "stringio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.StringIO", false]], "stringprep": [[346, "module-stringprep", false]], "strings\uff08\u5b57\u4e32\uff09, documentation\uff08\u8aaa\u660e\u6587\u4ef6\uff09": [[441, "index-2", false], [441, "index-5", false]], "string\uff08\u5b57\u4e32\uff09": [[49, "index-2", false], [75, "index-3", false], [225, "index-11", false], [225, "index-4", false], [344, "index-28", false], [344, "index-30", false], [344, "index-32", false], [344, "index-35", false], [428, "index-18", false], [428, "index-76", false], [428, "index-78", false], [430, "index-42", false], [430, "index-43", false], [430, "index-45", false], [435, "index-25", false], [436, "index-3", false]], "strip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.strip", false]], "strip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.strip", false]], "strip() (str \u7684\u65b9\u6cd5)": [[344, "str.strip", false]], "strip_dirs() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.strip_dirs", false]], "stripspaces (curses.textpad.textbox \u7684\u5c6c\u6027)": [[177, "curses.textpad.Textbox.stripspaces", false]], "strong reference\uff08\u5f37\u53c3\u7167\uff09": [[87, "term-strong-reference", true]], "strptime() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.strptime", false]], "strptime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.strptime", false]], "strsignal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.strsignal", false]], "struct": [[337, "index-14", false], [347, "module-struct", false]], "struct (struct \u4e2d\u7684\u985e\u5225)": [[347, "struct.Struct", false]], "struct_time (time \u4e2d\u7684\u985e\u5225)": [[366, "time.struct_time", false]], "structmember.h": [[58, "index-4", false]], "structure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Structure", false]], "structures\uff08\u7d50\u69cb\uff09": [[347, "index-0", false]], "strxfrm() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.strxfrm", false]], "str\uff08\u5167\u5efa\u985e\u5225\uff09": [[344, "index-28", false], [344, "index-30", false], [344, "index-31", false]], "stx (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.STX", false]], "style (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Style", false]], "style\uff08\u98a8\u683c\uff09": [[441, "index-9", false]], "sub (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Sub", false]], "sub (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SUB", false]], "sub() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.sub", false]], "sub() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.sub", false]], "sub() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.sub", false]], "subclassing\uff08\u5b50\u985e\u5225\u5316\uff09": [[428, "index-72", false]], "subdirs (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.subdirs", false]], "subelement() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.SubElement", false]], "subgroup() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.subgroup", false]], "submit() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.submit", false]], "submodule_search_locations (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.submodule_search_locations", false]], "subn() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.subn", false]], "subn() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.subn", false]], "subnet_of() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.subnet_of", false]], "subnet_of() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.subnet_of", false]], "subnets() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.subnets", false]], "subnets() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.subnets", false]], "subnormal (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Subnormal", false]], "suboffsets (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.suboffsets", false]], "subpad() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.subpad", false]], "subprocess": [[348, "module-subprocess", false]], "subprocess \u6a21\u7d44": [[348, "index-1", false]], "subprocess_exec() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.subprocess_exec", false]], "subprocess_shell() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.subprocess_shell", false]], "subprocesserror": [[348, "subprocess.SubprocessError", false]], "subprocessprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.SubprocessProtocol", false]], "subprocesstransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.SubprocessTransport", false]], "subscribe() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.subscribe", false]], "subscript (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Subscript", false]], "subscription\uff08\u4e0b\u6a19\uff09": [[428, "index-15", false], [428, "index-22", false], [428, "index-30", false], [430, "index-41", false], [436, "index-9", false]], "subscript\uff08\u4e0b\u6a19\uff09": [[344, "index-20", false], [344, "index-24", false]], "subsequent_indent (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.subsequent_indent", false]], "substitute() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.substitute", false]], "subtest() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.subTest", false]], "subtract() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.subtract", false]], "subtract() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.subtract", false]], "subtraction\uff08\u6e1b\uff09": [[430, "index-70", false]], "subtype (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.subtype", false]], "subwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.subwin", false]], "successful() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.successful", false]], "suffix (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.suffix", false]], "suffix_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.suffix_map", false]], "suffix_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.suffix_map", false]], "suffixes (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.suffixes", false]], "suiteclass (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.suiteClass", false]], "suite\uff08\u5957\u88dd\uff09": [[427, "index-1", false]], "sum()": [[225, "sum", false]], "sum_list()": [[35, "index-8", false]], "sum_sequence()": [[35, "index-14", false], [35, "index-9", false]], "summarize() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.summarize", false]], "summarize_address_range() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.summarize_address_range", false]], "sumprod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sumprod", false]], "sunau": [[349, "module-sunau", false]], "sunday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SUNDAY", false]], "super (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.super", false]], "super (\u5167\u5efa\u985e\u5225)": [[225, "super", false]], "supernet() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.supernet", false]], "supernet() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.supernet", false]], "supernet_of() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.supernet_of", false]], "supernet_of() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.supernet_of", false]], "supports_bytes_environ (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_bytes_environ", false]], "supports_dir_fd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_dir_fd", false]], "supports_effective_ids (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_effective_ids", false]], "supports_fd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_fd", false]], "supports_follow_symlinks (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_follow_symlinks", false]], "supports_unicode_filenames (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.supports_unicode_filenames", false]], "supportsabs (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsAbs", false]], "supportsbytes (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsBytes", false]], "supportscomplex (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsComplex", false]], "supportsfloat (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsFloat", false]], "supportsindex (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsIndex", false]], "supportsint (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsInt", false]], "supportsround (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsRound", false]], "suppress() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.suppress", false]], "suppresscrashreport (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.SuppressCrashReport", false]], "surrogateescape": [[158, "index-1", false]], "surrogatepass": [[158, "index-4", false]], "sw_hide (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.SW_HIDE", false]], "swap (opcode)": [[191, "opcode-SWAP", false]], "swap_attr() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.swap_attr", false]], "swap_item() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.swap_item", false]], "swapcase() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.swapcase", false]], "swapcase() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.swapcase", false]], "swapcase() (str \u7684\u65b9\u6cd5)": [[344, "str.swapcase", false]], "symbol (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Symbol", false]], "symboltable (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.SymbolTable", false]], "symlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.symlink", false]], "symlink_to() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.symlink_to", false]], "symmetric_difference() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.symmetric_difference", false]], "symmetric_difference_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.symmetric_difference_update", false]], "symtable": [[351, "module-symtable", false]], "symtable() (\u65bc symtable \u6a21\u7d44\u4e2d)": [[351, "symtable.symtable", false]], "symtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.SYMTYPE", false]], "syn (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SYN", false]], "sync() (dbm.dumb.dumbdbm \u7684\u65b9\u6cd5)": [[184, "dbm.dumb.dumbdbm.sync", false]], "sync() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.sync", false]], "sync() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.sync", false]], "sync() (shelve.shelf \u7684\u65b9\u6cd5)": [[330, "shelve.Shelf.sync", false]], "sync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sync", false]], "syncdown() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncdown", false]], "synchronized() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.synchronized", false]], "syncmanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.SyncManager", false]], "syncok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncok", false]], "syncup() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncup", false]], "syntaxerr": [[410, "xml.dom.SyntaxErr", false]], "syntaxerror": [[213, "SyntaxError", false]], "syntaxwarning": [[213, "SyntaxWarning", false]], "syntax\uff08\u8a9e\u6cd5\uff09": [[434, "index-0", false]], "sys": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [225, "index-8", false], [352, "module-sys", false], [427, "index-11", false], [437, "index-2", false], [450, "index-4", false]], "sys.exc_info": [[428, "index-66", false]], "sys.exception": [[428, "index-66", false]], "sys.last_traceback": [[428, "index-66", false]], "sys.meta_path": [[432, "index-10", false]], "sys.modules": [[432, "index-7", false]], "sys.monitoring": [[353, "module-sys.monitoring", false]], "sys.path": [[432, "index-17", false]], "sys.path_hooks": [[432, "index-17", false]], "sys.path_importer_cache": [[432, "index-17", false]], "sys.stderr": [[428, "index-55", false]], "sys.stdin": [[428, "index-55", false]], "sys.stdout": [[428, "index-55", false]], "sys_exc (2to3 fixer)": [[112, "to3fixer-sys_exc", false]], "sys_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.sys_version", false]], "sysconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sysconf", false]], "sysconf_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sysconf_names", false]], "sysconfig": [[355, "module-sysconfig", false]], "syslog": [[356, "module-syslog", false]], "syslog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.syslog", false]], "sysloghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SysLogHandler", false]], "system() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.system", false]], "system() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.system", false]], "system_alias() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.system_alias", false]], "system_must_validate_cert() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.system_must_validate_cert", false]], "systemerror": [[213, "SystemError", false]], "systemerror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[45, "index-4", false], [45, "index-5", false]], "systemexit": [[213, "SystemExit", false]], "systemexit\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[429, "index-17", false]], "systemid (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.systemId", false]], "systemrandom (random \u4e2d\u7684\u985e\u5225)": [[318, "random.SystemRandom", false]], "systemrandom (secrets \u4e2d\u7684\u985e\u5225)": [[326, "secrets.SystemRandom", false]], "systemroot": [[348, "index-4", false]], "t_bool\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_byte\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_char\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_double\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_float\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.T_FMT", false]], "t_fmt_ampm (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.T_FMT_AMPM", false]], "t_int\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_longlong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_long\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_none (c macro)": [[58, "c.T_NONE", false]], "t_object (c macro)": [[58, "c.T_OBJECT", false]], "t_object_ex\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_pyssizet\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_short\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_string_inplace\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_string\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ubyte\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_uint\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ulongulong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ulong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ushort\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "tab (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.TAB", false]], "tab() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.tab", false]], "taberror": [[213, "TabError", false]], "tabnanny": [[357, "module-tabnanny", false]], "tabs() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.tabs", false]], "tabsize (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.tabsize", false]], "tabular\uff08\u8868\u683c\uff09": [[175, "index-0", false]], "tab\uff08\u5b9a\u4f4d\u5b57\u5143\uff09": [[435, "index-8", false]], "tag (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.tag", false]], "tag_bind() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_bind", false]], "tag_configure() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_configure", false]], "tag_has() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_has", false]], "tagname (xml.dom.element \u7684\u5c6c\u6027)": [[410, "xml.dom.Element.tagName", false]], "tail (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.tail", false]], "take_snapshot() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.take_snapshot", false]], "takewhile() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.takewhile", false]], "tan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tan", false]], "tan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tan", false]], "tanh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tanh", false]], "tanh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tanh", false]], "tar_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.tar_filter", false]], "tarerror": [[358, "tarfile.TarError", false]], "tarfile": [[358, "module-tarfile", false]], "tarfile (tarfile \u4e2d\u7684\u985e\u5225)": [[358, "tarfile.TarFile", false]], "tarfile \u547d\u4ee4\u5217\u9078\u9805": [[358, "cmdoption-tarfile-c", false], [358, "cmdoption-tarfile-create", false], [358, "cmdoption-tarfile-e", false], [358, "cmdoption-tarfile-extract", false], [358, "cmdoption-tarfile-filter", false], [358, "cmdoption-tarfile-l", false], [358, "cmdoption-tarfile-list", false], [358, "cmdoption-tarfile-t", false], [358, "cmdoption-tarfile-test", false], [358, "cmdoption-tarfile-v", false]], "target": [[427, "index-6", false], [436, "index-21", false], [436, "index-31", false], [436, "index-5", false], [436, "index-6", false]], "target (xml.dom.processinginstruction \u7684\u5c6c\u6027)": [[410, "xml.dom.ProcessingInstruction.target", false]], "tarinfo (tarfile \u4e2d\u7684\u985e\u5225)": [[358, "tarfile.TarInfo", false]], "tarinfo (tarfile.filtererror \u7684\u5c6c\u6027)": [[358, "tarfile.FilterError.tarinfo", false]], "task (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.Task", false]], "task_done() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.task_done", false]], "task_done() (multiprocessing.joinablequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.JoinableQueue.task_done", false]], "task_done() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.task_done", false]], "taskgroup (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.TaskGroup", false]], "tau (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tau", false]], "tau (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tau", false]], "tb_frame (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_frame", false]], "tb_frame \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_lasti (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_lasti", false]], "tb_lasti \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_lineno (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_lineno", false]], "tb_lineno \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_locals (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.tb_locals", false]], "tb_next (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_next", false]], "tb_next \uff08traceback \u5c6c\u6027\uff09": [[428, "index-68", false]], "tbreak (pdb command)": [[297, "pdbcommand-tbreak", false]], "tcdrain() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcdrain", false]], "tcflow() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcflow", false]], "tcflush() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcflush", false]], "tcgetattr() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcgetattr", false]], "tcgetpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.tcgetpgrp", false]], "tcgetwinsize() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcgetwinsize", false]], "tcl() (\u65bc tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.Tcl", false]], "tcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.TCPServer", false]], "tcsadrain (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSADRAIN", false]], "tcsaflush (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSAFLUSH", false]], "tcsanow (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSANOW", false]], "tcsendbreak() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsendbreak", false]], "tcsetattr() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsetattr", false]], "tcsetpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.tcsetpgrp", false]], "tcsetwinsize() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsetwinsize", false]], "teardown() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.tearDown", false]], "teardownclass() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.tearDownClass", false]], "tee() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.tee", false]], "teleport() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.teleport", false]], "tell() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.tell", false]], "tell() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.tell", false]], "tell() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.tell", false]], "tell() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.tell", false]], "tell() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.tell", false]], "tell() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.tell", false]], "tell() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.tell", false]], "tell() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.tell", false]], "tell() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.tell", false]], "tell() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.tell", false]], "tell() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.tell", false]], "telnet": [[359, "index-0", false]], "telnet (telnetlib \u4e2d\u7684\u985e\u5225)": [[359, "telnetlib.Telnet", false]], "telnetlib": [[359, "module-telnetlib", false]], "temp": [[360, "index-8", false], [461, "index-7", false]], "temp_cwd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_cwd", false]], "temp_dir() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_dir", false]], "temp_umask() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_umask", false]], "tempdir (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.tempdir", false]], "tempfile": [[360, "module-tempfile", false]], "template (pipes \u4e2d\u7684\u985e\u5225)": [[301, "pipes.Template", false]], "template (string \u4e2d\u7684\u985e\u5225)": [[345, "string.Template", false]], "template (string.template \u7684\u5c6c\u6027)": [[345, "string.Template.template", false]], "temporary (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.temporary", false]], "temporarydirectory (tempfile \u4e2d\u7684\u985e\u5225)": [[360, "tempfile.TemporaryDirectory", false]], "temporaryfile() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.TemporaryFile", false]], "temporary\uff08\u81e8\u6642\uff09": [[360, "index-0", false]], "teredo (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.teredo", false]], "term": [[177, "index-1", false], [177, "index-2", false]], "termattrs() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.termattrs", false]], "terminal_size (os \u4e2d\u7684\u985e\u5225)": [[293, "os.terminal_size", false]], "terminate() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.terminate", false]], "terminate() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.terminate", false]], "terminate() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.terminate", false]], "terminate() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.terminate", false]], "terminate() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.terminate", false]], "termination model\uff08\u7d42\u6b62\u6a21\u578b\uff09": [[429, "index-16", false]], "terminator (logging.streamhandler \u7684\u5c6c\u6027)": [[269, "logging.StreamHandler.terminator", false]], "termios": [[361, "module-termios", false]], "termname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.termname", false]], "ternaryfunc (c type)": [[63, "c.ternaryfunc", false]], "ternary\uff08\u4e09\u5143\uff09": [[430, "index-88", false]], "test": [[362, "module-test", false]], "test (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.test", false]], "test (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.test", false]], "test() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.test", false]], "test.regrtest": [[362, "module-test.regrtest", false]], "test.support": [[362, "module-test.support", false]], "test.support.bytecode_helper": [[362, "module-test.support.bytecode_helper", false]], "test.support.import_helper": [[362, "module-test.support.import_helper", false]], "test.support.os_helper": [[362, "module-test.support.os_helper", false]], "test.support.script_helper": [[362, "module-test.support.script_helper", false]], "test.support.socket_helper": [[362, "module-test.support.socket_helper", false]], "test.support.threading_helper": [[362, "module-test.support.threading_helper", false]], "test.support.warnings_helper": [[362, "module-test.support.warnings_helper", false]], "test_data_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_DATA_DIR", false]], "test_home_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_HOME_DIR", false]], "test_http_url (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_HTTP_URL", false]], "test_support_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_SUPPORT_DIR", false]], "testcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestCase", false]], "testfailed": [[362, "test.support.TestFailed", false]], "testfile() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testfile", false]], "testfn (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN", false]], "testfn_nonascii (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_NONASCII", false]], "testfn_undecodable (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNDECODABLE", false]], "testfn_unencodable (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNENCODABLE", false]], "testfn_unicode (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNICODE", false]], "testloader (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestLoader", false]], "testmethodprefix (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.testMethodPrefix", false]], "testmod() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testmod", false]], "testnamepatterns (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.testNamePatterns", false]], "testresult (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestResult", false]], "tests (\u65bc imghdr \u6a21\u7d44\u4e2d)": [[249, "imghdr.tests", false]], "tests (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.tests", false]], "testsource() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testsource", false]], "testsrun (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.testsRun", false]], "testsuite (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestSuite", false]], "testzip() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.testzip", false]], "test\uff08\u6e2c\u8a66\uff09": [[430, "index-80", false], [430, "index-81", false]], "text (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.text", false]], "text (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.text", false]], "text (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Text", false]], "text (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.text", false]], "text (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.text", false]], "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09": [[87, "term-text-encoding", true]], "text file\uff08\u6587\u5b57\u6a94\u6848\uff09": [[87, "term-text-file", true]], "text mode\uff08\u6587\u5b57\u6a21\u5f0f\uff09": [[225, "index-8", false]], "text sequence type\uff08\u6587\u5b57\u5e8f\u5217\u578b\u5225\uff09": [[344, "index-28", false]], "text() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.text", false]], "text() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.text", false]], "text_encoding() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.text_encoding", false]], "text_factory (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.text_factory", false]], "textbox (curses.textpad \u4e2d\u7684\u985e\u5225)": [[177, "curses.textpad.Textbox", false]], "textcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.TextCalendar", false]], "textdomain() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.textdomain", false]], "textdomain() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.textdomain", false]], "textinput() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.textinput", false]], "textio (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TextIO", false]], "textiobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.TextIOBase", false]], "textiowrapper (io \u4e2d\u7684\u985e\u5225)": [[258, "io.TextIOWrapper", false]], "texttestresult (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TextTestResult", false]], "texttestrunner (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TextTestRunner", false]], "textwrap": [[364, "module-textwrap", false]], "textwrapper (textwrap \u4e2d\u7684\u985e\u5225)": [[364, "textwrap.TextWrapper", false]], "theme_create() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_create", false]], "theme_names() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_names", false]], "theme_settings() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_settings", false]], "theme_use() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_use", false]], "thousep (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.THOUSEP", false]], "thread (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Thread", false]], "thread() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.thread", false]], "thread_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.thread_info", false]], "thread_time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.thread_time", false]], "thread_time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.thread_time_ns", false]], "threadedchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.ThreadedChildWatcher", false]], "threading": [[365, "module-threading", false]], "threading_cleanup() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.threading_cleanup", false]], "threading_setup() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.threading_setup", false]], "threadinghttpserver (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.ThreadingHTTPServer", false]], "threadingmixin (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingMixIn", false]], "threadingtcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingTCPServer", false]], "threadingudpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUDPServer", false]], "threadingunixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUnixDatagramServer", false]], "threadingunixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUnixStreamServer", false]], "threadpool (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.ThreadPool", false]], "threadpoolexecutor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.ThreadPoolExecutor", false]], "threads": [[115, "index-1", false]], "threadsafety (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.threadsafety", false]], "throw (2to3 fixer)": [[112, "to3fixer-throw", false]], "throw() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.throw", false]], "throw() (generator \u7684\u65b9\u6cd5)": [[430, "generator.throw", false]], "thursday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.THURSDAY", false]], "ticket_lifetime_hint (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.ticket_lifetime_hint", false]], "tigetflag() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetflag", false]], "tigetnum() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetnum", false]], "tigetstr() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetstr", false]], "tilde (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TILDE", false]], "tilt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tilt", false]], "tiltangle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tiltangle", false]], "time": [[366, "module-time", false]], "time (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.time", false]], "time (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.time", false]], "time (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time", false]], "time() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.time", false]], "time() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.time", false]], "time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.time", false]], "time2internaldate() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Time2Internaldate", false]], "time_hi_version (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_hi_version", false]], "time_low (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_low", false]], "time_mid (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_mid", false]], "time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.time_ns", false]], "timedelta (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.timedelta", false]], "timedrotatingfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.TimedRotatingFileHandler", false]], "timegm() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.timegm", false]], "timeit": [[367, "module-timeit", false]], "timeit \u547d\u4ee4\u5217\u9078\u9805": [[367, "cmdoption-timeit-h", false], [367, "cmdoption-timeit-n", false], [367, "cmdoption-timeit-p", false], [367, "cmdoption-timeit-r", false], [367, "cmdoption-timeit-s", false], [367, "cmdoption-timeit-u", false], [367, "cmdoption-timeit-v", false]], "timeit() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.timeit", false]], "timeit() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.timeit", false]], "timeout": [[337, "socket.timeout", false]], "timeout (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.Timeout", false]], "timeout (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.timeout", false]], "timeout (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.timeout", false]], "timeout (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.timeout", false]], "timeout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.timeout", false]], "timeout() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.timeout", false]], "timeout_at() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.timeout_at", false]], "timeout_max (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.TIMEOUT_MAX", false]], "timeout_max (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.TIMEOUT_MAX", false]], "timeouterror": [[127, "asyncio.TimeoutError", false], [166, "concurrent.futures.TimeoutError", false], [213, "TimeoutError", false], [283, "multiprocessing.TimeoutError", false]], "timeoutexpired": [[348, "subprocess.TimeoutExpired", false]], "timer (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Timer", false]], "timer (timeit \u4e2d\u7684\u985e\u5225)": [[367, "timeit.Timer", false]], "timerhandle (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.TimerHandle", false]], "times() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.times", false]], "timestamp (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.TIMESTAMP", false]], "timestamp() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timestamp", false]], "timetuple() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.timetuple", false]], "timetuple() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timetuple", false]], "timetz() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timetz", false]], "timezone (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.timezone", false]], "timezone (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.timezone", false]], "title() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.title", false]], "title() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.title", false]], "title() (str \u7684\u65b9\u6cd5)": [[344, "str.title", false]], "title() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.title", false]], "tix": [[375, "index-0", false]], "tix_addbitmapdir() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_addbitmapdir", false]], "tix_cget() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_cget", false]], "tix_configure() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_configure", false]], "tix_filedialog() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_filedialog", false]], "tix_getbitmap() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_getbitmap", false]], "tix_getimage() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_getimage", false]], "tix_option_get() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_option_get", false]], "tix_resetoptions() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_resetoptions", false]], "tixcommand (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.tixCommand", false]], "tk": [[368, "index-0", false]], "tk (tkinter \u4e2d\u7684\u985e\u5225)": [[369, "tkinter.Tk", false]], "tk (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Tk", false]], "tk (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.tk", false]], "tk option data types": [[369, "index-4", false]], "tkinter": [[368, "index-0", false], [369, "module-tkinter", false]], "tkinter.colorchooser": [[370, "module-tkinter.colorchooser", false]], "tkinter.commondialog": [[189, "module-tkinter.commondialog", false]], "tkinter.dnd": [[371, "module-tkinter.dnd", false]], "tkinter.filedialog": [[189, "module-tkinter.filedialog", false]], "tkinter.font": [[372, "module-tkinter.font", false]], "tkinter.messagebox": [[373, "module-tkinter.messagebox", false]], "tkinter.scrolledtext": [[374, "module-tkinter.scrolledtext", false]], "tkinter.simpledialog": [[189, "module-tkinter.simpledialog", false]], "tkinter.tix": [[375, "module-tkinter.tix", false]], "tkinter.ttk": [[376, "module-tkinter.ttk", false]], "tlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.TList", false]], "tls": [[341, "index-1", false]], "tlsv1 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1", false]], "tlsv1_1 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_1", false]], "tlsv1_2 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_2", false]], "tlsv1_3 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_3", false]], "tlsversion (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.TLSVersion", false]], "tm_day (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_day", false]], "tm_gmtoff (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_gmtoff", false]], "tm_hour (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_hour", false]], "tm_isdst (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_isdst", false]], "tm_min (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_min", false]], "tm_mon (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_mon", false]], "tm_sec (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_sec", false]], "tm_wday (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_wday", false]], "tm_yday (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_yday", false]], "tm_year (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_year", false]], "tm_zone (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_zone", false]], "tmp": [[360, "index-9", false]], "tmpdir": [[360, "index-7", false], [483, "index-52", false]], "to_bytes() (int \u7684\u65b9\u6cd5)": [[344, "int.to_bytes", false]], "to_eng_string() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_eng_string", false]], "to_eng_string() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_eng_string", false]], "to_integral() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral", false]], "to_integral_exact() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_integral_exact", false]], "to_integral_exact() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral_exact", false]], "to_integral_value() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral_value", false]], "to_sci_string() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_sci_string", false]], "to_thread() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.to_thread", false]], "toascii() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.ToASCII", false]], "tobuf() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.tobuf", false]], "tobytes() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tobytes", false]], "tobytes() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.tobytes", false]], "today() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.today", false]], "today() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.today", false]], "tofile() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tofile", false]], "tok_name (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.tok_name", false]], "token": [[377, "module-token", false], [435, "index-0", false]], "token (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.Token", false]], "token (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.token", false]], "token_bytes() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_bytes", false]], "token_hex() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_hex", false]], "token_urlsafe() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_urlsafe", false]], "tokenerror": [[378, "tokenize.TokenError", false]], "tokenize": [[378, "module-tokenize", false]], "tokenize \u547d\u4ee4\u5217\u9078\u9805": [[378, "cmdoption-tokenize-e", false], [378, "cmdoption-tokenize-h", false]], "tokenize() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.tokenize", false]], "tolist() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tolist", false]], "tolist() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.tolist", false]], "tomldecodeerror": [[379, "tomllib.TOMLDecodeError", false]], "tomllib": [[379, "module-tomllib", false]], "tomono() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.tomono", false]], "toordinal() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.toordinal", false]], "toordinal() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.toordinal", false]], "top() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.top", false]], "top() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.top", false]], "top_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.top_panel", false]], "topologicalsorter (graphlib \u4e2d\u7684\u985e\u5225)": [[232, "graphlib.TopologicalSorter", false]], "toprettyxml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.toprettyxml", false]], "toreadonly() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.toreadonly", false]], "tostereo() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.tostereo", false]], "tostring() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.tostring", false]], "tostringlist() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.tostringlist", false]], "total() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.total", false]], "total_changes (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.total_changes", false]], "total_nframe (tracemalloc.traceback \u7684\u5c6c\u6027)": [[382, "tracemalloc.Traceback.total_nframe", false]], "total_ordering() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.total_ordering", false]], "total_seconds() (datetime.timedelta \u7684\u65b9\u6cd5)": [[183, "datetime.timedelta.total_seconds", false]], "touch() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.touch", false]], "touchline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.touchline", false]], "touchwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.touchwin", false]], "tounicode() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tounicode", false]], "tounicode() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.ToUnicode", false]], "towards() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.towards", false]], "toxml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.toxml", false]], "tparm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tparm", false]], "trace": [[380, "module-trace", false]], "trace (trace \u4e2d\u7684\u985e\u5225)": [[380, "trace.Trace", false]], "trace (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Trace", false]], "trace function": [[352, "index-11", false], [352, "index-29", false], [365, "index-0", false], [365, "index-1", false]], "trace \u547d\u4ee4\u5217\u9078\u9805": [[380, "cmdoption-trace-C", false], [380, "cmdoption-trace-R", false], [380, "cmdoption-trace-T", false], [380, "cmdoption-trace-c", false], [380, "cmdoption-trace-f", false], [380, "cmdoption-trace-g", false], [380, "cmdoption-trace-help", false], [380, "cmdoption-trace-ignore-dir", false], [380, "cmdoption-trace-ignore-module", false], [380, "cmdoption-trace-l", false], [380, "cmdoption-trace-m", false], [380, "cmdoption-trace-r", false], [380, "cmdoption-trace-s", false], [380, "cmdoption-trace-t", false], [380, "cmdoption-trace-version", false]], "trace() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.trace", false]], "trace_dispatch() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.trace_dispatch", false]], "traceback": [[352, "index-8", false], [381, "index-0", false], [381, "module-traceback", false], [427, "index-11", false], [428, "index-66", false], [436, "index-28", false]], "traceback (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Traceback", false]], "traceback (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Traceback", false]], "traceback (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.traceback", false]], "traceback (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.traceback", false]], "traceback (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.traceback", false]], "traceback_limit (tracemalloc.snapshot \u7684\u5c6c\u6027)": [[382, "tracemalloc.Snapshot.traceback_limit", false]], "traceback_limit (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.traceback_limit", false]], "tracebackexception (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.TracebackException", false]], "tracebacklimit (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.tracebacklimit", false]], "tracebacks\uff08\u56de\u6eaf\uff09": [[152, "index-0", false]], "tracebacktype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.TracebackType", false]], "tracemalloc": [[382, "module-tracemalloc", false]], "tracer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tracer", false]], "traces (tracemalloc.snapshot \u7684\u5c6c\u6027)": [[382, "tracemalloc.Snapshot.traces", false]], "trace\uff08\u8ffd\u8e64\uff09": [[428, "index-66", false]], "trailing": [[430, "index-95", false]], "transfercmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.transfercmd", false]], "transient_internet() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.transient_internet", false]], "translate() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.translate", false]], "translate() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.translate", false]], "translate() (str \u7684\u65b9\u6cd5)": [[344, "str.translate", false]], "translate() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.translate", false]], "translation() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.translation", false]], "transport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.Transport", false]], "transport (asyncio.streamwriter \u7684\u5c6c\u6027)": [[136, "asyncio.StreamWriter.transport", false]], "transport layer security\uff08\u50b3\u8f38\u5c64\u5b89\u5168\uff09": [[341, "index-1", false]], "traversable (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.Traversable", false]], "traversable (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.Traversable", false]], "traversableresources (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.TraversableResources", false]], "traversableresources (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.TraversableResources", false]], "traversal\uff08\u904d\u6b77\uff09": [[293, "index-31", false], [293, "index-32", false]], "traverseproc (c type)": [[28, "c.traverseproc", false]], "tree (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Tree", false]], "treebuilder (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.TreeBuilder", false]], "treeview (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Treeview", false]], "triangular() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.triangular", false]], "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09": [[87, "term-triple-quoted-string", true]], "triple-quoted string\uff08\u4e09\u5f15\u865f\u5b57\u4e32\uff09": [[435, "index-18", false]], "true": [[344, "index-17", false], [344, "index-4", false], [344, "index-2", false], [428, "index-12", false]], "true (\u5167\u5efa\u8b8a\u6578)": [[168, "True", false]], "truediv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.truediv", false]], "trunc() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.trunc", false]], "trunc()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "truncate() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.truncate", false]], "truncate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.truncate", false]], "truth() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.truth", false]], "truth\uff08\u771f\uff09": [[344, "index-1", false]], "try": [[213, "index-0", false], [427, "index-9", true], [428, "index-67", false]], "try (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Try", false]], "trystar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TryStar", false]], "ttk": [[376, "index-0", false]], "tty": [[361, "index-0", false], [383, "module-tty", false]], "ttyname() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ttyname", false]], "tuesday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.TUESDAY", false]], "tuple": [[430, "index-42", false], [430, "index-45", false], [430, "index-9", false], [430, "index-92", false]], "tuple (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Tuple", false]], "tuple (\u5167\u5efa\u985e\u5225)": [[344, "tuple", false]], "tuple (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Tuple", false]], "tuple display": [[430, "index-8", false]], "tuple_params (2to3 fixer)": [[112, "to3fixer-tuple_params", false]], "tuple\uff08\u5143\u7d44\uff09": [[38, "index-2", false], [60, "index-0", false], [344, "index-22", false], [344, "index-26", false], [428, "index-20", false]], "tuple\uff08\u5143\u7ec4\uff09": [[54, "index-1", false]], "turtle": [[384, "module-turtle", false]], "turtle (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Turtle", false]], "turtledemo": [[384, "module-turtledemo", false]], "turtles() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.turtles", false]], "turtlescreen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.TurtleScreen", false]], "turtlesize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.turtlesize", false]], "type": [[436, "index-47", false]], "type (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.type", false]], "type (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.type", false]], "type (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.type", false]], "type (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Type", false]], "type (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.type", false]], "type (\u5167\u5efa\u985e\u5225)": [[225, "type", false]], "type alias\uff08\u578b\u5225\u5225\u540d\uff09": [[87, "term-type-alias", true]], "type annotation\uff08\u578b\u5225\u8a3b\u8a18\uff09\uff1btype hint\uff08\u578b\u5225\u63d0\u793a\uff09": [[344, "index-55", false]], "type hint\uff08\u578b\u5225\u63d0\u793a\uff09": [[87, "term-type-hint", true]], "type of an object\uff08\u7269\u4ef6\u7684\u578b\u5225\uff09": [[428, "index-1", false]], "type parameter\uff08\u578b\u5225\u53c3\u6578\uff09": [[427, "index-53", false]], "type_check_only() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.type_check_only", false]], "type_checker (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPE_CHECKER", false]], "type_checking (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TYPE_CHECKING", false]], "type_comment (ast.arg \u7684\u5c6c\u6027)": [[122, "ast.arg.type_comment", false]], "type_comment (ast.assign \u7684\u5c6c\u6027)": [[122, "ast.Assign.type_comment", false]], "type_comment (ast.for \u7684\u5c6c\u6027)": [[122, "ast.For.type_comment", false]], "type_comment (ast.functiondef \u7684\u5c6c\u6027)": [[122, "ast.FunctionDef.type_comment", false]], "type_comment (ast.with \u7684\u5c6c\u6027)": [[122, "ast.With.type_comment", false]], "type_comment (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TYPE_COMMENT", false]], "type_ignore (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TYPE_IGNORE", false]], "typeahead() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.typeahead", false]], "typealias (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeAlias", false]], "typealias (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TypeAlias", false]], "typealiastype (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeAliasType", false]], "typecode (array.array \u7684\u5c6c\u6027)": [[121, "array.array.typecode", false]], "typecodes (\u65bc array \u6a21\u7d44\u4e2d)": [[121, "array.typecodes", false]], "typed_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPED_ACTIONS", false]], "typed_subpart_iterator() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators.typed_subpart_iterator", false]], "typeddict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypedDict", false]], "typeerror": [[213, "TypeError", false], [430, "index-63", false]], "typeguard (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TypeGuard", false]], "types": [[385, "module-types", false]], "types (2to3 fixer)": [[112, "to3fixer-types", false]], "types (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPES", false]], "types_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.types_map", false]], "types_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.types_map", false]], "types_map_inv (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.types_map_inv", false]], "types\uff08\u578b\u5225\uff09, internal\uff08\u5167\u90e8\uff09": [[428, "index-56", false]], "typevar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeVar", false]], "typevar (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeVar", false]], "typevartuple (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeVarTuple", false]], "typevartuple (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeVarTuple", false]], "type\uff08\u578b\u5225\uff09": [[35, "index-3", false], [49, "index-7", false], [61, "index-0", false], [87, "term-type", true], [225, "index-0", false], [225, "index-12", false], [344, "index-0", false], [344, "index-14", false], [344, "index-16", false], [344, "index-20", false], [344, "index-22", false], [344, "index-23", false], [344, "index-24", false], [344, "index-52", false], [344, "index-59", false], [344, "index-65", false], [428, "index-1", false], [428, "index-4", false], [428, "index-86", false], [430, "index-7", false]], "typing": [[386, "module-typing", false]], "tz": [[366, "index-13", false], [366, "index-14", false], [366, "index-15", false], [366, "index-16", false], [366, "index-17", false], [366, "index-18", false]], "tzinfo (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.tzinfo", false]], "tzinfo (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.tzinfo", false]], "tzinfo (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.tzinfo", false]], "tzname (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.tzname", false]], "tzname() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.tzname", false]], "tzname() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.tzname", false]], "tzname() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.tzname", false]], "tzname() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.tzname", false]], "tzpath (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.TZPATH", false]], "tzset() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.tzset", false]], "u (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.U", false]], "u\"": [[435, "index-17", false]], "u'": [[435, "index-17", false]], "u-law": [[117, "index-2", false], [141, "index-1", false], [336, "index-0", false]], "uadd (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.UAdd", false]], "ucd_3_2_0 (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.ucd_3_2_0", false]], "udata (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.udata", false]], "udpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UDPServer", false]], "uf_append (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_APPEND", false]], "uf_compressed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_COMPRESSED", false]], "uf_hidden (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_HIDDEN", false]], "uf_immutable (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_IMMUTABLE", false]], "uf_nodump (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_NODUMP", false]], "uf_nounlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_NOUNLINK", false]], "uf_opaque (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_OPAQUE", false]], "uid (plistlib \u4e2d\u7684\u985e\u5225)": [[304, "plistlib.UID", false]], "uid (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.uid", false]], "uid() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.uid", false]], "uidl() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.uidl", false]], "ulaw2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.ulaw2lin", false]], "ulong_max\uff08c \u5de8\u96c6\uff09": [[39, "index-4", false]], "ulp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ulp", false]], "umask() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.umask", false]], "unalias (pdb command)": [[297, "pdbcommand-unalias", false]], "uname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.uname", false]], "uname() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.uname", false]], "uname() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.uname", false]], "unary operator\uff08\u4e00\u5143\u904b\u7b97\u5b50\uff09": [[344, "index-13", false], [430, "index-60", false], [430, "index-61", false]], "unary_invert (opcode)": [[191, "opcode-UNARY_INVERT", false]], "unary_negative (opcode)": [[191, "opcode-UNARY_NEGATIVE", false]], "unary_not (opcode)": [[191, "opcode-UNARY_NOT", false]], "unaryfunc (c type)": [[63, "c.unaryfunc", false]], "unaryop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.UnaryOp", false]], "unary\uff08\u4e00\u5143\uff09": [[430, "index-59", false]], "unbinding\uff08\u89e3\u9664\u7e6b\u7d50\uff09": [[436, "index-22", false]], "unboundlocalerror": [[213, "UnboundLocalError", false], [429, "index-9", false]], "unbuffered i/o\uff08\u975e\u7de9\u885d i/o\uff09": [[225, "index-8", false]], "unc paths\uff08unc \u8def\u5f91\uff09": [[293, "index-28", false]], "uncancel() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.uncancel", false]], "unchecked_hash (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.UNCHECKED_HASH", false]], "unconsumed_tail (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.unconsumed_tail", false]], "unctrl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.unctrl", false]], "unctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.unctrl", false]], "underflow (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Underflow", false]], "undisplay (pdb command)": [[297, "pdbcommand-undisplay", false]], "undo() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.undo", false]], "undobufferentries() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.undobufferentries", false]], "undoc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.undoc_header", false]], "unescape() (\u65bc html \u6a21\u7d44\u4e2d)": [[238, "html.unescape", false]], "unescape() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.unescape", false]], "unexpectedexception": [[193, "doctest.UnexpectedException", false]], "unexpectedsuccesses (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.unexpectedSuccesses", false]], "unfreeze() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.unfreeze", false]], "unget_wch() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.unget_wch", false]], "ungetch() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ungetch", false]], "ungetch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.ungetch", false]], "ungetmouse() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ungetmouse", false]], "ungetwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.ungetwch", false]], "unhexlify() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.unhexlify", false]], "unicode": [[158, "index-0", false], [387, "index-0", false], [428, "index-19", false]], "unicode (2to3 fixer)": [[112, "to3fixer-unicode", false]], "unicode (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.UNICODE", false]], "unicode consortium": [[435, "index-18", false]], "unicodedata": [[387, "module-unicodedata", false]], "unicodedecodeerror": [[213, "UnicodeDecodeError", false]], "unicodeencodeerror": [[213, "UnicodeEncodeError", false]], "unicodeerror": [[213, "UnicodeError", false]], "unicodetranslateerror": [[213, "UnicodeTranslateError", false]], "unicodewarning": [[213, "UnicodeWarning", false]], "unidata_version (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.unidata_version", false]], "unified_diff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.unified_diff", false]], "uniform() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.uniform", false]], "unimplementedfilemode": [[242, "http.client.UnimplementedFileMode", false]], "union (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Union", false]], "union (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Union", false]], "union() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.union", false]], "uniontype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.UnionType", false]], "union\uff08\u806f\u96c6\uff09": [[344, "index-59", false], [344, "index-59", false]], "unique (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.UNIQUE", false]], "unique() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.unique", false]], "unittest": [[388, "module-unittest", false]], "unittest \u547d\u4ee4\u5217\u9078\u9805": [[388, "cmdoption-unittest-b", false], [388, "cmdoption-unittest-c", false], [388, "cmdoption-unittest-durations", false], [388, "cmdoption-unittest-f", false], [388, "cmdoption-unittest-k", false], [388, "cmdoption-unittest-locals", false]], "unittest-discover \u547d\u4ee4\u5217\u9078\u9805": [[388, "cmdoption-unittest-discover-p", false], [388, "cmdoption-unittest-discover-s", false], [388, "cmdoption-unittest-discover-t", false], [388, "cmdoption-unittest-discover-v", false]], "unittest.mock": [[389, "module-unittest.mock", false]], "universal newlines": [[175, "index-3", false], [225, "index-7", false], [250, "index-15", false], [258, "index-4", false], [258, "index-5", false], [344, "index-34", false], [344, "index-44", false], [348, "index-1", false], [465, "index-8", false], [466, "index-7", false], [467, "index-20", false], [468, "index-13", false]], "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09": [[87, "term-universal-newlines", true]], "unix": [[215, "index-0", false], [437, "index-4", false]], "unix_dialect (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.unix_dialect", false]], "unix_shell (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.unix_shell", false]], "unixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UnixDatagramServer", false]], "unixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UnixStreamServer", false]], "unknown (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.unknown", false]], "unknown_decl() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.unknown_decl", false]], "unknown_open() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.unknown_open", false]], "unknown_open() (urllib.request.unknownhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.UnknownHandler.unknown_open", false]], "unknownhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.UnknownHandler", false]], "unknownprotocol": [[242, "http.client.UnknownProtocol", false]], "unknowntransferencoding": [[242, "http.client.UnknownTransferEncoding", false]], "unlink() (multiprocessing.shared_memory.sharedmemory \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.SharedMemory.unlink", false]], "unlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.unlink", false]], "unlink() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.unlink", false]], "unlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unlink", false]], "unlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.unlink", false]], "unload() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.unload", false]], "unlock() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.unlock", false]], "unlock() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.unlock", false]], "unlock() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.unlock", false]], "unlock() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.unlock", false]], "unlock() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.unlock", false]], "unlock() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.unlock", false]], "unpack (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Unpack", false]], "unpack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.unpack", false]], "unpack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.unpack", false]], "unpack_archive() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unpack_archive", false]], "unpack_array() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_array", false]], "unpack_bytes() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_bytes", false]], "unpack_double() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_double", false]], "unpack_ex (opcode)": [[191, "opcode-UNPACK_EX", false]], "unpack_farray() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_farray", false]], "unpack_float() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_float", false]], "unpack_fopaque() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_fopaque", false]], "unpack_from() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.unpack_from", false]], "unpack_from() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.unpack_from", false]], "unpack_fstring() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_fstring", false]], "unpack_list() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_list", false]], "unpack_opaque() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_opaque", false]], "unpack_sequence (opcode)": [[191, "opcode-UNPACK_SEQUENCE", false]], "unpack_string() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_string", false]], "unpacker (xdrlib \u4e2d\u7684\u985e\u5225)": [[408, "xdrlib.Unpacker", false]], "unpacking\uff08\u89e3\u5305\uff09": [[430, "index-18", false], [430, "index-49", false], [430, "index-93", false]], "unparse() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.unparse", false]], "unparsedentitydecl() (xml.sax.handler.dtdhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.DTDHandler.unparsedEntityDecl", false]], "unparsedentitydeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.UnparsedEntityDeclHandler", false]], "unpickler (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.Unpickler", false]], "unpicklingerror": [[299, "pickle.UnpicklingError", false]], "unquote() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.unquote", false]], "unquote() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote", false]], "unquote_plus() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote_plus", false]], "unquote_to_bytes() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote_to_bytes", false]], "unraisablehook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.unraisablehook", false]], "unreachable object\uff08\u4e0d\u53ef\u9054\u7269\u4ef6\uff09": [[428, "index-2", false]], "unrecognized escape sequence\uff08\u7121\u6cd5\u8fa8\u8b58\u7684\u8df3\u812b\u5e8f\u5217\uff09": [[435, "index-24", false]], "unregister() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.unregister", false]], "unregister() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.unregister", false]], "unregister() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.unregister", false]], "unregister() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.unregister", false]], "unregister() (\u65bc atexit \u6a21\u7d44\u4e2d)": [[140, "atexit.unregister", false]], "unregister() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.unregister", false]], "unregister() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.unregister", false]], "unregister_archive_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unregister_archive_format", false]], "unregister_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.unregister_dialect", false]], "unregister_unpack_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unregister_unpack_format", false]], "unsafe (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.unsafe", false]], "unselect() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.unselect", false]], "unset() (test.support.os_helper.environmentvarguard \u7684\u65b9\u6cd5)": [[362, "test.support.os_helper.EnvironmentVarGuard.unset", false]], "unsetenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unsetenv", false]], "unshare() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unshare", false]], "unstructuredheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.UnstructuredHeader", false]], "unsubscribe() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.unsubscribe", false]], "unsupportedoperation": [[258, "io.UnsupportedOperation", false]], "until (pdb command)": [[297, "pdbcommand-until", false]], "untokenize() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.untokenize", false]], "untouchwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.untouchwin", false]], "unused_data (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.unused_data", false]], "unused_data (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.unused_data", false]], "unused_data (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.unused_data", false]], "unverifiable (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.unverifiable", false]], "unwrap() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.unwrap", false]], "unwrap() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.unwrap", false]], "unwrap() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unwrap", false]], "up (pdb command)": [[297, "pdbcommand-up", false]], "up() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.up", false]], "update() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.update", false]], "update() (dict \u7684\u65b9\u6cd5)": [[344, "dict.update", false]], "update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.update", false]], "update() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.update", false]], "update() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.update", false]], "update() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.update", false]], "update() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.update", false]], "update() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.update", false]], "update() (trace.coverageresults \u7684\u65b9\u6cd5)": [[380, "trace.CoverageResults.update", false]], "update() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.update", false]], "update_abstractmethods() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.update_abstractmethods", false]], "update_authenticated() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.update_authenticated", false]], "update_lines_cols() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.update_lines_cols", false]], "update_panels() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.update_panels", false]], "update_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.update_visible", false]], "update_wrapper() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.update_wrapper", false]], "upgrade_dependencies() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.upgrade_dependencies", false]], "upper() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.upper", false]], "upper() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.upper", false]], "upper() (str \u7684\u65b9\u6cd5)": [[344, "str.upper", false]], "urandom() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.urandom", false]], "url (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.url", false]], "url (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.url", false]], "url (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.url", false]], "url (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.url", false]], "url2pathname() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.url2pathname", false]], "urlcleanup() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlcleanup", false]], "urldefrag() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urldefrag", false]], "urlencode() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlencode", false]], "urlerror": [[393, "urllib.error.URLError", false]], "urljoin() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urljoin", false]], "urllib": [[392, "module-urllib", false]], "urllib (2to3 fixer)": [[112, "to3fixer-urllib", false]], "urllib.error": [[393, "module-urllib.error", false]], "urllib.parse": [[394, "module-urllib.parse", false]], "urllib.request": [[242, "index-1", false], [395, "module-urllib.request", false]], "urllib.response": [[395, "module-urllib.response", false]], "urllib.robotparser": [[396, "module-urllib.robotparser", false]], "urlopen() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlopen", false]], "urlopener (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.URLopener", false]], "urlparse() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlparse", false]], "urlretrieve() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlretrieve", false]], "urlsafe_b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.urlsafe_b64decode", false]], "urlsafe_b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.urlsafe_b64encode", false]], "urlsplit() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlsplit", false]], "urlunparse() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlunparse", false]], "urlunsplit() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlunsplit", false]], "url\uff08\u7d71\u4e00\u8cc7\u6e90\u5b9a\u4f4d\u5668\uff09": [[151, "index-0", false], [245, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "urn (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.urn", false]], "us (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.US", false]], "use_default_colors() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.use_default_colors", false]], "use_env() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.use_env", false]], "use_rawinput (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.use_rawinput", false]], "use_stackcheck\uff08c \u5de8\u96c6\uff09": [[59, "index-0", false]], "use_tool_id() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.use_tool_id", false]], "useforeigndtd() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.UseForeignDTD", false]], "user": [[229, "index-7", false]], "user() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.user", false]], "user-defined function\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\u51fd\u5f0f\uff09": [[427, "index-28", false], [428, "index-34", false], [430, "index-52", false]], "user-defined method\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\u65b9\u6cd5\uff09": [[428, "index-37", false]], "user-defined\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\uff09": [[428, "index-34", false], [428, "index-37", false], [430, "index-52", false]], "user_base (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.USER_BASE", false]], "user_call() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_call", false]], "user_exception() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_exception", false]], "user_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_line", false]], "user_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_return", false]], "user_site (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.USER_SITE", false]], "usercustomize": [[334, "module-usercustomize", false], [438, "index-15", false], [438, "index-17", false]], "userdict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserDict", false]], "userlist (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserList", false]], "username": [[229, "index-8", false], [293, "index-11", false], [294, "index-20", false]], "username (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.username", false]], "userprofile": [[294, "index-17", false], [481, "index-13", false], [481, "index-20", false], [483, "index-201", false]], "userptr() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.userptr", false]], "userstring (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserString", false]], "userwarning": [[213, "UserWarning", false]], "user\uff08\u4f7f\u7528\u8005\uff09": [[293, "index-16", false], [293, "index-19", false], [293, "index-8", false]], "ustar_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.USTAR_FORMAT", false]], "usub (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.USub", false]], "utc": [[366, "index-4", false]], "utc (datetime.timezone \u7684\u5c6c\u6027)": [[183, "datetime.timezone.utc", false]], "utc (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.UTC", false]], "utcfromtimestamp() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.utcfromtimestamp", false]], "utcnow() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.utcnow", false]], "utcoffset() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.utcoffset", false]], "utcoffset() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.utcoffset", false]], "utcoffset() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.utcoffset", false]], "utcoffset() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.utcoffset", false]], "utctimetuple() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.utctimetuple", false]], "utf8 (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.utf8", false]], "utf8() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.utf8", false]], "utf8_enabled (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.utf8_enabled", false]], "utf8_mode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.utf8_mode", false]], "utime() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.utime", false]], "uu": [[146, "index-0", false], [397, "module-uu", false]], "uuid": [[398, "module-uuid", false]], "uuid (uuid \u4e2d\u7684\u985e\u5225)": [[398, "uuid.UUID", false]], "uuid \u547d\u4ee4\u5217\u9078\u9805": [[398, "cmdoption-uuid-N", false], [398, "cmdoption-uuid-h", false], [398, "cmdoption-uuid-n", false], [398, "cmdoption-uuid-name", false], [398, "cmdoption-uuid-namespace", false], [398, "cmdoption-uuid-u", false], [398, "cmdoption-uuid-uuid", false]], "uuid1": [[398, "index-6", false]], "uuid1() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid1", false]], "uuid3": [[398, "index-7", false]], "uuid3() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid3", false]], "uuid4": [[398, "index-8", false]], "uuid4() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid4", false]], "uuid5": [[398, "index-9", false]], "uuid5() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid5", false]], "uuidcreate() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.UuidCreate", false]], "v4_int_to_packed() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.v4_int_to_packed", false]], "v6_int_to_packed() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.v6_int_to_packed", false]], "valid_signals() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.valid_signals", false]], "validator() (\u65bc wsgiref.validate \u6a21\u7d44\u4e2d)": [[407, "wsgiref.validate.validator", false]], "value": [[344, "index-1", false]], "value (ctypes._simplecdata \u7684\u5c6c\u6027)": [[176, "ctypes._SimpleCData.value", false]], "value (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum.value", false]], "value (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.value", false]], "value (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.value", false]], "value (stopiteration \u7684\u5c6c\u6027)": [[213, "StopIteration.value", false]], "value (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.value", false]], "value of an object\uff08\u7269\u4ef6\u7684\u503c\uff09": [[428, "index-1", false]], "value() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Value", false]], "value() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Value", false]], "value() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.Value", false]], "value_decode() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.value_decode", false]], "value_encode() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.value_encode", false]], "valueerror": [[213, "ValueError", false], [430, "index-72", false]], "valuerefs() (weakref.weakvaluedictionary \u7684\u65b9\u6cd5)": [[402, "weakref.WeakValueDictionary.valuerefs", false]], "values": [[344, "index-17", false], [436, "index-3", false]], "values (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.Values", false]], "values() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.values", false]], "values() (dict \u7684\u65b9\u6cd5)": [[344, "dict.values", false]], "values() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.values", false]], "values() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.values", false]], "values() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.values", false]], "values() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.values", false]], "valuesview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ValuesView", false]], "valuesview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ValuesView", false]], "value\uff08\u503c\uff09": [[427, "index-31", false], [430, "index-17", false]], "var (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.var", false]], "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09": [[87, "term-variable-annotation", true]], "variable\uff08\u8b8a\u6578\uff09": [[429, "index-6", false]], "variance (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.variance", false]], "variance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.variance", false]], "variant (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.variant", false]], "vars()": [[225, "vars", false]], "vbar (tkinter.scrolledtext.scrolledtext \u7684\u5c6c\u6027)": [[374, "tkinter.scrolledtext.ScrolledText.vbar", false]], "vbar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.VBAR", false]], "vbarequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.VBAREQUAL", false]], "vc_assembly_publickeytoken (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.VC_ASSEMBLY_PUBLICKEYTOKEN", false]], "vec2d (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Vec2D", false]], "vectorcallfunc (c type)": [[10, "c.vectorcallfunc", false]], "venv": [[399, "module-venv", false]], "verbose (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.verbose", false]], "verbose (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.VERBOSE", false]], "verbose (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.verbose", false]], "verbose (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.verbose", false]], "verify() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.verify", false]], "verify() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.verify", false]], "verify_allow_proxy_certs (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_ALLOW_PROXY_CERTS", false]], "verify_client_post_handshake() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.verify_client_post_handshake", false]], "verify_code (ssl.sslcertverificationerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLCertVerificationError.verify_code", false]], "verify_crl_check_chain (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_CRL_CHECK_CHAIN", false]], "verify_crl_check_leaf (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_CRL_CHECK_LEAF", false]], "verify_default (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_DEFAULT", false]], "verify_flags (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.verify_flags", false]], "verify_message (ssl.sslcertverificationerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLCertVerificationError.verify_message", false]], "verify_mode (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.verify_mode", false]], "verify_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.verify_request", false]], "verify_x509_partial_chain (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_PARTIAL_CHAIN", false]], "verify_x509_strict (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_STRICT", false]], "verify_x509_trusted_first (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_TRUSTED_FIRST", false]], "verifyflags (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.VerifyFlags", false]], "verifymode (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.VerifyMode", false]], "version (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.version", false]], "version (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.version", false]], "version (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.version", false]], "version (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.version", false]], "version (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.version", false]], "version (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.version", false]], "version (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.version", false]], "version (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.version", false]], "version (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.version", false]], "version (urllib.request.urlopener \u7684\u5c6c\u6027)": [[395, "urllib.request.URLopener.version", false]], "version (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.version", false]], "version (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.version", false]], "version (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.version", false]], "version (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.version", false]], "version (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.version", false]], "version() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.version", false]], "version() (\u65bc ensurepip \u6a21\u7d44\u4e2d)": [[210, "ensurepip.version", false]], "version() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.version", false]], "version_info (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.version_info", false]], "version_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.version_info", false]], "version_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.version_string", false]], "version\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-24", false], [33, "index-27", false], [33, "index-28", false]], "vformat() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.vformat", false]], "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09": [[87, "term-virtual-environment", true]], "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09": [[87, "term-virtual-machine", true]], "virtual \uff08\u865b\u64ec\uff09": [[399, "index-0", false]], "visit() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.visit", false]], "visit_constant() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.visit_Constant", false]], "visitproc (c type)": [[28, "c.visitproc", false]], "vline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.vline", false]], "voidcmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.voidcmd", false]], "volume (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.volume", false]], "vonmisesvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.vonmisesvariate", false]], "vt (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.VT", false]], "w_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.W_OK", false]], "wait() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.wait", false]], "wait() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.wait", false]], "wait() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.wait", false]], "wait() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.wait", false]], "wait() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.wait", false]], "wait() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.wait", false]], "wait() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.wait", false]], "wait() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.wait", false]], "wait() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.wait", false]], "wait() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.wait", false]], "wait() (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.wait", false]], "wait() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.wait", false]], "wait() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait", false]], "wait3() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait3", false]], "wait4() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait4", false]], "wait_closed() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.wait_closed", false]], "wait_closed() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.wait_closed", false]], "wait_for() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.wait_for", false]], "wait_for() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.wait_for", false]], "wait_for() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.wait_for", false]], "wait_process() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.wait_process", false]], "wait_threads_exit() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.wait_threads_exit", false]], "waitid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitid", false]], "waitpid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitpid", false]], "waitstatus_to_exitcode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitstatus_to_exitcode", false]], "walk() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.walk", false]], "walk() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.walk", false]], "walk() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.walk", false]], "walk() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.walk", false]], "walk() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.walk", false]], "walk_packages() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.walk_packages", false]], "walk_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.walk_stack", false]], "walk_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.walk_tb", false]], "walking": [[293, "index-31", false], [293, "index-32", false]], "walrus operator\uff08\u6d77\u8c61\u904b\u7b97\u5b50\uff09": [[430, "index-86", false]], "want (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.want", false]], "warn() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.warn", false]], "warn_default_encoding (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.warn_default_encoding", false]], "warn_explicit() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.warn_explicit", false]], "warning": [[213, "Warning", false], [340, "sqlite3.Warning", false]], "warning (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.WARNING", false]], "warning (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.WARNING", false]], "warning() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.warning", false]], "warning() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.warning", false]], "warning() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.warning", false]], "warnings": [[400, "module-warnings", false]], "warnings \uff08\u8b66\u544a\uff09": [[400, "index-0", false]], "warningsrecorder (test.support.warnings_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.warnings_helper.WarningsRecorder", false]], "warnoptions (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.warnoptions", false]], "wassuccessful() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.wasSuccessful", false]], "watchedfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.WatchedFileHandler", false]], "wave": [[401, "module-wave", false]], "wave_read (wave \u4e2d\u7684\u985e\u5225)": [[401, "wave.Wave_read", false]], "wave_write (wave \u4e2d\u7684\u985e\u5225)": [[401, "wave.Wave_write", false]], "wcontinued (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WCONTINUED", false]], "wcoredump() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WCOREDUMP", false]], "weakkeydictionary (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakKeyDictionary", false]], "weakmethod (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakMethod", false]], "weakref": [[402, "module-weakref", false]], "weakset (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakSet", false]], "weakvaluedictionary (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakValueDictionary", false]], "webbrowser": [[403, "module-webbrowser", false]], "wednesday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.WEDNESDAY", false]], "weekday (calendar.illegalweekdayerror \u7684\u5c6c\u6027)": [[150, "calendar.IllegalWeekdayError.weekday", false]], "weekday() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.weekday", false]], "weekday() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.weekday", false]], "weekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.weekday", false]], "weekheader() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.weekheader", false]], "weibullvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.weibullvariate", false]], "wexited (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WEXITED", false]], "wexitstatus() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WEXITSTATUS", false]], "wfile (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.wfile", false]], "wfile (socketserver.datagramrequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.DatagramRequestHandler.wfile", false]], "what's new\uff08\u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff09": [[465, "index-8", false], [466, "index-7", false], [467, "index-20", false], [468, "index-13", false]], "what() (\u65bc imghdr \u6a21\u7d44\u4e2d)": [[249, "imghdr.what", false]], "what() (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.what", false]], "whathdr() (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.whathdr", false]], "whatis (pdb command)": [[297, "pdbcommand-whatis", false]], "when() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.when", false]], "when() (asyncio.timerhandle \u7684\u65b9\u6cd5)": [[126, "asyncio.TimerHandle.when", false]], "where (pdb command)": [[297, "pdbcommand-where", false]], "which() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.which", false]], "whichdb() (\u65bc dbm \u6a21\u7d44\u4e2d)": [[184, "dbm.whichdb", false]], "while": [[344, "index-1", false], [427, "index-4", true], [436, "index-30", false], [436, "index-33", false]], "while (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.While", false]], "whitespace (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.whitespace", false]], "whitespace (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.whitespace", false]], "whitespace_split (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.whitespace_split", false]], "widget (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Widget", false]], "width (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.width", false]], "width (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.width", false]], "width() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.width", false]], "wifcontinued() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFCONTINUED", false]], "wifexited() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFEXITED", false]], "wifsignaled() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFSIGNALED", false]], "wifstopped() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFSTOPPED", false]], "wildcard expansion\uff08\u842c\u7528\u5b57\u5143\u5c55\u958b\uff09": [[220, "index-0", false]], "win32_edition() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_edition", false]], "win32_is_iot() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_is_iot", false]], "win32_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_ver", false]], "windll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.WinDLL", false]], "window manager (widgets)": [[369, "index-3", false]], "window() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.window", false]], "window_height() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.window_height", false]], "window_width() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.window_width", false]], "windows": [[437, "index-4", false]], "windows ini file\uff08windows ini \u6a94\u6848\uff09": [[167, "index-0", false]], "windowserror": [[213, "WindowsError", false]], "windowspath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.WindowsPath", false]], "windowsproactoreventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.WindowsProactorEventLoopPolicy", false]], "windowsregistryfinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.WindowsRegistryFinder", false]], "windowsselectoreventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.WindowsSelectorEventLoopPolicy", false]], "winerror (oserror \u7684\u5c6c\u6027)": [[213, "OSError.winerror", false]], "winerror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.WinError", false]], "winfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.WINFUNCTYPE", false]], "winreg": [[405, "module-winreg", false]], "winsock": [[328, "index-2", false]], "winsound": [[406, "module-winsound", false]], "winver (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.winver", false]], "with": [[427, "index-16", true], [428, "index-106", false]], "with (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.With", false]], "with statement\uff08with \u9673\u8ff0\u5f0f\uff09": [[427, "index-16", false]], "with_except_start (opcode)": [[191, "opcode-WITH_EXCEPT_START", false]], "with_hostmask (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_hostmask", false]], "with_hostmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_hostmask", false]], "with_hostmask (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_hostmask", false]], "with_hostmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_hostmask", false]], "with_name() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_name", false]], "with_netmask (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_netmask", false]], "with_netmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_netmask", false]], "with_netmask (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_netmask", false]], "with_netmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_netmask", false]], "with_prefixlen (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_prefixlen", false]], "with_pymalloc() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.with_pymalloc", false]], "with_segments() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_segments", false]], "with_stem() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_stem", false]], "with_suffix() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_suffix", false]], "with_traceback() (baseexception \u7684\u65b9\u6cd5)": [[213, "BaseException.with_traceback", false]], "withitem (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.withitem", false]], "wnohang (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WNOHANG", false]], "wnowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WNOWAIT", false]], "wordchars (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.wordchars", false]], "world wide web \uff08\u5168\u7403\u8cc7\u8a0a\u7db2\uff09": [[256, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "wrap() (textwrap.textwrapper \u7684\u65b9\u6cd5)": [[364, "textwrap.TextWrapper.wrap", false]], "wrap() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.wrap", false]], "wrap_bio() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.wrap_bio", false]], "wrap_future() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.wrap_future", false]], "wrap_socket() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.wrap_socket", false]], "wrapper() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.wrapper", false]], "wrapperdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.WrapperDescriptorType", false]], "wraps() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.wraps", false]], "writable (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.WRITABLE", false]], "writable (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.WRITABLE", false]], "writable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.writable", false]], "writable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.writable", false]], "write (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.WRITE", false]], "write() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.write", false]], "write() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.write", false]], "write() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.write", false]], "write() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.write", false]], "write() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.write", false]], "write() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.write", false]], "write() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.write", false]], "write() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.write", false]], "write() (io.bufferedwriter \u7684\u65b9\u6cd5)": [[258, "io.BufferedWriter.write", false]], "write() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.write", false]], "write() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.write", false]], "write() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.write", false]], "write() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.write", false]], "write() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.write", false]], "write() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.write", false]], "write() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.write", false]], "write() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.write", false]], "write() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.write", false]], "write() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.write", false]], "write() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.write", false]], "write() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.write", false]], "write_byte() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.write_byte", false]], "write_bytes() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.write_bytes", false]], "write_docstringdict() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.write_docstringdict", false]], "write_eof() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.write_eof", false]], "write_eof() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.write_eof", false]], "write_eof() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.write_eof", false]], "write_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.write_history_file", false]], "write_restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "write_results() (trace.coverageresults \u7684\u65b9\u6cd5)": [[380, "trace.CoverageResults.write_results", false]], "write_text() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.write_text", false]], "write_through (io.textiowrapper \u7684\u5c6c\u6027)": [[258, "io.TextIOWrapper.write_through", false]], "writeall() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.writeall", false]], "writeframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.writeframes", false]], "writeframes() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.writeframes", false]], "writeframes() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.writeframes", false]], "writeframesraw() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.writeframesraw", false]], "writeframesraw() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.writeframesraw", false]], "writeframesraw() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.writeframesraw", false]], "writeheader() (csv.dictwriter \u7684\u65b9\u6cd5)": [[175, "csv.DictWriter.writeheader", false]], "writelines() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.writelines", false]], "writelines() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.writelines", false]], "writelines() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.writelines", false]], "writelines() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.writelines", false]], "writepy() (zipfile.pyzipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.PyZipFile.writepy", false]], "writer() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.writer", false]], "writerow() (csv.csvwriter \u7684\u65b9\u6cd5)": [[175, "csv.csvwriter.writerow", false]], "writerows() (csv.csvwriter \u7684\u65b9\u6cd5)": [[175, "csv.csvwriter.writerows", false]], "writestr() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.writestr", false]], "writetransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.WriteTransport", false]], "writev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.writev", false]], "writexml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.writexml", false]], "writing": [[436, "index-3", false]], "wrongdocumenterr": [[410, "xml.dom.WrongDocumentErr", false]], "ws_comma (2to3 fixer)": [[112, "to3fixer-ws_comma", false]], "wsgi_file_wrapper (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_file_wrapper", false]], "wsgi_multiprocess (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_multiprocess", false]], "wsgi_multithread (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_multithread", false]], "wsgi_run_once (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_run_once", false]], "wsgiapplication (\u65bc wsgiref.types \u6a21\u7d44\u4e2d)": [[407, "wsgiref.types.WSGIApplication", false]], "wsgienvironment (\u65bc wsgiref.types \u6a21\u7d44\u4e2d)": [[407, "wsgiref.types.WSGIEnvironment", false]], "wsgiref": [[407, "module-wsgiref", false]], "wsgiref.handlers": [[407, "module-wsgiref.handlers", false]], "wsgiref.headers": [[407, "module-wsgiref.headers", false]], "wsgiref.simple_server": [[407, "module-wsgiref.simple_server", false]], "wsgiref.types": [[407, "module-wsgiref.types", false]], "wsgiref.util": [[407, "module-wsgiref.util", false]], "wsgiref.validate": [[407, "module-wsgiref.validate", false]], "wsgirequesthandler (wsgiref.simple_server \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.simple_server.WSGIRequestHandler", false]], "wsgiserver (wsgiref.simple_server \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.simple_server.WSGIServer", false]], "wshowwindow (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.wShowWindow", false]], "wstopped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WSTOPPED", false]], "wstopsig() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WSTOPSIG", false]], "wstring_at() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.wstring_at", false]], "wtermsig() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WTERMSIG", false]], "wuntraced (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WUNTRACED", false]], "www": [[151, "index-0", false], [245, "index-0", false], [256, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "x (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.X", false]], "x509 certificate\uff08x509 \u6191\u8b49\uff09": [[341, "index-15", false]], "x_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.X_OK", false]], "xatom() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.xatom", false]], "xattr_create (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_CREATE", false]], "xattr_replace (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_REPLACE", false]], "xattr_size_max (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_SIZE_MAX", false]], "xcor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.xcor", false]], "xdr": [[408, "index-0", false]], "xdrlib": [[408, "module-xdrlib", false]], "xhdr() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.xhdr", false]], "xhtml": [[240, "index-0", false]], "xhtml_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XHTML_NAMESPACE", false]], "xml": [[409, "module-xml", false]], "xml() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.XML", false]], "xml.dom": [[410, "module-xml.dom", false]], "xml.dom.minidom": [[411, "module-xml.dom.minidom", false]], "xml.dom.pulldom": [[412, "module-xml.dom.pulldom", false]], "xml.etree.elementinclude": [[413, "module-xml.etree.ElementInclude", false]], "xml.etree.elementtree": [[413, "module-xml.etree.ElementTree", false]], "xml.parsers.expat": [[314, "module-xml.parsers.expat", false]], "xml.parsers.expat.errors": [[314, "module-xml.parsers.expat.errors", false]], "xml.parsers.expat.model": [[314, "module-xml.parsers.expat.model", false]], "xml.sax": [[414, "module-xml.sax", false]], "xml.sax.handler": [[415, "module-xml.sax.handler", false]], "xml.sax.saxutils": [[417, "module-xml.sax.saxutils", false]], "xml.sax.xmlreader": [[416, "module-xml.sax.xmlreader", false]], "xml_error_aborted (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ABORTED", false]], "xml_error_amplification_limit_breach (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_AMPLIFICATION_LIMIT_BREACH", false]], "xml_error_async_entity (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ASYNC_ENTITY", false]], "xml_error_attribute_external_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF", false]], "xml_error_bad_char_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF", false]], "xml_error_binary_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF", false]], "xml_error_cant_change_feature_once_parsing (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING", false]], "xml_error_duplicate_attribute (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE", false]], "xml_error_entity_declared_in_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ENTITY_DECLARED_IN_PE", false]], "xml_error_external_entity_handling (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_EXTERNAL_ENTITY_HANDLING", false]], "xml_error_feature_requires_xml_dtd (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD", false]], "xml_error_finished (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_FINISHED", false]], "xml_error_incomplete_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE", false]], "xml_error_incorrect_encoding (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INCORRECT_ENCODING", false]], "xml_error_invalid_argument (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INVALID_ARGUMENT", false]], "xml_error_invalid_token (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN", false]], "xml_error_junk_after_doc_element (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT", false]], "xml_error_misplaced_xml_pi (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI", false]], "xml_error_no_buffer (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_BUFFER", false]], "xml_error_no_elements (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS", false]], "xml_error_no_memory (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_MEMORY", false]], "xml_error_not_standalone (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE", false]], "xml_error_not_suspended (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED", false]], "xml_error_param_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF", false]], "xml_error_partial_char (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR", false]], "xml_error_publicid (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PUBLICID", false]], "xml_error_recursive_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF", false]], "xml_error_reserved_namespace_uri (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_NAMESPACE_URI", false]], "xml_error_reserved_prefix_xml (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_PREFIX_XML", false]], "xml_error_reserved_prefix_xmlns (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_PREFIX_XMLNS", false]], "xml_error_suspend_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SUSPEND_PE", false]], "xml_error_suspended (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SUSPENDED", false]], "xml_error_syntax (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SYNTAX", false]], "xml_error_tag_mismatch (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH", false]], "xml_error_text_decl (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_TEXT_DECL", false]], "xml_error_unbound_prefix (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX", false]], "xml_error_unclosed_cdata_section (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION", false]], "xml_error_unclosed_token (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN", false]], "xml_error_undeclaring_prefix (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX", false]], "xml_error_undefined_entity (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY", false]], "xml_error_unexpected_state (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNEXPECTED_STATE", false]], "xml_error_unknown_encoding (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING", false]], "xml_error_xml_decl (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_XML_DECL", false]], "xml_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XML_NAMESPACE", false]], "xmlcharrefreplace": [[158, "index-3", false]], "xmlcharrefreplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.xmlcharrefreplace_errors", false]], "xmldeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.XmlDeclHandler", false]], "xmlfilterbase (xml.sax.saxutils \u4e2d\u7684\u985e\u5225)": [[417, "xml.sax.saxutils.XMLFilterBase", false]], "xmlgenerator (xml.sax.saxutils \u4e2d\u7684\u985e\u5225)": [[417, "xml.sax.saxutils.XMLGenerator", false]], "xmlid() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.XMLID", false]], "xmlns_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XMLNS_NAMESPACE", false]], "xmlparser (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.XMLParser", false]], "xmlparsertype (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.XMLParserType", false]], "xmlpullparser (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.XMLPullParser", false]], "xmlreader (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.XMLReader", false]], "xmlrpc.client": [[419, "module-xmlrpc.client", false]], "xmlrpc.server": [[420, "module-xmlrpc.server", false]], "xor": [[430, "index-75", false]], "xor() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.xor", false]], "xover() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.xover", false]], "xrange (2to3 fixer)": [[112, "to3fixer-xrange", false]], "xreadlines (2to3 fixer)": [[112, "to3fixer-xreadlines", false]], "xview() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.xview", false]], "ycor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ycor", false]], "year": [[150, "cmdoption-calendar-arg-year", false]], "year (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.year", false]], "year (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.year", false]], "year 2038\uff082038 \u5e74\u554f\u984c\uff09": [[366, "index-2", false]], "yeardatescalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardatescalendar", false]], "yeardays2calendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardays2calendar", false]], "yeardayscalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardayscalendar", false]], "yes (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YES", false]], "yesexpr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.YESEXPR", false]], "yesno (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YESNO", false]], "yesnocancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YESNOCANCEL", false]], "yield": [[430, "index-23", false], [430, "index-34", false], [436, "index-26", false], [476, "index-11", false]], "yield (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Yield", false]], "yield from expression\uff08yield from \u904b\u7b97\u5f0f\uff09": [[430, "index-25", false]], "yield from\uff08\u5728\u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\u4e2d\uff09": [[476, "index-11", false]], "yield_value (opcode)": [[191, "opcode-YIELD_VALUE", false]], "yieldfrom (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.YieldFrom", false]], "yiq_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.yiq_to_rgb", false]], "yview() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.yview", false]], "z": [[345, "index-5", false]], "zen of python\uff08python \u4e4b\u79aa\uff09": [[87, "term-Zen-of-Python", true]], "zerodivisionerror": [[213, "ZeroDivisionError", false], [430, "index-67", false]], "zfill() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.zfill", false]], "zfill() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.zfill", false]], "zfill() (str \u7684\u65b9\u6cd5)": [[344, "str.zfill", false]], "zip (2to3 fixer)": [[112, "to3fixer-zip", false]], "zip()": [[225, "zip", false]], "zip_bzip2 (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_BZIP2", false]], "zip_deflated (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_DEFLATED", false]], "zip_longest() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.zip_longest", false]], "zip_lzma (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_LZMA", false]], "zip_stored (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_STORED", false]], "zipapp": [[421, "module-zipapp", false]], "zipapp \u547d\u4ee4\u5217\u9078\u9805": [[421, "cmdoption-zipapp-c", false], [421, "cmdoption-zipapp-h", false], [421, "cmdoption-zipapp-info", false], [421, "cmdoption-zipapp-m", false], [421, "cmdoption-zipapp-o", false], [421, "cmdoption-zipapp-p", false]], "zipfile": [[422, "module-zipfile", false]], "zipfile (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.ZipFile", false]], "zipfile \u547d\u4ee4\u5217\u9078\u9805": [[422, "cmdoption-zipfile-c", false], [422, "cmdoption-zipfile-create", false], [422, "cmdoption-zipfile-e", false], [422, "cmdoption-zipfile-extract", false], [422, "cmdoption-zipfile-l", false], [422, "cmdoption-zipfile-list", false], [422, "cmdoption-zipfile-metadata-encoding", false], [422, "cmdoption-zipfile-t", false], [422, "cmdoption-zipfile-test", false]], "zipimport": [[423, "module-zipimport", false]], "zipimporter (zipimport \u4e2d\u7684\u985e\u5225)": [[423, "zipimport.zipimporter", false]], "zipimporterror": [[423, "zipimport.ZipImportError", false]], "zipinfo (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.ZipInfo", false]], "zlib": [[424, "module-zlib", false]], "zlib_runtime_version (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.ZLIB_RUNTIME_VERSION", false]], "zlib_version (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.ZLIB_VERSION", false]], "zoneinfo": [[425, "module-zoneinfo", false]], "zoneinfo (zoneinfo \u4e2d\u7684\u985e\u5225)": [[425, "zoneinfo.ZoneInfo", false]], "zoneinfonotfounderror": [[425, "zoneinfo.ZoneInfoNotFoundError", false]], "zscore() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.zscore", false]], "{} \uff08\u82b1\u62ec\u865f\uff09": [[319, "index-8", false], [345, "index-2", false], [430, "index-16", false], [430, "index-17", false], [435, "index-25", false]], "| \uff08\u5782\u76f4\u7dda\uff09": [[319, "index-14", false], [344, "index-16", false], [430, "index-76", false]], "|=": [[436, "index-14", false]], "~ \uff08\u6ce2\u6d6a\u865f\uff09": [[294, "index-1", false], [344, "index-16", false], [430, "index-62", false]], "\u4ee5\u53ca os.makedirs()": [[293, "index-28", false]], "\u547d\u4ee4\u5217\u9078\u9805": [[455, "cmdoption-0", false], [455, "cmdoption-B", false], [455, "cmdoption-E", false], [455, "cmdoption-I", false], [455, "cmdoption-J", false], [455, "cmdoption-O", false], [455, "cmdoption-OO", false], [455, "cmdoption-P", false], [455, "cmdoption-R", false], [455, "cmdoption-S", false], [455, "cmdoption-V", false], [455, "cmdoption-W", false], [455, "cmdoption-X", false], [455, "cmdoption-b", false], [455, "cmdoption-c", false], [455, "cmdoption-check-hash-based-pycs", false], [455, "cmdoption-d", false], [455, "cmdoption-h", false], [455, "cmdoption-help", false], [455, "cmdoption-help-all", false], [455, "cmdoption-help-env", false], [455, "cmdoption-help-xoptions", false], [455, "cmdoption-i", false], [455, "cmdoption-m", false], [455, "cmdoption-q", false], [455, "cmdoption-s", false], [455, "cmdoption-u", false], [455, "cmdoption-v", false], [455, "cmdoption-version", false], [455, "cmdoption-x", false], [456, "cmdoption-0", false], [456, "cmdoption-1", false], [456, "cmdoption-arg-CONFIG_SITE", false], [456, "cmdoption-build", false], [456, "cmdoption-disable-ipv6", false], [456, "cmdoption-disable-test-modules", false], [456, "cmdoption-enable-big-digits", false], [456, "cmdoption-enable-bolt", false], [456, "cmdoption-enable-framework", false], [456, "cmdoption-enable-loadable-sqlite-extensions", false], [456, "cmdoption-enable-optimizations", false], [456, "cmdoption-enable-profiling", false], [456, "cmdoption-enable-pystats", false], [456, "cmdoption-enable-shared", false], [456, "cmdoption-enable-universalsdk", false], [456, "cmdoption-enable-wasm-dynamic-linking", false], [456, "cmdoption-enable-wasm-pthreads", false], [456, "cmdoption-exec-prefix", false], [456, "cmdoption-host", false], [456, "cmdoption-prefix", false], [456, "cmdoption-with-address-sanitizer", false], [456, "cmdoption-with-assertions", false], [456, "cmdoption-with-build-python", false], [456, "cmdoption-with-builtin-hashlib-hashes", false], [456, "cmdoption-with-computed-gotos", false], [456, "cmdoption-with-dbmliborder", false], [456, "cmdoption-with-dtrace", false], [456, "cmdoption-with-emscripten-target", false], [456, "cmdoption-with-ensurepip", false], [456, "cmdoption-with-framework-name", false], [456, "cmdoption-with-hash-algorithm", false], [456, "cmdoption-with-libc", false], [456, "cmdoption-with-libm", false], [456, "cmdoption-with-libs", false], [456, "cmdoption-with-lto", false], [456, "cmdoption-with-memory-sanitizer", false], [456, "cmdoption-with-openssl", false], [456, "cmdoption-with-openssl-rpath", false], [456, "cmdoption-with-pkg-config", false], [456, "cmdoption-with-platlibdir", false], [456, "cmdoption-with-pydebug", false], [456, "cmdoption-with-readline", false], [456, "cmdoption-with-ssl-default-suites", false], [456, "cmdoption-with-strict-overflow", false], [456, "cmdoption-with-suffix", false], [456, "cmdoption-with-system-expat", false], [456, "cmdoption-with-system-libmpdec", false], [456, "cmdoption-with-trace-refs", false], [456, "cmdoption-with-tzpath", false], [456, "cmdoption-with-undefined-behavior-sanitizer", false], [456, "cmdoption-with-universal-archs", false], [456, "cmdoption-with-valgrind", false], [456, "cmdoption-with-wheel-pkg-dir", false], [456, "cmdoption-without-c-locale-coercion", false], [456, "cmdoption-without-decimal-contextvar", false], [456, "cmdoption-without-doc-strings", false], [456, "cmdoption-without-freelists", false], [456, "cmdoption-without-pymalloc", false], [456, "cmdoption-without-readline", false], [456, "cmdoption-without-static-libpython", false]], "\u57fa\u6e96\u91cf\u6e2c (benchmarking)": [[367, "index-0", false]], "\u6027\u80fd\u8868\u73fe": [[367, "index-0", false]], "\u65bc argparse \u6a21\u7d44\u4e2d": [[120, "index-0", false], [120, "index-1", false], [120, "index-2", false]], "\u65bc ast \u6587\u6cd5\u4e2d": [[122, "index-0", false], [122, "index-1", false]], "\u65bc cgi \u8173\u672c\u4e2d": [[152, "index-0", false]], "\u65bc command interpreter\uff08\u6307\u4ee4\u76f4\u8b6f\u5668\uff09\u4e2d": [[155, "index-0", false]], "\u65bc comprehensions\uff08\u7d9c\u5408\u904b\u7b97\uff09": [[430, "index-12", false], [430, "index-13", false]], "\u65bc curses \u6a21\u7d44\u4e2d": [[178, "index-0", false]], "\u65bc doctests \u4e2d": [[193, "index-3", false], [193, "index-4", false]], "\u65bc expression list\uff08\u904b\u7b97\u5f0f\u4e32\u5217\uff09": [[430, "index-93", false]], "\u65bc glob \u98a8\u683c\u7684\u842c\u7528\u5b57\u5143\u4e2d": [[220, "index-2", false], [231, "index-1", false], [231, "index-2", false]], "\u65bc pathnames\uff08\u8def\u5f91\u540d\u7a31\uff09\u4e2d": [[293, "index-45", false], [293, "index-46", false], [293, "index-47", false], [293, "index-49", false], [293, "index-50", false]], "\u65bc printf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-36", false], [344, "index-37", false], [344, "index-46", false], [344, "index-47", false]], "\u65bc sql \u9673\u8ff0\u5f0f\u4e2d": [[340, "index-6", false], [340, "index-7", false]], "\u65bc struct format strings\uff08\u7d50\u69cb\u683c\u5f0f\u5b57\u4e32\uff09": [[347, "index-1", false], [347, "index-2", false], [347, "index-3", false]], "\u65bc template strings\uff08\u6a21\u677f\u5b57\u4e32\uff09": [[345, "index-13", false]], "\u65bc\u51fd\u5f0f\u547c\u53eb\u4e2d": [[430, "index-47", false], [430, "index-49", false], [430, "index-50", false], [441, "index-3", false], [441, "index-4", false]], "\u65bc\u5b57\u4e32\u683c\u5f0f\u5316": [[345, "index-10", false], [345, "index-2", false], [345, "index-3", false], [345, "index-4", false], [345, "index-5", false], [345, "index-7", false], [345, "index-8", false]], "\u65bc\u5b57\u5178\u904b\u7b97\u5f0f": [[430, "index-17", false]], "\u65bc\u5b57\u5178\u986f\u793a": [[430, "index-17", false], [430, "index-18", false]], "\u65bc\u6578\u503c\u5e38\u6578\u4e2d": [[435, "index-28", false], [435, "index-29", false], [435, "index-30", false]], "\u65bc\u683c\u5f0f\u5316\u5b57\u4e32\u5e38\u6578\u4e2d": [[435, "index-25", false]], "\u65bc\u6b63\u898f\u8868\u793a\u5f0f\u4e2d": [[319, "index-0", false], [319, "index-1", false], [319, "index-10", false], [319, "index-11", false], [319, "index-12", false], [319, "index-13", false], [319, "index-14", false], [319, "index-15", false], [319, "index-16", false], [319, "index-17", false], [319, "index-18", false], [319, "index-19", false], [319, "index-2", false], [319, "index-20", false], [319, "index-21", false], [319, "index-22", false], [319, "index-23", false], [319, "index-24", false], [319, "index-25", false], [319, "index-26", false], [319, "index-27", false], [319, "index-28", false], [319, "index-29", false], [319, "index-3", false], [319, "index-30", false], [319, "index-31", false], [319, "index-32", false], [319, "index-33", false], [319, "index-34", false], [319, "index-35", false], [319, "index-36", false], [319, "index-37", false], [319, "index-38", false], [319, "index-39", false], [319, "index-4", false], [319, "index-5", false], [319, "index-6", false], [319, "index-7", false], [319, "index-8", false], [319, "index-9", false]], "\u65bc\u76ee\u6a19\u5217\u8868\u4e2d": [[436, "index-6", false]], "\u65bc\u8ce6\u503c\u76ee\u6a19\u5217\u8868\u4e2d": [[436, "index-6", false]], "\u6a21\u7d44": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [33, "index-38", false], [33, "index-42", false], [33, "index-45", false], [344, "index-15", false], [344, "index-33", false], [344, "index-40", false], [344, "index-65", false]], "\u74b0\u5883\u8b8a\u6578": [[33, "index-17", false], [33, "index-18", false], [33, "index-3", false], [33, "index-30", false], [33, "index-31", false], [33, "index-62", false], [33, "index-63", false], [33, "index-64", false], [33, "index-65", false], [33, "index-66", false], [33, "index-67", false], [33, "index-68", false], [33, "index-71", false], [33, "index-72", false], [33, "index-73", false], [33, "index-74", false], [33, "index-9", false], [34, "index-1", false], [34, "index-10", false], [34, "index-11", false], [34, "index-12", false], [34, "index-13", false], [34, "index-14", false], [34, "index-15", false], [34, "index-16", false], [34, "index-18", false], [34, "index-19", false], [34, "index-2", false], [34, "index-20", false], [34, "index-21", false], [34, "index-22", false], [34, "index-23", false], [34, "index-24", false], [34, "index-25", false], [34, "index-26", false], [34, "index-27", false], [34, "index-28", false], [34, "index-29", false], [34, "index-3", false], [34, "index-30", false], [34, "index-31", false], [34, "index-32", false], [34, "index-35", false], [34, "index-36", false], [34, "index-4", false], [34, "index-5", false], [34, "index-6", false], [34, "index-8", false], [34, "index-9", false], [35, "index-41", false], [35, "index-42", false], [35, "index-43", false], [35, "index-44", false], [35, "index-45", false], [35, "index-46", false], [42, "index-1", false], [42, "index-2", false], [42, "index-3", false], [42, "index-4", false], [42, "index-5", false], [63, "index-0", false], [71, "index-0", false], [84, "index-0", false], [84, "index-1", false], [85, "index-4", false], [104, "index-2", false], [125, "index-2", false], [126, "index-17", false], [151, "index-3", false], [151, "index-4", false], [151, "index-6", false], [163, "index-1", false], [177, "index-0", false], [177, "index-1", false], [177, "index-2", false], [177, "index-3", false], [177, "index-4", false], [177, "index-5", false], [177, "index-6", false], [188, "index-12", false], [188, "index-13", false], [188, "index-14", false], [188, "index-15", false], [188, "index-16", false], [188, "index-17", false], [214, "index-0", false], [225, "index-16", false], [225, "index-19", false], [228, "index-0", false], [229, "index-6", false], [229, "index-7", false], [229, "index-8", false], [230, "index-0", false], [230, "index-1", false], [230, "index-2", false], [230, "index-3", false], [230, "index-5", false], [230, "index-6", false], [230, "index-7", false], [230, "index-8", false], [247, "index-5", false], [247, "index-6", false], [258, "index-9", false], [266, "index-1", false], [266, "index-2", false], [266, "index-3", false], [293, "index-1", false], [293, "index-10", false], [293, "index-11", false], [293, "index-2", false], [293, "index-3", false], [293, "index-33", false], [293, "index-34", false], [293, "index-35", false], [293, "index-36", false], [293, "index-39", false], [293, "index-4", false], [293, "index-40", false], [293, "index-41", false], [293, "index-42", false], [293, "index-43", false], [293, "index-52", false], [294, "index-16", false], [294, "index-17", false], [294, "index-18", false], [294, "index-19", false], [294, "index-20", false], [294, "index-21", false], [295, "index-1", false], [295, "index-2", false], [311, "index-3", false], [311, "index-6", false], [311, "index-7", false], [313, "index-1", false], [320, "index-0", false], [327, "index-6", false], [334, "index-3", false], [334, "index-5", false], [334, "index-6", false], [334, "index-7", false], [334, "index-8", false], [341, "index-32", false], [341, "index-33", false], [344, "index-67", false], [344, "index-68", false], [348, "index-2", false], [348, "index-3", false], [348, "index-4", false], [352, "index-17", false], [352, "index-18", false], [352, "index-22", false], [352, "index-23", false], [352, "index-24", false], [352, "index-3", false], [352, "index-33", false], [352, "index-35", false], [352, "index-36", false], [352, "index-37", false], [352, "index-38", false], [352, "index-4", false], [352, "index-5", false], [352, "index-6", false], [352, "index-7", false], [354, "index-0", false], [354, "index-1", false], [354, "index-2", false], [354, "index-3", false], [354, "index-4", false], [360, "index-7", false], [360, "index-8", false], [360, "index-9", false], [362, "index-0", false], [362, "index-1", false], [362, "index-2", false], [366, "index-13", false], [366, "index-14", false], [366, "index-15", false], [366, "index-16", false], [366, "index-17", false], [366, "index-18", false], [369, "index-0", false], [369, "index-1", false], [382, "index-0", false], [382, "index-1", false], [382, "index-2", false], [395, "index-3", false], [399, "index-10", false], [399, "index-11", false], [399, "index-12", false], [400, "index-1", false], [400, "index-2", false], [400, "index-3", false], [400, "index-4", false], [400, "index-5", false], [403, "index-0", false], [403, "index-1", false], [403, "index-2", false], [403, "index-3", false], [410, "index-0", false], [425, "envvar-PYTHONTZPATH", false], [425, "index-2", false], [428, "index-114", false], [428, "index-61", false], [432, "index-18", false], [438, "index-12", false], [438, "index-13", false], [450, "index-14", false], [450, "index-15", false], [450, "index-17", false], [450, "index-18", false], [455, "envvar-PYTHONASYNCIODEBUG", false], [455, "envvar-PYTHONBREAKPOINT", false], [455, "envvar-PYTHONCASEOK", false], [455, "envvar-PYTHONCOERCECLOCALE", false], [455, "envvar-PYTHONDEBUG", false], [455, "envvar-PYTHONDEVMODE", false], [455, "envvar-PYTHONDONTWRITEBYTECODE", false], [455, "envvar-PYTHONDUMPREFS", false], [455, "envvar-PYTHONDUMPREFSFILE-FILENAME", false], [455, "envvar-PYTHONEXECUTABLE", false], [455, "envvar-PYTHONFAULTHANDLER", false], [455, "envvar-PYTHONHASHSEED", false], [455, "envvar-PYTHONHOME", false], [455, "envvar-PYTHONINSPECT", false], [455, "envvar-PYTHONINTMAXSTRDIGITS", false], [455, "envvar-PYTHONIOENCODING", false], [455, "envvar-PYTHONLEGACYWINDOWSFSENCODING", false], [455, "envvar-PYTHONLEGACYWINDOWSSTDIO", false], [455, "envvar-PYTHONMALLOC", false], [455, "envvar-PYTHONMALLOCSTATS", false], [455, "envvar-PYTHONNODEBUGRANGES", false], [455, "envvar-PYTHONNOUSERSITE", false], [455, "envvar-PYTHONOPTIMIZE", false], [455, "envvar-PYTHONPATH", false], [455, "envvar-PYTHONPERFSUPPORT", false], [455, "envvar-PYTHONPLATLIBDIR", false], [455, "envvar-PYTHONPROFILEIMPORTTIME", false], [455, "envvar-PYTHONPYCACHEPREFIX", false], [455, "envvar-PYTHONSAFEPATH", false], [455, "envvar-PYTHONSTARTUP", false], [455, "envvar-PYTHONTRACEMALLOC", false], [455, "envvar-PYTHONUNBUFFERED", false], [455, "envvar-PYTHONUSERBASE", false], [455, "envvar-PYTHONUTF8", false], [455, "envvar-PYTHONVERBOSE", false], [455, "envvar-PYTHONWARNDEFAULTENCODING", false], [455, "envvar-PYTHONWARNINGS", false], [455, "index-1", false], [455, "index-12", false], [455, "index-13", false], [455, "index-14", false], [455, "index-19", false], [455, "index-2", false], [455, "index-20", false], [455, "index-21", false], [455, "index-22", false], [455, "index-23", false], [455, "index-24", false], [455, "index-25", false], [455, "index-26", false], [455, "index-27", false], [455, "index-28", false], [455, "index-29", false], [455, "index-3", false], [455, "index-30", false], [455, "index-31", false], [455, "index-32", false], [455, "index-33", false], [455, "index-34", false], [455, "index-35", false], [455, "index-36", false], [455, "index-37", false], [455, "index-38", false], [455, "index-4", false], [455, "index-41", false], [455, "index-43", false], [455, "index-44", false], [455, "index-5", false], [455, "index-55", false], [455, "index-56", false], [455, "index-57", false], [455, "index-6", false], [455, "index-8", false], [456, "envvar-BASECFLAGS", false], [456, "envvar-BASECPPFLAGS", false], [456, "envvar-BLDSHARED", false], [456, "envvar-CC", false], [456, "envvar-CCSHARED", false], [456, "envvar-CFLAGS", false], [456, "envvar-CFLAGSFORSHARED", false], [456, "envvar-CFLAGS_ALIASING", false], [456, "envvar-CFLAGS_NODIST", false], [456, "envvar-COMPILEALL_OPTS", false], [456, "envvar-CONFIGURE_CFLAGS", false], [456, "envvar-CONFIGURE_CFLAGS_NODIST", false], [456, "envvar-CONFIGURE_CPPFLAGS", false], [456, "envvar-CONFIGURE_LDFLAGS", false], [456, "envvar-CONFIGURE_LDFLAGS_NODIST", false], [456, "envvar-CPPFLAGS", false], [456, "envvar-CXX", false], [456, "envvar-EXTRA_CFLAGS", false], [456, "envvar-LDFLAGS", false], [456, "envvar-LDFLAGS_NODIST", false], [456, "envvar-LDSHARED", false], [456, "envvar-LIBS", false], [456, "envvar-LINKCC", false], [456, "envvar-OPT", false], [456, "envvar-PROFILE_TASK", false], [456, "envvar-PURIFY", false], [456, "envvar-PY_BUILTIN_MODULE_CFLAGS", false], [456, "envvar-PY_CFLAGS", false], [456, "envvar-PY_CFLAGS_NODIST", false], [456, "envvar-PY_CORE_CFLAGS", false], [456, "envvar-PY_CORE_LDFLAGS", false], [456, "envvar-PY_CPPFLAGS", false], [456, "envvar-PY_LDFLAGS", false], [456, "envvar-PY_LDFLAGS_NODIST", false], [456, "envvar-PY_STDMODULE_CFLAGS", false], [456, "index-10", false], [456, "index-11", false], [456, "index-12", false], [456, "index-13", false], [456, "index-14", false], [456, "index-15", false], [456, "index-16", false], [456, "index-17", false], [456, "index-18", false], [456, "index-19", false], [456, "index-20", false], [456, "index-21", false], [456, "index-22", false], [456, "index-23", false], [456, "index-24", false], [456, "index-25", false], [456, "index-26", false], [456, "index-27", false], [456, "index-28", false], [456, "index-29", false], [456, "index-34", false], [456, "index-36", false], [456, "index-37", false], [456, "index-4", false], [456, "index-5", false], [456, "index-7", false], [456, "index-9", false], [459, "index-2", false], [460, "index-2", false], [461, "index-10", false], [461, "index-11", false], [461, "index-12", false], [461, "index-13", false], [461, "index-14", false], [461, "index-15", false], [461, "index-18", false], [461, "index-2", false], [461, "index-20", false], [461, "index-22", false], [461, "index-23", false], [461, "index-24", false], [461, "index-25", false], [461, "index-26", false], [461, "index-27", false], [461, "index-28", false], [461, "index-29", false], [461, "index-3", false], [461, "index-30", false], [461, "index-31", false], [461, "index-32", false], [461, "index-33", false], [461, "index-34", false], [461, "index-35", false], [461, "index-36", false], [461, "index-37", false], [461, "index-4", false], [461, "index-40", false], [461, "index-5", false], [461, "index-6", false], [461, "index-7", false], [461, "index-8", false], [461, "index-9", false], [463, "index-11", false], [465, "index-24", false], [465, "index-25", false], [465, "index-26", false], [465, "index-27", false], [465, "index-28", false], [468, "index-20", false], [468, "index-21", false], [468, "index-24", false], [468, "index-4", false], [468, "index-5", false], [468, "index-6", false], [469, "index-1", false], [469, "index-11", false], [469, "index-8", false], [472, "index-98", false], [473, "index-103", false], [473, "index-83", false], [473, "index-88", false], [474, "index-23", false], [474, "index-62", false], [475, "index-10", false], [476, "index-23", false], [476, "index-24", false], [476, "index-35", false], [477, "index-40", false], [477, "index-41", false], [477, "index-50", false], [477, "index-53", false], [477, "index-54", false], [477, "index-55", false], [477, "index-56", false], [477, "index-57", false], [477, "index-58", false], [479, "index-19", false], [479, "index-2", false], [479, "index-21", false], [479, "index-27", false], [479, "index-38", false], [480, "index-12", false], [480, "index-26", false], [480, "index-27", false], [480, "index-31", false], [480, "index-36", false], [480, "index-4", false], [480, "index-8", false], [481, "index-13", false], [481, "index-14", false], [481, "index-2", false], [481, "index-20", false], [481, "index-21", false], [481, "index-22", false], [481, "index-3", false], [482, "index-21", false], [483, "index-108", false], [483, "index-138", false], [483, "index-154", false], [483, "index-193", false], [483, "index-2", false], [483, "index-201", false], [483, "index-202", false], [483, "index-203", false], [483, "index-205", false], [483, "index-209", false], [483, "index-213", false], [483, "index-214", false], [483, "index-216", false], [483, "index-218", false], [483, "index-220", false], [483, "index-227", false], [483, "index-228", false], [483, "index-232", false], [483, "index-233", false], [483, "index-237", false], [483, "index-238", false], [483, "index-246", false], [483, "index-257", false], [483, "index-258", false], [483, "index-287", false], [483, "index-288", false], [483, "index-42", false], [483, "index-51", false], [483, "index-52", false], [483, "index-55", false], [483, "index-56", false], [483, "index-65", false], [483, "index-77", false], [483, "index-80", false], [483, "index-88", false], [483, "index-95", false]], "\u7bc4\u4f8b": [[430, "index-34", false]], "\u8207 argument\uff08\u5f15\u6578\uff09\u7684\u5dee\u7570": [[85, "index-1", false]], "\u8207 parameter\uff08\u53c3\u6578\uff09\u7684\u5dee\u7570": [[85, "index-1", false]], "\uff08\u4ea6\u8acb\u898b string\uff09": [[344, "index-28", false]], "\uff08\u4f7f\u7528\u65bc hashlib \u6a21\u7d44\u4e2d\uff09": [[235, "index-2", false]], "\uff08\u7528\u65bc ssl \u6a21\u7d44\uff09": [[341, "index-0", false]]}, "objects": {"": [[66, 0, 1, "c.CO_FUTURE_DIVISION", "CO_FUTURE_DIVISION"], [58, 1, 1, "c.METH_CLASS", "METH_CLASS"], [58, 1, 1, "c.METH_COEXIST", "METH_COEXIST"], [58, 1, 1, "c.METH_FASTCALL", "METH_FASTCALL"], [58, 1, 1, "c.METH_KEYWORDS", "METH_KEYWORDS"], [58, 1, 1, "c.METH_METHOD", "METH_METHOD"], [58, 1, 1, "c.METH_NOARGS", "METH_NOARGS"], [58, 1, 1, "c.METH_O", "METH_O"], [58, 1, 1, "c.METH_STATIC", "METH_STATIC"], [58, 1, 1, "c.METH_VARARGS", "METH_VARARGS"], [42, 1, 1, "c.PYMEM_DOMAIN_MEM", "PYMEM_DOMAIN_MEM"], [42, 1, 1, "c.PYMEM_DOMAIN_OBJ", "PYMEM_DOMAIN_OBJ"], [42, 1, 1, "c.PYMEM_DOMAIN_RAW", "PYMEM_DOMAIN_RAW"], [4, 1, 1, "c.PY_MAJOR_VERSION", "PY_MAJOR_VERSION"], [4, 1, 1, "c.PY_MICRO_VERSION", "PY_MICRO_VERSION"], [4, 1, 1, "c.PY_MINOR_VERSION", "PY_MINOR_VERSION"], [4, 1, 1, "c.PY_RELEASE_LEVEL", "PY_RELEASE_LEVEL"], [4, 1, 1, "c.PY_RELEASE_SERIAL", "PY_RELEASE_SERIAL"], [10, 1, 1, "c.PY_VECTORCALL_ARGUMENTS_OFFSET", "PY_VECTORCALL_ARGUMENTS_OFFSET"], [4, 1, 1, "c.PY_VERSION_HEX", "PY_VERSION_HEX"], [36, 2, 1, "c.PyAIter_Check", "PyAIter_Check"], [64, 4, 1, "c.PyASCIIObject", "PyASCIIObject"], [55, 2, 1, "c.PyAnySet_Check", "PyAnySet_Check"], [55, 2, 1, "c.PyAnySet_CheckExact", "PyAnySet_CheckExact"], [5, 2, 1, "c.PyArg_Parse", "PyArg_Parse"], [5, 2, 1, "c.PyArg_ParseTuple", "PyArg_ParseTuple"], [5, 2, 1, "c.PyArg_ParseTupleAndKeywords", "PyArg_ParseTupleAndKeywords"], [5, 2, 1, "c.PyArg_UnpackTuple", "PyArg_UnpackTuple"], [5, 2, 1, "c.PyArg_VaParse", "PyArg_VaParse"], [5, 2, 1, "c.PyArg_VaParseTupleAndKeywords", "PyArg_VaParseTupleAndKeywords"], [5, 2, 1, "c.PyArg_ValidateKeywordArguments", "PyArg_ValidateKeywordArguments"], [63, 4, 1, "c.PyAsyncMethods", "PyAsyncMethods"], [7, 1, 1, "c.PyBUF_ANY_CONTIGUOUS", "PyBUF_ANY_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_CONTIG", "PyBUF_CONTIG"], [7, 1, 1, "c.PyBUF_CONTIG_RO", "PyBUF_CONTIG_RO"], [7, 1, 1, "c.PyBUF_C_CONTIGUOUS", "PyBUF_C_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_FORMAT", "PyBUF_FORMAT"], [7, 1, 1, "c.PyBUF_FULL", "PyBUF_FULL"], [7, 1, 1, "c.PyBUF_FULL_RO", "PyBUF_FULL_RO"], [7, 1, 1, "c.PyBUF_F_CONTIGUOUS", "PyBUF_F_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_INDIRECT", "PyBUF_INDIRECT"], [7, 1, 1, "c.PyBUF_MAX_NDIM", "PyBUF_MAX_NDIM"], [7, 1, 1, "c.PyBUF_ND", "PyBUF_ND"], [43, 1, 1, "c.PyBUF_READ", "PyBUF_READ"], [7, 1, 1, "c.PyBUF_RECORDS", "PyBUF_RECORDS"], [7, 1, 1, "c.PyBUF_RECORDS_RO", "PyBUF_RECORDS_RO"], [7, 1, 1, "c.PyBUF_SIMPLE", "PyBUF_SIMPLE"], [7, 1, 1, "c.PyBUF_STRIDED", "PyBUF_STRIDED"], [7, 1, 1, "c.PyBUF_STRIDED_RO", "PyBUF_STRIDED_RO"], [7, 1, 1, "c.PyBUF_STRIDES", "PyBUF_STRIDES"], [7, 1, 1, "c.PyBUF_WRITABLE", "PyBUF_WRITABLE"], [43, 1, 1, "c.PyBUF_WRITE", "PyBUF_WRITE"], [6, 2, 1, "c.PyBool_Check", "PyBool_Check"], [6, 2, 1, "c.PyBool_FromLong", "PyBool_FromLong"], [6, 0, 1, "c.PyBool_Type", "PyBool_Type"], [63, 4, 1, "c.PyBufferProcs", "PyBufferProcs"], [7, 2, 1, "c.PyBuffer_FillContiguousStrides", "PyBuffer_FillContiguousStrides"], [7, 2, 1, "c.PyBuffer_FillInfo", "PyBuffer_FillInfo"], [7, 2, 1, "c.PyBuffer_FromContiguous", "PyBuffer_FromContiguous"], [7, 2, 1, "c.PyBuffer_GetPointer", "PyBuffer_GetPointer"], [7, 2, 1, "c.PyBuffer_IsContiguous", "PyBuffer_IsContiguous"], [7, 2, 1, "c.PyBuffer_Release", "PyBuffer_Release"], [7, 2, 1, "c.PyBuffer_SizeFromFormat", "PyBuffer_SizeFromFormat"], [7, 2, 1, "c.PyBuffer_ToContiguous", "PyBuffer_ToContiguous"], [8, 4, 1, "c.PyByteArrayObject", "PyByteArrayObject"], [8, 2, 1, "c.PyByteArray_AS_STRING", "PyByteArray_AS_STRING"], [8, 2, 1, "c.PyByteArray_AsString", "PyByteArray_AsString"], [8, 2, 1, "c.PyByteArray_Check", "PyByteArray_Check"], [8, 2, 1, "c.PyByteArray_CheckExact", "PyByteArray_CheckExact"], [8, 2, 1, "c.PyByteArray_Concat", "PyByteArray_Concat"], [8, 2, 1, "c.PyByteArray_FromObject", "PyByteArray_FromObject"], [8, 2, 1, "c.PyByteArray_FromStringAndSize", "PyByteArray_FromStringAndSize"], [8, 2, 1, "c.PyByteArray_GET_SIZE", "PyByteArray_GET_SIZE"], [8, 2, 1, "c.PyByteArray_Resize", "PyByteArray_Resize"], [8, 2, 1, "c.PyByteArray_Size", "PyByteArray_Size"], [8, 0, 1, "c.PyByteArray_Type", "PyByteArray_Type"], [9, 4, 1, "c.PyBytesObject", "PyBytesObject"], [9, 2, 1, "c.PyBytes_AS_STRING", "PyBytes_AS_STRING"], [9, 2, 1, "c.PyBytes_AsString", "PyBytes_AsString"], [9, 2, 1, "c.PyBytes_AsStringAndSize", "PyBytes_AsStringAndSize"], [9, 2, 1, "c.PyBytes_Check", "PyBytes_Check"], [9, 2, 1, "c.PyBytes_CheckExact", "PyBytes_CheckExact"], [9, 2, 1, "c.PyBytes_Concat", "PyBytes_Concat"], [9, 2, 1, "c.PyBytes_ConcatAndDel", "PyBytes_ConcatAndDel"], [9, 2, 1, "c.PyBytes_FromFormat", "PyBytes_FromFormat"], [9, 2, 1, "c.PyBytes_FromFormatV", "PyBytes_FromFormatV"], [9, 2, 1, "c.PyBytes_FromObject", "PyBytes_FromObject"], [9, 2, 1, "c.PyBytes_FromString", "PyBytes_FromString"], [9, 2, 1, "c.PyBytes_FromStringAndSize", "PyBytes_FromStringAndSize"], [9, 2, 1, "c.PyBytes_GET_SIZE", "PyBytes_GET_SIZE"], [9, 2, 1, "c.PyBytes_Size", "PyBytes_Size"], [9, 0, 1, "c.PyBytes_Type", "PyBytes_Type"], [58, 4, 1, "c.PyCFunction", "PyCFunction"], [58, 4, 1, "c.PyCFunctionWithKeywords", "PyCFunctionWithKeywords"], [58, 2, 1, "c.PyCFunction_New", "PyCFunction_New"], [58, 2, 1, "c.PyCFunction_NewEx", "PyCFunction_NewEx"], [58, 4, 1, "c.PyCMethod", "PyCMethod"], [58, 2, 1, "c.PyCMethod_New", "PyCMethod_New"], [37, 2, 1, "c.PyCallIter_Check", "PyCallIter_Check"], [37, 2, 1, "c.PyCallIter_New", "PyCallIter_New"], [37, 0, 1, "c.PyCallIter_Type", "PyCallIter_Type"], [10, 2, 1, "c.PyCallable_Check", "PyCallable_Check"], [11, 4, 1, "c.PyCapsule", "PyCapsule"], [11, 2, 1, "c.PyCapsule_CheckExact", "PyCapsule_CheckExact"], [11, 4, 1, "c.PyCapsule_Destructor", "PyCapsule_Destructor"], [11, 2, 1, "c.PyCapsule_GetContext", "PyCapsule_GetContext"], [11, 2, 1, "c.PyCapsule_GetDestructor", "PyCapsule_GetDestructor"], [11, 2, 1, "c.PyCapsule_GetName", "PyCapsule_GetName"], [11, 2, 1, "c.PyCapsule_GetPointer", "PyCapsule_GetPointer"], [11, 2, 1, "c.PyCapsule_Import", "PyCapsule_Import"], [11, 2, 1, "c.PyCapsule_IsValid", "PyCapsule_IsValid"], [11, 2, 1, "c.PyCapsule_New", "PyCapsule_New"], [11, 2, 1, "c.PyCapsule_SetContext", "PyCapsule_SetContext"], [11, 2, 1, "c.PyCapsule_SetDestructor", "PyCapsule_SetDestructor"], [11, 2, 1, "c.PyCapsule_SetName", "PyCapsule_SetName"], [11, 2, 1, "c.PyCapsule_SetPointer", "PyCapsule_SetPointer"], [12, 4, 1, "c.PyCellObject", "PyCellObject"], [12, 2, 1, "c.PyCell_Check", "PyCell_Check"], [12, 2, 1, "c.PyCell_GET", "PyCell_GET"], [12, 2, 1, "c.PyCell_Get", "PyCell_Get"], [12, 2, 1, "c.PyCell_New", "PyCell_New"], [12, 2, 1, "c.PyCell_SET", "PyCell_SET"], [12, 2, 1, "c.PyCell_Set", "PyCell_Set"], [12, 0, 1, "c.PyCell_Type", "PyCell_Type"], [13, 4, 1, "c.PyCodeEvent", "PyCodeEvent"], [13, 4, 1, "c.PyCodeObject", "PyCodeObject"], [13, 2, 1, "c.PyCode_AddWatcher", "PyCode_AddWatcher"], [13, 2, 1, "c.PyCode_Addr2Line", "PyCode_Addr2Line"], [13, 2, 1, "c.PyCode_Addr2Location", "PyCode_Addr2Location"], [13, 2, 1, "c.PyCode_Check", "PyCode_Check"], [13, 2, 1, "c.PyCode_ClearWatcher", "PyCode_ClearWatcher"], [13, 2, 1, "c.PyCode_GetCellvars", "PyCode_GetCellvars"], [13, 2, 1, "c.PyCode_GetCode", "PyCode_GetCode"], [13, 2, 1, "c.PyCode_GetFirstFree", "PyCode_GetFirstFree"], [13, 2, 1, "c.PyCode_GetFreevars", "PyCode_GetFreevars"], [13, 2, 1, "c.PyCode_GetNumFree", "PyCode_GetNumFree"], [13, 2, 1, "c.PyCode_GetVarnames", "PyCode_GetVarnames"], [13, 2, 1, "c.PyCode_NewEmpty", "PyCode_NewEmpty"], [13, 0, 1, "c.PyCode_Type", "PyCode_Type"], [13, 4, 1, "c.PyCode_WatchCallback", "PyCode_WatchCallback"], [14, 2, 1, "c.PyCodec_BackslashReplaceErrors", "PyCodec_BackslashReplaceErrors"], [14, 2, 1, "c.PyCodec_Decode", "PyCodec_Decode"], [14, 2, 1, "c.PyCodec_Decoder", "PyCodec_Decoder"], [14, 2, 1, "c.PyCodec_Encode", "PyCodec_Encode"], [14, 2, 1, "c.PyCodec_Encoder", "PyCodec_Encoder"], [14, 2, 1, "c.PyCodec_IgnoreErrors", "PyCodec_IgnoreErrors"], [14, 2, 1, "c.PyCodec_IncrementalDecoder", "PyCodec_IncrementalDecoder"], [14, 2, 1, "c.PyCodec_IncrementalEncoder", "PyCodec_IncrementalEncoder"], [14, 2, 1, "c.PyCodec_KnownEncoding", "PyCodec_KnownEncoding"], [14, 2, 1, "c.PyCodec_LookupError", "PyCodec_LookupError"], [14, 2, 1, "c.PyCodec_NameReplaceErrors", "PyCodec_NameReplaceErrors"], [14, 2, 1, "c.PyCodec_Register", "PyCodec_Register"], [14, 2, 1, "c.PyCodec_RegisterError", "PyCodec_RegisterError"], [14, 2, 1, "c.PyCodec_ReplaceErrors", "PyCodec_ReplaceErrors"], [14, 2, 1, "c.PyCodec_StreamReader", "PyCodec_StreamReader"], [14, 2, 1, "c.PyCodec_StreamWriter", "PyCodec_StreamWriter"], [14, 2, 1, "c.PyCodec_StrictErrors", "PyCodec_StrictErrors"], [14, 2, 1, "c.PyCodec_Unregister", "PyCodec_Unregister"], [14, 2, 1, "c.PyCodec_XMLCharRefReplaceErrors", "PyCodec_XMLCharRefReplaceErrors"], [64, 4, 1, "c.PyCompactUnicodeObject", "PyCompactUnicodeObject"], [66, 5, 1, "c.PyCompilerFlags", "PyCompilerFlags"], [15, 4, 1, "c.PyComplexObject", "PyComplexObject"], [15, 2, 1, "c.PyComplex_AsCComplex", "PyComplex_AsCComplex"], [15, 2, 1, "c.PyComplex_Check", "PyComplex_Check"], [15, 2, 1, "c.PyComplex_CheckExact", "PyComplex_CheckExact"], [15, 2, 1, "c.PyComplex_FromCComplex", "PyComplex_FromCComplex"], [15, 2, 1, "c.PyComplex_FromDoubles", "PyComplex_FromDoubles"], [15, 2, 1, "c.PyComplex_ImagAsDouble", "PyComplex_ImagAsDouble"], [15, 2, 1, "c.PyComplex_RealAsDouble", "PyComplex_RealAsDouble"], [15, 0, 1, "c.PyComplex_Type", "PyComplex_Type"], [34, 4, 1, "c.PyConfig", "PyConfig"], [34, 2, 1, "c.PyConfig_Clear", "PyConfig_Clear"], [34, 2, 1, "c.PyConfig_InitIsolatedConfig", "PyConfig_InitIsolatedConfig"], [34, 2, 1, "c.PyConfig_InitPythonConfig", "PyConfig_InitPythonConfig"], [34, 2, 1, "c.PyConfig_Read", "PyConfig_Read"], [34, 2, 1, "c.PyConfig_SetArgv", "PyConfig_SetArgv"], [34, 2, 1, "c.PyConfig_SetBytesArgv", "PyConfig_SetBytesArgv"], [34, 2, 1, "c.PyConfig_SetBytesString", "PyConfig_SetBytesString"], [34, 2, 1, "c.PyConfig_SetString", "PyConfig_SetString"], [34, 2, 1, "c.PyConfig_SetWideStringList", "PyConfig_SetWideStringList"], [17, 4, 1, "c.PyContext", "PyContext"], [17, 4, 1, "c.PyContextToken", "PyContextToken"], [17, 2, 1, "c.PyContextToken_CheckExact", "PyContextToken_CheckExact"], [17, 0, 1, "c.PyContextToken_Type", "PyContextToken_Type"], [17, 4, 1, "c.PyContextVar", "PyContextVar"], [17, 2, 1, "c.PyContextVar_CheckExact", "PyContextVar_CheckExact"], [17, 2, 1, "c.PyContextVar_Get", "PyContextVar_Get"], [17, 2, 1, "c.PyContextVar_New", "PyContextVar_New"], [17, 2, 1, "c.PyContextVar_Reset", "PyContextVar_Reset"], [17, 2, 1, "c.PyContextVar_Set", "PyContextVar_Set"], [17, 0, 1, "c.PyContextVar_Type", "PyContextVar_Type"], [17, 2, 1, "c.PyContext_CheckExact", "PyContext_CheckExact"], [17, 2, 1, "c.PyContext_Copy", "PyContext_Copy"], [17, 2, 1, "c.PyContext_CopyCurrent", "PyContext_CopyCurrent"], [17, 2, 1, "c.PyContext_Enter", "PyContext_Enter"], [17, 2, 1, "c.PyContext_Exit", "PyContext_Exit"], [17, 2, 1, "c.PyContext_New", "PyContext_New"], [17, 0, 1, "c.PyContext_Type", "PyContext_Type"], [19, 4, 1, "c.PyCoroObject", "PyCoroObject"], [19, 2, 1, "c.PyCoro_CheckExact", "PyCoro_CheckExact"], [19, 2, 1, "c.PyCoro_New", "PyCoro_New"], [19, 0, 1, "c.PyCoro_Type", "PyCoro_Type"], [20, 2, 1, "c.PyDateTime_Check", "PyDateTime_Check"], [20, 2, 1, "c.PyDateTime_CheckExact", "PyDateTime_CheckExact"], [20, 2, 1, "c.PyDateTime_DATE_GET_FOLD", "PyDateTime_DATE_GET_FOLD"], [20, 2, 1, "c.PyDateTime_DATE_GET_HOUR", "PyDateTime_DATE_GET_HOUR"], [20, 2, 1, "c.PyDateTime_DATE_GET_MICROSECOND", "PyDateTime_DATE_GET_MICROSECOND"], [20, 2, 1, "c.PyDateTime_DATE_GET_MINUTE", "PyDateTime_DATE_GET_MINUTE"], [20, 2, 1, "c.PyDateTime_DATE_GET_SECOND", "PyDateTime_DATE_GET_SECOND"], [20, 2, 1, "c.PyDateTime_DATE_GET_TZINFO", "PyDateTime_DATE_GET_TZINFO"], [20, 2, 1, "c.PyDateTime_DELTA_GET_DAYS", "PyDateTime_DELTA_GET_DAYS"], [20, 2, 1, "c.PyDateTime_DELTA_GET_MICROSECONDS", "PyDateTime_DELTA_GET_MICROSECONDS"], [20, 2, 1, "c.PyDateTime_DELTA_GET_SECONDS", "PyDateTime_DELTA_GET_SECONDS"], [20, 4, 1, "c.PyDateTime_Date", "PyDateTime_Date"], [20, 4, 1, "c.PyDateTime_DateTime", "PyDateTime_DateTime"], [20, 0, 1, "c.PyDateTime_DateTimeType", "PyDateTime_DateTimeType"], [20, 0, 1, "c.PyDateTime_DateType", "PyDateTime_DateType"], [20, 4, 1, "c.PyDateTime_Delta", "PyDateTime_Delta"], [20, 0, 1, "c.PyDateTime_DeltaType", "PyDateTime_DeltaType"], [20, 2, 1, "c.PyDateTime_FromDateAndTime", "PyDateTime_FromDateAndTime"], [20, 2, 1, "c.PyDateTime_FromDateAndTimeAndFold", "PyDateTime_FromDateAndTimeAndFold"], [20, 2, 1, "c.PyDateTime_FromTimestamp", "PyDateTime_FromTimestamp"], [20, 2, 1, "c.PyDateTime_GET_DAY", "PyDateTime_GET_DAY"], [20, 2, 1, "c.PyDateTime_GET_MONTH", "PyDateTime_GET_MONTH"], [20, 2, 1, "c.PyDateTime_GET_YEAR", "PyDateTime_GET_YEAR"], [20, 2, 1, "c.PyDateTime_TIME_GET_FOLD", "PyDateTime_TIME_GET_FOLD"], [20, 2, 1, "c.PyDateTime_TIME_GET_HOUR", "PyDateTime_TIME_GET_HOUR"], [20, 2, 1, "c.PyDateTime_TIME_GET_MICROSECOND", "PyDateTime_TIME_GET_MICROSECOND"], [20, 2, 1, "c.PyDateTime_TIME_GET_MINUTE", "PyDateTime_TIME_GET_MINUTE"], [20, 2, 1, "c.PyDateTime_TIME_GET_SECOND", "PyDateTime_TIME_GET_SECOND"], [20, 2, 1, "c.PyDateTime_TIME_GET_TZINFO", "PyDateTime_TIME_GET_TZINFO"], [20, 0, 1, "c.PyDateTime_TZInfoType", "PyDateTime_TZInfoType"], [20, 4, 1, "c.PyDateTime_Time", "PyDateTime_Time"], [20, 0, 1, "c.PyDateTime_TimeType", "PyDateTime_TimeType"], [20, 0, 1, "c.PyDateTime_TimeZone_UTC", "PyDateTime_TimeZone_UTC"], [20, 2, 1, "c.PyDate_Check", "PyDate_Check"], [20, 2, 1, "c.PyDate_CheckExact", "PyDate_CheckExact"], [20, 2, 1, "c.PyDate_FromDate", "PyDate_FromDate"], [20, 2, 1, "c.PyDate_FromTimestamp", "PyDate_FromTimestamp"], [20, 2, 1, "c.PyDelta_Check", "PyDelta_Check"], [20, 2, 1, "c.PyDelta_CheckExact", "PyDelta_CheckExact"], [20, 2, 1, "c.PyDelta_FromDSU", "PyDelta_FromDSU"], [21, 2, 1, "c.PyDescr_IsData", "PyDescr_IsData"], [21, 2, 1, "c.PyDescr_NewClassMethod", "PyDescr_NewClassMethod"], [21, 2, 1, "c.PyDescr_NewGetSet", "PyDescr_NewGetSet"], [21, 2, 1, "c.PyDescr_NewMember", "PyDescr_NewMember"], [21, 2, 1, "c.PyDescr_NewMethod", "PyDescr_NewMethod"], [21, 2, 1, "c.PyDescr_NewWrapper", "PyDescr_NewWrapper"], [22, 4, 1, "c.PyDictObject", "PyDictObject"], [22, 2, 1, "c.PyDictProxy_New", "PyDictProxy_New"], [22, 2, 1, "c.PyDict_AddWatcher", "PyDict_AddWatcher"], [22, 2, 1, "c.PyDict_Check", "PyDict_Check"], [22, 2, 1, "c.PyDict_CheckExact", "PyDict_CheckExact"], [22, 2, 1, "c.PyDict_Clear", "PyDict_Clear"], [22, 2, 1, "c.PyDict_ClearWatcher", "PyDict_ClearWatcher"], [22, 2, 1, "c.PyDict_Contains", "PyDict_Contains"], [22, 2, 1, "c.PyDict_Copy", "PyDict_Copy"], [22, 2, 1, "c.PyDict_DelItem", "PyDict_DelItem"], [22, 2, 1, "c.PyDict_DelItemString", "PyDict_DelItemString"], [22, 2, 1, "c.PyDict_GetItem", "PyDict_GetItem"], [22, 2, 1, "c.PyDict_GetItemString", "PyDict_GetItemString"], [22, 2, 1, "c.PyDict_GetItemWithError", "PyDict_GetItemWithError"], [22, 2, 1, "c.PyDict_Items", "PyDict_Items"], [22, 2, 1, "c.PyDict_Keys", "PyDict_Keys"], [22, 2, 1, "c.PyDict_Merge", "PyDict_Merge"], [22, 2, 1, "c.PyDict_MergeFromSeq2", "PyDict_MergeFromSeq2"], [22, 2, 1, "c.PyDict_New", "PyDict_New"], [22, 2, 1, "c.PyDict_Next", "PyDict_Next"], [22, 2, 1, "c.PyDict_SetDefault", "PyDict_SetDefault"], [22, 2, 1, "c.PyDict_SetItem", "PyDict_SetItem"], [22, 2, 1, "c.PyDict_SetItemString", "PyDict_SetItemString"], [22, 2, 1, "c.PyDict_Size", "PyDict_Size"], [22, 0, 1, "c.PyDict_Type", "PyDict_Type"], [22, 2, 1, "c.PyDict_Unwatch", "PyDict_Unwatch"], [22, 2, 1, "c.PyDict_Update", "PyDict_Update"], [22, 2, 1, "c.PyDict_Values", "PyDict_Values"], [22, 2, 1, "c.PyDict_Watch", "PyDict_Watch"], [22, 4, 1, "c.PyDict_WatchCallback", "PyDict_WatchCallback"], [22, 4, 1, "c.PyDict_WatchEvent", "PyDict_WatchEvent"], [35, 1, 1, "c.PyDoc_STR", "PyDoc_STR"], [35, 1, 1, "c.PyDoc_STRVAR", "PyDoc_STRVAR"], [23, 2, 1, "c.PyErr_BadArgument", "PyErr_BadArgument"], [23, 2, 1, "c.PyErr_BadInternalCall", "PyErr_BadInternalCall"], [23, 2, 1, "c.PyErr_CheckSignals", "PyErr_CheckSignals"], [23, 2, 1, "c.PyErr_Clear", "PyErr_Clear"], [23, 2, 1, "c.PyErr_DisplayException", "PyErr_DisplayException"], [23, 2, 1, "c.PyErr_ExceptionMatches", "PyErr_ExceptionMatches"], [23, 2, 1, "c.PyErr_Fetch", "PyErr_Fetch"], [23, 2, 1, "c.PyErr_Format", "PyErr_Format"], [23, 2, 1, "c.PyErr_FormatV", "PyErr_FormatV"], [23, 2, 1, "c.PyErr_GetExcInfo", "PyErr_GetExcInfo"], [23, 2, 1, "c.PyErr_GetHandledException", "PyErr_GetHandledException"], [23, 2, 1, "c.PyErr_GetRaisedException", "PyErr_GetRaisedException"], [23, 2, 1, "c.PyErr_GivenExceptionMatches", "PyErr_GivenExceptionMatches"], [23, 2, 1, "c.PyErr_NewException", "PyErr_NewException"], [23, 2, 1, "c.PyErr_NewExceptionWithDoc", "PyErr_NewExceptionWithDoc"], [23, 2, 1, "c.PyErr_NoMemory", "PyErr_NoMemory"], [23, 2, 1, "c.PyErr_NormalizeException", "PyErr_NormalizeException"], [23, 2, 1, "c.PyErr_Occurred", "PyErr_Occurred"], [23, 2, 1, "c.PyErr_Print", "PyErr_Print"], [23, 2, 1, "c.PyErr_PrintEx", "PyErr_PrintEx"], [23, 2, 1, "c.PyErr_ResourceWarning", "PyErr_ResourceWarning"], [23, 2, 1, "c.PyErr_Restore", "PyErr_Restore"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErr", "PyErr_SetExcFromWindowsErr"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "PyErr_SetExcFromWindowsErrWithFilename"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "PyErr_SetExcFromWindowsErrWithFilenameObject"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "PyErr_SetExcFromWindowsErrWithFilenameObjects"], [23, 2, 1, "c.PyErr_SetExcInfo", "PyErr_SetExcInfo"], [23, 2, 1, "c.PyErr_SetFromErrno", "PyErr_SetFromErrno"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilename", "PyErr_SetFromErrnoWithFilename"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "PyErr_SetFromErrnoWithFilenameObject"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "PyErr_SetFromErrnoWithFilenameObjects"], [23, 2, 1, "c.PyErr_SetFromWindowsErr", "PyErr_SetFromWindowsErr"], [23, 2, 1, "c.PyErr_SetFromWindowsErrWithFilename", "PyErr_SetFromWindowsErrWithFilename"], [23, 2, 1, "c.PyErr_SetHandledException", "PyErr_SetHandledException"], [23, 2, 1, "c.PyErr_SetImportError", "PyErr_SetImportError"], [23, 2, 1, "c.PyErr_SetImportErrorSubclass", "PyErr_SetImportErrorSubclass"], [23, 2, 1, "c.PyErr_SetInterrupt", "PyErr_SetInterrupt"], [23, 2, 1, "c.PyErr_SetInterruptEx", "PyErr_SetInterruptEx"], [23, 2, 1, "c.PyErr_SetNone", "PyErr_SetNone"], [23, 2, 1, "c.PyErr_SetObject", "PyErr_SetObject"], [23, 2, 1, "c.PyErr_SetRaisedException", "PyErr_SetRaisedException"], [23, 2, 1, "c.PyErr_SetString", "PyErr_SetString"], [23, 2, 1, "c.PyErr_SyntaxLocation", "PyErr_SyntaxLocation"], [23, 2, 1, "c.PyErr_SyntaxLocationEx", "PyErr_SyntaxLocationEx"], [23, 2, 1, "c.PyErr_SyntaxLocationObject", "PyErr_SyntaxLocationObject"], [23, 2, 1, "c.PyErr_WarnEx", "PyErr_WarnEx"], [23, 2, 1, "c.PyErr_WarnExplicit", "PyErr_WarnExplicit"], [23, 2, 1, "c.PyErr_WarnExplicitObject", "PyErr_WarnExplicitObject"], [23, 2, 1, "c.PyErr_WarnFormat", "PyErr_WarnFormat"], [23, 2, 1, "c.PyErr_WriteUnraisable", "PyErr_WriteUnraisable"], [33, 2, 1, "c.PyEval_AcquireLock", "PyEval_AcquireLock"], [33, 2, 1, "c.PyEval_AcquireThread", "PyEval_AcquireThread"], [66, 2, 1, "c.PyEval_EvalCode", "PyEval_EvalCode"], [66, 2, 1, "c.PyEval_EvalCodeEx", "PyEval_EvalCodeEx"], [66, 2, 1, "c.PyEval_EvalFrame", "PyEval_EvalFrame"], [66, 2, 1, "c.PyEval_EvalFrameEx", "PyEval_EvalFrameEx"], [53, 2, 1, "c.PyEval_GetBuiltins", "PyEval_GetBuiltins"], [53, 2, 1, "c.PyEval_GetFrame", "PyEval_GetFrame"], [53, 2, 1, "c.PyEval_GetFuncDesc", "PyEval_GetFuncDesc"], [53, 2, 1, "c.PyEval_GetFuncName", "PyEval_GetFuncName"], [53, 2, 1, "c.PyEval_GetGlobals", "PyEval_GetGlobals"], [53, 2, 1, "c.PyEval_GetLocals", "PyEval_GetLocals"], [33, 2, 1, "c.PyEval_InitThreads", "PyEval_InitThreads"], [66, 2, 1, "c.PyEval_MergeCompilerFlags", "PyEval_MergeCompilerFlags"], [33, 2, 1, "c.PyEval_ReleaseLock", "PyEval_ReleaseLock"], [33, 2, 1, "c.PyEval_ReleaseThread", "PyEval_ReleaseThread"], [33, 2, 1, "c.PyEval_RestoreThread", "PyEval_RestoreThread"], [33, 2, 1, "c.PyEval_SaveThread", "PyEval_SaveThread"], [33, 2, 1, "c.PyEval_SetProfile", "PyEval_SetProfile"], [33, 2, 1, "c.PyEval_SetProfileAllThreads", "PyEval_SetProfileAllThreads"], [33, 2, 1, "c.PyEval_SetTrace", "PyEval_SetTrace"], [33, 2, 1, "c.PyEval_SetTraceAllThreads", "PyEval_SetTraceAllThreads"], [33, 2, 1, "c.PyEval_ThreadsInitialized", "PyEval_ThreadsInitialized"], [23, 2, 1, "c.PyException_GetArgs", "PyException_GetArgs"], [23, 2, 1, "c.PyException_GetCause", "PyException_GetCause"], [23, 2, 1, "c.PyException_GetContext", "PyException_GetContext"], [23, 2, 1, "c.PyException_GetTraceback", "PyException_GetTraceback"], [23, 2, 1, "c.PyException_SetArgs", "PyException_SetArgs"], [23, 2, 1, "c.PyException_SetCause", "PyException_SetCause"], [23, 2, 1, "c.PyException_SetContext", "PyException_SetContext"], [23, 2, 1, "c.PyException_SetTraceback", "PyException_SetTraceback"], [24, 2, 1, "c.PyFile_FromFd", "PyFile_FromFd"], [24, 2, 1, "c.PyFile_GetLine", "PyFile_GetLine"], [24, 2, 1, "c.PyFile_SetOpenCodeHook", "PyFile_SetOpenCodeHook"], [24, 2, 1, "c.PyFile_WriteObject", "PyFile_WriteObject"], [24, 2, 1, "c.PyFile_WriteString", "PyFile_WriteString"], [25, 4, 1, "c.PyFloatObject", "PyFloatObject"], [25, 2, 1, "c.PyFloat_AS_DOUBLE", "PyFloat_AS_DOUBLE"], [25, 2, 1, "c.PyFloat_AsDouble", "PyFloat_AsDouble"], [25, 2, 1, "c.PyFloat_Check", "PyFloat_Check"], [25, 2, 1, "c.PyFloat_CheckExact", "PyFloat_CheckExact"], [25, 2, 1, "c.PyFloat_FromDouble", "PyFloat_FromDouble"], [25, 2, 1, "c.PyFloat_FromString", "PyFloat_FromString"], [25, 2, 1, "c.PyFloat_GetInfo", "PyFloat_GetInfo"], [25, 2, 1, "c.PyFloat_GetMax", "PyFloat_GetMax"], [25, 2, 1, "c.PyFloat_GetMin", "PyFloat_GetMin"], [25, 2, 1, "c.PyFloat_Pack2", "PyFloat_Pack2"], [25, 2, 1, "c.PyFloat_Pack4", "PyFloat_Pack4"], [25, 2, 1, "c.PyFloat_Pack8", "PyFloat_Pack8"], [25, 0, 1, "c.PyFloat_Type", "PyFloat_Type"], [25, 2, 1, "c.PyFloat_Unpack2", "PyFloat_Unpack2"], [25, 2, 1, "c.PyFloat_Unpack4", "PyFloat_Unpack4"], [25, 2, 1, "c.PyFloat_Unpack8", "PyFloat_Unpack8"], [26, 4, 1, "c.PyFrameObject", "PyFrameObject"], [26, 2, 1, "c.PyFrame_Check", "PyFrame_Check"], [26, 2, 1, "c.PyFrame_GetBack", "PyFrame_GetBack"], [26, 2, 1, "c.PyFrame_GetBuiltins", "PyFrame_GetBuiltins"], [26, 2, 1, "c.PyFrame_GetCode", "PyFrame_GetCode"], [26, 2, 1, "c.PyFrame_GetGenerator", "PyFrame_GetGenerator"], [26, 2, 1, "c.PyFrame_GetGlobals", "PyFrame_GetGlobals"], [26, 2, 1, "c.PyFrame_GetLasti", "PyFrame_GetLasti"], [26, 2, 1, "c.PyFrame_GetLineNumber", "PyFrame_GetLineNumber"], [26, 2, 1, "c.PyFrame_GetLocals", "PyFrame_GetLocals"], [26, 2, 1, "c.PyFrame_GetVar", "PyFrame_GetVar"], [26, 2, 1, "c.PyFrame_GetVarString", "PyFrame_GetVarString"], [26, 0, 1, "c.PyFrame_Type", "PyFrame_Type"], [55, 2, 1, "c.PyFrozenSet_Check", "PyFrozenSet_Check"], [55, 2, 1, "c.PyFrozenSet_CheckExact", "PyFrozenSet_CheckExact"], [55, 2, 1, "c.PyFrozenSet_New", "PyFrozenSet_New"], [55, 0, 1, "c.PyFrozenSet_Type", "PyFrozenSet_Type"], [27, 4, 1, "c.PyFunctionObject", "PyFunctionObject"], [27, 2, 1, "c.PyFunction_AddWatcher", "PyFunction_AddWatcher"], [27, 2, 1, "c.PyFunction_Check", "PyFunction_Check"], [27, 2, 1, "c.PyFunction_ClearWatcher", "PyFunction_ClearWatcher"], [27, 2, 1, "c.PyFunction_GetAnnotations", "PyFunction_GetAnnotations"], [27, 2, 1, "c.PyFunction_GetClosure", "PyFunction_GetClosure"], [27, 2, 1, "c.PyFunction_GetCode", "PyFunction_GetCode"], [27, 2, 1, "c.PyFunction_GetDefaults", "PyFunction_GetDefaults"], [27, 2, 1, "c.PyFunction_GetGlobals", "PyFunction_GetGlobals"], [27, 2, 1, "c.PyFunction_GetModule", "PyFunction_GetModule"], [27, 2, 1, "c.PyFunction_New", "PyFunction_New"], [27, 2, 1, "c.PyFunction_NewWithQualName", "PyFunction_NewWithQualName"], [27, 2, 1, "c.PyFunction_SetAnnotations", "PyFunction_SetAnnotations"], [27, 2, 1, "c.PyFunction_SetClosure", "PyFunction_SetClosure"], [27, 2, 1, "c.PyFunction_SetDefaults", "PyFunction_SetDefaults"], [27, 2, 1, "c.PyFunction_SetVectorcall", "PyFunction_SetVectorcall"], [27, 0, 1, "c.PyFunction_Type", "PyFunction_Type"], [27, 4, 1, "c.PyFunction_WatchCallback", "PyFunction_WatchCallback"], [27, 4, 1, "c.PyFunction_WatchEvent", "PyFunction_WatchEvent"], [28, 2, 1, "c.PyGC_Collect", "PyGC_Collect"], [28, 2, 1, "c.PyGC_Disable", "PyGC_Disable"], [28, 2, 1, "c.PyGC_Enable", "PyGC_Enable"], [28, 2, 1, "c.PyGC_IsEnabled", "PyGC_IsEnabled"], [33, 2, 1, "c.PyGILState_Check", "PyGILState_Check"], [33, 2, 1, "c.PyGILState_Ensure", "PyGILState_Ensure"], [33, 2, 1, "c.PyGILState_GetThisThreadState", "PyGILState_GetThisThreadState"], [33, 2, 1, "c.PyGILState_Release", "PyGILState_Release"], [29, 4, 1, "c.PyGenObject", "PyGenObject"], [29, 2, 1, "c.PyGen_Check", "PyGen_Check"], [29, 2, 1, "c.PyGen_CheckExact", "PyGen_CheckExact"], [29, 2, 1, "c.PyGen_New", "PyGen_New"], [29, 2, 1, "c.PyGen_NewWithQualName", "PyGen_NewWithQualName"], [29, 0, 1, "c.PyGen_Type", "PyGen_Type"], [58, 4, 1, "c.PyGetSetDef", "PyGetSetDef"], [30, 4, 1, "c.PyHash_FuncDef", "PyHash_FuncDef"], [30, 2, 1, "c.PyHash_GetFuncDef", "PyHash_GetFuncDef"], [31, 2, 1, "c.PyImport_AddModule", "PyImport_AddModule"], [31, 2, 1, "c.PyImport_AddModuleObject", "PyImport_AddModuleObject"], [31, 2, 1, "c.PyImport_AppendInittab", "PyImport_AppendInittab"], [31, 2, 1, "c.PyImport_ExecCodeModule", "PyImport_ExecCodeModule"], [31, 2, 1, "c.PyImport_ExecCodeModuleEx", "PyImport_ExecCodeModuleEx"], [31, 2, 1, "c.PyImport_ExecCodeModuleObject", "PyImport_ExecCodeModuleObject"], [31, 2, 1, "c.PyImport_ExecCodeModuleWithPathnames", "PyImport_ExecCodeModuleWithPathnames"], [31, 2, 1, "c.PyImport_ExtendInittab", "PyImport_ExtendInittab"], [31, 0, 1, "c.PyImport_FrozenModules", "PyImport_FrozenModules"], [31, 2, 1, "c.PyImport_GetImporter", "PyImport_GetImporter"], [31, 2, 1, "c.PyImport_GetMagicNumber", "PyImport_GetMagicNumber"], [31, 2, 1, "c.PyImport_GetMagicTag", "PyImport_GetMagicTag"], [31, 2, 1, "c.PyImport_GetModule", "PyImport_GetModule"], [31, 2, 1, "c.PyImport_GetModuleDict", "PyImport_GetModuleDict"], [31, 2, 1, "c.PyImport_Import", "PyImport_Import"], [31, 2, 1, "c.PyImport_ImportFrozenModule", "PyImport_ImportFrozenModule"], [31, 2, 1, "c.PyImport_ImportFrozenModuleObject", "PyImport_ImportFrozenModuleObject"], [31, 2, 1, "c.PyImport_ImportModule", "PyImport_ImportModule"], [31, 2, 1, "c.PyImport_ImportModuleEx", "PyImport_ImportModuleEx"], [31, 2, 1, "c.PyImport_ImportModuleLevel", "PyImport_ImportModuleLevel"], [31, 2, 1, "c.PyImport_ImportModuleLevelObject", "PyImport_ImportModuleLevelObject"], [31, 2, 1, "c.PyImport_ImportModuleNoBlock", "PyImport_ImportModuleNoBlock"], [31, 2, 1, "c.PyImport_ReloadModule", "PyImport_ReloadModule"], [47, 2, 1, "c.PyIndex_Check", "PyIndex_Check"], [71, 2, 1, "c.PyInit_modulename", "PyInit_modulename"], [44, 2, 1, "c.PyInstanceMethod_Check", "PyInstanceMethod_Check"], [44, 2, 1, "c.PyInstanceMethod_Function", "PyInstanceMethod_Function"], [44, 2, 1, "c.PyInstanceMethod_GET_FUNCTION", "PyInstanceMethod_GET_FUNCTION"], [44, 2, 1, "c.PyInstanceMethod_New", "PyInstanceMethod_New"], [44, 0, 1, "c.PyInstanceMethod_Type", "PyInstanceMethod_Type"], [33, 4, 1, "c.PyInterpreterConfig", "PyInterpreterConfig"], [33, 1, 1, "c.PyInterpreterConfig_DEFAULT_GIL", "PyInterpreterConfig_DEFAULT_GIL"], [33, 1, 1, "c.PyInterpreterConfig_OWN_GIL", "PyInterpreterConfig_OWN_GIL"], [33, 1, 1, "c.PyInterpreterConfig_SHARED_GIL", "PyInterpreterConfig_SHARED_GIL"], [33, 4, 1, "c.PyInterpreterState", "PyInterpreterState"], [33, 2, 1, "c.PyInterpreterState_Clear", "PyInterpreterState_Clear"], [33, 2, 1, "c.PyInterpreterState_Delete", "PyInterpreterState_Delete"], [33, 2, 1, "c.PyInterpreterState_Get", "PyInterpreterState_Get"], [33, 2, 1, "c.PyInterpreterState_GetDict", "PyInterpreterState_GetDict"], [33, 2, 1, "c.PyInterpreterState_GetID", "PyInterpreterState_GetID"], [33, 2, 1, "c.PyInterpreterState_Head", "PyInterpreterState_Head"], [33, 2, 1, "c.PyInterpreterState_Main", "PyInterpreterState_Main"], [33, 2, 1, "c.PyInterpreterState_New", "PyInterpreterState_New"], [33, 2, 1, "c.PyInterpreterState_Next", "PyInterpreterState_Next"], [33, 2, 1, "c.PyInterpreterState_ThreadHead", "PyInterpreterState_ThreadHead"], [36, 2, 1, "c.PyIter_Check", "PyIter_Check"], [36, 2, 1, "c.PyIter_Next", "PyIter_Next"], [36, 2, 1, "c.PyIter_Send", "PyIter_Send"], [38, 4, 1, "c.PyListObject", "PyListObject"], [38, 2, 1, "c.PyList_Append", "PyList_Append"], [38, 2, 1, "c.PyList_AsTuple", "PyList_AsTuple"], [38, 2, 1, "c.PyList_Check", "PyList_Check"], [38, 2, 1, "c.PyList_CheckExact", "PyList_CheckExact"], [38, 2, 1, "c.PyList_GET_ITEM", "PyList_GET_ITEM"], [38, 2, 1, "c.PyList_GET_SIZE", "PyList_GET_SIZE"], [38, 2, 1, "c.PyList_GetItem", "PyList_GetItem"], [38, 2, 1, "c.PyList_GetSlice", "PyList_GetSlice"], [38, 2, 1, "c.PyList_Insert", "PyList_Insert"], [38, 2, 1, "c.PyList_New", "PyList_New"], [38, 2, 1, "c.PyList_Reverse", "PyList_Reverse"], [38, 2, 1, "c.PyList_SET_ITEM", "PyList_SET_ITEM"], [38, 2, 1, "c.PyList_SetItem", "PyList_SetItem"], [38, 2, 1, "c.PyList_SetSlice", "PyList_SetSlice"], [38, 2, 1, "c.PyList_Size", "PyList_Size"], [38, 2, 1, "c.PyList_Sort", "PyList_Sort"], [38, 0, 1, "c.PyList_Type", "PyList_Type"], [39, 4, 1, "c.PyLongObject", "PyLongObject"], [39, 2, 1, "c.PyLong_AsDouble", "PyLong_AsDouble"], [39, 2, 1, "c.PyLong_AsLong", "PyLong_AsLong"], [39, 2, 1, "c.PyLong_AsLongAndOverflow", "PyLong_AsLongAndOverflow"], [39, 2, 1, "c.PyLong_AsLongLong", "PyLong_AsLongLong"], [39, 2, 1, "c.PyLong_AsLongLongAndOverflow", "PyLong_AsLongLongAndOverflow"], [39, 2, 1, "c.PyLong_AsSize_t", "PyLong_AsSize_t"], [39, 2, 1, "c.PyLong_AsSsize_t", "PyLong_AsSsize_t"], [39, 2, 1, "c.PyLong_AsUnsignedLong", "PyLong_AsUnsignedLong"], [39, 2, 1, "c.PyLong_AsUnsignedLongLong", "PyLong_AsUnsignedLongLong"], [39, 2, 1, "c.PyLong_AsUnsignedLongLongMask", "PyLong_AsUnsignedLongLongMask"], [39, 2, 1, "c.PyLong_AsUnsignedLongMask", "PyLong_AsUnsignedLongMask"], [39, 2, 1, "c.PyLong_AsVoidPtr", "PyLong_AsVoidPtr"], [39, 2, 1, "c.PyLong_Check", "PyLong_Check"], [39, 2, 1, "c.PyLong_CheckExact", "PyLong_CheckExact"], [39, 2, 1, "c.PyLong_FromDouble", "PyLong_FromDouble"], [39, 2, 1, "c.PyLong_FromLong", "PyLong_FromLong"], [39, 2, 1, "c.PyLong_FromLongLong", "PyLong_FromLongLong"], [39, 2, 1, "c.PyLong_FromSize_t", "PyLong_FromSize_t"], [39, 2, 1, "c.PyLong_FromSsize_t", "PyLong_FromSsize_t"], [39, 2, 1, "c.PyLong_FromString", "PyLong_FromString"], [39, 2, 1, "c.PyLong_FromUnicodeObject", "PyLong_FromUnicodeObject"], [39, 2, 1, "c.PyLong_FromUnsignedLong", "PyLong_FromUnsignedLong"], [39, 2, 1, "c.PyLong_FromUnsignedLongLong", "PyLong_FromUnsignedLongLong"], [39, 2, 1, "c.PyLong_FromVoidPtr", "PyLong_FromVoidPtr"], [39, 0, 1, "c.PyLong_Type", "PyLong_Type"], [35, 1, 1, "c.PyMODINIT_FUNC", "PyMODINIT_FUNC"], [63, 4, 1, "c.PyMappingMethods", "PyMappingMethods"], [40, 2, 1, "c.PyMapping_Check", "PyMapping_Check"], [40, 2, 1, "c.PyMapping_DelItem", "PyMapping_DelItem"], [40, 2, 1, "c.PyMapping_DelItemString", "PyMapping_DelItemString"], [40, 2, 1, "c.PyMapping_GetItemString", "PyMapping_GetItemString"], [40, 2, 1, "c.PyMapping_HasKey", "PyMapping_HasKey"], [40, 2, 1, "c.PyMapping_HasKeyString", "PyMapping_HasKeyString"], [40, 2, 1, "c.PyMapping_Items", "PyMapping_Items"], [40, 2, 1, "c.PyMapping_Keys", "PyMapping_Keys"], [40, 2, 1, "c.PyMapping_Length", "PyMapping_Length"], [40, 2, 1, "c.PyMapping_SetItemString", "PyMapping_SetItemString"], [40, 2, 1, "c.PyMapping_Size", "PyMapping_Size"], [40, 2, 1, "c.PyMapping_Values", "PyMapping_Values"], [41, 2, 1, "c.PyMarshal_ReadLastObjectFromFile", "PyMarshal_ReadLastObjectFromFile"], [41, 2, 1, "c.PyMarshal_ReadLongFromFile", "PyMarshal_ReadLongFromFile"], [41, 2, 1, "c.PyMarshal_ReadObjectFromFile", "PyMarshal_ReadObjectFromFile"], [41, 2, 1, "c.PyMarshal_ReadObjectFromString", "PyMarshal_ReadObjectFromString"], [41, 2, 1, "c.PyMarshal_ReadShortFromFile", "PyMarshal_ReadShortFromFile"], [41, 2, 1, "c.PyMarshal_WriteLongToFile", "PyMarshal_WriteLongToFile"], [41, 2, 1, "c.PyMarshal_WriteObjectToFile", "PyMarshal_WriteObjectToFile"], [41, 2, 1, "c.PyMarshal_WriteObjectToString", "PyMarshal_WriteObjectToString"], [42, 4, 1, "c.PyMemAllocatorDomain", "PyMemAllocatorDomain"], [42, 4, 1, "c.PyMemAllocatorEx", "PyMemAllocatorEx"], [42, 2, 1, "c.PyMem_Calloc", "PyMem_Calloc"], [42, 2, 1, "c.PyMem_Del", "PyMem_Del"], [42, 2, 1, "c.PyMem_Free", "PyMem_Free"], [42, 2, 1, "c.PyMem_GetAllocator", "PyMem_GetAllocator"], [42, 2, 1, "c.PyMem_Malloc", "PyMem_Malloc"], [42, 1, 1, "c.PyMem_New", "PyMem_New"], [42, 2, 1, "c.PyMem_RawCalloc", "PyMem_RawCalloc"], [42, 2, 1, "c.PyMem_RawFree", "PyMem_RawFree"], [42, 2, 1, "c.PyMem_RawMalloc", "PyMem_RawMalloc"], [42, 2, 1, "c.PyMem_RawRealloc", "PyMem_RawRealloc"], [42, 2, 1, "c.PyMem_Realloc", "PyMem_Realloc"], [42, 1, 1, "c.PyMem_Resize", "PyMem_Resize"], [42, 2, 1, "c.PyMem_SetAllocator", "PyMem_SetAllocator"], [42, 2, 1, "c.PyMem_SetupDebugHooks", "PyMem_SetupDebugHooks"], [58, 4, 1, "c.PyMemberDef", "PyMemberDef"], [58, 2, 1, "c.PyMember_GetOne", "PyMember_GetOne"], [58, 2, 1, "c.PyMember_SetOne", "PyMember_SetOne"], [43, 2, 1, "c.PyMemoryView_Check", "PyMemoryView_Check"], [43, 2, 1, "c.PyMemoryView_FromBuffer", "PyMemoryView_FromBuffer"], [43, 2, 1, "c.PyMemoryView_FromMemory", "PyMemoryView_FromMemory"], [43, 2, 1, "c.PyMemoryView_FromObject", "PyMemoryView_FromObject"], [43, 2, 1, "c.PyMemoryView_GET_BASE", "PyMemoryView_GET_BASE"], [43, 2, 1, "c.PyMemoryView_GET_BUFFER", "PyMemoryView_GET_BUFFER"], [43, 2, 1, "c.PyMemoryView_GetContiguous", "PyMemoryView_GetContiguous"], [58, 4, 1, "c.PyMethodDef", "PyMethodDef"], [44, 2, 1, "c.PyMethod_Check", "PyMethod_Check"], [44, 2, 1, "c.PyMethod_Function", "PyMethod_Function"], [44, 2, 1, "c.PyMethod_GET_FUNCTION", "PyMethod_GET_FUNCTION"], [44, 2, 1, "c.PyMethod_GET_SELF", "PyMethod_GET_SELF"], [44, 2, 1, "c.PyMethod_New", "PyMethod_New"], [44, 2, 1, "c.PyMethod_Self", "PyMethod_Self"], [44, 0, 1, "c.PyMethod_Type", "PyMethod_Type"], [45, 4, 1, "c.PyModuleDef", "PyModuleDef"], [45, 2, 1, "c.PyModuleDef_Init", "PyModuleDef_Init"], [45, 4, 1, "c.PyModuleDef_Slot", "PyModuleDef_Slot"], [45, 2, 1, "c.PyModule_AddFunctions", "PyModule_AddFunctions"], [45, 2, 1, "c.PyModule_AddIntConstant", "PyModule_AddIntConstant"], [45, 1, 1, "c.PyModule_AddIntMacro", "PyModule_AddIntMacro"], [45, 2, 1, "c.PyModule_AddObject", "PyModule_AddObject"], [45, 2, 1, "c.PyModule_AddObjectRef", "PyModule_AddObjectRef"], [45, 2, 1, "c.PyModule_AddStringConstant", "PyModule_AddStringConstant"], [45, 1, 1, "c.PyModule_AddStringMacro", "PyModule_AddStringMacro"], [45, 2, 1, "c.PyModule_AddType", "PyModule_AddType"], [45, 2, 1, "c.PyModule_Check", "PyModule_Check"], [45, 2, 1, "c.PyModule_CheckExact", "PyModule_CheckExact"], [45, 2, 1, "c.PyModule_Create", "PyModule_Create"], [45, 2, 1, "c.PyModule_Create2", "PyModule_Create2"], [45, 2, 1, "c.PyModule_ExecDef", "PyModule_ExecDef"], [45, 2, 1, "c.PyModule_FromDefAndSpec", "PyModule_FromDefAndSpec"], [45, 2, 1, "c.PyModule_FromDefAndSpec2", "PyModule_FromDefAndSpec2"], [45, 2, 1, "c.PyModule_GetDef", "PyModule_GetDef"], [45, 2, 1, "c.PyModule_GetDict", "PyModule_GetDict"], [45, 2, 1, "c.PyModule_GetFilename", "PyModule_GetFilename"], [45, 2, 1, "c.PyModule_GetFilenameObject", "PyModule_GetFilenameObject"], [45, 2, 1, "c.PyModule_GetName", "PyModule_GetName"], [45, 2, 1, "c.PyModule_GetNameObject", "PyModule_GetNameObject"], [45, 2, 1, "c.PyModule_GetState", "PyModule_GetState"], [45, 2, 1, "c.PyModule_New", "PyModule_New"], [45, 2, 1, "c.PyModule_NewObject", "PyModule_NewObject"], [45, 2, 1, "c.PyModule_SetDocString", "PyModule_SetDocString"], [45, 0, 1, "c.PyModule_Type", "PyModule_Type"], [63, 4, 1, "c.PyNumberMethods", "PyNumberMethods"], [47, 2, 1, "c.PyNumber_Absolute", "PyNumber_Absolute"], [47, 2, 1, "c.PyNumber_Add", "PyNumber_Add"], [47, 2, 1, "c.PyNumber_And", "PyNumber_And"], [47, 2, 1, "c.PyNumber_AsSsize_t", "PyNumber_AsSsize_t"], [47, 2, 1, "c.PyNumber_Check", "PyNumber_Check"], [47, 2, 1, "c.PyNumber_Divmod", "PyNumber_Divmod"], [47, 2, 1, "c.PyNumber_Float", "PyNumber_Float"], [47, 2, 1, "c.PyNumber_FloorDivide", "PyNumber_FloorDivide"], [47, 2, 1, "c.PyNumber_InPlaceAdd", "PyNumber_InPlaceAdd"], [47, 2, 1, "c.PyNumber_InPlaceAnd", "PyNumber_InPlaceAnd"], [47, 2, 1, "c.PyNumber_InPlaceFloorDivide", "PyNumber_InPlaceFloorDivide"], [47, 2, 1, "c.PyNumber_InPlaceLshift", "PyNumber_InPlaceLshift"], [47, 2, 1, "c.PyNumber_InPlaceMatrixMultiply", "PyNumber_InPlaceMatrixMultiply"], [47, 2, 1, "c.PyNumber_InPlaceMultiply", "PyNumber_InPlaceMultiply"], [47, 2, 1, "c.PyNumber_InPlaceOr", "PyNumber_InPlaceOr"], [47, 2, 1, "c.PyNumber_InPlacePower", "PyNumber_InPlacePower"], [47, 2, 1, "c.PyNumber_InPlaceRemainder", "PyNumber_InPlaceRemainder"], [47, 2, 1, "c.PyNumber_InPlaceRshift", "PyNumber_InPlaceRshift"], [47, 2, 1, "c.PyNumber_InPlaceSubtract", "PyNumber_InPlaceSubtract"], [47, 2, 1, "c.PyNumber_InPlaceTrueDivide", "PyNumber_InPlaceTrueDivide"], [47, 2, 1, "c.PyNumber_InPlaceXor", "PyNumber_InPlaceXor"], [47, 2, 1, "c.PyNumber_Index", "PyNumber_Index"], [47, 2, 1, "c.PyNumber_Invert", "PyNumber_Invert"], [47, 2, 1, "c.PyNumber_Long", "PyNumber_Long"], [47, 2, 1, "c.PyNumber_Lshift", "PyNumber_Lshift"], [47, 2, 1, "c.PyNumber_MatrixMultiply", "PyNumber_MatrixMultiply"], [47, 2, 1, "c.PyNumber_Multiply", "PyNumber_Multiply"], [47, 2, 1, "c.PyNumber_Negative", "PyNumber_Negative"], [47, 2, 1, "c.PyNumber_Or", "PyNumber_Or"], [47, 2, 1, "c.PyNumber_Positive", "PyNumber_Positive"], [47, 2, 1, "c.PyNumber_Power", "PyNumber_Power"], [47, 2, 1, "c.PyNumber_Remainder", "PyNumber_Remainder"], [47, 2, 1, "c.PyNumber_Rshift", "PyNumber_Rshift"], [47, 2, 1, "c.PyNumber_Subtract", "PyNumber_Subtract"], [47, 2, 1, "c.PyNumber_ToBase", "PyNumber_ToBase"], [47, 2, 1, "c.PyNumber_TrueDivide", "PyNumber_TrueDivide"], [47, 2, 1, "c.PyNumber_Xor", "PyNumber_Xor"], [59, 2, 1, "c.PyOS_AfterFork", "PyOS_AfterFork"], [59, 2, 1, "c.PyOS_AfterFork_Child", "PyOS_AfterFork_Child"], [59, 2, 1, "c.PyOS_AfterFork_Parent", "PyOS_AfterFork_Parent"], [59, 2, 1, "c.PyOS_BeforeFork", "PyOS_BeforeFork"], [59, 2, 1, "c.PyOS_CheckStack", "PyOS_CheckStack"], [59, 2, 1, "c.PyOS_FSPath", "PyOS_FSPath"], [66, 0, 1, "c.PyOS_InputHook", "PyOS_InputHook"], [66, 0, 1, "c.PyOS_ReadlineFunctionPointer", "PyOS_ReadlineFunctionPointer"], [18, 2, 1, "c.PyOS_double_to_string", "PyOS_double_to_string"], [59, 2, 1, "c.PyOS_getsig", "PyOS_getsig"], [59, 2, 1, "c.PyOS_setsig", "PyOS_setsig"], [59, 4, 1, "c.PyOS_sighandler_t", "PyOS_sighandler_t"], [18, 2, 1, "c.PyOS_snprintf", "PyOS_snprintf"], [18, 2, 1, "c.PyOS_stricmp", "PyOS_stricmp"], [18, 2, 1, "c.PyOS_string_to_double", "PyOS_string_to_double"], [18, 2, 1, "c.PyOS_strnicmp", "PyOS_strnicmp"], [18, 2, 1, "c.PyOS_strtol", "PyOS_strtol"], [18, 2, 1, "c.PyOS_strtoul", "PyOS_strtoul"], [18, 2, 1, "c.PyOS_vsnprintf", "PyOS_vsnprintf"], [58, 4, 1, "c.PyObject", "PyObject"], [42, 4, 1, "c.PyObjectArenaAllocator", "PyObjectArenaAllocator"], [49, 2, 1, "c.PyObject_ASCII", "PyObject_ASCII"], [48, 2, 1, "c.PyObject_AsCharBuffer", "PyObject_AsCharBuffer"], [24, 2, 1, "c.PyObject_AsFileDescriptor", "PyObject_AsFileDescriptor"], [48, 2, 1, "c.PyObject_AsReadBuffer", "PyObject_AsReadBuffer"], [48, 2, 1, "c.PyObject_AsWriteBuffer", "PyObject_AsWriteBuffer"], [49, 2, 1, "c.PyObject_Bytes", "PyObject_Bytes"], [10, 2, 1, "c.PyObject_Call", "PyObject_Call"], [10, 2, 1, "c.PyObject_CallFunction", "PyObject_CallFunction"], [10, 2, 1, "c.PyObject_CallFunctionObjArgs", "PyObject_CallFunctionObjArgs"], [10, 2, 1, "c.PyObject_CallMethod", "PyObject_CallMethod"], [10, 2, 1, "c.PyObject_CallMethodNoArgs", "PyObject_CallMethodNoArgs"], [10, 2, 1, "c.PyObject_CallMethodObjArgs", "PyObject_CallMethodObjArgs"], [10, 2, 1, "c.PyObject_CallMethodOneArg", "PyObject_CallMethodOneArg"], [10, 2, 1, "c.PyObject_CallNoArgs", "PyObject_CallNoArgs"], [10, 2, 1, "c.PyObject_CallObject", "PyObject_CallObject"], [10, 2, 1, "c.PyObject_CallOneArg", "PyObject_CallOneArg"], [42, 2, 1, "c.PyObject_Calloc", "PyObject_Calloc"], [7, 2, 1, "c.PyObject_CheckBuffer", "PyObject_CheckBuffer"], [48, 2, 1, "c.PyObject_CheckReadBuffer", "PyObject_CheckReadBuffer"], [67, 2, 1, "c.PyObject_ClearWeakRefs", "PyObject_ClearWeakRefs"], [7, 2, 1, "c.PyObject_CopyData", "PyObject_CopyData"], [3, 2, 1, "c.PyObject_Del", "PyObject_Del"], [49, 2, 1, "c.PyObject_DelAttr", "PyObject_DelAttr"], [49, 2, 1, "c.PyObject_DelAttrString", "PyObject_DelAttrString"], [49, 2, 1, "c.PyObject_DelItem", "PyObject_DelItem"], [49, 2, 1, "c.PyObject_Dir", "PyObject_Dir"], [49, 2, 1, "c.PyObject_Format", "PyObject_Format"], [42, 2, 1, "c.PyObject_Free", "PyObject_Free"], [28, 2, 1, "c.PyObject_GC_Del", "PyObject_GC_Del"], [28, 2, 1, "c.PyObject_GC_IsFinalized", "PyObject_GC_IsFinalized"], [28, 2, 1, "c.PyObject_GC_IsTracked", "PyObject_GC_IsTracked"], [28, 1, 1, "c.PyObject_GC_New", "PyObject_GC_New"], [28, 1, 1, "c.PyObject_GC_NewVar", "PyObject_GC_NewVar"], [28, 1, 1, "c.PyObject_GC_Resize", "PyObject_GC_Resize"], [28, 2, 1, "c.PyObject_GC_Track", "PyObject_GC_Track"], [28, 2, 1, "c.PyObject_GC_UnTrack", "PyObject_GC_UnTrack"], [49, 2, 1, "c.PyObject_GenericGetAttr", "PyObject_GenericGetAttr"], [49, 2, 1, "c.PyObject_GenericGetDict", "PyObject_GenericGetDict"], [49, 2, 1, "c.PyObject_GenericSetAttr", "PyObject_GenericSetAttr"], [49, 2, 1, "c.PyObject_GenericSetDict", "PyObject_GenericSetDict"], [49, 2, 1, "c.PyObject_GetAIter", "PyObject_GetAIter"], [42, 2, 1, "c.PyObject_GetArenaAllocator", "PyObject_GetArenaAllocator"], [49, 2, 1, "c.PyObject_GetAttr", "PyObject_GetAttr"], [49, 2, 1, "c.PyObject_GetAttrString", "PyObject_GetAttrString"], [7, 2, 1, "c.PyObject_GetBuffer", "PyObject_GetBuffer"], [49, 2, 1, "c.PyObject_GetItem", "PyObject_GetItem"], [49, 2, 1, "c.PyObject_GetItemData", "PyObject_GetItemData"], [49, 2, 1, "c.PyObject_GetIter", "PyObject_GetIter"], [49, 2, 1, "c.PyObject_GetTypeData", "PyObject_GetTypeData"], [58, 1, 1, "c.PyObject_HEAD", "PyObject_HEAD"], [58, 1, 1, "c.PyObject_HEAD_INIT", "PyObject_HEAD_INIT"], [49, 2, 1, "c.PyObject_HasAttr", "PyObject_HasAttr"], [49, 2, 1, "c.PyObject_HasAttrString", "PyObject_HasAttrString"], [49, 2, 1, "c.PyObject_Hash", "PyObject_Hash"], [49, 2, 1, "c.PyObject_HashNotImplemented", "PyObject_HashNotImplemented"], [28, 2, 1, "c.PyObject_IS_GC", "PyObject_IS_GC"], [3, 2, 1, "c.PyObject_Init", "PyObject_Init"], [3, 2, 1, "c.PyObject_InitVar", "PyObject_InitVar"], [49, 2, 1, "c.PyObject_IsInstance", "PyObject_IsInstance"], [49, 2, 1, "c.PyObject_IsSubclass", "PyObject_IsSubclass"], [49, 2, 1, "c.PyObject_IsTrue", "PyObject_IsTrue"], [49, 2, 1, "c.PyObject_Length", "PyObject_Length"], [49, 2, 1, "c.PyObject_LengthHint", "PyObject_LengthHint"], [42, 2, 1, "c.PyObject_Malloc", "PyObject_Malloc"], [3, 1, 1, "c.PyObject_New", "PyObject_New"], [3, 1, 1, "c.PyObject_NewVar", "PyObject_NewVar"], [49, 2, 1, "c.PyObject_Not", "PyObject_Not"], [49, 2, 1, "c.PyObject_Print", "PyObject_Print"], [42, 2, 1, "c.PyObject_Realloc", "PyObject_Realloc"], [49, 2, 1, "c.PyObject_Repr", "PyObject_Repr"], [49, 2, 1, "c.PyObject_RichCompare", "PyObject_RichCompare"], [49, 2, 1, "c.PyObject_RichCompareBool", "PyObject_RichCompareBool"], [42, 2, 1, "c.PyObject_SetArenaAllocator", "PyObject_SetArenaAllocator"], [49, 2, 1, "c.PyObject_SetAttr", "PyObject_SetAttr"], [49, 2, 1, "c.PyObject_SetAttrString", "PyObject_SetAttrString"], [49, 2, 1, "c.PyObject_SetItem", "PyObject_SetItem"], [49, 2, 1, "c.PyObject_Size", "PyObject_Size"], [49, 2, 1, "c.PyObject_Str", "PyObject_Str"], [49, 2, 1, "c.PyObject_Type", "PyObject_Type"], [49, 2, 1, "c.PyObject_TypeCheck", "PyObject_TypeCheck"], [58, 1, 1, "c.PyObject_VAR_HEAD", "PyObject_VAR_HEAD"], [10, 2, 1, "c.PyObject_Vectorcall", "PyObject_Vectorcall"], [10, 2, 1, "c.PyObject_VectorcallDict", "PyObject_VectorcallDict"], [10, 2, 1, "c.PyObject_VectorcallMethod", "PyObject_VectorcallMethod"], [34, 4, 1, "c.PyPreConfig", "PyPreConfig"], [34, 2, 1, "c.PyPreConfig_InitIsolatedConfig", "PyPreConfig_InitIsolatedConfig"], [34, 2, 1, "c.PyPreConfig_InitPythonConfig", "PyPreConfig_InitPythonConfig"], [21, 0, 1, "c.PyProperty_Type", "PyProperty_Type"], [66, 2, 1, "c.PyRun_AnyFile", "PyRun_AnyFile"], [66, 2, 1, "c.PyRun_AnyFileEx", "PyRun_AnyFileEx"], [66, 2, 1, "c.PyRun_AnyFileExFlags", "PyRun_AnyFileExFlags"], [66, 2, 1, "c.PyRun_AnyFileFlags", "PyRun_AnyFileFlags"], [66, 2, 1, "c.PyRun_File", "PyRun_File"], [66, 2, 1, "c.PyRun_FileEx", "PyRun_FileEx"], [66, 2, 1, "c.PyRun_FileExFlags", "PyRun_FileExFlags"], [66, 2, 1, "c.PyRun_FileFlags", "PyRun_FileFlags"], [66, 2, 1, "c.PyRun_InteractiveLoop", "PyRun_InteractiveLoop"], [66, 2, 1, "c.PyRun_InteractiveLoopFlags", "PyRun_InteractiveLoopFlags"], [66, 2, 1, "c.PyRun_InteractiveOne", "PyRun_InteractiveOne"], [66, 2, 1, "c.PyRun_InteractiveOneFlags", "PyRun_InteractiveOneFlags"], [66, 2, 1, "c.PyRun_SimpleFile", "PyRun_SimpleFile"], [66, 2, 1, "c.PyRun_SimpleFileEx", "PyRun_SimpleFileEx"], [66, 2, 1, "c.PyRun_SimpleFileExFlags", "PyRun_SimpleFileExFlags"], [66, 2, 1, "c.PyRun_SimpleString", "PyRun_SimpleString"], [66, 2, 1, "c.PyRun_SimpleStringFlags", "PyRun_SimpleStringFlags"], [66, 2, 1, "c.PyRun_String", "PyRun_String"], [66, 2, 1, "c.PyRun_StringFlags", "PyRun_StringFlags"], [36, 4, 1, "c.PySendResult", "PySendResult"], [37, 2, 1, "c.PySeqIter_Check", "PySeqIter_Check"], [37, 2, 1, "c.PySeqIter_New", "PySeqIter_New"], [37, 0, 1, "c.PySeqIter_Type", "PySeqIter_Type"], [63, 4, 1, "c.PySequenceMethods", "PySequenceMethods"], [54, 2, 1, "c.PySequence_Check", "PySequence_Check"], [54, 2, 1, "c.PySequence_Concat", "PySequence_Concat"], [54, 2, 1, "c.PySequence_Contains", "PySequence_Contains"], [54, 2, 1, "c.PySequence_Count", "PySequence_Count"], [54, 2, 1, "c.PySequence_DelItem", "PySequence_DelItem"], [54, 2, 1, "c.PySequence_DelSlice", "PySequence_DelSlice"], [54, 2, 1, "c.PySequence_Fast", "PySequence_Fast"], [54, 2, 1, "c.PySequence_Fast_GET_ITEM", "PySequence_Fast_GET_ITEM"], [54, 2, 1, "c.PySequence_Fast_GET_SIZE", "PySequence_Fast_GET_SIZE"], [54, 2, 1, "c.PySequence_Fast_ITEMS", "PySequence_Fast_ITEMS"], [54, 2, 1, "c.PySequence_GetItem", "PySequence_GetItem"], [54, 2, 1, "c.PySequence_GetSlice", "PySequence_GetSlice"], [54, 2, 1, "c.PySequence_ITEM", "PySequence_ITEM"], [54, 2, 1, "c.PySequence_InPlaceConcat", "PySequence_InPlaceConcat"], [54, 2, 1, "c.PySequence_InPlaceRepeat", "PySequence_InPlaceRepeat"], [54, 2, 1, "c.PySequence_Index", "PySequence_Index"], [54, 2, 1, "c.PySequence_Length", "PySequence_Length"], [54, 2, 1, "c.PySequence_List", "PySequence_List"], [54, 2, 1, "c.PySequence_Repeat", "PySequence_Repeat"], [54, 2, 1, "c.PySequence_SetItem", "PySequence_SetItem"], [54, 2, 1, "c.PySequence_SetSlice", "PySequence_SetSlice"], [54, 2, 1, "c.PySequence_Size", "PySequence_Size"], [54, 2, 1, "c.PySequence_Tuple", "PySequence_Tuple"], [55, 4, 1, "c.PySetObject", "PySetObject"], [55, 2, 1, "c.PySet_Add", "PySet_Add"], [55, 2, 1, "c.PySet_Check", "PySet_Check"], [55, 2, 1, "c.PySet_CheckExact", "PySet_CheckExact"], [55, 2, 1, "c.PySet_Clear", "PySet_Clear"], [55, 2, 1, "c.PySet_Contains", "PySet_Contains"], [55, 2, 1, "c.PySet_Discard", "PySet_Discard"], [55, 2, 1, "c.PySet_GET_SIZE", "PySet_GET_SIZE"], [55, 2, 1, "c.PySet_New", "PySet_New"], [55, 2, 1, "c.PySet_Pop", "PySet_Pop"], [55, 2, 1, "c.PySet_Size", "PySet_Size"], [55, 0, 1, "c.PySet_Type", "PySet_Type"], [23, 2, 1, "c.PySignal_SetWakeupFd", "PySignal_SetWakeupFd"], [56, 2, 1, "c.PySlice_AdjustIndices", "PySlice_AdjustIndices"], [56, 2, 1, "c.PySlice_Check", "PySlice_Check"], [56, 2, 1, "c.PySlice_GetIndices", "PySlice_GetIndices"], [56, 2, 1, "c.PySlice_GetIndicesEx", "PySlice_GetIndicesEx"], [56, 2, 1, "c.PySlice_New", "PySlice_New"], [56, 0, 1, "c.PySlice_Type", "PySlice_Type"], [56, 2, 1, "c.PySlice_Unpack", "PySlice_Unpack"], [45, 2, 1, "c.PyState_AddModule", "PyState_AddModule"], [45, 2, 1, "c.PyState_FindModule", "PyState_FindModule"], [45, 2, 1, "c.PyState_RemoveModule", "PyState_RemoveModule"], [34, 4, 1, "c.PyStatus", "PyStatus"], [34, 2, 1, "c.PyStatus_Error", "PyStatus_Error"], [34, 2, 1, "c.PyStatus_Exception", "PyStatus_Exception"], [34, 2, 1, "c.PyStatus_Exit", "PyStatus_Exit"], [34, 2, 1, "c.PyStatus_IsError", "PyStatus_IsError"], [34, 2, 1, "c.PyStatus_IsExit", "PyStatus_IsExit"], [34, 2, 1, "c.PyStatus_NoMemory", "PyStatus_NoMemory"], [34, 2, 1, "c.PyStatus_Ok", "PyStatus_Ok"], [60, 4, 1, "c.PyStructSequence_Desc", "PyStructSequence_Desc"], [60, 4, 1, "c.PyStructSequence_Field", "PyStructSequence_Field"], [60, 2, 1, "c.PyStructSequence_GET_ITEM", "PyStructSequence_GET_ITEM"], [60, 2, 1, "c.PyStructSequence_GetItem", "PyStructSequence_GetItem"], [60, 2, 1, "c.PyStructSequence_InitType", "PyStructSequence_InitType"], [60, 2, 1, "c.PyStructSequence_InitType2", "PyStructSequence_InitType2"], [60, 2, 1, "c.PyStructSequence_New", "PyStructSequence_New"], [60, 2, 1, "c.PyStructSequence_NewType", "PyStructSequence_NewType"], [60, 2, 1, "c.PyStructSequence_SET_ITEM", "PyStructSequence_SET_ITEM"], [60, 2, 1, "c.PyStructSequence_SetItem", "PyStructSequence_SetItem"], [60, 0, 1, "c.PyStructSequence_UnnamedField", "PyStructSequence_UnnamedField"], [59, 2, 1, "c.PySys_AddAuditHook", "PySys_AddAuditHook"], [59, 2, 1, "c.PySys_AddWarnOption", "PySys_AddWarnOption"], [59, 2, 1, "c.PySys_AddWarnOptionUnicode", "PySys_AddWarnOptionUnicode"], [59, 2, 1, "c.PySys_AddXOption", "PySys_AddXOption"], [59, 2, 1, "c.PySys_Audit", "PySys_Audit"], [59, 2, 1, "c.PySys_FormatStderr", "PySys_FormatStderr"], [59, 2, 1, "c.PySys_FormatStdout", "PySys_FormatStdout"], [59, 2, 1, "c.PySys_GetObject", "PySys_GetObject"], [59, 2, 1, "c.PySys_GetXOptions", "PySys_GetXOptions"], [59, 2, 1, "c.PySys_ResetWarnOptions", "PySys_ResetWarnOptions"], [33, 2, 1, "c.PySys_SetArgv", "PySys_SetArgv"], [33, 2, 1, "c.PySys_SetArgvEx", "PySys_SetArgvEx"], [59, 2, 1, "c.PySys_SetObject", "PySys_SetObject"], [59, 2, 1, "c.PySys_SetPath", "PySys_SetPath"], [59, 2, 1, "c.PySys_WriteStderr", "PySys_WriteStderr"], [59, 2, 1, "c.PySys_WriteStdout", "PySys_WriteStdout"], [20, 2, 1, "c.PyTZInfo_Check", "PyTZInfo_Check"], [20, 2, 1, "c.PyTZInfo_CheckExact", "PyTZInfo_CheckExact"], [33, 4, 1, "c.PyThreadState", "PyThreadState"], [33, 2, 1, "c.PyThreadState_Clear", "PyThreadState_Clear"], [33, 2, 1, "c.PyThreadState_Delete", "PyThreadState_Delete"], [33, 2, 1, "c.PyThreadState_DeleteCurrent", "PyThreadState_DeleteCurrent"], [33, 2, 1, "c.PyThreadState_EnterTracing", "PyThreadState_EnterTracing"], [33, 2, 1, "c.PyThreadState_Get", "PyThreadState_Get"], [33, 2, 1, "c.PyThreadState_GetDict", "PyThreadState_GetDict"], [33, 2, 1, "c.PyThreadState_GetFrame", "PyThreadState_GetFrame"], [33, 2, 1, "c.PyThreadState_GetID", "PyThreadState_GetID"], [33, 2, 1, "c.PyThreadState_GetInterpreter", "PyThreadState_GetInterpreter"], [33, 2, 1, "c.PyThreadState_LeaveTracing", "PyThreadState_LeaveTracing"], [33, 2, 1, "c.PyThreadState_New", "PyThreadState_New"], [33, 2, 1, "c.PyThreadState_Next", "PyThreadState_Next"], [33, 2, 1, "c.PyThreadState_SetAsyncExc", "PyThreadState_SetAsyncExc"], [33, 2, 1, "c.PyThreadState_Swap", "PyThreadState_Swap"], [33, 2, 1, "c.PyThread_ReInitTLS", "PyThread_ReInitTLS"], [33, 2, 1, "c.PyThread_create_key", "PyThread_create_key"], [33, 2, 1, "c.PyThread_delete_key", "PyThread_delete_key"], [33, 2, 1, "c.PyThread_delete_key_value", "PyThread_delete_key_value"], [33, 2, 1, "c.PyThread_get_key_value", "PyThread_get_key_value"], [33, 2, 1, "c.PyThread_set_key_value", "PyThread_set_key_value"], [33, 2, 1, "c.PyThread_tss_alloc", "PyThread_tss_alloc"], [33, 2, 1, "c.PyThread_tss_create", "PyThread_tss_create"], [33, 2, 1, "c.PyThread_tss_delete", "PyThread_tss_delete"], [33, 2, 1, "c.PyThread_tss_free", "PyThread_tss_free"], [33, 2, 1, "c.PyThread_tss_get", "PyThread_tss_get"], [33, 2, 1, "c.PyThread_tss_is_created", "PyThread_tss_is_created"], [33, 2, 1, "c.PyThread_tss_set", "PyThread_tss_set"], [20, 2, 1, "c.PyTimeZone_FromOffset", "PyTimeZone_FromOffset"], [20, 2, 1, "c.PyTimeZone_FromOffsetAndName", "PyTimeZone_FromOffsetAndName"], [20, 2, 1, "c.PyTime_Check", "PyTime_Check"], [20, 2, 1, "c.PyTime_CheckExact", "PyTime_CheckExact"], [20, 2, 1, "c.PyTime_FromTime", "PyTime_FromTime"], [20, 2, 1, "c.PyTime_FromTimeAndFold", "PyTime_FromTimeAndFold"], [42, 2, 1, "c.PyTraceMalloc_Track", "PyTraceMalloc_Track"], [42, 2, 1, "c.PyTraceMalloc_Untrack", "PyTraceMalloc_Untrack"], [33, 0, 1, "c.PyTrace_CALL", "PyTrace_CALL"], [33, 0, 1, "c.PyTrace_C_CALL", "PyTrace_C_CALL"], [33, 0, 1, "c.PyTrace_C_EXCEPTION", "PyTrace_C_EXCEPTION"], [33, 0, 1, "c.PyTrace_C_RETURN", "PyTrace_C_RETURN"], [33, 0, 1, "c.PyTrace_EXCEPTION", "PyTrace_EXCEPTION"], [33, 0, 1, "c.PyTrace_LINE", "PyTrace_LINE"], [33, 0, 1, "c.PyTrace_OPCODE", "PyTrace_OPCODE"], [33, 0, 1, "c.PyTrace_RETURN", "PyTrace_RETURN"], [60, 4, 1, "c.PyTupleObject", "PyTupleObject"], [60, 2, 1, "c.PyTuple_Check", "PyTuple_Check"], [60, 2, 1, "c.PyTuple_CheckExact", "PyTuple_CheckExact"], [60, 2, 1, "c.PyTuple_GET_ITEM", "PyTuple_GET_ITEM"], [60, 2, 1, "c.PyTuple_GET_SIZE", "PyTuple_GET_SIZE"], [60, 2, 1, "c.PyTuple_GetItem", "PyTuple_GetItem"], [60, 2, 1, "c.PyTuple_GetSlice", "PyTuple_GetSlice"], [60, 2, 1, "c.PyTuple_New", "PyTuple_New"], [60, 2, 1, "c.PyTuple_Pack", "PyTuple_Pack"], [60, 2, 1, "c.PyTuple_SET_ITEM", "PyTuple_SET_ITEM"], [60, 2, 1, "c.PyTuple_SetItem", "PyTuple_SetItem"], [60, 2, 1, "c.PyTuple_Size", "PyTuple_Size"], [60, 0, 1, "c.PyTuple_Type", "PyTuple_Type"], [61, 4, 1, "c.PyTypeObject", "PyTypeObject"], [61, 2, 1, "c.PyType_AddWatcher", "PyType_AddWatcher"], [61, 2, 1, "c.PyType_Check", "PyType_Check"], [61, 2, 1, "c.PyType_CheckExact", "PyType_CheckExact"], [61, 2, 1, "c.PyType_ClearCache", "PyType_ClearCache"], [61, 2, 1, "c.PyType_ClearWatcher", "PyType_ClearWatcher"], [61, 2, 1, "c.PyType_FromMetaclass", "PyType_FromMetaclass"], [61, 2, 1, "c.PyType_FromModuleAndSpec", "PyType_FromModuleAndSpec"], [61, 2, 1, "c.PyType_FromSpec", "PyType_FromSpec"], [61, 2, 1, "c.PyType_FromSpecWithBases", "PyType_FromSpecWithBases"], [61, 2, 1, "c.PyType_GenericAlloc", "PyType_GenericAlloc"], [61, 2, 1, "c.PyType_GenericNew", "PyType_GenericNew"], [61, 2, 1, "c.PyType_GetDict", "PyType_GetDict"], [61, 2, 1, "c.PyType_GetFlags", "PyType_GetFlags"], [61, 2, 1, "c.PyType_GetModule", "PyType_GetModule"], [61, 2, 1, "c.PyType_GetModuleByDef", "PyType_GetModuleByDef"], [61, 2, 1, "c.PyType_GetModuleState", "PyType_GetModuleState"], [61, 2, 1, "c.PyType_GetName", "PyType_GetName"], [61, 2, 1, "c.PyType_GetQualName", "PyType_GetQualName"], [61, 2, 1, "c.PyType_GetSlot", "PyType_GetSlot"], [49, 2, 1, "c.PyType_GetTypeDataSize", "PyType_GetTypeDataSize"], [61, 2, 1, "c.PyType_HasFeature", "PyType_HasFeature"], [61, 2, 1, "c.PyType_IS_GC", "PyType_IS_GC"], [61, 2, 1, "c.PyType_IsSubtype", "PyType_IsSubtype"], [61, 2, 1, "c.PyType_Modified", "PyType_Modified"], [61, 2, 1, "c.PyType_Ready", "PyType_Ready"], [61, 4, 1, "c.PyType_Slot", "PyType_Slot"], [61, 4, 1, "c.PyType_Spec", "PyType_Spec"], [61, 0, 1, "c.PyType_Type", "PyType_Type"], [61, 2, 1, "c.PyType_Watch", "PyType_Watch"], [61, 4, 1, "c.PyType_WatchCallback", "PyType_WatchCallback"], [23, 2, 1, "c.PyUnicodeDecodeError_Create", "PyUnicodeDecodeError_Create"], [23, 2, 1, "c.PyUnicodeDecodeError_GetEncoding", "PyUnicodeDecodeError_GetEncoding"], [23, 2, 1, "c.PyUnicodeDecodeError_GetEnd", "PyUnicodeDecodeError_GetEnd"], [23, 2, 1, "c.PyUnicodeDecodeError_GetObject", "PyUnicodeDecodeError_GetObject"], [23, 2, 1, "c.PyUnicodeDecodeError_GetReason", "PyUnicodeDecodeError_GetReason"], [23, 2, 1, "c.PyUnicodeDecodeError_GetStart", "PyUnicodeDecodeError_GetStart"], [23, 2, 1, "c.PyUnicodeDecodeError_SetEnd", "PyUnicodeDecodeError_SetEnd"], [23, 2, 1, "c.PyUnicodeDecodeError_SetReason", "PyUnicodeDecodeError_SetReason"], [23, 2, 1, "c.PyUnicodeDecodeError_SetStart", "PyUnicodeDecodeError_SetStart"], [23, 2, 1, "c.PyUnicodeEncodeError_GetEncoding", "PyUnicodeEncodeError_GetEncoding"], [23, 2, 1, "c.PyUnicodeEncodeError_GetEnd", "PyUnicodeEncodeError_GetEnd"], [23, 2, 1, "c.PyUnicodeEncodeError_GetObject", "PyUnicodeEncodeError_GetObject"], [23, 2, 1, "c.PyUnicodeEncodeError_GetReason", "PyUnicodeEncodeError_GetReason"], [23, 2, 1, "c.PyUnicodeEncodeError_GetStart", "PyUnicodeEncodeError_GetStart"], [23, 2, 1, "c.PyUnicodeEncodeError_SetEnd", "PyUnicodeEncodeError_SetEnd"], [23, 2, 1, "c.PyUnicodeEncodeError_SetReason", "PyUnicodeEncodeError_SetReason"], [23, 2, 1, "c.PyUnicodeEncodeError_SetStart", "PyUnicodeEncodeError_SetStart"], [64, 4, 1, "c.PyUnicodeObject", "PyUnicodeObject"], [23, 2, 1, "c.PyUnicodeTranslateError_GetEnd", "PyUnicodeTranslateError_GetEnd"], [23, 2, 1, "c.PyUnicodeTranslateError_GetObject", "PyUnicodeTranslateError_GetObject"], [23, 2, 1, "c.PyUnicodeTranslateError_GetReason", "PyUnicodeTranslateError_GetReason"], [23, 2, 1, "c.PyUnicodeTranslateError_GetStart", "PyUnicodeTranslateError_GetStart"], [23, 2, 1, "c.PyUnicodeTranslateError_SetEnd", "PyUnicodeTranslateError_SetEnd"], [23, 2, 1, "c.PyUnicodeTranslateError_SetReason", "PyUnicodeTranslateError_SetReason"], [23, 2, 1, "c.PyUnicodeTranslateError_SetStart", "PyUnicodeTranslateError_SetStart"], [64, 2, 1, "c.PyUnicode_1BYTE_DATA", "PyUnicode_1BYTE_DATA"], [64, 1, 1, "c.PyUnicode_1BYTE_KIND", "PyUnicode_1BYTE_KIND"], [64, 2, 1, "c.PyUnicode_2BYTE_DATA", "PyUnicode_2BYTE_DATA"], [64, 1, 1, "c.PyUnicode_2BYTE_KIND", "PyUnicode_2BYTE_KIND"], [64, 2, 1, "c.PyUnicode_4BYTE_DATA", "PyUnicode_4BYTE_DATA"], [64, 1, 1, "c.PyUnicode_4BYTE_KIND", "PyUnicode_4BYTE_KIND"], [64, 2, 1, "c.PyUnicode_AsASCIIString", "PyUnicode_AsASCIIString"], [64, 2, 1, "c.PyUnicode_AsCharmapString", "PyUnicode_AsCharmapString"], [64, 2, 1, "c.PyUnicode_AsEncodedString", "PyUnicode_AsEncodedString"], [64, 2, 1, "c.PyUnicode_AsLatin1String", "PyUnicode_AsLatin1String"], [64, 2, 1, "c.PyUnicode_AsMBCSString", "PyUnicode_AsMBCSString"], [64, 2, 1, "c.PyUnicode_AsRawUnicodeEscapeString", "PyUnicode_AsRawUnicodeEscapeString"], [64, 2, 1, "c.PyUnicode_AsUCS4", "PyUnicode_AsUCS4"], [64, 2, 1, "c.PyUnicode_AsUCS4Copy", "PyUnicode_AsUCS4Copy"], [64, 2, 1, "c.PyUnicode_AsUTF16String", "PyUnicode_AsUTF16String"], [64, 2, 1, "c.PyUnicode_AsUTF32String", "PyUnicode_AsUTF32String"], [64, 2, 1, "c.PyUnicode_AsUTF8", "PyUnicode_AsUTF8"], [64, 2, 1, "c.PyUnicode_AsUTF8AndSize", "PyUnicode_AsUTF8AndSize"], [64, 2, 1, "c.PyUnicode_AsUTF8String", "PyUnicode_AsUTF8String"], [64, 2, 1, "c.PyUnicode_AsUnicodeEscapeString", "PyUnicode_AsUnicodeEscapeString"], [64, 2, 1, "c.PyUnicode_AsWideChar", "PyUnicode_AsWideChar"], [64, 2, 1, "c.PyUnicode_AsWideCharString", "PyUnicode_AsWideCharString"], [64, 2, 1, "c.PyUnicode_Check", "PyUnicode_Check"], [64, 2, 1, "c.PyUnicode_CheckExact", "PyUnicode_CheckExact"], [64, 2, 1, "c.PyUnicode_Compare", "PyUnicode_Compare"], [64, 2, 1, "c.PyUnicode_CompareWithASCIIString", "PyUnicode_CompareWithASCIIString"], [64, 2, 1, "c.PyUnicode_Concat", "PyUnicode_Concat"], [64, 2, 1, "c.PyUnicode_Contains", "PyUnicode_Contains"], [64, 2, 1, "c.PyUnicode_CopyCharacters", "PyUnicode_CopyCharacters"], [64, 2, 1, "c.PyUnicode_Count", "PyUnicode_Count"], [64, 2, 1, "c.PyUnicode_DATA", "PyUnicode_DATA"], [64, 2, 1, "c.PyUnicode_Decode", "PyUnicode_Decode"], [64, 2, 1, "c.PyUnicode_DecodeASCII", "PyUnicode_DecodeASCII"], [64, 2, 1, "c.PyUnicode_DecodeCharmap", "PyUnicode_DecodeCharmap"], [64, 2, 1, "c.PyUnicode_DecodeFSDefault", "PyUnicode_DecodeFSDefault"], [64, 2, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "PyUnicode_DecodeFSDefaultAndSize"], [64, 2, 1, "c.PyUnicode_DecodeLatin1", "PyUnicode_DecodeLatin1"], [64, 2, 1, "c.PyUnicode_DecodeLocale", "PyUnicode_DecodeLocale"], [64, 2, 1, "c.PyUnicode_DecodeLocaleAndSize", "PyUnicode_DecodeLocaleAndSize"], [64, 2, 1, "c.PyUnicode_DecodeMBCS", "PyUnicode_DecodeMBCS"], [64, 2, 1, "c.PyUnicode_DecodeMBCSStateful", "PyUnicode_DecodeMBCSStateful"], [64, 2, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "PyUnicode_DecodeRawUnicodeEscape"], [64, 2, 1, "c.PyUnicode_DecodeUTF16", "PyUnicode_DecodeUTF16"], [64, 2, 1, "c.PyUnicode_DecodeUTF16Stateful", "PyUnicode_DecodeUTF16Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF32", "PyUnicode_DecodeUTF32"], [64, 2, 1, "c.PyUnicode_DecodeUTF32Stateful", "PyUnicode_DecodeUTF32Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF7", "PyUnicode_DecodeUTF7"], [64, 2, 1, "c.PyUnicode_DecodeUTF7Stateful", "PyUnicode_DecodeUTF7Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF8", "PyUnicode_DecodeUTF8"], [64, 2, 1, "c.PyUnicode_DecodeUTF8Stateful", "PyUnicode_DecodeUTF8Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUnicodeEscape", "PyUnicode_DecodeUnicodeEscape"], [64, 2, 1, "c.PyUnicode_EncodeCodePage", "PyUnicode_EncodeCodePage"], [64, 2, 1, "c.PyUnicode_EncodeFSDefault", "PyUnicode_EncodeFSDefault"], [64, 2, 1, "c.PyUnicode_EncodeLocale", "PyUnicode_EncodeLocale"], [64, 2, 1, "c.PyUnicode_FSConverter", "PyUnicode_FSConverter"], [64, 2, 1, "c.PyUnicode_FSDecoder", "PyUnicode_FSDecoder"], [64, 2, 1, "c.PyUnicode_Fill", "PyUnicode_Fill"], [64, 2, 1, "c.PyUnicode_Find", "PyUnicode_Find"], [64, 2, 1, "c.PyUnicode_FindChar", "PyUnicode_FindChar"], [64, 2, 1, "c.PyUnicode_Format", "PyUnicode_Format"], [64, 2, 1, "c.PyUnicode_FromEncodedObject", "PyUnicode_FromEncodedObject"], [64, 2, 1, "c.PyUnicode_FromFormat", "PyUnicode_FromFormat"], [64, 2, 1, "c.PyUnicode_FromFormatV", "PyUnicode_FromFormatV"], [64, 2, 1, "c.PyUnicode_FromKindAndData", "PyUnicode_FromKindAndData"], [64, 2, 1, "c.PyUnicode_FromObject", "PyUnicode_FromObject"], [64, 2, 1, "c.PyUnicode_FromString", "PyUnicode_FromString"], [64, 2, 1, "c.PyUnicode_FromStringAndSize", "PyUnicode_FromStringAndSize"], [64, 2, 1, "c.PyUnicode_FromWideChar", "PyUnicode_FromWideChar"], [64, 2, 1, "c.PyUnicode_GET_LENGTH", "PyUnicode_GET_LENGTH"], [64, 2, 1, "c.PyUnicode_GetLength", "PyUnicode_GetLength"], [64, 2, 1, "c.PyUnicode_InternFromString", "PyUnicode_InternFromString"], [64, 2, 1, "c.PyUnicode_InternInPlace", "PyUnicode_InternInPlace"], [64, 2, 1, "c.PyUnicode_IsIdentifier", "PyUnicode_IsIdentifier"], [64, 2, 1, "c.PyUnicode_Join", "PyUnicode_Join"], [64, 2, 1, "c.PyUnicode_KIND", "PyUnicode_KIND"], [64, 2, 1, "c.PyUnicode_MAX_CHAR_VALUE", "PyUnicode_MAX_CHAR_VALUE"], [64, 2, 1, "c.PyUnicode_New", "PyUnicode_New"], [64, 2, 1, "c.PyUnicode_READ", "PyUnicode_READ"], [64, 2, 1, "c.PyUnicode_READY", "PyUnicode_READY"], [64, 2, 1, "c.PyUnicode_READ_CHAR", "PyUnicode_READ_CHAR"], [64, 2, 1, "c.PyUnicode_ReadChar", "PyUnicode_ReadChar"], [64, 2, 1, "c.PyUnicode_Replace", "PyUnicode_Replace"], [64, 2, 1, "c.PyUnicode_RichCompare", "PyUnicode_RichCompare"], [64, 2, 1, "c.PyUnicode_Split", "PyUnicode_Split"], [64, 2, 1, "c.PyUnicode_Splitlines", "PyUnicode_Splitlines"], [64, 2, 1, "c.PyUnicode_Substring", "PyUnicode_Substring"], [64, 2, 1, "c.PyUnicode_Tailmatch", "PyUnicode_Tailmatch"], [64, 2, 1, "c.PyUnicode_Translate", "PyUnicode_Translate"], [64, 0, 1, "c.PyUnicode_Type", "PyUnicode_Type"], [64, 2, 1, "c.PyUnicode_WRITE", "PyUnicode_WRITE"], [64, 2, 1, "c.PyUnicode_WriteChar", "PyUnicode_WriteChar"], [13, 2, 1, "c.PyUnstable_Code_GetExtra", "PyUnstable_Code_GetExtra"], [13, 2, 1, "c.PyUnstable_Code_New", "PyUnstable_Code_New"], [13, 2, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "PyUnstable_Code_NewWithPosOnlyArgs"], [13, 2, 1, "c.PyUnstable_Code_SetExtra", "PyUnstable_Code_SetExtra"], [13, 2, 1, "c.PyUnstable_Eval_RequestCodeExtraIndex", "PyUnstable_Eval_RequestCodeExtraIndex"], [23, 2, 1, "c.PyUnstable_Exc_PrepReraiseStar", "PyUnstable_Exc_PrepReraiseStar"], [28, 2, 1, "c.PyUnstable_GC_VisitObjects", "PyUnstable_GC_VisitObjects"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetCode", "PyUnstable_InterpreterFrame_GetCode"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetLasti", "PyUnstable_InterpreterFrame_GetLasti"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetLine", "PyUnstable_InterpreterFrame_GetLine"], [39, 2, 1, "c.PyUnstable_Long_CompactValue", "PyUnstable_Long_CompactValue"], [39, 2, 1, "c.PyUnstable_Long_IsCompact", "PyUnstable_Long_IsCompact"], [28, 2, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "PyUnstable_Object_GC_NewWithExtraData"], [51, 2, 1, "c.PyUnstable_PerfMapState_Fini", "PyUnstable_PerfMapState_Fini"], [51, 2, 1, "c.PyUnstable_PerfMapState_Init", "PyUnstable_PerfMapState_Init"], [61, 2, 1, "c.PyUnstable_Type_AssignVersionTag", "PyUnstable_Type_AssignVersionTag"], [51, 2, 1, "c.PyUnstable_WritePerfMapEntry", "PyUnstable_WritePerfMapEntry"], [58, 4, 1, "c.PyVarObject", "PyVarObject"], [58, 1, 1, "c.PyVarObject_HEAD_INIT", "PyVarObject_HEAD_INIT"], [10, 2, 1, "c.PyVectorcall_Call", "PyVectorcall_Call"], [10, 2, 1, "c.PyVectorcall_Function", "PyVectorcall_Function"], [10, 2, 1, "c.PyVectorcall_NARGS", "PyVectorcall_NARGS"], [67, 2, 1, "c.PyWeakref_Check", "PyWeakref_Check"], [67, 2, 1, "c.PyWeakref_CheckProxy", "PyWeakref_CheckProxy"], [67, 2, 1, "c.PyWeakref_CheckRef", "PyWeakref_CheckRef"], [67, 2, 1, "c.PyWeakref_GET_OBJECT", "PyWeakref_GET_OBJECT"], [67, 2, 1, "c.PyWeakref_GetObject", "PyWeakref_GetObject"], [67, 2, 1, "c.PyWeakref_NewProxy", "PyWeakref_NewProxy"], [67, 2, 1, "c.PyWeakref_NewRef", "PyWeakref_NewRef"], [34, 4, 1, "c.PyWideStringList", "PyWideStringList"], [34, 2, 1, "c.PyWideStringList_Append", "PyWideStringList_Append"], [34, 2, 1, "c.PyWideStringList_Insert", "PyWideStringList_Insert"], [21, 2, 1, "c.PyWrapper_New", "PyWrapper_New"], [35, 1, 1, "c.Py_ABS", "Py_ABS"], [35, 1, 1, "c.Py_ALWAYS_INLINE", "Py_ALWAYS_INLINE"], [58, 1, 1, "c.Py_AUDIT_READ", "Py_AUDIT_READ"], [33, 2, 1, "c.Py_AddPendingCall", "Py_AddPendingCall"], [59, 2, 1, "c.Py_AtExit", "Py_AtExit"], [59, 4, 1, "c.Py_AuditHookFunction", "Py_AuditHookFunction"], [33, 1, 1, "c.Py_BEGIN_ALLOW_THREADS", "Py_BEGIN_ALLOW_THREADS"], [33, 1, 1, "c.Py_BLOCK_THREADS", "Py_BLOCK_THREADS"], [5, 2, 1, "c.Py_BuildValue", "Py_BuildValue"], [66, 2, 1, "c.Py_BytesMain", "Py_BytesMain"], [33, 0, 1, "c.Py_BytesWarningFlag", "Py_BytesWarningFlag"], [35, 1, 1, "c.Py_CHARMASK", "Py_CHARMASK"], [52, 2, 1, "c.Py_CLEAR", "Py_CLEAR"], [66, 2, 1, "c.Py_CompileString", "Py_CompileString"], [66, 2, 1, "c.Py_CompileStringExFlags", "Py_CompileStringExFlags"], [66, 2, 1, "c.Py_CompileStringFlags", "Py_CompileStringFlags"], [66, 2, 1, "c.Py_CompileStringObject", "Py_CompileStringObject"], [35, 1, 1, "c.Py_DEBUG", "Py_DEBUG"], [52, 2, 1, "c.Py_DECREF", "Py_DECREF"], [35, 1, 1, "c.Py_DEPRECATED", "Py_DEPRECATED"], [33, 0, 1, "c.Py_DebugFlag", "Py_DebugFlag"], [52, 2, 1, "c.Py_DecRef", "Py_DecRef"], [59, 2, 1, "c.Py_DecodeLocale", "Py_DecodeLocale"], [33, 0, 1, "c.Py_DontWriteBytecodeFlag", "Py_DontWriteBytecodeFlag"], [33, 1, 1, "c.Py_END_ALLOW_THREADS", "Py_END_ALLOW_THREADS"], [63, 1, 1, "c.Py_EQ", "Py_EQ"], [56, 0, 1, "c.Py_Ellipsis", "Py_Ellipsis"], [59, 2, 1, "c.Py_EncodeLocale", "Py_EncodeLocale"], [33, 2, 1, "c.Py_EndInterpreter", "Py_EndInterpreter"], [23, 2, 1, "c.Py_EnterRecursiveCall", "Py_EnterRecursiveCall"], [59, 2, 1, "c.Py_Exit", "Py_Exit"], [34, 2, 1, "c.Py_ExitStatusException", "Py_ExitStatusException"], [6, 0, 1, "c.Py_False", "Py_False"], [59, 2, 1, "c.Py_FatalError", "Py_FatalError"], [59, 2, 1, "c.Py_FdIsInteractive", "Py_FdIsInteractive"], [33, 2, 1, "c.Py_Finalize", "Py_Finalize"], [33, 2, 1, "c.Py_FinalizeEx", "Py_FinalizeEx"], [33, 0, 1, "c.Py_FrozenFlag", "Py_FrozenFlag"], [63, 1, 1, "c.Py_GE", "Py_GE"], [35, 1, 1, "c.Py_GETENV", "Py_GETENV"], [63, 1, 1, "c.Py_GT", "Py_GT"], [62, 2, 1, "c.Py_GenericAlias", "Py_GenericAlias"], [62, 0, 1, "c.Py_GenericAliasType", "Py_GenericAliasType"], [34, 2, 1, "c.Py_GetArgcArgv", "Py_GetArgcArgv"], [33, 2, 1, "c.Py_GetBuildInfo", "Py_GetBuildInfo"], [33, 2, 1, "c.Py_GetCompiler", "Py_GetCompiler"], [33, 2, 1, "c.Py_GetCopyright", "Py_GetCopyright"], [33, 2, 1, "c.Py_GetExecPrefix", "Py_GetExecPrefix"], [33, 2, 1, "c.Py_GetPath", "Py_GetPath"], [33, 2, 1, "c.Py_GetPlatform", "Py_GetPlatform"], [33, 2, 1, "c.Py_GetPrefix", "Py_GetPrefix"], [33, 2, 1, "c.Py_GetProgramFullPath", "Py_GetProgramFullPath"], [33, 2, 1, "c.Py_GetProgramName", "Py_GetProgramName"], [33, 2, 1, "c.Py_GetPythonHome", "Py_GetPythonHome"], [33, 2, 1, "c.Py_GetVersion", "Py_GetVersion"], [33, 0, 1, "c.Py_HashRandomizationFlag", "Py_HashRandomizationFlag"], [52, 2, 1, "c.Py_INCREF", "Py_INCREF"], [58, 2, 1, "c.Py_IS_TYPE", "Py_IS_TYPE"], [33, 0, 1, "c.Py_IgnoreEnvironmentFlag", "Py_IgnoreEnvironmentFlag"], [52, 2, 1, "c.Py_IncRef", "Py_IncRef"], [33, 2, 1, "c.Py_Initialize", "Py_Initialize"], [33, 2, 1, "c.Py_InitializeEx", "Py_InitializeEx"], [34, 2, 1, "c.Py_InitializeFromConfig", "Py_InitializeFromConfig"], [33, 0, 1, "c.Py_InspectFlag", "Py_InspectFlag"], [33, 0, 1, "c.Py_InteractiveFlag", "Py_InteractiveFlag"], [58, 2, 1, "c.Py_Is", "Py_Is"], [58, 2, 1, "c.Py_IsFalse", "Py_IsFalse"], [33, 2, 1, "c.Py_IsInitialized", "Py_IsInitialized"], [58, 2, 1, "c.Py_IsNone", "Py_IsNone"], [58, 2, 1, "c.Py_IsTrue", "Py_IsTrue"], [33, 0, 1, "c.Py_IsolatedFlag", "Py_IsolatedFlag"], [63, 1, 1, "c.Py_LE", "Py_LE"], [57, 1, 1, "c.Py_LIMITED_API", "Py_LIMITED_API"], [63, 1, 1, "c.Py_LT", "Py_LT"], [23, 2, 1, "c.Py_LeaveRecursiveCall", "Py_LeaveRecursiveCall"], [33, 0, 1, "c.Py_LegacyWindowsFSEncodingFlag", "Py_LegacyWindowsFSEncodingFlag"], [33, 0, 1, "c.Py_LegacyWindowsStdioFlag", "Py_LegacyWindowsStdioFlag"], [35, 1, 1, "c.Py_MAX", "Py_MAX"], [35, 1, 1, "c.Py_MEMBER_SIZE", "Py_MEMBER_SIZE"], [35, 1, 1, "c.Py_MIN", "Py_MIN"], [45, 1, 1, "c.Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED", "Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED"], [45, 1, 1, "c.Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED", "Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED"], [45, 1, 1, "c.Py_MOD_PER_INTERPRETER_GIL_SUPPORTED", "Py_MOD_PER_INTERPRETER_GIL_SUPPORTED"], [66, 2, 1, "c.Py_Main", "Py_Main"], [63, 1, 1, "c.Py_NE", "Py_NE"], [35, 1, 1, "c.Py_NO_INLINE", "Py_NO_INLINE"], [33, 2, 1, "c.Py_NewInterpreter", "Py_NewInterpreter"], [33, 2, 1, "c.Py_NewInterpreterFromConfig", "Py_NewInterpreterFromConfig"], [52, 2, 1, "c.Py_NewRef", "Py_NewRef"], [33, 0, 1, "c.Py_NoSiteFlag", "Py_NoSiteFlag"], [33, 0, 1, "c.Py_NoUserSiteDirectory", "Py_NoUserSiteDirectory"], [46, 0, 1, "c.Py_None", "Py_None"], [49, 0, 1, "c.Py_NotImplemented", "Py_NotImplemented"], [33, 0, 1, "c.Py_OptimizeFlag", "Py_OptimizeFlag"], [49, 1, 1, "c.Py_PRINT_RAW", "Py_PRINT_RAW"], [34, 2, 1, "c.Py_PreInitialize", "Py_PreInitialize"], [34, 2, 1, "c.Py_PreInitializeFromArgs", "Py_PreInitializeFromArgs"], [34, 2, 1, "c.Py_PreInitializeFromBytesArgs", "Py_PreInitializeFromBytesArgs"], [33, 0, 1, "c.Py_QuietFlag", "Py_QuietFlag"], [58, 1, 1, "c.Py_READONLY", "Py_READONLY"], [52, 2, 1, "c.Py_REFCNT", "Py_REFCNT"], [58, 1, 1, "c.Py_RELATIVE_OFFSET", "Py_RELATIVE_OFFSET"], [6, 1, 1, "c.Py_RETURN_FALSE", "Py_RETURN_FALSE"], [46, 1, 1, "c.Py_RETURN_NONE", "Py_RETURN_NONE"], [49, 1, 1, "c.Py_RETURN_NOTIMPLEMENTED", "Py_RETURN_NOTIMPLEMENTED"], [63, 1, 1, "c.Py_RETURN_RICHCOMPARE", "Py_RETURN_RICHCOMPARE"], [6, 1, 1, "c.Py_RETURN_TRUE", "Py_RETURN_TRUE"], [23, 2, 1, "c.Py_ReprEnter", "Py_ReprEnter"], [23, 2, 1, "c.Py_ReprLeave", "Py_ReprLeave"], [34, 2, 1, "c.Py_RunMain", "Py_RunMain"], [52, 1, 1, "c.Py_SETREF", "Py_SETREF"], [52, 2, 1, "c.Py_SET_REFCNT", "Py_SET_REFCNT"], [58, 2, 1, "c.Py_SET_SIZE", "Py_SET_SIZE"], [58, 2, 1, "c.Py_SET_TYPE", "Py_SET_TYPE"], [58, 2, 1, "c.Py_SIZE", "Py_SIZE"], [35, 1, 1, "c.Py_STRINGIFY", "Py_STRINGIFY"], [33, 2, 1, "c.Py_SetPath", "Py_SetPath"], [33, 2, 1, "c.Py_SetProgramName", "Py_SetProgramName"], [33, 2, 1, "c.Py_SetPythonHome", "Py_SetPythonHome"], [33, 2, 1, "c.Py_SetStandardStreamEncoding", "Py_SetStandardStreamEncoding"], [63, 1, 1, "c.Py_TPFLAGS_BASETYPE", "Py_TPFLAGS_BASETYPE"], [63, 1, 1, "c.Py_TPFLAGS_BASE_EXC_SUBCLASS", "Py_TPFLAGS_BASE_EXC_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_BYTES_SUBCLASS", "Py_TPFLAGS_BYTES_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_DEFAULT", "Py_TPFLAGS_DEFAULT"], [63, 1, 1, "c.Py_TPFLAGS_DICT_SUBCLASS", "Py_TPFLAGS_DICT_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_DISALLOW_INSTANTIATION", "Py_TPFLAGS_DISALLOW_INSTANTIATION"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_FINALIZE", "Py_TPFLAGS_HAVE_FINALIZE"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_GC", "Py_TPFLAGS_HAVE_GC"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_VECTORCALL", "Py_TPFLAGS_HAVE_VECTORCALL"], [63, 1, 1, "c.Py_TPFLAGS_HEAPTYPE", "Py_TPFLAGS_HEAPTYPE"], [63, 1, 1, "c.Py_TPFLAGS_IMMUTABLETYPE", "Py_TPFLAGS_IMMUTABLETYPE"], [63, 1, 1, "c.Py_TPFLAGS_ITEMS_AT_END", "Py_TPFLAGS_ITEMS_AT_END"], [63, 1, 1, "c.Py_TPFLAGS_LIST_SUBCLASS", "Py_TPFLAGS_LIST_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_LONG_SUBCLASS", "Py_TPFLAGS_LONG_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_MANAGED_DICT", "Py_TPFLAGS_MANAGED_DICT"], [63, 1, 1, "c.Py_TPFLAGS_MANAGED_WEAKREF", "Py_TPFLAGS_MANAGED_WEAKREF"], [63, 1, 1, "c.Py_TPFLAGS_MAPPING", "Py_TPFLAGS_MAPPING"], [63, 1, 1, "c.Py_TPFLAGS_METHOD_DESCRIPTOR", "Py_TPFLAGS_METHOD_DESCRIPTOR"], [63, 1, 1, "c.Py_TPFLAGS_READY", "Py_TPFLAGS_READY"], [63, 1, 1, "c.Py_TPFLAGS_READYING", "Py_TPFLAGS_READYING"], [63, 1, 1, "c.Py_TPFLAGS_SEQUENCE", "Py_TPFLAGS_SEQUENCE"], [63, 1, 1, "c.Py_TPFLAGS_TUPLE_SUBCLASS", "Py_TPFLAGS_TUPLE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_TYPE_SUBCLASS", "Py_TPFLAGS_TYPE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_UNICODE_SUBCLASS", "Py_TPFLAGS_UNICODE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_VALID_VERSION_TAG", "Py_TPFLAGS_VALID_VERSION_TAG"], [58, 2, 1, "c.Py_TYPE", "Py_TYPE"], [58, 1, 1, "c.Py_T_BOOL", "Py_T_BOOL"], [58, 1, 1, "c.Py_T_BYTE", "Py_T_BYTE"], [58, 1, 1, "c.Py_T_CHAR", "Py_T_CHAR"], [58, 1, 1, "c.Py_T_DOUBLE", "Py_T_DOUBLE"], [58, 1, 1, "c.Py_T_FLOAT", "Py_T_FLOAT"], [58, 1, 1, "c.Py_T_INT", "Py_T_INT"], [58, 1, 1, "c.Py_T_LONG", "Py_T_LONG"], [58, 1, 1, "c.Py_T_LONGLONG", "Py_T_LONGLONG"], [58, 1, 1, "c.Py_T_OBJECT_EX", "Py_T_OBJECT_EX"], [58, 1, 1, "c.Py_T_PYSSIZET", "Py_T_PYSSIZET"], [58, 1, 1, "c.Py_T_SHORT", "Py_T_SHORT"], [58, 1, 1, "c.Py_T_STRING", "Py_T_STRING"], [58, 1, 1, "c.Py_T_STRING_INPLACE", "Py_T_STRING_INPLACE"], [58, 1, 1, "c.Py_T_UBYTE", "Py_T_UBYTE"], [58, 1, 1, "c.Py_T_UINT", "Py_T_UINT"], [58, 1, 1, "c.Py_T_ULONG", "Py_T_ULONG"], [58, 1, 1, "c.Py_T_ULONGLONG", "Py_T_ULONGLONG"], [58, 1, 1, "c.Py_T_USHORT", "Py_T_USHORT"], [6, 0, 1, "c.Py_True", "Py_True"], [64, 4, 1, "c.Py_UCS1", "Py_UCS1"], [64, 4, 1, "c.Py_UCS2", "Py_UCS2"], [64, 4, 1, "c.Py_UCS4", "Py_UCS4"], [33, 1, 1, "c.Py_UNBLOCK_THREADS", "Py_UNBLOCK_THREADS"], [64, 4, 1, "c.Py_UNICODE", "Py_UNICODE"], [64, 2, 1, "c.Py_UNICODE_ISALNUM", "Py_UNICODE_ISALNUM"], [64, 2, 1, "c.Py_UNICODE_ISALPHA", "Py_UNICODE_ISALPHA"], [64, 2, 1, "c.Py_UNICODE_ISDECIMAL", "Py_UNICODE_ISDECIMAL"], [64, 2, 1, "c.Py_UNICODE_ISDIGIT", "Py_UNICODE_ISDIGIT"], [64, 2, 1, "c.Py_UNICODE_ISLINEBREAK", "Py_UNICODE_ISLINEBREAK"], [64, 2, 1, "c.Py_UNICODE_ISLOWER", "Py_UNICODE_ISLOWER"], [64, 2, 1, "c.Py_UNICODE_ISNUMERIC", "Py_UNICODE_ISNUMERIC"], [64, 2, 1, "c.Py_UNICODE_ISPRINTABLE", "Py_UNICODE_ISPRINTABLE"], [64, 2, 1, "c.Py_UNICODE_ISSPACE", "Py_UNICODE_ISSPACE"], [64, 2, 1, "c.Py_UNICODE_ISTITLE", "Py_UNICODE_ISTITLE"], [64, 2, 1, "c.Py_UNICODE_ISUPPER", "Py_UNICODE_ISUPPER"], [64, 2, 1, "c.Py_UNICODE_IS_HIGH_SURROGATE", "Py_UNICODE_IS_HIGH_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_IS_LOW_SURROGATE", "Py_UNICODE_IS_LOW_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_IS_SURROGATE", "Py_UNICODE_IS_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_JOIN_SURROGATES", "Py_UNICODE_JOIN_SURROGATES"], [64, 2, 1, "c.Py_UNICODE_TODECIMAL", "Py_UNICODE_TODECIMAL"], [64, 2, 1, "c.Py_UNICODE_TODIGIT", "Py_UNICODE_TODIGIT"], [64, 2, 1, "c.Py_UNICODE_TOLOWER", "Py_UNICODE_TOLOWER"], [64, 2, 1, "c.Py_UNICODE_TONUMERIC", "Py_UNICODE_TONUMERIC"], [64, 2, 1, "c.Py_UNICODE_TOTITLE", "Py_UNICODE_TOTITLE"], [64, 2, 1, "c.Py_UNICODE_TOUPPER", "Py_UNICODE_TOUPPER"], [35, 1, 1, "c.Py_UNREACHABLE", "Py_UNREACHABLE"], [35, 1, 1, "c.Py_UNUSED", "Py_UNUSED"], [33, 0, 1, "c.Py_UnbufferedStdioFlag", "Py_UnbufferedStdioFlag"], [28, 2, 1, "c.Py_VISIT", "Py_VISIT"], [5, 2, 1, "c.Py_VaBuildValue", "Py_VaBuildValue"], [33, 0, 1, "c.Py_VerboseFlag", "Py_VerboseFlag"], [4, 0, 1, "c.Py_Version", "Py_Version"], [52, 2, 1, "c.Py_XDECREF", "Py_XDECREF"], [52, 2, 1, "c.Py_XINCREF", "Py_XINCREF"], [52, 2, 1, "c.Py_XNewRef", "Py_XNewRef"], [52, 1, 1, "c.Py_XSETREF", "Py_XSETREF"], [7, 4, 1, "c.Py_buffer", "Py_buffer"], [15, 4, 1, "c.Py_complex", "Py_complex"], [66, 0, 1, "c.Py_eval_input", "Py_eval_input"], [66, 0, 1, "c.Py_file_input", "Py_file_input"], [30, 4, 1, "c.Py_hash_t", "Py_hash_t"], [45, 1, 1, "c.Py_mod_create", "Py_mod_create"], [45, 1, 1, "c.Py_mod_exec", "Py_mod_exec"], [45, 1, 1, "c.Py_mod_multiple_interpreters", "Py_mod_multiple_interpreters"], [66, 0, 1, "c.Py_single_input", "Py_single_input"], [35, 4, 1, "c.Py_ssize_t", "Py_ssize_t"], [33, 4, 1, "c.Py_tracefunc", "Py_tracefunc"], [33, 1, 1, "c.Py_tss_NEEDS_INIT", "Py_tss_NEEDS_INIT"], [33, 4, 1, "c.Py_tss_t", "Py_tss_t"], [30, 4, 1, "c.Py_uhash_t", "Py_uhash_t"], [58, 1, 1, "c.T_NONE", "T_NONE"], [58, 1, 1, "c.T_OBJECT", "T_OBJECT"], [9, 2, 1, "c._PyBytes_Resize", "_PyBytes_Resize"], [58, 4, 1, "c._PyCFunctionFast", "_PyCFunctionFast"], [58, 4, 1, "c._PyCFunctionFastWithKeywords", "_PyCFunctionFastWithKeywords"], [33, 4, 1, "c._PyFrameEvalFunction", "_PyFrameEvalFunction"], [26, 5, 1, "c._PyInterpreterFrame", "_PyInterpreterFrame"], [33, 2, 1, "c._PyInterpreterState_GetEvalFrameFunc", "_PyInterpreterState_GetEvalFrameFunc"], [33, 2, 1, "c._PyInterpreterState_SetEvalFrameFunc", "_PyInterpreterState_SetEvalFrameFunc"], [49, 2, 1, "c._PyObject_GetDictPtr", "_PyObject_GetDictPtr"], [3, 2, 1, "c._PyObject_New", "_PyObject_New"], [3, 2, 1, "c._PyObject_NewVar", "_PyObject_NewVar"], [60, 2, 1, "c._PyTuple_Resize", "_PyTuple_Resize"], [34, 2, 1, "c._Py_InitializeMain", "_Py_InitializeMain"], [3, 0, 1, "c._Py_NoneStruct", "_Py_NoneStruct"], [15, 2, 1, "c._Py_c_diff", "_Py_c_diff"], [15, 2, 1, "c._Py_c_neg", "_Py_c_neg"], [15, 2, 1, "c._Py_c_pow", "_Py_c_pow"], [15, 2, 1, "c._Py_c_prod", "_Py_c_prod"], [15, 2, 1, "c._Py_c_quot", "_Py_c_quot"], [15, 2, 1, "c._Py_c_sum", "_Py_c_sum"], [31, 5, 1, "c._frozen", "_frozen"], [31, 5, 1, "c._inittab", "_inittab"], [63, 4, 1, "c.allocfunc", "allocfunc"], [63, 4, 1, "c.binaryfunc", "binaryfunc"], [63, 4, 1, "c.descrgetfunc", "descrgetfunc"], [63, 4, 1, "c.descrsetfunc", "descrsetfunc"], [63, 4, 1, "c.destructor", "destructor"], [63, 4, 1, "c.freefunc", "freefunc"], [28, 4, 1, "c.gcvisitobjects_t", "gcvisitobjects_t"], [63, 4, 1, "c.getattrfunc", "getattrfunc"], [63, 4, 1, "c.getattrofunc", "getattrofunc"], [63, 4, 1, "c.getbufferproc", "getbufferproc"], [63, 4, 1, "c.getiterfunc", "getiterfunc"], [58, 4, 1, "c.getter", "getter"], [63, 4, 1, "c.hashfunc", "hashfunc"], [63, 4, 1, "c.initproc", "initproc"], [28, 4, 1, "c.inquiry", "inquiry"], [63, 4, 1, "c.iternextfunc", "iternextfunc"], [63, 4, 1, "c.lenfunc", "lenfunc"], [63, 4, 1, "c.newfunc", "newfunc"], [63, 4, 1, "c.objobjargproc", "objobjargproc"], [63, 4, 1, "c.objobjproc", "objobjproc"], [63, 4, 1, "c.releasebufferproc", "releasebufferproc"], [63, 4, 1, "c.reprfunc", "reprfunc"], [63, 4, 1, "c.richcmpfunc", "richcmpfunc"], [63, 4, 1, "c.sendfunc", "sendfunc"], [63, 4, 1, "c.setattrfunc", "setattrfunc"], [63, 4, 1, "c.setattrofunc", "setattrofunc"], [58, 4, 1, "c.setter", "setter"], [63, 4, 1, "c.ssizeargfunc", "ssizeargfunc"], [63, 4, 1, "c.ssizeobjargproc", "ssizeobjargproc"], [63, 4, 1, "c.ternaryfunc", "ternaryfunc"], [28, 4, 1, "c.traverseproc", "traverseproc"], [63, 4, 1, "c.unaryfunc", "unaryfunc"], [10, 4, 1, "c.vectorcallfunc", "vectorcallfunc"], [28, 4, 1, "c.visitproc", "visitproc"], [213, 6, 1, "", "ArithmeticError"], [213, 6, 1, "", "AssertionError"], [213, 6, 1, "", "AttributeError"], [213, 6, 1, "", "BaseException"], [213, 6, 1, "", "BaseExceptionGroup"], [213, 6, 1, "", "BlockingIOError"], [213, 6, 1, "", "BrokenPipeError"], [213, 6, 1, "", "BufferError"], [213, 6, 1, "", "BytesWarning"], [213, 6, 1, "", "ChildProcessError"], [213, 6, 1, "", "ConnectionAbortedError"], [213, 6, 1, "", "ConnectionError"], [213, 6, 1, "", "ConnectionRefusedError"], [213, 6, 1, "", "ConnectionResetError"], [213, 6, 1, "", "DeprecationWarning"], [213, 6, 1, "", "EOFError"], [168, 9, 1, "", "Ellipsis"], [213, 6, 1, "", "EncodingWarning"], [213, 6, 1, "", "EnvironmentError"], [213, 6, 1, "", "Exception"], [213, 6, 1, "", "ExceptionGroup"], [168, 9, 1, "", "False"], [213, 6, 1, "", "FileExistsError"], [213, 6, 1, "", "FileNotFoundError"], [213, 6, 1, "", "FloatingPointError"], [213, 6, 1, "", "FutureWarning"], [213, 6, 1, "", "GeneratorExit"], [213, 6, 1, "", "IOError"], [213, 6, 1, "", "ImportError"], [213, 6, 1, "", "ImportWarning"], [213, 6, 1, "", "IndentationError"], [213, 6, 1, "", "IndexError"], [213, 6, 1, "", "InterruptedError"], [213, 6, 1, "", "IsADirectoryError"], [213, 6, 1, "", "KeyError"], [213, 6, 1, "", "KeyboardInterrupt"], [213, 6, 1, "", "LookupError"], [213, 6, 1, "", "MemoryError"], [213, 6, 1, "", "ModuleNotFoundError"], [213, 6, 1, "", "NameError"], [168, 9, 1, "", "None"], [213, 6, 1, "", "NotADirectoryError"], [168, 9, 1, "", "NotImplemented"], [213, 6, 1, "", "NotImplementedError"], [213, 6, 1, "", "OSError"], [213, 6, 1, "", "OverflowError"], [213, 6, 1, "", "PendingDeprecationWarning"], [213, 6, 1, "", "PermissionError"], [213, 6, 1, "", "ProcessLookupError"], [213, 6, 1, "", "RecursionError"], [213, 6, 1, "", "ReferenceError"], [213, 6, 1, "", "ResourceWarning"], [213, 6, 1, "", "RuntimeError"], [213, 6, 1, "", "RuntimeWarning"], [213, 6, 1, "", "StopAsyncIteration"], [213, 6, 1, "", "StopIteration"], [213, 6, 1, "", "SyntaxError"], [213, 6, 1, "", "SyntaxWarning"], [213, 6, 1, "", "SystemError"], [213, 6, 1, "", "SystemExit"], [213, 6, 1, "", "TabError"], [213, 6, 1, "", "TimeoutError"], [168, 9, 1, "", "True"], [213, 6, 1, "", "TypeError"], [213, 6, 1, "", "UnboundLocalError"], [213, 6, 1, "", "UnicodeDecodeError"], [213, 6, 1, "", "UnicodeEncodeError"], [213, 6, 1, "", "UnicodeError"], [213, 6, 1, "", "UnicodeTranslateError"], [213, 6, 1, "", "UnicodeWarning"], [213, 6, 1, "", "UserWarning"], [213, 6, 1, "", "ValueError"], [213, 6, 1, "", "Warning"], [213, 6, 1, "", "WindowsError"], [213, 6, 1, "", "ZeroDivisionError"], [432, 7, 1, "cached__", "__cached__"], [168, 9, 1, "debug__", "__debug__"], [432, 7, 1, "file__", "__file__"], [113, 10, 0, "-", "__future__"], [225, 12, 1, "import__", "__import__"], [432, 7, 1, "loader__", "__loader__"], [114, 10, 0, "-", "__main__"], [432, 7, 1, "name__", "__name__"], [432, 7, 1, "package__", "__package__"], [432, 7, 1, "path__", "__path__"], [432, 7, 1, "spec__", "__spec__"], [115, 10, 0, "-", "_thread"], [369, 10, 0, "-", "_tkinter"], [116, 10, 0, "-", "abc"], [225, 12, 1, "", "abs"], [117, 10, 0, "-", "aifc"], [225, 12, 1, "", "aiter"], [225, 12, 1, "", "all"], [225, 12, 1, "", "anext"], [225, 12, 1, "", "any"], [120, 10, 0, "-", "argparse"], [121, 10, 0, "-", "array"], [225, 12, 1, "", "ascii"], [122, 10, 0, "-", "ast"], [123, 10, 0, "-", "asyncio"], [140, 10, 0, "-", "atexit"], [141, 10, 0, "-", "audioop"], [143, 10, 0, "-", "base64"], [144, 10, 0, "-", "bdb"], [225, 12, 1, "", "bin"], [146, 10, 0, "-", "binascii"], [147, 10, 0, "-", "bisect"], [225, 11, 1, "", "bool"], [225, 12, 1, "", "breakpoint"], [148, 10, 0, "-", "builtins"], [344, 11, 1, "", "bytearray"], [344, 11, 1, "", "bytes"], [149, 10, 0, "-", "bz2"], [308, 10, 0, "-", "cProfile"], [150, 10, 0, "-", "calendar"], [225, 12, 1, "", "callable"], [151, 10, 0, "-", "cgi"], [152, 10, 0, "-", "cgitb"], [225, 12, 1, "", "chr"], [153, 10, 0, "-", "chunk"], [225, 12, 1, "", "classmethod"], [154, 10, 0, "-", "cmath"], [155, 10, 0, "-", "cmd"], [157, 10, 0, "-", "code"], [158, 10, 0, "-", "codecs"], [159, 10, 0, "-", "codeop"], [160, 10, 0, "-", "collections"], [162, 10, 0, "-", "colorsys"], [225, 12, 1, "", "compile"], [163, 10, 0, "-", "compileall"], [225, 11, 1, "", "complex"], [167, 10, 0, "-", "configparser"], [169, 10, 0, "-", "contextlib"], [170, 10, 0, "-", "contextvars"], [171, 10, 0, "-", "copy"], [172, 10, 0, "-", "copyreg"], [168, 9, 1, "", "copyright"], [168, 9, 1, "", "credits"], [173, 10, 0, "-", "crypt"], [175, 10, 0, "-", "csv"], [176, 10, 0, "-", "ctypes"], [177, 10, 0, "-", "curses"], [181, 10, 0, "-", "dataclasses"], [183, 10, 0, "-", "datetime"], [184, 10, 0, "-", "dbm"], [186, 10, 0, "-", "decimal"], [225, 12, 1, "", "delattr"], [344, 11, 1, "", "dict"], [190, 10, 0, "-", "difflib"], [225, 12, 1, "", "dir"], [191, 10, 0, "-", "dis"], [225, 12, 1, "", "divmod"], [193, 10, 0, "-", "doctest"], [194, 10, 0, "-", "email"], [210, 10, 0, "-", "ensurepip"], [211, 10, 0, "-", "enum"], [225, 12, 1, "", "enumerate"], [212, 10, 0, "-", "errno"], [225, 12, 1, "", "eval"], [225, 12, 1, "", "exec"], [168, 9, 1, "", "exit"], [214, 10, 0, "-", "faulthandler"], [215, 10, 0, "-", "fcntl"], [216, 10, 0, "-", "filecmp"], [218, 10, 0, "-", "fileinput"], [225, 12, 1, "", "filter"], [225, 11, 1, "", "float"], [220, 10, 0, "-", "fnmatch"], [225, 12, 1, "", "format"], [221, 10, 0, "-", "fractions"], [344, 11, 1, "", "frozenset"], [223, 10, 0, "-", "ftplib"], [226, 10, 0, "-", "functools"], [227, 10, 0, "-", "gc"], [225, 12, 1, "", "getattr"], [228, 10, 0, "-", "getopt"], [229, 10, 0, "-", "getpass"], [230, 10, 0, "-", "gettext"], [231, 10, 0, "-", "glob"], [225, 12, 1, "", "globals"], [232, 10, 0, "-", "graphlib"], [233, 10, 0, "-", "grp"], [234, 10, 0, "-", "gzip"], [225, 12, 1, "", "hasattr"], [225, 12, 1, "", "hash"], [235, 10, 0, "-", "hashlib"], [236, 10, 0, "-", "heapq"], [225, 12, 1, "", "help"], [225, 12, 1, "", "hex"], [237, 10, 0, "-", "hmac"], [238, 10, 0, "-", "html"], [241, 10, 0, "-", "http"], [225, 12, 1, "", "id"], [247, 10, 0, "-", "idlelib"], [248, 10, 0, "-", "imaplib"], [249, 10, 0, "-", "imghdr"], [250, 10, 0, "-", "importlib"], [225, 12, 1, "", "input"], [255, 10, 0, "-", "inspect"], [225, 11, 1, "", "int"], [258, 10, 0, "-", "io"], [259, 10, 0, "-", "ipaddress"], [225, 12, 1, "", "isinstance"], [225, 12, 1, "", "issubclass"], [225, 12, 1, "", "iter"], [261, 10, 0, "-", "itertools"], [262, 10, 0, "-", "json"], [263, 10, 0, "-", "keyword"], [225, 12, 1, "", "len"], [112, 10, 0, "-", "lib2to3"], [168, 9, 1, "", "license"], [265, 10, 0, "-", "linecache"], [344, 11, 1, "", "list"], [266, 10, 0, "-", "locale"], [225, 12, 1, "", "locals"], [267, 10, 0, "-", "logging"], [270, 10, 0, "-", "lzma"], [271, 10, 0, "-", "mailbox"], [272, 10, 0, "-", "mailcap"], [225, 12, 1, "", "map"], [274, 10, 0, "-", "marshal"], [275, 10, 0, "-", "math"], [225, 12, 1, "", "max"], [344, 11, 1, "", "memoryview"], [276, 10, 0, "-", "mimetypes"], [225, 12, 1, "", "min"], [278, 10, 0, "-", "mmap"], [279, 10, 0, "-", "modulefinder"], [281, 10, 0, "-", "msilib"], [282, 10, 0, "-", "msvcrt"], [283, 10, 0, "-", "multiprocessing"], [286, 10, 0, "-", "netrc"], [225, 12, 1, "", "next"], [287, 10, 0, "-", "nis"], [288, 10, 0, "-", "nntplib"], [289, 10, 0, "-", "numbers"], [225, 11, 1, "", "object"], [225, 12, 1, "", "oct"], [225, 12, 1, "", "open"], [291, 10, 0, "-", "operator"], [292, 10, 0, "-", "optparse"], [225, 12, 1, "", "ord"], [293, 10, 0, "-", "os"], [295, 10, 0, "-", "ossaudiodev"], [296, 10, 0, "-", "pathlib"], [297, 10, 0, "-", "pdb"], [299, 10, 0, "-", "pickle"], [300, 10, 0, "-", "pickletools"], [301, 10, 0, "-", "pipes"], [302, 10, 0, "-", "pkgutil"], [303, 10, 0, "-", "platform"], [304, 10, 0, "-", "plistlib"], [305, 10, 0, "-", "poplib"], [306, 10, 0, "-", "posix"], [225, 12, 1, "", "pow"], [307, 10, 0, "-", "pprint"], [225, 12, 1, "", "print"], [308, 10, 0, "-", "profile"], [225, 11, 1, "", "property"], [308, 10, 0, "-", "pstats"], [309, 10, 0, "-", "pty"], [310, 10, 0, "-", "pwd"], [311, 10, 0, "-", "py_compile"], [312, 10, 0, "-", "pyclbr"], [313, 10, 0, "-", "pydoc"], [316, 10, 0, "-", "queue"], [168, 9, 1, "", "quit"], [317, 10, 0, "-", "quopri"], [318, 10, 0, "-", "random"], [344, 11, 1, "", "range"], [319, 10, 0, "-", "re"], [320, 10, 0, "-", "readline"], [225, 12, 1, "", "repr"], [321, 10, 0, "-", "reprlib"], [322, 10, 0, "-", "resource"], [225, 12, 1, "", "reversed"], [323, 10, 0, "-", "rlcompleter"], [225, 12, 1, "", "round"], [324, 10, 0, "-", "runpy"], [325, 10, 0, "-", "sched"], [326, 10, 0, "-", "secrets"], [328, 10, 0, "-", "select"], [329, 10, 0, "-", "selectors"], [344, 11, 1, "", "set"], [225, 12, 1, "", "setattr"], [330, 10, 0, "-", "shelve"], [331, 10, 0, "-", "shlex"], [332, 10, 0, "-", "shutil"], [333, 10, 0, "-", "signal"], [334, 10, 0, "-", "site"], [334, 10, 0, "-", "sitecustomize"], [225, 11, 1, "", "slice"], [335, 10, 0, "-", "smtplib"], [336, 10, 0, "-", "sndhdr"], [337, 10, 0, "-", "socket"], [338, 10, 0, "-", "socketserver"], [225, 12, 1, "", "sorted"], [339, 10, 0, "-", "spwd"], [340, 10, 0, "-", "sqlite3"], [341, 10, 0, "-", "ssl"], [342, 10, 0, "-", "stat"], [225, 12, 1, "", "staticmethod"], [343, 10, 0, "-", "statistics"], [344, 11, 1, "", "str"], [345, 10, 0, "-", "string"], [346, 10, 0, "-", "stringprep"], [347, 10, 0, "-", "struct"], [348, 10, 0, "-", "subprocess"], [225, 12, 1, "", "sum"], [349, 10, 0, "-", "sunau"], [225, 11, 1, "", "super"], [351, 10, 0, "-", "symtable"], [352, 10, 0, "-", "sys"], [355, 10, 0, "-", "sysconfig"], [356, 10, 0, "-", "syslog"], [357, 10, 0, "-", "tabnanny"], [358, 10, 0, "-", "tarfile"], [359, 10, 0, "-", "telnetlib"], [360, 10, 0, "-", "tempfile"], [361, 10, 0, "-", "termios"], [362, 10, 0, "-", "test"], [364, 10, 0, "-", "textwrap"], [365, 10, 0, "-", "threading"], [366, 10, 0, "-", "time"], [367, 10, 0, "-", "timeit"], [369, 10, 0, "-", "tkinter"], [377, 10, 0, "-", "token"], [378, 10, 0, "-", "tokenize"], [379, 10, 0, "-", "tomllib"], [380, 10, 0, "-", "trace"], [381, 10, 0, "-", "traceback"], [382, 10, 0, "-", "tracemalloc"], [383, 10, 0, "-", "tty"], [344, 11, 1, "", "tuple"], [384, 10, 0, "-", "turtle"], [384, 10, 0, "-", "turtledemo"], [225, 11, 1, "", "type"], [385, 10, 0, "-", "types"], [386, 10, 0, "-", "typing"], [387, 10, 0, "-", "unicodedata"], [388, 10, 0, "-", "unittest"], [392, 10, 0, "-", "urllib"], [334, 10, 0, "-", "usercustomize"], [397, 10, 0, "-", "uu"], [398, 10, 0, "-", "uuid"], [225, 12, 1, "", "vars"], [399, 10, 0, "-", "venv"], [400, 10, 0, "-", "warnings"], [401, 10, 0, "-", "wave"], [402, 10, 0, "-", "weakref"], [403, 10, 0, "-", "webbrowser"], [405, 10, 0, "-", "winreg"], [406, 10, 0, "-", "winsound"], [407, 10, 0, "-", "wsgiref"], [408, 10, 0, "-", "xdrlib"], [409, 10, 0, "-", "xml"], [225, 12, 1, "", "zip"], [421, 10, 0, "-", "zipapp"], [422, 10, 0, "-", "zipfile"], [423, 10, 0, "-", "zipimport"], [424, 10, 0, "-", "zlib"], [425, 10, 0, "-", "zoneinfo"], [297, 13, 1, "pdbcommand-0", "!"], [456, 14, 1, "cmdoption-build", "--build"], [455, 14, 1, "cmdoption-check-hash-based-pycs", "--check-hash-based-pycs"], [456, 14, 1, "cmdoption-disable-ipv6", "--disable-ipv6"], [456, 14, 1, "cmdoption-disable-test-modules", "--disable-test-modules"], [456, 14, 1, "cmdoption-enable-big-digits", "--enable-big-digits"], [456, 14, 1, "cmdoption-enable-bolt", "--enable-bolt"], [456, 14, 1, "cmdoption-enable-framework", "--enable-framework"], [456, 14, 1, "cmdoption-enable-loadable-sqlite-extensions", "--enable-loadable-sqlite-extensions"], [456, 14, 1, "cmdoption-enable-optimizations", "--enable-optimizations"], [456, 14, 1, "cmdoption-enable-profiling", "--enable-profiling"], [456, 14, 1, "cmdoption-enable-pystats", "--enable-pystats"], [456, 14, 1, "cmdoption-enable-shared", "--enable-shared"], [456, 14, 1, "cmdoption-enable-universalsdk", "--enable-universalsdk"], [456, 14, 1, "cmdoption-enable-wasm-dynamic-linking", "--enable-wasm-dynamic-linking"], [456, 14, 1, "cmdoption-enable-wasm-pthreads", "--enable-wasm-pthreads"], [456, 14, 1, "cmdoption-exec-prefix", "--exec-prefix"], [455, 14, 1, "cmdoption-help", "--help"], [455, 14, 1, "cmdoption-help-all", "--help-all"], [455, 14, 1, "cmdoption-help-env", "--help-env"], [455, 14, 1, "cmdoption-help-xoptions", "--help-xoptions"], [456, 14, 1, "cmdoption-host", "--host"], [456, 14, 1, "cmdoption-prefix", "--prefix"], [455, 14, 1, "cmdoption-version", "--version"], [456, 14, 1, "cmdoption-with-address-sanitizer", "--with-address-sanitizer"], [456, 14, 1, "cmdoption-with-assertions", "--with-assertions"], [456, 14, 1, "cmdoption-with-build-python", "--with-build-python"], [456, 14, 1, "cmdoption-with-builtin-hashlib-hashes", "--with-builtin-hashlib-hashes"], [456, 14, 1, "cmdoption-with-computed-gotos", "--with-computed-gotos"], [456, 14, 1, "cmdoption-with-dbmliborder", "--with-dbmliborder"], [456, 14, 1, "cmdoption-with-dtrace", "--with-dtrace"], [456, 14, 1, "cmdoption-with-emscripten-target", "--with-emscripten-target"], [456, 14, 1, "cmdoption-with-ensurepip", "--with-ensurepip"], [456, 14, 1, "cmdoption-with-framework-name", "--with-framework-name"], [456, 14, 1, "cmdoption-with-hash-algorithm", "--with-hash-algorithm"], [456, 14, 1, "cmdoption-with-libc", "--with-libc"], [456, 14, 1, "cmdoption-with-libm", "--with-libm"], [456, 14, 1, "cmdoption-with-libs", "--with-libs"], [456, 14, 1, "cmdoption-with-lto", "--with-lto"], [456, 14, 1, "cmdoption-with-memory-sanitizer", "--with-memory-sanitizer"], [456, 14, 1, "cmdoption-with-openssl", "--with-openssl"], [456, 14, 1, "cmdoption-with-openssl-rpath", "--with-openssl-rpath"], [456, 14, 1, "cmdoption-with-pkg-config", "--with-pkg-config"], [456, 14, 1, "cmdoption-with-platlibdir", "--with-platlibdir"], [456, 14, 1, "cmdoption-with-pydebug", "--with-pydebug"], [456, 14, 1, "cmdoption-with-readline", "--with-readline"], [456, 14, 1, "cmdoption-with-ssl-default-suites", "--with-ssl-default-suites"], [456, 14, 1, "cmdoption-with-strict-overflow", "--with-strict-overflow"], [456, 14, 1, "cmdoption-with-suffix", "--with-suffix"], [456, 14, 1, "cmdoption-with-system-expat", "--with-system-expat"], [456, 14, 1, "cmdoption-with-system-libmpdec", "--with-system-libmpdec"], [456, 14, 1, "cmdoption-with-trace-refs", "--with-trace-refs"], [456, 14, 1, "cmdoption-with-tzpath", "--with-tzpath"], [456, 14, 1, "cmdoption-with-undefined-behavior-sanitizer", "--with-undefined-behavior-sanitizer"], [456, 14, 1, "cmdoption-with-universal-archs", "--with-universal-archs"], [456, 14, 1, "cmdoption-with-valgrind", "--with-valgrind"], [456, 14, 1, "cmdoption-with-wheel-pkg-dir", "--with-wheel-pkg-dir"], [456, 14, 1, "cmdoption-without-c-locale-coercion", "--without-c-locale-coercion"], [456, 14, 1, "cmdoption-without-decimal-contextvar", "--without-decimal-contextvar"], [456, 14, 1, "cmdoption-without-doc-strings", "--without-doc-strings"], [456, 14, 1, "cmdoption-without-freelists", "--without-freelists"], [456, 14, 1, "cmdoption-without-pymalloc", "--without-pymalloc"], [456, 14, 1, "cmdoption-without-readline", "--without-readline"], [456, 14, 1, "cmdoption-without-static-libpython", "--without-static-libpython"], [455, 14, 1, "cmdoption-0", "-?"], [455, 14, 1, "cmdoption-B", "-B"], [455, 14, 1, "cmdoption-E", "-E"], [455, 14, 1, "cmdoption-I", "-I"], [455, 14, 1, "cmdoption-J", "-J"], [455, 14, 1, "cmdoption-O", "-O"], [455, 14, 1, "cmdoption-OO", "-OO"], [455, 14, 1, "cmdoption-P", "-P"], [455, 14, 1, "cmdoption-R", "-R"], [455, 14, 1, "cmdoption-S", "-S"], [455, 14, 1, "cmdoption-V", "-V"], [455, 14, 1, "cmdoption-W", "-W"], [455, 14, 1, "cmdoption-X", "-X"], [455, 14, 1, "cmdoption-b", "-b"], [455, 14, 1, "cmdoption-c", "-c"], [455, 14, 1, "cmdoption-d", "-d"], [455, 14, 1, "cmdoption-h", "-h"], [455, 14, 1, "cmdoption-i", "-i"], [455, 14, 1, "cmdoption-m", "-m"], [455, 14, 1, "cmdoption-q", "-q"], [455, 14, 1, "cmdoption-s", "-s"], [455, 14, 1, "cmdoption-u", "-u"], [455, 14, 1, "cmdoption-v", "-v"], [455, 14, 1, "cmdoption-x", "-x"], [456, 15, 1, "-", "BASECFLAGS"], [456, 15, 1, "-", "BASECPPFLAGS"], [191, 16, 1, "-", "BEFORE_ASYNC_WITH"], [191, 16, 1, "-", "BEFORE_WITH"], [191, 16, 1, "-", "BINARY_OP"], [191, 16, 1, "-", "BINARY_SLICE"], [191, 16, 1, "-", "BINARY_SUBSCR"], [456, 15, 1, "-", "BLDSHARED"], [353, 17, 1, "-", "BRANCH"], [191, 16, 1, "-", "BUILD_CONST_KEY_MAP"], [191, 16, 1, "-", "BUILD_LIST"], [191, 16, 1, "-", "BUILD_MAP"], [191, 16, 1, "-", "BUILD_SET"], [191, 16, 1, "-", "BUILD_SLICE"], [191, 16, 1, "-", "BUILD_STRING"], [191, 16, 1, "-", "BUILD_TUPLE"], [191, 16, 1, "-", "CACHE"], [353, 17, 1, "-", "CALL"], [191, 16, 1, "-", "CALL"], [191, 16, 1, "-", "CALL_FUNCTION_EX"], [191, 16, 1, "-", "CALL_INTRINSIC_1"], [191, 16, 1, "-", "CALL_INTRINSIC_2"], [456, 15, 1, "-", "CC"], [456, 15, 1, "-", "CCSHARED"], [456, 15, 1, "-", "CFLAGS"], [456, 15, 1, "-", "CFLAGSFORSHARED"], [456, 15, 1, "-", "CFLAGS_ALIASING"], [456, 15, 1, "-", "CFLAGS_NODIST"], [191, 16, 1, "-", "CHECK_EG_MATCH"], [191, 16, 1, "-", "CHECK_EXC_MATCH"], [191, 16, 1, "-", "CLEANUP_THROW"], [191, 16, 1, "-", "COMPARE_OP"], [456, 15, 1, "-", "COMPILEALL_OPTS"], [456, 15, 1, "-", "CONFIGURE_CFLAGS"], [456, 15, 1, "-", "CONFIGURE_CFLAGS_NODIST"], [456, 15, 1, "-", "CONFIGURE_CPPFLAGS"], [456, 15, 1, "-", "CONFIGURE_LDFLAGS"], [456, 15, 1, "-", "CONFIGURE_LDFLAGS_NODIST"], [456, 14, 1, "cmdoption-arg-CONFIG_SITE", "CONFIG_SITE"], [191, 16, 1, "-", "CONTAINS_OP"], [191, 16, 1, "-", "COPY"], [191, 16, 1, "-", "COPY_FREE_VARS"], [456, 15, 1, "-", "CPPFLAGS"], [456, 15, 1, "-", "CXX"], [353, 17, 1, "-", "C_RAISE"], [353, 17, 1, "-", "C_RETURN"], [191, 16, 1, "-", "DELETE_ATTR"], [191, 16, 1, "-", "DELETE_DEREF"], [191, 16, 1, "-", "DELETE_FAST"], [191, 16, 1, "-", "DELETE_GLOBAL"], [191, 16, 1, "-", "DELETE_NAME"], [191, 16, 1, "-", "DELETE_SUBSCR"], [191, 16, 1, "-", "DICT_MERGE"], [191, 16, 1, "-", "DICT_UPDATE"], [191, 16, 1, "-", "END_ASYNC_FOR"], [191, 16, 1, "-", "END_FOR"], [191, 16, 1, "-", "END_SEND"], [353, 17, 1, "-", "EXCEPTION_HANDLED"], [191, 16, 1, "-", "EXTENDED_ARG"], [456, 15, 1, "-", "EXTRA_CFLAGS"], [191, 16, 1, "-", "FORMAT_VALUE"], [191, 16, 1, "-", "FOR_ITER"], [191, 16, 1, "-", "GET_AITER"], [191, 16, 1, "-", "GET_ANEXT"], [191, 16, 1, "-", "GET_AWAITABLE"], [191, 16, 1, "-", "GET_ITER"], [191, 16, 1, "-", "GET_LEN"], [191, 16, 1, "-", "GET_YIELD_FROM_ITER"], [191, 16, 1, "-", "HAVE_ARGUMENT"], [191, 16, 1, "-", "IMPORT_FROM"], [191, 16, 1, "-", "IMPORT_NAME"], [353, 17, 1, "-", "INSTRUCTION"], [191, 16, 1, "-", "IS_OP"], [353, 17, 1, "-", "JUMP"], [191, 16, 1, "-", "JUMP"], [191, 16, 1, "-", "JUMP_BACKWARD"], [191, 16, 1, "-", "JUMP_BACKWARD_NO_INTERRUPT"], [191, 16, 1, "-", "JUMP_FORWARD"], [191, 16, 1, "-", "JUMP_NO_INTERRUPT"], [191, 16, 1, "-", "KW_NAMES"], [456, 15, 1, "-", "LDFLAGS"], [456, 15, 1, "-", "LDFLAGS_NODIST"], [456, 15, 1, "-", "LDSHARED"], [456, 15, 1, "-", "LIBS"], [353, 17, 1, "-", "LINE"], [456, 15, 1, "-", "LINKCC"], [191, 16, 1, "-", "LIST_APPEND"], [191, 16, 1, "-", "LIST_EXTEND"], [191, 16, 1, "-", "LOAD_ASSERTION_ERROR"], [191, 16, 1, "-", "LOAD_ATTR"], [191, 16, 1, "-", "LOAD_BUILD_CLASS"], [191, 16, 1, "-", "LOAD_CLOSURE"], [191, 16, 1, "-", "LOAD_CONST"], [191, 16, 1, "-", "LOAD_DEREF"], [191, 16, 1, "-", "LOAD_FAST"], [191, 16, 1, "-", "LOAD_FAST_AND_CLEAR"], [191, 16, 1, "-", "LOAD_FAST_CHECK"], [191, 16, 1, "-", "LOAD_FROM_DICT_OR_DEREF"], [191, 16, 1, "-", "LOAD_FROM_DICT_OR_GLOBALS"], [191, 16, 1, "-", "LOAD_GLOBAL"], [191, 16, 1, "-", "LOAD_LOCALS"], [191, 16, 1, "-", "LOAD_METHOD"], [191, 16, 1, "-", "LOAD_NAME"], [191, 16, 1, "-", "LOAD_SUPER_ATTR"], [191, 16, 1, "-", "MAKE_CELL"], [191, 16, 1, "-", "MAKE_FUNCTION"], [191, 16, 1, "-", "MAP_ADD"], [191, 16, 1, "-", "MATCH_CLASS"], [191, 16, 1, "-", "MATCH_KEYS"], [191, 16, 1, "-", "MATCH_MAPPING"], [191, 16, 1, "-", "MATCH_SEQUENCE"], [191, 16, 1, "-", "NOP"], [353, 17, 1, "-", "NO_EVENTS"], [456, 15, 1, "-", "OPT"], [191, 16, 1, "-", "POP_BLOCK"], [191, 16, 1, "-", "POP_EXCEPT"], [191, 16, 1, "-", "POP_JUMP_IF_FALSE"], [191, 16, 1, "-", "POP_JUMP_IF_NONE"], [191, 16, 1, "-", "POP_JUMP_IF_NOT_NONE"], [191, 16, 1, "-", "POP_JUMP_IF_TRUE"], [191, 16, 1, "-", "POP_TOP"], [456, 15, 1, "-", "PROFILE_TASK"], [456, 15, 1, "-", "PURIFY"], [191, 16, 1, "-", "PUSH_EXC_INFO"], [191, 16, 1, "-", "PUSH_NULL"], [455, 15, 1, "-", "PYTHONASYNCIODEBUG"], [455, 15, 1, "-", "PYTHONBREAKPOINT"], [455, 15, 1, "-", "PYTHONCASEOK"], [455, 15, 1, "-", "PYTHONCOERCECLOCALE"], [455, 15, 1, "-", "PYTHONDEBUG"], [455, 15, 1, "-", "PYTHONDEVMODE"], [455, 15, 1, "-", "PYTHONDONTWRITEBYTECODE"], [455, 15, 1, "-", "PYTHONDUMPREFS"], [455, 15, 1, "envvar-PYTHONDUMPREFSFILE-FILENAME", "PYTHONDUMPREFSFILE=FILENAME"], [455, 15, 1, "-", "PYTHONEXECUTABLE"], [455, 15, 1, "-", "PYTHONFAULTHANDLER"], [455, 15, 1, "-", "PYTHONHASHSEED"], [455, 15, 1, "-", "PYTHONHOME"], [455, 15, 1, "-", "PYTHONINSPECT"], [455, 15, 1, "-", "PYTHONINTMAXSTRDIGITS"], [455, 15, 1, "-", "PYTHONIOENCODING"], [455, 15, 1, "-", "PYTHONLEGACYWINDOWSFSENCODING"], [455, 15, 1, "-", "PYTHONLEGACYWINDOWSSTDIO"], [455, 15, 1, "-", "PYTHONMALLOC"], [455, 15, 1, "-", "PYTHONMALLOCSTATS"], [455, 15, 1, "-", "PYTHONNODEBUGRANGES"], [455, 15, 1, "-", "PYTHONNOUSERSITE"], [455, 15, 1, "-", "PYTHONOPTIMIZE"], [455, 15, 1, "-", "PYTHONPATH"], [455, 15, 1, "-", "PYTHONPERFSUPPORT"], [455, 15, 1, "-", "PYTHONPLATLIBDIR"], [455, 15, 1, "-", "PYTHONPROFILEIMPORTTIME"], [455, 15, 1, "-", "PYTHONPYCACHEPREFIX"], [455, 15, 1, "-", "PYTHONSAFEPATH"], [455, 15, 1, "-", "PYTHONSTARTUP"], [455, 15, 1, "-", "PYTHONTRACEMALLOC"], [425, 15, 1, "-", "PYTHONTZPATH"], [455, 15, 1, "-", "PYTHONUNBUFFERED"], [455, 15, 1, "-", "PYTHONUSERBASE"], [455, 15, 1, "-", "PYTHONUTF8"], [455, 15, 1, "-", "PYTHONVERBOSE"], [455, 15, 1, "-", "PYTHONWARNDEFAULTENCODING"], [455, 15, 1, "-", "PYTHONWARNINGS"], [456, 15, 1, "-", "PY_BUILTIN_MODULE_CFLAGS"], [456, 15, 1, "-", "PY_CFLAGS"], [456, 15, 1, "-", "PY_CFLAGS_NODIST"], [456, 15, 1, "-", "PY_CORE_CFLAGS"], [456, 15, 1, "-", "PY_CORE_LDFLAGS"], [456, 15, 1, "-", "PY_CPPFLAGS"], [456, 15, 1, "-", "PY_LDFLAGS"], [456, 15, 1, "-", "PY_LDFLAGS_NODIST"], [353, 17, 1, "-", "PY_RESUME"], [353, 17, 1, "-", "PY_RETURN"], [353, 17, 1, "-", "PY_START"], [456, 15, 1, "-", "PY_STDMODULE_CFLAGS"], [353, 17, 1, "-", "PY_THROW"], [353, 17, 1, "-", "PY_UNWIND"], [353, 17, 1, "-", "PY_YIELD"], [353, 17, 1, "-", "RAISE"], [191, 16, 1, "-", "RAISE_VARARGS"], [353, 17, 1, "-", "RERAISE"], [191, 16, 1, "-", "RERAISE"], [191, 16, 1, "-", "RESUME"], [191, 16, 1, "-", "RETURN_CONST"], [191, 16, 1, "-", "RETURN_GENERATOR"], [191, 16, 1, "-", "RETURN_VALUE"], [191, 16, 1, "-", "SEND"], [191, 16, 1, "-", "SETUP_ANNOTATIONS"], [191, 16, 1, "-", "SETUP_CLEANUP"], [191, 16, 1, "-", "SETUP_FINALLY"], [191, 16, 1, "-", "SETUP_WITH"], [191, 16, 1, "-", "SET_ADD"], [191, 16, 1, "-", "SET_UPDATE"], [353, 17, 1, "-", "STOP_ITERATION"], [191, 16, 1, "-", "STORE_ATTR"], [191, 16, 1, "-", "STORE_DEREF"], [191, 16, 1, "-", "STORE_FAST"], [191, 16, 1, "-", "STORE_GLOBAL"], [191, 16, 1, "-", "STORE_NAME"], [191, 16, 1, "-", "STORE_SLICE"], [191, 16, 1, "-", "STORE_SUBSCR"], [191, 16, 1, "-", "SWAP"], [191, 16, 1, "-", "UNARY_INVERT"], [191, 16, 1, "-", "UNARY_NEGATIVE"], [191, 16, 1, "-", "UNARY_NOT"], [191, 16, 1, "-", "UNPACK_EX"], [191, 16, 1, "-", "UNPACK_SEQUENCE"], [191, 16, 1, "-", "WITH_EXCEPT_START"], [191, 16, 1, "-", "YIELD_VALUE"], [297, 13, 1, "-", "alias"], [112, 18, 1, "to3fixer-apply", "apply"], [297, 13, 1, "-", "args"], [112, 18, 1, "to3fixer-asserts", "asserts"], [112, 18, 1, "to3fixer-basestring", "basestring"], [297, 13, 1, "-", "break"], [112, 18, 1, "to3fixer-buffer", "buffer"], [297, 13, 1, "-", "clear"], [297, 13, 1, "-", "commands"], [297, 13, 1, "-", "condition"], [297, 13, 1, "-", "continue"], [297, 13, 1, "-", "debug"], [112, 18, 1, "to3fixer-dict", "dict"], [297, 13, 1, "-", "disable"], [297, 13, 1, "-", "display"], [297, 13, 1, "-", "down"], [297, 13, 1, "-", "enable"], [112, 18, 1, "to3fixer-except", "except"], [112, 18, 1, "to3fixer-exec", "exec"], [112, 18, 1, "to3fixer-execfile", "execfile"], [112, 18, 1, "to3fixer-exitfunc", "exitfunc"], [112, 18, 1, "to3fixer-filter", "filter"], [112, 18, 1, "to3fixer-funcattrs", "funcattrs"], [112, 18, 1, "to3fixer-future", "future"], [112, 18, 1, "to3fixer-getcwdu", "getcwdu"], [112, 18, 1, "to3fixer-has_key", "has_key"], [297, 13, 1, "-", "help"], [112, 18, 1, "to3fixer-idioms", "idioms"], [297, 13, 1, "-", "ignore"], [112, 18, 1, "to3fixer-import", "import"], [112, 18, 1, "to3fixer-imports", "imports"], [112, 18, 1, "to3fixer-imports2", "imports2"], [112, 18, 1, "to3fixer-input", "input"], [297, 13, 1, "-", "interact"], [112, 18, 1, "to3fixer-intern", "intern"], [112, 18, 1, "to3fixer-isinstance", "isinstance"], [112, 18, 1, "to3fixer-itertools", "itertools"], [112, 18, 1, "to3fixer-itertools_imports", "itertools_imports"], [297, 13, 1, "-", "jump"], [297, 13, 1, "-", "list"], [297, 13, 1, "-", "ll"], [112, 18, 1, "to3fixer-long", "long"], [112, 18, 1, "to3fixer-map", "map"], [112, 18, 1, "to3fixer-metaclass", "metaclass"], [112, 18, 1, "to3fixer-methodattrs", "methodattrs"], [112, 18, 1, "to3fixer-ne", "ne"], [112, 18, 1, "to3fixer-next", "next"], [297, 13, 1, "-", "next"], [112, 18, 1, "to3fixer-nonzero", "nonzero"], [112, 18, 1, "to3fixer-numliterals", "numliterals"], [112, 18, 1, "to3fixer-operator", "operator"], [297, 13, 1, "-", "p"], [112, 18, 1, "to3fixer-paren", "paren"], [297, 13, 1, "-", "pp"], [112, 18, 1, "to3fixer-print", "print"], [297, 13, 1, "-", "quit"], [112, 18, 1, "to3fixer-raise", "raise"], [112, 18, 1, "to3fixer-raw_input", "raw_input"], [112, 18, 1, "to3fixer-reduce", "reduce"], [112, 18, 1, "to3fixer-reload", "reload"], [112, 18, 1, "to3fixer-renames", "renames"], [112, 18, 1, "to3fixer-repr", "repr"], [297, 13, 1, "-", "restart"], [297, 13, 1, "-", "return"], [297, 13, 1, "-", "retval"], [297, 13, 1, "-", "run"], [112, 18, 1, "to3fixer-set_literal", "set_literal"], [297, 13, 1, "-", "source"], [112, 18, 1, "to3fixer-standarderror", "standarderror"], [297, 13, 1, "-", "step"], [112, 18, 1, "to3fixer-sys_exc", "sys_exc"], [297, 13, 1, "-", "tbreak"], [112, 18, 1, "to3fixer-throw", "throw"], [112, 18, 1, "to3fixer-tuple_params", "tuple_params"], [112, 18, 1, "to3fixer-types", "types"], [297, 13, 1, "-", "unalias"], [297, 13, 1, "-", "undisplay"], [112, 18, 1, "to3fixer-unicode", "unicode"], [297, 13, 1, "-", "until"], [297, 13, 1, "-", "up"], [112, 18, 1, "to3fixer-urllib", "urllib"], [297, 13, 1, "-", "whatis"], [297, 13, 1, "-", "where"], [112, 18, 1, "to3fixer-ws_comma", "ws_comma"], [112, 18, 1, "to3fixer-xrange", "xrange"], [112, 18, 1, "to3fixer-xreadlines", "xreadlines"], [112, 18, 1, "to3fixer-zip", "zip"]], "BaseException": [[213, 7, 1, "", "__cause__"], [213, 7, 1, "", "__context__"], [213, 7, 1, "", "__notes__"], [213, 7, 1, "", "__suppress_context__"], [213, 7, 1, "", "__traceback__"], [213, 8, 1, "", "add_note"], [213, 7, 1, "", "args"], [213, 8, 1, "", "with_traceback"]], "BaseExceptionGroup": [[213, 8, 1, "", "derive"], [213, 7, 1, "", "exceptions"], [213, 7, 1, "", "message"], [213, 8, 1, "", "split"], [213, 8, 1, "", "subgroup"]], "BlockingIOError": [[213, 7, 1, "", "characters_written"]], "ImportError": [[213, 7, 1, "", "name"], [213, 7, 1, "", "path"]], "OSError": [[213, 7, 1, "", "errno"], [213, 7, 1, "", "filename"], [213, 7, 1, "", "filename2"], [213, 7, 1, "", "strerror"], [213, 7, 1, "", "winerror"]], "PyAIter_Check": [[36, 3, 1, "c.PyAIter_Check", "o"]], "PyAnySet_Check": [[55, 3, 1, "c.PyAnySet_Check", "p"]], "PyAnySet_CheckExact": [[55, 3, 1, "c.PyAnySet_CheckExact", "p"]], "PyArg_Parse": [[5, 3, 1, "c.PyArg_Parse", "args"], [5, 3, 1, "c.PyArg_Parse", "format"]], "PyArg_ParseTuple": [[5, 3, 1, "c.PyArg_ParseTuple", "args"], [5, 3, 1, "c.PyArg_ParseTuple", "format"]], "PyArg_ParseTupleAndKeywords": [[5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "args"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "format"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "keywords"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "kw"]], "PyArg_UnpackTuple": [[5, 3, 1, "c.PyArg_UnpackTuple", "args"], [5, 3, 1, "c.PyArg_UnpackTuple", "max"], [5, 3, 1, "c.PyArg_UnpackTuple", "min"], [5, 3, 1, "c.PyArg_UnpackTuple", "name"]], "PyArg_VaParse": [[5, 3, 1, "c.PyArg_VaParse", "args"], [5, 3, 1, "c.PyArg_VaParse", "format"], [5, 3, 1, "c.PyArg_VaParse", "vargs"]], "PyArg_VaParseTupleAndKeywords": [[5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "args"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "format"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "keywords"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "kw"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "vargs"]], "PyAsyncMethods": [[63, 0, 1, "c.PyAsyncMethods.am_aiter", "am_aiter"], [63, 0, 1, "c.PyAsyncMethods.am_anext", "am_anext"], [63, 0, 1, "c.PyAsyncMethods.am_await", "am_await"], [63, 0, 1, "c.PyAsyncMethods.am_send", "am_send"]], "PyBool_Check": [[6, 3, 1, "c.PyBool_Check", "o"]], "PyBool_FromLong": [[6, 3, 1, "c.PyBool_FromLong", "v"]], "PyBufferProcs": [[63, 0, 1, "c.PyBufferProcs.bf_getbuffer", "bf_getbuffer"], [63, 0, 1, "c.PyBufferProcs.bf_releasebuffer", "bf_releasebuffer"]], "PyBuffer_FillContiguousStrides": [[7, 3, 1, "c.PyBuffer_FillContiguousStrides", "itemsize"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "ndims"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "order"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "shape"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "strides"]], "PyBuffer_FillInfo": [[7, 3, 1, "c.PyBuffer_FillInfo", "buf"], [7, 3, 1, "c.PyBuffer_FillInfo", "exporter"], [7, 3, 1, "c.PyBuffer_FillInfo", "flags"], [7, 3, 1, "c.PyBuffer_FillInfo", "len"], [7, 3, 1, "c.PyBuffer_FillInfo", "readonly"], [7, 3, 1, "c.PyBuffer_FillInfo", "view"]], "PyBuffer_FromContiguous": [[7, 3, 1, "c.PyBuffer_FromContiguous", "buf"], [7, 3, 1, "c.PyBuffer_FromContiguous", "fort"], [7, 3, 1, "c.PyBuffer_FromContiguous", "len"], [7, 3, 1, "c.PyBuffer_FromContiguous", "view"]], "PyBuffer_GetPointer": [[7, 3, 1, "c.PyBuffer_GetPointer", "indices"], [7, 3, 1, "c.PyBuffer_GetPointer", "view"]], "PyBuffer_IsContiguous": [[7, 3, 1, "c.PyBuffer_IsContiguous", "order"], [7, 3, 1, "c.PyBuffer_IsContiguous", "view"]], "PyBuffer_Release": [[7, 3, 1, "c.PyBuffer_Release", "view"]], "PyBuffer_SizeFromFormat": [[7, 3, 1, "c.PyBuffer_SizeFromFormat", "format"]], "PyBuffer_ToContiguous": [[7, 3, 1, "c.PyBuffer_ToContiguous", "buf"], [7, 3, 1, "c.PyBuffer_ToContiguous", "len"], [7, 3, 1, "c.PyBuffer_ToContiguous", "order"], [7, 3, 1, "c.PyBuffer_ToContiguous", "src"]], "PyByteArray_AS_STRING": [[8, 3, 1, "c.PyByteArray_AS_STRING", "bytearray"]], "PyByteArray_AsString": [[8, 3, 1, "c.PyByteArray_AsString", "bytearray"]], "PyByteArray_Check": [[8, 3, 1, "c.PyByteArray_Check", "o"]], "PyByteArray_CheckExact": [[8, 3, 1, "c.PyByteArray_CheckExact", "o"]], "PyByteArray_Concat": [[8, 3, 1, "c.PyByteArray_Concat", "a"], [8, 3, 1, "c.PyByteArray_Concat", "b"]], "PyByteArray_FromObject": [[8, 3, 1, "c.PyByteArray_FromObject", "o"]], "PyByteArray_FromStringAndSize": [[8, 3, 1, "c.PyByteArray_FromStringAndSize", "len"], [8, 3, 1, "c.PyByteArray_FromStringAndSize", "string"]], "PyByteArray_GET_SIZE": [[8, 3, 1, "c.PyByteArray_GET_SIZE", "bytearray"]], "PyByteArray_Resize": [[8, 3, 1, "c.PyByteArray_Resize", "bytearray"], [8, 3, 1, "c.PyByteArray_Resize", "len"]], "PyByteArray_Size": [[8, 3, 1, "c.PyByteArray_Size", "bytearray"]], "PyBytes_AS_STRING": [[9, 3, 1, "c.PyBytes_AS_STRING", "string"]], "PyBytes_AsString": [[9, 3, 1, "c.PyBytes_AsString", "o"]], "PyBytes_AsStringAndSize": [[9, 3, 1, "c.PyBytes_AsStringAndSize", "buffer"], [9, 3, 1, "c.PyBytes_AsStringAndSize", "length"], [9, 3, 1, "c.PyBytes_AsStringAndSize", "obj"]], "PyBytes_Check": [[9, 3, 1, "c.PyBytes_Check", "o"]], "PyBytes_CheckExact": [[9, 3, 1, "c.PyBytes_CheckExact", "o"]], "PyBytes_Concat": [[9, 3, 1, "c.PyBytes_Concat", "bytes"], [9, 3, 1, "c.PyBytes_Concat", "newpart"]], "PyBytes_ConcatAndDel": [[9, 3, 1, "c.PyBytes_ConcatAndDel", "bytes"], [9, 3, 1, "c.PyBytes_ConcatAndDel", "newpart"]], "PyBytes_FromFormat": [[9, 3, 1, "c.PyBytes_FromFormat", "format"]], "PyBytes_FromFormatV": [[9, 3, 1, "c.PyBytes_FromFormatV", "format"], [9, 3, 1, "c.PyBytes_FromFormatV", "vargs"]], "PyBytes_FromObject": [[9, 3, 1, "c.PyBytes_FromObject", "o"]], "PyBytes_FromString": [[9, 3, 1, "c.PyBytes_FromString", "v"]], "PyBytes_FromStringAndSize": [[9, 3, 1, "c.PyBytes_FromStringAndSize", "len"], [9, 3, 1, "c.PyBytes_FromStringAndSize", "v"]], "PyBytes_GET_SIZE": [[9, 3, 1, "c.PyBytes_GET_SIZE", "o"]], "PyBytes_Size": [[9, 3, 1, "c.PyBytes_Size", "o"]], "PyCFunction_New": [[58, 3, 1, "c.PyCFunction_New", "ml"], [58, 3, 1, "c.PyCFunction_New", "self"]], "PyCFunction_NewEx": [[58, 3, 1, "c.PyCFunction_NewEx", "ml"], [58, 3, 1, "c.PyCFunction_NewEx", "module"], [58, 3, 1, "c.PyCFunction_NewEx", "self"]], "PyCMethod_New": [[58, 3, 1, "c.PyCMethod_New", "cls"], [58, 3, 1, "c.PyCMethod_New", "ml"], [58, 3, 1, "c.PyCMethod_New", "module"], [58, 3, 1, "c.PyCMethod_New", "self"]], "PyCallIter_Check": [[37, 3, 1, "c.PyCallIter_Check", "op"]], "PyCallIter_New": [[37, 3, 1, "c.PyCallIter_New", "callable"], [37, 3, 1, "c.PyCallIter_New", "sentinel"]], "PyCallable_Check": [[10, 3, 1, "c.PyCallable_Check", "o"]], "PyCapsule_CheckExact": [[11, 3, 1, "c.PyCapsule_CheckExact", "p"]], "PyCapsule_GetContext": [[11, 3, 1, "c.PyCapsule_GetContext", "capsule"]], "PyCapsule_GetDestructor": [[11, 3, 1, "c.PyCapsule_GetDestructor", "capsule"]], "PyCapsule_GetName": [[11, 3, 1, "c.PyCapsule_GetName", "capsule"]], "PyCapsule_GetPointer": [[11, 3, 1, "c.PyCapsule_GetPointer", "capsule"], [11, 3, 1, "c.PyCapsule_GetPointer", "name"]], "PyCapsule_Import": [[11, 3, 1, "c.PyCapsule_Import", "name"], [11, 3, 1, "c.PyCapsule_Import", "no_block"]], "PyCapsule_IsValid": [[11, 3, 1, "c.PyCapsule_IsValid", "capsule"], [11, 3, 1, "c.PyCapsule_IsValid", "name"]], "PyCapsule_New": [[11, 3, 1, "c.PyCapsule_New", "destructor"], [11, 3, 1, "c.PyCapsule_New", "name"], [11, 3, 1, "c.PyCapsule_New", "pointer"]], "PyCapsule_SetContext": [[11, 3, 1, "c.PyCapsule_SetContext", "capsule"], [11, 3, 1, "c.PyCapsule_SetContext", "context"]], "PyCapsule_SetDestructor": [[11, 3, 1, "c.PyCapsule_SetDestructor", "capsule"], [11, 3, 1, "c.PyCapsule_SetDestructor", "destructor"]], "PyCapsule_SetName": [[11, 3, 1, "c.PyCapsule_SetName", "capsule"], [11, 3, 1, "c.PyCapsule_SetName", "name"]], "PyCapsule_SetPointer": [[11, 3, 1, "c.PyCapsule_SetPointer", "capsule"], [11, 3, 1, "c.PyCapsule_SetPointer", "pointer"]], "PyCell_Check": [[12, 3, 1, "c.PyCell_Check", "ob"]], "PyCell_GET": [[12, 3, 1, "c.PyCell_GET", "cell"]], "PyCell_Get": [[12, 3, 1, "c.PyCell_Get", "cell"]], "PyCell_New": [[12, 3, 1, "c.PyCell_New", "ob"]], "PyCell_SET": [[12, 3, 1, "c.PyCell_SET", "cell"], [12, 3, 1, "c.PyCell_SET", "value"]], "PyCell_Set": [[12, 3, 1, "c.PyCell_Set", "cell"], [12, 3, 1, "c.PyCell_Set", "value"]], "PyCode_AddWatcher": [[13, 3, 1, "c.PyCode_AddWatcher", "callback"]], "PyCode_Addr2Line": [[13, 3, 1, "c.PyCode_Addr2Line", "byte_offset"], [13, 3, 1, "c.PyCode_Addr2Line", "co"]], "PyCode_Addr2Location": [[13, 3, 1, "c.PyCode_Addr2Location", "byte_offset"], [13, 3, 1, "c.PyCode_Addr2Location", "co"], [13, 3, 1, "c.PyCode_Addr2Location", "end_column"], [13, 3, 1, "c.PyCode_Addr2Location", "end_line"], [13, 3, 1, "c.PyCode_Addr2Location", "start_column"], [13, 3, 1, "c.PyCode_Addr2Location", "start_line"]], "PyCode_Check": [[13, 3, 1, "c.PyCode_Check", "co"]], "PyCode_ClearWatcher": [[13, 3, 1, "c.PyCode_ClearWatcher", "watcher_id"]], "PyCode_GetCellvars": [[13, 3, 1, "c.PyCode_GetCellvars", "co"]], "PyCode_GetCode": [[13, 3, 1, "c.PyCode_GetCode", "co"]], "PyCode_GetFirstFree": [[13, 3, 1, "c.PyCode_GetFirstFree", "co"]], "PyCode_GetFreevars": [[13, 3, 1, "c.PyCode_GetFreevars", "co"]], "PyCode_GetNumFree": [[13, 3, 1, "c.PyCode_GetNumFree", "co"]], "PyCode_GetVarnames": [[13, 3, 1, "c.PyCode_GetVarnames", "co"]], "PyCode_NewEmpty": [[13, 3, 1, "c.PyCode_NewEmpty", "filename"], [13, 3, 1, "c.PyCode_NewEmpty", "firstlineno"], [13, 3, 1, "c.PyCode_NewEmpty", "funcname"]], "PyCodec_BackslashReplaceErrors": [[14, 3, 1, "c.PyCodec_BackslashReplaceErrors", "exc"]], "PyCodec_Decode": [[14, 3, 1, "c.PyCodec_Decode", "encoding"], [14, 3, 1, "c.PyCodec_Decode", "errors"], [14, 3, 1, "c.PyCodec_Decode", "object"]], "PyCodec_Decoder": [[14, 3, 1, "c.PyCodec_Decoder", "encoding"]], "PyCodec_Encode": [[14, 3, 1, "c.PyCodec_Encode", "encoding"], [14, 3, 1, "c.PyCodec_Encode", "errors"], [14, 3, 1, "c.PyCodec_Encode", "object"]], "PyCodec_Encoder": [[14, 3, 1, "c.PyCodec_Encoder", "encoding"]], "PyCodec_IgnoreErrors": [[14, 3, 1, "c.PyCodec_IgnoreErrors", "exc"]], "PyCodec_IncrementalDecoder": [[14, 3, 1, "c.PyCodec_IncrementalDecoder", "encoding"], [14, 3, 1, "c.PyCodec_IncrementalDecoder", "errors"]], "PyCodec_IncrementalEncoder": [[14, 3, 1, "c.PyCodec_IncrementalEncoder", "encoding"], [14, 3, 1, "c.PyCodec_IncrementalEncoder", "errors"]], "PyCodec_KnownEncoding": [[14, 3, 1, "c.PyCodec_KnownEncoding", "encoding"]], "PyCodec_LookupError": [[14, 3, 1, "c.PyCodec_LookupError", "name"]], "PyCodec_NameReplaceErrors": [[14, 3, 1, "c.PyCodec_NameReplaceErrors", "exc"]], "PyCodec_Register": [[14, 3, 1, "c.PyCodec_Register", "search_function"]], "PyCodec_RegisterError": [[14, 3, 1, "c.PyCodec_RegisterError", "error"], [14, 3, 1, "c.PyCodec_RegisterError", "name"]], "PyCodec_ReplaceErrors": [[14, 3, 1, "c.PyCodec_ReplaceErrors", "exc"]], "PyCodec_StreamReader": [[14, 3, 1, "c.PyCodec_StreamReader", "encoding"], [14, 3, 1, "c.PyCodec_StreamReader", "errors"], [14, 3, 1, "c.PyCodec_StreamReader", "stream"]], "PyCodec_StreamWriter": [[14, 3, 1, "c.PyCodec_StreamWriter", "encoding"], [14, 3, 1, "c.PyCodec_StreamWriter", "errors"], [14, 3, 1, "c.PyCodec_StreamWriter", "stream"]], "PyCodec_StrictErrors": [[14, 3, 1, "c.PyCodec_StrictErrors", "exc"]], "PyCodec_Unregister": [[14, 3, 1, "c.PyCodec_Unregister", "search_function"]], "PyCodec_XMLCharRefReplaceErrors": [[14, 3, 1, "c.PyCodec_XMLCharRefReplaceErrors", "exc"]], "PyCompilerFlags": [[66, 0, 1, "c.PyCompilerFlags.cf_feature_version", "cf_feature_version"], [66, 0, 1, "c.PyCompilerFlags.cf_flags", "cf_flags"]], "PyComplex_AsCComplex": [[15, 3, 1, "c.PyComplex_AsCComplex", "op"]], "PyComplex_Check": [[15, 3, 1, "c.PyComplex_Check", "p"]], "PyComplex_CheckExact": [[15, 3, 1, "c.PyComplex_CheckExact", "p"]], "PyComplex_FromCComplex": [[15, 3, 1, "c.PyComplex_FromCComplex", "v"]], "PyComplex_FromDoubles": [[15, 3, 1, "c.PyComplex_FromDoubles", "imag"], [15, 3, 1, "c.PyComplex_FromDoubles", "real"]], "PyComplex_ImagAsDouble": [[15, 3, 1, "c.PyComplex_ImagAsDouble", "op"]], "PyComplex_RealAsDouble": [[15, 3, 1, "c.PyComplex_RealAsDouble", "op"]], "PyConfig": [[34, 0, 1, "c.PyConfig.argv", "argv"], [34, 0, 1, "c.PyConfig.base_exec_prefix", "base_exec_prefix"], [34, 0, 1, "c.PyConfig.base_executable", "base_executable"], [34, 0, 1, "c.PyConfig.base_prefix", "base_prefix"], [34, 0, 1, "c.PyConfig.buffered_stdio", "buffered_stdio"], [34, 0, 1, "c.PyConfig.bytes_warning", "bytes_warning"], [34, 0, 1, "c.PyConfig.check_hash_pycs_mode", "check_hash_pycs_mode"], [34, 0, 1, "c.PyConfig.code_debug_ranges", "code_debug_ranges"], [34, 0, 1, "c.PyConfig.configure_c_stdio", "configure_c_stdio"], [34, 0, 1, "c.PyConfig.dev_mode", "dev_mode"], [34, 0, 1, "c.PyConfig.dump_refs", "dump_refs"], [34, 0, 1, "c.PyConfig.exec_prefix", "exec_prefix"], [34, 0, 1, "c.PyConfig.executable", "executable"], [34, 0, 1, "c.PyConfig.faulthandler", "faulthandler"], [34, 0, 1, "c.PyConfig.filesystem_encoding", "filesystem_encoding"], [34, 0, 1, "c.PyConfig.filesystem_errors", "filesystem_errors"], [34, 0, 1, "c.PyConfig.hash_seed", "hash_seed"], [34, 0, 1, "c.PyConfig.home", "home"], [34, 0, 1, "c.PyConfig.import_time", "import_time"], [34, 0, 1, "c.PyConfig.inspect", "inspect"], [34, 0, 1, "c.PyConfig.install_signal_handlers", "install_signal_handlers"], [34, 0, 1, "c.PyConfig.int_max_str_digits", "int_max_str_digits"], [34, 0, 1, "c.PyConfig.interactive", "interactive"], [34, 0, 1, "c.PyConfig.isolated", "isolated"], [34, 0, 1, "c.PyConfig.legacy_windows_stdio", "legacy_windows_stdio"], [34, 0, 1, "c.PyConfig.malloc_stats", "malloc_stats"], [34, 0, 1, "c.PyConfig.module_search_paths", "module_search_paths"], [34, 0, 1, "c.PyConfig.module_search_paths_set", "module_search_paths_set"], [34, 0, 1, "c.PyConfig.optimization_level", "optimization_level"], [34, 0, 1, "c.PyConfig.orig_argv", "orig_argv"], [34, 0, 1, "c.PyConfig.parse_argv", "parse_argv"], [34, 0, 1, "c.PyConfig.parser_debug", "parser_debug"], [34, 0, 1, "c.PyConfig.pathconfig_warnings", "pathconfig_warnings"], [34, 0, 1, "c.PyConfig.perf_profiling", "perf_profiling"], [34, 0, 1, "c.PyConfig.platlibdir", "platlibdir"], [34, 0, 1, "c.PyConfig.prefix", "prefix"], [34, 0, 1, "c.PyConfig.program_name", "program_name"], [34, 0, 1, "c.PyConfig.pycache_prefix", "pycache_prefix"], [34, 0, 1, "c.PyConfig.pythonpath_env", "pythonpath_env"], [34, 0, 1, "c.PyConfig.quiet", "quiet"], [34, 0, 1, "c.PyConfig.run_command", "run_command"], [34, 0, 1, "c.PyConfig.run_filename", "run_filename"], [34, 0, 1, "c.PyConfig.run_module", "run_module"], [34, 0, 1, "c.PyConfig.safe_path", "safe_path"], [34, 0, 1, "c.PyConfig.show_ref_count", "show_ref_count"], [34, 0, 1, "c.PyConfig.site_import", "site_import"], [34, 0, 1, "c.PyConfig.skip_source_first_line", "skip_source_first_line"], [34, 0, 1, "c.PyConfig.stdio_encoding", "stdio_encoding"], [34, 0, 1, "c.PyConfig.stdio_errors", "stdio_errors"], [34, 0, 1, "c.PyConfig.tracemalloc", "tracemalloc"], [34, 0, 1, "c.PyConfig.use_environment", "use_environment"], [34, 0, 1, "c.PyConfig.use_hash_seed", "use_hash_seed"], [34, 0, 1, "c.PyConfig.user_site_directory", "user_site_directory"], [34, 0, 1, "c.PyConfig.verbose", "verbose"], [34, 0, 1, "c.PyConfig.warn_default_encoding", "warn_default_encoding"], [34, 0, 1, "c.PyConfig.warnoptions", "warnoptions"], [34, 0, 1, "c.PyConfig.write_bytecode", "write_bytecode"], [34, 0, 1, "c.PyConfig.xoptions", "xoptions"]], "PyConfig_Clear": [[34, 3, 1, "c.PyConfig_Clear", "config"]], "PyConfig_InitIsolatedConfig": [[34, 3, 1, "c.PyConfig_InitIsolatedConfig", "config"]], "PyConfig_InitPythonConfig": [[34, 3, 1, "c.PyConfig_InitPythonConfig", "config"]], "PyConfig_Read": [[34, 3, 1, "c.PyConfig_Read", "config"]], "PyConfig_SetArgv": [[34, 3, 1, "c.PyConfig_SetArgv", "argc"], [34, 3, 1, "c.PyConfig_SetArgv", "argv"], [34, 3, 1, "c.PyConfig_SetArgv", "config"]], "PyConfig_SetBytesArgv": [[34, 3, 1, "c.PyConfig_SetBytesArgv", "argc"], [34, 3, 1, "c.PyConfig_SetBytesArgv", "argv"], [34, 3, 1, "c.PyConfig_SetBytesArgv", "config"]], "PyConfig_SetBytesString": [[34, 3, 1, "c.PyConfig_SetBytesString", "config"], [34, 3, 1, "c.PyConfig_SetBytesString", "config_str"], [34, 3, 1, "c.PyConfig_SetBytesString", "str"]], "PyConfig_SetString": [[34, 3, 1, "c.PyConfig_SetString", "config"], [34, 3, 1, "c.PyConfig_SetString", "config_str"], [34, 3, 1, "c.PyConfig_SetString", "str"]], "PyConfig_SetWideStringList": [[34, 3, 1, "c.PyConfig_SetWideStringList", "config"], [34, 3, 1, "c.PyConfig_SetWideStringList", "items"], [34, 3, 1, "c.PyConfig_SetWideStringList", "length"], [34, 3, 1, "c.PyConfig_SetWideStringList", "list"]], "PyContextToken_CheckExact": [[17, 3, 1, "c.PyContextToken_CheckExact", "o"]], "PyContextVar_CheckExact": [[17, 3, 1, "c.PyContextVar_CheckExact", "o"]], "PyContextVar_Get": [[17, 3, 1, "c.PyContextVar_Get", "default_value"], [17, 3, 1, "c.PyContextVar_Get", "value"], [17, 3, 1, "c.PyContextVar_Get", "var"]], "PyContextVar_New": [[17, 3, 1, "c.PyContextVar_New", "def"], [17, 3, 1, "c.PyContextVar_New", "name"]], "PyContextVar_Reset": [[17, 3, 1, "c.PyContextVar_Reset", "token"], [17, 3, 1, "c.PyContextVar_Reset", "var"]], "PyContextVar_Set": [[17, 3, 1, "c.PyContextVar_Set", "value"], [17, 3, 1, "c.PyContextVar_Set", "var"]], "PyContext_CheckExact": [[17, 3, 1, "c.PyContext_CheckExact", "o"]], "PyContext_Copy": [[17, 3, 1, "c.PyContext_Copy", "ctx"]], "PyContext_Enter": [[17, 3, 1, "c.PyContext_Enter", "ctx"]], "PyContext_Exit": [[17, 3, 1, "c.PyContext_Exit", "ctx"]], "PyCoro_CheckExact": [[19, 3, 1, "c.PyCoro_CheckExact", "ob"]], "PyCoro_New": [[19, 3, 1, "c.PyCoro_New", "frame"], [19, 3, 1, "c.PyCoro_New", "name"], [19, 3, 1, "c.PyCoro_New", "qualname"]], "PyDateTime_Check": [[20, 3, 1, "c.PyDateTime_Check", "ob"]], "PyDateTime_CheckExact": [[20, 3, 1, "c.PyDateTime_CheckExact", "ob"]], "PyDateTime_DATE_GET_FOLD": [[20, 3, 1, "c.PyDateTime_DATE_GET_FOLD", "o"]], "PyDateTime_DATE_GET_HOUR": [[20, 3, 1, "c.PyDateTime_DATE_GET_HOUR", "o"]], "PyDateTime_DATE_GET_MICROSECOND": [[20, 3, 1, "c.PyDateTime_DATE_GET_MICROSECOND", "o"]], "PyDateTime_DATE_GET_MINUTE": [[20, 3, 1, "c.PyDateTime_DATE_GET_MINUTE", "o"]], "PyDateTime_DATE_GET_SECOND": [[20, 3, 1, "c.PyDateTime_DATE_GET_SECOND", "o"]], "PyDateTime_DATE_GET_TZINFO": [[20, 3, 1, "c.PyDateTime_DATE_GET_TZINFO", "o"]], "PyDateTime_DELTA_GET_DAYS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_DAYS", "o"]], "PyDateTime_DELTA_GET_MICROSECONDS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_MICROSECONDS", "o"]], "PyDateTime_DELTA_GET_SECONDS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_SECONDS", "o"]], "PyDateTime_FromDateAndTime": [[20, 3, 1, "c.PyDateTime_FromDateAndTime", "day"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "hour"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "minute"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "month"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "second"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "usecond"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "year"]], "PyDateTime_FromDateAndTimeAndFold": [[20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "day"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "fold"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "hour"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "minute"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "month"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "second"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "usecond"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "year"]], "PyDateTime_FromTimestamp": [[20, 3, 1, "c.PyDateTime_FromTimestamp", "args"]], "PyDateTime_GET_DAY": [[20, 3, 1, "c.PyDateTime_GET_DAY", "o"]], "PyDateTime_GET_MONTH": [[20, 3, 1, "c.PyDateTime_GET_MONTH", "o"]], "PyDateTime_GET_YEAR": [[20, 3, 1, "c.PyDateTime_GET_YEAR", "o"]], "PyDateTime_TIME_GET_FOLD": [[20, 3, 1, "c.PyDateTime_TIME_GET_FOLD", "o"]], "PyDateTime_TIME_GET_HOUR": [[20, 3, 1, "c.PyDateTime_TIME_GET_HOUR", "o"]], "PyDateTime_TIME_GET_MICROSECOND": [[20, 3, 1, "c.PyDateTime_TIME_GET_MICROSECOND", "o"]], "PyDateTime_TIME_GET_MINUTE": [[20, 3, 1, "c.PyDateTime_TIME_GET_MINUTE", "o"]], "PyDateTime_TIME_GET_SECOND": [[20, 3, 1, "c.PyDateTime_TIME_GET_SECOND", "o"]], "PyDateTime_TIME_GET_TZINFO": [[20, 3, 1, "c.PyDateTime_TIME_GET_TZINFO", "o"]], "PyDate_Check": [[20, 3, 1, "c.PyDate_Check", "ob"]], "PyDate_CheckExact": [[20, 3, 1, "c.PyDate_CheckExact", "ob"]], "PyDate_FromDate": [[20, 3, 1, "c.PyDate_FromDate", "day"], [20, 3, 1, "c.PyDate_FromDate", "month"], [20, 3, 1, "c.PyDate_FromDate", "year"]], "PyDate_FromTimestamp": [[20, 3, 1, "c.PyDate_FromTimestamp", "args"]], "PyDelta_Check": [[20, 3, 1, "c.PyDelta_Check", "ob"]], "PyDelta_CheckExact": [[20, 3, 1, "c.PyDelta_CheckExact", "ob"]], "PyDelta_FromDSU": [[20, 3, 1, "c.PyDelta_FromDSU", "days"], [20, 3, 1, "c.PyDelta_FromDSU", "seconds"], [20, 3, 1, "c.PyDelta_FromDSU", "useconds"]], "PyDescr_IsData": [[21, 3, 1, "c.PyDescr_IsData", "descr"]], "PyDescr_NewClassMethod": [[21, 3, 1, "c.PyDescr_NewClassMethod", "method"], [21, 3, 1, "c.PyDescr_NewClassMethod", "type"]], "PyDescr_NewGetSet": [[21, 3, 1, "c.PyDescr_NewGetSet", "getset"], [21, 3, 1, "c.PyDescr_NewGetSet", "type"]], "PyDescr_NewMember": [[21, 3, 1, "c.PyDescr_NewMember", "meth"], [21, 3, 1, "c.PyDescr_NewMember", "type"]], "PyDescr_NewMethod": [[21, 3, 1, "c.PyDescr_NewMethod", "meth"], [21, 3, 1, "c.PyDescr_NewMethod", "type"]], "PyDescr_NewWrapper": [[21, 3, 1, "c.PyDescr_NewWrapper", "type"], [21, 3, 1, "c.PyDescr_NewWrapper", "wrapped"], [21, 3, 1, "c.PyDescr_NewWrapper", "wrapper"]], "PyDictProxy_New": [[22, 3, 1, "c.PyDictProxy_New", "mapping"]], "PyDict_AddWatcher": [[22, 3, 1, "c.PyDict_AddWatcher", "callback"]], "PyDict_Check": [[22, 3, 1, "c.PyDict_Check", "p"]], "PyDict_CheckExact": [[22, 3, 1, "c.PyDict_CheckExact", "p"]], "PyDict_Clear": [[22, 3, 1, "c.PyDict_Clear", "p"]], "PyDict_ClearWatcher": [[22, 3, 1, "c.PyDict_ClearWatcher", "watcher_id"]], "PyDict_Contains": [[22, 3, 1, "c.PyDict_Contains", "key"], [22, 3, 1, "c.PyDict_Contains", "p"]], "PyDict_Copy": [[22, 3, 1, "c.PyDict_Copy", "p"]], "PyDict_DelItem": [[22, 3, 1, "c.PyDict_DelItem", "key"], [22, 3, 1, "c.PyDict_DelItem", "p"]], "PyDict_DelItemString": [[22, 3, 1, "c.PyDict_DelItemString", "key"], [22, 3, 1, "c.PyDict_DelItemString", "p"]], "PyDict_GetItem": [[22, 3, 1, "c.PyDict_GetItem", "key"], [22, 3, 1, "c.PyDict_GetItem", "p"]], "PyDict_GetItemString": [[22, 3, 1, "c.PyDict_GetItemString", "key"], [22, 3, 1, "c.PyDict_GetItemString", "p"]], "PyDict_GetItemWithError": [[22, 3, 1, "c.PyDict_GetItemWithError", "key"], [22, 3, 1, "c.PyDict_GetItemWithError", "p"]], "PyDict_Items": [[22, 3, 1, "c.PyDict_Items", "p"]], "PyDict_Keys": [[22, 3, 1, "c.PyDict_Keys", "p"]], "PyDict_Merge": [[22, 3, 1, "c.PyDict_Merge", "a"], [22, 3, 1, "c.PyDict_Merge", "b"], [22, 3, 1, "c.PyDict_Merge", "override"]], "PyDict_MergeFromSeq2": [[22, 3, 1, "c.PyDict_MergeFromSeq2", "a"], [22, 3, 1, "c.PyDict_MergeFromSeq2", "override"], [22, 3, 1, "c.PyDict_MergeFromSeq2", "seq2"]], "PyDict_Next": [[22, 3, 1, "c.PyDict_Next", "p"], [22, 3, 1, "c.PyDict_Next", "pkey"], [22, 3, 1, "c.PyDict_Next", "ppos"], [22, 3, 1, "c.PyDict_Next", "pvalue"]], "PyDict_SetDefault": [[22, 3, 1, "c.PyDict_SetDefault", "defaultobj"], [22, 3, 1, "c.PyDict_SetDefault", "key"], [22, 3, 1, "c.PyDict_SetDefault", "p"]], "PyDict_SetItem": [[22, 3, 1, "c.PyDict_SetItem", "key"], [22, 3, 1, "c.PyDict_SetItem", "p"], [22, 3, 1, "c.PyDict_SetItem", "val"]], "PyDict_SetItemString": [[22, 3, 1, "c.PyDict_SetItemString", "key"], [22, 3, 1, "c.PyDict_SetItemString", "p"], [22, 3, 1, "c.PyDict_SetItemString", "val"]], "PyDict_Size": [[22, 3, 1, "c.PyDict_Size", "p"]], "PyDict_Unwatch": [[22, 3, 1, "c.PyDict_Unwatch", "dict"], [22, 3, 1, "c.PyDict_Unwatch", "watcher_id"]], "PyDict_Update": [[22, 3, 1, "c.PyDict_Update", "a"], [22, 3, 1, "c.PyDict_Update", "b"]], "PyDict_Values": [[22, 3, 1, "c.PyDict_Values", "p"]], "PyDict_Watch": [[22, 3, 1, "c.PyDict_Watch", "dict"], [22, 3, 1, "c.PyDict_Watch", "watcher_id"]], "PyErr_DisplayException": [[23, 3, 1, "c.PyErr_DisplayException", "exc"]], "PyErr_ExceptionMatches": [[23, 3, 1, "c.PyErr_ExceptionMatches", "exc"]], "PyErr_Fetch": [[23, 3, 1, "c.PyErr_Fetch", "ptraceback"], [23, 3, 1, "c.PyErr_Fetch", "ptype"], [23, 3, 1, "c.PyErr_Fetch", "pvalue"]], "PyErr_Format": [[23, 3, 1, "c.PyErr_Format", "exception"], [23, 3, 1, "c.PyErr_Format", "format"]], "PyErr_FormatV": [[23, 3, 1, "c.PyErr_FormatV", "exception"], [23, 3, 1, "c.PyErr_FormatV", "format"], [23, 3, 1, "c.PyErr_FormatV", "vargs"]], "PyErr_GetExcInfo": [[23, 3, 1, "c.PyErr_GetExcInfo", "ptraceback"], [23, 3, 1, "c.PyErr_GetExcInfo", "ptype"], [23, 3, 1, "c.PyErr_GetExcInfo", "pvalue"]], "PyErr_GivenExceptionMatches": [[23, 3, 1, "c.PyErr_GivenExceptionMatches", "exc"], [23, 3, 1, "c.PyErr_GivenExceptionMatches", "given"]], "PyErr_NewException": [[23, 3, 1, "c.PyErr_NewException", "base"], [23, 3, 1, "c.PyErr_NewException", "dict"], [23, 3, 1, "c.PyErr_NewException", "name"]], "PyErr_NewExceptionWithDoc": [[23, 3, 1, "c.PyErr_NewExceptionWithDoc", "base"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "dict"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "doc"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "name"]], "PyErr_NormalizeException": [[23, 3, 1, "c.PyErr_NormalizeException", "exc"], [23, 3, 1, "c.PyErr_NormalizeException", "tb"], [23, 3, 1, "c.PyErr_NormalizeException", "val"]], "PyErr_PrintEx": [[23, 3, 1, "c.PyErr_PrintEx", "set_sys_last_vars"]], "PyErr_ResourceWarning": [[23, 3, 1, "c.PyErr_ResourceWarning", "format"], [23, 3, 1, "c.PyErr_ResourceWarning", "source"], [23, 3, 1, "c.PyErr_ResourceWarning", "stack_level"]], "PyErr_Restore": [[23, 3, 1, "c.PyErr_Restore", "traceback"], [23, 3, 1, "c.PyErr_Restore", "type"], [23, 3, 1, "c.PyErr_Restore", "value"]], "PyErr_SetExcFromWindowsErr": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErr", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErr", "type"]], "PyErr_SetExcFromWindowsErrWithFilename": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "type"]], "PyErr_SetExcFromWindowsErrWithFilenameObject": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "type"]], "PyErr_SetExcFromWindowsErrWithFilenameObjects": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "filename2"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "type"]], "PyErr_SetExcInfo": [[23, 3, 1, "c.PyErr_SetExcInfo", "traceback"], [23, 3, 1, "c.PyErr_SetExcInfo", "type"], [23, 3, 1, "c.PyErr_SetExcInfo", "value"]], "PyErr_SetFromErrno": [[23, 3, 1, "c.PyErr_SetFromErrno", "type"]], "PyErr_SetFromErrnoWithFilename": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilename", "type"]], "PyErr_SetFromErrnoWithFilenameObject": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "filenameObject"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "type"]], "PyErr_SetFromErrnoWithFilenameObjects": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "filenameObject"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "filenameObject2"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "type"]], "PyErr_SetFromWindowsErr": [[23, 3, 1, "c.PyErr_SetFromWindowsErr", "ierr"]], "PyErr_SetFromWindowsErrWithFilename": [[23, 3, 1, "c.PyErr_SetFromWindowsErrWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetFromWindowsErrWithFilename", "ierr"]], "PyErr_SetHandledException": [[23, 3, 1, "c.PyErr_SetHandledException", "exc"]], "PyErr_SetImportError": [[23, 3, 1, "c.PyErr_SetImportError", "msg"], [23, 3, 1, "c.PyErr_SetImportError", "name"], [23, 3, 1, "c.PyErr_SetImportError", "path"]], "PyErr_SetImportErrorSubclass": [[23, 3, 1, "c.PyErr_SetImportErrorSubclass", "exception"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "msg"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "name"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "path"]], "PyErr_SetInterruptEx": [[23, 3, 1, "c.PyErr_SetInterruptEx", "signum"]], "PyErr_SetNone": [[23, 3, 1, "c.PyErr_SetNone", "type"]], "PyErr_SetObject": [[23, 3, 1, "c.PyErr_SetObject", "type"], [23, 3, 1, "c.PyErr_SetObject", "value"]], "PyErr_SetRaisedException": [[23, 3, 1, "c.PyErr_SetRaisedException", "exc"]], "PyErr_SetString": [[23, 3, 1, "c.PyErr_SetString", "message"], [23, 3, 1, "c.PyErr_SetString", "type"]], "PyErr_SyntaxLocation": [[23, 3, 1, "c.PyErr_SyntaxLocation", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocation", "lineno"]], "PyErr_SyntaxLocationEx": [[23, 3, 1, "c.PyErr_SyntaxLocationEx", "col_offset"], [23, 3, 1, "c.PyErr_SyntaxLocationEx", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocationEx", "lineno"]], "PyErr_SyntaxLocationObject": [[23, 3, 1, "c.PyErr_SyntaxLocationObject", "col_offset"], [23, 3, 1, "c.PyErr_SyntaxLocationObject", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocationObject", "lineno"]], "PyErr_WarnEx": [[23, 3, 1, "c.PyErr_WarnEx", "category"], [23, 3, 1, "c.PyErr_WarnEx", "message"], [23, 3, 1, "c.PyErr_WarnEx", "stack_level"]], "PyErr_WarnExplicit": [[23, 3, 1, "c.PyErr_WarnExplicit", "category"], [23, 3, 1, "c.PyErr_WarnExplicit", "filename"], [23, 3, 1, "c.PyErr_WarnExplicit", "lineno"], [23, 3, 1, "c.PyErr_WarnExplicit", "message"], [23, 3, 1, "c.PyErr_WarnExplicit", "module"], [23, 3, 1, "c.PyErr_WarnExplicit", "registry"]], "PyErr_WarnExplicitObject": [[23, 3, 1, "c.PyErr_WarnExplicitObject", "category"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "filename"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "lineno"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "message"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "module"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "registry"]], "PyErr_WarnFormat": [[23, 3, 1, "c.PyErr_WarnFormat", "category"], [23, 3, 1, "c.PyErr_WarnFormat", "format"], [23, 3, 1, "c.PyErr_WarnFormat", "stack_level"]], "PyErr_WriteUnraisable": [[23, 3, 1, "c.PyErr_WriteUnraisable", "obj"]], "PyEval_AcquireThread": [[33, 3, 1, "c.PyEval_AcquireThread", "tstate"]], "PyEval_EvalCode": [[66, 3, 1, "c.PyEval_EvalCode", "co"], [66, 3, 1, "c.PyEval_EvalCode", "globals"], [66, 3, 1, "c.PyEval_EvalCode", "locals"]], "PyEval_EvalCodeEx": [[66, 3, 1, "c.PyEval_EvalCodeEx", "argcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "args"], [66, 3, 1, "c.PyEval_EvalCodeEx", "closure"], [66, 3, 1, "c.PyEval_EvalCodeEx", "co"], [66, 3, 1, "c.PyEval_EvalCodeEx", "defcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "defs"], [66, 3, 1, "c.PyEval_EvalCodeEx", "globals"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kwcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kwdefs"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kws"], [66, 3, 1, "c.PyEval_EvalCodeEx", "locals"]], "PyEval_EvalFrame": [[66, 3, 1, "c.PyEval_EvalFrame", "f"]], "PyEval_EvalFrameEx": [[66, 3, 1, "c.PyEval_EvalFrameEx", "f"], [66, 3, 1, "c.PyEval_EvalFrameEx", "throwflag"]], "PyEval_GetFuncDesc": [[53, 3, 1, "c.PyEval_GetFuncDesc", "func"]], "PyEval_GetFuncName": [[53, 3, 1, "c.PyEval_GetFuncName", "func"]], "PyEval_MergeCompilerFlags": [[66, 3, 1, "c.PyEval_MergeCompilerFlags", "cf"]], "PyEval_ReleaseThread": [[33, 3, 1, "c.PyEval_ReleaseThread", "tstate"]], "PyEval_RestoreThread": [[33, 3, 1, "c.PyEval_RestoreThread", "tstate"]], "PyEval_SetProfile": [[33, 3, 1, "c.PyEval_SetProfile", "func"], [33, 3, 1, "c.PyEval_SetProfile", "obj"]], "PyEval_SetProfileAllThreads": [[33, 3, 1, "c.PyEval_SetProfileAllThreads", "func"], [33, 3, 1, "c.PyEval_SetProfileAllThreads", "obj"]], "PyEval_SetTrace": [[33, 3, 1, "c.PyEval_SetTrace", "func"], [33, 3, 1, "c.PyEval_SetTrace", "obj"]], "PyEval_SetTraceAllThreads": [[33, 3, 1, "c.PyEval_SetTraceAllThreads", "func"], [33, 3, 1, "c.PyEval_SetTraceAllThreads", "obj"]], "PyException_GetArgs": [[23, 3, 1, "c.PyException_GetArgs", "ex"]], "PyException_GetCause": [[23, 3, 1, "c.PyException_GetCause", "ex"]], "PyException_GetContext": [[23, 3, 1, "c.PyException_GetContext", "ex"]], "PyException_GetTraceback": [[23, 3, 1, "c.PyException_GetTraceback", "ex"]], "PyException_SetArgs": [[23, 3, 1, "c.PyException_SetArgs", "args"], [23, 3, 1, "c.PyException_SetArgs", "ex"]], "PyException_SetCause": [[23, 3, 1, "c.PyException_SetCause", "cause"], [23, 3, 1, "c.PyException_SetCause", "ex"]], "PyException_SetContext": [[23, 3, 1, "c.PyException_SetContext", "ctx"], [23, 3, 1, "c.PyException_SetContext", "ex"]], "PyException_SetTraceback": [[23, 3, 1, "c.PyException_SetTraceback", "ex"], [23, 3, 1, "c.PyException_SetTraceback", "tb"]], "PyFile_FromFd": [[24, 3, 1, "c.PyFile_FromFd", "buffering"], [24, 3, 1, "c.PyFile_FromFd", "closefd"], [24, 3, 1, "c.PyFile_FromFd", "encoding"], [24, 3, 1, "c.PyFile_FromFd", "errors"], [24, 3, 1, "c.PyFile_FromFd", "fd"], [24, 3, 1, "c.PyFile_FromFd", "mode"], [24, 3, 1, "c.PyFile_FromFd", "name"], [24, 3, 1, "c.PyFile_FromFd", "newline"]], "PyFile_GetLine": [[24, 3, 1, "c.PyFile_GetLine", "n"], [24, 3, 1, "c.PyFile_GetLine", "p"]], "PyFile_SetOpenCodeHook": [[24, 4, 1, "c.PyFile_SetOpenCodeHook.Py_OpenCodeHookFunction", "Py_OpenCodeHookFunction"], [24, 3, 1, "c.PyFile_SetOpenCodeHook", "handler"]], "PyFile_WriteObject": [[24, 3, 1, "c.PyFile_WriteObject", "flags"], [24, 3, 1, "c.PyFile_WriteObject", "obj"], [24, 3, 1, "c.PyFile_WriteObject", "p"]], "PyFile_WriteString": [[24, 3, 1, "c.PyFile_WriteString", "p"], [24, 3, 1, "c.PyFile_WriteString", "s"]], "PyFloat_AS_DOUBLE": [[25, 3, 1, "c.PyFloat_AS_DOUBLE", "pyfloat"]], "PyFloat_AsDouble": [[25, 3, 1, "c.PyFloat_AsDouble", "pyfloat"]], "PyFloat_Check": [[25, 3, 1, "c.PyFloat_Check", "p"]], "PyFloat_CheckExact": [[25, 3, 1, "c.PyFloat_CheckExact", "p"]], "PyFloat_FromDouble": [[25, 3, 1, "c.PyFloat_FromDouble", "v"]], "PyFloat_FromString": [[25, 3, 1, "c.PyFloat_FromString", "str"]], "PyFloat_Pack2": [[25, 3, 1, "c.PyFloat_Pack2", "le"], [25, 3, 1, "c.PyFloat_Pack2", "p"], [25, 3, 1, "c.PyFloat_Pack2", "x"]], "PyFloat_Pack4": [[25, 3, 1, "c.PyFloat_Pack4", "le"], [25, 3, 1, "c.PyFloat_Pack4", "p"], [25, 3, 1, "c.PyFloat_Pack4", "x"]], "PyFloat_Pack8": [[25, 3, 1, "c.PyFloat_Pack8", "le"], [25, 3, 1, "c.PyFloat_Pack8", "p"], [25, 3, 1, "c.PyFloat_Pack8", "x"]], "PyFloat_Unpack2": [[25, 3, 1, "c.PyFloat_Unpack2", "le"], [25, 3, 1, "c.PyFloat_Unpack2", "p"]], "PyFloat_Unpack4": [[25, 3, 1, "c.PyFloat_Unpack4", "le"], [25, 3, 1, "c.PyFloat_Unpack4", "p"]], "PyFloat_Unpack8": [[25, 3, 1, "c.PyFloat_Unpack8", "le"], [25, 3, 1, "c.PyFloat_Unpack8", "p"]], "PyFrame_Check": [[26, 3, 1, "c.PyFrame_Check", "obj"]], "PyFrame_GetBack": [[26, 3, 1, "c.PyFrame_GetBack", "frame"]], "PyFrame_GetBuiltins": [[26, 3, 1, "c.PyFrame_GetBuiltins", "frame"]], "PyFrame_GetCode": [[26, 3, 1, "c.PyFrame_GetCode", "frame"]], "PyFrame_GetGenerator": [[26, 3, 1, "c.PyFrame_GetGenerator", "frame"]], "PyFrame_GetGlobals": [[26, 3, 1, "c.PyFrame_GetGlobals", "frame"]], "PyFrame_GetLasti": [[26, 3, 1, "c.PyFrame_GetLasti", "frame"]], "PyFrame_GetLineNumber": [[26, 3, 1, "c.PyFrame_GetLineNumber", "frame"]], "PyFrame_GetLocals": [[26, 3, 1, "c.PyFrame_GetLocals", "frame"]], "PyFrame_GetVar": [[26, 3, 1, "c.PyFrame_GetVar", "frame"], [26, 3, 1, "c.PyFrame_GetVar", "name"]], "PyFrame_GetVarString": [[26, 3, 1, "c.PyFrame_GetVarString", "frame"], [26, 3, 1, "c.PyFrame_GetVarString", "name"]], "PyFrozenSet_Check": [[55, 3, 1, "c.PyFrozenSet_Check", "p"]], "PyFrozenSet_CheckExact": [[55, 3, 1, "c.PyFrozenSet_CheckExact", "p"]], "PyFrozenSet_New": [[55, 3, 1, "c.PyFrozenSet_New", "iterable"]], "PyFunction_AddWatcher": [[27, 3, 1, "c.PyFunction_AddWatcher", "callback"]], "PyFunction_Check": [[27, 3, 1, "c.PyFunction_Check", "o"]], "PyFunction_ClearWatcher": [[27, 3, 1, "c.PyFunction_ClearWatcher", "watcher_id"]], "PyFunction_GetAnnotations": [[27, 3, 1, "c.PyFunction_GetAnnotations", "op"]], "PyFunction_GetClosure": [[27, 3, 1, "c.PyFunction_GetClosure", "op"]], "PyFunction_GetCode": [[27, 3, 1, "c.PyFunction_GetCode", "op"]], "PyFunction_GetDefaults": [[27, 3, 1, "c.PyFunction_GetDefaults", "op"]], "PyFunction_GetGlobals": [[27, 3, 1, "c.PyFunction_GetGlobals", "op"]], "PyFunction_GetModule": [[27, 3, 1, "c.PyFunction_GetModule", "op"]], "PyFunction_New": [[27, 3, 1, "c.PyFunction_New", "code"], [27, 3, 1, "c.PyFunction_New", "globals"]], "PyFunction_NewWithQualName": [[27, 3, 1, "c.PyFunction_NewWithQualName", "code"], [27, 3, 1, "c.PyFunction_NewWithQualName", "globals"], [27, 3, 1, "c.PyFunction_NewWithQualName", "qualname"]], "PyFunction_SetAnnotations": [[27, 3, 1, "c.PyFunction_SetAnnotations", "annotations"], [27, 3, 1, "c.PyFunction_SetAnnotations", "op"]], "PyFunction_SetClosure": [[27, 3, 1, "c.PyFunction_SetClosure", "closure"], [27, 3, 1, "c.PyFunction_SetClosure", "op"]], "PyFunction_SetDefaults": [[27, 3, 1, "c.PyFunction_SetDefaults", "defaults"], [27, 3, 1, "c.PyFunction_SetDefaults", "op"]], "PyFunction_SetVectorcall": [[27, 3, 1, "c.PyFunction_SetVectorcall", "func"], [27, 3, 1, "c.PyFunction_SetVectorcall", "vectorcall"]], "PyGen_Check": [[29, 3, 1, "c.PyGen_Check", "ob"]], "PyGen_CheckExact": [[29, 3, 1, "c.PyGen_CheckExact", "ob"]], "PyGen_New": [[29, 3, 1, "c.PyGen_New", "frame"]], "PyGen_NewWithQualName": [[29, 3, 1, "c.PyGen_NewWithQualName", "frame"], [29, 3, 1, "c.PyGen_NewWithQualName", "name"], [29, 3, 1, "c.PyGen_NewWithQualName", "qualname"]], "PyGetSetDef": [[58, 0, 1, "c.PyGetSetDef.closure", "closure"], [58, 0, 1, "c.PyGetSetDef.doc", "doc"], [58, 0, 1, "c.PyGetSetDef.get", "get"], [58, 0, 1, "c.PyGetSetDef.name", "name"], [58, 0, 1, "c.PyGetSetDef.set", "set"]], "PyHash_FuncDef": [[30, 0, 1, "c.PyHash_FuncDef.hash_bits", "hash_bits"], [30, 0, 1, "c.PyHash_FuncDef.name", "name"], [30, 0, 1, "c.PyHash_FuncDef.seed_bits", "seed_bits"]], "PyImport_AddModule": [[31, 3, 1, "c.PyImport_AddModule", "name"]], "PyImport_AddModuleObject": [[31, 3, 1, "c.PyImport_AddModuleObject", "name"]], "PyImport_AppendInittab": [[31, 3, 1, "c.PyImport_AppendInittab", "initfunc"], [31, 3, 1, "c.PyImport_AppendInittab", "name"]], "PyImport_ExecCodeModule": [[31, 3, 1, "c.PyImport_ExecCodeModule", "co"], [31, 3, 1, "c.PyImport_ExecCodeModule", "name"]], "PyImport_ExecCodeModuleEx": [[31, 3, 1, "c.PyImport_ExecCodeModuleEx", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleEx", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleEx", "pathname"]], "PyImport_ExecCodeModuleObject": [[31, 3, 1, "c.PyImport_ExecCodeModuleObject", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "cpathname"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "pathname"]], "PyImport_ExecCodeModuleWithPathnames": [[31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "cpathname"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "pathname"]], "PyImport_ExtendInittab": [[31, 3, 1, "c.PyImport_ExtendInittab", "newtab"]], "PyImport_GetImporter": [[31, 3, 1, "c.PyImport_GetImporter", "path"]], "PyImport_GetModule": [[31, 3, 1, "c.PyImport_GetModule", "name"]], "PyImport_Import": [[31, 3, 1, "c.PyImport_Import", "name"]], "PyImport_ImportFrozenModule": [[31, 3, 1, "c.PyImport_ImportFrozenModule", "name"]], "PyImport_ImportFrozenModuleObject": [[31, 3, 1, "c.PyImport_ImportFrozenModuleObject", "name"]], "PyImport_ImportModule": [[31, 3, 1, "c.PyImport_ImportModule", "name"]], "PyImport_ImportModuleEx": [[31, 3, 1, "c.PyImport_ImportModuleEx", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleEx", "globals"], [31, 3, 1, "c.PyImport_ImportModuleEx", "locals"], [31, 3, 1, "c.PyImport_ImportModuleEx", "name"]], "PyImport_ImportModuleLevel": [[31, 3, 1, "c.PyImport_ImportModuleLevel", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "globals"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "level"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "locals"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "name"]], "PyImport_ImportModuleLevelObject": [[31, 3, 1, "c.PyImport_ImportModuleLevelObject", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "globals"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "level"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "locals"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "name"]], "PyImport_ImportModuleNoBlock": [[31, 3, 1, "c.PyImport_ImportModuleNoBlock", "name"]], "PyImport_ReloadModule": [[31, 3, 1, "c.PyImport_ReloadModule", "m"]], "PyIndex_Check": [[47, 3, 1, "c.PyIndex_Check", "o"]], "PyInstanceMethod_Check": [[44, 3, 1, "c.PyInstanceMethod_Check", "o"]], "PyInstanceMethod_Function": [[44, 3, 1, "c.PyInstanceMethod_Function", "im"]], "PyInstanceMethod_GET_FUNCTION": [[44, 3, 1, "c.PyInstanceMethod_GET_FUNCTION", "im"]], "PyInstanceMethod_New": [[44, 3, 1, "c.PyInstanceMethod_New", "func"]], "PyInterpreterConfig": [[33, 0, 1, "c.PyInterpreterConfig.allow_daemon_threads", "allow_daemon_threads"], [33, 0, 1, "c.PyInterpreterConfig.allow_exec", "allow_exec"], [33, 0, 1, "c.PyInterpreterConfig.allow_fork", "allow_fork"], [33, 0, 1, "c.PyInterpreterConfig.allow_threads", "allow_threads"], [33, 0, 1, "c.PyInterpreterConfig.check_multi_interp_extensions", "check_multi_interp_extensions"], [33, 0, 1, "c.PyInterpreterConfig.gil", "gil"], [33, 0, 1, "c.PyInterpreterConfig.use_main_obmalloc", "use_main_obmalloc"]], "PyInterpreterState_Clear": [[33, 3, 1, "c.PyInterpreterState_Clear", "interp"]], "PyInterpreterState_Delete": [[33, 3, 1, "c.PyInterpreterState_Delete", "interp"]], "PyInterpreterState_GetDict": [[33, 3, 1, "c.PyInterpreterState_GetDict", "interp"]], "PyInterpreterState_GetID": [[33, 3, 1, "c.PyInterpreterState_GetID", "interp"]], "PyInterpreterState_Next": [[33, 3, 1, "c.PyInterpreterState_Next", "interp"]], "PyInterpreterState_ThreadHead": [[33, 3, 1, "c.PyInterpreterState_ThreadHead", "interp"]], "PyIter_Check": [[36, 3, 1, "c.PyIter_Check", "o"]], "PyIter_Next": [[36, 3, 1, "c.PyIter_Next", "o"]], "PyIter_Send": [[36, 3, 1, "c.PyIter_Send", "arg"], [36, 3, 1, "c.PyIter_Send", "iter"], [36, 3, 1, "c.PyIter_Send", "presult"]], "PyList_Append": [[38, 3, 1, "c.PyList_Append", "item"], [38, 3, 1, "c.PyList_Append", "list"]], "PyList_AsTuple": [[38, 3, 1, "c.PyList_AsTuple", "list"]], "PyList_Check": [[38, 3, 1, "c.PyList_Check", "p"]], "PyList_CheckExact": [[38, 3, 1, "c.PyList_CheckExact", "p"]], "PyList_GET_ITEM": [[38, 3, 1, "c.PyList_GET_ITEM", "i"], [38, 3, 1, "c.PyList_GET_ITEM", "list"]], "PyList_GET_SIZE": [[38, 3, 1, "c.PyList_GET_SIZE", "list"]], "PyList_GetItem": [[38, 3, 1, "c.PyList_GetItem", "index"], [38, 3, 1, "c.PyList_GetItem", "list"]], "PyList_GetSlice": [[38, 3, 1, "c.PyList_GetSlice", "high"], [38, 3, 1, "c.PyList_GetSlice", "list"], [38, 3, 1, "c.PyList_GetSlice", "low"]], "PyList_Insert": [[38, 3, 1, "c.PyList_Insert", "index"], [38, 3, 1, "c.PyList_Insert", "item"], [38, 3, 1, "c.PyList_Insert", "list"]], "PyList_New": [[38, 3, 1, "c.PyList_New", "len"]], "PyList_Reverse": [[38, 3, 1, "c.PyList_Reverse", "list"]], "PyList_SET_ITEM": [[38, 3, 1, "c.PyList_SET_ITEM", "i"], [38, 3, 1, "c.PyList_SET_ITEM", "list"], [38, 3, 1, "c.PyList_SET_ITEM", "o"]], "PyList_SetItem": [[38, 3, 1, "c.PyList_SetItem", "index"], [38, 3, 1, "c.PyList_SetItem", "item"], [38, 3, 1, "c.PyList_SetItem", "list"]], "PyList_SetSlice": [[38, 3, 1, "c.PyList_SetSlice", "high"], [38, 3, 1, "c.PyList_SetSlice", "itemlist"], [38, 3, 1, "c.PyList_SetSlice", "list"], [38, 3, 1, "c.PyList_SetSlice", "low"]], "PyList_Size": [[38, 3, 1, "c.PyList_Size", "list"]], "PyList_Sort": [[38, 3, 1, "c.PyList_Sort", "list"]], "PyLong_AsDouble": [[39, 3, 1, "c.PyLong_AsDouble", "pylong"]], "PyLong_AsLong": [[39, 3, 1, "c.PyLong_AsLong", "obj"]], "PyLong_AsLongAndOverflow": [[39, 3, 1, "c.PyLong_AsLongAndOverflow", "obj"], [39, 3, 1, "c.PyLong_AsLongAndOverflow", "overflow"]], "PyLong_AsLongLong": [[39, 3, 1, "c.PyLong_AsLongLong", "obj"]], "PyLong_AsLongLongAndOverflow": [[39, 3, 1, "c.PyLong_AsLongLongAndOverflow", "obj"], [39, 3, 1, "c.PyLong_AsLongLongAndOverflow", "overflow"]], "PyLong_AsSize_t": [[39, 3, 1, "c.PyLong_AsSize_t", "pylong"]], "PyLong_AsSsize_t": [[39, 3, 1, "c.PyLong_AsSsize_t", "pylong"]], "PyLong_AsUnsignedLong": [[39, 3, 1, "c.PyLong_AsUnsignedLong", "pylong"]], "PyLong_AsUnsignedLongLong": [[39, 3, 1, "c.PyLong_AsUnsignedLongLong", "pylong"]], "PyLong_AsUnsignedLongLongMask": [[39, 3, 1, "c.PyLong_AsUnsignedLongLongMask", "obj"]], "PyLong_AsUnsignedLongMask": [[39, 3, 1, "c.PyLong_AsUnsignedLongMask", "obj"]], "PyLong_AsVoidPtr": [[39, 3, 1, "c.PyLong_AsVoidPtr", "pylong"]], "PyLong_Check": [[39, 3, 1, "c.PyLong_Check", "p"]], "PyLong_CheckExact": [[39, 3, 1, "c.PyLong_CheckExact", "p"]], "PyLong_FromDouble": [[39, 3, 1, "c.PyLong_FromDouble", "v"]], "PyLong_FromLong": [[39, 3, 1, "c.PyLong_FromLong", "v"]], "PyLong_FromLongLong": [[39, 3, 1, "c.PyLong_FromLongLong", "v"]], "PyLong_FromSize_t": [[39, 3, 1, "c.PyLong_FromSize_t", "v"]], "PyLong_FromSsize_t": [[39, 3, 1, "c.PyLong_FromSsize_t", "v"]], "PyLong_FromString": [[39, 3, 1, "c.PyLong_FromString", "base"], [39, 3, 1, "c.PyLong_FromString", "pend"], [39, 3, 1, "c.PyLong_FromString", "str"]], "PyLong_FromUnicodeObject": [[39, 3, 1, "c.PyLong_FromUnicodeObject", "base"], [39, 3, 1, "c.PyLong_FromUnicodeObject", "u"]], "PyLong_FromUnsignedLong": [[39, 3, 1, "c.PyLong_FromUnsignedLong", "v"]], "PyLong_FromUnsignedLongLong": [[39, 3, 1, "c.PyLong_FromUnsignedLongLong", "v"]], "PyLong_FromVoidPtr": [[39, 3, 1, "c.PyLong_FromVoidPtr", "p"]], "PyMappingMethods": [[63, 0, 1, "c.PyMappingMethods.mp_ass_subscript", "mp_ass_subscript"], [63, 0, 1, "c.PyMappingMethods.mp_length", "mp_length"], [63, 0, 1, "c.PyMappingMethods.mp_subscript", "mp_subscript"]], "PyMapping_Check": [[40, 3, 1, "c.PyMapping_Check", "o"]], "PyMapping_DelItem": [[40, 3, 1, "c.PyMapping_DelItem", "key"], [40, 3, 1, "c.PyMapping_DelItem", "o"]], "PyMapping_DelItemString": [[40, 3, 1, "c.PyMapping_DelItemString", "key"], [40, 3, 1, "c.PyMapping_DelItemString", "o"]], "PyMapping_GetItemString": [[40, 3, 1, "c.PyMapping_GetItemString", "key"], [40, 3, 1, "c.PyMapping_GetItemString", "o"]], "PyMapping_HasKey": [[40, 3, 1, "c.PyMapping_HasKey", "key"], [40, 3, 1, "c.PyMapping_HasKey", "o"]], "PyMapping_HasKeyString": [[40, 3, 1, "c.PyMapping_HasKeyString", "key"], [40, 3, 1, "c.PyMapping_HasKeyString", "o"]], "PyMapping_Items": [[40, 3, 1, "c.PyMapping_Items", "o"]], "PyMapping_Keys": [[40, 3, 1, "c.PyMapping_Keys", "o"]], "PyMapping_Length": [[40, 3, 1, "c.PyMapping_Length", "o"]], "PyMapping_SetItemString": [[40, 3, 1, "c.PyMapping_SetItemString", "key"], [40, 3, 1, "c.PyMapping_SetItemString", "o"], [40, 3, 1, "c.PyMapping_SetItemString", "v"]], "PyMapping_Size": [[40, 3, 1, "c.PyMapping_Size", "o"]], "PyMapping_Values": [[40, 3, 1, "c.PyMapping_Values", "o"]], "PyMarshal_ReadLastObjectFromFile": [[41, 3, 1, "c.PyMarshal_ReadLastObjectFromFile", "file"]], "PyMarshal_ReadLongFromFile": [[41, 3, 1, "c.PyMarshal_ReadLongFromFile", "file"]], "PyMarshal_ReadObjectFromFile": [[41, 3, 1, "c.PyMarshal_ReadObjectFromFile", "file"]], "PyMarshal_ReadObjectFromString": [[41, 3, 1, "c.PyMarshal_ReadObjectFromString", "data"], [41, 3, 1, "c.PyMarshal_ReadObjectFromString", "len"]], "PyMarshal_ReadShortFromFile": [[41, 3, 1, "c.PyMarshal_ReadShortFromFile", "file"]], "PyMarshal_WriteLongToFile": [[41, 3, 1, "c.PyMarshal_WriteLongToFile", "file"], [41, 3, 1, "c.PyMarshal_WriteLongToFile", "value"], [41, 3, 1, "c.PyMarshal_WriteLongToFile", "version"]], "PyMarshal_WriteObjectToFile": [[41, 3, 1, "c.PyMarshal_WriteObjectToFile", "file"], [41, 3, 1, "c.PyMarshal_WriteObjectToFile", "value"], [41, 3, 1, "c.PyMarshal_WriteObjectToFile", "version"]], "PyMarshal_WriteObjectToString": [[41, 3, 1, "c.PyMarshal_WriteObjectToString", "value"], [41, 3, 1, "c.PyMarshal_WriteObjectToString", "version"]], "PyMem_Calloc": [[42, 3, 1, "c.PyMem_Calloc", "elsize"], [42, 3, 1, "c.PyMem_Calloc", "nelem"]], "PyMem_Del": [[42, 3, 1, "c.PyMem_Del", "p"]], "PyMem_Free": [[42, 3, 1, "c.PyMem_Free", "p"]], "PyMem_GetAllocator": [[42, 3, 1, "c.PyMem_GetAllocator", "allocator"], [42, 3, 1, "c.PyMem_GetAllocator", "domain"]], "PyMem_Malloc": [[42, 3, 1, "c.PyMem_Malloc", "n"]], "PyMem_RawCalloc": [[42, 3, 1, "c.PyMem_RawCalloc", "elsize"], [42, 3, 1, "c.PyMem_RawCalloc", "nelem"]], "PyMem_RawFree": [[42, 3, 1, "c.PyMem_RawFree", "p"]], "PyMem_RawMalloc": [[42, 3, 1, "c.PyMem_RawMalloc", "n"]], "PyMem_RawRealloc": [[42, 3, 1, "c.PyMem_RawRealloc", "n"], [42, 3, 1, "c.PyMem_RawRealloc", "p"]], "PyMem_Realloc": [[42, 3, 1, "c.PyMem_Realloc", "n"], [42, 3, 1, "c.PyMem_Realloc", "p"]], "PyMem_SetAllocator": [[42, 3, 1, "c.PyMem_SetAllocator", "allocator"], [42, 3, 1, "c.PyMem_SetAllocator", "domain"]], "PyMemberDef": [[58, 0, 1, "c.PyMemberDef.doc", "doc"], [58, 0, 1, "c.PyMemberDef.flags", "flags"], [58, 0, 1, "c.PyMemberDef.name", "name"], [58, 0, 1, "c.PyMemberDef.offset", "offset"], [58, 0, 1, "c.PyMemberDef.type", "type"]], "PyMember_GetOne": [[58, 3, 1, "c.PyMember_GetOne", "m"], [58, 3, 1, "c.PyMember_GetOne", "obj_addr"]], "PyMember_SetOne": [[58, 3, 1, "c.PyMember_SetOne", "m"], [58, 3, 1, "c.PyMember_SetOne", "o"], [58, 3, 1, "c.PyMember_SetOne", "obj_addr"]], "PyMemoryView_Check": [[43, 3, 1, "c.PyMemoryView_Check", "obj"]], "PyMemoryView_FromBuffer": [[43, 3, 1, "c.PyMemoryView_FromBuffer", "view"]], "PyMemoryView_FromMemory": [[43, 3, 1, "c.PyMemoryView_FromMemory", "flags"], [43, 3, 1, "c.PyMemoryView_FromMemory", "mem"], [43, 3, 1, "c.PyMemoryView_FromMemory", "size"]], "PyMemoryView_FromObject": [[43, 3, 1, "c.PyMemoryView_FromObject", "obj"]], "PyMemoryView_GET_BASE": [[43, 3, 1, "c.PyMemoryView_GET_BASE", "mview"]], "PyMemoryView_GET_BUFFER": [[43, 3, 1, "c.PyMemoryView_GET_BUFFER", "mview"]], "PyMemoryView_GetContiguous": [[43, 3, 1, "c.PyMemoryView_GetContiguous", "buffertype"], [43, 3, 1, "c.PyMemoryView_GetContiguous", "obj"], [43, 3, 1, "c.PyMemoryView_GetContiguous", "order"]], "PyMethodDef": [[58, 0, 1, "c.PyMethodDef.ml_doc", "ml_doc"], [58, 0, 1, "c.PyMethodDef.ml_flags", "ml_flags"], [58, 0, 1, "c.PyMethodDef.ml_meth", "ml_meth"], [58, 0, 1, "c.PyMethodDef.ml_name", "ml_name"]], "PyMethod_Check": [[44, 3, 1, "c.PyMethod_Check", "o"]], "PyMethod_Function": [[44, 3, 1, "c.PyMethod_Function", "meth"]], "PyMethod_GET_FUNCTION": [[44, 3, 1, "c.PyMethod_GET_FUNCTION", "meth"]], "PyMethod_GET_SELF": [[44, 3, 1, "c.PyMethod_GET_SELF", "meth"]], "PyMethod_New": [[44, 3, 1, "c.PyMethod_New", "func"], [44, 3, 1, "c.PyMethod_New", "self"]], "PyMethod_Self": [[44, 3, 1, "c.PyMethod_Self", "meth"]], "PyModuleDef": [[45, 0, 1, "c.PyModuleDef.m_base", "m_base"], [45, 0, 1, "c.PyModuleDef.m_clear", "m_clear"], [45, 0, 1, "c.PyModuleDef.m_doc", "m_doc"], [45, 0, 1, "c.PyModuleDef.m_free", "m_free"], [45, 0, 1, "c.PyModuleDef.m_methods", "m_methods"], [45, 0, 1, "c.PyModuleDef.m_name", "m_name"], [45, 0, 1, "c.PyModuleDef.m_size", "m_size"], [45, 0, 1, "c.PyModuleDef.m_slots", "m_slots"], [45, 0, 1, "c.PyModuleDef.m_traverse", "m_traverse"]], "PyModuleDef.m_slots": [[45, 0, 1, "c.PyModuleDef.m_slots.m_reload", "m_reload"]], "PyModuleDef_Init": [[45, 3, 1, "c.PyModuleDef_Init", "def"]], "PyModuleDef_Slot": [[45, 0, 1, "c.PyModuleDef_Slot.slot", "slot"], [45, 0, 1, "c.PyModuleDef_Slot.value", "value"]], "PyModule_AddFunctions": [[45, 3, 1, "c.PyModule_AddFunctions", "functions"], [45, 3, 1, "c.PyModule_AddFunctions", "module"]], "PyModule_AddIntConstant": [[45, 3, 1, "c.PyModule_AddIntConstant", "module"], [45, 3, 1, "c.PyModule_AddIntConstant", "name"], [45, 3, 1, "c.PyModule_AddIntConstant", "value"]], "PyModule_AddObject": [[45, 3, 1, "c.PyModule_AddObject", "module"], [45, 3, 1, "c.PyModule_AddObject", "name"], [45, 3, 1, "c.PyModule_AddObject", "value"]], "PyModule_AddObjectRef": [[45, 3, 1, "c.PyModule_AddObjectRef", "module"], [45, 3, 1, "c.PyModule_AddObjectRef", "name"], [45, 3, 1, "c.PyModule_AddObjectRef", "value"]], "PyModule_AddStringConstant": [[45, 3, 1, "c.PyModule_AddStringConstant", "module"], [45, 3, 1, "c.PyModule_AddStringConstant", "name"], [45, 3, 1, "c.PyModule_AddStringConstant", "value"]], "PyModule_AddType": [[45, 3, 1, "c.PyModule_AddType", "module"], [45, 3, 1, "c.PyModule_AddType", "type"]], "PyModule_Check": [[45, 3, 1, "c.PyModule_Check", "p"]], "PyModule_CheckExact": [[45, 3, 1, "c.PyModule_CheckExact", "p"]], "PyModule_Create": [[45, 3, 1, "c.PyModule_Create", "def"]], "PyModule_Create2": [[45, 3, 1, "c.PyModule_Create2", "def"], [45, 3, 1, "c.PyModule_Create2", "module_api_version"]], "PyModule_ExecDef": [[45, 3, 1, "c.PyModule_ExecDef", "def"], [45, 3, 1, "c.PyModule_ExecDef", "module"]], "PyModule_FromDefAndSpec": [[45, 3, 1, "c.PyModule_FromDefAndSpec", "def"], [45, 3, 1, "c.PyModule_FromDefAndSpec", "spec"]], "PyModule_FromDefAndSpec2": [[45, 3, 1, "c.PyModule_FromDefAndSpec2", "def"], [45, 3, 1, "c.PyModule_FromDefAndSpec2", "module_api_version"], [45, 3, 1, "c.PyModule_FromDefAndSpec2", "spec"]], "PyModule_GetDef": [[45, 3, 1, "c.PyModule_GetDef", "module"]], "PyModule_GetDict": [[45, 3, 1, "c.PyModule_GetDict", "module"]], "PyModule_GetFilename": [[45, 3, 1, "c.PyModule_GetFilename", "module"]], "PyModule_GetFilenameObject": [[45, 3, 1, "c.PyModule_GetFilenameObject", "module"]], "PyModule_GetName": [[45, 3, 1, "c.PyModule_GetName", "module"]], "PyModule_GetNameObject": [[45, 3, 1, "c.PyModule_GetNameObject", "module"]], "PyModule_GetState": [[45, 3, 1, "c.PyModule_GetState", "module"]], "PyModule_New": [[45, 3, 1, "c.PyModule_New", "name"]], "PyModule_NewObject": [[45, 3, 1, "c.PyModule_NewObject", "name"]], "PyModule_SetDocString": [[45, 3, 1, "c.PyModule_SetDocString", "docstring"], [45, 3, 1, "c.PyModule_SetDocString", "module"]], "PyNumberMethods": [[63, 0, 1, "c.PyNumberMethods.nb_absolute", "nb_absolute"], [63, 0, 1, "c.PyNumberMethods.nb_add", "nb_add"], [63, 0, 1, "c.PyNumberMethods.nb_and", "nb_and"], [63, 0, 1, "c.PyNumberMethods.nb_bool", "nb_bool"], [63, 0, 1, "c.PyNumberMethods.nb_divmod", "nb_divmod"], [63, 0, 1, "c.PyNumberMethods.nb_float", "nb_float"], [63, 0, 1, "c.PyNumberMethods.nb_floor_divide", "nb_floor_divide"], [63, 0, 1, "c.PyNumberMethods.nb_index", "nb_index"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_add", "nb_inplace_add"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_and", "nb_inplace_and"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_floor_divide", "nb_inplace_floor_divide"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_lshift", "nb_inplace_lshift"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_matrix_multiply", "nb_inplace_matrix_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_multiply", "nb_inplace_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_or", "nb_inplace_or"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_power", "nb_inplace_power"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_remainder", "nb_inplace_remainder"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_rshift", "nb_inplace_rshift"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_subtract", "nb_inplace_subtract"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_true_divide", "nb_inplace_true_divide"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_xor", "nb_inplace_xor"], [63, 0, 1, "c.PyNumberMethods.nb_int", "nb_int"], [63, 0, 1, "c.PyNumberMethods.nb_invert", "nb_invert"], [63, 0, 1, "c.PyNumberMethods.nb_lshift", "nb_lshift"], [63, 0, 1, "c.PyNumberMethods.nb_matrix_multiply", "nb_matrix_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_multiply", "nb_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_negative", "nb_negative"], [63, 0, 1, "c.PyNumberMethods.nb_or", "nb_or"], [63, 0, 1, "c.PyNumberMethods.nb_positive", "nb_positive"], [63, 0, 1, "c.PyNumberMethods.nb_power", "nb_power"], [63, 0, 1, "c.PyNumberMethods.nb_remainder", "nb_remainder"], [63, 0, 1, "c.PyNumberMethods.nb_reserved", "nb_reserved"], [63, 0, 1, "c.PyNumberMethods.nb_rshift", "nb_rshift"], [63, 0, 1, "c.PyNumberMethods.nb_subtract", "nb_subtract"], [63, 0, 1, "c.PyNumberMethods.nb_true_divide", "nb_true_divide"], [63, 0, 1, "c.PyNumberMethods.nb_xor", "nb_xor"]], "PyNumber_Absolute": [[47, 3, 1, "c.PyNumber_Absolute", "o"]], "PyNumber_Add": [[47, 3, 1, "c.PyNumber_Add", "o1"], [47, 3, 1, "c.PyNumber_Add", "o2"]], "PyNumber_And": [[47, 3, 1, "c.PyNumber_And", "o1"], [47, 3, 1, "c.PyNumber_And", "o2"]], "PyNumber_AsSsize_t": [[47, 3, 1, "c.PyNumber_AsSsize_t", "exc"], [47, 3, 1, "c.PyNumber_AsSsize_t", "o"]], "PyNumber_Check": [[47, 3, 1, "c.PyNumber_Check", "o"]], "PyNumber_Divmod": [[47, 3, 1, "c.PyNumber_Divmod", "o1"], [47, 3, 1, "c.PyNumber_Divmod", "o2"]], "PyNumber_Float": [[47, 3, 1, "c.PyNumber_Float", "o"]], "PyNumber_FloorDivide": [[47, 3, 1, "c.PyNumber_FloorDivide", "o1"], [47, 3, 1, "c.PyNumber_FloorDivide", "o2"]], "PyNumber_InPlaceAdd": [[47, 3, 1, "c.PyNumber_InPlaceAdd", "o1"], [47, 3, 1, "c.PyNumber_InPlaceAdd", "o2"]], "PyNumber_InPlaceAnd": [[47, 3, 1, "c.PyNumber_InPlaceAnd", "o1"], [47, 3, 1, "c.PyNumber_InPlaceAnd", "o2"]], "PyNumber_InPlaceFloorDivide": [[47, 3, 1, "c.PyNumber_InPlaceFloorDivide", "o1"], [47, 3, 1, "c.PyNumber_InPlaceFloorDivide", "o2"]], "PyNumber_InPlaceLshift": [[47, 3, 1, "c.PyNumber_InPlaceLshift", "o1"], [47, 3, 1, "c.PyNumber_InPlaceLshift", "o2"]], "PyNumber_InPlaceMatrixMultiply": [[47, 3, 1, "c.PyNumber_InPlaceMatrixMultiply", "o1"], [47, 3, 1, "c.PyNumber_InPlaceMatrixMultiply", "o2"]], "PyNumber_InPlaceMultiply": [[47, 3, 1, "c.PyNumber_InPlaceMultiply", "o1"], [47, 3, 1, "c.PyNumber_InPlaceMultiply", "o2"]], "PyNumber_InPlaceOr": [[47, 3, 1, "c.PyNumber_InPlaceOr", "o1"], [47, 3, 1, "c.PyNumber_InPlaceOr", "o2"]], "PyNumber_InPlacePower": [[47, 3, 1, "c.PyNumber_InPlacePower", "o1"], [47, 3, 1, "c.PyNumber_InPlacePower", "o2"], [47, 3, 1, "c.PyNumber_InPlacePower", "o3"]], "PyNumber_InPlaceRemainder": [[47, 3, 1, "c.PyNumber_InPlaceRemainder", "o1"], [47, 3, 1, "c.PyNumber_InPlaceRemainder", "o2"]], "PyNumber_InPlaceRshift": [[47, 3, 1, "c.PyNumber_InPlaceRshift", "o1"], [47, 3, 1, "c.PyNumber_InPlaceRshift", "o2"]], "PyNumber_InPlaceSubtract": [[47, 3, 1, "c.PyNumber_InPlaceSubtract", "o1"], [47, 3, 1, "c.PyNumber_InPlaceSubtract", "o2"]], "PyNumber_InPlaceTrueDivide": [[47, 3, 1, "c.PyNumber_InPlaceTrueDivide", "o1"], [47, 3, 1, "c.PyNumber_InPlaceTrueDivide", "o2"]], "PyNumber_InPlaceXor": [[47, 3, 1, "c.PyNumber_InPlaceXor", "o1"], [47, 3, 1, "c.PyNumber_InPlaceXor", "o2"]], "PyNumber_Index": [[47, 3, 1, "c.PyNumber_Index", "o"]], "PyNumber_Invert": [[47, 3, 1, "c.PyNumber_Invert", "o"]], "PyNumber_Long": [[47, 3, 1, "c.PyNumber_Long", "o"]], "PyNumber_Lshift": [[47, 3, 1, "c.PyNumber_Lshift", "o1"], [47, 3, 1, "c.PyNumber_Lshift", "o2"]], "PyNumber_MatrixMultiply": [[47, 3, 1, "c.PyNumber_MatrixMultiply", "o1"], [47, 3, 1, "c.PyNumber_MatrixMultiply", "o2"]], "PyNumber_Multiply": [[47, 3, 1, "c.PyNumber_Multiply", "o1"], [47, 3, 1, "c.PyNumber_Multiply", "o2"]], "PyNumber_Negative": [[47, 3, 1, "c.PyNumber_Negative", "o"]], "PyNumber_Or": [[47, 3, 1, "c.PyNumber_Or", "o1"], [47, 3, 1, "c.PyNumber_Or", "o2"]], "PyNumber_Positive": [[47, 3, 1, "c.PyNumber_Positive", "o"]], "PyNumber_Power": [[47, 3, 1, "c.PyNumber_Power", "o1"], [47, 3, 1, "c.PyNumber_Power", "o2"], [47, 3, 1, "c.PyNumber_Power", "o3"]], "PyNumber_Remainder": [[47, 3, 1, "c.PyNumber_Remainder", "o1"], [47, 3, 1, "c.PyNumber_Remainder", "o2"]], "PyNumber_Rshift": [[47, 3, 1, "c.PyNumber_Rshift", "o1"], [47, 3, 1, "c.PyNumber_Rshift", "o2"]], "PyNumber_Subtract": [[47, 3, 1, "c.PyNumber_Subtract", "o1"], [47, 3, 1, "c.PyNumber_Subtract", "o2"]], "PyNumber_ToBase": [[47, 3, 1, "c.PyNumber_ToBase", "base"], [47, 3, 1, "c.PyNumber_ToBase", "n"]], "PyNumber_TrueDivide": [[47, 3, 1, "c.PyNumber_TrueDivide", "o1"], [47, 3, 1, "c.PyNumber_TrueDivide", "o2"]], "PyNumber_Xor": [[47, 3, 1, "c.PyNumber_Xor", "o1"], [47, 3, 1, "c.PyNumber_Xor", "o2"]], "PyOS_FSPath": [[59, 3, 1, "c.PyOS_FSPath", "path"]], "PyOS_double_to_string": [[18, 3, 1, "c.PyOS_double_to_string", "flags"], [18, 3, 1, "c.PyOS_double_to_string", "format_code"], [18, 3, 1, "c.PyOS_double_to_string", "precision"], [18, 3, 1, "c.PyOS_double_to_string", "ptype"], [18, 3, 1, "c.PyOS_double_to_string", "val"]], "PyOS_getsig": [[59, 3, 1, "c.PyOS_getsig", "i"]], "PyOS_setsig": [[59, 3, 1, "c.PyOS_setsig", "h"], [59, 3, 1, "c.PyOS_setsig", "i"]], "PyOS_snprintf": [[18, 3, 1, "c.PyOS_snprintf", "format"], [18, 3, 1, "c.PyOS_snprintf", "size"], [18, 3, 1, "c.PyOS_snprintf", "str"]], "PyOS_stricmp": [[18, 3, 1, "c.PyOS_stricmp", "s1"], [18, 3, 1, "c.PyOS_stricmp", "s2"]], "PyOS_string_to_double": [[18, 3, 1, "c.PyOS_string_to_double", "endptr"], [18, 3, 1, "c.PyOS_string_to_double", "overflow_exception"], [18, 3, 1, "c.PyOS_string_to_double", "s"]], "PyOS_strnicmp": [[18, 3, 1, "c.PyOS_strnicmp", "s1"], [18, 3, 1, "c.PyOS_strnicmp", "s2"], [18, 3, 1, "c.PyOS_strnicmp", "size"]], "PyOS_strtol": [[18, 3, 1, "c.PyOS_strtol", "base"], [18, 3, 1, "c.PyOS_strtol", "ptr"], [18, 3, 1, "c.PyOS_strtol", "str"]], "PyOS_strtoul": [[18, 3, 1, "c.PyOS_strtoul", "base"], [18, 3, 1, "c.PyOS_strtoul", "ptr"], [18, 3, 1, "c.PyOS_strtoul", "str"]], "PyOS_vsnprintf": [[18, 3, 1, "c.PyOS_vsnprintf", "format"], [18, 3, 1, "c.PyOS_vsnprintf", "size"], [18, 3, 1, "c.PyOS_vsnprintf", "str"], [18, 3, 1, "c.PyOS_vsnprintf", "va"]], "PyObject": [[63, 0, 1, "c.PyObject._ob_next", "_ob_next"], [63, 0, 1, "c.PyObject._ob_prev", "_ob_prev"], [63, 0, 1, "c.PyObject.ob_refcnt", "ob_refcnt"], [63, 0, 1, "c.PyObject.ob_type", "ob_type"]], "PyObject_ASCII": [[49, 3, 1, "c.PyObject_ASCII", "o"]], "PyObject_AsCharBuffer": [[48, 3, 1, "c.PyObject_AsCharBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsCharBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsCharBuffer", "obj"]], "PyObject_AsFileDescriptor": [[24, 3, 1, "c.PyObject_AsFileDescriptor", "p"]], "PyObject_AsReadBuffer": [[48, 3, 1, "c.PyObject_AsReadBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsReadBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsReadBuffer", "obj"]], "PyObject_AsWriteBuffer": [[48, 3, 1, "c.PyObject_AsWriteBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsWriteBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsWriteBuffer", "obj"]], "PyObject_Bytes": [[49, 3, 1, "c.PyObject_Bytes", "o"]], "PyObject_Call": [[10, 3, 1, "c.PyObject_Call", "args"], [10, 3, 1, "c.PyObject_Call", "callable"], [10, 3, 1, "c.PyObject_Call", "kwargs"]], "PyObject_CallFunction": [[10, 3, 1, "c.PyObject_CallFunction", "callable"], [10, 3, 1, "c.PyObject_CallFunction", "format"]], "PyObject_CallFunctionObjArgs": [[10, 3, 1, "c.PyObject_CallFunctionObjArgs", "callable"]], "PyObject_CallMethod": [[10, 3, 1, "c.PyObject_CallMethod", "format"], [10, 3, 1, "c.PyObject_CallMethod", "name"], [10, 3, 1, "c.PyObject_CallMethod", "obj"]], "PyObject_CallMethodNoArgs": [[10, 3, 1, "c.PyObject_CallMethodNoArgs", "name"], [10, 3, 1, "c.PyObject_CallMethodNoArgs", "obj"]], "PyObject_CallMethodObjArgs": [[10, 3, 1, "c.PyObject_CallMethodObjArgs", "name"], [10, 3, 1, "c.PyObject_CallMethodObjArgs", "obj"]], "PyObject_CallMethodOneArg": [[10, 3, 1, "c.PyObject_CallMethodOneArg", "arg"], [10, 3, 1, "c.PyObject_CallMethodOneArg", "name"], [10, 3, 1, "c.PyObject_CallMethodOneArg", "obj"]], "PyObject_CallNoArgs": [[10, 3, 1, "c.PyObject_CallNoArgs", "callable"]], "PyObject_CallObject": [[10, 3, 1, "c.PyObject_CallObject", "args"], [10, 3, 1, "c.PyObject_CallObject", "callable"]], "PyObject_CallOneArg": [[10, 3, 1, "c.PyObject_CallOneArg", "arg"], [10, 3, 1, "c.PyObject_CallOneArg", "callable"]], "PyObject_Calloc": [[42, 3, 1, "c.PyObject_Calloc", "elsize"], [42, 3, 1, "c.PyObject_Calloc", "nelem"]], "PyObject_CheckBuffer": [[7, 3, 1, "c.PyObject_CheckBuffer", "obj"]], "PyObject_CheckReadBuffer": [[48, 3, 1, "c.PyObject_CheckReadBuffer", "o"]], "PyObject_ClearWeakRefs": [[67, 3, 1, "c.PyObject_ClearWeakRefs", "object"]], "PyObject_CopyData": [[7, 3, 1, "c.PyObject_CopyData", "dest"], [7, 3, 1, "c.PyObject_CopyData", "src"]], "PyObject_Del": [[3, 3, 1, "c.PyObject_Del", "op"]], "PyObject_DelAttr": [[49, 3, 1, "c.PyObject_DelAttr", "attr_name"], [49, 3, 1, "c.PyObject_DelAttr", "o"]], "PyObject_DelAttrString": [[49, 3, 1, "c.PyObject_DelAttrString", "attr_name"], [49, 3, 1, "c.PyObject_DelAttrString", "o"]], "PyObject_DelItem": [[49, 3, 1, "c.PyObject_DelItem", "key"], [49, 3, 1, "c.PyObject_DelItem", "o"]], "PyObject_Dir": [[49, 3, 1, "c.PyObject_Dir", "o"]], "PyObject_Format": [[49, 3, 1, "c.PyObject_Format", "format_spec"], [49, 3, 1, "c.PyObject_Format", "obj"]], "PyObject_Free": [[42, 3, 1, "c.PyObject_Free", "p"]], "PyObject_GC_Del": [[28, 3, 1, "c.PyObject_GC_Del", "op"]], "PyObject_GC_IsFinalized": [[28, 3, 1, "c.PyObject_GC_IsFinalized", "op"]], "PyObject_GC_IsTracked": [[28, 3, 1, "c.PyObject_GC_IsTracked", "op"]], "PyObject_GC_Track": [[28, 3, 1, "c.PyObject_GC_Track", "op"]], "PyObject_GC_UnTrack": [[28, 3, 1, "c.PyObject_GC_UnTrack", "op"]], "PyObject_GenericGetAttr": [[49, 3, 1, "c.PyObject_GenericGetAttr", "name"], [49, 3, 1, "c.PyObject_GenericGetAttr", "o"]], "PyObject_GenericGetDict": [[49, 3, 1, "c.PyObject_GenericGetDict", "context"], [49, 3, 1, "c.PyObject_GenericGetDict", "o"]], "PyObject_GenericSetAttr": [[49, 3, 1, "c.PyObject_GenericSetAttr", "name"], [49, 3, 1, "c.PyObject_GenericSetAttr", "o"], [49, 3, 1, "c.PyObject_GenericSetAttr", "value"]], "PyObject_GenericSetDict": [[49, 3, 1, "c.PyObject_GenericSetDict", "context"], [49, 3, 1, "c.PyObject_GenericSetDict", "o"], [49, 3, 1, "c.PyObject_GenericSetDict", "value"]], "PyObject_GetAIter": [[49, 3, 1, "c.PyObject_GetAIter", "o"]], "PyObject_GetArenaAllocator": [[42, 3, 1, "c.PyObject_GetArenaAllocator", "allocator"]], "PyObject_GetAttr": [[49, 3, 1, "c.PyObject_GetAttr", "attr_name"], [49, 3, 1, "c.PyObject_GetAttr", "o"]], "PyObject_GetAttrString": [[49, 3, 1, "c.PyObject_GetAttrString", "attr_name"], [49, 3, 1, "c.PyObject_GetAttrString", "o"]], "PyObject_GetBuffer": [[7, 3, 1, "c.PyObject_GetBuffer", "exporter"], [7, 3, 1, "c.PyObject_GetBuffer", "flags"], [7, 3, 1, "c.PyObject_GetBuffer", "view"]], "PyObject_GetItem": [[49, 3, 1, "c.PyObject_GetItem", "key"], [49, 3, 1, "c.PyObject_GetItem", "o"]], "PyObject_GetItemData": [[49, 3, 1, "c.PyObject_GetItemData", "o"]], "PyObject_GetIter": [[49, 3, 1, "c.PyObject_GetIter", "o"]], "PyObject_GetTypeData": [[49, 3, 1, "c.PyObject_GetTypeData", "cls"], [49, 3, 1, "c.PyObject_GetTypeData", "o"]], "PyObject_HasAttr": [[49, 3, 1, "c.PyObject_HasAttr", "attr_name"], [49, 3, 1, "c.PyObject_HasAttr", "o"]], "PyObject_HasAttrString": [[49, 3, 1, "c.PyObject_HasAttrString", "attr_name"], [49, 3, 1, "c.PyObject_HasAttrString", "o"]], "PyObject_Hash": [[49, 3, 1, "c.PyObject_Hash", "o"]], "PyObject_HashNotImplemented": [[49, 3, 1, "c.PyObject_HashNotImplemented", "o"]], "PyObject_IS_GC": [[28, 3, 1, "c.PyObject_IS_GC", "obj"]], "PyObject_Init": [[3, 3, 1, "c.PyObject_Init", "op"], [3, 3, 1, "c.PyObject_Init", "type"]], "PyObject_InitVar": [[3, 3, 1, "c.PyObject_InitVar", "op"], [3, 3, 1, "c.PyObject_InitVar", "size"], [3, 3, 1, "c.PyObject_InitVar", "type"]], "PyObject_IsInstance": [[49, 3, 1, "c.PyObject_IsInstance", "cls"], [49, 3, 1, "c.PyObject_IsInstance", "inst"]], "PyObject_IsSubclass": [[49, 3, 1, "c.PyObject_IsSubclass", "cls"], [49, 3, 1, "c.PyObject_IsSubclass", "derived"]], "PyObject_IsTrue": [[49, 3, 1, "c.PyObject_IsTrue", "o"]], "PyObject_Length": [[49, 3, 1, "c.PyObject_Length", "o"]], "PyObject_LengthHint": [[49, 3, 1, "c.PyObject_LengthHint", "defaultvalue"], [49, 3, 1, "c.PyObject_LengthHint", "o"]], "PyObject_Malloc": [[42, 3, 1, "c.PyObject_Malloc", "n"]], "PyObject_Not": [[49, 3, 1, "c.PyObject_Not", "o"]], "PyObject_Print": [[49, 3, 1, "c.PyObject_Print", "flags"], [49, 3, 1, "c.PyObject_Print", "fp"], [49, 3, 1, "c.PyObject_Print", "o"]], "PyObject_Realloc": [[42, 3, 1, "c.PyObject_Realloc", "n"], [42, 3, 1, "c.PyObject_Realloc", "p"]], "PyObject_Repr": [[49, 3, 1, "c.PyObject_Repr", "o"]], "PyObject_RichCompare": [[49, 3, 1, "c.PyObject_RichCompare", "o1"], [49, 3, 1, "c.PyObject_RichCompare", "o2"], [49, 3, 1, "c.PyObject_RichCompare", "opid"]], "PyObject_RichCompareBool": [[49, 3, 1, "c.PyObject_RichCompareBool", "o1"], [49, 3, 1, "c.PyObject_RichCompareBool", "o2"], [49, 3, 1, "c.PyObject_RichCompareBool", "opid"]], "PyObject_SetArenaAllocator": [[42, 3, 1, "c.PyObject_SetArenaAllocator", "allocator"]], "PyObject_SetAttr": [[49, 3, 1, "c.PyObject_SetAttr", "attr_name"], [49, 3, 1, "c.PyObject_SetAttr", "o"], [49, 3, 1, "c.PyObject_SetAttr", "v"]], "PyObject_SetAttrString": [[49, 3, 1, "c.PyObject_SetAttrString", "attr_name"], [49, 3, 1, "c.PyObject_SetAttrString", "o"], [49, 3, 1, "c.PyObject_SetAttrString", "v"]], "PyObject_SetItem": [[49, 3, 1, "c.PyObject_SetItem", "key"], [49, 3, 1, "c.PyObject_SetItem", "o"], [49, 3, 1, "c.PyObject_SetItem", "v"]], "PyObject_Size": [[49, 3, 1, "c.PyObject_Size", "o"]], "PyObject_Str": [[49, 3, 1, "c.PyObject_Str", "o"]], "PyObject_Type": [[49, 3, 1, "c.PyObject_Type", "o"]], "PyObject_TypeCheck": [[49, 3, 1, "c.PyObject_TypeCheck", "o"], [49, 3, 1, "c.PyObject_TypeCheck", "type"]], "PyObject_Vectorcall": [[10, 3, 1, "c.PyObject_Vectorcall", "args"], [10, 3, 1, "c.PyObject_Vectorcall", "callable"], [10, 3, 1, "c.PyObject_Vectorcall", "kwnames"], [10, 3, 1, "c.PyObject_Vectorcall", "nargsf"]], "PyObject_VectorcallDict": [[10, 3, 1, "c.PyObject_VectorcallDict", "args"], [10, 3, 1, "c.PyObject_VectorcallDict", "callable"], [10, 3, 1, "c.PyObject_VectorcallDict", "kwdict"], [10, 3, 1, "c.PyObject_VectorcallDict", "nargsf"]], "PyObject_VectorcallMethod": [[10, 3, 1, "c.PyObject_VectorcallMethod", "args"], [10, 3, 1, "c.PyObject_VectorcallMethod", "kwnames"], [10, 3, 1, "c.PyObject_VectorcallMethod", "name"], [10, 3, 1, "c.PyObject_VectorcallMethod", "nargsf"]], "PyPreConfig": [[34, 0, 1, "c.PyPreConfig.allocator", "allocator"], [34, 0, 1, "c.PyPreConfig.coerce_c_locale", "coerce_c_locale"], [34, 0, 1, "c.PyPreConfig.coerce_c_locale_warn", "coerce_c_locale_warn"], [34, 0, 1, "c.PyPreConfig.configure_locale", "configure_locale"], [34, 0, 1, "c.PyPreConfig.dev_mode", "dev_mode"], [34, 0, 1, "c.PyPreConfig.isolated", "isolated"], [34, 0, 1, "c.PyPreConfig.legacy_windows_fs_encoding", "legacy_windows_fs_encoding"], [34, 0, 1, "c.PyPreConfig.parse_argv", "parse_argv"], [34, 0, 1, "c.PyPreConfig.use_environment", "use_environment"], [34, 0, 1, "c.PyPreConfig.utf8_mode", "utf8_mode"]], "PyPreConfig_InitIsolatedConfig": [[34, 3, 1, "c.PyPreConfig_InitIsolatedConfig", "preconfig"]], "PyPreConfig_InitPythonConfig": [[34, 3, 1, "c.PyPreConfig_InitPythonConfig", "preconfig"]], "PyRun_AnyFile": [[66, 3, 1, "c.PyRun_AnyFile", "filename"], [66, 3, 1, "c.PyRun_AnyFile", "fp"]], "PyRun_AnyFileEx": [[66, 3, 1, "c.PyRun_AnyFileEx", "closeit"], [66, 3, 1, "c.PyRun_AnyFileEx", "filename"], [66, 3, 1, "c.PyRun_AnyFileEx", "fp"]], "PyRun_AnyFileExFlags": [[66, 3, 1, "c.PyRun_AnyFileExFlags", "closeit"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "filename"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "flags"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "fp"]], "PyRun_AnyFileFlags": [[66, 3, 1, "c.PyRun_AnyFileFlags", "filename"], [66, 3, 1, "c.PyRun_AnyFileFlags", "flags"], [66, 3, 1, "c.PyRun_AnyFileFlags", "fp"]], "PyRun_File": [[66, 3, 1, "c.PyRun_File", "filename"], [66, 3, 1, "c.PyRun_File", "fp"], [66, 3, 1, "c.PyRun_File", "globals"], [66, 3, 1, "c.PyRun_File", "locals"], [66, 3, 1, "c.PyRun_File", "start"]], "PyRun_FileEx": [[66, 3, 1, "c.PyRun_FileEx", "closeit"], [66, 3, 1, "c.PyRun_FileEx", "filename"], [66, 3, 1, "c.PyRun_FileEx", "fp"], [66, 3, 1, "c.PyRun_FileEx", "globals"], [66, 3, 1, "c.PyRun_FileEx", "locals"], [66, 3, 1, "c.PyRun_FileEx", "start"]], "PyRun_FileExFlags": [[66, 3, 1, "c.PyRun_FileExFlags", "closeit"], [66, 3, 1, "c.PyRun_FileExFlags", "filename"], [66, 3, 1, "c.PyRun_FileExFlags", "flags"], [66, 3, 1, "c.PyRun_FileExFlags", "fp"], [66, 3, 1, "c.PyRun_FileExFlags", "globals"], [66, 3, 1, "c.PyRun_FileExFlags", "locals"], [66, 3, 1, "c.PyRun_FileExFlags", "start"]], "PyRun_FileFlags": [[66, 3, 1, "c.PyRun_FileFlags", "filename"], [66, 3, 1, "c.PyRun_FileFlags", "flags"], [66, 3, 1, "c.PyRun_FileFlags", "fp"], [66, 3, 1, "c.PyRun_FileFlags", "globals"], [66, 3, 1, "c.PyRun_FileFlags", "locals"], [66, 3, 1, "c.PyRun_FileFlags", "start"]], "PyRun_InteractiveLoop": [[66, 3, 1, "c.PyRun_InteractiveLoop", "filename"], [66, 3, 1, "c.PyRun_InteractiveLoop", "fp"]], "PyRun_InteractiveLoopFlags": [[66, 3, 1, "c.PyRun_InteractiveLoopFlags", "filename"], [66, 3, 1, "c.PyRun_InteractiveLoopFlags", "flags"], [66, 3, 1, "c.PyRun_InteractiveLoopFlags", "fp"]], "PyRun_InteractiveOne": [[66, 3, 1, "c.PyRun_InteractiveOne", "filename"], [66, 3, 1, "c.PyRun_InteractiveOne", "fp"]], "PyRun_InteractiveOneFlags": [[66, 3, 1, "c.PyRun_InteractiveOneFlags", "filename"], [66, 3, 1, "c.PyRun_InteractiveOneFlags", "flags"], [66, 3, 1, "c.PyRun_InteractiveOneFlags", "fp"]], "PyRun_SimpleFile": [[66, 3, 1, "c.PyRun_SimpleFile", "filename"], [66, 3, 1, "c.PyRun_SimpleFile", "fp"]], "PyRun_SimpleFileEx": [[66, 3, 1, "c.PyRun_SimpleFileEx", "closeit"], [66, 3, 1, "c.PyRun_SimpleFileEx", "filename"], [66, 3, 1, "c.PyRun_SimpleFileEx", "fp"]], "PyRun_SimpleFileExFlags": [[66, 3, 1, "c.PyRun_SimpleFileExFlags", "closeit"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "filename"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "flags"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "fp"]], "PyRun_SimpleString": [[66, 3, 1, "c.PyRun_SimpleString", "command"]], "PyRun_SimpleStringFlags": [[66, 3, 1, "c.PyRun_SimpleStringFlags", "command"], [66, 3, 1, "c.PyRun_SimpleStringFlags", "flags"]], "PyRun_String": [[66, 3, 1, "c.PyRun_String", "globals"], [66, 3, 1, "c.PyRun_String", "locals"], [66, 3, 1, "c.PyRun_String", "start"], [66, 3, 1, "c.PyRun_String", "str"]], "PyRun_StringFlags": [[66, 3, 1, "c.PyRun_StringFlags", "flags"], [66, 3, 1, "c.PyRun_StringFlags", "globals"], [66, 3, 1, "c.PyRun_StringFlags", "locals"], [66, 3, 1, "c.PyRun_StringFlags", "start"], [66, 3, 1, "c.PyRun_StringFlags", "str"]], "PySeqIter_Check": [[37, 3, 1, "c.PySeqIter_Check", "op"]], "PySeqIter_New": [[37, 3, 1, "c.PySeqIter_New", "seq"]], "PySequenceMethods": [[63, 0, 1, "c.PySequenceMethods.sq_ass_item", "sq_ass_item"], [63, 0, 1, "c.PySequenceMethods.sq_concat", "sq_concat"], [63, 0, 1, "c.PySequenceMethods.sq_contains", "sq_contains"], [63, 0, 1, "c.PySequenceMethods.sq_inplace_concat", "sq_inplace_concat"], [63, 0, 1, "c.PySequenceMethods.sq_inplace_repeat", "sq_inplace_repeat"], [63, 0, 1, "c.PySequenceMethods.sq_item", "sq_item"], [63, 0, 1, "c.PySequenceMethods.sq_length", "sq_length"], [63, 0, 1, "c.PySequenceMethods.sq_repeat", "sq_repeat"]], "PySequence_Check": [[54, 3, 1, "c.PySequence_Check", "o"]], "PySequence_Concat": [[54, 3, 1, "c.PySequence_Concat", "o1"], [54, 3, 1, "c.PySequence_Concat", "o2"]], "PySequence_Contains": [[54, 3, 1, "c.PySequence_Contains", "o"], [54, 3, 1, "c.PySequence_Contains", "value"]], "PySequence_Count": [[54, 3, 1, "c.PySequence_Count", "o"], [54, 3, 1, "c.PySequence_Count", "value"]], "PySequence_DelItem": [[54, 3, 1, "c.PySequence_DelItem", "i"], [54, 3, 1, "c.PySequence_DelItem", "o"]], "PySequence_DelSlice": [[54, 3, 1, "c.PySequence_DelSlice", "i1"], [54, 3, 1, "c.PySequence_DelSlice", "i2"], [54, 3, 1, "c.PySequence_DelSlice", "o"]], "PySequence_Fast": [[54, 3, 1, "c.PySequence_Fast", "m"], [54, 3, 1, "c.PySequence_Fast", "o"]], "PySequence_Fast_GET_ITEM": [[54, 3, 1, "c.PySequence_Fast_GET_ITEM", "i"], [54, 3, 1, "c.PySequence_Fast_GET_ITEM", "o"]], "PySequence_Fast_GET_SIZE": [[54, 3, 1, "c.PySequence_Fast_GET_SIZE", "o"]], "PySequence_Fast_ITEMS": [[54, 3, 1, "c.PySequence_Fast_ITEMS", "o"]], "PySequence_GetItem": [[54, 3, 1, "c.PySequence_GetItem", "i"], [54, 3, 1, "c.PySequence_GetItem", "o"]], "PySequence_GetSlice": [[54, 3, 1, "c.PySequence_GetSlice", "i1"], [54, 3, 1, "c.PySequence_GetSlice", "i2"], [54, 3, 1, "c.PySequence_GetSlice", "o"]], "PySequence_ITEM": [[54, 3, 1, "c.PySequence_ITEM", "i"], [54, 3, 1, "c.PySequence_ITEM", "o"]], "PySequence_InPlaceConcat": [[54, 3, 1, "c.PySequence_InPlaceConcat", "o1"], [54, 3, 1, "c.PySequence_InPlaceConcat", "o2"]], "PySequence_InPlaceRepeat": [[54, 3, 1, "c.PySequence_InPlaceRepeat", "count"], [54, 3, 1, "c.PySequence_InPlaceRepeat", "o"]], "PySequence_Index": [[54, 3, 1, "c.PySequence_Index", "o"], [54, 3, 1, "c.PySequence_Index", "value"]], "PySequence_Length": [[54, 3, 1, "c.PySequence_Length", "o"]], "PySequence_List": [[54, 3, 1, "c.PySequence_List", "o"]], "PySequence_Repeat": [[54, 3, 1, "c.PySequence_Repeat", "count"], [54, 3, 1, "c.PySequence_Repeat", "o"]], "PySequence_SetItem": [[54, 3, 1, "c.PySequence_SetItem", "i"], [54, 3, 1, "c.PySequence_SetItem", "o"], [54, 3, 1, "c.PySequence_SetItem", "v"]], "PySequence_SetSlice": [[54, 3, 1, "c.PySequence_SetSlice", "i1"], [54, 3, 1, "c.PySequence_SetSlice", "i2"], [54, 3, 1, "c.PySequence_SetSlice", "o"], [54, 3, 1, "c.PySequence_SetSlice", "v"]], "PySequence_Size": [[54, 3, 1, "c.PySequence_Size", "o"]], "PySequence_Tuple": [[54, 3, 1, "c.PySequence_Tuple", "o"]], "PySet_Add": [[55, 3, 1, "c.PySet_Add", "key"], [55, 3, 1, "c.PySet_Add", "set"]], "PySet_Check": [[55, 3, 1, "c.PySet_Check", "p"]], "PySet_CheckExact": [[55, 3, 1, "c.PySet_CheckExact", "p"]], "PySet_Clear": [[55, 3, 1, "c.PySet_Clear", "set"]], "PySet_Contains": [[55, 3, 1, "c.PySet_Contains", "anyset"], [55, 3, 1, "c.PySet_Contains", "key"]], "PySet_Discard": [[55, 3, 1, "c.PySet_Discard", "key"], [55, 3, 1, "c.PySet_Discard", "set"]], "PySet_GET_SIZE": [[55, 3, 1, "c.PySet_GET_SIZE", "anyset"]], "PySet_New": [[55, 3, 1, "c.PySet_New", "iterable"]], "PySet_Pop": [[55, 3, 1, "c.PySet_Pop", "set"]], "PySet_Size": [[55, 3, 1, "c.PySet_Size", "anyset"]], "PySignal_SetWakeupFd": [[23, 3, 1, "c.PySignal_SetWakeupFd", "fd"]], "PySlice_AdjustIndices": [[56, 3, 1, "c.PySlice_AdjustIndices", "length"], [56, 3, 1, "c.PySlice_AdjustIndices", "start"], [56, 3, 1, "c.PySlice_AdjustIndices", "step"], [56, 3, 1, "c.PySlice_AdjustIndices", "stop"]], "PySlice_Check": [[56, 3, 1, "c.PySlice_Check", "ob"]], "PySlice_GetIndices": [[56, 3, 1, "c.PySlice_GetIndices", "length"], [56, 3, 1, "c.PySlice_GetIndices", "slice"], [56, 3, 1, "c.PySlice_GetIndices", "start"], [56, 3, 1, "c.PySlice_GetIndices", "step"], [56, 3, 1, "c.PySlice_GetIndices", "stop"]], "PySlice_GetIndicesEx": [[56, 3, 1, "c.PySlice_GetIndicesEx", "length"], [56, 3, 1, "c.PySlice_GetIndicesEx", "slice"], [56, 3, 1, "c.PySlice_GetIndicesEx", "slicelength"], [56, 3, 1, "c.PySlice_GetIndicesEx", "start"], [56, 3, 1, "c.PySlice_GetIndicesEx", "step"], [56, 3, 1, "c.PySlice_GetIndicesEx", "stop"]], "PySlice_New": [[56, 3, 1, "c.PySlice_New", "start"], [56, 3, 1, "c.PySlice_New", "step"], [56, 3, 1, "c.PySlice_New", "stop"]], "PySlice_Unpack": [[56, 3, 1, "c.PySlice_Unpack", "slice"], [56, 3, 1, "c.PySlice_Unpack", "start"], [56, 3, 1, "c.PySlice_Unpack", "step"], [56, 3, 1, "c.PySlice_Unpack", "stop"]], "PyState_AddModule": [[45, 3, 1, "c.PyState_AddModule", "def"], [45, 3, 1, "c.PyState_AddModule", "module"]], "PyState_FindModule": [[45, 3, 1, "c.PyState_FindModule", "def"]], "PyState_RemoveModule": [[45, 3, 1, "c.PyState_RemoveModule", "def"]], "PyStatus": [[34, 0, 1, "c.PyStatus.err_msg", "err_msg"], [34, 0, 1, "c.PyStatus.exitcode", "exitcode"], [34, 0, 1, "c.PyStatus.func", "func"]], "PyStatus_Error": [[34, 3, 1, "c.PyStatus_Error", "err_msg"]], "PyStatus_Exception": [[34, 3, 1, "c.PyStatus_Exception", "status"]], "PyStatus_Exit": [[34, 3, 1, "c.PyStatus_Exit", "exitcode"]], "PyStatus_IsError": [[34, 3, 1, "c.PyStatus_IsError", "status"]], "PyStatus_IsExit": [[34, 3, 1, "c.PyStatus_IsExit", "status"]], "PyStructSequence_Desc": [[60, 0, 1, "c.PyStructSequence_Desc.doc", "doc"], [60, 0, 1, "c.PyStructSequence_Desc.fields", "fields"], [60, 0, 1, "c.PyStructSequence_Desc.n_in_sequence", "n_in_sequence"], [60, 0, 1, "c.PyStructSequence_Desc.name", "name"]], "PyStructSequence_Field": [[60, 0, 1, "c.PyStructSequence_Field.doc", "doc"], [60, 0, 1, "c.PyStructSequence_Field.name", "name"]], "PyStructSequence_GET_ITEM": [[60, 3, 1, "c.PyStructSequence_GET_ITEM", "p"], [60, 3, 1, "c.PyStructSequence_GET_ITEM", "pos"]], "PyStructSequence_GetItem": [[60, 3, 1, "c.PyStructSequence_GetItem", "p"], [60, 3, 1, "c.PyStructSequence_GetItem", "pos"]], "PyStructSequence_InitType": [[60, 3, 1, "c.PyStructSequence_InitType", "desc"], [60, 3, 1, "c.PyStructSequence_InitType", "type"]], "PyStructSequence_InitType2": [[60, 3, 1, "c.PyStructSequence_InitType2", "desc"], [60, 3, 1, "c.PyStructSequence_InitType2", "type"]], "PyStructSequence_New": [[60, 3, 1, "c.PyStructSequence_New", "type"]], "PyStructSequence_NewType": [[60, 3, 1, "c.PyStructSequence_NewType", "desc"]], "PyStructSequence_SET_ITEM": [[60, 3, 1, "c.PyStructSequence_SET_ITEM", "o"], [60, 3, 1, "c.PyStructSequence_SET_ITEM", "p"], [60, 3, 1, "c.PyStructSequence_SET_ITEM", "pos"]], "PyStructSequence_SetItem": [[60, 3, 1, "c.PyStructSequence_SetItem", "o"], [60, 3, 1, "c.PyStructSequence_SetItem", "p"], [60, 3, 1, "c.PyStructSequence_SetItem", "pos"]], "PySys_AddAuditHook": [[59, 3, 1, "c.PySys_AddAuditHook", "hook"], [59, 3, 1, "c.PySys_AddAuditHook", "userData"]], "PySys_AddWarnOption": [[59, 3, 1, "c.PySys_AddWarnOption", "s"]], "PySys_AddWarnOptionUnicode": [[59, 3, 1, "c.PySys_AddWarnOptionUnicode", "unicode"]], "PySys_AddXOption": [[59, 3, 1, "c.PySys_AddXOption", "s"]], "PySys_Audit": [[59, 3, 1, "c.PySys_Audit", "event"], [59, 3, 1, "c.PySys_Audit", "format"]], "PySys_FormatStderr": [[59, 3, 1, "c.PySys_FormatStderr", "format"]], "PySys_FormatStdout": [[59, 3, 1, "c.PySys_FormatStdout", "format"]], "PySys_GetObject": [[59, 3, 1, "c.PySys_GetObject", "name"]], "PySys_SetArgv": [[33, 3, 1, "c.PySys_SetArgv", "argc"], [33, 3, 1, "c.PySys_SetArgv", "argv"]], "PySys_SetArgvEx": [[33, 3, 1, "c.PySys_SetArgvEx", "argc"], [33, 3, 1, "c.PySys_SetArgvEx", "argv"], [33, 3, 1, "c.PySys_SetArgvEx", "updatepath"]], "PySys_SetObject": [[59, 3, 1, "c.PySys_SetObject", "name"], [59, 3, 1, "c.PySys_SetObject", "v"]], "PySys_SetPath": [[59, 3, 1, "c.PySys_SetPath", "path"]], "PySys_WriteStderr": [[59, 3, 1, "c.PySys_WriteStderr", "format"]], "PySys_WriteStdout": [[59, 3, 1, "c.PySys_WriteStdout", "format"]], "PyTZInfo_Check": [[20, 3, 1, "c.PyTZInfo_Check", "ob"]], "PyTZInfo_CheckExact": [[20, 3, 1, "c.PyTZInfo_CheckExact", "ob"]], "PyThreadState": [[33, 0, 1, "c.PyThreadState.interp", "interp"]], "PyThreadState_Clear": [[33, 3, 1, "c.PyThreadState_Clear", "tstate"]], "PyThreadState_Delete": [[33, 3, 1, "c.PyThreadState_Delete", "tstate"]], "PyThreadState_EnterTracing": [[33, 3, 1, "c.PyThreadState_EnterTracing", "tstate"]], "PyThreadState_GetFrame": [[33, 3, 1, "c.PyThreadState_GetFrame", "tstate"]], "PyThreadState_GetID": [[33, 3, 1, "c.PyThreadState_GetID", "tstate"]], "PyThreadState_GetInterpreter": [[33, 3, 1, "c.PyThreadState_GetInterpreter", "tstate"]], "PyThreadState_LeaveTracing": [[33, 3, 1, "c.PyThreadState_LeaveTracing", "tstate"]], "PyThreadState_New": [[33, 3, 1, "c.PyThreadState_New", "interp"]], "PyThreadState_Next": [[33, 3, 1, "c.PyThreadState_Next", "tstate"]], "PyThreadState_SetAsyncExc": [[33, 3, 1, "c.PyThreadState_SetAsyncExc", "exc"], [33, 3, 1, "c.PyThreadState_SetAsyncExc", "id"]], "PyThreadState_Swap": [[33, 3, 1, "c.PyThreadState_Swap", "tstate"]], "PyThread_delete_key": [[33, 3, 1, "c.PyThread_delete_key", "key"]], "PyThread_delete_key_value": [[33, 3, 1, "c.PyThread_delete_key_value", "key"]], "PyThread_get_key_value": [[33, 3, 1, "c.PyThread_get_key_value", "key"]], "PyThread_set_key_value": [[33, 3, 1, "c.PyThread_set_key_value", "key"], [33, 3, 1, "c.PyThread_set_key_value", "value"]], "PyThread_tss_create": [[33, 3, 1, "c.PyThread_tss_create", "key"]], "PyThread_tss_delete": [[33, 3, 1, "c.PyThread_tss_delete", "key"]], "PyThread_tss_free": [[33, 3, 1, "c.PyThread_tss_free", "key"]], "PyThread_tss_get": [[33, 3, 1, "c.PyThread_tss_get", "key"]], "PyThread_tss_is_created": [[33, 3, 1, "c.PyThread_tss_is_created", "key"]], "PyThread_tss_set": [[33, 3, 1, "c.PyThread_tss_set", "key"], [33, 3, 1, "c.PyThread_tss_set", "value"]], "PyTimeZone_FromOffset": [[20, 3, 1, "c.PyTimeZone_FromOffset", "offset"]], "PyTimeZone_FromOffsetAndName": [[20, 3, 1, "c.PyTimeZone_FromOffsetAndName", "name"], [20, 3, 1, "c.PyTimeZone_FromOffsetAndName", "offset"]], "PyTime_Check": [[20, 3, 1, "c.PyTime_Check", "ob"]], "PyTime_CheckExact": [[20, 3, 1, "c.PyTime_CheckExact", "ob"]], "PyTime_FromTime": [[20, 3, 1, "c.PyTime_FromTime", "hour"], [20, 3, 1, "c.PyTime_FromTime", "minute"], [20, 3, 1, "c.PyTime_FromTime", "second"], [20, 3, 1, "c.PyTime_FromTime", "usecond"]], "PyTime_FromTimeAndFold": [[20, 3, 1, "c.PyTime_FromTimeAndFold", "fold"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "hour"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "minute"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "second"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "usecond"]], "PyTraceMalloc_Track": [[42, 3, 1, "c.PyTraceMalloc_Track", "domain"], [42, 3, 1, "c.PyTraceMalloc_Track", "ptr"], [42, 3, 1, "c.PyTraceMalloc_Track", "size"]], "PyTraceMalloc_Untrack": [[42, 3, 1, "c.PyTraceMalloc_Untrack", "domain"], [42, 3, 1, "c.PyTraceMalloc_Untrack", "ptr"]], "PyTuple_Check": [[60, 3, 1, "c.PyTuple_Check", "p"]], "PyTuple_CheckExact": [[60, 3, 1, "c.PyTuple_CheckExact", "p"]], "PyTuple_GET_ITEM": [[60, 3, 1, "c.PyTuple_GET_ITEM", "p"], [60, 3, 1, "c.PyTuple_GET_ITEM", "pos"]], "PyTuple_GET_SIZE": [[60, 3, 1, "c.PyTuple_GET_SIZE", "p"]], "PyTuple_GetItem": [[60, 3, 1, "c.PyTuple_GetItem", "p"], [60, 3, 1, "c.PyTuple_GetItem", "pos"]], "PyTuple_GetSlice": [[60, 3, 1, "c.PyTuple_GetSlice", "high"], [60, 3, 1, "c.PyTuple_GetSlice", "low"], [60, 3, 1, "c.PyTuple_GetSlice", "p"]], "PyTuple_New": [[60, 3, 1, "c.PyTuple_New", "len"]], "PyTuple_Pack": [[60, 3, 1, "c.PyTuple_Pack", "n"]], "PyTuple_SET_ITEM": [[60, 3, 1, "c.PyTuple_SET_ITEM", "o"], [60, 3, 1, "c.PyTuple_SET_ITEM", "p"], [60, 3, 1, "c.PyTuple_SET_ITEM", "pos"]], "PyTuple_SetItem": [[60, 3, 1, "c.PyTuple_SetItem", "o"], [60, 3, 1, "c.PyTuple_SetItem", "p"], [60, 3, 1, "c.PyTuple_SetItem", "pos"]], "PyTuple_Size": [[60, 3, 1, "c.PyTuple_Size", "p"]], "PyTypeObject": [[63, 0, 1, "c.PyTypeObject.tp_alloc", "tp_alloc"], [63, 0, 1, "c.PyTypeObject.tp_as_async", "tp_as_async"], [63, 0, 1, "c.PyTypeObject.tp_as_buffer", "tp_as_buffer"], [63, 0, 1, "c.PyTypeObject.tp_as_mapping", "tp_as_mapping"], [63, 0, 1, "c.PyTypeObject.tp_as_number", "tp_as_number"], [63, 0, 1, "c.PyTypeObject.tp_as_sequence", "tp_as_sequence"], [63, 0, 1, "c.PyTypeObject.tp_base", "tp_base"], [63, 0, 1, "c.PyTypeObject.tp_bases", "tp_bases"], [63, 0, 1, "c.PyTypeObject.tp_basicsize", "tp_basicsize"], [63, 0, 1, "c.PyTypeObject.tp_cache", "tp_cache"], [63, 0, 1, "c.PyTypeObject.tp_call", "tp_call"], [63, 0, 1, "c.PyTypeObject.tp_clear", "tp_clear"], [63, 0, 1, "c.PyTypeObject.tp_dealloc", "tp_dealloc"], [63, 0, 1, "c.PyTypeObject.tp_del", "tp_del"], [63, 0, 1, "c.PyTypeObject.tp_descr_get", "tp_descr_get"], [63, 0, 1, "c.PyTypeObject.tp_descr_set", "tp_descr_set"], [63, 0, 1, "c.PyTypeObject.tp_dict", "tp_dict"], [63, 0, 1, "c.PyTypeObject.tp_dictoffset", "tp_dictoffset"], [63, 0, 1, "c.PyTypeObject.tp_doc", "tp_doc"], [63, 0, 1, "c.PyTypeObject.tp_finalize", "tp_finalize"], [63, 0, 1, "c.PyTypeObject.tp_flags", "tp_flags"], [63, 0, 1, "c.PyTypeObject.tp_free", "tp_free"], [63, 0, 1, "c.PyTypeObject.tp_getattr", "tp_getattr"], [63, 0, 1, "c.PyTypeObject.tp_getattro", "tp_getattro"], [63, 0, 1, "c.PyTypeObject.tp_getset", "tp_getset"], [63, 0, 1, "c.PyTypeObject.tp_hash", "tp_hash"], [63, 0, 1, "c.PyTypeObject.tp_init", "tp_init"], [63, 0, 1, "c.PyTypeObject.tp_is_gc", "tp_is_gc"], [63, 0, 1, "c.PyTypeObject.tp_itemsize", "tp_itemsize"], [63, 0, 1, "c.PyTypeObject.tp_iter", "tp_iter"], [63, 0, 1, "c.PyTypeObject.tp_iternext", "tp_iternext"], [63, 0, 1, "c.PyTypeObject.tp_members", "tp_members"], [63, 0, 1, "c.PyTypeObject.tp_methods", "tp_methods"], [63, 0, 1, "c.PyTypeObject.tp_mro", "tp_mro"], [63, 0, 1, "c.PyTypeObject.tp_name", "tp_name"], [63, 0, 1, "c.PyTypeObject.tp_new", "tp_new"], [63, 0, 1, "c.PyTypeObject.tp_repr", "tp_repr"], [63, 0, 1, "c.PyTypeObject.tp_richcompare", "tp_richcompare"], [63, 0, 1, "c.PyTypeObject.tp_setattr", "tp_setattr"], [63, 0, 1, "c.PyTypeObject.tp_setattro", "tp_setattro"], [63, 0, 1, "c.PyTypeObject.tp_str", "tp_str"], [63, 0, 1, "c.PyTypeObject.tp_subclasses", "tp_subclasses"], [63, 0, 1, "c.PyTypeObject.tp_traverse", "tp_traverse"], [63, 0, 1, "c.PyTypeObject.tp_vectorcall", "tp_vectorcall"], [63, 0, 1, "c.PyTypeObject.tp_vectorcall_offset", "tp_vectorcall_offset"], [63, 0, 1, "c.PyTypeObject.tp_version_tag", "tp_version_tag"], [63, 0, 1, "c.PyTypeObject.tp_watched", "tp_watched"], [63, 0, 1, "c.PyTypeObject.tp_weaklist", "tp_weaklist"], [63, 0, 1, "c.PyTypeObject.tp_weaklistoffset", "tp_weaklistoffset"]], "PyType_AddWatcher": [[61, 3, 1, "c.PyType_AddWatcher", "callback"]], "PyType_Check": [[61, 3, 1, "c.PyType_Check", "o"]], "PyType_CheckExact": [[61, 3, 1, "c.PyType_CheckExact", "o"]], "PyType_ClearWatcher": [[61, 3, 1, "c.PyType_ClearWatcher", "watcher_id"]], "PyType_FromMetaclass": [[61, 3, 1, "c.PyType_FromMetaclass", "bases"], [61, 3, 1, "c.PyType_FromMetaclass", "metaclass"], [61, 3, 1, "c.PyType_FromMetaclass", "module"], [61, 3, 1, "c.PyType_FromMetaclass", "spec"]], "PyType_FromModuleAndSpec": [[61, 3, 1, "c.PyType_FromModuleAndSpec", "bases"], [61, 3, 1, "c.PyType_FromModuleAndSpec", "module"], [61, 3, 1, "c.PyType_FromModuleAndSpec", "spec"]], "PyType_FromSpec": [[61, 3, 1, "c.PyType_FromSpec", "spec"]], "PyType_FromSpecWithBases": [[61, 3, 1, "c.PyType_FromSpecWithBases", "bases"], [61, 3, 1, "c.PyType_FromSpecWithBases", "spec"]], "PyType_GenericAlloc": [[61, 3, 1, "c.PyType_GenericAlloc", "nitems"], [61, 3, 1, "c.PyType_GenericAlloc", "type"]], "PyType_GenericNew": [[61, 3, 1, "c.PyType_GenericNew", "args"], [61, 3, 1, "c.PyType_GenericNew", "kwds"], [61, 3, 1, "c.PyType_GenericNew", "type"]], "PyType_GetDict": [[61, 3, 1, "c.PyType_GetDict", "type"]], "PyType_GetFlags": [[61, 3, 1, "c.PyType_GetFlags", "type"]], "PyType_GetModule": [[61, 3, 1, "c.PyType_GetModule", "type"]], "PyType_GetModuleByDef": [[61, 3, 1, "c.PyType_GetModuleByDef", "def"], [61, 3, 1, "c.PyType_GetModuleByDef", "type"]], "PyType_GetModuleState": [[61, 3, 1, "c.PyType_GetModuleState", "type"]], "PyType_GetName": [[61, 3, 1, "c.PyType_GetName", "type"]], "PyType_GetQualName": [[61, 3, 1, "c.PyType_GetQualName", "type"]], "PyType_GetSlot": [[61, 3, 1, "c.PyType_GetSlot", "slot"], [61, 3, 1, "c.PyType_GetSlot", "type"]], "PyType_GetTypeDataSize": [[49, 3, 1, "c.PyType_GetTypeDataSize", "cls"]], "PyType_HasFeature": [[61, 3, 1, "c.PyType_HasFeature", "feature"], [61, 3, 1, "c.PyType_HasFeature", "o"]], "PyType_IS_GC": [[61, 3, 1, "c.PyType_IS_GC", "o"]], "PyType_IsSubtype": [[61, 3, 1, "c.PyType_IsSubtype", "a"], [61, 3, 1, "c.PyType_IsSubtype", "b"]], "PyType_Modified": [[61, 3, 1, "c.PyType_Modified", "type"]], "PyType_Ready": [[61, 3, 1, "c.PyType_Ready", "type"]], "PyType_Slot": [[61, 0, 1, "c.PyType_Slot.pfunc", "pfunc"], [61, 0, 1, "c.PyType_Slot.slot", "slot"]], "PyType_Spec": [[61, 0, 1, "c.PyType_Spec.basicsize", "basicsize"], [61, 0, 1, "c.PyType_Spec.flags", "flags"], [61, 0, 1, "c.PyType_Spec.itemsize", "itemsize"], [61, 0, 1, "c.PyType_Spec.name", "name"], [61, 0, 1, "c.PyType_Spec.slots", "slots"]], "PyType_Watch": [[61, 3, 1, "c.PyType_Watch", "type"], [61, 3, 1, "c.PyType_Watch", "watcher_id"]], "PyUnicodeDecodeError_Create": [[23, 3, 1, "c.PyUnicodeDecodeError_Create", "encoding"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "length"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "object"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "reason"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "start"]], "PyUnicodeDecodeError_GetEncoding": [[23, 3, 1, "c.PyUnicodeDecodeError_GetEncoding", "exc"]], "PyUnicodeDecodeError_GetEnd": [[23, 3, 1, "c.PyUnicodeDecodeError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_GetEnd", "exc"]], "PyUnicodeDecodeError_GetObject": [[23, 3, 1, "c.PyUnicodeDecodeError_GetObject", "exc"]], "PyUnicodeDecodeError_GetReason": [[23, 3, 1, "c.PyUnicodeDecodeError_GetReason", "exc"]], "PyUnicodeDecodeError_GetStart": [[23, 3, 1, "c.PyUnicodeDecodeError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_GetStart", "start"]], "PyUnicodeDecodeError_SetEnd": [[23, 3, 1, "c.PyUnicodeDecodeError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_SetEnd", "exc"]], "PyUnicodeDecodeError_SetReason": [[23, 3, 1, "c.PyUnicodeDecodeError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_SetReason", "reason"]], "PyUnicodeDecodeError_SetStart": [[23, 3, 1, "c.PyUnicodeDecodeError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_SetStart", "start"]], "PyUnicodeEncodeError_GetEncoding": [[23, 3, 1, "c.PyUnicodeEncodeError_GetEncoding", "exc"]], "PyUnicodeEncodeError_GetEnd": [[23, 3, 1, "c.PyUnicodeEncodeError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeEncodeError_GetEnd", "exc"]], "PyUnicodeEncodeError_GetObject": [[23, 3, 1, "c.PyUnicodeEncodeError_GetObject", "exc"]], "PyUnicodeEncodeError_GetReason": [[23, 3, 1, "c.PyUnicodeEncodeError_GetReason", "exc"]], "PyUnicodeEncodeError_GetStart": [[23, 3, 1, "c.PyUnicodeEncodeError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_GetStart", "start"]], "PyUnicodeEncodeError_SetEnd": [[23, 3, 1, "c.PyUnicodeEncodeError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeEncodeError_SetEnd", "exc"]], "PyUnicodeEncodeError_SetReason": [[23, 3, 1, "c.PyUnicodeEncodeError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_SetReason", "reason"]], "PyUnicodeEncodeError_SetStart": [[23, 3, 1, "c.PyUnicodeEncodeError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_SetStart", "start"]], "PyUnicodeTranslateError_GetEnd": [[23, 3, 1, "c.PyUnicodeTranslateError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeTranslateError_GetEnd", "exc"]], "PyUnicodeTranslateError_GetObject": [[23, 3, 1, "c.PyUnicodeTranslateError_GetObject", "exc"]], "PyUnicodeTranslateError_GetReason": [[23, 3, 1, "c.PyUnicodeTranslateError_GetReason", "exc"]], "PyUnicodeTranslateError_GetStart": [[23, 3, 1, "c.PyUnicodeTranslateError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_GetStart", "start"]], "PyUnicodeTranslateError_SetEnd": [[23, 3, 1, "c.PyUnicodeTranslateError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeTranslateError_SetEnd", "exc"]], "PyUnicodeTranslateError_SetReason": [[23, 3, 1, "c.PyUnicodeTranslateError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_SetReason", "reason"]], "PyUnicodeTranslateError_SetStart": [[23, 3, 1, "c.PyUnicodeTranslateError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_SetStart", "start"]], "PyUnicode_1BYTE_DATA": [[64, 3, 1, "c.PyUnicode_1BYTE_DATA", "unicode"]], "PyUnicode_2BYTE_DATA": [[64, 3, 1, "c.PyUnicode_2BYTE_DATA", "unicode"]], "PyUnicode_4BYTE_DATA": [[64, 3, 1, "c.PyUnicode_4BYTE_DATA", "unicode"]], "PyUnicode_AsASCIIString": [[64, 3, 1, "c.PyUnicode_AsASCIIString", "unicode"]], "PyUnicode_AsCharmapString": [[64, 3, 1, "c.PyUnicode_AsCharmapString", "mapping"], [64, 3, 1, "c.PyUnicode_AsCharmapString", "unicode"]], "PyUnicode_AsEncodedString": [[64, 3, 1, "c.PyUnicode_AsEncodedString", "encoding"], [64, 3, 1, "c.PyUnicode_AsEncodedString", "errors"], [64, 3, 1, "c.PyUnicode_AsEncodedString", "unicode"]], "PyUnicode_AsLatin1String": [[64, 3, 1, "c.PyUnicode_AsLatin1String", "unicode"]], "PyUnicode_AsMBCSString": [[64, 3, 1, "c.PyUnicode_AsMBCSString", "unicode"]], "PyUnicode_AsRawUnicodeEscapeString": [[64, 3, 1, "c.PyUnicode_AsRawUnicodeEscapeString", "unicode"]], "PyUnicode_AsUCS4": [[64, 3, 1, "c.PyUnicode_AsUCS4", "buffer"], [64, 3, 1, "c.PyUnicode_AsUCS4", "buflen"], [64, 3, 1, "c.PyUnicode_AsUCS4", "copy_null"], [64, 3, 1, "c.PyUnicode_AsUCS4", "unicode"]], "PyUnicode_AsUCS4Copy": [[64, 3, 1, "c.PyUnicode_AsUCS4Copy", "unicode"]], "PyUnicode_AsUTF16String": [[64, 3, 1, "c.PyUnicode_AsUTF16String", "unicode"]], "PyUnicode_AsUTF32String": [[64, 3, 1, "c.PyUnicode_AsUTF32String", "unicode"]], "PyUnicode_AsUTF8": [[64, 3, 1, "c.PyUnicode_AsUTF8", "unicode"]], "PyUnicode_AsUTF8AndSize": [[64, 3, 1, "c.PyUnicode_AsUTF8AndSize", "size"], [64, 3, 1, "c.PyUnicode_AsUTF8AndSize", "unicode"]], "PyUnicode_AsUTF8String": [[64, 3, 1, "c.PyUnicode_AsUTF8String", "unicode"]], "PyUnicode_AsUnicodeEscapeString": [[64, 3, 1, "c.PyUnicode_AsUnicodeEscapeString", "unicode"]], "PyUnicode_AsWideChar": [[64, 3, 1, "c.PyUnicode_AsWideChar", "size"], [64, 3, 1, "c.PyUnicode_AsWideChar", "unicode"], [64, 3, 1, "c.PyUnicode_AsWideChar", "wstr"]], "PyUnicode_AsWideCharString": [[64, 3, 1, "c.PyUnicode_AsWideCharString", "size"], [64, 3, 1, "c.PyUnicode_AsWideCharString", "unicode"]], "PyUnicode_Check": [[64, 3, 1, "c.PyUnicode_Check", "obj"]], "PyUnicode_CheckExact": [[64, 3, 1, "c.PyUnicode_CheckExact", "obj"]], "PyUnicode_Compare": [[64, 3, 1, "c.PyUnicode_Compare", "left"], [64, 3, 1, "c.PyUnicode_Compare", "right"]], "PyUnicode_CompareWithASCIIString": [[64, 3, 1, "c.PyUnicode_CompareWithASCIIString", "string"], [64, 3, 1, "c.PyUnicode_CompareWithASCIIString", "unicode"]], "PyUnicode_Concat": [[64, 3, 1, "c.PyUnicode_Concat", "left"], [64, 3, 1, "c.PyUnicode_Concat", "right"]], "PyUnicode_Contains": [[64, 3, 1, "c.PyUnicode_Contains", "substr"], [64, 3, 1, "c.PyUnicode_Contains", "unicode"]], "PyUnicode_CopyCharacters": [[64, 3, 1, "c.PyUnicode_CopyCharacters", "from"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "from_start"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "how_many"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "to"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "to_start"]], "PyUnicode_Count": [[64, 3, 1, "c.PyUnicode_Count", "end"], [64, 3, 1, "c.PyUnicode_Count", "start"], [64, 3, 1, "c.PyUnicode_Count", "substr"], [64, 3, 1, "c.PyUnicode_Count", "unicode"]], "PyUnicode_DATA": [[64, 3, 1, "c.PyUnicode_DATA", "unicode"]], "PyUnicode_Decode": [[64, 3, 1, "c.PyUnicode_Decode", "encoding"], [64, 3, 1, "c.PyUnicode_Decode", "errors"], [64, 3, 1, "c.PyUnicode_Decode", "size"], [64, 3, 1, "c.PyUnicode_Decode", "str"]], "PyUnicode_DecodeASCII": [[64, 3, 1, "c.PyUnicode_DecodeASCII", "errors"], [64, 3, 1, "c.PyUnicode_DecodeASCII", "size"], [64, 3, 1, "c.PyUnicode_DecodeASCII", "str"]], "PyUnicode_DecodeCharmap": [[64, 3, 1, "c.PyUnicode_DecodeCharmap", "errors"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "length"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "mapping"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "str"]], "PyUnicode_DecodeFSDefault": [[64, 3, 1, "c.PyUnicode_DecodeFSDefault", "str"]], "PyUnicode_DecodeFSDefaultAndSize": [[64, 3, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "size"], [64, 3, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "str"]], "PyUnicode_DecodeLatin1": [[64, 3, 1, "c.PyUnicode_DecodeLatin1", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLatin1", "size"], [64, 3, 1, "c.PyUnicode_DecodeLatin1", "str"]], "PyUnicode_DecodeLocale": [[64, 3, 1, "c.PyUnicode_DecodeLocale", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLocale", "str"]], "PyUnicode_DecodeLocaleAndSize": [[64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "length"], [64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "str"]], "PyUnicode_DecodeMBCS": [[64, 3, 1, "c.PyUnicode_DecodeMBCS", "errors"], [64, 3, 1, "c.PyUnicode_DecodeMBCS", "size"], [64, 3, 1, "c.PyUnicode_DecodeMBCS", "str"]], "PyUnicode_DecodeMBCSStateful": [[64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "str"]], "PyUnicode_DecodeRawUnicodeEscape": [[64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "errors"], [64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "size"], [64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "str"]], "PyUnicode_DecodeUTF16": [[64, 3, 1, "c.PyUnicode_DecodeUTF16", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "str"]], "PyUnicode_DecodeUTF16Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "str"]], "PyUnicode_DecodeUTF32": [[64, 3, 1, "c.PyUnicode_DecodeUTF32", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "str"]], "PyUnicode_DecodeUTF32Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "str"]], "PyUnicode_DecodeUTF7": [[64, 3, 1, "c.PyUnicode_DecodeUTF7", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF7", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF7", "str"]], "PyUnicode_DecodeUTF7Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "str"]], "PyUnicode_DecodeUTF8": [[64, 3, 1, "c.PyUnicode_DecodeUTF8", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF8", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF8", "str"]], "PyUnicode_DecodeUTF8Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "str"]], "PyUnicode_DecodeUnicodeEscape": [[64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "size"], [64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "str"]], "PyUnicode_EncodeCodePage": [[64, 3, 1, "c.PyUnicode_EncodeCodePage", "code_page"], [64, 3, 1, "c.PyUnicode_EncodeCodePage", "errors"], [64, 3, 1, "c.PyUnicode_EncodeCodePage", "unicode"]], "PyUnicode_EncodeFSDefault": [[64, 3, 1, "c.PyUnicode_EncodeFSDefault", "unicode"]], "PyUnicode_EncodeLocale": [[64, 3, 1, "c.PyUnicode_EncodeLocale", "errors"], [64, 3, 1, "c.PyUnicode_EncodeLocale", "unicode"]], "PyUnicode_FSConverter": [[64, 3, 1, "c.PyUnicode_FSConverter", "obj"], [64, 3, 1, "c.PyUnicode_FSConverter", "result"]], "PyUnicode_FSDecoder": [[64, 3, 1, "c.PyUnicode_FSDecoder", "obj"], [64, 3, 1, "c.PyUnicode_FSDecoder", "result"]], "PyUnicode_Fill": [[64, 3, 1, "c.PyUnicode_Fill", "fill_char"], [64, 3, 1, "c.PyUnicode_Fill", "length"], [64, 3, 1, "c.PyUnicode_Fill", "start"], [64, 3, 1, "c.PyUnicode_Fill", "unicode"]], "PyUnicode_Find": [[64, 3, 1, "c.PyUnicode_Find", "direction"], [64, 3, 1, "c.PyUnicode_Find", "end"], [64, 3, 1, "c.PyUnicode_Find", "start"], [64, 3, 1, "c.PyUnicode_Find", "substr"], [64, 3, 1, "c.PyUnicode_Find", "unicode"]], "PyUnicode_FindChar": [[64, 3, 1, "c.PyUnicode_FindChar", "ch"], [64, 3, 1, "c.PyUnicode_FindChar", "direction"], [64, 3, 1, "c.PyUnicode_FindChar", "end"], [64, 3, 1, "c.PyUnicode_FindChar", "start"], [64, 3, 1, "c.PyUnicode_FindChar", "unicode"]], "PyUnicode_Format": [[64, 3, 1, "c.PyUnicode_Format", "args"], [64, 3, 1, "c.PyUnicode_Format", "format"]], "PyUnicode_FromEncodedObject": [[64, 3, 1, "c.PyUnicode_FromEncodedObject", "encoding"], [64, 3, 1, "c.PyUnicode_FromEncodedObject", "errors"], [64, 3, 1, "c.PyUnicode_FromEncodedObject", "obj"]], "PyUnicode_FromFormat": [[64, 3, 1, "c.PyUnicode_FromFormat", "format"]], "PyUnicode_FromFormatV": [[64, 3, 1, "c.PyUnicode_FromFormatV", "format"], [64, 3, 1, "c.PyUnicode_FromFormatV", "vargs"]], "PyUnicode_FromKindAndData": [[64, 3, 1, "c.PyUnicode_FromKindAndData", "buffer"], [64, 3, 1, "c.PyUnicode_FromKindAndData", "kind"], [64, 3, 1, "c.PyUnicode_FromKindAndData", "size"]], "PyUnicode_FromObject": [[64, 3, 1, "c.PyUnicode_FromObject", "obj"]], "PyUnicode_FromString": [[64, 3, 1, "c.PyUnicode_FromString", "str"]], "PyUnicode_FromStringAndSize": [[64, 3, 1, "c.PyUnicode_FromStringAndSize", "size"], [64, 3, 1, "c.PyUnicode_FromStringAndSize", "str"]], "PyUnicode_FromWideChar": [[64, 3, 1, "c.PyUnicode_FromWideChar", "size"], [64, 3, 1, "c.PyUnicode_FromWideChar", "wstr"]], "PyUnicode_GET_LENGTH": [[64, 3, 1, "c.PyUnicode_GET_LENGTH", "unicode"]], "PyUnicode_GetLength": [[64, 3, 1, "c.PyUnicode_GetLength", "unicode"]], "PyUnicode_InternFromString": [[64, 3, 1, "c.PyUnicode_InternFromString", "str"]], "PyUnicode_InternInPlace": [[64, 3, 1, "c.PyUnicode_InternInPlace", "p_unicode"]], "PyUnicode_IsIdentifier": [[64, 3, 1, "c.PyUnicode_IsIdentifier", "unicode"]], "PyUnicode_Join": [[64, 3, 1, "c.PyUnicode_Join", "separator"], [64, 3, 1, "c.PyUnicode_Join", "seq"]], "PyUnicode_KIND": [[64, 3, 1, "c.PyUnicode_KIND", "unicode"]], "PyUnicode_MAX_CHAR_VALUE": [[64, 3, 1, "c.PyUnicode_MAX_CHAR_VALUE", "unicode"]], "PyUnicode_New": [[64, 3, 1, "c.PyUnicode_New", "maxchar"], [64, 3, 1, "c.PyUnicode_New", "size"]], "PyUnicode_READ": [[64, 3, 1, "c.PyUnicode_READ", "data"], [64, 3, 1, "c.PyUnicode_READ", "index"], [64, 3, 1, "c.PyUnicode_READ", "kind"]], "PyUnicode_READY": [[64, 3, 1, "c.PyUnicode_READY", "unicode"]], "PyUnicode_READ_CHAR": [[64, 3, 1, "c.PyUnicode_READ_CHAR", "index"], [64, 3, 1, "c.PyUnicode_READ_CHAR", "unicode"]], "PyUnicode_ReadChar": [[64, 3, 1, "c.PyUnicode_ReadChar", "index"], [64, 3, 1, "c.PyUnicode_ReadChar", "unicode"]], "PyUnicode_Replace": [[64, 3, 1, "c.PyUnicode_Replace", "maxcount"], [64, 3, 1, "c.PyUnicode_Replace", "replstr"], [64, 3, 1, "c.PyUnicode_Replace", "substr"], [64, 3, 1, "c.PyUnicode_Replace", "unicode"]], "PyUnicode_RichCompare": [[64, 3, 1, "c.PyUnicode_RichCompare", "left"], [64, 3, 1, "c.PyUnicode_RichCompare", "op"], [64, 3, 1, "c.PyUnicode_RichCompare", "right"]], "PyUnicode_Split": [[64, 3, 1, "c.PyUnicode_Split", "maxsplit"], [64, 3, 1, "c.PyUnicode_Split", "sep"], [64, 3, 1, "c.PyUnicode_Split", "unicode"]], "PyUnicode_Splitlines": [[64, 3, 1, "c.PyUnicode_Splitlines", "keepends"], [64, 3, 1, "c.PyUnicode_Splitlines", "unicode"]], "PyUnicode_Substring": [[64, 3, 1, "c.PyUnicode_Substring", "end"], [64, 3, 1, "c.PyUnicode_Substring", "start"], [64, 3, 1, "c.PyUnicode_Substring", "unicode"]], "PyUnicode_Tailmatch": [[64, 3, 1, "c.PyUnicode_Tailmatch", "direction"], [64, 3, 1, "c.PyUnicode_Tailmatch", "end"], [64, 3, 1, "c.PyUnicode_Tailmatch", "start"], [64, 3, 1, "c.PyUnicode_Tailmatch", "substr"], [64, 3, 1, "c.PyUnicode_Tailmatch", "unicode"]], "PyUnicode_Translate": [[64, 3, 1, "c.PyUnicode_Translate", "errors"], [64, 3, 1, "c.PyUnicode_Translate", "table"], [64, 3, 1, "c.PyUnicode_Translate", "unicode"]], "PyUnicode_WRITE": [[64, 3, 1, "c.PyUnicode_WRITE", "data"], [64, 3, 1, "c.PyUnicode_WRITE", "index"], [64, 3, 1, "c.PyUnicode_WRITE", "kind"], [64, 3, 1, "c.PyUnicode_WRITE", "value"]], "PyUnicode_WriteChar": [[64, 3, 1, "c.PyUnicode_WriteChar", "character"], [64, 3, 1, "c.PyUnicode_WriteChar", "index"], [64, 3, 1, "c.PyUnicode_WriteChar", "unicode"]], "PyUnstable_Code_GetExtra": [[13, 3, 1, "c.PyUnstable_Code_GetExtra", "code"], [13, 3, 1, "c.PyUnstable_Code_GetExtra", "extra"], [13, 3, 1, "c.PyUnstable_Code_GetExtra", "index"]], "PyUnstable_Code_New": [[13, 3, 1, "c.PyUnstable_Code_New", "argcount"], [13, 3, 1, "c.PyUnstable_Code_New", "cellvars"], [13, 3, 1, "c.PyUnstable_Code_New", "code"], [13, 3, 1, "c.PyUnstable_Code_New", "consts"], [13, 3, 1, "c.PyUnstable_Code_New", "exceptiontable"], [13, 3, 1, "c.PyUnstable_Code_New", "filename"], [13, 3, 1, "c.PyUnstable_Code_New", "firstlineno"], [13, 3, 1, "c.PyUnstable_Code_New", "flags"], [13, 3, 1, "c.PyUnstable_Code_New", "freevars"], [13, 3, 1, "c.PyUnstable_Code_New", "kwonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_New", "linetable"], [13, 3, 1, "c.PyUnstable_Code_New", "name"], [13, 3, 1, "c.PyUnstable_Code_New", "names"], [13, 3, 1, "c.PyUnstable_Code_New", "nlocals"], [13, 3, 1, "c.PyUnstable_Code_New", "qualname"], [13, 3, 1, "c.PyUnstable_Code_New", "stacksize"], [13, 3, 1, "c.PyUnstable_Code_New", "varnames"]], "PyUnstable_Code_NewWithPosOnlyArgs": [[13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "argcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "cellvars"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "code"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "consts"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "exceptiontable"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "filename"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "firstlineno"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "flags"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "freevars"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "kwonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "linetable"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "name"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "names"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "nlocals"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "posonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "qualname"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "stacksize"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "varnames"]], "PyUnstable_Code_SetExtra": [[13, 3, 1, "c.PyUnstable_Code_SetExtra", "code"], [13, 3, 1, "c.PyUnstable_Code_SetExtra", "extra"], [13, 3, 1, "c.PyUnstable_Code_SetExtra", "index"]], "PyUnstable_Eval_RequestCodeExtraIndex": [[13, 3, 1, "c.PyUnstable_Eval_RequestCodeExtraIndex", "free"]], "PyUnstable_Exc_PrepReraiseStar": [[23, 3, 1, "c.PyUnstable_Exc_PrepReraiseStar", "excs"], [23, 3, 1, "c.PyUnstable_Exc_PrepReraiseStar", "orig"]], "PyUnstable_GC_VisitObjects": [[28, 3, 1, "c.PyUnstable_GC_VisitObjects", "arg"], [28, 3, 1, "c.PyUnstable_GC_VisitObjects", "callback"]], "PyUnstable_InterpreterFrame_GetCode": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetCode", "frame"]], "PyUnstable_InterpreterFrame_GetLasti": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetLasti", "frame"]], "PyUnstable_InterpreterFrame_GetLine": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetLine", "frame"]], "PyUnstable_Long_CompactValue": [[39, 3, 1, "c.PyUnstable_Long_CompactValue", "op"]], "PyUnstable_Long_IsCompact": [[39, 3, 1, "c.PyUnstable_Long_IsCompact", "op"]], "PyUnstable_Object_GC_NewWithExtraData": [[28, 3, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "extra_size"], [28, 3, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "type"]], "PyUnstable_Type_AssignVersionTag": [[61, 3, 1, "c.PyUnstable_Type_AssignVersionTag", "type"]], "PyUnstable_WritePerfMapEntry": [[51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "code_addr"], [51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "code_size"], [51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "entry_name"]], "PyVarObject": [[63, 0, 1, "c.PyVarObject.ob_size", "ob_size"]], "PyVectorcall_Call": [[10, 3, 1, "c.PyVectorcall_Call", "callable"], [10, 3, 1, "c.PyVectorcall_Call", "dict"], [10, 3, 1, "c.PyVectorcall_Call", "tuple"]], "PyVectorcall_Function": [[10, 3, 1, "c.PyVectorcall_Function", "op"]], "PyVectorcall_NARGS": [[10, 3, 1, "c.PyVectorcall_NARGS", "nargsf"]], "PyWeakref_Check": [[67, 3, 1, "c.PyWeakref_Check", "ob"]], "PyWeakref_CheckProxy": [[67, 3, 1, "c.PyWeakref_CheckProxy", "ob"]], "PyWeakref_CheckRef": [[67, 3, 1, "c.PyWeakref_CheckRef", "ob"]], "PyWeakref_GET_OBJECT": [[67, 3, 1, "c.PyWeakref_GET_OBJECT", "ref"]], "PyWeakref_GetObject": [[67, 3, 1, "c.PyWeakref_GetObject", "ref"]], "PyWeakref_NewProxy": [[67, 3, 1, "c.PyWeakref_NewProxy", "callback"], [67, 3, 1, "c.PyWeakref_NewProxy", "ob"]], "PyWeakref_NewRef": [[67, 3, 1, "c.PyWeakref_NewRef", "callback"], [67, 3, 1, "c.PyWeakref_NewRef", "ob"]], "PyWideStringList": [[34, 0, 1, "c.PyWideStringList.items", "items"], [34, 0, 1, "c.PyWideStringList.length", "length"]], "PyWideStringList_Append": [[34, 3, 1, "c.PyWideStringList_Append", "item"], [34, 3, 1, "c.PyWideStringList_Append", "list"]], "PyWideStringList_Insert": [[34, 3, 1, "c.PyWideStringList_Insert", "index"], [34, 3, 1, "c.PyWideStringList_Insert", "item"], [34, 3, 1, "c.PyWideStringList_Insert", "list"]], "Py_AddPendingCall": [[33, 3, 1, "c.Py_AddPendingCall", "arg"], [33, 3, 1, "c.Py_AddPendingCall", "func"]], "Py_AtExit": [[59, 3, 1, "c.Py_AtExit", "func"]], "Py_BuildValue": [[5, 3, 1, "c.Py_BuildValue", "format"]], "Py_BytesMain": [[66, 3, 1, "c.Py_BytesMain", "argc"], [66, 3, 1, "c.Py_BytesMain", "argv"]], "Py_CLEAR": [[52, 3, 1, "c.Py_CLEAR", "o"]], "Py_CompileString": [[66, 3, 1, "c.Py_CompileString", "filename"], [66, 3, 1, "c.Py_CompileString", "start"], [66, 3, 1, "c.Py_CompileString", "str"]], "Py_CompileStringExFlags": [[66, 3, 1, "c.Py_CompileStringExFlags", "filename"], [66, 3, 1, "c.Py_CompileStringExFlags", "flags"], [66, 3, 1, "c.Py_CompileStringExFlags", "optimize"], [66, 3, 1, "c.Py_CompileStringExFlags", "start"], [66, 3, 1, "c.Py_CompileStringExFlags", "str"]], "Py_CompileStringFlags": [[66, 3, 1, "c.Py_CompileStringFlags", "filename"], [66, 3, 1, "c.Py_CompileStringFlags", "flags"], [66, 3, 1, "c.Py_CompileStringFlags", "start"], [66, 3, 1, "c.Py_CompileStringFlags", "str"]], "Py_CompileStringObject": [[66, 3, 1, "c.Py_CompileStringObject", "filename"], [66, 3, 1, "c.Py_CompileStringObject", "flags"], [66, 3, 1, "c.Py_CompileStringObject", "optimize"], [66, 3, 1, "c.Py_CompileStringObject", "start"], [66, 3, 1, "c.Py_CompileStringObject", "str"]], "Py_DECREF": [[52, 3, 1, "c.Py_DECREF", "o"]], "Py_DecRef": [[52, 3, 1, "c.Py_DecRef", "o"]], "Py_DecodeLocale": [[59, 3, 1, "c.Py_DecodeLocale", "arg"], [59, 3, 1, "c.Py_DecodeLocale", "size"]], "Py_EncodeLocale": [[59, 3, 1, "c.Py_EncodeLocale", "error_pos"], [59, 3, 1, "c.Py_EncodeLocale", "text"]], "Py_EndInterpreter": [[33, 3, 1, "c.Py_EndInterpreter", "tstate"]], "Py_EnterRecursiveCall": [[23, 3, 1, "c.Py_EnterRecursiveCall", "where"]], "Py_Exit": [[59, 3, 1, "c.Py_Exit", "status"]], "Py_ExitStatusException": [[34, 3, 1, "c.Py_ExitStatusException", "status"]], "Py_FatalError": [[59, 3, 1, "c.Py_FatalError", "message"]], "Py_FdIsInteractive": [[59, 3, 1, "c.Py_FdIsInteractive", "filename"], [59, 3, 1, "c.Py_FdIsInteractive", "fp"]], "Py_GenericAlias": [[62, 3, 1, "c.Py_GenericAlias", "args"], [62, 3, 1, "c.Py_GenericAlias", "origin"]], "Py_GetArgcArgv": [[34, 3, 1, "c.Py_GetArgcArgv", "argc"], [34, 3, 1, "c.Py_GetArgcArgv", "argv"]], "Py_INCREF": [[52, 3, 1, "c.Py_INCREF", "o"]], "Py_IS_TYPE": [[58, 3, 1, "c.Py_IS_TYPE", "o"], [58, 3, 1, "c.Py_IS_TYPE", "type"]], "Py_IncRef": [[52, 3, 1, "c.Py_IncRef", "o"]], "Py_InitializeEx": [[33, 3, 1, "c.Py_InitializeEx", "initsigs"]], "Py_InitializeFromConfig": [[34, 3, 1, "c.Py_InitializeFromConfig", "config"]], "Py_Is": [[58, 3, 1, "c.Py_Is", "x"], [58, 3, 1, "c.Py_Is", "y"]], "Py_IsFalse": [[58, 3, 1, "c.Py_IsFalse", "x"]], "Py_IsNone": [[58, 3, 1, "c.Py_IsNone", "x"]], "Py_IsTrue": [[58, 3, 1, "c.Py_IsTrue", "x"]], "Py_Main": [[66, 3, 1, "c.Py_Main", "argc"], [66, 3, 1, "c.Py_Main", "argv"]], "Py_NewInterpreterFromConfig": [[33, 3, 1, "c.Py_NewInterpreterFromConfig", "config"], [33, 3, 1, "c.Py_NewInterpreterFromConfig", "tstate_p"]], "Py_NewRef": [[52, 3, 1, "c.Py_NewRef", "o"]], "Py_PreInitialize": [[34, 3, 1, "c.Py_PreInitialize", "preconfig"]], "Py_PreInitializeFromArgs": [[34, 3, 1, "c.Py_PreInitializeFromArgs", "argc"], [34, 3, 1, "c.Py_PreInitializeFromArgs", "argv"], [34, 3, 1, "c.Py_PreInitializeFromArgs", "preconfig"]], "Py_PreInitializeFromBytesArgs": [[34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "argc"], [34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "argv"], [34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "preconfig"]], "Py_REFCNT": [[52, 3, 1, "c.Py_REFCNT", "o"]], "Py_ReprEnter": [[23, 3, 1, "c.Py_ReprEnter", "object"]], "Py_ReprLeave": [[23, 3, 1, "c.Py_ReprLeave", "object"]], "Py_SET_REFCNT": [[52, 3, 1, "c.Py_SET_REFCNT", "o"], [52, 3, 1, "c.Py_SET_REFCNT", "refcnt"]], "Py_SET_SIZE": [[58, 3, 1, "c.Py_SET_SIZE", "o"], [58, 3, 1, "c.Py_SET_SIZE", "size"]], "Py_SET_TYPE": [[58, 3, 1, "c.Py_SET_TYPE", "o"], [58, 3, 1, "c.Py_SET_TYPE", "type"]], "Py_SIZE": [[58, 3, 1, "c.Py_SIZE", "o"]], "Py_SetProgramName": [[33, 3, 1, "c.Py_SetProgramName", "name"]], "Py_SetPythonHome": [[33, 3, 1, "c.Py_SetPythonHome", "home"]], "Py_SetStandardStreamEncoding": [[33, 3, 1, "c.Py_SetStandardStreamEncoding", "encoding"], [33, 3, 1, "c.Py_SetStandardStreamEncoding", "errors"]], "Py_TYPE": [[58, 3, 1, "c.Py_TYPE", "o"]], "Py_UNICODE_ISALNUM": [[64, 3, 1, "c.Py_UNICODE_ISALNUM", "ch"]], "Py_UNICODE_ISALPHA": [[64, 3, 1, "c.Py_UNICODE_ISALPHA", "ch"]], "Py_UNICODE_ISDECIMAL": [[64, 3, 1, "c.Py_UNICODE_ISDECIMAL", "ch"]], "Py_UNICODE_ISDIGIT": [[64, 3, 1, "c.Py_UNICODE_ISDIGIT", "ch"]], "Py_UNICODE_ISLINEBREAK": [[64, 3, 1, "c.Py_UNICODE_ISLINEBREAK", "ch"]], "Py_UNICODE_ISLOWER": [[64, 3, 1, "c.Py_UNICODE_ISLOWER", "ch"]], "Py_UNICODE_ISNUMERIC": [[64, 3, 1, "c.Py_UNICODE_ISNUMERIC", "ch"]], "Py_UNICODE_ISPRINTABLE": [[64, 3, 1, "c.Py_UNICODE_ISPRINTABLE", "ch"]], "Py_UNICODE_ISSPACE": [[64, 3, 1, "c.Py_UNICODE_ISSPACE", "ch"]], "Py_UNICODE_ISTITLE": [[64, 3, 1, "c.Py_UNICODE_ISTITLE", "ch"]], "Py_UNICODE_ISUPPER": [[64, 3, 1, "c.Py_UNICODE_ISUPPER", "ch"]], "Py_UNICODE_IS_HIGH_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_HIGH_SURROGATE", "ch"]], "Py_UNICODE_IS_LOW_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_LOW_SURROGATE", "ch"]], "Py_UNICODE_IS_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_SURROGATE", "ch"]], "Py_UNICODE_JOIN_SURROGATES": [[64, 3, 1, "c.Py_UNICODE_JOIN_SURROGATES", "high"], [64, 3, 1, "c.Py_UNICODE_JOIN_SURROGATES", "low"]], "Py_UNICODE_TODECIMAL": [[64, 3, 1, "c.Py_UNICODE_TODECIMAL", "ch"]], "Py_UNICODE_TODIGIT": [[64, 3, 1, "c.Py_UNICODE_TODIGIT", "ch"]], "Py_UNICODE_TOLOWER": [[64, 3, 1, "c.Py_UNICODE_TOLOWER", "ch"]], "Py_UNICODE_TONUMERIC": [[64, 3, 1, "c.Py_UNICODE_TONUMERIC", "ch"]], "Py_UNICODE_TOTITLE": [[64, 3, 1, "c.Py_UNICODE_TOTITLE", "ch"]], "Py_UNICODE_TOUPPER": [[64, 3, 1, "c.Py_UNICODE_TOUPPER", "ch"]], "Py_VISIT": [[28, 3, 1, "c.Py_VISIT", "o"]], "Py_VaBuildValue": [[5, 3, 1, "c.Py_VaBuildValue", "format"], [5, 3, 1, "c.Py_VaBuildValue", "vargs"]], "Py_XDECREF": [[52, 3, 1, "c.Py_XDECREF", "o"]], "Py_XINCREF": [[52, 3, 1, "c.Py_XINCREF", "o"]], "Py_XNewRef": [[52, 3, 1, "c.Py_XNewRef", "o"]], "Py_buffer": [[7, 0, 1, "c.Py_buffer.buf", "buf"], [7, 0, 1, "c.Py_buffer.format", "format"], [7, 0, 1, "c.Py_buffer.internal", "internal"], [7, 0, 1, "c.Py_buffer.itemsize", "itemsize"], [7, 0, 1, "c.Py_buffer.len", "len"], [7, 0, 1, "c.Py_buffer.ndim", "ndim"], [7, 0, 1, "c.Py_buffer.obj", "obj"], [7, 0, 1, "c.Py_buffer.readonly", "readonly"], [7, 0, 1, "c.Py_buffer.shape", "shape"], [7, 0, 1, "c.Py_buffer.strides", "strides"], [7, 0, 1, "c.Py_buffer.suboffsets", "suboffsets"]], "Py_mod_create": [[45, 2, 1, "c.Py_mod_create.create_module", "create_module"]], "Py_mod_create.create_module": [[45, 3, 1, "c.Py_mod_create.create_module", "def"], [45, 3, 1, "c.Py_mod_create.create_module", "spec"]], "Py_mod_exec": [[45, 2, 1, "c.Py_mod_exec.exec_module", "exec_module"]], "Py_mod_exec.exec_module": [[45, 3, 1, "c.Py_mod_exec.exec_module", "module"]], "StopIteration": [[213, 7, 1, "", "value"]], "SyntaxError": [[213, 7, 1, "", "end_lineno"], [213, 7, 1, "", "end_offset"], [213, 7, 1, "", "filename"], [213, 7, 1, "", "lineno"], [213, 7, 1, "", "offset"], [213, 7, 1, "", "text"]], "SystemExit": [[213, 7, 1, "", "code"]], "UnicodeError": [[213, 7, 1, "", "encoding"], [213, 7, 1, "", "end"], [213, 7, 1, "", "object"], [213, 7, 1, "", "reason"], [213, 7, 1, "", "start"]], "_PyBytes_Resize": [[9, 3, 1, "c._PyBytes_Resize", "bytes"], [9, 3, 1, "c._PyBytes_Resize", "newsize"]], "_PyInterpreterState_GetEvalFrameFunc": [[33, 3, 1, "c._PyInterpreterState_GetEvalFrameFunc", "interp"]], "_PyInterpreterState_SetEvalFrameFunc": [[33, 3, 1, "c._PyInterpreterState_SetEvalFrameFunc", "eval_frame"], [33, 3, 1, "c._PyInterpreterState_SetEvalFrameFunc", "interp"]], "_PyObject_GetDictPtr": [[49, 3, 1, "c._PyObject_GetDictPtr", "obj"]], "_PyObject_New": [[3, 3, 1, "c._PyObject_New", "type"]], "_PyObject_NewVar": [[3, 3, 1, "c._PyObject_NewVar", "size"], [3, 3, 1, "c._PyObject_NewVar", "type"]], "_PyTuple_Resize": [[60, 3, 1, "c._PyTuple_Resize", "newsize"], [60, 3, 1, "c._PyTuple_Resize", "p"]], "_Py_c_diff": [[15, 3, 1, "c._Py_c_diff", "left"], [15, 3, 1, "c._Py_c_diff", "right"]], "_Py_c_neg": [[15, 3, 1, "c._Py_c_neg", "num"]], "_Py_c_pow": [[15, 3, 1, "c._Py_c_pow", "exp"], [15, 3, 1, "c._Py_c_pow", "num"]], "_Py_c_prod": [[15, 3, 1, "c._Py_c_prod", "left"], [15, 3, 1, "c._Py_c_prod", "right"]], "_Py_c_quot": [[15, 3, 1, "c._Py_c_quot", "dividend"], [15, 3, 1, "c._Py_c_quot", "divisor"]], "_Py_c_sum": [[15, 3, 1, "c._Py_c_sum", "left"], [15, 3, 1, "c._Py_c_sum", "right"]], "__future__": [[113, 11, 1, "future__._Feature", "_Feature"]], "__future__._Feature": [[113, 7, 1, "future__._Feature.compiler_flag", "compiler_flag"], [113, 8, 1, "future__._Feature.getMandatoryRelease", "getMandatoryRelease"], [113, 8, 1, "future__._Feature.getOptionalRelease", "getOptionalRelease"]], "_inittab": [[31, 0, 1, "c._inittab.initfunc", "initfunc"], [31, 0, 1, "c._inittab.name", "name"]], "_thread": [[115, 9, 1, "thread.LockType", "LockType"], [115, 9, 1, "thread.TIMEOUT_MAX", "TIMEOUT_MAX"], [115, 12, 1, "thread.allocate_lock", "allocate_lock"], [115, 6, 1, "thread.error", "error"], [115, 12, 1, "thread.exit", "exit"], [115, 12, 1, "thread.get_ident", "get_ident"], [115, 12, 1, "thread.get_native_id", "get_native_id"], [115, 12, 1, "thread.interrupt_main", "interrupt_main"], [115, 12, 1, "thread.stack_size", "stack_size"], [115, 12, 1, "thread.start_new_thread", "start_new_thread"]], "_thread.lock": [[115, 8, 1, "thread.lock.acquire", "acquire"], [115, 8, 1, "thread.lock.locked", "locked"], [115, 8, 1, "thread.lock.release", "release"]], "_tkinter": [[369, 9, 1, "tkinter.EXCEPTION", "EXCEPTION"], [369, 9, 1, "tkinter.READABLE", "READABLE"], [369, 9, 1, "tkinter.WRITABLE", "WRITABLE"]], "_tkinter.Widget.tk": [[369, 8, 1, "tkinter.Widget.tk.createfilehandler", "createfilehandler"], [369, 8, 1, "tkinter.Widget.tk.deletefilehandler", "deletefilehandler"]], "abc": [[116, 11, 1, "", "ABC"], [116, 11, 1, "", "ABCMeta"], [116, 12, 1, "", "abstractclassmethod"], [116, 12, 1, "", "abstractmethod"], [116, 12, 1, "", "abstractproperty"], [116, 12, 1, "", "abstractstaticmethod"], [116, 12, 1, "", "get_cache_token"], [116, 12, 1, "", "update_abstractmethods"]], "abc.ABCMeta": [[116, 8, 1, "", "__subclasshook__"], [116, 8, 1, "", "register"]], "agen": [[430, 8, 1, "", "__anext__"], [430, 8, 1, "", "aclose"], [430, 8, 1, "", "asend"], [430, 8, 1, "", "athrow"]], "aifc": [[117, 12, 1, "", "open"]], "aifc.aifc": [[117, 8, 1, "", "aifc"], [117, 8, 1, "", "aiff"], [117, 8, 1, "", "close"], [117, 8, 1, "", "getcompname"], [117, 8, 1, "", "getcomptype"], [117, 8, 1, "", "getframerate"], [117, 8, 1, "", "getmark"], [117, 8, 1, "", "getmarkers"], [117, 8, 1, "", "getnchannels"], [117, 8, 1, "", "getnframes"], [117, 8, 1, "", "getparams"], [117, 8, 1, "", "getsampwidth"], [117, 8, 1, "", "readframes"], [117, 8, 1, "", "rewind"], [117, 8, 1, "", "setcomptype"], [117, 8, 1, "", "setframerate"], [117, 8, 1, "", "setmark"], [117, 8, 1, "", "setnchannels"], [117, 8, 1, "", "setnframes"], [117, 8, 1, "", "setparams"], [117, 8, 1, "", "setpos"], [117, 8, 1, "", "setsampwidth"], [117, 8, 1, "", "tell"], [117, 8, 1, "", "writeframes"], [117, 8, 1, "", "writeframesraw"]], "argparse": [[120, 11, 1, "", "Action"], [120, 11, 1, "", "ArgumentDefaultsHelpFormatter"], [120, 6, 1, "", "ArgumentError"], [120, 11, 1, "", "ArgumentParser"], [120, 6, 1, "", "ArgumentTypeError"], [120, 11, 1, "", "FileType"], [120, 11, 1, "", "MetavarTypeHelpFormatter"], [120, 11, 1, "", "Namespace"], [120, 11, 1, "", "RawDescriptionHelpFormatter"], [120, 11, 1, "", "RawTextHelpFormatter"]], "argparse.ArgumentParser": [[120, 8, 1, "", "add_argument"], [120, 8, 1, "", "add_argument_group"], [120, 8, 1, "", "add_mutually_exclusive_group"], [120, 8, 1, "", "add_subparsers"], [120, 8, 1, "", "convert_arg_line_to_args"], [120, 8, 1, "", "error"], [120, 8, 1, "", "exit"], [120, 8, 1, "", "format_help"], [120, 8, 1, "", "format_usage"], [120, 8, 1, "", "get_default"], [120, 8, 1, "", "parse_args"], [120, 8, 1, "", "parse_intermixed_args"], [120, 8, 1, "", "parse_known_args"], [120, 8, 1, "", "parse_known_intermixed_args"], [120, 8, 1, "", "print_help"], [120, 8, 1, "", "print_usage"], [120, 8, 1, "", "set_defaults"]], "array": [[121, 11, 1, "", "array"], [121, 9, 1, "", "typecodes"]], "array.array": [[121, 8, 1, "", "append"], [121, 8, 1, "", "buffer_info"], [121, 8, 1, "", "byteswap"], [121, 8, 1, "", "count"], [121, 8, 1, "", "extend"], [121, 8, 1, "", "frombytes"], [121, 8, 1, "", "fromfile"], [121, 8, 1, "", "fromlist"], [121, 8, 1, "", "fromunicode"], [121, 8, 1, "", "index"], [121, 8, 1, "", "insert"], [121, 7, 1, "", "itemsize"], [121, 8, 1, "", "pop"], [121, 8, 1, "", "remove"], [121, 8, 1, "", "reverse"], [121, 8, 1, "", "tobytes"], [121, 8, 1, "", "tofile"], [121, 8, 1, "", "tolist"], [121, 8, 1, "", "tounicode"], [121, 7, 1, "", "typecode"]], "ast": [[122, 11, 1, "", "AST"], [122, 11, 1, "", "Add"], [122, 11, 1, "", "And"], [122, 11, 1, "", "AnnAssign"], [122, 11, 1, "", "Assert"], [122, 11, 1, "", "Assign"], [122, 11, 1, "", "AsyncFor"], [122, 11, 1, "", "AsyncFunctionDef"], [122, 11, 1, "", "AsyncWith"], [122, 11, 1, "", "Attribute"], [122, 11, 1, "", "AugAssign"], [122, 11, 1, "", "Await"], [122, 11, 1, "", "BinOp"], [122, 11, 1, "", "BitAnd"], [122, 11, 1, "", "BitOr"], [122, 11, 1, "", "BitXor"], [122, 11, 1, "", "BoolOp"], [122, 11, 1, "", "Break"], [122, 11, 1, "", "Call"], [122, 11, 1, "", "ClassDef"], [122, 11, 1, "", "Compare"], [122, 11, 1, "", "Constant"], [122, 11, 1, "", "Continue"], [122, 11, 1, "", "Del"], [122, 11, 1, "", "Delete"], [122, 11, 1, "", "Dict"], [122, 11, 1, "", "DictComp"], [122, 11, 1, "", "Div"], [122, 11, 1, "", "Eq"], [122, 11, 1, "", "ExceptHandler"], [122, 11, 1, "", "Expr"], [122, 11, 1, "", "Expression"], [122, 11, 1, "", "FloorDiv"], [122, 11, 1, "", "For"], [122, 11, 1, "", "FormattedValue"], [122, 11, 1, "", "FunctionDef"], [122, 11, 1, "", "FunctionType"], [122, 11, 1, "", "GeneratorExp"], [122, 11, 1, "", "Global"], [122, 11, 1, "", "Gt"], [122, 11, 1, "", "GtE"], [122, 11, 1, "", "If"], [122, 11, 1, "", "IfExp"], [122, 11, 1, "", "Import"], [122, 11, 1, "", "ImportFrom"], [122, 11, 1, "", "In"], [122, 11, 1, "", "Interactive"], [122, 11, 1, "", "Invert"], [122, 11, 1, "", "Is"], [122, 11, 1, "", "IsNot"], [122, 11, 1, "", "JoinedStr"], [122, 11, 1, "", "LShift"], [122, 11, 1, "", "Lambda"], [122, 11, 1, "", "List"], [122, 11, 1, "", "ListComp"], [122, 11, 1, "", "Load"], [122, 11, 1, "", "Lt"], [122, 11, 1, "", "LtE"], [122, 11, 1, "", "MatMult"], [122, 11, 1, "", "Match"], [122, 11, 1, "", "MatchAs"], [122, 11, 1, "", "MatchClass"], [122, 11, 1, "", "MatchMapping"], [122, 11, 1, "", "MatchOr"], [122, 11, 1, "", "MatchSequence"], [122, 11, 1, "", "MatchSingleton"], [122, 11, 1, "", "MatchStar"], [122, 11, 1, "", "MatchValue"], [122, 11, 1, "", "Mod"], [122, 11, 1, "", "Module"], [122, 11, 1, "", "Mult"], [122, 11, 1, "", "Name"], [122, 11, 1, "", "NamedExpr"], [122, 11, 1, "", "NodeTransformer"], [122, 11, 1, "", "NodeVisitor"], [122, 11, 1, "", "Nonlocal"], [122, 11, 1, "", "Not"], [122, 11, 1, "", "NotEq"], [122, 11, 1, "", "NotIn"], [122, 11, 1, "", "Or"], [122, 11, 1, "", "ParamSpec"], [122, 11, 1, "", "Pass"], [122, 11, 1, "", "Pow"], [122, 9, 1, "", "PyCF_ALLOW_TOP_LEVEL_AWAIT"], [122, 9, 1, "", "PyCF_ONLY_AST"], [122, 9, 1, "", "PyCF_TYPE_COMMENTS"], [122, 11, 1, "", "RShift"], [122, 11, 1, "", "Raise"], [122, 11, 1, "", "Return"], [122, 11, 1, "", "Set"], [122, 11, 1, "", "SetComp"], [122, 11, 1, "", "Slice"], [122, 11, 1, "", "Starred"], [122, 11, 1, "", "Store"], [122, 11, 1, "", "Sub"], [122, 11, 1, "", "Subscript"], [122, 11, 1, "", "Try"], [122, 11, 1, "", "TryStar"], [122, 11, 1, "", "Tuple"], [122, 11, 1, "", "TypeAlias"], [122, 11, 1, "", "TypeVar"], [122, 11, 1, "", "TypeVarTuple"], [122, 11, 1, "", "UAdd"], [122, 11, 1, "", "USub"], [122, 11, 1, "", "UnaryOp"], [122, 11, 1, "", "While"], [122, 11, 1, "", "With"], [122, 11, 1, "", "Yield"], [122, 11, 1, "", "YieldFrom"], [122, 11, 1, "", "alias"], [122, 11, 1, "", "arg"], [122, 11, 1, "", "arguments"], [122, 11, 1, "", "comprehension"], [122, 12, 1, "", "copy_location"], [122, 12, 1, "", "dump"], [122, 12, 1, "", "fix_missing_locations"], [122, 12, 1, "", "get_docstring"], [122, 12, 1, "", "get_source_segment"], [122, 12, 1, "", "increment_lineno"], [122, 12, 1, "", "iter_child_nodes"], [122, 12, 1, "", "iter_fields"], [122, 11, 1, "", "keyword"], [122, 12, 1, "", "literal_eval"], [122, 11, 1, "", "match_case"], [122, 12, 1, "", "parse"], [122, 12, 1, "", "unparse"], [122, 12, 1, "", "walk"], [122, 11, 1, "", "withitem"], [122, 14, 1, "cmdoption-ast-h", "--help"], [122, 14, 1, "cmdoption-ast-a", "--include-attributes"], [122, 14, 1, "cmdoption-ast-indent", "--indent"], [122, 14, 1, "cmdoption-ast-mode", "--mode"], [122, 14, 1, "cmdoption-ast-no-type-comments", "--no-type-comments"], [122, 14, 1, "cmdoption-ast-a", "-a"], [122, 14, 1, "cmdoption-ast-h", "-h"], [122, 14, 1, "cmdoption-ast-i", "-i"], [122, 14, 1, "cmdoption-ast-m", "-m"]], "ast.AST": [[122, 7, 1, "", "_fields"], [122, 7, 1, "", "col_offset"], [122, 7, 1, "", "end_col_offset"], [122, 7, 1, "", "end_lineno"], [122, 7, 1, "", "lineno"]], "ast.Assign": [[122, 7, 1, "", "type_comment"]], "ast.For": [[122, 7, 1, "", "type_comment"]], "ast.FunctionDef": [[122, 7, 1, "", "type_comment"]], "ast.NodeVisitor": [[122, 8, 1, "", "generic_visit"], [122, 8, 1, "", "visit"], [122, 8, 1, "", "visit_Constant"]], "ast.With": [[122, 7, 1, "", "type_comment"]], "ast.arg": [[122, 7, 1, "", "type_comment"]], "asyncio": [[139, 9, 1, "", "ALL_COMPLETED"], [132, 11, 1, "", "AbstractChildWatcher"], [126, 11, 1, "", "AbstractEventLoop"], [132, 11, 1, "", "AbstractEventLoopPolicy"], [138, 11, 1, "", "Barrier"], [133, 11, 1, "", "BaseProtocol"], [133, 11, 1, "", "BaseTransport"], [138, 11, 1, "", "BoundedSemaphore"], [138, 6, 1, "", "BrokenBarrierError"], [133, 11, 1, "", "BufferedProtocol"], [127, 6, 1, "", "CancelledError"], [138, 11, 1, "", "Condition"], [133, 11, 1, "", "DatagramProtocol"], [133, 11, 1, "", "DatagramTransport"], [132, 11, 1, "", "DefaultEventLoopPolicy"], [138, 11, 1, "", "Event"], [139, 9, 1, "", "FIRST_COMPLETED"], [139, 9, 1, "", "FIRST_EXCEPTION"], [132, 11, 1, "", "FastChildWatcher"], [129, 11, 1, "", "Future"], [126, 11, 1, "", "Handle"], [127, 6, 1, "", "IncompleteReadError"], [127, 6, 1, "", "InvalidStateError"], [134, 11, 1, "", "LifoQueue"], [127, 6, 1, "", "LimitOverrunError"], [138, 11, 1, "", "Lock"], [132, 11, 1, "", "MultiLoopChildWatcher"], [132, 11, 1, "", "PidfdChildWatcher"], [134, 11, 1, "", "PriorityQueue"], [126, 11, 1, "", "ProactorEventLoop"], [133, 11, 1, "", "Protocol"], [134, 11, 1, "", "Queue"], [134, 6, 1, "", "QueueEmpty"], [134, 6, 1, "", "QueueFull"], [133, 11, 1, "", "ReadTransport"], [135, 11, 1, "", "Runner"], [132, 11, 1, "", "SafeChildWatcher"], [126, 11, 1, "", "SelectorEventLoop"], [138, 11, 1, "", "Semaphore"], [127, 6, 1, "", "SendfileNotAvailableError"], [126, 11, 1, "", "Server"], [136, 11, 1, "", "StreamReader"], [136, 11, 1, "", "StreamWriter"], [133, 11, 1, "", "SubprocessProtocol"], [133, 11, 1, "", "SubprocessTransport"], [139, 11, 1, "", "Task"], [139, 11, 1, "", "TaskGroup"], [132, 11, 1, "", "ThreadedChildWatcher"], [139, 11, 1, "", "Timeout"], [127, 6, 1, "", "TimeoutError"], [126, 11, 1, "", "TimerHandle"], [133, 11, 1, "", "Transport"], [132, 11, 1, "", "WindowsProactorEventLoopPolicy"], [132, 11, 1, "", "WindowsSelectorEventLoopPolicy"], [133, 11, 1, "", "WriteTransport"], [128, 12, 1, "", "_enter_task"], [128, 12, 1, "", "_leave_task"], [128, 12, 1, "", "_register_task"], [128, 12, 1, "", "_unregister_task"], [139, 12, 1, "", "all_tasks"], [139, 12, 1, "", "as_completed"], [139, 12, 1, "", "create_eager_task_factory"], [137, 12, 1, "", "create_subprocess_exec"], [137, 12, 1, "", "create_subprocess_shell"], [139, 12, 1, "", "create_task"], [139, 12, 1, "", "current_task"], [139, 12, 1, "", "eager_task_factory"], [129, 12, 1, "", "ensure_future"], [139, 12, 1, "", "gather"], [132, 12, 1, "", "get_child_watcher"], [126, 12, 1, "", "get_event_loop"], [132, 12, 1, "", "get_event_loop_policy"], [126, 12, 1, "", "get_running_loop"], [139, 12, 1, "", "iscoroutine"], [129, 12, 1, "", "isfuture"], [126, 12, 1, "", "new_event_loop"], [136, 12, 1, "", "open_connection"], [136, 12, 1, "", "open_unix_connection"], [135, 12, 1, "", "run"], [139, 12, 1, "", "run_coroutine_threadsafe"], [132, 12, 1, "", "set_child_watcher"], [126, 12, 1, "", "set_event_loop"], [132, 12, 1, "", "set_event_loop_policy"], [139, 12, 1, "", "shield"], [139, 12, 1, "", "sleep"], [136, 12, 1, "", "start_server"], [136, 12, 1, "", "start_unix_server"], [139, 12, 1, "", "timeout"], [139, 12, 1, "", "timeout_at"], [139, 12, 1, "", "to_thread"], [139, 12, 1, "", "wait"], [139, 12, 1, "", "wait_for"], [129, 12, 1, "", "wrap_future"]], "asyncio.AbstractChildWatcher": [[132, 8, 1, "", "add_child_handler"], [132, 8, 1, "", "attach_loop"], [132, 8, 1, "", "close"], [132, 8, 1, "", "is_active"], [132, 8, 1, "", "remove_child_handler"]], "asyncio.AbstractEventLoopPolicy": [[132, 8, 1, "", "get_child_watcher"], [132, 8, 1, "", "get_event_loop"], [132, 8, 1, "", "new_event_loop"], [132, 8, 1, "", "set_child_watcher"], [132, 8, 1, "", "set_event_loop"]], "asyncio.Barrier": [[138, 8, 1, "", "abort"], [138, 7, 1, "", "broken"], [138, 7, 1, "", "n_waiting"], [138, 7, 1, "", "parties"], [138, 8, 1, "", "reset"], [138, 8, 1, "", "wait"]], "asyncio.BaseProtocol": [[133, 8, 1, "", "connection_lost"], [133, 8, 1, "", "connection_made"], [133, 8, 1, "", "pause_writing"], [133, 8, 1, "", "resume_writing"]], "asyncio.BaseTransport": [[133, 8, 1, "", "close"], [133, 8, 1, "", "get_extra_info"], [133, 8, 1, "", "get_protocol"], [133, 8, 1, "", "is_closing"], [133, 8, 1, "", "set_protocol"]], "asyncio.BufferedProtocol": [[133, 8, 1, "", "buffer_updated"], [133, 8, 1, "", "eof_received"], [133, 8, 1, "", "get_buffer"]], "asyncio.Condition": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "notify"], [138, 8, 1, "", "notify_all"], [138, 8, 1, "", "release"], [138, 8, 1, "", "wait"], [138, 8, 1, "", "wait_for"]], "asyncio.DatagramProtocol": [[133, 8, 1, "", "datagram_received"], [133, 8, 1, "", "error_received"]], "asyncio.DatagramTransport": [[133, 8, 1, "", "abort"], [133, 8, 1, "", "sendto"]], "asyncio.Event": [[138, 8, 1, "", "clear"], [138, 8, 1, "", "is_set"], [138, 8, 1, "", "set"], [138, 8, 1, "", "wait"]], "asyncio.Future": [[128, 8, 1, "", "__init__"], [129, 8, 1, "", "add_done_callback"], [129, 8, 1, "", "cancel"], [129, 8, 1, "", "cancelled"], [129, 8, 1, "", "done"], [129, 8, 1, "", "exception"], [129, 8, 1, "", "get_loop"], [129, 8, 1, "", "remove_done_callback"], [129, 8, 1, "", "result"], [129, 8, 1, "", "set_exception"], [129, 8, 1, "", "set_result"]], "asyncio.Handle": [[126, 8, 1, "", "cancel"], [126, 8, 1, "", "cancelled"], [126, 8, 1, "", "get_context"]], "asyncio.IncompleteReadError": [[127, 7, 1, "", "expected"], [127, 7, 1, "", "partial"]], "asyncio.LimitOverrunError": [[127, 7, 1, "", "consumed"]], "asyncio.Lock": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "release"]], "asyncio.Protocol": [[133, 8, 1, "", "data_received"], [133, 8, 1, "", "eof_received"]], "asyncio.Queue": [[134, 8, 1, "", "empty"], [134, 8, 1, "", "full"], [134, 8, 1, "", "get"], [134, 8, 1, "", "get_nowait"], [134, 8, 1, "", "join"], [134, 7, 1, "", "maxsize"], [134, 8, 1, "", "put"], [134, 8, 1, "", "put_nowait"], [134, 8, 1, "", "qsize"], [134, 8, 1, "", "task_done"]], "asyncio.ReadTransport": [[133, 8, 1, "", "is_reading"], [133, 8, 1, "", "pause_reading"], [133, 8, 1, "", "resume_reading"]], "asyncio.Runner": [[135, 8, 1, "", "close"], [135, 8, 1, "", "get_loop"], [135, 8, 1, "", "run"]], "asyncio.Semaphore": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "release"]], "asyncio.Server": [[126, 8, 1, "", "close"], [126, 8, 1, "", "get_loop"], [126, 8, 1, "", "is_serving"], [126, 8, 1, "", "serve_forever"], [126, 7, 1, "", "sockets"], [126, 8, 1, "", "start_serving"], [126, 8, 1, "", "wait_closed"]], "asyncio.StreamReader": [[136, 8, 1, "", "at_eof"], [136, 8, 1, "", "feed_eof"], [136, 8, 1, "", "read"], [136, 8, 1, "", "readexactly"], [136, 8, 1, "", "readline"], [136, 8, 1, "", "readuntil"]], "asyncio.StreamWriter": [[136, 8, 1, "", "can_write_eof"], [136, 8, 1, "", "close"], [136, 8, 1, "", "drain"], [136, 8, 1, "", "get_extra_info"], [136, 8, 1, "", "is_closing"], [136, 8, 1, "", "start_tls"], [136, 7, 1, "", "transport"], [136, 8, 1, "", "wait_closed"], [136, 8, 1, "", "write"], [136, 8, 1, "", "write_eof"], [136, 8, 1, "", "writelines"]], "asyncio.SubprocessProtocol": [[133, 8, 1, "", "pipe_connection_lost"], [133, 8, 1, "", "pipe_data_received"], [133, 8, 1, "", "process_exited"]], "asyncio.SubprocessTransport": [[133, 8, 1, "", "close"], [133, 8, 1, "", "get_pid"], [133, 8, 1, "", "get_pipe_transport"], [133, 8, 1, "", "get_returncode"], [133, 8, 1, "", "kill"], [133, 8, 1, "", "send_signal"], [133, 8, 1, "", "terminate"]], "asyncio.Task": [[128, 8, 1, "", "__init__"], [139, 8, 1, "", "add_done_callback"], [139, 8, 1, "", "cancel"], [139, 8, 1, "", "cancelled"], [139, 8, 1, "", "cancelling"], [139, 8, 1, "", "done"], [139, 8, 1, "", "exception"], [139, 8, 1, "", "get_context"], [139, 8, 1, "", "get_coro"], [139, 8, 1, "", "get_name"], [139, 8, 1, "", "get_stack"], [139, 8, 1, "", "print_stack"], [139, 8, 1, "", "remove_done_callback"], [139, 8, 1, "", "result"], [139, 8, 1, "", "set_name"], [139, 8, 1, "", "uncancel"]], "asyncio.TaskGroup": [[139, 8, 1, "", "create_task"]], "asyncio.Timeout": [[139, 8, 1, "", "expired"], [139, 8, 1, "", "reschedule"], [139, 8, 1, "", "when"]], "asyncio.TimerHandle": [[126, 8, 1, "", "when"]], "asyncio.WriteTransport": [[133, 8, 1, "", "abort"], [133, 8, 1, "", "can_write_eof"], [133, 8, 1, "", "get_write_buffer_limits"], [133, 8, 1, "", "get_write_buffer_size"], [133, 8, 1, "", "set_write_buffer_limits"], [133, 8, 1, "", "write"], [133, 8, 1, "", "write_eof"], [133, 8, 1, "", "writelines"]], "asyncio.loop": [[126, 8, 1, "", "add_reader"], [126, 8, 1, "", "add_signal_handler"], [126, 8, 1, "", "add_writer"], [126, 8, 1, "", "call_at"], [126, 8, 1, "", "call_exception_handler"], [126, 8, 1, "", "call_later"], [126, 8, 1, "", "call_soon"], [126, 8, 1, "", "call_soon_threadsafe"], [126, 8, 1, "", "close"], [126, 8, 1, "", "connect_accepted_socket"], [126, 8, 1, "", "connect_read_pipe"], [126, 8, 1, "", "connect_write_pipe"], [126, 8, 1, "", "create_connection"], [126, 8, 1, "", "create_datagram_endpoint"], [126, 8, 1, "", "create_future"], [126, 8, 1, "", "create_server"], [126, 8, 1, "", "create_task"], [126, 8, 1, "", "create_unix_connection"], [126, 8, 1, "", "create_unix_server"], [126, 8, 1, "", "default_exception_handler"], [126, 8, 1, "", "get_debug"], [126, 8, 1, "", "get_exception_handler"], [126, 8, 1, "", "get_task_factory"], [126, 8, 1, "", "getaddrinfo"], [126, 8, 1, "", "getnameinfo"], [126, 8, 1, "", "is_closed"], [126, 8, 1, "", "is_running"], [126, 8, 1, "", "remove_reader"], [126, 8, 1, "", "remove_signal_handler"], [126, 8, 1, "", "remove_writer"], [126, 8, 1, "", "run_forever"], [126, 8, 1, "", "run_in_executor"], [126, 8, 1, "", "run_until_complete"], [126, 8, 1, "", "sendfile"], [126, 8, 1, "", "set_debug"], [126, 8, 1, "", "set_default_executor"], [126, 8, 1, "", "set_exception_handler"], [126, 8, 1, "", "set_task_factory"], [126, 8, 1, "", "shutdown_asyncgens"], [126, 8, 1, "", "shutdown_default_executor"], [126, 7, 1, "", "slow_callback_duration"], [126, 8, 1, "", "sock_accept"], [126, 8, 1, "", "sock_connect"], [126, 8, 1, "", "sock_recv"], [126, 8, 1, "", "sock_recv_into"], [126, 8, 1, "", "sock_recvfrom"], [126, 8, 1, "", "sock_recvfrom_into"], [126, 8, 1, "", "sock_sendall"], [126, 8, 1, "", "sock_sendfile"], [126, 8, 1, "", "sock_sendto"], [126, 8, 1, "", "start_tls"], [126, 8, 1, "", "stop"], [126, 8, 1, "", "subprocess_exec"], [126, 8, 1, "", "subprocess_shell"], [126, 8, 1, "", "time"]], "asyncio.subprocess": [[137, 9, 1, "", "DEVNULL"], [137, 9, 1, "", "PIPE"], [137, 11, 1, "", "Process"], [137, 9, 1, "", "STDOUT"]], "asyncio.subprocess.Process": [[137, 8, 1, "", "communicate"], [137, 8, 1, "", "kill"], [137, 7, 1, "", "pid"], [137, 7, 1, "", "returncode"], [137, 8, 1, "", "send_signal"], [137, 7, 1, "", "stderr"], [137, 7, 1, "", "stdin"], [137, 7, 1, "", "stdout"], [137, 8, 1, "", "terminate"], [137, 8, 1, "", "wait"]], "atexit": [[140, 12, 1, "", "register"], [140, 12, 1, "", "unregister"]], "audioop": [[141, 12, 1, "", "add"], [141, 12, 1, "", "adpcm2lin"], [141, 12, 1, "", "alaw2lin"], [141, 12, 1, "", "avg"], [141, 12, 1, "", "avgpp"], [141, 12, 1, "", "bias"], [141, 12, 1, "", "byteswap"], [141, 12, 1, "", "cross"], [141, 6, 1, "", "error"], [141, 12, 1, "", "findfactor"], [141, 12, 1, "", "findfit"], [141, 12, 1, "", "findmax"], [141, 12, 1, "", "getsample"], [141, 12, 1, "", "lin2adpcm"], [141, 12, 1, "", "lin2alaw"], [141, 12, 1, "", "lin2lin"], [141, 12, 1, "", "lin2ulaw"], [141, 12, 1, "", "max"], [141, 12, 1, "", "maxpp"], [141, 12, 1, "", "minmax"], [141, 12, 1, "", "mul"], [141, 12, 1, "", "ratecv"], [141, 12, 1, "", "reverse"], [141, 12, 1, "", "rms"], [141, 12, 1, "", "tomono"], [141, 12, 1, "", "tostereo"], [141, 12, 1, "", "ulaw2lin"]], "base64": [[143, 12, 1, "", "a85decode"], [143, 12, 1, "", "a85encode"], [143, 12, 1, "", "b16decode"], [143, 12, 1, "", "b16encode"], [143, 12, 1, "", "b32decode"], [143, 12, 1, "", "b32encode"], [143, 12, 1, "", "b32hexdecode"], [143, 12, 1, "", "b32hexencode"], [143, 12, 1, "", "b64decode"], [143, 12, 1, "", "b64encode"], [143, 12, 1, "", "b85decode"], [143, 12, 1, "", "b85encode"], [143, 12, 1, "", "decode"], [143, 12, 1, "", "decodebytes"], [143, 12, 1, "", "encode"], [143, 12, 1, "", "encodebytes"], [143, 12, 1, "", "standard_b64decode"], [143, 12, 1, "", "standard_b64encode"], [143, 12, 1, "", "urlsafe_b64decode"], [143, 12, 1, "", "urlsafe_b64encode"]], "bdb": [[144, 11, 1, "", "Bdb"], [144, 6, 1, "", "BdbQuit"], [144, 11, 1, "", "Breakpoint"], [144, 12, 1, "", "checkfuncname"], [144, 12, 1, "", "effective"], [144, 12, 1, "", "set_trace"]], "bdb.Bdb": [[144, 8, 1, "", "break_anywhere"], [144, 8, 1, "", "break_here"], [144, 8, 1, "", "canonic"], [144, 8, 1, "", "clear_all_breaks"], [144, 8, 1, "", "clear_all_file_breaks"], [144, 8, 1, "", "clear_bpbynumber"], [144, 8, 1, "", "clear_break"], [144, 8, 1, "", "dispatch_call"], [144, 8, 1, "", "dispatch_exception"], [144, 8, 1, "", "dispatch_line"], [144, 8, 1, "", "dispatch_return"], [144, 8, 1, "", "do_clear"], [144, 8, 1, "", "format_stack_entry"], [144, 8, 1, "", "get_all_breaks"], [144, 8, 1, "", "get_bpbynumber"], [144, 8, 1, "", "get_break"], [144, 8, 1, "", "get_breaks"], [144, 8, 1, "", "get_file_breaks"], [144, 8, 1, "", "get_stack"], [144, 8, 1, "", "is_skipped_line"], [144, 8, 1, "", "reset"], [144, 8, 1, "", "run"], [144, 8, 1, "", "runcall"], [144, 8, 1, "", "runctx"], [144, 8, 1, "", "runeval"], [144, 8, 1, "", "set_break"], [144, 8, 1, "", "set_continue"], [144, 8, 1, "", "set_next"], [144, 8, 1, "", "set_quit"], [144, 8, 1, "", "set_return"], [144, 8, 1, "", "set_step"], [144, 8, 1, "", "set_trace"], [144, 8, 1, "", "set_until"], [144, 8, 1, "", "stop_here"], [144, 8, 1, "", "trace_dispatch"], [144, 8, 1, "", "user_call"], [144, 8, 1, "", "user_exception"], [144, 8, 1, "", "user_line"], [144, 8, 1, "", "user_return"]], "bdb.Breakpoint": [[144, 7, 1, "", "bpbynumber"], [144, 8, 1, "", "bpformat"], [144, 7, 1, "", "bplist"], [144, 8, 1, "", "bpprint"], [144, 7, 1, "", "cond"], [144, 8, 1, "", "deleteMe"], [144, 8, 1, "", "disable"], [144, 8, 1, "", "enable"], [144, 7, 1, "", "enabled"], [144, 7, 1, "", "file"], [144, 7, 1, "", "funcname"], [144, 7, 1, "", "hits"], [144, 7, 1, "", "ignore"], [144, 7, 1, "", "line"], [144, 7, 1, "", "temporary"]], "binascii": [[146, 6, 1, "", "Error"], [146, 6, 1, "", "Incomplete"], [146, 12, 1, "", "a2b_base64"], [146, 12, 1, "", "a2b_hex"], [146, 12, 1, "", "a2b_qp"], [146, 12, 1, "", "a2b_uu"], [146, 12, 1, "", "b2a_base64"], [146, 12, 1, "", "b2a_hex"], [146, 12, 1, "", "b2a_qp"], [146, 12, 1, "", "b2a_uu"], [146, 12, 1, "", "crc32"], [146, 12, 1, "", "crc_hqx"], [146, 12, 1, "", "hexlify"], [146, 12, 1, "", "unhexlify"]], "bisect": [[147, 12, 1, "", "bisect"], [147, 12, 1, "", "bisect_left"], [147, 12, 1, "", "bisect_right"], [147, 12, 1, "", "insort"], [147, 12, 1, "", "insort_left"], [147, 12, 1, "", "insort_right"]], "bytearray": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "decode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "bytes": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "decode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "bz2": [[149, 11, 1, "", "BZ2Compressor"], [149, 11, 1, "", "BZ2Decompressor"], [149, 11, 1, "", "BZ2File"], [149, 12, 1, "", "compress"], [149, 12, 1, "", "decompress"], [149, 12, 1, "", "open"]], "bz2.BZ2Compressor": [[149, 8, 1, "", "compress"], [149, 8, 1, "", "flush"]], "bz2.BZ2Decompressor": [[149, 8, 1, "", "decompress"], [149, 7, 1, "", "eof"], [149, 7, 1, "", "needs_input"], [149, 7, 1, "", "unused_data"]], "bz2.BZ2File": [[149, 8, 1, "", "fileno"], [149, 8, 1, "", "peek"], [149, 8, 1, "", "read1"], [149, 8, 1, "", "readable"], [149, 8, 1, "", "readinto"], [149, 8, 1, "", "seekable"], [149, 8, 1, "", "writable"]], "calendar": [[150, 9, 1, "", "APRIL"], [150, 9, 1, "", "AUGUST"], [150, 11, 1, "", "Calendar"], [150, 9, 1, "", "DECEMBER"], [150, 11, 1, "", "Day"], [150, 9, 1, "", "FEBRUARY"], [150, 9, 1, "", "FRIDAY"], [150, 11, 1, "", "HTMLCalendar"], [150, 6, 1, "", "IllegalMonthError"], [150, 6, 1, "", "IllegalWeekdayError"], [150, 9, 1, "", "JANUARY"], [150, 9, 1, "", "JULY"], [150, 9, 1, "", "JUNE"], [150, 11, 1, "", "LocaleHTMLCalendar"], [150, 11, 1, "", "LocaleTextCalendar"], [150, 9, 1, "", "MARCH"], [150, 9, 1, "", "MAY"], [150, 9, 1, "", "MONDAY"], [150, 11, 1, "", "Month"], [150, 9, 1, "", "NOVEMBER"], [150, 9, 1, "", "OCTOBER"], [150, 9, 1, "", "SATURDAY"], [150, 9, 1, "", "SEPTEMBER"], [150, 9, 1, "", "SUNDAY"], [150, 9, 1, "", "THURSDAY"], [150, 9, 1, "", "TUESDAY"], [150, 11, 1, "", "TextCalendar"], [150, 9, 1, "", "WEDNESDAY"], [150, 12, 1, "", "calendar"], [150, 9, 1, "", "day_abbr"], [150, 9, 1, "", "day_name"], [150, 12, 1, "", "firstweekday"], [150, 12, 1, "", "isleap"], [150, 12, 1, "", "leapdays"], [150, 12, 1, "", "month"], [150, 9, 1, "", "month_abbr"], [150, 9, 1, "", "month_name"], [150, 12, 1, "", "monthcalendar"], [150, 12, 1, "", "monthrange"], [150, 12, 1, "", "prcal"], [150, 12, 1, "", "prmonth"], [150, 12, 1, "", "setfirstweekday"], [150, 12, 1, "", "timegm"], [150, 12, 1, "", "weekday"], [150, 12, 1, "", "weekheader"], [150, 14, 1, "cmdoption-calendar-css", "--css"], [150, 14, 1, "cmdoption-calendar-encoding", "--encoding"], [150, 14, 1, "cmdoption-calendar-help", "--help"], [150, 14, 1, "cmdoption-calendar-lines", "--lines"], [150, 14, 1, "cmdoption-calendar-locale", "--locale"], [150, 14, 1, "cmdoption-calendar-months", "--months"], [150, 14, 1, "cmdoption-calendar-spacing", "--spacing"], [150, 14, 1, "cmdoption-calendar-type", "--type"], [150, 14, 1, "cmdoption-calendar-width", "--width"], [150, 14, 1, "cmdoption-calendar-locale", "-L"], [150, 14, 1, "cmdoption-calendar-css", "-c"], [150, 14, 1, "cmdoption-calendar-encoding", "-e"], [150, 14, 1, "cmdoption-calendar-help", "-h"], [150, 14, 1, "cmdoption-calendar-lines", "-l"], [150, 14, 1, "cmdoption-calendar-months", "-m"], [150, 14, 1, "cmdoption-calendar-spacing", "-s"], [150, 14, 1, "cmdoption-calendar-type", "-t"], [150, 14, 1, "cmdoption-calendar-width", "-w"], [150, 14, 1, "cmdoption-calendar-arg-month", "month"], [150, 14, 1, "cmdoption-calendar-arg-year", "year"]], "calendar.Calendar": [[150, 8, 1, "", "itermonthdates"], [150, 8, 1, "", "itermonthdays"], [150, 8, 1, "", "itermonthdays2"], [150, 8, 1, "", "itermonthdays3"], [150, 8, 1, "", "itermonthdays4"], [150, 8, 1, "", "iterweekdays"], [150, 8, 1, "", "monthdatescalendar"], [150, 8, 1, "", "monthdays2calendar"], [150, 8, 1, "", "monthdayscalendar"], [150, 8, 1, "", "yeardatescalendar"], [150, 8, 1, "", "yeardays2calendar"], [150, 8, 1, "", "yeardayscalendar"]], "calendar.HTMLCalendar": [[150, 7, 1, "", "cssclass_month"], [150, 7, 1, "", "cssclass_month_head"], [150, 7, 1, "", "cssclass_noday"], [150, 7, 1, "", "cssclass_year"], [150, 7, 1, "", "cssclass_year_head"], [150, 7, 1, "", "cssclasses"], [150, 7, 1, "", "cssclasses_weekday_head"], [150, 8, 1, "", "formatmonth"], [150, 8, 1, "", "formatmonthname"], [150, 8, 1, "", "formatyear"], [150, 8, 1, "", "formatyearpage"]], "calendar.IllegalMonthError": [[150, 7, 1, "", "month"]], "calendar.IllegalWeekdayError": [[150, 7, 1, "", "weekday"]], "calendar.TextCalendar": [[150, 8, 1, "", "formatmonth"], [150, 8, 1, "", "formatyear"], [150, 8, 1, "", "prmonth"], [150, 8, 1, "", "pryear"]], "cgi": [[151, 12, 1, "", "parse"], [151, 12, 1, "", "parse_header"], [151, 12, 1, "", "parse_multipart"], [151, 12, 1, "", "print_directory"], [151, 12, 1, "", "print_environ"], [151, 12, 1, "", "print_environ_usage"], [151, 12, 1, "", "print_form"], [151, 12, 1, "", "test"]], "cgi.FieldStorage": [[151, 8, 1, "", "getfirst"], [151, 8, 1, "", "getlist"]], "cgitb": [[152, 12, 1, "", "enable"], [152, 12, 1, "", "handler"], [152, 12, 1, "", "html"], [152, 12, 1, "", "text"]], "chunk": [[153, 11, 1, "", "Chunk"]], "chunk.Chunk": [[153, 8, 1, "", "close"], [153, 8, 1, "", "getname"], [153, 8, 1, "", "getsize"], [153, 8, 1, "", "isatty"], [153, 8, 1, "", "read"], [153, 8, 1, "", "seek"], [153, 8, 1, "", "skip"], [153, 8, 1, "", "tell"]], "class": [[344, 7, 1, "", "__bases__"], [428, 8, 1, "", "__instancecheck__"], [344, 7, 1, "", "__mro__"], [428, 8, 1, "", "__subclasscheck__"], [344, 8, 1, "", "__subclasses__"], [344, 8, 1, "", "mro"]], "cmath": [[154, 12, 1, "", "acos"], [154, 12, 1, "", "acosh"], [154, 12, 1, "", "asin"], [154, 12, 1, "", "asinh"], [154, 12, 1, "", "atan"], [154, 12, 1, "", "atanh"], [154, 12, 1, "", "cos"], [154, 12, 1, "", "cosh"], [154, 9, 1, "", "e"], [154, 12, 1, "", "exp"], [154, 9, 1, "", "inf"], [154, 9, 1, "", "infj"], [154, 12, 1, "", "isclose"], [154, 12, 1, "", "isfinite"], [154, 12, 1, "", "isinf"], [154, 12, 1, "", "isnan"], [154, 12, 1, "", "log"], [154, 12, 1, "", "log10"], [154, 9, 1, "", "nan"], [154, 9, 1, "", "nanj"], [154, 12, 1, "", "phase"], [154, 9, 1, "", "pi"], [154, 12, 1, "", "polar"], [154, 12, 1, "", "rect"], [154, 12, 1, "", "sin"], [154, 12, 1, "", "sinh"], [154, 12, 1, "", "sqrt"], [154, 12, 1, "", "tan"], [154, 12, 1, "", "tanh"], [154, 9, 1, "", "tau"]], "cmd": [[155, 11, 1, "", "Cmd"]], "cmd.Cmd": [[155, 8, 1, "", "cmdloop"], [155, 7, 1, "", "cmdqueue"], [155, 8, 1, "", "columnize"], [155, 8, 1, "", "completedefault"], [155, 8, 1, "", "default"], [155, 8, 1, "", "do_help"], [155, 7, 1, "", "doc_header"], [155, 8, 1, "", "emptyline"], [155, 7, 1, "", "identchars"], [155, 7, 1, "", "intro"], [155, 7, 1, "", "lastcmd"], [155, 7, 1, "", "misc_header"], [155, 8, 1, "", "onecmd"], [155, 8, 1, "", "postcmd"], [155, 8, 1, "", "postloop"], [155, 8, 1, "", "precmd"], [155, 8, 1, "", "preloop"], [155, 7, 1, "", "prompt"], [155, 7, 1, "", "ruler"], [155, 7, 1, "", "undoc_header"], [155, 7, 1, "", "use_rawinput"]], "code": [[157, 11, 1, "", "InteractiveConsole"], [157, 11, 1, "", "InteractiveInterpreter"], [157, 12, 1, "", "compile_command"], [157, 12, 1, "", "interact"]], "code.InteractiveConsole": [[157, 8, 1, "", "interact"], [157, 8, 1, "", "push"], [157, 8, 1, "", "raw_input"], [157, 8, 1, "", "resetbuffer"]], "code.InteractiveInterpreter": [[157, 8, 1, "", "runcode"], [157, 8, 1, "", "runsource"], [157, 8, 1, "", "showsyntaxerror"], [157, 8, 1, "", "showtraceback"], [157, 8, 1, "", "write"]], "codecs": [[158, 9, 1, "", "BOM"], [158, 9, 1, "", "BOM_BE"], [158, 9, 1, "", "BOM_LE"], [158, 9, 1, "", "BOM_UTF16"], [158, 9, 1, "", "BOM_UTF16_BE"], [158, 9, 1, "", "BOM_UTF16_LE"], [158, 9, 1, "", "BOM_UTF32"], [158, 9, 1, "", "BOM_UTF32_BE"], [158, 9, 1, "", "BOM_UTF32_LE"], [158, 9, 1, "", "BOM_UTF8"], [158, 11, 1, "", "Codec"], [158, 11, 1, "", "CodecInfo"], [158, 12, 1, "", "EncodedFile"], [158, 11, 1, "", "IncrementalDecoder"], [158, 11, 1, "", "IncrementalEncoder"], [158, 11, 1, "", "StreamReader"], [158, 11, 1, "", "StreamReaderWriter"], [158, 11, 1, "", "StreamRecoder"], [158, 11, 1, "", "StreamWriter"], [158, 12, 1, "", "backslashreplace_errors"], [158, 12, 1, "", "decode"], [158, 12, 1, "", "encode"], [158, 12, 1, "", "getdecoder"], [158, 12, 1, "", "getencoder"], [158, 12, 1, "", "getincrementaldecoder"], [158, 12, 1, "", "getincrementalencoder"], [158, 12, 1, "", "getreader"], [158, 12, 1, "", "getwriter"], [158, 12, 1, "", "ignore_errors"], [158, 12, 1, "", "iterdecode"], [158, 12, 1, "", "iterencode"], [158, 12, 1, "", "lookup"], [158, 12, 1, "", "lookup_error"], [158, 12, 1, "", "namereplace_errors"], [158, 12, 1, "", "open"], [158, 12, 1, "", "register"], [158, 12, 1, "", "register_error"], [158, 12, 1, "", "replace_errors"], [158, 12, 1, "", "strict_errors"], [158, 12, 1, "", "unregister"], [158, 12, 1, "", "xmlcharrefreplace_errors"]], "codecs.Codec": [[158, 8, 1, "", "decode"], [158, 8, 1, "", "encode"]], "codecs.CodecInfo": [[158, 7, 1, "", "decode"], [158, 7, 1, "", "encode"], [158, 7, 1, "", "incrementaldecoder"], [158, 7, 1, "", "incrementalencoder"], [158, 7, 1, "", "name"], [158, 7, 1, "", "streamreader"], [158, 7, 1, "", "streamwriter"]], "codecs.IncrementalDecoder": [[158, 8, 1, "", "decode"], [158, 8, 1, "", "getstate"], [158, 8, 1, "", "reset"], [158, 8, 1, "", "setstate"]], "codecs.IncrementalEncoder": [[158, 8, 1, "", "encode"], [158, 8, 1, "", "getstate"], [158, 8, 1, "", "reset"], [158, 8, 1, "", "setstate"]], "codecs.StreamReader": [[158, 8, 1, "", "read"], [158, 8, 1, "", "readline"], [158, 8, 1, "", "readlines"], [158, 8, 1, "", "reset"]], "codecs.StreamWriter": [[158, 8, 1, "", "reset"], [158, 8, 1, "", "write"], [158, 8, 1, "", "writelines"]], "codeobject": [[428, 7, 1, "", "co_argcount"], [428, 7, 1, "", "co_cellvars"], [428, 7, 1, "", "co_code"], [428, 7, 1, "", "co_consts"], [428, 7, 1, "", "co_filename"], [428, 7, 1, "", "co_firstlineno"], [428, 7, 1, "", "co_flags"], [428, 7, 1, "", "co_freevars"], [428, 7, 1, "", "co_kwonlyargcount"], [428, 8, 1, "", "co_lines"], [428, 7, 1, "", "co_lnotab"], [428, 7, 1, "", "co_name"], [428, 7, 1, "", "co_names"], [428, 7, 1, "", "co_nlocals"], [428, 8, 1, "", "co_positions"], [428, 7, 1, "", "co_posonlyargcount"], [428, 7, 1, "", "co_qualname"], [428, 7, 1, "", "co_stacksize"], [428, 7, 1, "", "co_varnames"], [428, 8, 1, "", "replace"]], "codeop": [[159, 11, 1, "", "CommandCompiler"], [159, 11, 1, "", "Compile"], [159, 12, 1, "", "compile_command"]], "collections": [[160, 11, 1, "", "ChainMap"], [160, 11, 1, "", "Counter"], [160, 11, 1, "", "OrderedDict"], [160, 11, 1, "", "UserDict"], [160, 11, 1, "", "UserList"], [160, 11, 1, "", "UserString"], [161, 10, 0, "-", "abc"], [160, 11, 1, "", "defaultdict"], [160, 11, 1, "", "deque"], [160, 12, 1, "", "namedtuple"]], "collections.ChainMap": [[160, 7, 1, "", "maps"], [160, 8, 1, "", "new_child"], [160, 7, 1, "", "parents"]], "collections.Counter": [[160, 8, 1, "", "elements"], [160, 8, 1, "", "fromkeys"], [160, 8, 1, "", "most_common"], [160, 8, 1, "", "subtract"], [160, 8, 1, "", "total"], [160, 8, 1, "", "update"]], "collections.OrderedDict": [[160, 8, 1, "", "move_to_end"], [160, 8, 1, "", "popitem"]], "collections.UserDict": [[160, 7, 1, "", "data"]], "collections.UserList": [[160, 7, 1, "", "data"]], "collections.UserString": [[160, 7, 1, "", "data"]], "collections.abc": [[161, 11, 1, "", "AsyncGenerator"], [161, 11, 1, "", "AsyncIterable"], [161, 11, 1, "", "AsyncIterator"], [161, 11, 1, "", "Awaitable"], [161, 11, 1, "", "Buffer"], [161, 11, 1, "", "ByteString"], [161, 11, 1, "", "Callable"], [161, 11, 1, "", "Collection"], [161, 11, 1, "", "Container"], [161, 11, 1, "", "Coroutine"], [161, 11, 1, "", "Generator"], [161, 11, 1, "", "Hashable"], [161, 11, 1, "", "ItemsView"], [161, 11, 1, "", "Iterable"], [161, 11, 1, "", "Iterator"], [161, 11, 1, "", "KeysView"], [161, 11, 1, "", "Mapping"], [161, 11, 1, "", "MappingView"], [161, 11, 1, "", "MutableMapping"], [161, 11, 1, "", "MutableSequence"], [161, 11, 1, "", "MutableSet"], [161, 11, 1, "", "Reversible"], [161, 11, 1, "", "Sequence"], [161, 11, 1, "", "Set"], [161, 11, 1, "", "Sized"], [161, 11, 1, "", "ValuesView"]], "collections.defaultdict": [[160, 8, 1, "", "__missing__"], [160, 7, 1, "", "default_factory"]], "collections.deque": [[160, 8, 1, "", "append"], [160, 8, 1, "", "appendleft"], [160, 8, 1, "", "clear"], [160, 8, 1, "", "copy"], [160, 8, 1, "", "count"], [160, 8, 1, "", "extend"], [160, 8, 1, "", "extendleft"], [160, 8, 1, "", "index"], [160, 8, 1, "", "insert"], [160, 7, 1, "", "maxlen"], [160, 8, 1, "", "pop"], [160, 8, 1, "", "popleft"], [160, 8, 1, "", "remove"], [160, 8, 1, "", "reverse"], [160, 8, 1, "", "rotate"]], "collections.somenamedtuple": [[160, 8, 1, "", "_asdict"], [160, 7, 1, "", "_field_defaults"], [160, 7, 1, "", "_fields"], [160, 8, 1, "", "_make"], [160, 8, 1, "", "_replace"]], "colorsys": [[162, 12, 1, "", "hls_to_rgb"], [162, 12, 1, "", "hsv_to_rgb"], [162, 12, 1, "", "rgb_to_hls"], [162, 12, 1, "", "rgb_to_hsv"], [162, 12, 1, "", "rgb_to_yiq"], [162, 12, 1, "", "yiq_to_rgb"]], "compileall": [[163, 12, 1, "", "compile_dir"], [163, 12, 1, "", "compile_file"], [163, 12, 1, "", "compile_path"], [163, 14, 1, "cmdoption-compileall-hardlink-dupes", "--hardlink-dupes"], [163, 14, 1, "cmdoption-compileall-invalidation-mode", "--invalidation-mode"], [163, 14, 1, "cmdoption-compileall-b", "-b"], [163, 14, 1, "cmdoption-compileall-d", "-d"], [163, 14, 1, "cmdoption-compileall-e", "-e"], [163, 14, 1, "cmdoption-compileall-f", "-f"], [163, 14, 1, "cmdoption-compileall-i", "-i"], [163, 14, 1, "cmdoption-compileall-j", "-j"], [163, 14, 1, "cmdoption-compileall-l", "-l"], [163, 14, 1, "cmdoption-compileall-o", "-o"], [163, 14, 1, "cmdoption-compileall-p", "-p"], [163, 14, 1, "cmdoption-compileall-q", "-q"], [163, 14, 1, "cmdoption-compileall-r", "-r"], [163, 14, 1, "cmdoption-compileall-s", "-s"], [163, 14, 1, "cmdoption-compileall-x", "-x"], [163, 14, 1, "cmdoption-compileall-arg-directory", "directory"], [163, 14, 1, "cmdoption-compileall-arg-file", "file"]], "concurrent": [[166, 10, 0, "-", "futures"]], "concurrent.futures": [[166, 9, 1, "", "ALL_COMPLETED"], [166, 6, 1, "", "BrokenExecutor"], [166, 6, 1, "", "CancelledError"], [166, 11, 1, "", "Executor"], [166, 9, 1, "", "FIRST_COMPLETED"], [166, 9, 1, "", "FIRST_EXCEPTION"], [166, 11, 1, "", "Future"], [166, 6, 1, "", "InvalidStateError"], [166, 11, 1, "", "ProcessPoolExecutor"], [166, 11, 1, "", "ThreadPoolExecutor"], [166, 6, 1, "", "TimeoutError"], [166, 12, 1, "", "as_completed"], [166, 12, 1, "", "wait"]], "concurrent.futures.Executor": [[166, 8, 1, "", "map"], [166, 8, 1, "", "shutdown"], [166, 8, 1, "", "submit"]], "concurrent.futures.Future": [[166, 8, 1, "", "add_done_callback"], [166, 8, 1, "", "cancel"], [166, 8, 1, "", "cancelled"], [166, 8, 1, "", "done"], [166, 8, 1, "", "exception"], [166, 8, 1, "", "result"], [166, 8, 1, "", "running"], [166, 8, 1, "", "set_exception"], [166, 8, 1, "", "set_result"], [166, 8, 1, "", "set_running_or_notify_cancel"]], "concurrent.futures.process": [[166, 6, 1, "", "BrokenProcessPool"]], "concurrent.futures.thread": [[166, 6, 1, "", "BrokenThreadPool"]], "configparser": [[167, 11, 1, "", "BasicInterpolation"], [167, 11, 1, "", "ConfigParser"], [167, 6, 1, "", "DuplicateOptionError"], [167, 6, 1, "", "DuplicateSectionError"], [167, 6, 1, "", "Error"], [167, 11, 1, "", "ExtendedInterpolation"], [167, 6, 1, "", "InterpolationDepthError"], [167, 6, 1, "", "InterpolationError"], [167, 6, 1, "", "InterpolationMissingOptionError"], [167, 6, 1, "", "InterpolationSyntaxError"], [167, 9, 1, "", "MAX_INTERPOLATION_DEPTH"], [167, 6, 1, "", "MissingSectionHeaderError"], [167, 6, 1, "", "NoOptionError"], [167, 6, 1, "", "NoSectionError"], [167, 6, 1, "", "ParsingError"], [167, 11, 1, "", "RawConfigParser"]], "configparser.ConfigParser": [[167, 7, 1, "", "BOOLEAN_STATES"], [167, 7, 1, "", "SECTCRE"], [167, 8, 1, "", "add_section"], [167, 8, 1, "", "defaults"], [167, 8, 1, "", "get"], [167, 8, 1, "", "getboolean"], [167, 8, 1, "", "getfloat"], [167, 8, 1, "", "getint"], [167, 8, 1, "", "has_option"], [167, 8, 1, "", "has_section"], [167, 8, 1, "", "items"], [167, 8, 1, "", "options"], [167, 8, 1, "", "optionxform"], [167, 8, 1, "", "read"], [167, 8, 1, "", "read_dict"], [167, 8, 1, "", "read_file"], [167, 8, 1, "", "read_string"], [167, 8, 1, "", "remove_option"], [167, 8, 1, "", "remove_section"], [167, 8, 1, "", "sections"], [167, 8, 1, "", "set"], [167, 8, 1, "", "write"]], "configparser.RawConfigParser": [[167, 8, 1, "", "add_section"], [167, 8, 1, "", "set"]], "container": [[344, 8, 1, "", "__iter__"]], "contextlib": [[169, 11, 1, "", "AbstractAsyncContextManager"], [169, 11, 1, "", "AbstractContextManager"], [169, 11, 1, "", "AsyncContextDecorator"], [169, 11, 1, "", "AsyncExitStack"], [169, 11, 1, "", "ContextDecorator"], [169, 11, 1, "", "ExitStack"], [169, 12, 1, "", "aclosing"], [169, 12, 1, "", "asynccontextmanager"], [169, 12, 1, "", "chdir"], [169, 12, 1, "", "closing"], [169, 12, 1, "", "contextmanager"], [169, 12, 1, "", "nullcontext"], [169, 12, 1, "", "redirect_stderr"], [169, 12, 1, "", "redirect_stdout"], [169, 12, 1, "", "suppress"]], "contextlib.AsyncExitStack": [[169, 8, 1, "", "aclose"], [169, 8, 1, "", "enter_async_context"], [169, 8, 1, "", "push_async_callback"], [169, 8, 1, "", "push_async_exit"]], "contextlib.ExitStack": [[169, 8, 1, "", "callback"], [169, 8, 1, "", "close"], [169, 8, 1, "", "enter_context"], [169, 8, 1, "", "pop_all"], [169, 8, 1, "", "push"]], "contextmanager": [[344, 8, 1, "", "__enter__"], [344, 8, 1, "", "__exit__"]], "contextvars": [[170, 11, 1, "", "Context"], [170, 11, 1, "", "ContextVar"], [170, 11, 1, "", "Token"], [170, 12, 1, "", "copy_context"]], "contextvars.Context": [[170, 8, 1, "", "copy"], [170, 8, 1, "", "get"], [170, 8, 1, "", "items"], [170, 8, 1, "", "keys"], [170, 8, 1, "", "run"], [170, 8, 1, "", "values"]], "contextvars.ContextVar": [[170, 8, 1, "", "get"], [170, 7, 1, "", "name"], [170, 8, 1, "", "reset"], [170, 8, 1, "", "set"]], "contextvars.Token": [[170, 7, 1, "", "MISSING"], [170, 7, 1, "", "old_value"], [170, 7, 1, "", "var"]], "copy": [[171, 6, 1, "", "Error"], [171, 12, 1, "", "copy"], [171, 12, 1, "", "deepcopy"]], "copyreg": [[172, 12, 1, "", "constructor"], [172, 12, 1, "", "pickle"]], "coroutine": [[428, 8, 1, "", "close"], [428, 8, 1, "", "send"], [428, 8, 1, "", "throw"]], "crypt": [[173, 9, 1, "", "METHOD_BLOWFISH"], [173, 9, 1, "", "METHOD_CRYPT"], [173, 9, 1, "", "METHOD_MD5"], [173, 9, 1, "", "METHOD_SHA256"], [173, 9, 1, "", "METHOD_SHA512"], [173, 12, 1, "", "crypt"], [173, 7, 1, "", "methods"], [173, 12, 1, "", "mksalt"]], "csv": [[175, 11, 1, "", "Dialect"], [175, 11, 1, "", "DictReader"], [175, 11, 1, "", "DictWriter"], [175, 6, 1, "", "Error"], [175, 9, 1, "", "QUOTE_ALL"], [175, 9, 1, "", "QUOTE_MINIMAL"], [175, 9, 1, "", "QUOTE_NONE"], [175, 9, 1, "", "QUOTE_NONNUMERIC"], [175, 9, 1, "", "QUOTE_NOTNULL"], [175, 9, 1, "", "QUOTE_STRINGS"], [175, 11, 1, "", "Sniffer"], [175, 11, 1, "", "excel"], [175, 11, 1, "", "excel_tab"], [175, 12, 1, "", "field_size_limit"], [175, 12, 1, "", "get_dialect"], [175, 12, 1, "", "list_dialects"], [175, 12, 1, "", "reader"], [175, 12, 1, "", "register_dialect"], [175, 11, 1, "", "unix_dialect"], [175, 12, 1, "", "unregister_dialect"], [175, 12, 1, "", "writer"]], "csv.Dialect": [[175, 7, 1, "", "delimiter"], [175, 7, 1, "", "doublequote"], [175, 7, 1, "", "escapechar"], [175, 7, 1, "", "lineterminator"], [175, 7, 1, "", "quotechar"], [175, 7, 1, "", "quoting"], [175, 7, 1, "", "skipinitialspace"], [175, 7, 1, "", "strict"]], "csv.DictReader": [[175, 7, 1, "", "fieldnames"]], "csv.DictWriter": [[175, 8, 1, "", "writeheader"]], "csv.Sniffer": [[175, 8, 1, "", "has_header"], [175, 8, 1, "", "sniff"]], "csv.csvreader": [[175, 8, 1, "", "__next__"], [175, 7, 1, "", "dialect"], [175, 7, 1, "", "line_num"]], "csv.csvwriter": [[175, 7, 1, "", "dialect"], [175, 8, 1, "", "writerow"], [175, 8, 1, "", "writerows"]], "ctypes": [[176, 6, 1, "", "ArgumentError"], [176, 11, 1, "", "Array"], [176, 11, 1, "", "BigEndianStructure"], [176, 11, 1, "", "BigEndianUnion"], [176, 11, 1, "", "CDLL"], [176, 12, 1, "", "CFUNCTYPE"], [176, 12, 1, "", "DllCanUnloadNow"], [176, 12, 1, "", "DllGetClassObject"], [176, 12, 1, "", "FormatError"], [176, 12, 1, "", "GetLastError"], [176, 11, 1, "", "HRESULT"], [176, 11, 1, "", "LibraryLoader"], [176, 11, 1, "", "LittleEndianStructure"], [176, 11, 1, "", "LittleEndianUnion"], [176, 11, 1, "", "OleDLL"], [176, 12, 1, "", "POINTER"], [176, 12, 1, "", "PYFUNCTYPE"], [176, 11, 1, "", "PyDLL"], [176, 11, 1, "", "Structure"], [176, 11, 1, "", "Union"], [176, 12, 1, "", "WINFUNCTYPE"], [176, 11, 1, "", "WinDLL"], [176, 12, 1, "", "WinError"], [176, 11, 1, "", "_CData"], [176, 11, 1, "", "_FuncPtr"], [176, 11, 1, "", "_Pointer"], [176, 11, 1, "", "_SimpleCData"], [176, 12, 1, "", "addressof"], [176, 12, 1, "", "alignment"], [176, 12, 1, "", "byref"], [176, 11, 1, "", "c_bool"], [176, 11, 1, "", "c_byte"], [176, 11, 1, "", "c_char"], [176, 11, 1, "", "c_char_p"], [176, 11, 1, "", "c_double"], [176, 11, 1, "", "c_float"], [176, 11, 1, "", "c_int"], [176, 11, 1, "", "c_int16"], [176, 11, 1, "", "c_int32"], [176, 11, 1, "", "c_int64"], [176, 11, 1, "", "c_int8"], [176, 11, 1, "", "c_long"], [176, 11, 1, "", "c_longdouble"], [176, 11, 1, "", "c_longlong"], [176, 11, 1, "", "c_short"], [176, 11, 1, "", "c_size_t"], [176, 11, 1, "", "c_ssize_t"], [176, 11, 1, "", "c_time_t"], [176, 11, 1, "", "c_ubyte"], [176, 11, 1, "", "c_uint"], [176, 11, 1, "", "c_uint16"], [176, 11, 1, "", "c_uint32"], [176, 11, 1, "", "c_uint64"], [176, 11, 1, "", "c_uint8"], [176, 11, 1, "", "c_ulong"], [176, 11, 1, "", "c_ulonglong"], [176, 11, 1, "", "c_ushort"], [176, 11, 1, "", "c_void_p"], [176, 11, 1, "", "c_wchar"], [176, 11, 1, "", "c_wchar_p"], [176, 12, 1, "", "cast"], [176, 12, 1, "", "create_string_buffer"], [176, 12, 1, "", "create_unicode_buffer"], [176, 12, 1, "", "get_errno"], [176, 12, 1, "", "get_last_error"], [176, 12, 1, "", "memmove"], [176, 12, 1, "", "memset"], [176, 12, 1, "", "pointer"], [176, 11, 1, "", "py_object"], [176, 12, 1, "", "resize"], [176, 12, 1, "", "set_errno"], [176, 12, 1, "", "set_last_error"], [176, 12, 1, "", "sizeof"], [176, 12, 1, "", "string_at"], [176, 12, 1, "", "wstring_at"]], "ctypes.Array": [[176, 7, 1, "", "_length_"], [176, 7, 1, "", "_type_"]], "ctypes.LibraryLoader": [[176, 8, 1, "", "LoadLibrary"]], "ctypes.PyDLL": [[176, 7, 1, "", "_handle"], [176, 7, 1, "", "_name"]], "ctypes.Structure": [[176, 7, 1, "", "_anonymous_"], [176, 7, 1, "", "_fields_"], [176, 7, 1, "", "_pack_"]], "ctypes._CData": [[176, 7, 1, "", "_b_base_"], [176, 7, 1, "", "_b_needsfree_"], [176, 7, 1, "", "_objects"], [176, 8, 1, "", "from_address"], [176, 8, 1, "", "from_buffer"], [176, 8, 1, "", "from_buffer_copy"], [176, 8, 1, "", "from_param"], [176, 8, 1, "", "in_dll"]], "ctypes._FuncPtr": [[176, 7, 1, "", "argtypes"], [176, 7, 1, "", "errcheck"], [176, 7, 1, "", "restype"]], "ctypes._Pointer": [[176, 7, 1, "", "_type_"], [176, 7, 1, "", "contents"]], "ctypes._SimpleCData": [[176, 7, 1, "", "value"]], "ctypes.util": [[176, 12, 1, "", "find_library"], [176, 12, 1, "", "find_msvcrt"]], "curses": [[177, 9, 1, "", "ACS_BBSS"], [177, 9, 1, "", "ACS_BLOCK"], [177, 9, 1, "", "ACS_BOARD"], [177, 9, 1, "", "ACS_BSBS"], [177, 9, 1, "", "ACS_BSSB"], [177, 9, 1, "", "ACS_BSSS"], [177, 9, 1, "", "ACS_BTEE"], [177, 9, 1, "", "ACS_BULLET"], [177, 9, 1, "", "ACS_CKBOARD"], [177, 9, 1, "", "ACS_DARROW"], [177, 9, 1, "", "ACS_DEGREE"], [177, 9, 1, "", "ACS_DIAMOND"], [177, 9, 1, "", "ACS_GEQUAL"], [177, 9, 1, "", "ACS_HLINE"], [177, 9, 1, "", "ACS_LANTERN"], [177, 9, 1, "", "ACS_LARROW"], [177, 9, 1, "", "ACS_LEQUAL"], [177, 9, 1, "", "ACS_LLCORNER"], [177, 9, 1, "", "ACS_LRCORNER"], [177, 9, 1, "", "ACS_LTEE"], [177, 9, 1, "", "ACS_NEQUAL"], [177, 9, 1, "", "ACS_PI"], [177, 9, 1, "", "ACS_PLMINUS"], [177, 9, 1, "", "ACS_PLUS"], [177, 9, 1, "", "ACS_RARROW"], [177, 9, 1, "", "ACS_RTEE"], [177, 9, 1, "", "ACS_S1"], [177, 9, 1, "", "ACS_S3"], [177, 9, 1, "", "ACS_S7"], [177, 9, 1, "", "ACS_S9"], [177, 9, 1, "", "ACS_SBBS"], [177, 9, 1, "", "ACS_SBSB"], [177, 9, 1, "", "ACS_SBSS"], [177, 9, 1, "", "ACS_SSBB"], [177, 9, 1, "", "ACS_SSBS"], [177, 9, 1, "", "ACS_SSSB"], [177, 9, 1, "", "ACS_SSSS"], [177, 9, 1, "", "ACS_STERLING"], [177, 9, 1, "", "ACS_TTEE"], [177, 9, 1, "", "ACS_UARROW"], [177, 9, 1, "", "ACS_ULCORNER"], [177, 9, 1, "", "ACS_URCORNER"], [177, 9, 1, "", "ACS_VLINE"], [177, 9, 1, "", "A_ALTCHARSET"], [177, 9, 1, "", "A_ATTRIBUTES"], [177, 9, 1, "", "A_BLINK"], [177, 9, 1, "", "A_BOLD"], [177, 9, 1, "", "A_CHARTEXT"], [177, 9, 1, "", "A_COLOR"], [177, 9, 1, "", "A_DIM"], [177, 9, 1, "", "A_HORIZONTAL"], [177, 9, 1, "", "A_INVIS"], [177, 9, 1, "", "A_ITALIC"], [177, 9, 1, "", "A_LEFT"], [177, 9, 1, "", "A_LOW"], [177, 9, 1, "", "A_NORMAL"], [177, 9, 1, "", "A_PROTECT"], [177, 9, 1, "", "A_REVERSE"], [177, 9, 1, "", "A_RIGHT"], [177, 9, 1, "", "A_STANDOUT"], [177, 9, 1, "", "A_TOP"], [177, 9, 1, "", "A_UNDERLINE"], [177, 9, 1, "", "A_VERTICAL"], [177, 9, 1, "", "BUTTON_ALT"], [177, 9, 1, "", "BUTTON_CTRL"], [177, 9, 1, "", "BUTTON_SHIFT"], [177, 9, 1, "", "BUTTONn_CLICKED"], [177, 9, 1, "", "BUTTONn_DOUBLE_CLICKED"], [177, 9, 1, "", "BUTTONn_PRESSED"], [177, 9, 1, "", "BUTTONn_RELEASED"], [177, 9, 1, "", "BUTTONn_TRIPLE_CLICKED"], [177, 9, 1, "", "COLORS"], [177, 9, 1, "", "COLOR_BLACK"], [177, 9, 1, "", "COLOR_BLUE"], [177, 9, 1, "", "COLOR_CYAN"], [177, 9, 1, "", "COLOR_GREEN"], [177, 9, 1, "", "COLOR_MAGENTA"], [177, 9, 1, "", "COLOR_PAIRS"], [177, 9, 1, "", "COLOR_RED"], [177, 9, 1, "", "COLOR_WHITE"], [177, 9, 1, "", "COLOR_YELLOW"], [177, 9, 1, "", "COLS"], [177, 9, 1, "", "ERR"], [177, 9, 1, "", "KEY_A1"], [177, 9, 1, "", "KEY_A3"], [177, 9, 1, "", "KEY_B2"], [177, 9, 1, "", "KEY_BACKSPACE"], [177, 9, 1, "", "KEY_BEG"], [177, 9, 1, "", "KEY_BREAK"], [177, 9, 1, "", "KEY_BTAB"], [177, 9, 1, "", "KEY_C1"], [177, 9, 1, "", "KEY_C3"], [177, 9, 1, "", "KEY_CANCEL"], [177, 9, 1, "", "KEY_CATAB"], [177, 9, 1, "", "KEY_CLEAR"], [177, 9, 1, "", "KEY_CLOSE"], [177, 9, 1, "", "KEY_COMMAND"], [177, 9, 1, "", "KEY_COPY"], [177, 9, 1, "", "KEY_CREATE"], [177, 9, 1, "", "KEY_CTAB"], [177, 9, 1, "", "KEY_DC"], [177, 9, 1, "", "KEY_DL"], [177, 9, 1, "", "KEY_DOWN"], [177, 9, 1, "", "KEY_EIC"], [177, 9, 1, "", "KEY_END"], [177, 9, 1, "", "KEY_ENTER"], [177, 9, 1, "", "KEY_EOL"], [177, 9, 1, "", "KEY_EOS"], [177, 9, 1, "", "KEY_EXIT"], [177, 9, 1, "", "KEY_F0"], [177, 9, 1, "", "KEY_FIND"], [177, 9, 1, "", "KEY_Fn"], [177, 9, 1, "", "KEY_HELP"], [177, 9, 1, "", "KEY_HOME"], [177, 9, 1, "", "KEY_IC"], [177, 9, 1, "", "KEY_IL"], [177, 9, 1, "", "KEY_LEFT"], [177, 9, 1, "", "KEY_LL"], [177, 9, 1, "", "KEY_MARK"], [177, 9, 1, "", "KEY_MAX"], [177, 9, 1, "", "KEY_MESSAGE"], [177, 9, 1, "", "KEY_MIN"], [177, 9, 1, "", "KEY_MOUSE"], [177, 9, 1, "", "KEY_MOVE"], [177, 9, 1, "", "KEY_NEXT"], [177, 9, 1, "", "KEY_NPAGE"], [177, 9, 1, "", "KEY_OPEN"], [177, 9, 1, "", "KEY_OPTIONS"], [177, 9, 1, "", "KEY_PPAGE"], [177, 9, 1, "", "KEY_PREVIOUS"], [177, 9, 1, "", "KEY_PRINT"], [177, 9, 1, "", "KEY_REDO"], [177, 9, 1, "", "KEY_REFERENCE"], [177, 9, 1, "", "KEY_REFRESH"], [177, 9, 1, "", "KEY_REPLACE"], [177, 9, 1, "", "KEY_RESET"], [177, 9, 1, "", "KEY_RESIZE"], [177, 9, 1, "", "KEY_RESTART"], [177, 9, 1, "", "KEY_RESUME"], [177, 9, 1, "", "KEY_RIGHT"], [177, 9, 1, "", "KEY_SAVE"], [177, 9, 1, "", "KEY_SBEG"], [177, 9, 1, "", "KEY_SCANCEL"], [177, 9, 1, "", "KEY_SCOMMAND"], [177, 9, 1, "", "KEY_SCOPY"], [177, 9, 1, "", "KEY_SCREATE"], [177, 9, 1, "", "KEY_SDC"], [177, 9, 1, "", "KEY_SDL"], [177, 9, 1, "", "KEY_SELECT"], [177, 9, 1, "", "KEY_SEND"], [177, 9, 1, "", "KEY_SEOL"], [177, 9, 1, "", "KEY_SEXIT"], [177, 9, 1, "", "KEY_SF"], [177, 9, 1, "", "KEY_SFIND"], [177, 9, 1, "", "KEY_SHELP"], [177, 9, 1, "", "KEY_SHOME"], [177, 9, 1, "", "KEY_SIC"], [177, 9, 1, "", "KEY_SLEFT"], [177, 9, 1, "", "KEY_SMESSAGE"], [177, 9, 1, "", "KEY_SMOVE"], [177, 9, 1, "", "KEY_SNEXT"], [177, 9, 1, "", "KEY_SOPTIONS"], [177, 9, 1, "", "KEY_SPREVIOUS"], [177, 9, 1, "", "KEY_SPRINT"], [177, 9, 1, "", "KEY_SR"], [177, 9, 1, "", "KEY_SREDO"], [177, 9, 1, "", "KEY_SREPLACE"], [177, 9, 1, "", "KEY_SRESET"], [177, 9, 1, "", "KEY_SRIGHT"], [177, 9, 1, "", "KEY_SRSUME"], [177, 9, 1, "", "KEY_SSAVE"], [177, 9, 1, "", "KEY_SSUSPEND"], [177, 9, 1, "", "KEY_STAB"], [177, 9, 1, "", "KEY_SUNDO"], [177, 9, 1, "", "KEY_SUSPEND"], [177, 9, 1, "", "KEY_UNDO"], [177, 9, 1, "", "KEY_UP"], [177, 9, 1, "", "LINES"], [177, 9, 1, "", "OK"], [177, 9, 1, "", "__version__"], [178, 10, 0, "-", "ascii"], [177, 12, 1, "", "baudrate"], [177, 12, 1, "", "beep"], [177, 12, 1, "", "can_change_color"], [177, 12, 1, "", "cbreak"], [177, 12, 1, "", "color_content"], [177, 12, 1, "", "color_pair"], [177, 12, 1, "", "curs_set"], [177, 12, 1, "", "def_prog_mode"], [177, 12, 1, "", "def_shell_mode"], [177, 12, 1, "", "delay_output"], [177, 12, 1, "", "doupdate"], [177, 12, 1, "", "echo"], [177, 12, 1, "", "endwin"], [177, 12, 1, "", "erasechar"], [177, 6, 1, "", "error"], [177, 12, 1, "", "filter"], [177, 12, 1, "", "flash"], [177, 12, 1, "", "flushinp"], [177, 12, 1, "", "get_escdelay"], [177, 12, 1, "", "get_tabsize"], [177, 12, 1, "", "getmouse"], [177, 12, 1, "", "getsyx"], [177, 12, 1, "", "getwin"], [177, 12, 1, "", "halfdelay"], [177, 12, 1, "", "has_colors"], [177, 12, 1, "", "has_extended_color_support"], [177, 12, 1, "", "has_ic"], [177, 12, 1, "", "has_il"], [177, 12, 1, "", "has_key"], [177, 12, 1, "", "init_color"], [177, 12, 1, "", "init_pair"], [177, 12, 1, "", "initscr"], [177, 12, 1, "", "is_term_resized"], [177, 12, 1, "", "isendwin"], [177, 12, 1, "", "keyname"], [177, 12, 1, "", "killchar"], [177, 12, 1, "", "longname"], [177, 12, 1, "", "meta"], [177, 12, 1, "", "mouseinterval"], [177, 12, 1, "", "mousemask"], [177, 12, 1, "", "napms"], [177, 9, 1, "", "ncurses_version"], [177, 12, 1, "", "newpad"], [177, 12, 1, "", "newwin"], [177, 12, 1, "", "nl"], [177, 12, 1, "", "nocbreak"], [177, 12, 1, "", "noecho"], [177, 12, 1, "", "nonl"], [177, 12, 1, "", "noqiflush"], [177, 12, 1, "", "noraw"], [177, 12, 1, "", "pair_content"], [177, 12, 1, "", "pair_number"], [179, 10, 0, "-", "panel"], [177, 12, 1, "", "putp"], [177, 12, 1, "", "qiflush"], [177, 12, 1, "", "raw"], [177, 12, 1, "", "reset_prog_mode"], [177, 12, 1, "", "reset_shell_mode"], [177, 12, 1, "", "resetty"], [177, 12, 1, "", "resize_term"], [177, 12, 1, "", "resizeterm"], [177, 12, 1, "", "savetty"], [177, 12, 1, "", "set_escdelay"], [177, 12, 1, "", "set_tabsize"], [177, 12, 1, "", "setsyx"], [177, 12, 1, "", "setupterm"], [177, 12, 1, "", "start_color"], [177, 12, 1, "", "termattrs"], [177, 12, 1, "", "termname"], [177, 10, 0, "-", "textpad"], [177, 12, 1, "", "tigetflag"], [177, 12, 1, "", "tigetnum"], [177, 12, 1, "", "tigetstr"], [177, 12, 1, "", "tparm"], [177, 12, 1, "", "typeahead"], [177, 12, 1, "", "unctrl"], [177, 12, 1, "", "unget_wch"], [177, 12, 1, "", "ungetch"], [177, 12, 1, "", "ungetmouse"], [177, 12, 1, "", "update_lines_cols"], [177, 12, 1, "", "use_default_colors"], [177, 12, 1, "", "use_env"], [177, 9, 1, "", "version"], [177, 12, 1, "", "wrapper"]], "curses.ascii": [[178, 9, 1, "", "ACK"], [178, 9, 1, "", "BEL"], [178, 9, 1, "", "BS"], [178, 9, 1, "", "CAN"], [178, 9, 1, "", "CR"], [178, 9, 1, "", "DC1"], [178, 9, 1, "", "DC2"], [178, 9, 1, "", "DC3"], [178, 9, 1, "", "DC4"], [178, 9, 1, "", "DEL"], [178, 9, 1, "", "DLE"], [178, 9, 1, "", "EM"], [178, 9, 1, "", "ENQ"], [178, 9, 1, "", "EOT"], [178, 9, 1, "", "ESC"], [178, 9, 1, "", "ETB"], [178, 9, 1, "", "ETX"], [178, 9, 1, "", "FF"], [178, 9, 1, "", "FS"], [178, 9, 1, "", "GS"], [178, 9, 1, "", "HT"], [178, 9, 1, "", "LF"], [178, 9, 1, "", "NAK"], [178, 9, 1, "", "NL"], [178, 9, 1, "", "NUL"], [178, 9, 1, "", "RS"], [178, 9, 1, "", "SI"], [178, 9, 1, "", "SO"], [178, 9, 1, "", "SOH"], [178, 9, 1, "", "SP"], [178, 9, 1, "", "STX"], [178, 9, 1, "", "SUB"], [178, 9, 1, "", "SYN"], [178, 9, 1, "", "TAB"], [178, 9, 1, "", "US"], [178, 9, 1, "", "VT"], [178, 12, 1, "", "alt"], [178, 12, 1, "", "ascii"], [178, 9, 1, "", "controlnames"], [178, 12, 1, "", "ctrl"], [178, 12, 1, "", "isalnum"], [178, 12, 1, "", "isalpha"], [178, 12, 1, "", "isascii"], [178, 12, 1, "", "isblank"], [178, 12, 1, "", "iscntrl"], [178, 12, 1, "", "isctrl"], [178, 12, 1, "", "isdigit"], [178, 12, 1, "", "isgraph"], [178, 12, 1, "", "islower"], [178, 12, 1, "", "ismeta"], [178, 12, 1, "", "isprint"], [178, 12, 1, "", "ispunct"], [178, 12, 1, "", "isspace"], [178, 12, 1, "", "isupper"], [178, 12, 1, "", "isxdigit"], [178, 12, 1, "", "unctrl"]], "curses.panel": [[179, 12, 1, "", "bottom_panel"], [179, 12, 1, "", "new_panel"], [179, 12, 1, "", "top_panel"], [179, 12, 1, "", "update_panels"]], "curses.panel.Panel": [[179, 8, 1, "", "above"], [179, 8, 1, "", "below"], [179, 8, 1, "", "bottom"], [179, 8, 1, "", "hidden"], [179, 8, 1, "", "hide"], [179, 8, 1, "", "move"], [179, 8, 1, "", "replace"], [179, 8, 1, "", "set_userptr"], [179, 8, 1, "", "show"], [179, 8, 1, "", "top"], [179, 8, 1, "", "userptr"], [179, 8, 1, "", "window"]], "curses.textpad": [[177, 11, 1, "", "Textbox"], [177, 12, 1, "", "rectangle"]], "curses.textpad.Textbox": [[177, 8, 1, "", "do_command"], [177, 8, 1, "", "edit"], [177, 8, 1, "", "gather"], [177, 7, 1, "", "stripspaces"]], "curses.window": [[177, 8, 1, "", "addch"], [177, 8, 1, "", "addnstr"], [177, 8, 1, "", "addstr"], [177, 8, 1, "", "attroff"], [177, 8, 1, "", "attron"], [177, 8, 1, "", "attrset"], [177, 8, 1, "", "bkgd"], [177, 8, 1, "", "bkgdset"], [177, 8, 1, "", "border"], [177, 8, 1, "", "box"], [177, 8, 1, "", "chgat"], [177, 8, 1, "", "clear"], [177, 8, 1, "", "clearok"], [177, 8, 1, "", "clrtobot"], [177, 8, 1, "", "clrtoeol"], [177, 8, 1, "", "cursyncup"], [177, 8, 1, "", "delch"], [177, 8, 1, "", "deleteln"], [177, 8, 1, "", "derwin"], [177, 8, 1, "", "echochar"], [177, 8, 1, "", "enclose"], [177, 7, 1, "", "encoding"], [177, 8, 1, "", "erase"], [177, 8, 1, "", "get_wch"], [177, 8, 1, "", "getbegyx"], [177, 8, 1, "", "getbkgd"], [177, 8, 1, "", "getch"], [177, 8, 1, "", "getkey"], [177, 8, 1, "", "getmaxyx"], [177, 8, 1, "", "getparyx"], [177, 8, 1, "", "getstr"], [177, 8, 1, "", "getyx"], [177, 8, 1, "", "hline"], [177, 8, 1, "", "idcok"], [177, 8, 1, "", "idlok"], [177, 8, 1, "", "immedok"], [177, 8, 1, "", "inch"], [177, 8, 1, "", "insch"], [177, 8, 1, "", "insdelln"], [177, 8, 1, "", "insertln"], [177, 8, 1, "", "insnstr"], [177, 8, 1, "", "insstr"], [177, 8, 1, "", "instr"], [177, 8, 1, "", "is_linetouched"], [177, 8, 1, "", "is_wintouched"], [177, 8, 1, "", "keypad"], [177, 8, 1, "", "leaveok"], [177, 8, 1, "", "move"], [177, 8, 1, "", "mvderwin"], [177, 8, 1, "", "mvwin"], [177, 8, 1, "", "nodelay"], [177, 8, 1, "", "notimeout"], [177, 8, 1, "", "noutrefresh"], [177, 8, 1, "", "overlay"], [177, 8, 1, "", "overwrite"], [177, 8, 1, "", "putwin"], [177, 8, 1, "", "redrawln"], [177, 8, 1, "", "redrawwin"], [177, 8, 1, "", "refresh"], [177, 8, 1, "", "resize"], [177, 8, 1, "", "scroll"], [177, 8, 1, "", "scrollok"], [177, 8, 1, "", "setscrreg"], [177, 8, 1, "", "standend"], [177, 8, 1, "", "standout"], [177, 8, 1, "", "subpad"], [177, 8, 1, "", "subwin"], [177, 8, 1, "", "syncdown"], [177, 8, 1, "", "syncok"], [177, 8, 1, "", "syncup"], [177, 8, 1, "", "timeout"], [177, 8, 1, "", "touchline"], [177, 8, 1, "", "touchwin"], [177, 8, 1, "", "untouchwin"], [177, 8, 1, "", "vline"]], "dataclasses": [[181, 11, 1, "", "Field"], [181, 6, 1, "", "FrozenInstanceError"], [181, 9, 1, "", "KW_ONLY"], [181, 9, 1, "", "MISSING"], [181, 12, 1, "", "__post_init__"], [181, 12, 1, "", "asdict"], [181, 12, 1, "", "astuple"], [181, 12, 1, "", "dataclass"], [181, 12, 1, "", "field"], [181, 12, 1, "", "fields"], [181, 12, 1, "", "is_dataclass"], [181, 12, 1, "", "make_dataclass"], [181, 12, 1, "", "replace"]], "datetime": [[183, 9, 1, "", "MAXYEAR"], [183, 9, 1, "", "MINYEAR"], [183, 7, 1, "", "UTC"], [183, 11, 1, "", "date"], [183, 11, 1, "", "datetime"], [183, 11, 1, "", "time"], [183, 11, 1, "", "timedelta"], [183, 11, 1, "", "timezone"], [183, 11, 1, "", "tzinfo"]], "datetime.date": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "ctime"], [183, 7, 1, "", "day"], [183, 8, 1, "", "fromisocalendar"], [183, 8, 1, "", "fromisoformat"], [183, 8, 1, "", "fromordinal"], [183, 8, 1, "", "fromtimestamp"], [183, 8, 1, "", "isocalendar"], [183, 8, 1, "", "isoformat"], [183, 8, 1, "", "isoweekday"], [183, 7, 1, "", "max"], [183, 7, 1, "", "min"], [183, 7, 1, "", "month"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 8, 1, "", "strftime"], [183, 8, 1, "", "timetuple"], [183, 8, 1, "", "today"], [183, 8, 1, "", "toordinal"], [183, 8, 1, "", "weekday"], [183, 7, 1, "", "year"]], "datetime.datetime": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "astimezone"], [183, 8, 1, "", "combine"], [183, 8, 1, "", "ctime"], [183, 8, 1, "", "date"], [183, 7, 1, "", "day"], [183, 8, 1, "", "dst"], [183, 7, 1, "", "fold"], [183, 8, 1, "", "fromisocalendar"], [183, 8, 1, "", "fromisoformat"], [183, 8, 1, "", "fromordinal"], [183, 8, 1, "", "fromtimestamp"], [183, 7, 1, "", "hour"], [183, 8, 1, "", "isocalendar"], [183, 8, 1, "", "isoformat"], [183, 8, 1, "", "isoweekday"], [183, 7, 1, "", "max"], [183, 7, 1, "", "microsecond"], [183, 7, 1, "", "min"], [183, 7, 1, "", "minute"], [183, 7, 1, "", "month"], [183, 8, 1, "", "now"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 7, 1, "", "second"], [183, 8, 1, "", "strftime"], [183, 8, 1, "", "strptime"], [183, 8, 1, "", "time"], [183, 8, 1, "", "timestamp"], [183, 8, 1, "", "timetuple"], [183, 8, 1, "", "timetz"], [183, 8, 1, "", "today"], [183, 8, 1, "", "toordinal"], [183, 7, 1, "", "tzinfo"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcfromtimestamp"], [183, 8, 1, "", "utcnow"], [183, 8, 1, "", "utcoffset"], [183, 8, 1, "", "utctimetuple"], [183, 8, 1, "", "weekday"], [183, 7, 1, "", "year"]], "datetime.time": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "dst"], [183, 7, 1, "", "fold"], [183, 8, 1, "", "fromisoformat"], [183, 7, 1, "", "hour"], [183, 8, 1, "", "isoformat"], [183, 7, 1, "", "max"], [183, 7, 1, "", "microsecond"], [183, 7, 1, "", "min"], [183, 7, 1, "", "minute"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 7, 1, "", "second"], [183, 8, 1, "", "strftime"], [183, 7, 1, "", "tzinfo"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcoffset"]], "datetime.timedelta": [[183, 7, 1, "", "max"], [183, 7, 1, "", "min"], [183, 7, 1, "", "resolution"], [183, 8, 1, "", "total_seconds"]], "datetime.timezone": [[183, 8, 1, "", "dst"], [183, 8, 1, "", "fromutc"], [183, 8, 1, "", "tzname"], [183, 7, 1, "", "utc"], [183, 8, 1, "", "utcoffset"]], "datetime.tzinfo": [[183, 8, 1, "", "dst"], [183, 8, 1, "", "fromutc"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcoffset"]], "dbm": [[184, 10, 0, "-", "dumb"], [184, 6, 1, "", "error"], [184, 10, 0, "-", "gnu"], [184, 10, 0, "-", "ndbm"], [184, 12, 1, "", "open"], [184, 12, 1, "", "whichdb"]], "dbm.dumb": [[184, 6, 1, "", "error"], [184, 12, 1, "", "open"]], "dbm.dumb.dumbdbm": [[184, 8, 1, "", "close"], [184, 8, 1, "", "sync"]], "dbm.gnu": [[184, 6, 1, "", "error"], [184, 12, 1, "", "open"], [184, 9, 1, "", "open_flags"]], "dbm.gnu.gdbm": [[184, 8, 1, "", "close"], [184, 8, 1, "", "firstkey"], [184, 8, 1, "", "nextkey"], [184, 8, 1, "", "reorganize"], [184, 8, 1, "", "sync"]], "dbm.ndbm": [[184, 6, 1, "", "error"], [184, 9, 1, "", "library"], [184, 12, 1, "", "open"]], "dbm.ndbm.ndbm": [[184, 8, 1, "", "close"]], "decimal": [[186, 11, 1, "", "BasicContext"], [186, 11, 1, "", "Clamped"], [186, 11, 1, "", "Context"], [186, 11, 1, "", "Decimal"], [186, 11, 1, "", "DecimalException"], [186, 11, 1, "", "DefaultContext"], [186, 11, 1, "", "DivisionByZero"], [186, 11, 1, "", "ExtendedContext"], [186, 11, 1, "", "FloatOperation"], [186, 9, 1, "", "HAVE_CONTEXTVAR"], [186, 9, 1, "", "HAVE_THREADS"], [186, 11, 1, "", "Inexact"], [186, 11, 1, "", "InvalidOperation"], [186, 9, 1, "", "MAX_EMAX"], [186, 9, 1, "", "MAX_PREC"], [186, 9, 1, "", "MIN_EMIN"], [186, 9, 1, "", "MIN_ETINY"], [186, 11, 1, "", "Overflow"], [186, 9, 1, "", "ROUND_05UP"], [186, 9, 1, "", "ROUND_CEILING"], [186, 9, 1, "", "ROUND_DOWN"], [186, 9, 1, "", "ROUND_FLOOR"], [186, 9, 1, "", "ROUND_HALF_DOWN"], [186, 9, 1, "", "ROUND_HALF_EVEN"], [186, 9, 1, "", "ROUND_HALF_UP"], [186, 9, 1, "", "ROUND_UP"], [186, 11, 1, "", "Rounded"], [186, 11, 1, "", "Subnormal"], [186, 11, 1, "", "Underflow"], [186, 12, 1, "", "getcontext"], [186, 12, 1, "", "localcontext"], [186, 12, 1, "", "setcontext"]], "decimal.Context": [[186, 8, 1, "", "Etiny"], [186, 8, 1, "", "Etop"], [186, 8, 1, "", "abs"], [186, 8, 1, "", "add"], [186, 8, 1, "", "canonical"], [186, 8, 1, "", "clear_flags"], [186, 8, 1, "", "clear_traps"], [186, 8, 1, "", "compare"], [186, 8, 1, "", "compare_signal"], [186, 8, 1, "", "compare_total"], [186, 8, 1, "", "compare_total_mag"], [186, 8, 1, "", "copy"], [186, 8, 1, "", "copy_abs"], [186, 8, 1, "", "copy_decimal"], [186, 8, 1, "", "copy_negate"], [186, 8, 1, "", "copy_sign"], [186, 8, 1, "", "create_decimal"], [186, 8, 1, "", "create_decimal_from_float"], [186, 8, 1, "", "divide"], [186, 8, 1, "", "divide_int"], [186, 8, 1, "", "divmod"], [186, 8, 1, "", "exp"], [186, 8, 1, "", "fma"], [186, 8, 1, "", "is_canonical"], [186, 8, 1, "", "is_finite"], [186, 8, 1, "", "is_infinite"], [186, 8, 1, "", "is_nan"], [186, 8, 1, "", "is_normal"], [186, 8, 1, "", "is_qnan"], [186, 8, 1, "", "is_signed"], [186, 8, 1, "", "is_snan"], [186, 8, 1, "", "is_subnormal"], [186, 8, 1, "", "is_zero"], [186, 8, 1, "", "ln"], [186, 8, 1, "", "log10"], [186, 8, 1, "", "logb"], [186, 8, 1, "", "logical_and"], [186, 8, 1, "", "logical_invert"], [186, 8, 1, "", "logical_or"], [186, 8, 1, "", "logical_xor"], [186, 8, 1, "", "max"], [186, 8, 1, "", "max_mag"], [186, 8, 1, "", "min"], [186, 8, 1, "", "min_mag"], [186, 8, 1, "", "minus"], [186, 8, 1, "", "multiply"], [186, 8, 1, "", "next_minus"], [186, 8, 1, "", "next_plus"], [186, 8, 1, "", "next_toward"], [186, 8, 1, "", "normalize"], [186, 8, 1, "", "number_class"], [186, 8, 1, "", "plus"], [186, 8, 1, "", "power"], [186, 8, 1, "", "quantize"], [186, 8, 1, "", "radix"], [186, 8, 1, "", "remainder"], [186, 8, 1, "", "remainder_near"], [186, 8, 1, "", "rotate"], [186, 8, 1, "", "same_quantum"], [186, 8, 1, "", "scaleb"], [186, 8, 1, "", "shift"], [186, 8, 1, "", "sqrt"], [186, 8, 1, "", "subtract"], [186, 8, 1, "", "to_eng_string"], [186, 8, 1, "", "to_integral_exact"], [186, 8, 1, "", "to_sci_string"]], "decimal.Decimal": [[186, 8, 1, "", "adjusted"], [186, 8, 1, "", "as_integer_ratio"], [186, 8, 1, "", "as_tuple"], [186, 8, 1, "", "canonical"], [186, 8, 1, "", "compare"], [186, 8, 1, "", "compare_signal"], [186, 8, 1, "", "compare_total"], [186, 8, 1, "", "compare_total_mag"], [186, 8, 1, "", "conjugate"], [186, 8, 1, "", "copy_abs"], [186, 8, 1, "", "copy_negate"], [186, 8, 1, "", "copy_sign"], [186, 8, 1, "", "exp"], [186, 8, 1, "", "fma"], [186, 8, 1, "", "from_float"], [186, 8, 1, "", "is_canonical"], [186, 8, 1, "", "is_finite"], [186, 8, 1, "", "is_infinite"], [186, 8, 1, "", "is_nan"], [186, 8, 1, "", "is_normal"], [186, 8, 1, "", "is_qnan"], [186, 8, 1, "", "is_signed"], [186, 8, 1, "", "is_snan"], [186, 8, 1, "", "is_subnormal"], [186, 8, 1, "", "is_zero"], [186, 8, 1, "", "ln"], [186, 8, 1, "", "log10"], [186, 8, 1, "", "logb"], [186, 8, 1, "", "logical_and"], [186, 8, 1, "", "logical_invert"], [186, 8, 1, "", "logical_or"], [186, 8, 1, "", "logical_xor"], [186, 8, 1, "", "max"], [186, 8, 1, "", "max_mag"], [186, 8, 1, "", "min"], [186, 8, 1, "", "min_mag"], [186, 8, 1, "", "next_minus"], [186, 8, 1, "", "next_plus"], [186, 8, 1, "", "next_toward"], [186, 8, 1, "", "normalize"], [186, 8, 1, "", "number_class"], [186, 8, 1, "", "quantize"], [186, 8, 1, "", "radix"], [186, 8, 1, "", "remainder_near"], [186, 8, 1, "", "rotate"], [186, 8, 1, "", "same_quantum"], [186, 8, 1, "", "scaleb"], [186, 8, 1, "", "shift"], [186, 8, 1, "", "sqrt"], [186, 8, 1, "", "to_eng_string"], [186, 8, 1, "", "to_integral"], [186, 8, 1, "", "to_integral_exact"], [186, 8, 1, "", "to_integral_value"]], "definition": [[344, 7, 1, "", "__name__"], [344, 7, 1, "", "__qualname__"], [344, 7, 1, "", "__type_params__"]], "dict": [[344, 8, 1, "", "clear"], [344, 8, 1, "", "copy"], [344, 8, 1, "", "fromkeys"], [344, 8, 1, "", "get"], [344, 8, 1, "", "items"], [344, 8, 1, "", "keys"], [344, 8, 1, "", "pop"], [344, 8, 1, "", "popitem"], [344, 8, 1, "", "setdefault"], [344, 8, 1, "", "update"], [344, 8, 1, "", "values"]], "difflib": [[190, 11, 1, "", "Differ"], [190, 11, 1, "", "HtmlDiff"], [190, 12, 1, "", "IS_CHARACTER_JUNK"], [190, 12, 1, "", "IS_LINE_JUNK"], [190, 11, 1, "", "SequenceMatcher"], [190, 12, 1, "", "context_diff"], [190, 12, 1, "", "diff_bytes"], [190, 12, 1, "", "get_close_matches"], [190, 12, 1, "", "ndiff"], [190, 12, 1, "", "restore"], [190, 12, 1, "", "unified_diff"]], "difflib.Differ": [[190, 8, 1, "", "compare"]], "difflib.HtmlDiff": [[190, 8, 1, "", "__init__"], [190, 8, 1, "", "make_file"], [190, 8, 1, "", "make_table"]], "difflib.SequenceMatcher": [[190, 8, 1, "", "find_longest_match"], [190, 8, 1, "", "get_grouped_opcodes"], [190, 8, 1, "", "get_matching_blocks"], [190, 8, 1, "", "get_opcodes"], [190, 8, 1, "", "quick_ratio"], [190, 8, 1, "", "ratio"], [190, 8, 1, "", "real_quick_ratio"], [190, 8, 1, "", "set_seq1"], [190, 8, 1, "", "set_seq2"], [190, 8, 1, "", "set_seqs"]], "dis": [[191, 11, 1, "", "Bytecode"], [191, 11, 1, "", "Instruction"], [191, 11, 1, "", "Positions"], [191, 9, 1, "", "cmp_op"], [191, 12, 1, "", "code_info"], [191, 12, 1, "", "dis"], [191, 12, 1, "", "disassemble"], [191, 12, 1, "", "disco"], [191, 12, 1, "", "distb"], [191, 12, 1, "", "findlabels"], [191, 12, 1, "", "findlinestarts"], [191, 12, 1, "", "get_instructions"], [191, 9, 1, "", "hasarg"], [191, 9, 1, "", "hascompare"], [191, 9, 1, "", "hasconst"], [191, 9, 1, "", "hasexc"], [191, 9, 1, "", "hasfree"], [191, 9, 1, "", "hasjabs"], [191, 9, 1, "", "hasjrel"], [191, 9, 1, "", "haslocal"], [191, 9, 1, "", "hasname"], [191, 9, 1, "", "opmap"], [191, 9, 1, "", "opname"], [191, 12, 1, "", "show_code"], [191, 12, 1, "", "stack_effect"], [191, 14, 1, "cmdoption-dis-h", "--help"], [191, 14, 1, "cmdoption-dis-h", "-h"]], "dis.Bytecode": [[191, 9, 1, "", "codeobj"], [191, 8, 1, "", "dis"], [191, 9, 1, "", "first_line"], [191, 8, 1, "", "from_traceback"], [191, 8, 1, "", "info"]], "dis.Instruction": [[191, 9, 1, "", "arg"], [191, 9, 1, "", "argrepr"], [191, 9, 1, "", "argval"], [191, 9, 1, "", "is_jump_target"], [191, 9, 1, "", "offset"], [191, 9, 1, "", "opcode"], [191, 9, 1, "", "opname"], [191, 9, 1, "", "positions"], [191, 9, 1, "", "starts_line"]], "dis.Positions": [[191, 9, 1, "", "col_offset"], [191, 9, 1, "", "end_col_offset"], [191, 9, 1, "", "end_lineno"], [191, 9, 1, "", "lineno"]], "doctest": [[193, 9, 1, "", "COMPARISON_FLAGS"], [193, 9, 1, "", "DONT_ACCEPT_BLANKLINE"], [193, 9, 1, "", "DONT_ACCEPT_TRUE_FOR_1"], [193, 11, 1, "", "DebugRunner"], [193, 12, 1, "", "DocFileSuite"], [193, 11, 1, "", "DocTest"], [193, 6, 1, "", "DocTestFailure"], [193, 11, 1, "", "DocTestFinder"], [193, 11, 1, "", "DocTestParser"], [193, 11, 1, "", "DocTestRunner"], [193, 12, 1, "", "DocTestSuite"], [193, 9, 1, "", "ELLIPSIS"], [193, 11, 1, "", "Example"], [193, 9, 1, "", "FAIL_FAST"], [193, 9, 1, "", "IGNORE_EXCEPTION_DETAIL"], [193, 9, 1, "", "NORMALIZE_WHITESPACE"], [193, 11, 1, "", "OutputChecker"], [193, 9, 1, "", "REPORTING_FLAGS"], [193, 9, 1, "", "REPORT_CDIFF"], [193, 9, 1, "", "REPORT_NDIFF"], [193, 9, 1, "", "REPORT_ONLY_FIRST_FAILURE"], [193, 9, 1, "", "REPORT_UDIFF"], [193, 9, 1, "", "SKIP"], [193, 6, 1, "", "UnexpectedException"], [193, 12, 1, "", "debug"], [193, 12, 1, "", "debug_src"], [193, 6, 1, "", "failureException"], [193, 12, 1, "", "register_optionflag"], [193, 12, 1, "", "run_docstring_examples"], [193, 12, 1, "", "script_from_examples"], [193, 12, 1, "", "set_unittest_reportflags"], [193, 12, 1, "", "testfile"], [193, 12, 1, "", "testmod"], [193, 12, 1, "", "testsource"]], "doctest.DocTest": [[193, 7, 1, "", "docstring"], [193, 7, 1, "", "examples"], [193, 7, 1, "", "filename"], [193, 7, 1, "", "globs"], [193, 7, 1, "", "lineno"], [193, 7, 1, "", "name"]], "doctest.DocTestFailure": [[193, 7, 1, "", "example"], [193, 7, 1, "", "got"], [193, 7, 1, "", "test"]], "doctest.DocTestFinder": [[193, 8, 1, "", "find"]], "doctest.DocTestParser": [[193, 8, 1, "", "get_doctest"], [193, 8, 1, "", "get_examples"], [193, 8, 1, "", "parse"]], "doctest.DocTestRunner": [[193, 8, 1, "", "report_failure"], [193, 8, 1, "", "report_start"], [193, 8, 1, "", "report_success"], [193, 8, 1, "", "report_unexpected_exception"], [193, 8, 1, "", "run"], [193, 8, 1, "", "summarize"]], "doctest.Example": [[193, 7, 1, "", "exc_msg"], [193, 7, 1, "", "indent"], [193, 7, 1, "", "lineno"], [193, 7, 1, "", "options"], [193, 7, 1, "", "source"], [193, 7, 1, "", "want"]], "doctest.OutputChecker": [[193, 8, 1, "", "check_output"], [193, 8, 1, "", "output_difference"]], "doctest.UnexpectedException": [[193, 7, 1, "", "example"], [193, 7, 1, "", "exc_info"], [193, 7, 1, "", "test"]], "email": [[195, 10, 0, "-", "charset"], [197, 10, 0, "-", "contentmanager"], [198, 10, 0, "-", "encoders"], [199, 10, 0, "-", "errors"], [201, 10, 0, "-", "generator"], [202, 10, 0, "-", "header"], [203, 10, 0, "-", "headerregistry"], [204, 10, 0, "-", "iterators"], [205, 10, 0, "-", "message"], [207, 12, 1, "", "message_from_binary_file"], [207, 12, 1, "", "message_from_bytes"], [207, 12, 1, "", "message_from_file"], [207, 12, 1, "", "message_from_string"], [206, 10, 0, "-", "mime"], [207, 10, 0, "-", "parser"], [208, 10, 0, "-", "policy"], [209, 10, 0, "-", "utils"]], "email.charset": [[195, 11, 1, "", "Charset"], [195, 12, 1, "", "add_alias"], [195, 12, 1, "", "add_charset"], [195, 12, 1, "", "add_codec"]], "email.charset.Charset": [[195, 8, 1, "", "__eq__"], [195, 8, 1, "", "__ne__"], [195, 8, 1, "", "__str__"], [195, 8, 1, "", "body_encode"], [195, 7, 1, "", "body_encoding"], [195, 8, 1, "", "get_body_encoding"], [195, 8, 1, "", "get_output_charset"], [195, 8, 1, "", "header_encode"], [195, 8, 1, "", "header_encode_lines"], [195, 7, 1, "", "header_encoding"], [195, 7, 1, "", "input_charset"], [195, 7, 1, "", "input_codec"], [195, 7, 1, "", "output_charset"], [195, 7, 1, "", "output_codec"]], "email.contentmanager": [[197, 11, 1, "", "ContentManager"], [197, 8, 1, "", "get_content"], [197, 9, 1, "", "raw_data_manager"], [197, 8, 1, "", "set_content"]], "email.contentmanager.ContentManager": [[197, 8, 1, "", "add_get_handler"], [197, 8, 1, "", "add_set_handler"], [197, 8, 1, "", "get_content"], [197, 8, 1, "", "set_content"]], "email.encoders": [[198, 12, 1, "", "encode_7or8bit"], [198, 12, 1, "", "encode_base64"], [198, 12, 1, "", "encode_noop"], [198, 12, 1, "", "encode_quopri"]], "email.errors": [[199, 6, 1, "", "BoundaryError"], [199, 6, 1, "", "HeaderDefect"], [199, 6, 1, "", "HeaderParseError"], [199, 6, 1, "", "MessageDefect"], [199, 6, 1, "", "MessageError"], [199, 6, 1, "", "MessageParseError"], [199, 6, 1, "", "MultipartConversionError"]], "email.generator": [[201, 11, 1, "", "BytesGenerator"], [201, 11, 1, "", "DecodedGenerator"], [201, 11, 1, "", "Generator"]], "email.generator.BytesGenerator": [[201, 8, 1, "", "clone"], [201, 8, 1, "", "flatten"], [201, 8, 1, "", "write"]], "email.generator.Generator": [[201, 8, 1, "", "clone"], [201, 8, 1, "", "flatten"], [201, 8, 1, "", "write"]], "email.header": [[202, 11, 1, "", "Header"], [202, 12, 1, "", "decode_header"], [202, 12, 1, "", "make_header"]], "email.header.Header": [[202, 8, 1, "", "__eq__"], [202, 8, 1, "", "__ne__"], [202, 8, 1, "", "__str__"], [202, 8, 1, "", "append"], [202, 8, 1, "", "encode"]], "email.headerregistry": [[203, 11, 1, "", "Address"], [203, 11, 1, "", "AddressHeader"], [203, 11, 1, "", "BaseHeader"], [203, 11, 1, "", "ContentDispositionHeader"], [203, 11, 1, "", "ContentTransferEncoding"], [203, 11, 1, "", "ContentTypeHeader"], [203, 11, 1, "", "DateHeader"], [203, 11, 1, "", "Group"], [203, 11, 1, "", "HeaderRegistry"], [203, 11, 1, "", "MIMEVersionHeader"], [203, 11, 1, "", "ParameterizedMIMEHeader"], [203, 11, 1, "", "SingleAddressHeader"], [203, 11, 1, "", "UnstructuredHeader"]], "email.headerregistry.Address": [[203, 8, 1, "", "__str__"], [203, 7, 1, "", "addr_spec"], [203, 7, 1, "", "display_name"], [203, 7, 1, "", "domain"], [203, 7, 1, "", "username"]], "email.headerregistry.AddressHeader": [[203, 7, 1, "", "addresses"], [203, 7, 1, "", "groups"]], "email.headerregistry.BaseHeader": [[203, 7, 1, "", "defects"], [203, 8, 1, "", "fold"], [203, 7, 1, "", "max_count"], [203, 7, 1, "", "name"]], "email.headerregistry.ContentDispositionHeader": [[203, 7, 1, "", "content_disposition"]], "email.headerregistry.ContentTransferEncoding": [[203, 7, 1, "", "cte"]], "email.headerregistry.ContentTypeHeader": [[203, 7, 1, "", "content_type"], [203, 7, 1, "", "maintype"], [203, 7, 1, "", "subtype"]], "email.headerregistry.DateHeader": [[203, 7, 1, "", "datetime"]], "email.headerregistry.Group": [[203, 8, 1, "", "__str__"], [203, 7, 1, "", "addresses"], [203, 7, 1, "", "display_name"]], "email.headerregistry.HeaderRegistry": [[203, 8, 1, "", "__call__"], [203, 8, 1, "", "__getitem__"], [203, 8, 1, "", "map_to_type"]], "email.headerregistry.MIMEVersionHeader": [[203, 7, 1, "", "major"], [203, 7, 1, "", "minor"], [203, 7, 1, "", "version"]], "email.headerregistry.ParameterizedMIMEHeader": [[203, 7, 1, "", "params"]], "email.headerregistry.SingleAddressHeader": [[203, 7, 1, "", "address"]], "email.iterators": [[204, 12, 1, "", "_structure"], [204, 12, 1, "", "body_line_iterator"], [204, 12, 1, "", "typed_subpart_iterator"]], "email.message": [[205, 11, 1, "", "EmailMessage"], [205, 11, 1, "", "MIMEPart"], [196, 11, 1, "", "Message"]], "email.message.EmailMessage": [[205, 8, 1, "", "__bytes__"], [205, 8, 1, "", "__contains__"], [205, 8, 1, "", "__delitem__"], [205, 8, 1, "", "__getitem__"], [205, 8, 1, "", "__len__"], [205, 8, 1, "", "__setitem__"], [205, 8, 1, "", "__str__"], [205, 8, 1, "", "add_alternative"], [205, 8, 1, "", "add_attachment"], [205, 8, 1, "", "add_header"], [205, 8, 1, "", "add_related"], [205, 8, 1, "", "as_bytes"], [205, 8, 1, "", "as_string"], [205, 8, 1, "", "clear"], [205, 8, 1, "", "clear_content"], [205, 7, 1, "", "defects"], [205, 8, 1, "", "del_param"], [205, 7, 1, "", "epilogue"], [205, 8, 1, "", "get"], [205, 8, 1, "", "get_all"], [205, 8, 1, "", "get_body"], [205, 8, 1, "", "get_boundary"], [205, 8, 1, "", "get_charsets"], [205, 8, 1, "", "get_content"], [205, 8, 1, "", "get_content_charset"], [205, 8, 1, "", "get_content_disposition"], [205, 8, 1, "", "get_content_maintype"], [205, 8, 1, "", "get_content_subtype"], [205, 8, 1, "", "get_content_type"], [205, 8, 1, "", "get_default_type"], [205, 8, 1, "", "get_filename"], [205, 8, 1, "", "get_unixfrom"], [205, 8, 1, "", "is_attachment"], [205, 8, 1, "", "is_multipart"], [205, 8, 1, "", "items"], [205, 8, 1, "", "iter_attachments"], [205, 8, 1, "", "iter_parts"], [205, 8, 1, "", "keys"], [205, 8, 1, "", "make_alternative"], [205, 8, 1, "", "make_mixed"], [205, 8, 1, "", "make_related"], [205, 7, 1, "", "preamble"], [205, 8, 1, "", "replace_header"], [205, 8, 1, "", "set_boundary"], [205, 8, 1, "", "set_content"], [205, 8, 1, "", "set_default_type"], [205, 8, 1, "", "set_param"], [205, 8, 1, "", "set_unixfrom"], [205, 8, 1, "", "values"], [205, 8, 1, "", "walk"]], "email.message.Message": [[196, 8, 1, "", "__bytes__"], [196, 8, 1, "", "__contains__"], [196, 8, 1, "", "__delitem__"], [196, 8, 1, "", "__getitem__"], [196, 8, 1, "", "__len__"], [196, 8, 1, "", "__setitem__"], [196, 8, 1, "", "__str__"], [196, 8, 1, "", "add_header"], [196, 8, 1, "", "as_bytes"], [196, 8, 1, "", "as_string"], [196, 8, 1, "", "attach"], [196, 7, 1, "", "defects"], [196, 8, 1, "", "del_param"], [196, 7, 1, "", "epilogue"], [196, 8, 1, "", "get"], [196, 8, 1, "", "get_all"], [196, 8, 1, "", "get_boundary"], [196, 8, 1, "", "get_charset"], [196, 8, 1, "", "get_charsets"], [196, 8, 1, "", "get_content_charset"], [196, 8, 1, "", "get_content_disposition"], [196, 8, 1, "", "get_content_maintype"], [196, 8, 1, "", "get_content_subtype"], [196, 8, 1, "", "get_content_type"], [196, 8, 1, "", "get_default_type"], [196, 8, 1, "", "get_filename"], [196, 8, 1, "", "get_param"], [196, 8, 1, "", "get_params"], [196, 8, 1, "", "get_payload"], [196, 8, 1, "", "get_unixfrom"], [196, 8, 1, "", "is_multipart"], [196, 8, 1, "", "items"], [196, 8, 1, "", "keys"], [196, 7, 1, "", "preamble"], [196, 8, 1, "", "replace_header"], [196, 8, 1, "", "set_boundary"], [196, 8, 1, "", "set_charset"], [196, 8, 1, "", "set_default_type"], [196, 8, 1, "", "set_param"], [196, 8, 1, "", "set_payload"], [196, 8, 1, "", "set_type"], [196, 8, 1, "", "set_unixfrom"], [196, 8, 1, "", "values"], [196, 8, 1, "", "walk"]], "email.mime": [[206, 10, 0, "-", "application"], [206, 10, 0, "-", "audio"], [206, 10, 0, "-", "base"], [206, 10, 0, "-", "image"], [206, 10, 0, "-", "message"], [206, 10, 0, "-", "multipart"], [206, 10, 0, "-", "nonmultipart"], [206, 10, 0, "-", "text"]], "email.mime.application": [[206, 11, 1, "", "MIMEApplication"]], "email.mime.audio": [[206, 11, 1, "", "MIMEAudio"]], "email.mime.base": [[206, 11, 1, "", "MIMEBase"]], "email.mime.image": [[206, 11, 1, "", "MIMEImage"]], "email.mime.message": [[206, 11, 1, "", "MIMEMessage"]], "email.mime.multipart": [[206, 11, 1, "", "MIMEMultipart"]], "email.mime.nonmultipart": [[206, 11, 1, "", "MIMENonMultipart"]], "email.mime.text": [[206, 11, 1, "", "MIMEText"]], "email.parser": [[207, 11, 1, "", "BytesFeedParser"], [207, 11, 1, "", "BytesHeaderParser"], [207, 11, 1, "", "BytesParser"], [207, 11, 1, "", "FeedParser"], [207, 11, 1, "", "HeaderParser"], [207, 11, 1, "", "Parser"]], "email.parser.BytesFeedParser": [[207, 8, 1, "", "close"], [207, 8, 1, "", "feed"]], "email.parser.BytesParser": [[207, 8, 1, "", "parse"], [207, 8, 1, "", "parsebytes"]], "email.parser.Parser": [[207, 8, 1, "", "parse"], [207, 8, 1, "", "parsestr"]], "email.policy": [[208, 11, 1, "", "Compat32"], [208, 11, 1, "", "EmailPolicy"], [208, 9, 1, "", "HTTP"], [208, 11, 1, "", "Policy"], [208, 9, 1, "", "SMTP"], [208, 9, 1, "", "SMTPUTF8"], [208, 9, 1, "", "compat32"], [208, 9, 1, "", "default"], [208, 9, 1, "", "strict"]], "email.policy.Compat32": [[208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "mangle_from_"]], "email.policy.EmailPolicy": [[208, 7, 1, "", "content_manager"], [208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 7, 1, "", "header_factory"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_max_count"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "refold_source"], [208, 7, 1, "", "utf8"]], "email.policy.Policy": [[208, 8, 1, "", "clone"], [208, 7, 1, "", "cte_type"], [208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 8, 1, "", "handle_defect"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_max_count"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "linesep"], [208, 7, 1, "", "mangle_from_"], [208, 7, 1, "", "max_line_length"], [208, 7, 1, "", "message_factory"], [208, 7, 1, "", "raise_on_defect"], [208, 8, 1, "", "register_defect"]], "email.utils": [[209, 12, 1, "", "collapse_rfc2231_value"], [209, 12, 1, "", "decode_params"], [209, 12, 1, "", "decode_rfc2231"], [209, 12, 1, "", "encode_rfc2231"], [209, 12, 1, "", "format_datetime"], [209, 12, 1, "", "formataddr"], [209, 12, 1, "", "formatdate"], [209, 12, 1, "", "getaddresses"], [209, 12, 1, "", "localtime"], [209, 12, 1, "", "make_msgid"], [209, 12, 1, "", "mktime_tz"], [209, 12, 1, "", "parseaddr"], [209, 12, 1, "", "parsedate"], [209, 12, 1, "", "parsedate_to_datetime"], [209, 12, 1, "", "parsedate_tz"], [209, 12, 1, "", "quote"], [209, 12, 1, "", "unquote"]], "encodings": [[158, 10, 0, "-", "idna"], [158, 10, 0, "-", "mbcs"], [158, 10, 0, "-", "utf_8_sig"]], "encodings.idna": [[158, 12, 1, "", "ToASCII"], [158, 12, 1, "", "ToUnicode"], [158, 12, 1, "", "nameprep"]], "ensurepip": [[210, 12, 1, "", "bootstrap"], [210, 12, 1, "", "version"]], "enum": [[211, 11, 1, "", "Enum"], [211, 11, 1, "", "EnumCheck"], [211, 11, 1, "", "EnumType"], [211, 11, 1, "", "Flag"], [211, 11, 1, "", "FlagBoundary"], [211, 11, 1, "", "IntEnum"], [211, 11, 1, "", "IntFlag"], [211, 11, 1, "", "ReprEnum"], [211, 11, 1, "", "StrEnum"], [211, 11, 1, "", "auto"], [211, 12, 1, "", "global_enum"], [211, 12, 1, "", "member"], [211, 12, 1, "", "nonmember"], [211, 12, 1, "", "property"], [211, 12, 1, "", "show_flag_values"], [211, 12, 1, "", "unique"], [211, 12, 1, "", "verify"]], "enum.Enum": [[211, 8, 1, "", "__dir__"], [211, 8, 1, "", "__format__"], [211, 8, 1, "", "__init__"], [211, 8, 1, "", "__init_subclass__"], [211, 8, 1, "", "__new__"], [211, 8, 1, "", "__repr__"], [211, 8, 1, "", "__str__"], [211, 8, 1, "", "_generate_next_value_"], [211, 7, 1, "", "_ignore_"], [211, 8, 1, "", "_missing_"], [211, 7, 1, "", "_name_"], [211, 7, 1, "", "_order_"], [211, 7, 1, "", "_value_"], [211, 7, 1, "", "name"], [211, 7, 1, "", "value"]], "enum.EnumCheck": [[211, 7, 1, "", "CONTINUOUS"], [211, 7, 1, "", "NAMED_FLAGS"], [211, 7, 1, "", "UNIQUE"]], "enum.EnumType": [[211, 8, 1, "", "__call__"], [211, 8, 1, "", "__contains__"], [211, 8, 1, "", "__dir__"], [211, 8, 1, "", "__getitem__"], [211, 8, 1, "", "__iter__"], [211, 8, 1, "", "__len__"], [211, 7, 1, "", "__members__"], [211, 8, 1, "", "__reversed__"]], "enum.Flag": [[211, 8, 1, "", "__and__"], [211, 8, 1, "", "__contains__"], [211, 8, 1, "", "__or__"], [211, 8, 1, "", "__xor__"], [211, 8, 1, "", "_numeric_repr_"]], "enum.FlagBoundary": [[211, 7, 1, "", "CONFORM"], [211, 7, 1, "", "EJECT"], [211, 7, 1, "", "KEEP"], [211, 7, 1, "", "STRICT"]], "errno": [[212, 9, 1, "", "E2BIG"], [212, 9, 1, "", "EACCES"], [212, 9, 1, "", "EADDRINUSE"], [212, 9, 1, "", "EADDRNOTAVAIL"], [212, 9, 1, "", "EADV"], [212, 9, 1, "", "EAFNOSUPPORT"], [212, 9, 1, "", "EAGAIN"], [212, 9, 1, "", "EALREADY"], [212, 9, 1, "", "EBADE"], [212, 9, 1, "", "EBADF"], [212, 9, 1, "", "EBADFD"], [212, 9, 1, "", "EBADMSG"], [212, 9, 1, "", "EBADR"], [212, 9, 1, "", "EBADRQC"], [212, 9, 1, "", "EBADSLT"], [212, 9, 1, "", "EBFONT"], [212, 9, 1, "", "EBUSY"], [212, 9, 1, "", "ECANCELED"], [212, 9, 1, "", "ECHILD"], [212, 9, 1, "", "ECHRNG"], [212, 9, 1, "", "ECOMM"], [212, 9, 1, "", "ECONNABORTED"], [212, 9, 1, "", "ECONNREFUSED"], [212, 9, 1, "", "ECONNRESET"], [212, 9, 1, "", "EDEADLK"], [212, 9, 1, "", "EDEADLOCK"], [212, 9, 1, "", "EDESTADDRREQ"], [212, 9, 1, "", "EDOM"], [212, 9, 1, "", "EDOTDOT"], [212, 9, 1, "", "EDQUOT"], [212, 9, 1, "", "EEXIST"], [212, 9, 1, "", "EFAULT"], [212, 9, 1, "", "EFBIG"], [212, 9, 1, "", "EHOSTDOWN"], [212, 9, 1, "", "EHOSTUNREACH"], [212, 9, 1, "", "EIDRM"], [212, 9, 1, "", "EILSEQ"], [212, 9, 1, "", "EINPROGRESS"], [212, 9, 1, "", "EINTR"], [212, 9, 1, "", "EINVAL"], [212, 9, 1, "", "EIO"], [212, 9, 1, "", "EISCONN"], [212, 9, 1, "", "EISDIR"], [212, 9, 1, "", "EISNAM"], [212, 9, 1, "", "EL2HLT"], [212, 9, 1, "", "EL2NSYNC"], [212, 9, 1, "", "EL3HLT"], [212, 9, 1, "", "EL3RST"], [212, 9, 1, "", "ELIBACC"], [212, 9, 1, "", "ELIBBAD"], [212, 9, 1, "", "ELIBEXEC"], [212, 9, 1, "", "ELIBMAX"], [212, 9, 1, "", "ELIBSCN"], [212, 9, 1, "", "ELNRNG"], [212, 9, 1, "", "ELOOP"], [212, 9, 1, "", "EMFILE"], [212, 9, 1, "", "EMLINK"], [212, 9, 1, "", "EMSGSIZE"], [212, 9, 1, "", "EMULTIHOP"], [212, 9, 1, "", "ENAMETOOLONG"], [212, 9, 1, "", "ENAVAIL"], [212, 9, 1, "", "ENETDOWN"], [212, 9, 1, "", "ENETRESET"], [212, 9, 1, "", "ENETUNREACH"], [212, 9, 1, "", "ENFILE"], [212, 9, 1, "", "ENOANO"], [212, 9, 1, "", "ENOBUFS"], [212, 9, 1, "", "ENOCSI"], [212, 9, 1, "", "ENODATA"], [212, 9, 1, "", "ENODEV"], [212, 9, 1, "", "ENOENT"], [212, 9, 1, "", "ENOEXEC"], [212, 9, 1, "", "ENOLCK"], [212, 9, 1, "", "ENOLINK"], [212, 9, 1, "", "ENOMEM"], [212, 9, 1, "", "ENOMSG"], [212, 9, 1, "", "ENONET"], [212, 9, 1, "", "ENOPKG"], [212, 9, 1, "", "ENOPROTOOPT"], [212, 9, 1, "", "ENOSPC"], [212, 9, 1, "", "ENOSR"], [212, 9, 1, "", "ENOSTR"], [212, 9, 1, "", "ENOSYS"], [212, 9, 1, "", "ENOTBLK"], [212, 9, 1, "", "ENOTCAPABLE"], [212, 9, 1, "", "ENOTCONN"], [212, 9, 1, "", "ENOTDIR"], [212, 9, 1, "", "ENOTEMPTY"], [212, 9, 1, "", "ENOTNAM"], [212, 9, 1, "", "ENOTRECOVERABLE"], [212, 9, 1, "", "ENOTSOCK"], [212, 9, 1, "", "ENOTSUP"], [212, 9, 1, "", "ENOTTY"], [212, 9, 1, "", "ENOTUNIQ"], [212, 9, 1, "", "ENXIO"], [212, 9, 1, "", "EOPNOTSUPP"], [212, 9, 1, "", "EOVERFLOW"], [212, 9, 1, "", "EOWNERDEAD"], [212, 9, 1, "", "EPERM"], [212, 9, 1, "", "EPFNOSUPPORT"], [212, 9, 1, "", "EPIPE"], [212, 9, 1, "", "EPROTO"], [212, 9, 1, "", "EPROTONOSUPPORT"], [212, 9, 1, "", "EPROTOTYPE"], [212, 9, 1, "", "EQFULL"], [212, 9, 1, "", "ERANGE"], [212, 9, 1, "", "EREMCHG"], [212, 9, 1, "", "EREMOTE"], [212, 9, 1, "", "EREMOTEIO"], [212, 9, 1, "", "ERESTART"], [212, 9, 1, "", "EROFS"], [212, 9, 1, "", "ESHUTDOWN"], [212, 9, 1, "", "ESOCKTNOSUPPORT"], [212, 9, 1, "", "ESPIPE"], [212, 9, 1, "", "ESRCH"], [212, 9, 1, "", "ESRMNT"], [212, 9, 1, "", "ESTALE"], [212, 9, 1, "", "ESTRPIPE"], [212, 9, 1, "", "ETIME"], [212, 9, 1, "", "ETIMEDOUT"], [212, 9, 1, "", "ETOOMANYREFS"], [212, 9, 1, "", "ETXTBSY"], [212, 9, 1, "", "EUCLEAN"], [212, 9, 1, "", "EUNATCH"], [212, 9, 1, "", "EUSERS"], [212, 9, 1, "", "EWOULDBLOCK"], [212, 9, 1, "", "EXDEV"], [212, 9, 1, "", "EXFULL"], [212, 9, 1, "", "errorcode"]], "faulthandler": [[214, 12, 1, "", "cancel_dump_traceback_later"], [214, 12, 1, "", "disable"], [214, 12, 1, "", "dump_traceback"], [214, 12, 1, "", "dump_traceback_later"], [214, 12, 1, "", "enable"], [214, 12, 1, "", "is_enabled"], [214, 12, 1, "", "register"], [214, 12, 1, "", "unregister"]], "fcntl": [[215, 9, 1, "", "LOCK_EX"], [215, 9, 1, "", "LOCK_NB"], [215, 9, 1, "", "LOCK_SH"], [215, 9, 1, "", "LOCK_UN"], [215, 12, 1, "", "fcntl"], [215, 12, 1, "", "flock"], [215, 12, 1, "", "ioctl"], [215, 12, 1, "", "lockf"]], "filecmp": [[216, 7, 1, "", "DEFAULT_IGNORES"], [216, 12, 1, "", "clear_cache"], [216, 12, 1, "", "cmp"], [216, 12, 1, "", "cmpfiles"], [216, 11, 1, "", "dircmp"]], "filecmp.dircmp": [[216, 7, 1, "", "common"], [216, 7, 1, "", "common_dirs"], [216, 7, 1, "", "common_files"], [216, 7, 1, "", "common_funny"], [216, 7, 1, "", "diff_files"], [216, 7, 1, "", "funny_files"], [216, 7, 1, "", "left"], [216, 7, 1, "", "left_list"], [216, 7, 1, "", "left_only"], [216, 8, 1, "", "report"], [216, 8, 1, "", "report_full_closure"], [216, 8, 1, "", "report_partial_closure"], [216, 7, 1, "", "right"], [216, 7, 1, "", "right_list"], [216, 7, 1, "", "right_only"], [216, 7, 1, "", "same_files"], [216, 7, 1, "", "subdirs"]], "fileinput": [[218, 11, 1, "", "FileInput"], [218, 12, 1, "", "close"], [218, 12, 1, "", "filelineno"], [218, 12, 1, "", "filename"], [218, 12, 1, "", "fileno"], [218, 12, 1, "", "hook_compressed"], [218, 12, 1, "", "hook_encoded"], [218, 12, 1, "", "input"], [218, 12, 1, "", "isfirstline"], [218, 12, 1, "", "isstdin"], [218, 12, 1, "", "lineno"], [218, 12, 1, "", "nextfile"]], "float": [[344, 8, 1, "", "as_integer_ratio"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "is_integer"]], "fnmatch": [[220, 12, 1, "", "filter"], [220, 12, 1, "", "fnmatch"], [220, 12, 1, "", "fnmatchcase"], [220, 12, 1, "", "translate"]], "fractions": [[221, 11, 1, "", "Fraction"]], "fractions.Fraction": [[221, 8, 1, "", "__ceil__"], [221, 8, 1, "", "__floor__"], [221, 8, 1, "", "__format__"], [221, 8, 1, "", "__round__"], [221, 8, 1, "", "as_integer_ratio"], [221, 7, 1, "", "denominator"], [221, 8, 1, "", "from_decimal"], [221, 8, 1, "", "from_float"], [221, 8, 1, "", "is_integer"], [221, 8, 1, "", "limit_denominator"], [221, 7, 1, "", "numerator"]], "frame": [[428, 8, 1, "", "clear"], [428, 7, 1, "", "f_back"], [428, 7, 1, "", "f_builtins"], [428, 7, 1, "", "f_code"], [428, 7, 1, "", "f_globals"], [428, 7, 1, "", "f_lasti"], [428, 7, 1, "", "f_lineno"], [428, 7, 1, "", "f_locals"], [428, 7, 1, "", "f_trace"], [428, 7, 1, "", "f_trace_lines"], [428, 7, 1, "", "f_trace_opcodes"]], "frozenset": [[344, 8, 1, "", "add"], [344, 8, 1, "", "clear"], [344, 8, 1, "", "copy"], [344, 8, 1, "", "difference"], [344, 8, 1, "", "difference_update"], [344, 8, 1, "", "discard"], [344, 8, 1, "", "intersection"], [344, 8, 1, "", "intersection_update"], [344, 8, 1, "", "isdisjoint"], [344, 8, 1, "", "issubset"], [344, 8, 1, "", "issuperset"], [344, 8, 1, "", "pop"], [344, 8, 1, "", "remove"], [344, 8, 1, "", "symmetric_difference"], [344, 8, 1, "", "symmetric_difference_update"], [344, 8, 1, "", "union"], [344, 8, 1, "", "update"]], "ftplib": [[223, 11, 1, "", "FTP"], [223, 11, 1, "", "FTP_TLS"], [223, 9, 1, "", "all_errors"], [223, 6, 1, "", "error_perm"], [223, 6, 1, "", "error_proto"], [223, 6, 1, "", "error_reply"], [223, 6, 1, "", "error_temp"]], "ftplib.FTP": [[223, 8, 1, "", "abort"], [223, 8, 1, "", "close"], [223, 8, 1, "", "connect"], [223, 8, 1, "", "cwd"], [223, 8, 1, "", "delete"], [223, 8, 1, "", "dir"], [223, 8, 1, "", "getwelcome"], [223, 8, 1, "", "login"], [223, 8, 1, "", "mkd"], [223, 8, 1, "", "mlsd"], [223, 8, 1, "", "nlst"], [223, 8, 1, "", "ntransfercmd"], [223, 8, 1, "", "pwd"], [223, 8, 1, "", "quit"], [223, 8, 1, "", "rename"], [223, 8, 1, "", "retrbinary"], [223, 8, 1, "", "retrlines"], [223, 8, 1, "", "rmd"], [223, 8, 1, "", "sendcmd"], [223, 8, 1, "", "set_debuglevel"], [223, 8, 1, "", "set_pasv"], [223, 8, 1, "", "size"], [223, 8, 1, "", "storbinary"], [223, 8, 1, "", "storlines"], [223, 8, 1, "", "transfercmd"], [223, 8, 1, "", "voidcmd"]], "ftplib.FTP_TLS": [[223, 8, 1, "", "auth"], [223, 8, 1, "", "ccc"], [223, 8, 1, "", "prot_c"], [223, 8, 1, "", "prot_p"], [223, 7, 1, "", "ssl_version"]], "function": [[428, 7, 1, "", "__annotations__"], [428, 7, 1, "", "__closure__"], [428, 7, 1, "", "__code__"], [428, 7, 1, "", "__defaults__"], [428, 7, 1, "", "__dict__"], [428, 7, 1, "", "__doc__"], [428, 7, 1, "", "__globals__"], [428, 7, 1, "", "__kwdefaults__"], [428, 7, 1, "", "__module__"], [428, 7, 1, "", "__name__"], [428, 7, 1, "", "__qualname__"], [428, 7, 1, "", "__type_params__"]], "functools": [[226, 12, 1, "", "cache"], [226, 12, 1, "", "cached_property"], [226, 12, 1, "", "cmp_to_key"], [226, 12, 1, "", "lru_cache"], [226, 12, 1, "", "partial"], [226, 11, 1, "", "partialmethod"], [226, 12, 1, "", "reduce"], [226, 12, 1, "", "singledispatch"], [226, 11, 1, "", "singledispatchmethod"], [226, 12, 1, "", "total_ordering"], [226, 12, 1, "", "update_wrapper"], [226, 12, 1, "", "wraps"]], "functools.partial": [[226, 7, 1, "", "args"], [226, 7, 1, "", "func"], [226, 7, 1, "", "keywords"]], "gc": [[227, 9, 1, "", "DEBUG_COLLECTABLE"], [227, 9, 1, "", "DEBUG_LEAK"], [227, 9, 1, "", "DEBUG_SAVEALL"], [227, 9, 1, "", "DEBUG_STATS"], [227, 9, 1, "", "DEBUG_UNCOLLECTABLE"], [227, 9, 1, "", "callbacks"], [227, 12, 1, "", "collect"], [227, 12, 1, "", "disable"], [227, 12, 1, "", "enable"], [227, 12, 1, "", "freeze"], [227, 9, 1, "", "garbage"], [227, 12, 1, "", "get_count"], [227, 12, 1, "", "get_debug"], [227, 12, 1, "", "get_freeze_count"], [227, 12, 1, "", "get_objects"], [227, 12, 1, "", "get_referents"], [227, 12, 1, "", "get_referrers"], [227, 12, 1, "", "get_stats"], [227, 12, 1, "", "get_threshold"], [227, 12, 1, "", "is_finalized"], [227, 12, 1, "", "is_tracked"], [227, 12, 1, "", "isenabled"], [227, 12, 1, "", "set_debug"], [227, 12, 1, "", "set_threshold"], [227, 12, 1, "", "unfreeze"]], "generator": [[430, 8, 1, "", "__next__"], [430, 8, 1, "", "close"], [430, 8, 1, "", "send"], [430, 8, 1, "", "throw"]], "genericalias": [[344, 7, 1, "", "__args__"], [344, 7, 1, "", "__origin__"], [344, 7, 1, "", "__parameters__"], [344, 7, 1, "", "__unpacked__"]], "getopt": [[228, 6, 1, "", "GetoptError"], [228, 6, 1, "", "error"], [228, 12, 1, "", "getopt"], [228, 12, 1, "", "gnu_getopt"]], "getpass": [[229, 6, 1, "", "GetPassWarning"], [229, 12, 1, "", "getpass"], [229, 12, 1, "", "getuser"]], "gettext": [[230, 11, 1, "", "GNUTranslations"], [230, 11, 1, "", "NullTranslations"], [230, 12, 1, "", "bindtextdomain"], [230, 12, 1, "", "dgettext"], [230, 12, 1, "", "dngettext"], [230, 12, 1, "", "dnpgettext"], [230, 12, 1, "", "dpgettext"], [230, 12, 1, "", "find"], [230, 12, 1, "", "gettext"], [230, 12, 1, "", "install"], [230, 12, 1, "", "ngettext"], [230, 12, 1, "", "npgettext"], [230, 12, 1, "", "pgettext"], [230, 12, 1, "", "textdomain"], [230, 12, 1, "", "translation"]], "gettext.GNUTranslations": [[230, 8, 1, "", "gettext"], [230, 8, 1, "", "ngettext"], [230, 8, 1, "", "npgettext"], [230, 8, 1, "", "pgettext"]], "gettext.NullTranslations": [[230, 8, 1, "", "_parse"], [230, 8, 1, "", "add_fallback"], [230, 8, 1, "", "charset"], [230, 8, 1, "", "gettext"], [230, 8, 1, "", "info"], [230, 8, 1, "", "install"], [230, 8, 1, "", "ngettext"], [230, 8, 1, "", "npgettext"], [230, 8, 1, "", "pgettext"]], "glob": [[231, 12, 1, "", "escape"], [231, 12, 1, "", "glob"], [231, 12, 1, "", "iglob"]], "graphlib": [[232, 6, 1, "", "CycleError"], [232, 11, 1, "", "TopologicalSorter"]], "graphlib.TopologicalSorter": [[232, 8, 1, "", "add"], [232, 8, 1, "", "done"], [232, 8, 1, "", "get_ready"], [232, 8, 1, "", "is_active"], [232, 8, 1, "", "prepare"], [232, 8, 1, "", "static_order"]], "grp": [[233, 12, 1, "", "getgrall"], [233, 12, 1, "", "getgrgid"], [233, 12, 1, "", "getgrnam"]], "gzip": [[234, 6, 1, "", "BadGzipFile"], [234, 11, 1, "", "GzipFile"], [234, 12, 1, "", "compress"], [234, 12, 1, "", "decompress"], [234, 12, 1, "", "open"], [234, 14, 1, "cmdoption-gzip-best", "--best"], [234, 14, 1, "cmdoption-gzip-d", "--decompress"], [234, 14, 1, "cmdoption-gzip-fast", "--fast"], [234, 14, 1, "cmdoption-gzip-h", "--help"], [234, 14, 1, "cmdoption-gzip-d", "-d"], [234, 14, 1, "cmdoption-gzip-h", "-h"], [234, 14, 1, "cmdoption-gzip-arg-file", "file"]], "gzip.GzipFile": [[234, 7, 1, "", "mtime"], [234, 7, 1, "", "name"], [234, 8, 1, "", "peek"]], "hashlib": [[235, 9, 1, "", "algorithms_available"], [235, 9, 1, "", "algorithms_guaranteed"], [235, 12, 1, "", "blake2b"], [235, 12, 1, "", "blake2s"], [235, 12, 1, "", "file_digest"], [235, 12, 1, "", "md5"], [235, 12, 1, "", "new"], [235, 12, 1, "", "pbkdf2_hmac"], [235, 12, 1, "", "scrypt"], [235, 12, 1, "", "sha1"], [235, 12, 1, "", "sha224"], [235, 12, 1, "", "sha256"], [235, 12, 1, "", "sha384"], [235, 12, 1, "", "sha3_224"], [235, 12, 1, "", "sha3_256"], [235, 12, 1, "", "sha3_384"], [235, 12, 1, "", "sha3_512"], [235, 12, 1, "", "sha512"], [235, 12, 1, "", "shake_128"], [235, 12, 1, "", "shake_256"]], "hashlib.blake2b": [[235, 9, 1, "", "MAX_DIGEST_SIZE"], [235, 9, 1, "", "MAX_KEY_SIZE"], [235, 9, 1, "", "PERSON_SIZE"], [235, 9, 1, "", "SALT_SIZE"]], "hashlib.blake2s": [[235, 9, 1, "", "MAX_DIGEST_SIZE"], [235, 9, 1, "", "MAX_KEY_SIZE"], [235, 9, 1, "", "PERSON_SIZE"], [235, 9, 1, "", "SALT_SIZE"]], "hashlib.hash": [[235, 9, 1, "", "block_size"], [235, 8, 1, "", "copy"], [235, 8, 1, "", "digest"], [235, 9, 1, "", "digest_size"], [235, 8, 1, "", "hexdigest"], [235, 7, 1, "", "name"], [235, 8, 1, "", "update"]], "hashlib.shake": [[235, 8, 1, "", "digest"], [235, 8, 1, "", "hexdigest"]], "heapq": [[236, 12, 1, "", "heapify"], [236, 12, 1, "", "heappop"], [236, 12, 1, "", "heappush"], [236, 12, 1, "", "heappushpop"], [236, 12, 1, "", "heapreplace"], [236, 12, 1, "", "merge"], [236, 12, 1, "", "nlargest"], [236, 12, 1, "", "nsmallest"]], "hmac": [[237, 12, 1, "", "compare_digest"], [237, 12, 1, "", "digest"], [237, 12, 1, "", "new"]], "hmac.HMAC": [[237, 7, 1, "", "block_size"], [237, 8, 1, "", "copy"], [237, 8, 1, "", "digest"], [237, 7, 1, "", "digest_size"], [237, 8, 1, "", "hexdigest"], [237, 7, 1, "", "name"], [237, 8, 1, "", "update"]], "html": [[239, 10, 0, "-", "entities"], [238, 12, 1, "", "escape"], [240, 10, 0, "-", "parser"], [238, 12, 1, "", "unescape"]], "html.entities": [[239, 9, 1, "", "codepoint2name"], [239, 9, 1, "", "entitydefs"], [239, 9, 1, "", "html5"], [239, 9, 1, "", "name2codepoint"]], "html.parser": [[240, 11, 1, "", "HTMLParser"]], "html.parser.HTMLParser": [[240, 8, 1, "", "close"], [240, 8, 1, "", "feed"], [240, 8, 1, "", "get_starttag_text"], [240, 8, 1, "", "getpos"], [240, 8, 1, "", "handle_charref"], [240, 8, 1, "", "handle_comment"], [240, 8, 1, "", "handle_data"], [240, 8, 1, "", "handle_decl"], [240, 8, 1, "", "handle_endtag"], [240, 8, 1, "", "handle_entityref"], [240, 8, 1, "", "handle_pi"], [240, 8, 1, "", "handle_startendtag"], [240, 8, 1, "", "handle_starttag"], [240, 8, 1, "", "reset"], [240, 8, 1, "", "unknown_decl"]], "http": [[241, 11, 1, "", "HTTPMethod"], [241, 11, 1, "", "HTTPStatus"], [242, 10, 0, "-", "client"], [243, 10, 0, "-", "cookiejar"], [244, 10, 0, "-", "cookies"], [245, 10, 0, "-", "server"]], "http.client": [[242, 6, 1, "", "BadStatusLine"], [242, 6, 1, "", "CannotSendHeader"], [242, 6, 1, "", "CannotSendRequest"], [242, 11, 1, "", "HTTPConnection"], [242, 6, 1, "", "HTTPException"], [242, 11, 1, "", "HTTPMessage"], [242, 11, 1, "", "HTTPResponse"], [242, 11, 1, "", "HTTPSConnection"], [242, 9, 1, "", "HTTPS_PORT"], [242, 9, 1, "", "HTTP_PORT"], [242, 6, 1, "", "ImproperConnectionState"], [242, 6, 1, "", "IncompleteRead"], [242, 6, 1, "", "InvalidURL"], [242, 6, 1, "", "LineTooLong"], [242, 6, 1, "", "NotConnected"], [242, 6, 1, "", "RemoteDisconnected"], [242, 6, 1, "", "ResponseNotReady"], [242, 6, 1, "", "UnimplementedFileMode"], [242, 6, 1, "", "UnknownProtocol"], [242, 6, 1, "", "UnknownTransferEncoding"], [242, 12, 1, "", "parse_headers"], [242, 9, 1, "", "responses"]], "http.client.HTTPConnection": [[242, 7, 1, "", "blocksize"], [242, 8, 1, "", "close"], [242, 8, 1, "", "connect"], [242, 8, 1, "", "endheaders"], [242, 8, 1, "", "get_proxy_response_headers"], [242, 8, 1, "", "getresponse"], [242, 8, 1, "", "putheader"], [242, 8, 1, "", "putrequest"], [242, 8, 1, "", "request"], [242, 8, 1, "", "send"], [242, 8, 1, "", "set_debuglevel"], [242, 8, 1, "", "set_tunnel"]], "http.client.HTTPResponse": [[242, 7, 1, "", "closed"], [242, 7, 1, "", "debuglevel"], [242, 8, 1, "", "fileno"], [242, 8, 1, "", "getcode"], [242, 8, 1, "", "getheader"], [242, 8, 1, "", "getheaders"], [242, 8, 1, "", "geturl"], [242, 7, 1, "", "headers"], [242, 8, 1, "", "info"], [242, 7, 1, "", "msg"], [242, 8, 1, "", "read"], [242, 8, 1, "", "readinto"], [242, 7, 1, "", "reason"], [242, 7, 1, "", "status"], [242, 7, 1, "", "url"], [242, 7, 1, "", "version"]], "http.cookiejar": [[243, 11, 1, "", "Cookie"], [243, 11, 1, "", "CookieJar"], [243, 11, 1, "", "CookiePolicy"], [243, 11, 1, "", "DefaultCookiePolicy"], [243, 11, 1, "", "FileCookieJar"], [243, 11, 1, "", "LWPCookieJar"], [243, 6, 1, "", "LoadError"], [243, 11, 1, "", "MozillaCookieJar"]], "http.cookiejar.Cookie": [[243, 7, 1, "", "comment"], [243, 7, 1, "", "comment_url"], [243, 7, 1, "", "discard"], [243, 7, 1, "", "domain"], [243, 7, 1, "", "domain_initial_dot"], [243, 7, 1, "", "domain_specified"], [243, 7, 1, "", "expires"], [243, 8, 1, "", "get_nonstandard_attr"], [243, 8, 1, "", "has_nonstandard_attr"], [243, 8, 1, "", "is_expired"], [243, 7, 1, "", "name"], [243, 7, 1, "", "path"], [243, 7, 1, "", "port"], [243, 7, 1, "", "port_specified"], [243, 7, 1, "", "rfc2109"], [243, 7, 1, "", "secure"], [243, 8, 1, "", "set_nonstandard_attr"], [243, 7, 1, "", "value"], [243, 7, 1, "", "version"]], "http.cookiejar.CookieJar": [[243, 8, 1, "", "add_cookie_header"], [243, 8, 1, "", "clear"], [243, 8, 1, "", "clear_session_cookies"], [243, 8, 1, "", "extract_cookies"], [243, 8, 1, "", "make_cookies"], [243, 8, 1, "", "set_cookie"], [243, 8, 1, "", "set_cookie_if_ok"], [243, 8, 1, "", "set_policy"]], "http.cookiejar.CookiePolicy": [[243, 8, 1, "", "domain_return_ok"], [243, 7, 1, "", "hide_cookie2"], [243, 7, 1, "", "netscape"], [243, 8, 1, "", "path_return_ok"], [243, 8, 1, "", "return_ok"], [243, 7, 1, "", "rfc2965"], [243, 8, 1, "", "set_ok"]], "http.cookiejar.DefaultCookiePolicy": [[243, 7, 1, "", "DomainLiberal"], [243, 7, 1, "", "DomainRFC2965Match"], [243, 7, 1, "", "DomainStrict"], [243, 7, 1, "", "DomainStrictNoDots"], [243, 7, 1, "", "DomainStrictNonDomain"], [243, 8, 1, "", "allowed_domains"], [243, 8, 1, "", "blocked_domains"], [243, 8, 1, "", "is_blocked"], [243, 8, 1, "", "is_not_allowed"], [243, 7, 1, "", "rfc2109_as_netscape"], [243, 8, 1, "", "set_allowed_domains"], [243, 8, 1, "", "set_blocked_domains"], [243, 7, 1, "", "strict_domain"], [243, 7, 1, "", "strict_ns_domain"], [243, 7, 1, "", "strict_ns_set_initial_dollar"], [243, 7, 1, "", "strict_ns_set_path"], [243, 7, 1, "", "strict_ns_unverifiable"], [243, 7, 1, "", "strict_rfc2965_unverifiable"]], "http.cookiejar.FileCookieJar": [[243, 7, 1, "", "delayload"], [243, 7, 1, "", "filename"], [243, 8, 1, "", "load"], [243, 8, 1, "", "revert"], [243, 8, 1, "", "save"]], "http.cookies": [[244, 11, 1, "", "BaseCookie"], [244, 6, 1, "", "CookieError"], [244, 11, 1, "", "Morsel"], [244, 11, 1, "", "SimpleCookie"]], "http.cookies.BaseCookie": [[244, 8, 1, "", "js_output"], [244, 8, 1, "", "load"], [244, 8, 1, "", "output"], [244, 8, 1, "", "value_decode"], [244, 8, 1, "", "value_encode"]], "http.cookies.Morsel": [[244, 8, 1, "", "OutputString"], [244, 7, 1, "", "coded_value"], [244, 7, 1, "", "comment"], [244, 8, 1, "", "copy"], [244, 7, 1, "", "domain"], [244, 7, 1, "", "expires"], [244, 7, 1, "", "httponly"], [244, 8, 1, "", "isReservedKey"], [244, 8, 1, "", "js_output"], [244, 7, 1, "", "key"], [244, 8, 1, "", "output"], [244, 7, 1, "", "path"], [244, 7, 1, "", "samesite"], [244, 7, 1, "", "secure"], [244, 8, 1, "", "set"], [244, 8, 1, "", "setdefault"], [244, 8, 1, "", "update"], [244, 7, 1, "", "value"], [244, 7, 1, "", "version"]], "http.server": [[245, 11, 1, "", "BaseHTTPRequestHandler"], [245, 11, 1, "", "CGIHTTPRequestHandler"], [245, 11, 1, "", "HTTPServer"], [245, 11, 1, "", "SimpleHTTPRequestHandler"], [245, 11, 1, "", "ThreadingHTTPServer"]], "http.server.BaseHTTPRequestHandler": [[245, 7, 1, "", "MessageClass"], [245, 8, 1, "", "address_string"], [245, 7, 1, "", "client_address"], [245, 7, 1, "", "close_connection"], [245, 7, 1, "", "command"], [245, 8, 1, "", "date_time_string"], [245, 8, 1, "", "end_headers"], [245, 7, 1, "", "error_content_type"], [245, 7, 1, "", "error_message_format"], [245, 8, 1, "", "flush_headers"], [245, 8, 1, "", "handle"], [245, 8, 1, "", "handle_expect_100"], [245, 8, 1, "", "handle_one_request"], [245, 7, 1, "", "headers"], [245, 8, 1, "", "log_date_time_string"], [245, 8, 1, "", "log_error"], [245, 8, 1, "", "log_message"], [245, 8, 1, "", "log_request"], [245, 7, 1, "", "path"], [245, 7, 1, "", "protocol_version"], [245, 7, 1, "", "request_version"], [245, 7, 1, "", "requestline"], [245, 7, 1, "", "responses"], [245, 7, 1, "", "rfile"], [245, 8, 1, "", "send_error"], [245, 8, 1, "", "send_header"], [245, 8, 1, "", "send_response"], [245, 8, 1, "", "send_response_only"], [245, 7, 1, "", "server"], [245, 7, 1, "", "server_version"], [245, 7, 1, "", "sys_version"], [245, 8, 1, "", "version_string"], [245, 7, 1, "", "wfile"]], "http.server.CGIHTTPRequestHandler": [[245, 7, 1, "", "cgi_directories"], [245, 8, 1, "", "do_POST"]], "http.server.SimpleHTTPRequestHandler": [[245, 8, 1, "", "do_GET"], [245, 8, 1, "", "do_HEAD"], [245, 7, 1, "", "extensions_map"], [245, 7, 1, "", "server_version"]], "imaplib": [[248, 11, 1, "", "IMAP4"], [248, 11, 1, "", "IMAP4_SSL"], [248, 11, 1, "", "IMAP4_stream"], [248, 12, 1, "", "Int2AP"], [248, 12, 1, "", "Internaldate2tuple"], [248, 12, 1, "", "ParseFlags"], [248, 12, 1, "", "Time2Internaldate"]], "imaplib.IMAP4": [[248, 7, 1, "", "PROTOCOL_VERSION"], [248, 6, 1, "", "abort"], [248, 8, 1, "", "append"], [248, 8, 1, "", "authenticate"], [248, 8, 1, "", "check"], [248, 8, 1, "", "close"], [248, 8, 1, "", "copy"], [248, 8, 1, "", "create"], [248, 7, 1, "", "debug"], [248, 8, 1, "", "delete"], [248, 8, 1, "", "deleteacl"], [248, 8, 1, "", "enable"], [248, 6, 1, "", "error"], [248, 8, 1, "", "expunge"], [248, 8, 1, "", "fetch"], [248, 8, 1, "", "getacl"], [248, 8, 1, "", "getannotation"], [248, 8, 1, "", "getquota"], [248, 8, 1, "", "getquotaroot"], [248, 8, 1, "", "list"], [248, 8, 1, "", "login"], [248, 8, 1, "", "login_cram_md5"], [248, 8, 1, "", "logout"], [248, 8, 1, "", "lsub"], [248, 8, 1, "", "myrights"], [248, 8, 1, "", "namespace"], [248, 8, 1, "", "noop"], [248, 8, 1, "", "open"], [248, 8, 1, "", "partial"], [248, 8, 1, "", "proxyauth"], [248, 8, 1, "", "read"], [248, 8, 1, "", "readline"], [248, 6, 1, "", "readonly"], [248, 8, 1, "", "recent"], [248, 8, 1, "", "rename"], [248, 8, 1, "", "response"], [248, 8, 1, "", "search"], [248, 8, 1, "", "select"], [248, 8, 1, "", "send"], [248, 8, 1, "", "setacl"], [248, 8, 1, "", "setannotation"], [248, 8, 1, "", "setquota"], [248, 8, 1, "", "shutdown"], [248, 8, 1, "", "socket"], [248, 8, 1, "", "sort"], [248, 8, 1, "", "starttls"], [248, 8, 1, "", "status"], [248, 8, 1, "", "store"], [248, 8, 1, "", "subscribe"], [248, 8, 1, "", "thread"], [248, 8, 1, "", "uid"], [248, 8, 1, "", "unselect"], [248, 8, 1, "", "unsubscribe"], [248, 7, 1, "", "utf8_enabled"], [248, 8, 1, "", "xatom"]], "imghdr": [[249, 9, 1, "", "tests"], [249, 12, 1, "", "what"]], "importlib": [[250, 12, 1, "", "__import__"], [250, 10, 0, "-", "abc"], [250, 12, 1, "", "import_module"], [250, 12, 1, "", "invalidate_caches"], [250, 10, 0, "-", "machinery"], [251, 10, 0, "-", "metadata"], [250, 12, 1, "", "reload"], [252, 10, 0, "-", "resources"], [250, 10, 0, "-", "util"]], "importlib.abc": [[250, 11, 1, "", "ExecutionLoader"], [250, 11, 1, "", "FileLoader"], [250, 11, 1, "", "InspectLoader"], [250, 11, 1, "", "Loader"], [250, 11, 1, "", "MetaPathFinder"], [250, 11, 1, "", "PathEntryFinder"], [250, 11, 1, "", "ResourceLoader"], [250, 11, 1, "", "ResourceReader"], [250, 11, 1, "", "SourceLoader"], [250, 11, 1, "", "Traversable"], [250, 11, 1, "", "TraversableResources"]], "importlib.abc.ExecutionLoader": [[250, 8, 1, "", "get_filename"]], "importlib.abc.FileLoader": [[250, 8, 1, "", "get_data"], [250, 8, 1, "", "get_filename"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.abc.InspectLoader": [[250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 8, 1, "", "source_to_code"]], "importlib.abc.Loader": [[250, 8, 1, "", "create_module"], [250, 8, 1, "", "exec_module"], [250, 8, 1, "", "load_module"]], "importlib.abc.MetaPathFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.abc.PathEntryFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.abc.ResourceLoader": [[250, 8, 1, "", "get_data"]], "importlib.abc.ResourceReader": [[250, 8, 1, "", "contents"], [250, 8, 1, "", "is_resource"], [250, 8, 1, "", "open_resource"], [250, 8, 1, "", "resource_path"]], "importlib.abc.SourceLoader": [[250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 8, 1, "", "path_mtime"], [250, 8, 1, "", "path_stats"], [250, 8, 1, "", "set_data"]], "importlib.abc.Traversable": [[250, 8, 1, "", "__truediv__"], [250, 8, 1, "", "is_dir"], [250, 8, 1, "", "is_file"], [250, 8, 1, "", "iterdir"], [250, 8, 1, "", "joinpath"], [250, 7, 1, "", "name"], [250, 8, 1, "", "open"], [250, 8, 1, "", "read_bytes"], [250, 8, 1, "", "read_text"]], "importlib.abc.TraversableResources": [[250, 8, 1, "", "files"]], "importlib.machinery": [[250, 7, 1, "", "BYTECODE_SUFFIXES"], [250, 11, 1, "", "BuiltinImporter"], [250, 7, 1, "", "DEBUG_BYTECODE_SUFFIXES"], [250, 7, 1, "", "EXTENSION_SUFFIXES"], [250, 11, 1, "", "ExtensionFileLoader"], [250, 11, 1, "", "FileFinder"], [250, 11, 1, "", "FrozenImporter"], [250, 11, 1, "", "ModuleSpec"], [250, 11, 1, "", "NamespaceLoader"], [250, 7, 1, "", "OPTIMIZED_BYTECODE_SUFFIXES"], [250, 11, 1, "", "PathFinder"], [250, 7, 1, "", "SOURCE_SUFFIXES"], [250, 11, 1, "", "SourceFileLoader"], [250, 11, 1, "", "SourcelessFileLoader"], [250, 11, 1, "", "WindowsRegistryFinder"], [250, 12, 1, "", "all_suffixes"]], "importlib.machinery.ExtensionFileLoader": [[250, 8, 1, "", "create_module"], [250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_filename"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.machinery.FileFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"], [250, 7, 1, "", "path"], [250, 8, 1, "", "path_hook"]], "importlib.machinery.ModuleSpec": [[250, 7, 1, "", "cached"], [250, 7, 1, "", "has_location"], [250, 7, 1, "", "loader"], [250, 7, 1, "", "loader_state"], [250, 7, 1, "", "name"], [250, 7, 1, "", "origin"], [250, 7, 1, "", "parent"], [250, 7, 1, "", "submodule_search_locations"]], "importlib.machinery.PathFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.machinery.SourceFileLoader": [[250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"], [250, 8, 1, "", "path_stats"], [250, 8, 1, "", "set_data"]], "importlib.machinery.SourcelessFileLoader": [[250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.resources": [[252, 11, 1, "", "Anchor"], [252, 9, 1, "", "Package"], [252, 9, 1, "", "Resource"], [253, 10, 0, "-", "abc"], [252, 12, 1, "", "as_file"], [252, 12, 1, "", "contents"], [252, 12, 1, "", "files"], [252, 12, 1, "", "is_resource"], [252, 12, 1, "", "open_binary"], [252, 12, 1, "", "open_text"], [252, 12, 1, "", "path"], [252, 12, 1, "", "read_binary"], [252, 12, 1, "", "read_text"]], "importlib.resources.abc": [[253, 11, 1, "", "ResourceReader"], [253, 11, 1, "", "Traversable"], [253, 11, 1, "", "TraversableResources"]], "importlib.resources.abc.ResourceReader": [[253, 8, 1, "", "contents"], [253, 8, 1, "", "is_resource"], [253, 8, 1, "", "open_resource"], [253, 8, 1, "", "resource_path"]], "importlib.resources.abc.Traversable": [[253, 8, 1, "", "__truediv__"], [253, 8, 1, "", "is_dir"], [253, 8, 1, "", "is_file"], [253, 8, 1, "", "iterdir"], [253, 8, 1, "", "joinpath"], [253, 7, 1, "", "name"], [253, 8, 1, "", "open"], [253, 8, 1, "", "read_bytes"], [253, 8, 1, "", "read_text"]], "importlib.resources.abc.TraversableResources": [[253, 8, 1, "", "files"]], "importlib.util": [[250, 11, 1, "", "LazyLoader"], [250, 7, 1, "", "MAGIC_NUMBER"], [250, 12, 1, "", "_incompatible_extension_module_restrictions"], [250, 12, 1, "", "cache_from_source"], [250, 12, 1, "", "decode_source"], [250, 12, 1, "", "find_spec"], [250, 12, 1, "", "module_from_spec"], [250, 12, 1, "", "resolve_name"], [250, 12, 1, "", "source_from_cache"], [250, 12, 1, "", "source_hash"], [250, 12, 1, "", "spec_from_file_location"], [250, 12, 1, "", "spec_from_loader"]], "importlib.util.LazyLoader": [[250, 8, 1, "", "factory"]], "inspect": [[255, 11, 1, "", "BoundArguments"], [255, 11, 1, "", "BufferFlags"], [255, 9, 1, "", "CO_ASYNC_GENERATOR"], [255, 9, 1, "", "CO_COROUTINE"], [255, 9, 1, "", "CO_GENERATOR"], [255, 9, 1, "", "CO_ITERABLE_COROUTINE"], [255, 9, 1, "", "CO_NESTED"], [255, 9, 1, "", "CO_NEWLOCALS"], [255, 9, 1, "", "CO_OPTIMIZED"], [255, 9, 1, "", "CO_VARARGS"], [255, 9, 1, "", "CO_VARKEYWORDS"], [255, 11, 1, "", "FrameInfo"], [255, 11, 1, "", "Parameter"], [255, 11, 1, "", "Signature"], [255, 11, 1, "", "Traceback"], [255, 12, 1, "", "cleandoc"], [255, 12, 1, "", "currentframe"], [255, 12, 1, "", "formatargvalues"], [255, 12, 1, "", "get_annotations"], [255, 12, 1, "", "getargvalues"], [255, 12, 1, "", "getasyncgenlocals"], [255, 12, 1, "", "getasyncgenstate"], [255, 12, 1, "", "getattr_static"], [255, 12, 1, "", "getcallargs"], [255, 12, 1, "", "getclasstree"], [255, 12, 1, "", "getclosurevars"], [255, 12, 1, "", "getcomments"], [255, 12, 1, "", "getcoroutinelocals"], [255, 12, 1, "", "getcoroutinestate"], [255, 12, 1, "", "getdoc"], [255, 12, 1, "", "getfile"], [255, 12, 1, "", "getframeinfo"], [255, 12, 1, "", "getfullargspec"], [255, 12, 1, "", "getgeneratorlocals"], [255, 12, 1, "", "getgeneratorstate"], [255, 12, 1, "", "getinnerframes"], [255, 12, 1, "", "getmembers"], [255, 12, 1, "", "getmembers_static"], [255, 12, 1, "", "getmodule"], [255, 12, 1, "", "getmodulename"], [255, 12, 1, "", "getmro"], [255, 12, 1, "", "getouterframes"], [255, 12, 1, "", "getsource"], [255, 12, 1, "", "getsourcefile"], [255, 12, 1, "", "getsourcelines"], [255, 12, 1, "", "isabstract"], [255, 12, 1, "", "isasyncgen"], [255, 12, 1, "", "isasyncgenfunction"], [255, 12, 1, "", "isawaitable"], [255, 12, 1, "", "isbuiltin"], [255, 12, 1, "", "isclass"], [255, 12, 1, "", "iscode"], [255, 12, 1, "", "iscoroutine"], [255, 12, 1, "", "iscoroutinefunction"], [255, 12, 1, "", "isdatadescriptor"], [255, 12, 1, "", "isframe"], [255, 12, 1, "", "isfunction"], [255, 12, 1, "", "isgenerator"], [255, 12, 1, "", "isgeneratorfunction"], [255, 12, 1, "", "isgetsetdescriptor"], [255, 12, 1, "", "ismemberdescriptor"], [255, 12, 1, "", "ismethod"], [255, 12, 1, "", "ismethoddescriptor"], [255, 12, 1, "", "ismethodwrapper"], [255, 12, 1, "", "ismodule"], [255, 12, 1, "", "isroutine"], [255, 12, 1, "", "istraceback"], [255, 12, 1, "", "markcoroutinefunction"], [255, 12, 1, "", "signature"], [255, 12, 1, "", "stack"], [255, 12, 1, "", "trace"], [255, 12, 1, "", "unwrap"], [255, 14, 1, "cmdoption-inspect-details", "--details"]], "inspect.BoundArguments": [[255, 8, 1, "", "apply_defaults"], [255, 7, 1, "", "args"], [255, 7, 1, "", "arguments"], [255, 7, 1, "", "kwargs"], [255, 7, 1, "", "signature"]], "inspect.BufferFlags": [[255, 7, 1, "", "ANY_CONTIGUOUS"], [255, 7, 1, "", "CONTIG"], [255, 7, 1, "", "CONTIG_RO"], [255, 7, 1, "", "C_CONTIGUOUS"], [255, 7, 1, "", "FORMAT"], [255, 7, 1, "", "FULL"], [255, 7, 1, "", "FULL_RO"], [255, 7, 1, "", "F_CONTIGUOUS"], [255, 7, 1, "", "INDIRECT"], [255, 7, 1, "", "ND"], [255, 7, 1, "", "READ"], [255, 7, 1, "", "RECORDS"], [255, 7, 1, "", "RECORDS_RO"], [255, 7, 1, "", "SIMPLE"], [255, 7, 1, "", "STRIDED"], [255, 7, 1, "", "STRIDED_RO"], [255, 7, 1, "", "STRIDES"], [255, 7, 1, "", "WRITABLE"], [255, 7, 1, "", "WRITE"]], "inspect.FrameInfo": [[255, 7, 1, "", "code_context"], [255, 7, 1, "", "filename"], [255, 7, 1, "", "frame"], [255, 7, 1, "", "function"], [255, 7, 1, "", "index"], [255, 7, 1, "", "lineno"], [255, 7, 1, "", "positions"]], "inspect.Parameter": [[255, 7, 1, "", "annotation"], [255, 7, 1, "", "default"], [255, 7, 1, "", "empty"], [255, 7, 1, "", "kind"], [255, 7, 1, "", "name"], [255, 8, 1, "", "replace"]], "inspect.Parameter.kind": [[255, 7, 1, "", "description"]], "inspect.Signature": [[255, 8, 1, "", "bind"], [255, 8, 1, "", "bind_partial"], [255, 7, 1, "", "empty"], [255, 8, 1, "", "from_callable"], [255, 7, 1, "", "parameters"], [255, 8, 1, "", "replace"], [255, 7, 1, "", "return_annotation"]], "inspect.Traceback": [[255, 7, 1, "", "code_context"], [255, 7, 1, "", "filename"], [255, 7, 1, "", "function"], [255, 7, 1, "", "index"], [255, 7, 1, "", "lineno"], [255, 7, 1, "", "positions"]], "instance": [[344, 7, 1, "", "__class__"]], "int": [[344, 8, 1, "", "as_integer_ratio"], [344, 8, 1, "", "bit_count"], [344, 8, 1, "", "bit_length"], [344, 8, 1, "", "from_bytes"], [344, 8, 1, "", "is_integer"], [344, 8, 1, "", "to_bytes"]], "io": [[258, 6, 1, "", "BlockingIOError"], [258, 11, 1, "", "BufferedIOBase"], [258, 11, 1, "", "BufferedRWPair"], [258, 11, 1, "", "BufferedRandom"], [258, 11, 1, "", "BufferedReader"], [258, 11, 1, "", "BufferedWriter"], [258, 11, 1, "", "BytesIO"], [258, 9, 1, "", "DEFAULT_BUFFER_SIZE"], [258, 11, 1, "", "FileIO"], [258, 11, 1, "", "IOBase"], [258, 11, 1, "", "IncrementalNewlineDecoder"], [258, 11, 1, "", "RawIOBase"], [258, 11, 1, "", "StringIO"], [258, 11, 1, "", "TextIOBase"], [258, 11, 1, "", "TextIOWrapper"], [258, 6, 1, "", "UnsupportedOperation"], [258, 12, 1, "", "open"], [258, 12, 1, "", "open_code"], [258, 12, 1, "", "text_encoding"]], "io.BufferedIOBase": [[258, 8, 1, "", "detach"], [258, 7, 1, "", "raw"], [258, 8, 1, "", "read"], [258, 8, 1, "", "read1"], [258, 8, 1, "", "readinto"], [258, 8, 1, "", "readinto1"], [258, 8, 1, "", "write"]], "io.BufferedReader": [[258, 8, 1, "", "peek"], [258, 8, 1, "", "read"], [258, 8, 1, "", "read1"]], "io.BufferedWriter": [[258, 8, 1, "", "flush"], [258, 8, 1, "", "write"]], "io.BytesIO": [[258, 8, 1, "", "getbuffer"], [258, 8, 1, "", "getvalue"], [258, 8, 1, "", "read1"], [258, 8, 1, "", "readinto1"]], "io.FileIO": [[258, 7, 1, "", "mode"], [258, 7, 1, "", "name"]], "io.IOBase": [[258, 8, 1, "", "__del__"], [258, 8, 1, "", "close"], [258, 7, 1, "", "closed"], [258, 8, 1, "", "fileno"], [258, 8, 1, "", "flush"], [258, 8, 1, "", "isatty"], [258, 8, 1, "", "readable"], [258, 8, 1, "", "readline"], [258, 8, 1, "", "readlines"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "seekable"], [258, 8, 1, "", "tell"], [258, 8, 1, "", "truncate"], [258, 8, 1, "", "writable"], [258, 8, 1, "", "writelines"]], "io.RawIOBase": [[258, 8, 1, "", "read"], [258, 8, 1, "", "readall"], [258, 8, 1, "", "readinto"], [258, 8, 1, "", "write"]], "io.StringIO": [[258, 8, 1, "", "getvalue"]], "io.TextIOBase": [[258, 7, 1, "", "buffer"], [258, 8, 1, "", "detach"], [258, 7, 1, "", "encoding"], [258, 7, 1, "", "errors"], [258, 7, 1, "", "newlines"], [258, 8, 1, "", "read"], [258, 8, 1, "", "readline"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "tell"], [258, 8, 1, "", "write"]], "io.TextIOWrapper": [[258, 7, 1, "", "line_buffering"], [258, 8, 1, "", "reconfigure"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "tell"], [258, 7, 1, "", "write_through"]], "ipaddress": [[259, 6, 1, "", "AddressValueError"], [259, 11, 1, "", "IPv4Address"], [259, 11, 1, "", "IPv4Interface"], [259, 11, 1, "", "IPv4Network"], [259, 11, 1, "", "IPv6Address"], [259, 11, 1, "", "IPv6Interface"], [259, 11, 1, "", "IPv6Network"], [259, 6, 1, "", "NetmaskValueError"], [259, 12, 1, "", "collapse_addresses"], [259, 12, 1, "", "get_mixed_type_key"], [259, 12, 1, "", "ip_address"], [259, 12, 1, "", "ip_interface"], [259, 12, 1, "", "ip_network"], [259, 12, 1, "", "summarize_address_range"], [259, 12, 1, "", "v4_int_to_packed"], [259, 12, 1, "", "v6_int_to_packed"]], "ipaddress.IPv4Address": [[259, 8, 1, "", "__format__"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "is_global"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "packed"], [259, 7, 1, "", "reverse_pointer"], [259, 7, 1, "", "version"]], "ipaddress.IPv4Interface": [[259, 7, 1, "", "ip"], [259, 7, 1, "", "network"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv4Network": [[259, 8, 1, "", "address_exclude"], [259, 7, 1, "", "broadcast_address"], [259, 8, 1, "", "compare_networks"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "hostmask"], [259, 8, 1, "", "hosts"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "netmask"], [259, 7, 1, "", "network_address"], [259, 7, 1, "", "num_addresses"], [259, 8, 1, "", "overlaps"], [259, 7, 1, "", "prefixlen"], [259, 8, 1, "", "subnet_of"], [259, 8, 1, "", "subnets"], [259, 8, 1, "", "supernet"], [259, 8, 1, "", "supernet_of"], [259, 7, 1, "", "version"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv6Address": [[259, 8, 1, "", "__format__"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "ipv4_mapped"], [259, 7, 1, "", "is_global"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_site_local"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "packed"], [259, 7, 1, "", "reverse_pointer"], [259, 7, 1, "", "scope_id"], [259, 7, 1, "", "sixtofour"], [259, 7, 1, "", "teredo"], [259, 7, 1, "", "version"]], "ipaddress.IPv6Interface": [[259, 7, 1, "", "ip"], [259, 7, 1, "", "network"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv6Network": [[259, 8, 1, "", "address_exclude"], [259, 7, 1, "", "broadcast_address"], [259, 8, 1, "", "compare_networks"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "hostmask"], [259, 8, 1, "", "hosts"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_site_local"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "netmask"], [259, 7, 1, "", "network_address"], [259, 7, 1, "", "num_addresses"], [259, 8, 1, "", "overlaps"], [259, 7, 1, "", "prefixlen"], [259, 8, 1, "", "subnet_of"], [259, 8, 1, "", "subnets"], [259, 8, 1, "", "supernet"], [259, 8, 1, "", "supernet_of"], [259, 7, 1, "", "version"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "iterator": [[344, 8, 1, "", "__iter__"], [344, 8, 1, "", "__next__"]], "itertools": [[261, 12, 1, "", "accumulate"], [261, 12, 1, "", "batched"], [261, 12, 1, "", "chain"], [261, 12, 1, "", "combinations"], [261, 12, 1, "", "combinations_with_replacement"], [261, 12, 1, "", "compress"], [261, 12, 1, "", "count"], [261, 12, 1, "", "cycle"], [261, 12, 1, "", "dropwhile"], [261, 12, 1, "", "filterfalse"], [261, 12, 1, "", "groupby"], [261, 12, 1, "", "islice"], [261, 12, 1, "", "pairwise"], [261, 12, 1, "", "permutations"], [261, 12, 1, "", "product"], [261, 12, 1, "", "repeat"], [261, 12, 1, "", "starmap"], [261, 12, 1, "", "takewhile"], [261, 12, 1, "", "tee"], [261, 12, 1, "", "zip_longest"]], "itertools.chain": [[261, 8, 1, "", "from_iterable"]], "json": [[262, 6, 1, "", "JSONDecodeError"], [262, 11, 1, "", "JSONDecoder"], [262, 11, 1, "", "JSONEncoder"], [262, 12, 1, "", "dump"], [262, 12, 1, "", "dumps"], [262, 12, 1, "", "load"], [262, 12, 1, "", "loads"], [262, 10, 0, "-", "tool"]], "json.JSONDecodeError": [[262, 7, 1, "", "colno"], [262, 7, 1, "", "doc"], [262, 7, 1, "", "lineno"], [262, 7, 1, "", "msg"], [262, 7, 1, "", "pos"]], "json.JSONDecoder": [[262, 8, 1, "", "decode"], [262, 8, 1, "", "raw_decode"]], "json.JSONEncoder": [[262, 8, 1, "", "default"], [262, 8, 1, "", "encode"], [262, 8, 1, "", "iterencode"]], "json.tool": [[262, 14, 1, "cmdoption-json.tool-indent", "--compact"], [262, 14, 1, "cmdoption-json.tool-h", "--help"], [262, 14, 1, "cmdoption-json.tool-indent", "--indent"], [262, 14, 1, "cmdoption-json.tool-json-lines", "--json-lines"], [262, 14, 1, "cmdoption-json.tool-no-ensure-ascii", "--no-ensure-ascii"], [262, 14, 1, "cmdoption-json.tool-indent", "--no-indent"], [262, 14, 1, "cmdoption-json.tool-sort-keys", "--sort-keys"], [262, 14, 1, "cmdoption-json.tool-indent", "--tab"], [262, 14, 1, "cmdoption-json.tool-h", "-h"], [262, 14, 1, "cmdoption-json.tool-arg-infile", "infile"], [262, 14, 1, "cmdoption-json.tool-arg-outfile", "outfile"]], "keyword": [[263, 12, 1, "", "iskeyword"], [263, 12, 1, "", "issoftkeyword"], [263, 9, 1, "", "kwlist"], [263, 9, 1, "", "softkwlist"]], "linecache": [[265, 12, 1, "", "checkcache"], [265, 12, 1, "", "clearcache"], [265, 12, 1, "", "getline"], [265, 12, 1, "", "lazycache"]], "list": [[344, 8, 1, "", "sort"]], "locale": [[266, 9, 1, "", "ABDAY_1"], [266, 9, 1, "", "ABDAY_2"], [266, 9, 1, "", "ABDAY_3"], [266, 9, 1, "", "ABDAY_4"], [266, 9, 1, "", "ABDAY_5"], [266, 9, 1, "", "ABDAY_6"], [266, 9, 1, "", "ABDAY_7"], [266, 9, 1, "", "ABMON_1"], [266, 9, 1, "", "ABMON_10"], [266, 9, 1, "", "ABMON_11"], [266, 9, 1, "", "ABMON_12"], [266, 9, 1, "", "ABMON_2"], [266, 9, 1, "", "ABMON_3"], [266, 9, 1, "", "ABMON_4"], [266, 9, 1, "", "ABMON_5"], [266, 9, 1, "", "ABMON_6"], [266, 9, 1, "", "ABMON_7"], [266, 9, 1, "", "ABMON_8"], [266, 9, 1, "", "ABMON_9"], [266, 9, 1, "", "ALT_DIGITS"], [266, 9, 1, "", "CHAR_MAX"], [266, 9, 1, "", "CODESET"], [266, 9, 1, "", "CRNCYSTR"], [266, 9, 1, "", "DAY_1"], [266, 9, 1, "", "DAY_2"], [266, 9, 1, "", "DAY_3"], [266, 9, 1, "", "DAY_4"], [266, 9, 1, "", "DAY_5"], [266, 9, 1, "", "DAY_6"], [266, 9, 1, "", "DAY_7"], [266, 9, 1, "", "D_FMT"], [266, 9, 1, "", "D_T_FMT"], [266, 9, 1, "", "ERA"], [266, 9, 1, "", "ERA_D_FMT"], [266, 9, 1, "", "ERA_D_T_FMT"], [266, 9, 1, "", "ERA_T_FMT"], [266, 6, 1, "", "Error"], [266, 9, 1, "", "LC_ALL"], [266, 9, 1, "", "LC_COLLATE"], [266, 9, 1, "", "LC_CTYPE"], [266, 9, 1, "", "LC_MESSAGES"], [266, 9, 1, "", "LC_MONETARY"], [266, 9, 1, "", "LC_NUMERIC"], [266, 9, 1, "", "LC_TIME"], [266, 9, 1, "", "MON_1"], [266, 9, 1, "", "MON_10"], [266, 9, 1, "", "MON_11"], [266, 9, 1, "", "MON_12"], [266, 9, 1, "", "MON_2"], [266, 9, 1, "", "MON_3"], [266, 9, 1, "", "MON_4"], [266, 9, 1, "", "MON_5"], [266, 9, 1, "", "MON_6"], [266, 9, 1, "", "MON_7"], [266, 9, 1, "", "MON_8"], [266, 9, 1, "", "MON_9"], [266, 9, 1, "", "NOEXPR"], [266, 9, 1, "", "RADIXCHAR"], [266, 9, 1, "", "THOUSEP"], [266, 9, 1, "", "T_FMT"], [266, 9, 1, "", "T_FMT_AMPM"], [266, 9, 1, "", "YESEXPR"], [266, 12, 1, "", "atof"], [266, 12, 1, "", "atoi"], [266, 12, 1, "", "bind_textdomain_codeset"], [266, 12, 1, "", "bindtextdomain"], [266, 12, 1, "", "currency"], [266, 12, 1, "", "dcgettext"], [266, 12, 1, "", "delocalize"], [266, 12, 1, "", "dgettext"], [266, 12, 1, "", "format_string"], [266, 12, 1, "", "getdefaultlocale"], [266, 12, 1, "", "getencoding"], [266, 12, 1, "", "getlocale"], [266, 12, 1, "", "getpreferredencoding"], [266, 12, 1, "", "gettext"], [266, 12, 1, "", "localeconv"], [266, 12, 1, "", "localize"], [266, 12, 1, "", "nl_langinfo"], [266, 12, 1, "", "normalize"], [266, 12, 1, "", "resetlocale"], [266, 12, 1, "", "setlocale"], [266, 12, 1, "", "str"], [266, 12, 1, "", "strcoll"], [266, 12, 1, "", "strxfrm"], [266, 12, 1, "", "textdomain"]], "logging": [[267, 11, 1, "", "BufferingFormatter"], [267, 9, 1, "", "CRITICAL"], [267, 9, 1, "", "DEBUG"], [267, 9, 1, "", "ERROR"], [269, 11, 1, "", "FileHandler"], [267, 11, 1, "", "Filter"], [267, 11, 1, "", "Formatter"], [267, 11, 1, "", "Handler"], [267, 9, 1, "", "INFO"], [267, 11, 1, "", "LogRecord"], [267, 11, 1, "", "Logger"], [267, 11, 1, "", "LoggerAdapter"], [267, 9, 1, "", "NOTSET"], [269, 11, 1, "", "NullHandler"], [269, 11, 1, "", "StreamHandler"], [267, 9, 1, "", "WARNING"], [267, 12, 1, "", "addLevelName"], [267, 12, 1, "", "basicConfig"], [267, 12, 1, "", "captureWarnings"], [268, 10, 0, "-", "config"], [267, 12, 1, "", "critical"], [267, 12, 1, "", "debug"], [267, 12, 1, "", "disable"], [267, 12, 1, "", "error"], [267, 12, 1, "", "exception"], [267, 12, 1, "", "getHandlerByName"], [267, 12, 1, "", "getHandlerNames"], [267, 12, 1, "", "getLevelName"], [267, 12, 1, "", "getLevelNamesMapping"], [267, 12, 1, "", "getLogRecordFactory"], [267, 12, 1, "", "getLogger"], [267, 12, 1, "", "getLoggerClass"], [269, 10, 0, "-", "handlers"], [267, 12, 1, "", "info"], [267, 7, 1, "", "lastResort"], [267, 12, 1, "", "log"], [267, 12, 1, "", "makeLogRecord"], [267, 7, 1, "", "raiseExceptions"], [267, 12, 1, "", "setLogRecordFactory"], [267, 12, 1, "", "setLoggerClass"], [267, 12, 1, "", "shutdown"], [267, 12, 1, "", "warning"]], "logging.BufferingFormatter": [[267, 8, 1, "", "format"], [267, 8, 1, "", "formatFooter"], [267, 8, 1, "", "formatHeader"]], "logging.FileHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "emit"]], "logging.Filter": [[267, 8, 1, "", "filter"]], "logging.Formatter": [[267, 8, 1, "", "format"], [267, 8, 1, "", "formatException"], [267, 8, 1, "", "formatStack"], [267, 8, 1, "", "formatTime"]], "logging.Handler": [[267, 8, 1, "", "__init__"], [267, 8, 1, "", "acquire"], [267, 8, 1, "", "addFilter"], [267, 8, 1, "", "close"], [267, 8, 1, "", "createLock"], [267, 8, 1, "", "emit"], [267, 8, 1, "", "filter"], [267, 8, 1, "", "flush"], [267, 8, 1, "", "format"], [267, 8, 1, "", "handle"], [267, 8, 1, "", "handleError"], [267, 8, 1, "", "release"], [267, 8, 1, "", "removeFilter"], [267, 8, 1, "", "setFormatter"], [267, 8, 1, "", "setLevel"]], "logging.LogRecord": [[267, 8, 1, "", "getMessage"]], "logging.Logger": [[267, 8, 1, "", "addFilter"], [267, 8, 1, "", "addHandler"], [267, 8, 1, "", "critical"], [267, 8, 1, "", "debug"], [267, 7, 1, "", "disabled"], [267, 8, 1, "", "error"], [267, 8, 1, "", "exception"], [267, 8, 1, "", "filter"], [267, 8, 1, "", "findCaller"], [267, 8, 1, "", "getChild"], [267, 8, 1, "", "getChildren"], [267, 8, 1, "", "getEffectiveLevel"], [267, 8, 1, "", "handle"], [267, 7, 1, "", "handlers"], [267, 8, 1, "", "hasHandlers"], [267, 8, 1, "", "info"], [267, 8, 1, "", "isEnabledFor"], [267, 7, 1, "", "level"], [267, 8, 1, "", "log"], [267, 8, 1, "", "makeRecord"], [267, 7, 1, "", "name"], [267, 7, 1, "", "parent"], [267, 7, 1, "", "propagate"], [267, 8, 1, "", "removeFilter"], [267, 8, 1, "", "removeHandler"], [267, 8, 1, "", "setLevel"], [267, 8, 1, "", "warning"]], "logging.LoggerAdapter": [[267, 7, 1, "", "_log"], [267, 7, 1, "", "manager"], [267, 8, 1, "", "process"]], "logging.NullHandler": [[269, 8, 1, "", "createLock"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "handle"]], "logging.StreamHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "setStream"], [269, 7, 1, "", "terminator"]], "logging.config": [[268, 12, 1, "", "dictConfig"], [268, 12, 1, "", "fileConfig"], [268, 12, 1, "", "listen"], [268, 12, 1, "", "stopListening"]], "logging.handlers": [[269, 11, 1, "", "BaseRotatingHandler"], [269, 11, 1, "", "BufferingHandler"], [269, 11, 1, "", "DatagramHandler"], [269, 11, 1, "", "HTTPHandler"], [269, 11, 1, "", "MemoryHandler"], [269, 11, 1, "", "NTEventLogHandler"], [269, 11, 1, "", "QueueHandler"], [269, 11, 1, "", "QueueListener"], [269, 11, 1, "", "RotatingFileHandler"], [269, 11, 1, "", "SMTPHandler"], [269, 11, 1, "", "SocketHandler"], [269, 11, 1, "", "SysLogHandler"], [269, 11, 1, "", "TimedRotatingFileHandler"], [269, 11, 1, "", "WatchedFileHandler"]], "logging.handlers.BaseRotatingHandler": [[269, 7, 1, "", "namer"], [269, 8, 1, "", "rotate"], [269, 8, 1, "", "rotation_filename"], [269, 7, 1, "", "rotator"]], "logging.handlers.BufferingHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "shouldFlush"]], "logging.handlers.DatagramHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "makeSocket"], [269, 8, 1, "", "send"]], "logging.handlers.HTTPHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "mapLogRecord"]], "logging.handlers.MemoryHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "setTarget"], [269, 8, 1, "", "shouldFlush"]], "logging.handlers.NTEventLogHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "getEventCategory"], [269, 8, 1, "", "getEventType"], [269, 8, 1, "", "getMessageID"]], "logging.handlers.QueueHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "enqueue"], [269, 7, 1, "", "listener"], [269, 8, 1, "", "prepare"]], "logging.handlers.QueueListener": [[269, 8, 1, "", "dequeue"], [269, 8, 1, "", "enqueue_sentinel"], [269, 8, 1, "", "handle"], [269, 8, 1, "", "prepare"], [269, 8, 1, "", "start"], [269, 8, 1, "", "stop"]], "logging.handlers.RotatingFileHandler": [[269, 8, 1, "", "doRollover"], [269, 8, 1, "", "emit"]], "logging.handlers.SMTPHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "getSubject"]], "logging.handlers.SocketHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "createSocket"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "handleError"], [269, 8, 1, "", "makePickle"], [269, 8, 1, "", "makeSocket"], [269, 8, 1, "", "send"]], "logging.handlers.SysLogHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "createSocket"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "encodePriority"], [269, 8, 1, "", "mapPriority"]], "logging.handlers.TimedRotatingFileHandler": [[269, 8, 1, "", "doRollover"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "getFilesToDelete"]], "logging.handlers.WatchedFileHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "reopenIfNeeded"]], "logging.logging.Formatter": [[101, 8, 1, "", "__init__"]], "lzma": [[270, 11, 1, "", "LZMACompressor"], [270, 11, 1, "", "LZMADecompressor"], [270, 6, 1, "", "LZMAError"], [270, 11, 1, "", "LZMAFile"], [270, 12, 1, "", "compress"], [270, 12, 1, "", "decompress"], [270, 12, 1, "", "is_check_supported"], [270, 12, 1, "", "open"]], "lzma.LZMACompressor": [[270, 8, 1, "", "compress"], [270, 8, 1, "", "flush"]], "lzma.LZMADecompressor": [[270, 7, 1, "", "check"], [270, 8, 1, "", "decompress"], [270, 7, 1, "", "eof"], [270, 7, 1, "", "needs_input"], [270, 7, 1, "", "unused_data"]], "lzma.LZMAFile": [[270, 8, 1, "", "peek"]], "mailbox": [[271, 11, 1, "", "Babyl"], [271, 11, 1, "", "BabylMessage"], [271, 6, 1, "", "Error"], [271, 6, 1, "", "ExternalClashError"], [271, 6, 1, "", "FormatError"], [271, 11, 1, "", "MH"], [271, 11, 1, "", "MHMessage"], [271, 11, 1, "", "MMDF"], [271, 11, 1, "", "MMDFMessage"], [271, 11, 1, "", "Mailbox"], [271, 11, 1, "", "Maildir"], [271, 11, 1, "", "MaildirMessage"], [271, 11, 1, "", "Message"], [271, 6, 1, "", "NoSuchMailboxError"], [271, 6, 1, "", "NotEmptyError"], [271, 11, 1, "", "mbox"], [271, 11, 1, "", "mboxMessage"]], "mailbox.Babyl": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_labels"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.BabylMessage": [[271, 8, 1, "", "add_label"], [271, 8, 1, "", "get_labels"], [271, 8, 1, "", "get_visible"], [271, 8, 1, "", "remove_label"], [271, 8, 1, "", "set_labels"], [271, 8, 1, "", "set_visible"], [271, 8, 1, "", "update_visible"]], "mailbox.MH": [[271, 8, 1, "", "__delitem__"], [271, 8, 1, "", "add_folder"], [271, 8, 1, "", "close"], [271, 8, 1, "", "discard"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_folder"], [271, 8, 1, "", "get_sequences"], [271, 8, 1, "", "list_folders"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "pack"], [271, 8, 1, "", "remove"], [271, 8, 1, "", "remove_folder"], [271, 8, 1, "", "set_sequences"], [271, 8, 1, "", "unlock"]], "mailbox.MHMessage": [[271, 8, 1, "", "add_sequence"], [271, 8, 1, "", "get_sequences"], [271, 8, 1, "", "remove_sequence"], [271, 8, 1, "", "set_sequences"]], "mailbox.MMDF": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.MMDFMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_from"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_from"]], "mailbox.Mailbox": [[271, 8, 1, "", "__contains__"], [271, 8, 1, "", "__delitem__"], [271, 8, 1, "", "__getitem__"], [271, 8, 1, "", "__iter__"], [271, 8, 1, "", "__len__"], [271, 8, 1, "", "__setitem__"], [271, 8, 1, "", "add"], [271, 8, 1, "", "clear"], [271, 8, 1, "", "close"], [271, 8, 1, "", "discard"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get"], [271, 8, 1, "", "get_bytes"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_message"], [271, 8, 1, "", "get_string"], [271, 8, 1, "", "items"], [271, 8, 1, "", "iteritems"], [271, 8, 1, "", "iterkeys"], [271, 8, 1, "", "itervalues"], [271, 8, 1, "", "keys"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "pop"], [271, 8, 1, "", "popitem"], [271, 8, 1, "", "remove"], [271, 8, 1, "", "unlock"], [271, 8, 1, "", "update"], [271, 8, 1, "", "values"]], "mailbox.Maildir": [[271, 8, 1, "", "__setitem__"], [271, 8, 1, "", "add"], [271, 8, 1, "", "add_folder"], [271, 8, 1, "", "clean"], [271, 8, 1, "", "close"], [271, 7, 1, "", "colon"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_folder"], [271, 8, 1, "", "list_folders"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "remove_folder"], [271, 8, 1, "", "unlock"], [271, 8, 1, "", "update"]], "mailbox.MaildirMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_date"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_info"], [271, 8, 1, "", "get_subdir"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_date"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_info"], [271, 8, 1, "", "set_subdir"]], "mailbox.mbox": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.mboxMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_from"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_from"]], "mailcap": [[272, 12, 1, "", "findmatch"], [272, 12, 1, "", "getcaps"]], "marshal": [[274, 12, 1, "", "dump"], [274, 12, 1, "", "dumps"], [274, 12, 1, "", "load"], [274, 12, 1, "", "loads"], [274, 9, 1, "", "version"]], "math": [[275, 12, 1, "", "acos"], [275, 12, 1, "", "acosh"], [275, 12, 1, "", "asin"], [275, 12, 1, "", "asinh"], [275, 12, 1, "", "atan"], [275, 12, 1, "", "atan2"], [275, 12, 1, "", "atanh"], [275, 12, 1, "", "cbrt"], [275, 12, 1, "", "ceil"], [275, 12, 1, "", "comb"], [275, 12, 1, "", "copysign"], [275, 12, 1, "", "cos"], [275, 12, 1, "", "cosh"], [275, 12, 1, "", "degrees"], [275, 12, 1, "", "dist"], [275, 9, 1, "", "e"], [275, 12, 1, "", "erf"], [275, 12, 1, "", "erfc"], [275, 12, 1, "", "exp"], [275, 12, 1, "", "exp2"], [275, 12, 1, "", "expm1"], [275, 12, 1, "", "fabs"], [275, 12, 1, "", "factorial"], [275, 12, 1, "", "floor"], [275, 12, 1, "", "fmod"], [275, 12, 1, "", "frexp"], [275, 12, 1, "", "fsum"], [275, 12, 1, "", "gamma"], [275, 12, 1, "", "gcd"], [275, 12, 1, "", "hypot"], [275, 9, 1, "", "inf"], [275, 12, 1, "", "isclose"], [275, 12, 1, "", "isfinite"], [275, 12, 1, "", "isinf"], [275, 12, 1, "", "isnan"], [275, 12, 1, "", "isqrt"], [275, 12, 1, "", "lcm"], [275, 12, 1, "", "ldexp"], [275, 12, 1, "", "lgamma"], [275, 12, 1, "", "log"], [275, 12, 1, "", "log10"], [275, 12, 1, "", "log1p"], [275, 12, 1, "", "log2"], [275, 12, 1, "", "modf"], [275, 9, 1, "", "nan"], [275, 12, 1, "", "nextafter"], [275, 12, 1, "", "perm"], [275, 9, 1, "", "pi"], [275, 12, 1, "", "pow"], [275, 12, 1, "", "prod"], [275, 12, 1, "", "radians"], [275, 12, 1, "", "remainder"], [275, 12, 1, "", "sin"], [275, 12, 1, "", "sinh"], [275, 12, 1, "", "sqrt"], [275, 12, 1, "", "sumprod"], [275, 12, 1, "", "tan"], [275, 12, 1, "", "tanh"], [275, 9, 1, "", "tau"], [275, 12, 1, "", "trunc"], [275, 12, 1, "", "ulp"]], "memoryview": [[344, 8, 1, "", "__eq__"], [344, 7, 1, "", "c_contiguous"], [344, 8, 1, "", "cast"], [344, 7, 1, "", "contiguous"], [344, 7, 1, "", "f_contiguous"], [344, 7, 1, "", "format"], [344, 8, 1, "", "hex"], [344, 7, 1, "", "itemsize"], [344, 7, 1, "", "nbytes"], [344, 7, 1, "", "ndim"], [344, 7, 1, "", "obj"], [344, 7, 1, "", "readonly"], [344, 8, 1, "", "release"], [344, 7, 1, "", "shape"], [344, 7, 1, "", "strides"], [344, 7, 1, "", "suboffsets"], [344, 8, 1, "", "tobytes"], [344, 8, 1, "", "tolist"], [344, 8, 1, "", "toreadonly"]], "method": [[428, 7, 1, "", "__doc__"], [428, 7, 1, "", "__func__"], [428, 7, 1, "", "__module__"], [428, 7, 1, "", "__name__"], [428, 7, 1, "", "__self__"]], "mimetypes": [[276, 11, 1, "", "MimeTypes"], [276, 12, 1, "", "add_type"], [276, 9, 1, "", "common_types"], [276, 9, 1, "", "encodings_map"], [276, 12, 1, "", "guess_all_extensions"], [276, 12, 1, "", "guess_extension"], [276, 12, 1, "", "guess_type"], [276, 12, 1, "", "init"], [276, 9, 1, "", "inited"], [276, 9, 1, "", "knownfiles"], [276, 12, 1, "", "read_mime_types"], [276, 9, 1, "", "suffix_map"], [276, 9, 1, "", "types_map"]], "mimetypes.MimeTypes": [[276, 7, 1, "", "encodings_map"], [276, 8, 1, "", "guess_all_extensions"], [276, 8, 1, "", "guess_extension"], [276, 8, 1, "", "guess_type"], [276, 8, 1, "", "read"], [276, 8, 1, "", "read_windows_registry"], [276, 8, 1, "", "readfp"], [276, 7, 1, "", "suffix_map"], [276, 7, 1, "", "types_map"], [276, 7, 1, "", "types_map_inv"]], "mmap": [[278, 9, 1, "", "MADV_AUTOSYNC"], [278, 9, 1, "", "MADV_CORE"], [278, 9, 1, "", "MADV_DODUMP"], [278, 9, 1, "", "MADV_DOFORK"], [278, 9, 1, "", "MADV_DONTDUMP"], [278, 9, 1, "", "MADV_DONTFORK"], [278, 9, 1, "", "MADV_DONTNEED"], [278, 9, 1, "", "MADV_FREE"], [278, 9, 1, "", "MADV_FREE_REUSABLE"], [278, 9, 1, "", "MADV_FREE_REUSE"], [278, 9, 1, "", "MADV_HUGEPAGE"], [278, 9, 1, "", "MADV_HWPOISON"], [278, 9, 1, "", "MADV_MERGEABLE"], [278, 9, 1, "", "MADV_NOCORE"], [278, 9, 1, "", "MADV_NOHUGEPAGE"], [278, 9, 1, "", "MADV_NORMAL"], [278, 9, 1, "", "MADV_NOSYNC"], [278, 9, 1, "", "MADV_PROTECT"], [278, 9, 1, "", "MADV_RANDOM"], [278, 9, 1, "", "MADV_REMOVE"], [278, 9, 1, "", "MADV_SEQUENTIAL"], [278, 9, 1, "", "MADV_SOFT_OFFLINE"], [278, 9, 1, "", "MADV_UNMERGEABLE"], [278, 9, 1, "", "MADV_WILLNEED"], [278, 9, 1, "", "MAP_ALIGNED_SUPER"], [278, 9, 1, "", "MAP_ANON"], [278, 9, 1, "", "MAP_ANONYMOUS"], [278, 9, 1, "", "MAP_CONCEAL"], [278, 9, 1, "", "MAP_DENYWRITE"], [278, 9, 1, "", "MAP_EXECUTABLE"], [278, 9, 1, "", "MAP_POPULATE"], [278, 9, 1, "", "MAP_PRIVATE"], [278, 9, 1, "", "MAP_SHARED"], [278, 9, 1, "", "MAP_STACK"], [278, 11, 1, "", "mmap"]], "mmap.mmap": [[278, 8, 1, "", "close"], [278, 7, 1, "", "closed"], [278, 8, 1, "", "find"], [278, 8, 1, "", "flush"], [278, 8, 1, "", "madvise"], [278, 8, 1, "", "move"], [278, 8, 1, "", "read"], [278, 8, 1, "", "read_byte"], [278, 8, 1, "", "readline"], [278, 8, 1, "", "resize"], [278, 8, 1, "", "rfind"], [278, 8, 1, "", "seek"], [278, 8, 1, "", "size"], [278, 8, 1, "", "tell"], [278, 8, 1, "", "write"], [278, 8, 1, "", "write_byte"]], "modulefinder": [[279, 12, 1, "", "AddPackagePath"], [279, 11, 1, "", "ModuleFinder"], [279, 12, 1, "", "ReplacePackage"]], "modulefinder.ModuleFinder": [[279, 7, 1, "", "modules"], [279, 8, 1, "", "report"], [279, 8, 1, "", "run_script"]], "msilib": [[281, 11, 1, "", "Binary"], [281, 11, 1, "", "CAB"], [281, 11, 1, "", "Control"], [281, 12, 1, "", "CreateRecord"], [281, 11, 1, "", "Dialog"], [281, 11, 1, "", "Directory"], [281, 12, 1, "", "FCICreate"], [281, 11, 1, "", "Feature"], [281, 12, 1, "", "OpenDatabase"], [281, 11, 1, "", "RadioButtonGroup"], [281, 12, 1, "", "UuidCreate"], [281, 12, 1, "", "add_data"], [281, 12, 1, "", "add_stream"], [281, 12, 1, "", "add_tables"], [281, 12, 1, "", "gen_uuid"], [281, 12, 1, "", "init_database"], [281, 9, 1, "", "schema"], [281, 9, 1, "", "sequence"], [281, 9, 1, "", "text"]], "msilib.CAB": [[281, 8, 1, "", "append"], [281, 8, 1, "", "commit"]], "msilib.Control": [[281, 8, 1, "", "condition"], [281, 8, 1, "", "event"], [281, 8, 1, "", "mapping"]], "msilib.Database": [[281, 8, 1, "", "Close"], [281, 8, 1, "", "Commit"], [281, 8, 1, "", "GetSummaryInformation"], [281, 8, 1, "", "OpenView"]], "msilib.Dialog": [[281, 8, 1, "", "bitmap"], [281, 8, 1, "", "checkbox"], [281, 8, 1, "", "control"], [281, 8, 1, "", "line"], [281, 8, 1, "", "pushbutton"], [281, 8, 1, "", "radiogroup"], [281, 8, 1, "", "text"]], "msilib.Directory": [[281, 8, 1, "", "add_file"], [281, 8, 1, "", "glob"], [281, 8, 1, "", "remove_pyc"], [281, 8, 1, "", "start_component"]], "msilib.Feature": [[281, 8, 1, "", "set_current"]], "msilib.RadioButtonGroup": [[281, 8, 1, "", "add"]], "msilib.Record": [[281, 8, 1, "", "ClearData"], [281, 8, 1, "", "GetFieldCount"], [281, 8, 1, "", "GetInteger"], [281, 8, 1, "", "GetString"], [281, 8, 1, "", "SetInteger"], [281, 8, 1, "", "SetStream"], [281, 8, 1, "", "SetString"]], "msilib.SummaryInformation": [[281, 8, 1, "", "GetProperty"], [281, 8, 1, "", "GetPropertyCount"], [281, 8, 1, "", "Persist"], [281, 8, 1, "", "SetProperty"]], "msilib.View": [[281, 8, 1, "", "Close"], [281, 8, 1, "", "Execute"], [281, 8, 1, "", "Fetch"], [281, 8, 1, "", "GetColumnInfo"], [281, 8, 1, "", "Modify"]], "msvcrt": [[282, 9, 1, "", "CRT_ASSEMBLY_VERSION"], [282, 9, 1, "", "LIBRARIES_ASSEMBLY_NAME_PREFIX"], [282, 9, 1, "", "LK_LOCK"], [282, 9, 1, "", "LK_NBLCK"], [282, 9, 1, "", "LK_NBRLCK"], [282, 9, 1, "", "LK_RLCK"], [282, 9, 1, "", "LK_UNLCK"], [282, 9, 1, "", "VC_ASSEMBLY_PUBLICKEYTOKEN"], [282, 12, 1, "", "get_osfhandle"], [282, 12, 1, "", "getch"], [282, 12, 1, "", "getche"], [282, 12, 1, "", "getwch"], [282, 12, 1, "", "getwche"], [282, 12, 1, "", "heapmin"], [282, 12, 1, "", "kbhit"], [282, 12, 1, "", "locking"], [282, 12, 1, "", "open_osfhandle"], [282, 12, 1, "", "putch"], [282, 12, 1, "", "putwch"], [282, 12, 1, "", "setmode"], [282, 12, 1, "", "ungetch"], [282, 12, 1, "", "ungetwch"]], "multiprocessing": [[283, 12, 1, "", "Array"], [283, 6, 1, "", "AuthenticationError"], [283, 11, 1, "", "Barrier"], [283, 11, 1, "", "BoundedSemaphore"], [283, 6, 1, "", "BufferTooShort"], [283, 11, 1, "", "Condition"], [283, 11, 1, "", "Event"], [283, 11, 1, "", "JoinableQueue"], [283, 11, 1, "", "Lock"], [283, 12, 1, "", "Manager"], [283, 12, 1, "", "Pipe"], [283, 11, 1, "", "Process"], [283, 6, 1, "", "ProcessError"], [283, 11, 1, "", "Queue"], [283, 11, 1, "", "RLock"], [283, 11, 1, "", "Semaphore"], [283, 11, 1, "", "SimpleQueue"], [283, 6, 1, "", "TimeoutError"], [283, 12, 1, "", "Value"], [283, 12, 1, "", "active_children"], [283, 10, 0, "-", "connection"], [283, 12, 1, "", "cpu_count"], [283, 12, 1, "", "current_process"], [283, 10, 0, "-", "dummy"], [283, 12, 1, "", "freeze_support"], [283, 12, 1, "", "get_all_start_methods"], [283, 12, 1, "", "get_context"], [283, 12, 1, "", "get_logger"], [283, 12, 1, "", "get_start_method"], [283, 12, 1, "", "log_to_stderr"], [283, 10, 0, "-", "managers"], [283, 12, 1, "", "parent_process"], [283, 10, 0, "-", "pool"], [283, 12, 1, "", "set_executable"], [283, 12, 1, "", "set_forkserver_preload"], [283, 12, 1, "", "set_start_method"], [284, 10, 0, "-", "shared_memory"], [283, 10, 0, "-", "sharedctypes"]], "multiprocessing.JoinableQueue": [[283, 8, 1, "", "join"], [283, 8, 1, "", "task_done"]], "multiprocessing.Lock": [[283, 8, 1, "", "acquire"], [283, 8, 1, "", "release"]], "multiprocessing.Process": [[283, 7, 1, "", "authkey"], [283, 8, 1, "", "close"], [283, 7, 1, "", "daemon"], [283, 7, 1, "", "exitcode"], [283, 8, 1, "", "is_alive"], [283, 8, 1, "", "join"], [283, 8, 1, "", "kill"], [283, 7, 1, "", "name"], [283, 7, 1, "", "pid"], [283, 8, 1, "", "run"], [283, 7, 1, "", "sentinel"], [283, 8, 1, "", "start"], [283, 8, 1, "", "terminate"]], "multiprocessing.Queue": [[283, 8, 1, "", "cancel_join_thread"], [283, 8, 1, "", "close"], [283, 8, 1, "", "empty"], [283, 8, 1, "", "full"], [283, 8, 1, "", "get"], [283, 8, 1, "", "get_nowait"], [283, 8, 1, "", "join_thread"], [283, 8, 1, "", "put"], [283, 8, 1, "", "put_nowait"], [283, 8, 1, "", "qsize"]], "multiprocessing.RLock": [[283, 8, 1, "", "acquire"], [283, 8, 1, "", "release"]], "multiprocessing.SimpleQueue": [[283, 8, 1, "", "close"], [283, 8, 1, "", "empty"], [283, 8, 1, "", "get"], [283, 8, 1, "", "put"]], "multiprocessing.connection": [[283, 12, 1, "", "Client"], [283, 11, 1, "", "Connection"], [283, 11, 1, "", "Listener"], [283, 12, 1, "", "answer_challenge"], [283, 12, 1, "", "deliver_challenge"], [283, 12, 1, "", "wait"]], "multiprocessing.connection.Connection": [[283, 8, 1, "", "close"], [283, 8, 1, "", "fileno"], [283, 8, 1, "", "poll"], [283, 8, 1, "", "recv"], [283, 8, 1, "", "recv_bytes"], [283, 8, 1, "", "recv_bytes_into"], [283, 8, 1, "", "send"], [283, 8, 1, "", "send_bytes"]], "multiprocessing.connection.Listener": [[283, 8, 1, "", "accept"], [283, 7, 1, "", "address"], [283, 8, 1, "", "close"], [283, 7, 1, "", "last_accepted"]], "multiprocessing.managers": [[283, 11, 1, "", "BaseManager"], [283, 11, 1, "", "BaseProxy"], [283, 11, 1, "", "Namespace"], [284, 11, 1, "", "SharedMemoryManager"], [283, 11, 1, "", "SyncManager"]], "multiprocessing.managers.BaseManager": [[283, 7, 1, "", "address"], [283, 8, 1, "", "connect"], [283, 8, 1, "", "get_server"], [283, 8, 1, "", "register"], [283, 8, 1, "", "shutdown"], [283, 8, 1, "", "start"]], "multiprocessing.managers.BaseProxy": [[283, 8, 1, "", "__repr__"], [283, 8, 1, "", "__str__"], [283, 8, 1, "", "_callmethod"], [283, 8, 1, "", "_getvalue"]], "multiprocessing.managers.SharedMemoryManager": [[284, 8, 1, "", "ShareableList"], [284, 8, 1, "", "SharedMemory"]], "multiprocessing.managers.SyncManager": [[283, 8, 1, "", "Array"], [283, 8, 1, "", "Barrier"], [283, 8, 1, "", "BoundedSemaphore"], [283, 8, 1, "", "Condition"], [283, 8, 1, "", "Event"], [283, 8, 1, "", "Lock"], [283, 8, 1, "", "Namespace"], [283, 8, 1, "", "Queue"], [283, 8, 1, "", "RLock"], [283, 8, 1, "", "Semaphore"], [283, 8, 1, "", "Value"], [283, 8, 1, "", "dict"], [283, 8, 1, "", "list"]], "multiprocessing.pool": [[283, 11, 1, "", "AsyncResult"], [283, 11, 1, "", "Pool"], [283, 11, 1, "", "ThreadPool"]], "multiprocessing.pool.AsyncResult": [[283, 8, 1, "", "get"], [283, 8, 1, "", "ready"], [283, 8, 1, "", "successful"], [283, 8, 1, "", "wait"]], "multiprocessing.pool.Pool": [[283, 8, 1, "", "apply"], [283, 8, 1, "", "apply_async"], [283, 8, 1, "", "close"], [283, 8, 1, "", "imap"], [283, 8, 1, "", "imap_unordered"], [283, 8, 1, "", "join"], [283, 8, 1, "", "map"], [283, 8, 1, "", "map_async"], [283, 8, 1, "", "starmap"], [283, 8, 1, "", "starmap_async"], [283, 8, 1, "", "terminate"]], "multiprocessing.shared_memory": [[284, 11, 1, "", "ShareableList"], [284, 11, 1, "", "SharedMemory"]], "multiprocessing.shared_memory.ShareableList": [[284, 8, 1, "", "count"], [284, 7, 1, "", "format"], [284, 8, 1, "", "index"], [284, 7, 1, "", "shm"]], "multiprocessing.shared_memory.SharedMemory": [[284, 7, 1, "", "buf"], [284, 8, 1, "", "close"], [284, 7, 1, "", "name"], [284, 7, 1, "", "size"], [284, 8, 1, "", "unlink"]], "multiprocessing.sharedctypes": [[283, 12, 1, "", "Array"], [283, 12, 1, "", "RawArray"], [283, 12, 1, "", "RawValue"], [283, 12, 1, "", "Value"], [283, 12, 1, "", "copy"], [283, 12, 1, "", "synchronized"]], "netrc": [[286, 6, 1, "", "NetrcParseError"], [286, 11, 1, "", "netrc"]], "netrc.NetrcParseError": [[286, 7, 1, "", "filename"], [286, 7, 1, "", "lineno"], [286, 7, 1, "", "msg"]], "netrc.netrc": [[286, 8, 1, "", "__repr__"], [286, 8, 1, "", "authenticators"], [286, 7, 1, "", "hosts"], [286, 7, 1, "", "macros"]], "nis": [[287, 12, 1, "", "cat"], [287, 6, 1, "", "error"], [287, 12, 1, "", "get_default_domain"], [287, 12, 1, "", "maps"], [287, 12, 1, "", "match"]], "nntplib": [[288, 11, 1, "", "NNTP"], [288, 6, 1, "", "NNTPDataError"], [288, 6, 1, "", "NNTPError"], [288, 6, 1, "", "NNTPPermanentError"], [288, 6, 1, "", "NNTPProtocolError"], [288, 6, 1, "", "NNTPReplyError"], [288, 6, 1, "", "NNTPTemporaryError"], [288, 11, 1, "", "NNTP_SSL"], [288, 12, 1, "", "decode_header"]], "nntplib.NNTP": [[288, 8, 1, "", "article"], [288, 8, 1, "", "body"], [288, 8, 1, "", "date"], [288, 8, 1, "", "description"], [288, 8, 1, "", "descriptions"], [288, 8, 1, "", "getcapabilities"], [288, 8, 1, "", "getwelcome"], [288, 8, 1, "", "group"], [288, 8, 1, "", "head"], [288, 8, 1, "", "help"], [288, 8, 1, "", "ihave"], [288, 8, 1, "", "last"], [288, 8, 1, "", "list"], [288, 8, 1, "", "login"], [288, 8, 1, "", "newgroups"], [288, 8, 1, "", "newnews"], [288, 8, 1, "", "next"], [288, 7, 1, "", "nntp_implementation"], [288, 7, 1, "", "nntp_version"], [288, 8, 1, "", "over"], [288, 8, 1, "", "post"], [288, 8, 1, "", "quit"], [288, 8, 1, "", "set_debuglevel"], [288, 8, 1, "", "slave"], [288, 8, 1, "", "starttls"], [288, 8, 1, "", "stat"], [288, 8, 1, "", "xhdr"], [288, 8, 1, "", "xover"]], "nntplib.NNTPError": [[288, 7, 1, "", "response"]], "numbers": [[289, 11, 1, "", "Complex"], [289, 11, 1, "", "Integral"], [289, 11, 1, "", "Number"], [289, 11, 1, "", "Rational"], [289, 11, 1, "", "Real"]], "numbers.Complex": [[289, 8, 1, "", "conjugate"], [289, 7, 1, "", "imag"], [289, 7, 1, "", "real"]], "numbers.Rational": [[289, 7, 1, "", "denominator"], [289, 7, 1, "", "numerator"]], "object": [[428, 8, 1, "", "__abs__"], [428, 8, 1, "", "__add__"], [428, 8, 1, "", "__aenter__"], [428, 8, 1, "", "__aexit__"], [428, 8, 1, "", "__aiter__"], [428, 8, 1, "", "__and__"], [428, 8, 1, "", "__anext__"], [428, 8, 1, "", "__await__"], [428, 8, 1, "", "__bool__"], [428, 8, 1, "", "__buffer__"], [428, 8, 1, "", "__bytes__"], [428, 8, 1, "", "__call__"], [428, 8, 1, "", "__ceil__"], [428, 8, 1, "", "__class_getitem__"], [428, 8, 1, "", "__complex__"], [428, 8, 1, "", "__contains__"], [428, 8, 1, "", "__del__"], [428, 8, 1, "", "__delattr__"], [428, 8, 1, "", "__delete__"], [428, 8, 1, "", "__delitem__"], [344, 7, 1, "", "__dict__"], [428, 8, 1, "", "__dir__"], [428, 8, 1, "", "__divmod__"], [428, 8, 1, "", "__enter__"], [428, 8, 1, "", "__eq__"], [428, 8, 1, "", "__exit__"], [428, 8, 1, "", "__float__"], [428, 8, 1, "", "__floor__"], [428, 8, 1, "", "__floordiv__"], [428, 8, 1, "", "__format__"], [428, 8, 1, "", "__ge__"], [428, 8, 1, "", "__get__"], [428, 8, 1, "", "__getattr__"], [428, 8, 1, "", "__getattribute__"], [428, 8, 1, "", "__getitem__"], [299, 8, 1, "", "__getnewargs__"], [299, 8, 1, "", "__getnewargs_ex__"], [299, 8, 1, "", "__getstate__"], [428, 8, 1, "", "__gt__"], [428, 8, 1, "", "__hash__"], [428, 8, 1, "", "__iadd__"], [428, 8, 1, "", "__iand__"], [428, 8, 1, "", "__ifloordiv__"], [428, 8, 1, "", "__ilshift__"], [428, 8, 1, "", "__imatmul__"], [428, 8, 1, "", "__imod__"], [428, 8, 1, "", "__imul__"], [428, 8, 1, "", "__index__"], [428, 8, 1, "", "__init__"], [428, 8, 1, "", "__init_subclass__"], [428, 8, 1, "", "__int__"], [428, 8, 1, "", "__invert__"], [428, 8, 1, "", "__ior__"], [428, 8, 1, "", "__ipow__"], [428, 8, 1, "", "__irshift__"], [428, 8, 1, "", "__isub__"], [428, 8, 1, "", "__iter__"], [428, 8, 1, "", "__itruediv__"], [428, 8, 1, "", "__ixor__"], [428, 8, 1, "", "__le__"], [428, 8, 1, "", "__len__"], [428, 8, 1, "", "__length_hint__"], [428, 8, 1, "", "__lshift__"], [428, 8, 1, "", "__lt__"], [428, 9, 1, "", "__match_args__"], [428, 8, 1, "", "__matmul__"], [428, 8, 1, "", "__missing__"], [428, 8, 1, "", "__mod__"], [428, 8, 1, "", "__mro_entries__"], [428, 8, 1, "", "__mul__"], [428, 8, 1, "", "__ne__"], [428, 8, 1, "", "__neg__"], [428, 8, 1, "", "__new__"], [428, 7, 1, "", "__objclass__"], [428, 8, 1, "", "__or__"], [428, 8, 1, "", "__pos__"], [428, 8, 1, "", "__pow__"], [428, 8, 1, "", "__radd__"], [428, 8, 1, "", "__rand__"], [428, 8, 1, "", "__rdivmod__"], [299, 8, 1, "", "__reduce__"], [299, 8, 1, "", "__reduce_ex__"], [428, 8, 1, "", "__release_buffer__"], [428, 8, 1, "", "__repr__"], [428, 8, 1, "", "__reversed__"], [428, 8, 1, "", "__rfloordiv__"], [428, 8, 1, "", "__rlshift__"], [428, 8, 1, "", "__rmatmul__"], [428, 8, 1, "", "__rmod__"], [428, 8, 1, "", "__rmul__"], [428, 8, 1, "", "__ror__"], [428, 8, 1, "", "__round__"], [428, 8, 1, "", "__rpow__"], [428, 8, 1, "", "__rrshift__"], [428, 8, 1, "", "__rshift__"], [428, 8, 1, "", "__rsub__"], [428, 8, 1, "", "__rtruediv__"], [428, 8, 1, "", "__rxor__"], [428, 8, 1, "", "__set__"], [428, 8, 1, "", "__set_name__"], [428, 8, 1, "", "__setattr__"], [428, 8, 1, "", "__setitem__"], [299, 8, 1, "", "__setstate__"], [428, 9, 1, "", "__slots__"], [428, 8, 1, "", "__str__"], [428, 8, 1, "", "__sub__"], [428, 8, 1, "", "__truediv__"], [428, 8, 1, "", "__trunc__"], [428, 8, 1, "", "__xor__"]], "operator": [[291, 12, 1, "", "__abs__"], [291, 12, 1, "", "__add__"], [291, 12, 1, "", "__and__"], [291, 12, 1, "", "__call__"], [291, 12, 1, "", "__concat__"], [291, 12, 1, "", "__contains__"], [291, 12, 1, "", "__delitem__"], [291, 12, 1, "", "__eq__"], [291, 12, 1, "", "__floordiv__"], [291, 12, 1, "", "__ge__"], [291, 12, 1, "", "__getitem__"], [291, 12, 1, "", "__gt__"], [291, 12, 1, "", "__iadd__"], [291, 12, 1, "", "__iand__"], [291, 12, 1, "", "__iconcat__"], [291, 12, 1, "", "__ifloordiv__"], [291, 12, 1, "", "__ilshift__"], [291, 12, 1, "", "__imatmul__"], [291, 12, 1, "", "__imod__"], [291, 12, 1, "", "__imul__"], [291, 12, 1, "", "__index__"], [291, 12, 1, "", "__inv__"], [291, 12, 1, "", "__invert__"], [291, 12, 1, "", "__ior__"], [291, 12, 1, "", "__ipow__"], [291, 12, 1, "", "__irshift__"], [291, 12, 1, "", "__isub__"], [291, 12, 1, "", "__itruediv__"], [291, 12, 1, "", "__ixor__"], [291, 12, 1, "", "__le__"], [291, 12, 1, "", "__lshift__"], [291, 12, 1, "", "__lt__"], [291, 12, 1, "", "__matmul__"], [291, 12, 1, "", "__mod__"], [291, 12, 1, "", "__mul__"], [291, 12, 1, "", "__ne__"], [291, 12, 1, "", "__neg__"], [291, 12, 1, "", "__not__"], [291, 12, 1, "", "__or__"], [291, 12, 1, "", "__pos__"], [291, 12, 1, "", "__pow__"], [291, 12, 1, "", "__rshift__"], [291, 12, 1, "", "__setitem__"], [291, 12, 1, "", "__sub__"], [291, 12, 1, "", "__truediv__"], [291, 12, 1, "", "__xor__"], [291, 12, 1, "", "abs"], [291, 12, 1, "", "add"], [291, 12, 1, "", "and_"], [291, 12, 1, "", "attrgetter"], [291, 12, 1, "", "call"], [291, 12, 1, "", "concat"], [291, 12, 1, "", "contains"], [291, 12, 1, "", "countOf"], [291, 12, 1, "", "delitem"], [291, 12, 1, "", "eq"], [291, 12, 1, "", "floordiv"], [291, 12, 1, "", "ge"], [291, 12, 1, "", "getitem"], [291, 12, 1, "", "gt"], [291, 12, 1, "", "iadd"], [291, 12, 1, "", "iand"], [291, 12, 1, "", "iconcat"], [291, 12, 1, "", "ifloordiv"], [291, 12, 1, "", "ilshift"], [291, 12, 1, "", "imatmul"], [291, 12, 1, "", "imod"], [291, 12, 1, "", "imul"], [291, 12, 1, "", "index"], [291, 12, 1, "", "indexOf"], [291, 12, 1, "", "inv"], [291, 12, 1, "", "invert"], [291, 12, 1, "", "ior"], [291, 12, 1, "", "ipow"], [291, 12, 1, "", "irshift"], [291, 12, 1, "", "is_"], [291, 12, 1, "", "is_not"], [291, 12, 1, "", "isub"], [291, 12, 1, "", "itemgetter"], [291, 12, 1, "", "itruediv"], [291, 12, 1, "", "ixor"], [291, 12, 1, "", "le"], [291, 12, 1, "", "length_hint"], [291, 12, 1, "", "lshift"], [291, 12, 1, "", "lt"], [291, 12, 1, "", "matmul"], [291, 12, 1, "", "methodcaller"], [291, 12, 1, "", "mod"], [291, 12, 1, "", "mul"], [291, 12, 1, "", "ne"], [291, 12, 1, "", "neg"], [291, 12, 1, "", "not_"], [291, 12, 1, "", "or_"], [291, 12, 1, "", "pos"], [291, 12, 1, "", "pow"], [291, 12, 1, "", "rshift"], [291, 12, 1, "", "setitem"], [291, 12, 1, "", "sub"], [291, 12, 1, "", "truediv"], [291, 12, 1, "", "truth"], [291, 12, 1, "", "xor"]], "optparse": [[292, 6, 1, "", "AmbiguousOptionError"], [292, 6, 1, "", "BadOptionError"], [292, 11, 1, "", "Option"], [292, 6, 1, "", "OptionConflictError"], [292, 6, 1, "", "OptionError"], [292, 11, 1, "", "OptionGroup"], [292, 11, 1, "", "OptionParser"], [292, 6, 1, "", "OptionValueError"], [292, 11, 1, "", "Values"]], "optparse.Option": [[292, 7, 1, "", "ACTIONS"], [292, 7, 1, "", "ALWAYS_TYPED_ACTIONS"], [292, 7, 1, "", "STORE_ACTIONS"], [292, 7, 1, "", "TYPED_ACTIONS"], [292, 7, 1, "", "TYPES"], [292, 7, 1, "", "TYPE_CHECKER"], [292, 7, 1, "", "action"], [292, 7, 1, "", "callback"], [292, 7, 1, "", "callback_args"], [292, 7, 1, "", "callback_kwargs"], [292, 7, 1, "", "choices"], [292, 7, 1, "", "const"], [292, 7, 1, "", "default"], [292, 7, 1, "", "dest"], [292, 7, 1, "", "help"], [292, 7, 1, "", "metavar"], [292, 7, 1, "", "nargs"], [292, 7, 1, "", "type"]], "optparse.OptionParser": [[292, 8, 1, "", "add_option"], [292, 8, 1, "", "disable_interspersed_args"], [292, 8, 1, "", "enable_interspersed_args"], [292, 8, 1, "", "get_option"], [292, 8, 1, "", "get_option_group"], [292, 8, 1, "", "get_usage"], [292, 8, 1, "", "get_version"], [292, 8, 1, "", "has_option"], [292, 8, 1, "", "parse_args"], [292, 8, 1, "", "print_usage"], [292, 8, 1, "", "print_version"], [292, 8, 1, "", "remove_option"], [292, 8, 1, "", "set_defaults"], [292, 8, 1, "", "set_usage"]], "os": [[293, 9, 1, "", "CLD_CONTINUED"], [293, 9, 1, "", "CLD_DUMPED"], [293, 9, 1, "", "CLD_EXITED"], [293, 9, 1, "", "CLD_KILLED"], [293, 9, 1, "", "CLD_STOPPED"], [293, 9, 1, "", "CLD_TRAPPED"], [293, 9, 1, "", "CLONE_FILES"], [293, 9, 1, "", "CLONE_FS"], [293, 9, 1, "", "CLONE_NEWCGROUP"], [293, 9, 1, "", "CLONE_NEWIPC"], [293, 9, 1, "", "CLONE_NEWNET"], [293, 9, 1, "", "CLONE_NEWNS"], [293, 9, 1, "", "CLONE_NEWPID"], [293, 9, 1, "", "CLONE_NEWTIME"], [293, 9, 1, "", "CLONE_NEWUSER"], [293, 9, 1, "", "CLONE_NEWUTS"], [293, 9, 1, "", "CLONE_SIGHAND"], [293, 9, 1, "", "CLONE_SYSVSEM"], [293, 9, 1, "", "CLONE_THREAD"], [293, 9, 1, "", "CLONE_VM"], [293, 11, 1, "", "DirEntry"], [293, 9, 1, "", "EFD_CLOEXEC"], [293, 9, 1, "", "EFD_NONBLOCK"], [293, 9, 1, "", "EFD_SEMAPHORE"], [293, 9, 1, "", "EX_CANTCREAT"], [293, 9, 1, "", "EX_CONFIG"], [293, 9, 1, "", "EX_DATAERR"], [293, 9, 1, "", "EX_IOERR"], [293, 9, 1, "", "EX_NOHOST"], [293, 9, 1, "", "EX_NOINPUT"], [293, 9, 1, "", "EX_NOPERM"], [293, 9, 1, "", "EX_NOTFOUND"], [293, 9, 1, "", "EX_NOUSER"], [293, 9, 1, "", "EX_OK"], [293, 9, 1, "", "EX_OSERR"], [293, 9, 1, "", "EX_OSFILE"], [293, 9, 1, "", "EX_PROTOCOL"], [293, 9, 1, "", "EX_SOFTWARE"], [293, 9, 1, "", "EX_TEMPFAIL"], [293, 9, 1, "", "EX_UNAVAILABLE"], [293, 9, 1, "", "EX_USAGE"], [293, 9, 1, "", "F_LOCK"], [293, 9, 1, "", "F_OK"], [293, 9, 1, "", "F_TEST"], [293, 9, 1, "", "F_TLOCK"], [293, 9, 1, "", "F_ULOCK"], [293, 9, 1, "", "GRND_NONBLOCK"], [293, 9, 1, "", "GRND_RANDOM"], [293, 9, 1, "", "MFD_ALLOW_SEALING"], [293, 9, 1, "", "MFD_CLOEXEC"], [293, 9, 1, "", "MFD_HUGETLB"], [293, 9, 1, "", "MFD_HUGE_16GB"], [293, 9, 1, "", "MFD_HUGE_16MB"], [293, 9, 1, "", "MFD_HUGE_1GB"], [293, 9, 1, "", "MFD_HUGE_1MB"], [293, 9, 1, "", "MFD_HUGE_256MB"], [293, 9, 1, "", "MFD_HUGE_2GB"], [293, 9, 1, "", "MFD_HUGE_2MB"], [293, 9, 1, "", "MFD_HUGE_32MB"], [293, 9, 1, "", "MFD_HUGE_512KB"], [293, 9, 1, "", "MFD_HUGE_512MB"], [293, 9, 1, "", "MFD_HUGE_64KB"], [293, 9, 1, "", "MFD_HUGE_8MB"], [293, 9, 1, "", "MFD_HUGE_MASK"], [293, 9, 1, "", "MFD_HUGE_SHIFT"], [293, 9, 1, "", "O_APPEND"], [293, 9, 1, "", "O_ASYNC"], [293, 9, 1, "", "O_BINARY"], [293, 9, 1, "", "O_CLOEXEC"], [293, 9, 1, "", "O_CREAT"], [293, 9, 1, "", "O_DIRECT"], [293, 9, 1, "", "O_DIRECTORY"], [293, 9, 1, "", "O_DSYNC"], [293, 9, 1, "", "O_EVTONLY"], [293, 9, 1, "", "O_EXCL"], [293, 9, 1, "", "O_EXLOCK"], [293, 9, 1, "", "O_FSYNC"], [293, 9, 1, "", "O_NDELAY"], [293, 9, 1, "", "O_NOATIME"], [293, 9, 1, "", "O_NOCTTY"], [293, 9, 1, "", "O_NOFOLLOW"], [293, 9, 1, "", "O_NOFOLLOW_ANY"], [293, 9, 1, "", "O_NOINHERIT"], [293, 9, 1, "", "O_NONBLOCK"], [293, 9, 1, "", "O_PATH"], [293, 9, 1, "", "O_RANDOM"], [293, 9, 1, "", "O_RDONLY"], [293, 9, 1, "", "O_RDWR"], [293, 9, 1, "", "O_RSYNC"], [293, 9, 1, "", "O_SEQUENTIAL"], [293, 9, 1, "", "O_SHLOCK"], [293, 9, 1, "", "O_SHORT_LIVED"], [293, 9, 1, "", "O_SYMLINK"], [293, 9, 1, "", "O_SYNC"], [293, 9, 1, "", "O_TEMPORARY"], [293, 9, 1, "", "O_TEXT"], [293, 9, 1, "", "O_TMPFILE"], [293, 9, 1, "", "O_TRUNC"], [293, 9, 1, "", "O_WRONLY"], [293, 9, 1, "", "PIDFD_NONBLOCK"], [293, 9, 1, "", "POSIX_FADV_DONTNEED"], [293, 9, 1, "", "POSIX_FADV_NOREUSE"], [293, 9, 1, "", "POSIX_FADV_NORMAL"], [293, 9, 1, "", "POSIX_FADV_RANDOM"], [293, 9, 1, "", "POSIX_FADV_SEQUENTIAL"], [293, 9, 1, "", "POSIX_FADV_WILLNEED"], [293, 9, 1, "", "POSIX_SPAWN_CLOSE"], [293, 9, 1, "", "POSIX_SPAWN_DUP2"], [293, 9, 1, "", "POSIX_SPAWN_OPEN"], [293, 9, 1, "", "PRIO_DARWIN_BG"], [293, 9, 1, "", "PRIO_DARWIN_NONUI"], [293, 9, 1, "", "PRIO_DARWIN_PROCESS"], [293, 9, 1, "", "PRIO_DARWIN_THREAD"], [293, 9, 1, "", "PRIO_PGRP"], [293, 9, 1, "", "PRIO_PROCESS"], [293, 9, 1, "", "PRIO_USER"], [293, 9, 1, "", "P_ALL"], [293, 9, 1, "", "P_DETACH"], [293, 9, 1, "", "P_NOWAIT"], [293, 9, 1, "", "P_NOWAITO"], [293, 9, 1, "", "P_OVERLAY"], [293, 9, 1, "", "P_PGID"], [293, 9, 1, "", "P_PID"], [293, 9, 1, "", "P_PIDFD"], [293, 9, 1, "", "P_WAIT"], [293, 11, 1, "", "PathLike"], [293, 9, 1, "", "RTLD_DEEPBIND"], [293, 9, 1, "", "RTLD_GLOBAL"], [293, 9, 1, "", "RTLD_LAZY"], [293, 9, 1, "", "RTLD_LOCAL"], [293, 9, 1, "", "RTLD_NODELETE"], [293, 9, 1, "", "RTLD_NOLOAD"], [293, 9, 1, "", "RTLD_NOW"], [293, 9, 1, "", "RWF_APPEND"], [293, 9, 1, "", "RWF_DSYNC"], [293, 9, 1, "", "RWF_HIPRI"], [293, 9, 1, "", "RWF_NOWAIT"], [293, 9, 1, "", "RWF_SYNC"], [293, 9, 1, "", "R_OK"], [293, 9, 1, "", "SCHED_BATCH"], [293, 9, 1, "", "SCHED_FIFO"], [293, 9, 1, "", "SCHED_IDLE"], [293, 9, 1, "", "SCHED_OTHER"], [293, 9, 1, "", "SCHED_RESET_ON_FORK"], [293, 9, 1, "", "SCHED_RR"], [293, 9, 1, "", "SCHED_SPORADIC"], [293, 9, 1, "", "SEEK_CUR"], [293, 9, 1, "", "SEEK_DATA"], [293, 9, 1, "", "SEEK_END"], [293, 9, 1, "", "SEEK_HOLE"], [293, 9, 1, "", "SEEK_SET"], [293, 9, 1, "", "SF_MNOWAIT"], [293, 9, 1, "", "SF_NOCACHE"], [293, 9, 1, "", "SF_NODISKIO"], [293, 9, 1, "", "SF_SYNC"], [293, 9, 1, "", "SPLICE_F_MORE"], [293, 9, 1, "", "SPLICE_F_MOVE"], [293, 9, 1, "", "SPLICE_F_NONBLOCK"], [293, 9, 1, "", "WCONTINUED"], [293, 12, 1, "", "WCOREDUMP"], [293, 9, 1, "", "WEXITED"], [293, 12, 1, "", "WEXITSTATUS"], [293, 12, 1, "", "WIFCONTINUED"], [293, 12, 1, "", "WIFEXITED"], [293, 12, 1, "", "WIFSIGNALED"], [293, 12, 1, "", "WIFSTOPPED"], [293, 9, 1, "", "WNOHANG"], [293, 9, 1, "", "WNOWAIT"], [293, 9, 1, "", "WSTOPPED"], [293, 12, 1, "", "WSTOPSIG"], [293, 12, 1, "", "WTERMSIG"], [293, 9, 1, "", "WUNTRACED"], [293, 9, 1, "", "W_OK"], [293, 9, 1, "", "XATTR_CREATE"], [293, 9, 1, "", "XATTR_REPLACE"], [293, 9, 1, "", "XATTR_SIZE_MAX"], [293, 9, 1, "", "X_OK"], [293, 12, 1, "", "_exit"], [293, 12, 1, "", "abort"], [293, 12, 1, "", "access"], [293, 12, 1, "", "add_dll_directory"], [293, 9, 1, "", "altsep"], [293, 12, 1, "", "chdir"], [293, 12, 1, "", "chflags"], [293, 12, 1, "", "chmod"], [293, 12, 1, "", "chown"], [293, 12, 1, "", "chroot"], [293, 12, 1, "", "close"], [293, 12, 1, "", "closerange"], [293, 12, 1, "", "confstr"], [293, 9, 1, "", "confstr_names"], [293, 12, 1, "", "copy_file_range"], [293, 12, 1, "", "cpu_count"], [293, 12, 1, "", "ctermid"], [293, 9, 1, "", "curdir"], [293, 9, 1, "", "defpath"], [293, 12, 1, "", "device_encoding"], [293, 9, 1, "", "devnull"], [293, 12, 1, "", "dup"], [293, 12, 1, "", "dup2"], [293, 9, 1, "", "environ"], [293, 9, 1, "", "environb"], [293, 6, 1, "", "error"], [293, 12, 1, "", "eventfd"], [293, 12, 1, "", "eventfd_read"], [293, 12, 1, "", "eventfd_write"], [293, 12, 1, "", "execl"], [293, 12, 1, "", "execle"], [293, 12, 1, "", "execlp"], [293, 12, 1, "", "execlpe"], [293, 12, 1, "", "execv"], [293, 12, 1, "", "execve"], [293, 12, 1, "", "execvp"], [293, 12, 1, "", "execvpe"], [293, 9, 1, "", "extsep"], [293, 12, 1, "", "fchdir"], [293, 12, 1, "", "fchmod"], [293, 12, 1, "", "fchown"], [293, 12, 1, "", "fdatasync"], [293, 12, 1, "", "fdopen"], [293, 12, 1, "", "fork"], [293, 12, 1, "", "forkpty"], [293, 12, 1, "", "fpathconf"], [293, 12, 1, "", "fsdecode"], [293, 12, 1, "", "fsencode"], [293, 12, 1, "", "fspath"], [293, 12, 1, "", "fstat"], [293, 12, 1, "", "fstatvfs"], [293, 12, 1, "", "fsync"], [293, 12, 1, "", "ftruncate"], [293, 12, 1, "", "fwalk"], [293, 12, 1, "", "get_blocking"], [293, 12, 1, "", "get_exec_path"], [293, 12, 1, "", "get_handle_inheritable"], [293, 12, 1, "", "get_inheritable"], [293, 12, 1, "", "get_terminal_size"], [293, 12, 1, "", "getcwd"], [293, 12, 1, "", "getcwdb"], [293, 12, 1, "", "getegid"], [293, 12, 1, "", "getenv"], [293, 12, 1, "", "getenvb"], [293, 12, 1, "", "geteuid"], [293, 12, 1, "", "getgid"], [293, 12, 1, "", "getgrouplist"], [293, 12, 1, "", "getgroups"], [293, 12, 1, "", "getloadavg"], [293, 12, 1, "", "getlogin"], [293, 12, 1, "", "getpgid"], [293, 12, 1, "", "getpgrp"], [293, 12, 1, "", "getpid"], [293, 12, 1, "", "getppid"], [293, 12, 1, "", "getpriority"], [293, 12, 1, "", "getrandom"], [293, 12, 1, "", "getresgid"], [293, 12, 1, "", "getresuid"], [293, 12, 1, "", "getsid"], [293, 12, 1, "", "getuid"], [293, 12, 1, "", "getxattr"], [293, 12, 1, "", "initgroups"], [293, 12, 1, "", "isatty"], [293, 12, 1, "", "kill"], [293, 12, 1, "", "killpg"], [293, 12, 1, "", "lchflags"], [293, 12, 1, "", "lchmod"], [293, 12, 1, "", "lchown"], [293, 9, 1, "", "linesep"], [293, 12, 1, "", "link"], [293, 12, 1, "", "listdir"], [293, 12, 1, "", "listdrives"], [293, 12, 1, "", "listmounts"], [293, 12, 1, "", "listvolumes"], [293, 12, 1, "", "listxattr"], [293, 12, 1, "", "lockf"], [293, 12, 1, "", "login_tty"], [293, 12, 1, "", "lseek"], [293, 12, 1, "", "lstat"], [293, 12, 1, "", "major"], [293, 12, 1, "", "makedev"], [293, 12, 1, "", "makedirs"], [293, 12, 1, "", "memfd_create"], [293, 12, 1, "", "minor"], [293, 12, 1, "", "mkdir"], [293, 12, 1, "", "mkfifo"], [293, 12, 1, "", "mknod"], [293, 9, 1, "", "name"], [293, 12, 1, "", "nice"], [293, 12, 1, "", "open"], [293, 12, 1, "", "openpty"], [293, 9, 1, "", "pardir"], [294, 10, 0, "-", "path"], [293, 12, 1, "", "pathconf"], [293, 9, 1, "", "pathconf_names"], [293, 9, 1, "", "pathsep"], [293, 12, 1, "", "pidfd_open"], [293, 12, 1, "", "pipe"], [293, 12, 1, "", "pipe2"], [293, 12, 1, "", "plock"], [293, 12, 1, "", "popen"], [293, 12, 1, "", "posix_fadvise"], [293, 12, 1, "", "posix_fallocate"], [293, 12, 1, "", "posix_spawn"], [293, 12, 1, "", "posix_spawnp"], [293, 12, 1, "", "pread"], [293, 12, 1, "", "preadv"], [293, 12, 1, "", "putenv"], [293, 12, 1, "", "pwrite"], [293, 12, 1, "", "pwritev"], [293, 12, 1, "", "read"], [293, 12, 1, "", "readlink"], [293, 12, 1, "", "readv"], [293, 12, 1, "", "register_at_fork"], [293, 12, 1, "", "remove"], [293, 12, 1, "", "removedirs"], [293, 12, 1, "", "removexattr"], [293, 12, 1, "", "rename"], [293, 12, 1, "", "renames"], [293, 12, 1, "", "replace"], [293, 12, 1, "", "rmdir"], [293, 12, 1, "", "scandir"], [293, 12, 1, "", "sched_get_priority_max"], [293, 12, 1, "", "sched_get_priority_min"], [293, 12, 1, "", "sched_getaffinity"], [293, 12, 1, "", "sched_getparam"], [293, 12, 1, "", "sched_getscheduler"], [293, 11, 1, "", "sched_param"], [293, 12, 1, "", "sched_rr_get_interval"], [293, 12, 1, "", "sched_setaffinity"], [293, 12, 1, "", "sched_setparam"], [293, 12, 1, "", "sched_setscheduler"], [293, 12, 1, "", "sched_yield"], [293, 12, 1, "", "sendfile"], [293, 9, 1, "", "sep"], [293, 12, 1, "", "set_blocking"], [293, 12, 1, "", "set_handle_inheritable"], [293, 12, 1, "", "set_inheritable"], [293, 12, 1, "", "setegid"], [293, 12, 1, "", "seteuid"], [293, 12, 1, "", "setgid"], [293, 12, 1, "", "setgroups"], [293, 12, 1, "", "setns"], [293, 12, 1, "", "setpgid"], [293, 12, 1, "", "setpgrp"], [293, 12, 1, "", "setpriority"], [293, 12, 1, "", "setregid"], [293, 12, 1, "", "setresgid"], [293, 12, 1, "", "setresuid"], [293, 12, 1, "", "setreuid"], [293, 12, 1, "", "setsid"], [293, 12, 1, "", "setuid"], [293, 12, 1, "", "setxattr"], [293, 12, 1, "", "spawnl"], [293, 12, 1, "", "spawnle"], [293, 12, 1, "", "spawnlp"], [293, 12, 1, "", "spawnlpe"], [293, 12, 1, "", "spawnv"], [293, 12, 1, "", "spawnve"], [293, 12, 1, "", "spawnvp"], [293, 12, 1, "", "spawnvpe"], [293, 12, 1, "", "splice"], [293, 12, 1, "", "startfile"], [293, 12, 1, "", "stat"], [293, 11, 1, "", "stat_result"], [293, 12, 1, "", "statvfs"], [293, 12, 1, "", "strerror"], [293, 9, 1, "", "supports_bytes_environ"], [293, 9, 1, "", "supports_dir_fd"], [293, 9, 1, "", "supports_effective_ids"], [293, 9, 1, "", "supports_fd"], [293, 9, 1, "", "supports_follow_symlinks"], [293, 12, 1, "", "symlink"], [293, 12, 1, "", "sync"], [293, 12, 1, "", "sysconf"], [293, 9, 1, "", "sysconf_names"], [293, 12, 1, "", "system"], [293, 12, 1, "", "tcgetpgrp"], [293, 12, 1, "", "tcsetpgrp"], [293, 11, 1, "", "terminal_size"], [293, 12, 1, "", "times"], [293, 12, 1, "", "truncate"], [293, 12, 1, "", "ttyname"], [293, 12, 1, "", "umask"], [293, 12, 1, "", "uname"], [293, 12, 1, "", "unlink"], [293, 12, 1, "", "unsetenv"], [293, 12, 1, "", "unshare"], [293, 12, 1, "", "urandom"], [293, 12, 1, "", "utime"], [293, 12, 1, "", "wait"], [293, 12, 1, "", "wait3"], [293, 12, 1, "", "wait4"], [293, 12, 1, "", "waitid"], [293, 12, 1, "", "waitpid"], [293, 12, 1, "", "waitstatus_to_exitcode"], [293, 12, 1, "", "walk"], [293, 12, 1, "", "write"], [293, 12, 1, "", "writev"]], "os.DirEntry": [[293, 8, 1, "", "inode"], [293, 8, 1, "", "is_dir"], [293, 8, 1, "", "is_file"], [293, 8, 1, "", "is_junction"], [293, 8, 1, "", "is_symlink"], [293, 7, 1, "", "name"], [293, 7, 1, "", "path"], [293, 8, 1, "", "stat"]], "os.PathLike": [[293, 8, 1, "", "__fspath__"]], "os.path": [[294, 12, 1, "", "abspath"], [294, 12, 1, "", "basename"], [294, 12, 1, "", "commonpath"], [294, 12, 1, "", "commonprefix"], [294, 12, 1, "", "dirname"], [294, 12, 1, "", "exists"], [294, 12, 1, "", "expanduser"], [294, 12, 1, "", "expandvars"], [294, 12, 1, "", "getatime"], [294, 12, 1, "", "getctime"], [294, 12, 1, "", "getmtime"], [294, 12, 1, "", "getsize"], [294, 12, 1, "", "isabs"], [294, 12, 1, "", "isdevdrive"], [294, 12, 1, "", "isdir"], [294, 12, 1, "", "isfile"], [294, 12, 1, "", "isjunction"], [294, 12, 1, "", "islink"], [294, 12, 1, "", "ismount"], [294, 12, 1, "", "join"], [294, 12, 1, "", "lexists"], [294, 12, 1, "", "normcase"], [294, 12, 1, "", "normpath"], [294, 12, 1, "", "realpath"], [294, 12, 1, "", "relpath"], [294, 12, 1, "", "samefile"], [294, 12, 1, "", "sameopenfile"], [294, 12, 1, "", "samestat"], [294, 12, 1, "", "split"], [294, 12, 1, "", "splitdrive"], [294, 12, 1, "", "splitext"], [294, 12, 1, "", "splitroot"], [294, 9, 1, "", "supports_unicode_filenames"]], "os.scandir": [[293, 8, 1, "", "close"]], "os.sched_param": [[293, 7, 1, "", "sched_priority"]], "os.stat_result": [[293, 7, 1, "", "st_atime"], [293, 7, 1, "", "st_atime_ns"], [293, 7, 1, "", "st_birthtime"], [293, 7, 1, "", "st_birthtime_ns"], [293, 7, 1, "", "st_blksize"], [293, 7, 1, "", "st_blocks"], [293, 7, 1, "", "st_creator"], [293, 7, 1, "", "st_ctime"], [293, 7, 1, "", "st_ctime_ns"], [293, 7, 1, "", "st_dev"], [293, 7, 1, "", "st_file_attributes"], [293, 7, 1, "", "st_flags"], [293, 7, 1, "", "st_fstype"], [293, 7, 1, "", "st_gen"], [293, 7, 1, "", "st_gid"], [293, 7, 1, "", "st_ino"], [293, 7, 1, "", "st_mode"], [293, 7, 1, "", "st_mtime"], [293, 7, 1, "", "st_mtime_ns"], [293, 7, 1, "", "st_nlink"], [293, 7, 1, "", "st_rdev"], [293, 7, 1, "", "st_reparse_tag"], [293, 7, 1, "", "st_rsize"], [293, 7, 1, "", "st_size"], [293, 7, 1, "", "st_type"], [293, 7, 1, "", "st_uid"]], "os.terminal_size": [[293, 7, 1, "", "columns"], [293, 7, 1, "", "lines"]], "ossaudiodev": [[295, 6, 1, "", "OSSAudioError"], [295, 12, 1, "", "open"], [295, 12, 1, "", "openmixer"]], "ossaudiodev.oss_audio_device": [[295, 8, 1, "", "bufsize"], [295, 8, 1, "", "channels"], [295, 8, 1, "", "close"], [295, 7, 1, "", "closed"], [295, 8, 1, "", "fileno"], [295, 8, 1, "", "getfmts"], [295, 7, 1, "", "mode"], [295, 7, 1, "", "name"], [295, 8, 1, "", "nonblock"], [295, 8, 1, "", "obufcount"], [295, 8, 1, "", "obuffree"], [295, 8, 1, "", "post"], [295, 8, 1, "", "read"], [295, 8, 1, "", "reset"], [295, 8, 1, "", "setfmt"], [295, 8, 1, "", "setparameters"], [295, 8, 1, "", "speed"], [295, 8, 1, "", "sync"], [295, 8, 1, "", "write"], [295, 8, 1, "", "writeall"]], "ossaudiodev.oss_mixer_device": [[295, 8, 1, "", "close"], [295, 8, 1, "", "controls"], [295, 8, 1, "", "fileno"], [295, 8, 1, "", "get"], [295, 8, 1, "", "get_recsrc"], [295, 8, 1, "", "reccontrols"], [295, 8, 1, "", "set"], [295, 8, 1, "", "set_recsrc"], [295, 8, 1, "", "stereocontrols"]], "pathlib": [[296, 11, 1, "", "Path"], [296, 11, 1, "", "PosixPath"], [296, 11, 1, "", "PurePath"], [296, 11, 1, "", "PurePosixPath"], [296, 11, 1, "", "PureWindowsPath"], [296, 11, 1, "", "WindowsPath"]], "pathlib.Path": [[296, 8, 1, "", "absolute"], [296, 8, 1, "", "chmod"], [296, 8, 1, "", "cwd"], [296, 8, 1, "", "exists"], [296, 8, 1, "", "expanduser"], [296, 8, 1, "", "glob"], [296, 8, 1, "", "group"], [296, 8, 1, "", "hardlink_to"], [296, 8, 1, "", "home"], [296, 8, 1, "", "is_block_device"], [296, 8, 1, "", "is_char_device"], [296, 8, 1, "", "is_dir"], [296, 8, 1, "", "is_fifo"], [296, 8, 1, "", "is_file"], [296, 8, 1, "", "is_junction"], [296, 8, 1, "", "is_mount"], [296, 8, 1, "", "is_socket"], [296, 8, 1, "", "is_symlink"], [296, 8, 1, "", "iterdir"], [296, 8, 1, "", "lchmod"], [296, 8, 1, "", "lstat"], [296, 8, 1, "", "mkdir"], [296, 8, 1, "", "open"], [296, 8, 1, "", "owner"], [296, 8, 1, "", "read_bytes"], [296, 8, 1, "", "read_text"], [296, 8, 1, "", "readlink"], [296, 8, 1, "", "rename"], [296, 8, 1, "", "replace"], [296, 8, 1, "", "resolve"], [296, 8, 1, "", "rglob"], [296, 8, 1, "", "rmdir"], [296, 8, 1, "", "samefile"], [296, 8, 1, "", "stat"], [296, 8, 1, "", "symlink_to"], [296, 8, 1, "", "touch"], [296, 8, 1, "", "unlink"], [296, 8, 1, "", "walk"], [296, 8, 1, "", "write_bytes"], [296, 8, 1, "", "write_text"]], "pathlib.PurePath": [[296, 7, 1, "", "anchor"], [296, 8, 1, "", "as_posix"], [296, 8, 1, "", "as_uri"], [296, 7, 1, "", "drive"], [296, 8, 1, "", "is_absolute"], [296, 8, 1, "", "is_relative_to"], [296, 8, 1, "", "is_reserved"], [296, 8, 1, "", "joinpath"], [296, 8, 1, "", "match"], [296, 7, 1, "", "name"], [296, 7, 1, "", "parent"], [296, 7, 1, "", "parents"], [296, 7, 1, "", "parts"], [296, 8, 1, "", "relative_to"], [296, 7, 1, "", "root"], [296, 7, 1, "", "stem"], [296, 7, 1, "", "suffix"], [296, 7, 1, "", "suffixes"], [296, 8, 1, "", "with_name"], [296, 8, 1, "", "with_segments"], [296, 8, 1, "", "with_stem"], [296, 8, 1, "", "with_suffix"]], "pdb": [[297, 11, 1, "", "Pdb"], [297, 12, 1, "", "pm"], [297, 12, 1, "", "post_mortem"], [297, 12, 1, "", "run"], [297, 12, 1, "", "runcall"], [297, 12, 1, "", "runeval"], [297, 12, 1, "", "set_trace"]], "pdb.Pdb": [[297, 8, 1, "", "run"], [297, 8, 1, "", "runcall"], [297, 8, 1, "", "runeval"], [297, 8, 1, "", "set_trace"]], "pickle": [[299, 9, 1, "", "DEFAULT_PROTOCOL"], [299, 9, 1, "", "HIGHEST_PROTOCOL"], [299, 11, 1, "", "PickleBuffer"], [299, 6, 1, "", "PickleError"], [299, 11, 1, "", "Pickler"], [299, 6, 1, "", "PicklingError"], [299, 11, 1, "", "Unpickler"], [299, 6, 1, "", "UnpicklingError"], [299, 12, 1, "", "dump"], [299, 12, 1, "", "dumps"], [299, 12, 1, "", "load"], [299, 12, 1, "", "loads"]], "pickle.PickleBuffer": [[299, 8, 1, "", "raw"], [299, 8, 1, "", "release"]], "pickle.Pickler": [[299, 7, 1, "", "dispatch_table"], [299, 8, 1, "", "dump"], [299, 7, 1, "", "fast"], [299, 8, 1, "", "persistent_id"], [299, 8, 1, "", "reducer_override"]], "pickle.Unpickler": [[299, 8, 1, "", "find_class"], [299, 8, 1, "", "load"], [299, 8, 1, "", "persistent_load"]], "pickletools": [[300, 12, 1, "", "dis"], [300, 12, 1, "", "genops"], [300, 12, 1, "", "optimize"], [300, 14, 1, "cmdoption-pickletools-a", "--annotate"], [300, 14, 1, "cmdoption-pickletools-l", "--indentlevel"], [300, 14, 1, "cmdoption-pickletools-m", "--memo"], [300, 14, 1, "cmdoption-pickletools-o", "--output"], [300, 14, 1, "cmdoption-pickletools-p", "--preamble"], [300, 14, 1, "cmdoption-pickletools-a", "-a"], [300, 14, 1, "cmdoption-pickletools-l", "-l"], [300, 14, 1, "cmdoption-pickletools-m", "-m"], [300, 14, 1, "cmdoption-pickletools-o", "-o"], [300, 14, 1, "cmdoption-pickletools-p", "-p"]], "pipes": [[301, 11, 1, "", "Template"]], "pipes.Template": [[301, 8, 1, "", "append"], [301, 8, 1, "", "clone"], [301, 8, 1, "", "copy"], [301, 8, 1, "", "debug"], [301, 8, 1, "", "open"], [301, 8, 1, "", "prepend"], [301, 8, 1, "", "reset"]], "pkgutil": [[302, 11, 1, "", "ModuleInfo"], [302, 12, 1, "", "extend_path"], [302, 12, 1, "", "find_loader"], [302, 12, 1, "", "get_data"], [302, 12, 1, "", "get_importer"], [302, 12, 1, "", "get_loader"], [302, 12, 1, "", "iter_importers"], [302, 12, 1, "", "iter_modules"], [302, 12, 1, "", "resolve_name"], [302, 12, 1, "", "walk_packages"]], "platform": [[303, 12, 1, "", "architecture"], [303, 12, 1, "", "freedesktop_os_release"], [303, 12, 1, "", "java_ver"], [303, 12, 1, "", "libc_ver"], [303, 12, 1, "", "mac_ver"], [303, 12, 1, "", "machine"], [303, 12, 1, "", "node"], [303, 12, 1, "", "platform"], [303, 12, 1, "", "processor"], [303, 12, 1, "", "python_branch"], [303, 12, 1, "", "python_build"], [303, 12, 1, "", "python_compiler"], [303, 12, 1, "", "python_implementation"], [303, 12, 1, "", "python_revision"], [303, 12, 1, "", "python_version"], [303, 12, 1, "", "python_version_tuple"], [303, 12, 1, "", "release"], [303, 12, 1, "", "system"], [303, 12, 1, "", "system_alias"], [303, 12, 1, "", "uname"], [303, 12, 1, "", "version"], [303, 12, 1, "", "win32_edition"], [303, 12, 1, "", "win32_is_iot"], [303, 12, 1, "", "win32_ver"]], "plistlib": [[304, 9, 1, "", "FMT_BINARY"], [304, 9, 1, "", "FMT_XML"], [304, 11, 1, "", "UID"], [304, 12, 1, "", "dump"], [304, 12, 1, "", "dumps"], [304, 12, 1, "", "load"], [304, 12, 1, "", "loads"]], "poplib": [[305, 11, 1, "", "POP3"], [305, 11, 1, "", "POP3_SSL"], [305, 6, 1, "", "error_proto"]], "poplib.POP3": [[305, 8, 1, "", "apop"], [305, 8, 1, "", "capa"], [305, 8, 1, "", "dele"], [305, 8, 1, "", "getwelcome"], [305, 8, 1, "", "list"], [305, 8, 1, "", "noop"], [305, 8, 1, "", "pass_"], [305, 8, 1, "", "quit"], [305, 8, 1, "", "retr"], [305, 8, 1, "", "rpop"], [305, 8, 1, "", "rset"], [305, 8, 1, "", "set_debuglevel"], [305, 8, 1, "", "stat"], [305, 8, 1, "", "stls"], [305, 8, 1, "", "top"], [305, 8, 1, "", "uidl"], [305, 8, 1, "", "user"], [305, 8, 1, "", "utf8"]], "posix": [[306, 9, 1, "", "environ"]], "pprint": [[307, 11, 1, "", "PrettyPrinter"], [307, 12, 1, "", "isreadable"], [307, 12, 1, "", "isrecursive"], [307, 12, 1, "", "pformat"], [307, 12, 1, "", "pp"], [307, 12, 1, "", "pprint"], [307, 12, 1, "", "saferepr"]], "pprint.PrettyPrinter": [[307, 8, 1, "", "format"], [307, 8, 1, "", "isreadable"], [307, 8, 1, "", "isrecursive"], [307, 8, 1, "", "pformat"], [307, 8, 1, "", "pprint"]], "profile": [[308, 11, 1, "", "Profile"], [308, 12, 1, "", "run"], [308, 12, 1, "", "runctx"]], "profile.Profile": [[308, 8, 1, "", "create_stats"], [308, 8, 1, "", "disable"], [308, 8, 1, "", "dump_stats"], [308, 8, 1, "", "enable"], [308, 8, 1, "", "print_stats"], [308, 8, 1, "", "run"], [308, 8, 1, "", "runcall"], [308, 8, 1, "", "runctx"]], "property": [[225, 12, 1, "", "deleter"], [225, 12, 1, "", "getter"], [225, 12, 1, "", "setter"]], "pstats": [[308, 11, 1, "", "Stats"]], "pstats.Stats": [[308, 8, 1, "", "add"], [308, 8, 1, "", "dump_stats"], [308, 8, 1, "", "get_stats_profile"], [308, 8, 1, "", "print_callees"], [308, 8, 1, "", "print_callers"], [308, 8, 1, "", "print_stats"], [308, 8, 1, "", "reverse_order"], [308, 8, 1, "", "sort_stats"], [308, 8, 1, "", "strip_dirs"]], "pty": [[309, 12, 1, "", "fork"], [309, 12, 1, "", "openpty"], [309, 12, 1, "", "spawn"]], "pwd": [[310, 12, 1, "", "getpwall"], [310, 12, 1, "", "getpwnam"], [310, 12, 1, "", "getpwuid"]], "py_compile": [[311, 6, 1, "", "PyCompileError"], [311, 11, 1, "", "PycInvalidationMode"], [311, 12, 1, "", "compile"]], "py_compile.PycInvalidationMode": [[311, 7, 1, "", "CHECKED_HASH"], [311, 7, 1, "", "TIMESTAMP"], [311, 7, 1, "", "UNCHECKED_HASH"]], "pyclbr": [[312, 11, 1, "", "Class"], [312, 11, 1, "", "Function"], [312, 12, 1, "", "readmodule"], [312, 12, 1, "", "readmodule_ex"]], "pyclbr.Class": [[312, 7, 1, "", "children"], [312, 7, 1, "", "file"], [312, 7, 1, "", "lineno"], [312, 7, 1, "", "methods"], [312, 7, 1, "", "module"], [312, 7, 1, "", "name"], [312, 7, 1, "", "parent"], [312, 7, 1, "", "super"]], "pyclbr.Function": [[312, 7, 1, "", "children"], [312, 7, 1, "", "file"], [312, 7, 1, "", "is_async"], [312, 7, 1, "", "lineno"], [312, 7, 1, "", "module"], [312, 7, 1, "", "name"], [312, 7, 1, "", "parent"]], "python--m-py_compile": [[311, 14, 1, "cmdoption-python-m-py_compile", "-"], [311, 14, 1, "cmdoption-python-m-py_compile-q", "--quiet"], [311, 14, 1, "cmdoption-python-m-py_compile-q", "-q"], [311, 14, 1, "cmdoption-python-m-py_compile-arg-file", "<file>"]], "python--m-sqlite3-[-h]-[-v]-[filename]-[sql]": [[340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", "--help"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", "--version"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", "-h"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", "-v"]], "queue": [[316, 6, 1, "", "Empty"], [316, 6, 1, "", "Full"], [316, 11, 1, "", "LifoQueue"], [316, 11, 1, "", "PriorityQueue"], [316, 11, 1, "", "Queue"], [316, 11, 1, "", "SimpleQueue"]], "queue.Queue": [[316, 8, 1, "", "empty"], [316, 8, 1, "", "full"], [316, 8, 1, "", "get"], [316, 8, 1, "", "get_nowait"], [316, 8, 1, "", "join"], [316, 8, 1, "", "put"], [316, 8, 1, "", "put_nowait"], [316, 8, 1, "", "qsize"], [316, 8, 1, "", "task_done"]], "queue.SimpleQueue": [[316, 8, 1, "", "empty"], [316, 8, 1, "", "get"], [316, 8, 1, "", "get_nowait"], [316, 8, 1, "", "put"], [316, 8, 1, "", "put_nowait"], [316, 8, 1, "", "qsize"]], "quopri": [[317, 12, 1, "", "decode"], [317, 12, 1, "", "decodestring"], [317, 12, 1, "", "encode"], [317, 12, 1, "", "encodestring"]], "random": [[318, 11, 1, "", "Random"], [318, 11, 1, "", "SystemRandom"], [318, 12, 1, "", "betavariate"], [318, 12, 1, "", "binomialvariate"], [318, 12, 1, "", "choice"], [318, 12, 1, "", "choices"], [318, 12, 1, "", "expovariate"], [318, 12, 1, "", "gammavariate"], [318, 12, 1, "", "gauss"], [318, 12, 1, "", "getrandbits"], [318, 12, 1, "", "getstate"], [318, 12, 1, "", "lognormvariate"], [318, 12, 1, "", "normalvariate"], [318, 12, 1, "", "paretovariate"], [318, 12, 1, "", "randbytes"], [318, 12, 1, "", "randint"], [318, 12, 1, "", "random"], [318, 12, 1, "", "randrange"], [318, 12, 1, "", "sample"], [318, 12, 1, "", "seed"], [318, 12, 1, "", "setstate"], [318, 12, 1, "", "shuffle"], [318, 12, 1, "", "triangular"], [318, 12, 1, "", "uniform"], [318, 12, 1, "", "vonmisesvariate"], [318, 12, 1, "", "weibullvariate"]], "random.Random": [[318, 8, 1, "", "getrandbits"], [318, 8, 1, "", "getstate"], [318, 8, 1, "", "random"], [318, 8, 1, "", "seed"], [318, 8, 1, "", "setstate"]], "range": [[344, 7, 1, "", "start"], [344, 7, 1, "", "step"], [344, 7, 1, "", "stop"]], "re": [[319, 9, 1, "", "A"], [319, 9, 1, "", "ASCII"], [319, 9, 1, "", "DEBUG"], [319, 9, 1, "", "DOTALL"], [319, 9, 1, "", "I"], [319, 9, 1, "", "IGNORECASE"], [319, 9, 1, "", "L"], [319, 9, 1, "", "LOCALE"], [319, 9, 1, "", "M"], [319, 9, 1, "", "MULTILINE"], [319, 11, 1, "", "Match"], [319, 9, 1, "", "NOFLAG"], [319, 11, 1, "", "Pattern"], [319, 11, 1, "", "RegexFlag"], [319, 9, 1, "", "S"], [319, 9, 1, "", "U"], [319, 9, 1, "", "UNICODE"], [319, 9, 1, "", "VERBOSE"], [319, 9, 1, "", "X"], [319, 12, 1, "", "compile"], [319, 6, 1, "", "error"], [319, 12, 1, "", "escape"], [319, 12, 1, "", "findall"], [319, 12, 1, "", "finditer"], [319, 12, 1, "", "fullmatch"], [319, 12, 1, "", "match"], [319, 12, 1, "", "purge"], [319, 12, 1, "", "search"], [319, 12, 1, "", "split"], [319, 12, 1, "", "sub"], [319, 12, 1, "", "subn"]], "re.Match": [[319, 8, 1, "", "__getitem__"], [319, 8, 1, "", "end"], [319, 7, 1, "", "endpos"], [319, 8, 1, "", "expand"], [319, 8, 1, "", "group"], [319, 8, 1, "", "groupdict"], [319, 8, 1, "", "groups"], [319, 7, 1, "", "lastgroup"], [319, 7, 1, "", "lastindex"], [319, 7, 1, "", "pos"], [319, 7, 1, "", "re"], [319, 8, 1, "", "span"], [319, 8, 1, "", "start"], [319, 7, 1, "", "string"]], "re.Pattern": [[319, 8, 1, "", "findall"], [319, 8, 1, "", "finditer"], [319, 7, 1, "", "flags"], [319, 8, 1, "", "fullmatch"], [319, 7, 1, "", "groupindex"], [319, 7, 1, "", "groups"], [319, 8, 1, "", "match"], [319, 7, 1, "", "pattern"], [319, 8, 1, "", "search"], [319, 8, 1, "", "split"], [319, 8, 1, "", "sub"], [319, 8, 1, "", "subn"]], "re.error": [[319, 7, 1, "", "colno"], [319, 7, 1, "", "lineno"], [319, 7, 1, "", "msg"], [319, 7, 1, "", "pattern"], [319, 7, 1, "", "pos"]], "readline": [[320, 12, 1, "", "add_history"], [320, 12, 1, "", "append_history_file"], [320, 12, 1, "", "clear_history"], [320, 12, 1, "", "get_begidx"], [320, 12, 1, "", "get_completer"], [320, 12, 1, "", "get_completer_delims"], [320, 12, 1, "", "get_completion_type"], [320, 12, 1, "", "get_current_history_length"], [320, 12, 1, "", "get_endidx"], [320, 12, 1, "", "get_history_item"], [320, 12, 1, "", "get_history_length"], [320, 12, 1, "", "get_line_buffer"], [320, 12, 1, "", "insert_text"], [320, 12, 1, "", "parse_and_bind"], [320, 12, 1, "", "read_history_file"], [320, 12, 1, "", "read_init_file"], [320, 12, 1, "", "redisplay"], [320, 12, 1, "", "remove_history_item"], [320, 12, 1, "", "replace_history_item"], [320, 12, 1, "", "set_auto_history"], [320, 12, 1, "", "set_completer"], [320, 12, 1, "", "set_completer_delims"], [320, 12, 1, "", "set_completion_display_matches_hook"], [320, 12, 1, "", "set_history_length"], [320, 12, 1, "", "set_pre_input_hook"], [320, 12, 1, "", "set_startup_hook"], [320, 12, 1, "", "write_history_file"]], "reprlib": [[321, 11, 1, "", "Repr"], [321, 9, 1, "", "aRepr"], [321, 12, 1, "", "recursive_repr"], [321, 12, 1, "", "repr"]], "reprlib.Repr": [[321, 7, 1, "", "fillvalue"], [321, 7, 1, "", "indent"], [321, 7, 1, "", "maxarray"], [321, 7, 1, "", "maxdeque"], [321, 7, 1, "", "maxdict"], [321, 7, 1, "", "maxfrozenset"], [321, 7, 1, "", "maxlevel"], [321, 7, 1, "", "maxlist"], [321, 7, 1, "", "maxlong"], [321, 7, 1, "", "maxother"], [321, 7, 1, "", "maxset"], [321, 7, 1, "", "maxstring"], [321, 7, 1, "", "maxtuple"], [321, 8, 1, "", "repr"], [321, 8, 1, "", "repr1"]], "resource": [[322, 9, 1, "", "RLIMIT_AS"], [322, 9, 1, "", "RLIMIT_CORE"], [322, 9, 1, "", "RLIMIT_CPU"], [322, 9, 1, "", "RLIMIT_DATA"], [322, 9, 1, "", "RLIMIT_FSIZE"], [322, 9, 1, "", "RLIMIT_KQUEUES"], [322, 9, 1, "", "RLIMIT_MEMLOCK"], [322, 9, 1, "", "RLIMIT_MSGQUEUE"], [322, 9, 1, "", "RLIMIT_NICE"], [322, 9, 1, "", "RLIMIT_NOFILE"], [322, 9, 1, "", "RLIMIT_NPROC"], [322, 9, 1, "", "RLIMIT_NPTS"], [322, 9, 1, "", "RLIMIT_OFILE"], [322, 9, 1, "", "RLIMIT_RSS"], [322, 9, 1, "", "RLIMIT_RTPRIO"], [322, 9, 1, "", "RLIMIT_RTTIME"], [322, 9, 1, "", "RLIMIT_SBSIZE"], [322, 9, 1, "", "RLIMIT_SIGPENDING"], [322, 9, 1, "", "RLIMIT_STACK"], [322, 9, 1, "", "RLIMIT_SWAP"], [322, 9, 1, "", "RLIMIT_VMEM"], [322, 9, 1, "", "RLIM_INFINITY"], [322, 9, 1, "", "RUSAGE_BOTH"], [322, 9, 1, "", "RUSAGE_CHILDREN"], [322, 9, 1, "", "RUSAGE_SELF"], [322, 9, 1, "", "RUSAGE_THREAD"], [322, 6, 1, "", "error"], [322, 12, 1, "", "getpagesize"], [322, 12, 1, "", "getrlimit"], [322, 12, 1, "", "getrusage"], [322, 12, 1, "", "prlimit"], [322, 12, 1, "", "setrlimit"]], "rlcompleter": [[323, 11, 1, "", "Completer"]], "rlcompleter.Completer": [[323, 8, 1, "", "complete"]], "runpy": [[324, 12, 1, "", "run_module"], [324, 12, 1, "", "run_path"]], "sched": [[325, 11, 1, "", "scheduler"]], "sched.scheduler": [[325, 8, 1, "", "cancel"], [325, 8, 1, "", "empty"], [325, 8, 1, "", "enter"], [325, 8, 1, "", "enterabs"], [325, 7, 1, "", "queue"], [325, 8, 1, "", "run"]], "secrets": [[326, 11, 1, "", "SystemRandom"], [326, 12, 1, "", "choice"], [326, 12, 1, "", "compare_digest"], [326, 12, 1, "", "randbelow"], [326, 12, 1, "", "randbits"], [326, 12, 1, "", "token_bytes"], [326, 12, 1, "", "token_hex"], [326, 12, 1, "", "token_urlsafe"]], "select": [[328, 7, 1, "", "PIPE_BUF"], [328, 12, 1, "", "devpoll"], [328, 12, 1, "", "epoll"], [328, 6, 1, "", "error"], [328, 12, 1, "", "kevent"], [328, 12, 1, "", "kqueue"], [328, 12, 1, "", "poll"], [328, 12, 1, "", "select"]], "select.devpoll": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "select.epoll": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "fromfd"], [328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "select.kevent": [[328, 7, 1, "", "data"], [328, 7, 1, "", "fflags"], [328, 7, 1, "", "filter"], [328, 7, 1, "", "flags"], [328, 7, 1, "", "ident"], [328, 7, 1, "", "udata"]], "select.kqueue": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "control"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "fromfd"]], "select.poll": [[328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "selectors": [[329, 11, 1, "", "BaseSelector"], [329, 11, 1, "", "DefaultSelector"], [329, 11, 1, "", "DevpollSelector"], [329, 9, 1, "", "EVENT_READ"], [329, 9, 1, "", "EVENT_WRITE"], [329, 11, 1, "", "EpollSelector"], [329, 11, 1, "", "KqueueSelector"], [329, 11, 1, "", "PollSelector"], [329, 11, 1, "", "SelectSelector"], [329, 11, 1, "", "SelectorKey"]], "selectors.BaseSelector": [[329, 8, 1, "", "close"], [329, 8, 1, "", "get_key"], [329, 8, 1, "", "get_map"], [329, 8, 1, "", "modify"], [329, 8, 1, "", "register"], [329, 8, 1, "", "select"], [329, 8, 1, "", "unregister"]], "selectors.DevpollSelector": [[329, 8, 1, "", "fileno"]], "selectors.EpollSelector": [[329, 8, 1, "", "fileno"]], "selectors.KqueueSelector": [[329, 8, 1, "", "fileno"]], "selectors.SelectorKey": [[329, 7, 1, "", "data"], [329, 7, 1, "", "events"], [329, 7, 1, "", "fd"], [329, 7, 1, "", "fileobj"]], "shelve": [[330, 11, 1, "", "BsdDbShelf"], [330, 11, 1, "", "DbfilenameShelf"], [330, 11, 1, "", "Shelf"], [330, 12, 1, "", "open"]], "shelve.Shelf": [[330, 8, 1, "", "close"], [330, 8, 1, "", "sync"]], "shlex": [[331, 12, 1, "", "join"], [331, 12, 1, "", "quote"], [331, 11, 1, "", "shlex"], [331, 12, 1, "", "split"]], "shlex.shlex": [[331, 7, 1, "", "commenters"], [331, 7, 1, "", "debug"], [331, 7, 1, "", "eof"], [331, 8, 1, "", "error_leader"], [331, 7, 1, "", "escape"], [331, 7, 1, "", "escapedquotes"], [331, 8, 1, "", "get_token"], [331, 7, 1, "", "infile"], [331, 7, 1, "", "instream"], [331, 7, 1, "", "lineno"], [331, 8, 1, "", "pop_source"], [331, 7, 1, "", "punctuation_chars"], [331, 8, 1, "", "push_source"], [331, 8, 1, "", "push_token"], [331, 7, 1, "", "quotes"], [331, 8, 1, "", "read_token"], [331, 7, 1, "", "source"], [331, 8, 1, "", "sourcehook"], [331, 7, 1, "", "token"], [331, 7, 1, "", "whitespace"], [331, 7, 1, "", "whitespace_split"], [331, 7, 1, "", "wordchars"]], "shutil": [[332, 6, 1, "", "Error"], [332, 6, 1, "", "SameFileError"], [332, 12, 1, "", "chown"], [332, 12, 1, "", "copy"], [332, 12, 1, "", "copy2"], [332, 12, 1, "", "copyfile"], [332, 12, 1, "", "copyfileobj"], [332, 12, 1, "", "copymode"], [332, 12, 1, "", "copystat"], [332, 12, 1, "", "copytree"], [332, 12, 1, "", "disk_usage"], [332, 12, 1, "", "get_archive_formats"], [332, 12, 1, "", "get_terminal_size"], [332, 12, 1, "", "get_unpack_formats"], [332, 12, 1, "", "ignore_patterns"], [332, 12, 1, "", "make_archive"], [332, 12, 1, "", "move"], [332, 12, 1, "", "register_archive_format"], [332, 12, 1, "", "register_unpack_format"], [332, 12, 1, "", "rmtree"], [332, 12, 1, "", "unpack_archive"], [332, 12, 1, "", "unregister_archive_format"], [332, 12, 1, "", "unregister_unpack_format"], [332, 12, 1, "", "which"]], "shutil.rmtree": [[332, 7, 1, "", "avoids_symlink_attacks"]], "signal": [[333, 9, 1, "", "CTRL_BREAK_EVENT"], [333, 9, 1, "", "CTRL_C_EVENT"], [333, 11, 1, "", "Handlers"], [333, 9, 1, "", "ITIMER_PROF"], [333, 9, 1, "", "ITIMER_REAL"], [333, 9, 1, "", "ITIMER_VIRTUAL"], [333, 6, 1, "", "ItimerError"], [333, 9, 1, "", "NSIG"], [333, 9, 1, "", "SIGABRT"], [333, 9, 1, "", "SIGALRM"], [333, 9, 1, "", "SIGBREAK"], [333, 9, 1, "", "SIGBUS"], [333, 9, 1, "", "SIGCHLD"], [333, 9, 1, "", "SIGCLD"], [333, 9, 1, "", "SIGCONT"], [333, 9, 1, "", "SIGFPE"], [333, 9, 1, "", "SIGHUP"], [333, 9, 1, "", "SIGILL"], [333, 9, 1, "", "SIGINT"], [333, 9, 1, "", "SIGKILL"], [333, 9, 1, "", "SIGPIPE"], [333, 9, 1, "", "SIGSEGV"], [333, 9, 1, "", "SIGSTKFLT"], [333, 9, 1, "", "SIGTERM"], [333, 9, 1, "", "SIGUSR1"], [333, 9, 1, "", "SIGUSR2"], [333, 9, 1, "", "SIGWINCH"], [333, 9, 1, "", "SIG_BLOCK"], [333, 9, 1, "", "SIG_DFL"], [333, 9, 1, "", "SIG_IGN"], [333, 9, 1, "", "SIG_SETMASK"], [333, 9, 1, "", "SIG_UNBLOCK"], [333, 11, 1, "", "Sigmasks"], [333, 11, 1, "", "Signals"], [333, 12, 1, "", "alarm"], [333, 12, 1, "", "getitimer"], [333, 12, 1, "", "getsignal"], [333, 12, 1, "", "pause"], [333, 12, 1, "", "pidfd_send_signal"], [333, 12, 1, "", "pthread_kill"], [333, 12, 1, "", "pthread_sigmask"], [333, 12, 1, "", "raise_signal"], [333, 12, 1, "", "set_wakeup_fd"], [333, 12, 1, "", "setitimer"], [333, 12, 1, "", "siginterrupt"], [333, 12, 1, "", "signal"], [333, 12, 1, "", "sigpending"], [333, 12, 1, "", "sigtimedwait"], [333, 12, 1, "", "sigwait"], [333, 12, 1, "", "sigwaitinfo"], [333, 12, 1, "", "strsignal"], [333, 12, 1, "", "valid_signals"]], "site": [[334, 9, 1, "", "ENABLE_USER_SITE"], [334, 9, 1, "", "PREFIXES"], [334, 9, 1, "", "USER_BASE"], [334, 9, 1, "", "USER_SITE"], [334, 12, 1, "", "addsitedir"], [334, 12, 1, "", "getsitepackages"], [334, 12, 1, "", "getuserbase"], [334, 12, 1, "", "getusersitepackages"], [334, 12, 1, "", "main"], [334, 14, 1, "cmdoption-site-user-base", "--user-base"], [334, 14, 1, "cmdoption-site-user-site", "--user-site"]], "slice": [[428, 8, 1, "", "indices"], [225, 7, 1, "", "start"], [225, 7, 1, "", "step"], [225, 7, 1, "", "stop"]], "smtplib": [[335, 11, 1, "", "LMTP"], [335, 11, 1, "", "SMTP"], [335, 6, 1, "", "SMTPAuthenticationError"], [335, 6, 1, "", "SMTPConnectError"], [335, 6, 1, "", "SMTPDataError"], [335, 6, 1, "", "SMTPException"], [335, 6, 1, "", "SMTPHeloError"], [335, 6, 1, "", "SMTPNotSupportedError"], [335, 6, 1, "", "SMTPRecipientsRefused"], [335, 6, 1, "", "SMTPResponseException"], [335, 6, 1, "", "SMTPSenderRefused"], [335, 6, 1, "", "SMTPServerDisconnected"], [335, 11, 1, "", "SMTP_SSL"]], "smtplib.SMTP": [[335, 8, 1, "", "auth"], [335, 8, 1, "", "connect"], [335, 8, 1, "", "docmd"], [335, 8, 1, "", "ehlo"], [335, 8, 1, "", "ehlo_or_helo_if_needed"], [335, 8, 1, "", "has_extn"], [335, 8, 1, "", "helo"], [335, 8, 1, "", "login"], [335, 8, 1, "", "quit"], [335, 8, 1, "", "send_message"], [335, 8, 1, "", "sendmail"], [335, 8, 1, "", "set_debuglevel"], [335, 8, 1, "", "starttls"], [335, 8, 1, "", "verify"]], "sndhdr": [[336, 9, 1, "", "tests"], [336, 12, 1, "", "what"], [336, 12, 1, "", "whathdr"]], "socket": [[337, 9, 1, "", "AF_ALG"], [337, 9, 1, "", "AF_CAN"], [337, 9, 1, "", "AF_DIVERT"], [337, 9, 1, "", "AF_HYPERV"], [337, 9, 1, "", "AF_INET"], [337, 9, 1, "", "AF_INET6"], [337, 9, 1, "", "AF_LINK"], [337, 9, 1, "", "AF_PACKET"], [337, 9, 1, "", "AF_QIPCRTR"], [337, 9, 1, "", "AF_RDS"], [337, 9, 1, "", "AF_UNIX"], [337, 9, 1, "", "AF_UNSPEC"], [337, 9, 1, "", "AF_VSOCK"], [337, 9, 1, "", "BDADDR_ANY"], [337, 9, 1, "", "BDADDR_LOCAL"], [337, 9, 1, "", "CAN_BCM"], [337, 9, 1, "", "CAN_ISOTP"], [337, 9, 1, "", "CAN_J1939"], [337, 9, 1, "", "CAN_RAW_FD_FRAMES"], [337, 9, 1, "", "CAN_RAW_JOIN_FILTERS"], [337, 12, 1, "", "CMSG_LEN"], [337, 12, 1, "", "CMSG_SPACE"], [337, 9, 1, "", "ETHERTYPE_ARP"], [337, 9, 1, "", "ETHERTYPE_IP"], [337, 9, 1, "", "ETHERTYPE_IPV6"], [337, 9, 1, "", "ETHERTYPE_VLAN"], [337, 9, 1, "", "ETH_P_ALL"], [337, 9, 1, "", "HCI_DATA_DIR"], [337, 9, 1, "", "HCI_FILTER"], [337, 9, 1, "", "HCI_TIME_STAMP"], [337, 9, 1, "", "HVSOCKET_ADDRESS_FLAG_PASSTHRU"], [337, 9, 1, "", "HVSOCKET_CONNECTED_SUSPEND"], [337, 9, 1, "", "HVSOCKET_CONNECT_TIMEOUT"], [337, 9, 1, "", "HVSOCKET_CONNECT_TIMEOUT_MAX"], [337, 9, 1, "", "HV_GUID_BROADCAST"], [337, 9, 1, "", "HV_GUID_CHILDREN"], [337, 9, 1, "", "HV_GUID_LOOPBACK"], [337, 9, 1, "", "HV_GUID_PARENT"], [337, 9, 1, "", "HV_GUID_WILDCARD"], [337, 9, 1, "", "HV_GUID_ZERO"], [337, 9, 1, "", "HV_PROTOCOL_RAW"], [337, 9, 1, "", "IOCTL_VM_SOCKETS_GET_LOCAL_CID"], [337, 9, 1, "", "LOCAL_CREDS"], [337, 9, 1, "", "LOCAL_CREDS_PERSISTENT"], [337, 9, 1, "", "PF_CAN"], [337, 9, 1, "", "PF_DIVERT"], [337, 9, 1, "", "PF_PACKET"], [337, 9, 1, "", "PF_RDS"], [337, 9, 1, "", "SCM_CREDS2"], [337, 9, 1, "", "SIO_KEEPALIVE_VALS"], [337, 9, 1, "", "SIO_LOOPBACK_FAST_PATH"], [337, 9, 1, "", "SIO_RCVALL"], [337, 9, 1, "", "SOCK_CLOEXEC"], [337, 9, 1, "", "SOCK_DGRAM"], [337, 9, 1, "", "SOCK_NONBLOCK"], [337, 9, 1, "", "SOCK_RAW"], [337, 9, 1, "", "SOCK_RDM"], [337, 9, 1, "", "SOCK_SEQPACKET"], [337, 9, 1, "", "SOCK_STREAM"], [337, 9, 1, "", "SOL_ALG"], [337, 9, 1, "", "SOL_RDS"], [337, 9, 1, "", "SOMAXCONN"], [337, 9, 1, "", "SO_INCOMING_CPU"], [337, 9, 1, "", "SocketType"], [337, 12, 1, "", "close"], [337, 12, 1, "", "create_connection"], [337, 12, 1, "", "create_server"], [337, 6, 1, "", "error"], [337, 12, 1, "", "fromfd"], [337, 12, 1, "", "fromshare"], [337, 6, 1, "", "gaierror"], [337, 12, 1, "", "getaddrinfo"], [337, 12, 1, "", "getdefaulttimeout"], [337, 12, 1, "", "getfqdn"], [337, 12, 1, "", "gethostbyaddr"], [337, 12, 1, "", "gethostbyname"], [337, 12, 1, "", "gethostbyname_ex"], [337, 12, 1, "", "gethostname"], [337, 12, 1, "", "getnameinfo"], [337, 12, 1, "", "getprotobyname"], [337, 12, 1, "", "getservbyname"], [337, 12, 1, "", "getservbyport"], [337, 12, 1, "", "has_dualstack_ipv6"], [337, 9, 1, "", "has_ipv6"], [337, 6, 1, "", "herror"], [337, 12, 1, "", "htonl"], [337, 12, 1, "", "htons"], [337, 12, 1, "", "if_indextoname"], [337, 12, 1, "", "if_nameindex"], [337, 12, 1, "", "if_nametoindex"], [337, 12, 1, "", "inet_aton"], [337, 12, 1, "", "inet_ntoa"], [337, 12, 1, "", "inet_ntop"], [337, 12, 1, "", "inet_pton"], [337, 12, 1, "", "ntohl"], [337, 12, 1, "", "ntohs"], [337, 12, 1, "", "recv_fds"], [337, 12, 1, "", "send_fds"], [337, 12, 1, "", "setdefaulttimeout"], [337, 12, 1, "", "sethostname"], [337, 11, 1, "", "socket"], [337, 12, 1, "", "socketpair"], [337, 6, 1, "", "timeout"]], "socket.socket": [[337, 8, 1, "", "accept"], [337, 8, 1, "", "bind"], [337, 8, 1, "", "close"], [337, 8, 1, "", "connect"], [337, 8, 1, "", "connect_ex"], [337, 8, 1, "", "detach"], [337, 8, 1, "", "dup"], [337, 7, 1, "", "family"], [337, 8, 1, "", "fileno"], [337, 8, 1, "", "get_inheritable"], [337, 8, 1, "", "getblocking"], [337, 8, 1, "", "getpeername"], [337, 8, 1, "", "getsockname"], [337, 8, 1, "", "getsockopt"], [337, 8, 1, "", "gettimeout"], [337, 8, 1, "", "ioctl"], [337, 8, 1, "", "listen"], [337, 8, 1, "", "makefile"], [337, 7, 1, "", "proto"], [337, 8, 1, "", "recv"], [337, 8, 1, "", "recv_into"], [337, 8, 1, "", "recvfrom"], [337, 8, 1, "", "recvfrom_into"], [337, 8, 1, "", "recvmsg"], [337, 8, 1, "", "recvmsg_into"], [337, 8, 1, "", "send"], [337, 8, 1, "", "sendall"], [337, 8, 1, "", "sendfile"], [337, 8, 1, "", "sendmsg"], [337, 8, 1, "", "sendmsg_afalg"], [337, 8, 1, "", "sendto"], [337, 8, 1, "", "set_inheritable"], [337, 8, 1, "", "setblocking"], [337, 8, 1, "", "setsockopt"], [337, 8, 1, "", "settimeout"], [337, 8, 1, "", "share"], [337, 8, 1, "", "shutdown"], [337, 7, 1, "", "type"]], "socketserver": [[338, 11, 1, "", "BaseRequestHandler"], [338, 11, 1, "", "BaseServer"], [338, 11, 1, "", "DatagramRequestHandler"], [338, 11, 1, "", "ForkingMixIn"], [338, 11, 1, "", "ForkingTCPServer"], [338, 11, 1, "", "ForkingUDPServer"], [338, 11, 1, "", "ForkingUnixDatagramServer"], [338, 11, 1, "", "ForkingUnixStreamServer"], [338, 11, 1, "", "StreamRequestHandler"], [338, 11, 1, "", "TCPServer"], [338, 11, 1, "", "ThreadingMixIn"], [338, 11, 1, "", "ThreadingTCPServer"], [338, 11, 1, "", "ThreadingUDPServer"], [338, 11, 1, "", "ThreadingUnixDatagramServer"], [338, 11, 1, "", "ThreadingUnixStreamServer"], [338, 11, 1, "", "UDPServer"], [338, 11, 1, "", "UnixDatagramServer"], [338, 11, 1, "", "UnixStreamServer"]], "socketserver.BaseRequestHandler": [[338, 7, 1, "", "client_address"], [338, 8, 1, "", "finish"], [338, 8, 1, "", "handle"], [338, 7, 1, "", "request"], [338, 7, 1, "", "server"], [338, 8, 1, "", "setup"]], "socketserver.BaseServer": [[338, 7, 1, "", "RequestHandlerClass"], [338, 7, 1, "", "address_family"], [338, 7, 1, "", "allow_reuse_address"], [338, 8, 1, "", "fileno"], [338, 8, 1, "", "finish_request"], [338, 8, 1, "", "get_request"], [338, 8, 1, "", "handle_error"], [338, 8, 1, "", "handle_request"], [338, 8, 1, "", "handle_timeout"], [338, 8, 1, "", "process_request"], [338, 7, 1, "", "request_queue_size"], [338, 8, 1, "", "serve_forever"], [338, 8, 1, "", "server_activate"], [338, 7, 1, "", "server_address"], [338, 8, 1, "", "server_bind"], [338, 8, 1, "", "server_close"], [338, 8, 1, "", "service_actions"], [338, 8, 1, "", "shutdown"], [338, 7, 1, "", "socket"], [338, 7, 1, "", "socket_type"], [338, 7, 1, "", "timeout"], [338, 8, 1, "", "verify_request"]], "socketserver.DatagramRequestHandler": [[338, 7, 1, "", "rfile"], [338, 7, 1, "", "wfile"]], "socketserver.ThreadingMixIn": [[338, 7, 1, "", "block_on_close"], [338, 7, 1, "", "daemon_threads"]], "spwd": [[339, 12, 1, "", "getspall"], [339, 12, 1, "", "getspnam"]], "sqlite3": [[340, 11, 1, "", "Blob"], [340, 11, 1, "", "Connection"], [340, 11, 1, "", "Cursor"], [340, 6, 1, "", "DataError"], [340, 6, 1, "", "DatabaseError"], [340, 6, 1, "", "Error"], [340, 6, 1, "", "IntegrityError"], [340, 6, 1, "", "InterfaceError"], [340, 6, 1, "", "InternalError"], [340, 9, 1, "", "LEGACY_TRANSACTION_CONTROL"], [340, 6, 1, "", "NotSupportedError"], [340, 6, 1, "", "OperationalError"], [340, 9, 1, "", "PARSE_COLNAMES"], [340, 9, 1, "", "PARSE_DECLTYPES"], [340, 11, 1, "", "PrepareProtocol"], [340, 6, 1, "", "ProgrammingError"], [340, 11, 1, "", "Row"], [340, 9, 1, "", "SQLITE_DBCONFIG_DEFENSIVE"], [340, 9, 1, "", "SQLITE_DBCONFIG_DQS_DDL"], [340, 9, 1, "", "SQLITE_DBCONFIG_DQS_DML"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_FKEY"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_QPSG"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_TRIGGER"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_VIEW"], [340, 9, 1, "", "SQLITE_DBCONFIG_LEGACY_ALTER_TABLE"], [340, 9, 1, "", "SQLITE_DBCONFIG_LEGACY_FILE_FORMAT"], [340, 9, 1, "", "SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE"], [340, 9, 1, "", "SQLITE_DBCONFIG_RESET_DATABASE"], [340, 9, 1, "", "SQLITE_DBCONFIG_TRIGGER_EQP"], [340, 9, 1, "", "SQLITE_DBCONFIG_TRUSTED_SCHEMA"], [340, 9, 1, "", "SQLITE_DBCONFIG_WRITABLE_SCHEMA"], [340, 9, 1, "", "SQLITE_DENY"], [340, 9, 1, "", "SQLITE_IGNORE"], [340, 9, 1, "", "SQLITE_OK"], [340, 6, 1, "", "Warning"], [340, 9, 1, "", "apilevel"], [340, 12, 1, "", "complete_statement"], [340, 12, 1, "", "connect"], [340, 12, 1, "", "enable_callback_tracebacks"], [340, 9, 1, "", "paramstyle"], [340, 12, 1, "", "register_adapter"], [340, 12, 1, "", "register_converter"], [340, 9, 1, "", "sqlite_version"], [340, 9, 1, "", "sqlite_version_info"], [340, 9, 1, "", "threadsafety"], [340, 9, 1, "", "version"], [340, 9, 1, "", "version_info"]], "sqlite3.Blob": [[340, 8, 1, "", "close"], [340, 8, 1, "", "read"], [340, 8, 1, "", "seek"], [340, 8, 1, "", "tell"], [340, 8, 1, "", "write"]], "sqlite3.Connection": [[340, 7, 1, "", "autocommit"], [340, 8, 1, "", "backup"], [340, 8, 1, "", "blobopen"], [340, 8, 1, "", "close"], [340, 8, 1, "", "commit"], [340, 8, 1, "", "create_aggregate"], [340, 8, 1, "", "create_collation"], [340, 8, 1, "", "create_function"], [340, 8, 1, "", "create_window_function"], [340, 8, 1, "", "cursor"], [340, 8, 1, "", "deserialize"], [340, 8, 1, "", "enable_load_extension"], [340, 8, 1, "", "execute"], [340, 8, 1, "", "executemany"], [340, 8, 1, "", "executescript"], [340, 8, 1, "", "getconfig"], [340, 8, 1, "", "getlimit"], [340, 7, 1, "", "in_transaction"], [340, 8, 1, "", "interrupt"], [340, 7, 1, "", "isolation_level"], [340, 8, 1, "", "iterdump"], [340, 8, 1, "", "load_extension"], [340, 8, 1, "", "rollback"], [340, 7, 1, "", "row_factory"], [340, 8, 1, "", "serialize"], [340, 8, 1, "", "set_authorizer"], [340, 8, 1, "", "set_progress_handler"], [340, 8, 1, "", "set_trace_callback"], [340, 8, 1, "", "setconfig"], [340, 8, 1, "", "setlimit"], [340, 7, 1, "", "text_factory"], [340, 7, 1, "", "total_changes"]], "sqlite3.Cursor": [[340, 7, 1, "", "arraysize"], [340, 8, 1, "", "close"], [340, 7, 1, "", "connection"], [340, 7, 1, "", "description"], [340, 8, 1, "", "execute"], [340, 8, 1, "", "executemany"], [340, 8, 1, "", "executescript"], [340, 8, 1, "", "fetchall"], [340, 8, 1, "", "fetchmany"], [340, 8, 1, "", "fetchone"], [340, 7, 1, "", "lastrowid"], [340, 7, 1, "", "row_factory"], [340, 7, 1, "", "rowcount"], [340, 8, 1, "", "setinputsizes"], [340, 8, 1, "", "setoutputsize"]], "sqlite3.Error": [[340, 7, 1, "", "sqlite_errorcode"], [340, 7, 1, "", "sqlite_errorname"]], "sqlite3.Row": [[340, 8, 1, "", "keys"]], "ssl": [[341, 9, 1, "", "ALERT_DESCRIPTION_HANDSHAKE_FAILURE"], [341, 9, 1, "", "ALERT_DESCRIPTION_INTERNAL_ERROR"], [341, 11, 1, "", "AlertDescription"], [341, 9, 1, "", "CERT_NONE"], [341, 9, 1, "", "CERT_OPTIONAL"], [341, 9, 1, "", "CERT_REQUIRED"], [341, 9, 1, "", "CHANNEL_BINDING_TYPES"], [341, 6, 1, "", "CertificateError"], [341, 12, 1, "", "DER_cert_to_PEM_cert"], [341, 9, 1, "", "HAS_ALPN"], [341, 9, 1, "", "HAS_ECDH"], [341, 9, 1, "", "HAS_NEVER_CHECK_COMMON_NAME"], [341, 9, 1, "", "HAS_NPN"], [341, 9, 1, "", "HAS_SNI"], [341, 9, 1, "", "HAS_SSLv2"], [341, 9, 1, "", "HAS_SSLv3"], [341, 9, 1, "", "HAS_TLSv1"], [341, 9, 1, "", "HAS_TLSv1_1"], [341, 9, 1, "", "HAS_TLSv1_2"], [341, 9, 1, "", "HAS_TLSv1_3"], [341, 11, 1, "", "MemoryBIO"], [341, 9, 1, "", "OPENSSL_VERSION"], [341, 9, 1, "", "OPENSSL_VERSION_INFO"], [341, 9, 1, "", "OPENSSL_VERSION_NUMBER"], [341, 9, 1, "", "OP_ALL"], [341, 9, 1, "", "OP_CIPHER_SERVER_PREFERENCE"], [341, 9, 1, "", "OP_ENABLE_KTLS"], [341, 9, 1, "", "OP_ENABLE_MIDDLEBOX_COMPAT"], [341, 9, 1, "", "OP_IGNORE_UNEXPECTED_EOF"], [341, 9, 1, "", "OP_LEGACY_SERVER_CONNECT"], [341, 9, 1, "", "OP_NO_COMPRESSION"], [341, 9, 1, "", "OP_NO_RENEGOTIATION"], [341, 9, 1, "", "OP_NO_SSLv2"], [341, 9, 1, "", "OP_NO_SSLv3"], [341, 9, 1, "", "OP_NO_TICKET"], [341, 9, 1, "", "OP_NO_TLSv1"], [341, 9, 1, "", "OP_NO_TLSv1_1"], [341, 9, 1, "", "OP_NO_TLSv1_2"], [341, 9, 1, "", "OP_NO_TLSv1_3"], [341, 9, 1, "", "OP_SINGLE_DH_USE"], [341, 9, 1, "", "OP_SINGLE_ECDH_USE"], [341, 11, 1, "", "Options"], [341, 12, 1, "", "PEM_cert_to_DER_cert"], [341, 9, 1, "", "PROTOCOL_SSLv23"], [341, 9, 1, "", "PROTOCOL_SSLv3"], [341, 9, 1, "", "PROTOCOL_TLS"], [341, 9, 1, "", "PROTOCOL_TLS_CLIENT"], [341, 9, 1, "", "PROTOCOL_TLS_SERVER"], [341, 9, 1, "", "PROTOCOL_TLSv1"], [341, 9, 1, "", "PROTOCOL_TLSv1_1"], [341, 9, 1, "", "PROTOCOL_TLSv1_2"], [341, 12, 1, "", "RAND_add"], [341, 12, 1, "", "RAND_bytes"], [341, 12, 1, "", "RAND_status"], [341, 6, 1, "", "SSLCertVerificationError"], [341, 11, 1, "", "SSLContext"], [341, 6, 1, "", "SSLEOFError"], [341, 6, 1, "", "SSLError"], [341, 11, 1, "", "SSLErrorNumber"], [341, 11, 1, "", "SSLObject"], [341, 11, 1, "", "SSLSession"], [341, 11, 1, "", "SSLSocket"], [341, 6, 1, "", "SSLSyscallError"], [341, 6, 1, "", "SSLWantReadError"], [341, 6, 1, "", "SSLWantWriteError"], [341, 6, 1, "", "SSLZeroReturnError"], [341, 11, 1, "", "TLSVersion"], [341, 9, 1, "", "VERIFY_ALLOW_PROXY_CERTS"], [341, 9, 1, "", "VERIFY_CRL_CHECK_CHAIN"], [341, 9, 1, "", "VERIFY_CRL_CHECK_LEAF"], [341, 9, 1, "", "VERIFY_DEFAULT"], [341, 9, 1, "", "VERIFY_X509_PARTIAL_CHAIN"], [341, 9, 1, "", "VERIFY_X509_STRICT"], [341, 9, 1, "", "VERIFY_X509_TRUSTED_FIRST"], [341, 11, 1, "", "VerifyFlags"], [341, 11, 1, "", "VerifyMode"], [341, 12, 1, "", "cert_time_to_seconds"], [341, 12, 1, "", "create_default_context"], [341, 12, 1, "", "enum_certificates"], [341, 12, 1, "", "enum_crls"], [341, 12, 1, "", "get_default_verify_paths"], [341, 12, 1, "", "get_server_certificate"]], "ssl.MemoryBIO": [[341, 7, 1, "", "eof"], [341, 7, 1, "", "pending"], [341, 8, 1, "", "read"], [341, 8, 1, "", "write"], [341, 8, 1, "", "write_eof"]], "ssl.Purpose": [[341, 9, 1, "", "CLIENT_AUTH"], [341, 9, 1, "", "SERVER_AUTH"]], "ssl.SSLCertVerificationError": [[341, 7, 1, "", "verify_code"], [341, 7, 1, "", "verify_message"]], "ssl.SSLContext": [[341, 8, 1, "", "cert_store_stats"], [341, 7, 1, "", "check_hostname"], [341, 8, 1, "", "get_ca_certs"], [341, 8, 1, "", "get_ciphers"], [341, 7, 1, "", "hostname_checks_common_name"], [341, 7, 1, "", "keylog_filename"], [341, 8, 1, "", "load_cert_chain"], [341, 8, 1, "", "load_default_certs"], [341, 8, 1, "", "load_dh_params"], [341, 8, 1, "", "load_verify_locations"], [341, 7, 1, "", "maximum_version"], [341, 7, 1, "", "minimum_version"], [341, 7, 1, "", "num_tickets"], [341, 7, 1, "", "options"], [341, 7, 1, "", "post_handshake_auth"], [341, 7, 1, "", "protocol"], [341, 7, 1, "", "security_level"], [341, 8, 1, "", "session_stats"], [341, 8, 1, "", "set_alpn_protocols"], [341, 8, 1, "", "set_ciphers"], [341, 8, 1, "", "set_default_verify_paths"], [341, 8, 1, "", "set_ecdh_curve"], [341, 8, 1, "", "set_npn_protocols"], [341, 7, 1, "", "set_servername_callback"], [341, 7, 1, "", "sni_callback"], [341, 7, 1, "", "sslobject_class"], [341, 7, 1, "", "sslsocket_class"], [341, 7, 1, "", "verify_flags"], [341, 7, 1, "", "verify_mode"], [341, 8, 1, "", "wrap_bio"], [341, 8, 1, "", "wrap_socket"]], "ssl.SSLError": [[341, 7, 1, "", "library"], [341, 7, 1, "", "reason"]], "ssl.SSLSession": [[341, 7, 1, "", "has_ticket"], [341, 7, 1, "", "id"], [341, 7, 1, "", "ticket_lifetime_hint"], [341, 7, 1, "", "time"], [341, 7, 1, "", "timeout"]], "ssl.SSLSocket": [[341, 8, 1, "", "cipher"], [341, 8, 1, "", "compression"], [341, 7, 1, "", "context"], [341, 8, 1, "", "do_handshake"], [341, 8, 1, "", "get_channel_binding"], [341, 8, 1, "", "getpeercert"], [341, 8, 1, "", "pending"], [341, 8, 1, "", "read"], [341, 8, 1, "", "selected_alpn_protocol"], [341, 8, 1, "", "selected_npn_protocol"], [341, 7, 1, "", "server_hostname"], [341, 7, 1, "", "server_side"], [341, 7, 1, "", "session"], [341, 7, 1, "", "session_reused"], [341, 8, 1, "", "shared_ciphers"], [341, 8, 1, "", "unwrap"], [341, 8, 1, "", "verify_client_post_handshake"], [341, 8, 1, "", "version"], [341, 8, 1, "", "write"]], "ssl.TLSVersion": [[341, 7, 1, "", "MAXIMUM_SUPPORTED"], [341, 7, 1, "", "MINIMUM_SUPPORTED"], [341, 7, 1, "", "SSLv3"], [341, 7, 1, "", "TLSv1"], [341, 7, 1, "", "TLSv1_1"], [341, 7, 1, "", "TLSv1_2"], [341, 7, 1, "", "TLSv1_3"]], "stat": [[342, 9, 1, "", "FILE_ATTRIBUTE_ARCHIVE"], [342, 9, 1, "", "FILE_ATTRIBUTE_COMPRESSED"], [342, 9, 1, "", "FILE_ATTRIBUTE_DEVICE"], [342, 9, 1, "", "FILE_ATTRIBUTE_DIRECTORY"], [342, 9, 1, "", "FILE_ATTRIBUTE_ENCRYPTED"], [342, 9, 1, "", "FILE_ATTRIBUTE_HIDDEN"], [342, 9, 1, "", "FILE_ATTRIBUTE_INTEGRITY_STREAM"], [342, 9, 1, "", "FILE_ATTRIBUTE_NORMAL"], [342, 9, 1, "", "FILE_ATTRIBUTE_NOT_CONTENT_INDEXED"], [342, 9, 1, "", "FILE_ATTRIBUTE_NO_SCRUB_DATA"], [342, 9, 1, "", "FILE_ATTRIBUTE_OFFLINE"], [342, 9, 1, "", "FILE_ATTRIBUTE_READONLY"], [342, 9, 1, "", "FILE_ATTRIBUTE_REPARSE_POINT"], [342, 9, 1, "", "FILE_ATTRIBUTE_SPARSE_FILE"], [342, 9, 1, "", "FILE_ATTRIBUTE_SYSTEM"], [342, 9, 1, "", "FILE_ATTRIBUTE_TEMPORARY"], [342, 9, 1, "", "FILE_ATTRIBUTE_VIRTUAL"], [342, 9, 1, "", "IO_REPARSE_TAG_APPEXECLINK"], [342, 9, 1, "", "IO_REPARSE_TAG_MOUNT_POINT"], [342, 9, 1, "", "IO_REPARSE_TAG_SYMLINK"], [342, 9, 1, "", "SF_APPEND"], [342, 9, 1, "", "SF_ARCHIVED"], [342, 9, 1, "", "SF_IMMUTABLE"], [342, 9, 1, "", "SF_NOUNLINK"], [342, 9, 1, "", "SF_SNAPSHOT"], [342, 9, 1, "", "ST_ATIME"], [342, 9, 1, "", "ST_CTIME"], [342, 9, 1, "", "ST_DEV"], [342, 9, 1, "", "ST_GID"], [342, 9, 1, "", "ST_INO"], [342, 9, 1, "", "ST_MODE"], [342, 9, 1, "", "ST_MTIME"], [342, 9, 1, "", "ST_NLINK"], [342, 9, 1, "", "ST_SIZE"], [342, 9, 1, "", "ST_UID"], [342, 9, 1, "", "S_ENFMT"], [342, 9, 1, "", "S_IEXEC"], [342, 9, 1, "", "S_IFBLK"], [342, 9, 1, "", "S_IFCHR"], [342, 9, 1, "", "S_IFDIR"], [342, 9, 1, "", "S_IFDOOR"], [342, 9, 1, "", "S_IFIFO"], [342, 9, 1, "", "S_IFLNK"], [342, 12, 1, "", "S_IFMT"], [342, 9, 1, "", "S_IFPORT"], [342, 9, 1, "", "S_IFREG"], [342, 9, 1, "", "S_IFSOCK"], [342, 9, 1, "", "S_IFWHT"], [342, 12, 1, "", "S_IMODE"], [342, 9, 1, "", "S_IREAD"], [342, 9, 1, "", "S_IRGRP"], [342, 9, 1, "", "S_IROTH"], [342, 9, 1, "", "S_IRUSR"], [342, 9, 1, "", "S_IRWXG"], [342, 9, 1, "", "S_IRWXO"], [342, 9, 1, "", "S_IRWXU"], [342, 12, 1, "", "S_ISBLK"], [342, 12, 1, "", "S_ISCHR"], [342, 12, 1, "", "S_ISDIR"], [342, 12, 1, "", "S_ISDOOR"], [342, 12, 1, "", "S_ISFIFO"], [342, 9, 1, "", "S_ISGID"], [342, 12, 1, "", "S_ISLNK"], [342, 12, 1, "", "S_ISPORT"], [342, 12, 1, "", "S_ISREG"], [342, 12, 1, "", "S_ISSOCK"], [342, 9, 1, "", "S_ISUID"], [342, 9, 1, "", "S_ISVTX"], [342, 12, 1, "", "S_ISWHT"], [342, 9, 1, "", "S_IWGRP"], [342, 9, 1, "", "S_IWOTH"], [342, 9, 1, "", "S_IWRITE"], [342, 9, 1, "", "S_IWUSR"], [342, 9, 1, "", "S_IXGRP"], [342, 9, 1, "", "S_IXOTH"], [342, 9, 1, "", "S_IXUSR"], [342, 9, 1, "", "UF_APPEND"], [342, 9, 1, "", "UF_COMPRESSED"], [342, 9, 1, "", "UF_HIDDEN"], [342, 9, 1, "", "UF_IMMUTABLE"], [342, 9, 1, "", "UF_NODUMP"], [342, 9, 1, "", "UF_NOUNLINK"], [342, 9, 1, "", "UF_OPAQUE"], [342, 12, 1, "", "filemode"]], "statistics": [[343, 11, 1, "", "NormalDist"], [343, 6, 1, "", "StatisticsError"], [343, 12, 1, "", "correlation"], [343, 12, 1, "", "covariance"], [343, 12, 1, "", "fmean"], [343, 12, 1, "", "geometric_mean"], [343, 12, 1, "", "harmonic_mean"], [343, 12, 1, "", "linear_regression"], [343, 12, 1, "", "mean"], [343, 12, 1, "", "median"], [343, 12, 1, "", "median_grouped"], [343, 12, 1, "", "median_high"], [343, 12, 1, "", "median_low"], [343, 12, 1, "", "mode"], [343, 12, 1, "", "multimode"], [343, 12, 1, "", "pstdev"], [343, 12, 1, "", "pvariance"], [343, 12, 1, "", "quantiles"], [343, 12, 1, "", "stdev"], [343, 12, 1, "", "variance"]], "statistics.NormalDist": [[343, 8, 1, "", "cdf"], [343, 8, 1, "", "from_samples"], [343, 8, 1, "", "inv_cdf"], [343, 7, 1, "", "mean"], [343, 7, 1, "", "median"], [343, 7, 1, "", "mode"], [343, 8, 1, "", "overlap"], [343, 8, 1, "", "pdf"], [343, 8, 1, "", "quantiles"], [343, 8, 1, "", "samples"], [343, 7, 1, "", "stdev"], [343, 7, 1, "", "variance"], [343, 8, 1, "", "zscore"]], "str": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "casefold"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "encode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "format"], [344, 8, 1, "", "format_map"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdecimal"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "isidentifier"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isnumeric"], [344, 8, 1, "", "isprintable"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "string": [[345, 11, 1, "", "Formatter"], [345, 11, 1, "", "Template"], [345, 9, 1, "", "ascii_letters"], [345, 9, 1, "", "ascii_lowercase"], [345, 9, 1, "", "ascii_uppercase"], [345, 12, 1, "", "capwords"], [345, 9, 1, "", "digits"], [345, 9, 1, "", "hexdigits"], [345, 9, 1, "", "octdigits"], [345, 9, 1, "", "printable"], [345, 9, 1, "", "punctuation"], [345, 9, 1, "", "whitespace"]], "string.Formatter": [[345, 8, 1, "", "check_unused_args"], [345, 8, 1, "", "convert_field"], [345, 8, 1, "", "format"], [345, 8, 1, "", "format_field"], [345, 8, 1, "", "get_field"], [345, 8, 1, "", "get_value"], [345, 8, 1, "", "parse"], [345, 8, 1, "", "vformat"]], "string.Template": [[345, 8, 1, "", "get_identifiers"], [345, 8, 1, "", "is_valid"], [345, 8, 1, "", "safe_substitute"], [345, 8, 1, "", "substitute"], [345, 7, 1, "", "template"]], "stringprep": [[346, 12, 1, "", "in_table_a1"], [346, 12, 1, "", "in_table_b1"], [346, 12, 1, "", "in_table_c11"], [346, 12, 1, "", "in_table_c11_c12"], [346, 12, 1, "", "in_table_c12"], [346, 12, 1, "", "in_table_c21"], [346, 12, 1, "", "in_table_c21_c22"], [346, 12, 1, "", "in_table_c22"], [346, 12, 1, "", "in_table_c3"], [346, 12, 1, "", "in_table_c4"], [346, 12, 1, "", "in_table_c5"], [346, 12, 1, "", "in_table_c6"], [346, 12, 1, "", "in_table_c7"], [346, 12, 1, "", "in_table_c8"], [346, 12, 1, "", "in_table_c9"], [346, 12, 1, "", "in_table_d1"], [346, 12, 1, "", "in_table_d2"], [346, 12, 1, "", "map_table_b2"], [346, 12, 1, "", "map_table_b3"]], "struct": [[347, 11, 1, "", "Struct"], [347, 12, 1, "", "calcsize"], [347, 6, 1, "", "error"], [347, 12, 1, "", "iter_unpack"], [347, 12, 1, "", "pack"], [347, 12, 1, "", "pack_into"], [347, 12, 1, "", "unpack"], [347, 12, 1, "", "unpack_from"]], "struct.Struct": [[347, 7, 1, "", "format"], [347, 8, 1, "", "iter_unpack"], [347, 8, 1, "", "pack"], [347, 8, 1, "", "pack_into"], [347, 7, 1, "", "size"], [347, 8, 1, "", "unpack"], [347, 8, 1, "", "unpack_from"]], "subprocess": [[348, 9, 1, "", "ABOVE_NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "BELOW_NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "CREATE_BREAKAWAY_FROM_JOB"], [348, 9, 1, "", "CREATE_DEFAULT_ERROR_MODE"], [348, 9, 1, "", "CREATE_NEW_CONSOLE"], [348, 9, 1, "", "CREATE_NEW_PROCESS_GROUP"], [348, 9, 1, "", "CREATE_NO_WINDOW"], [348, 6, 1, "", "CalledProcessError"], [348, 11, 1, "", "CompletedProcess"], [348, 9, 1, "", "DETACHED_PROCESS"], [348, 9, 1, "", "DEVNULL"], [348, 9, 1, "", "HIGH_PRIORITY_CLASS"], [348, 9, 1, "", "IDLE_PRIORITY_CLASS"], [348, 9, 1, "", "NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "PIPE"], [348, 11, 1, "", "Popen"], [348, 9, 1, "", "REALTIME_PRIORITY_CLASS"], [348, 9, 1, "", "STARTF_USESHOWWINDOW"], [348, 9, 1, "", "STARTF_USESTDHANDLES"], [348, 11, 1, "", "STARTUPINFO"], [348, 9, 1, "", "STDOUT"], [348, 9, 1, "", "STD_ERROR_HANDLE"], [348, 9, 1, "", "STD_INPUT_HANDLE"], [348, 9, 1, "", "STD_OUTPUT_HANDLE"], [348, 9, 1, "", "SW_HIDE"], [348, 6, 1, "", "SubprocessError"], [348, 6, 1, "", "TimeoutExpired"], [348, 12, 1, "", "call"], [348, 12, 1, "", "check_call"], [348, 12, 1, "", "check_output"], [348, 12, 1, "", "getoutput"], [348, 12, 1, "", "getstatusoutput"], [348, 12, 1, "", "run"]], "subprocess.CalledProcessError": [[348, 7, 1, "", "cmd"], [348, 7, 1, "", "output"], [348, 7, 1, "", "returncode"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"]], "subprocess.CompletedProcess": [[348, 7, 1, "", "args"], [348, 8, 1, "", "check_returncode"], [348, 7, 1, "", "returncode"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"]], "subprocess.Popen": [[348, 7, 1, "", "args"], [348, 8, 1, "", "communicate"], [348, 8, 1, "", "kill"], [348, 7, 1, "", "pid"], [348, 8, 1, "", "poll"], [348, 7, 1, "", "returncode"], [348, 8, 1, "", "send_signal"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdin"], [348, 7, 1, "", "stdout"], [348, 8, 1, "", "terminate"], [348, 8, 1, "", "wait"]], "subprocess.STARTUPINFO": [[348, 7, 1, "", "dwFlags"], [348, 7, 1, "", "hStdError"], [348, 7, 1, "", "hStdInput"], [348, 7, 1, "", "hStdOutput"], [348, 7, 1, "", "lpAttributeList"], [348, 7, 1, "", "wShowWindow"]], "subprocess.TimeoutExpired": [[348, 7, 1, "", "cmd"], [348, 7, 1, "", "output"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"], [348, 7, 1, "", "timeout"]], "sunau": [[349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G721"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G722"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G723_3"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G723_5"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ALAW_8"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_DOUBLE"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_FLOAT"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_16"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_24"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_32"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_8"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_MULAW_8"], [349, 9, 1, "", "AUDIO_FILE_MAGIC"], [349, 6, 1, "", "Error"], [349, 12, 1, "", "open"]], "sunau.AU_read": [[349, 8, 1, "", "close"], [349, 8, 1, "", "getcompname"], [349, 8, 1, "", "getcomptype"], [349, 8, 1, "", "getframerate"], [349, 8, 1, "", "getmark"], [349, 8, 1, "", "getmarkers"], [349, 8, 1, "", "getnchannels"], [349, 8, 1, "", "getnframes"], [349, 8, 1, "", "getparams"], [349, 8, 1, "", "getsampwidth"], [349, 8, 1, "", "readframes"], [349, 8, 1, "", "rewind"], [349, 8, 1, "", "setpos"], [349, 8, 1, "", "tell"]], "sunau.AU_write": [[349, 8, 1, "", "close"], [349, 8, 1, "", "setcomptype"], [349, 8, 1, "", "setframerate"], [349, 8, 1, "", "setnchannels"], [349, 8, 1, "", "setnframes"], [349, 8, 1, "", "setparams"], [349, 8, 1, "", "setsampwidth"], [349, 8, 1, "", "tell"], [349, 8, 1, "", "writeframes"], [349, 8, 1, "", "writeframesraw"]], "symtable": [[351, 11, 1, "", "Class"], [351, 11, 1, "", "Function"], [351, 11, 1, "", "Symbol"], [351, 11, 1, "", "SymbolTable"], [351, 12, 1, "", "symtable"]], "symtable.Class": [[351, 8, 1, "", "get_methods"]], "symtable.Function": [[351, 8, 1, "", "get_frees"], [351, 8, 1, "", "get_globals"], [351, 8, 1, "", "get_locals"], [351, 8, 1, "", "get_nonlocals"], [351, 8, 1, "", "get_parameters"]], "symtable.Symbol": [[351, 8, 1, "", "get_name"], [351, 8, 1, "", "get_namespace"], [351, 8, 1, "", "get_namespaces"], [351, 8, 1, "", "is_annotated"], [351, 8, 1, "", "is_assigned"], [351, 8, 1, "", "is_declared_global"], [351, 8, 1, "", "is_free"], [351, 8, 1, "", "is_global"], [351, 8, 1, "", "is_imported"], [351, 8, 1, "", "is_local"], [351, 8, 1, "", "is_namespace"], [351, 8, 1, "", "is_nonlocal"], [351, 8, 1, "", "is_parameter"], [351, 8, 1, "", "is_referenced"]], "symtable.SymbolTable": [[351, 8, 1, "", "get_children"], [351, 8, 1, "", "get_id"], [351, 8, 1, "", "get_identifiers"], [351, 8, 1, "", "get_lineno"], [351, 8, 1, "", "get_name"], [351, 8, 1, "", "get_symbols"], [351, 8, 1, "", "get_type"], [351, 8, 1, "", "has_children"], [351, 8, 1, "", "is_nested"], [351, 8, 1, "", "is_optimized"], [351, 8, 1, "", "lookup"]], "sys": [[352, 9, 1, "", "__breakpointhook__"], [352, 9, 1, "", "__displayhook__"], [352, 9, 1, "", "__excepthook__"], [352, 9, 1, "", "__interactivehook__"], [352, 9, 1, "", "__stderr__"], [352, 9, 1, "", "__stdin__"], [352, 9, 1, "", "__stdout__"], [352, 9, 1, "", "__unraisablehook__"], [352, 12, 1, "", "_clear_type_cache"], [352, 12, 1, "", "_current_exceptions"], [352, 12, 1, "", "_current_frames"], [352, 12, 1, "", "_debugmallocstats"], [352, 9, 1, "", "_emscripten_info"], [352, 12, 1, "", "_enablelegacywindowsfsencoding"], [352, 12, 1, "", "_getframe"], [352, 12, 1, "", "_getframemodulename"], [352, 9, 1, "", "_xoptions"], [352, 9, 1, "", "abiflags"], [352, 12, 1, "", "activate_stack_trampoline"], [352, 12, 1, "", "addaudithook"], [352, 9, 1, "", "api_version"], [352, 9, 1, "", "argv"], [352, 12, 1, "", "audit"], [352, 9, 1, "", "base_exec_prefix"], [352, 9, 1, "", "base_prefix"], [352, 12, 1, "", "breakpointhook"], [352, 9, 1, "", "builtin_module_names"], [352, 9, 1, "", "byteorder"], [352, 12, 1, "", "call_tracing"], [352, 9, 1, "", "copyright"], [352, 12, 1, "", "deactivate_stack_trampoline"], [352, 12, 1, "", "displayhook"], [352, 9, 1, "", "dllhandle"], [352, 9, 1, "", "dont_write_bytecode"], [352, 12, 1, "", "exc_info"], [352, 12, 1, "", "excepthook"], [352, 12, 1, "", "exception"], [352, 9, 1, "", "exec_prefix"], [352, 9, 1, "", "executable"], [352, 12, 1, "", "exit"], [352, 9, 1, "", "flags"], [352, 9, 1, "", "float_info"], [352, 9, 1, "", "float_repr_style"], [352, 12, 1, "", "get_asyncgen_hooks"], [352, 12, 1, "", "get_coroutine_origin_tracking_depth"], [352, 12, 1, "", "get_int_max_str_digits"], [352, 12, 1, "", "getallocatedblocks"], [352, 12, 1, "", "getandroidapilevel"], [352, 12, 1, "", "getdefaultencoding"], [352, 12, 1, "", "getdlopenflags"], [352, 12, 1, "", "getfilesystemencodeerrors"], [352, 12, 1, "", "getfilesystemencoding"], [352, 12, 1, "", "getprofile"], [352, 12, 1, "", "getrecursionlimit"], [352, 12, 1, "", "getrefcount"], [352, 12, 1, "", "getsizeof"], [352, 12, 1, "", "getswitchinterval"], [352, 12, 1, "", "gettrace"], [352, 12, 1, "", "getunicodeinternedsize"], [352, 12, 1, "", "getwindowsversion"], [352, 9, 1, "", "hash_info"], [352, 9, 1, "", "hexversion"], [352, 9, 1, "", "implementation"], [352, 9, 1, "", "int_info"], [352, 12, 1, "", "intern"], [352, 12, 1, "", "is_finalizing"], [352, 12, 1, "", "is_stack_trampoline_active"], [352, 9, 1, "", "last_exc"], [352, 9, 1, "", "last_traceback"], [352, 9, 1, "", "last_type"], [352, 9, 1, "", "last_value"], [352, 9, 1, "", "maxsize"], [352, 9, 1, "", "maxunicode"], [352, 9, 1, "", "meta_path"], [352, 9, 1, "", "modules"], [353, 10, 0, "-", "monitoring"], [352, 9, 1, "", "orig_argv"], [352, 9, 1, "", "path"], [352, 9, 1, "", "path_hooks"], [352, 9, 1, "", "path_importer_cache"], [352, 9, 1, "", "platform"], [352, 9, 1, "", "platlibdir"], [352, 9, 1, "", "prefix"], [352, 9, 1, "", "ps1"], [352, 9, 1, "", "ps2"], [352, 9, 1, "", "pycache_prefix"], [352, 12, 1, "", "set_asyncgen_hooks"], [352, 12, 1, "", "set_coroutine_origin_tracking_depth"], [352, 12, 1, "", "set_int_max_str_digits"], [352, 12, 1, "", "setdlopenflags"], [352, 12, 1, "", "setprofile"], [352, 12, 1, "", "setrecursionlimit"], [352, 12, 1, "", "setswitchinterval"], [352, 12, 1, "", "settrace"], [352, 9, 1, "", "stderr"], [352, 9, 1, "", "stdin"], [352, 9, 1, "", "stdlib_module_names"], [352, 9, 1, "", "stdout"], [352, 9, 1, "", "thread_info"], [352, 9, 1, "", "tracebacklimit"], [352, 12, 1, "", "unraisablehook"], [352, 9, 1, "", "version"], [352, 9, 1, "", "version_info"], [352, 9, 1, "", "warnoptions"], [352, 9, 1, "", "winver"]], "sys._emscripten_info": [[352, 7, 1, "", "emscripten_version"], [352, 7, 1, "", "pthreads"], [352, 7, 1, "", "runtime"], [352, 7, 1, "", "shared_memory"]], "sys.flags": [[352, 7, 1, "", "bytes_warning"], [352, 7, 1, "", "debug"], [352, 7, 1, "", "dev_mode"], [352, 7, 1, "", "dont_write_bytecode"], [352, 7, 1, "", "hash_randomization"], [352, 7, 1, "", "ignore_environment"], [352, 7, 1, "", "inspect"], [352, 7, 1, "", "int_max_str_digits"], [352, 7, 1, "", "interactive"], [352, 7, 1, "", "isolated"], [352, 7, 1, "", "no_site"], [352, 7, 1, "", "no_user_site"], [352, 7, 1, "", "optimize"], [352, 7, 1, "", "quiet"], [352, 7, 1, "", "safe_path"], [352, 7, 1, "", "utf8_mode"], [352, 7, 1, "", "verbose"], [352, 7, 1, "", "warn_default_encoding"]], "sys.float_info": [[352, 7, 1, "", "dig"], [352, 7, 1, "", "epsilon"], [352, 7, 1, "", "mant_dig"], [352, 7, 1, "", "max"], [352, 7, 1, "", "max_10_exp"], [352, 7, 1, "", "max_exp"], [352, 7, 1, "", "min"], [352, 7, 1, "", "min_10_exp"], [352, 7, 1, "", "min_exp"], [352, 7, 1, "", "radix"], [352, 7, 1, "", "rounds"]], "sys.hash_info": [[352, 7, 1, "", "algorithm"], [352, 7, 1, "", "hash_bits"], [352, 7, 1, "", "imag"], [352, 7, 1, "", "inf"], [352, 7, 1, "", "modulus"], [352, 7, 1, "", "nan"], [352, 7, 1, "", "seed_bits"], [352, 7, 1, "", "width"]], "sys.int_info": [[352, 7, 1, "", "bits_per_digit"], [352, 7, 1, "", "default_max_str_digits"], [352, 7, 1, "", "sizeof_digit"], [352, 7, 1, "", "str_digits_check_threshold"]], "sys.monitoring": [[353, 9, 1, "", "DISABLE"], [353, 9, 1, "", "MISSING"], [353, 12, 1, "", "free_tool_id"], [353, 12, 1, "", "get_events"], [353, 12, 1, "", "get_local_events"], [353, 12, 1, "", "get_tool"], [353, 12, 1, "", "register_callback"], [353, 12, 1, "", "restart_events"], [353, 12, 1, "", "set_events"], [353, 12, 1, "", "set_local_events"], [353, 12, 1, "", "use_tool_id"]], "sys.thread_info": [[352, 7, 1, "", "lock"], [352, 7, 1, "", "name"], [352, 7, 1, "", "version"]], "sysconfig": [[355, 12, 1, "", "_get_preferred_schemes"], [355, 12, 1, "", "get_config_h_filename"], [355, 12, 1, "", "get_config_var"], [355, 12, 1, "", "get_config_vars"], [355, 12, 1, "", "get_default_scheme"], [355, 12, 1, "", "get_makefile_filename"], [355, 12, 1, "", "get_path"], [355, 12, 1, "", "get_path_names"], [355, 12, 1, "", "get_paths"], [355, 12, 1, "", "get_platform"], [355, 12, 1, "", "get_preferred_scheme"], [355, 12, 1, "", "get_python_version"], [355, 12, 1, "", "get_scheme_names"], [355, 12, 1, "", "is_python_build"], [355, 12, 1, "", "parse_config_h"]], "syslog": [[356, 12, 1, "", "closelog"], [356, 12, 1, "", "openlog"], [356, 12, 1, "", "setlogmask"], [356, 12, 1, "", "syslog"]], "tabnanny": [[357, 6, 1, "", "NannyNag"], [357, 12, 1, "", "check"], [357, 9, 1, "", "filename_only"], [357, 12, 1, "", "process_tokens"], [357, 9, 1, "", "verbose"]], "tarfile": [[358, 9, 1, "", "AREGTYPE"], [358, 6, 1, "", "AbsoluteLinkError"], [358, 6, 1, "", "AbsolutePathError"], [358, 9, 1, "", "BLKTYPE"], [358, 9, 1, "", "CHRTYPE"], [358, 9, 1, "", "CONTTYPE"], [358, 6, 1, "", "CompressionError"], [358, 9, 1, "", "DEFAULT_FORMAT"], [358, 9, 1, "", "DIRTYPE"], [358, 9, 1, "", "ENCODING"], [358, 6, 1, "", "ExtractError"], [358, 9, 1, "", "FIFOTYPE"], [358, 6, 1, "", "FilterError"], [358, 9, 1, "", "GNUTYPE_LONGLINK"], [358, 9, 1, "", "GNUTYPE_LONGNAME"], [358, 9, 1, "", "GNUTYPE_SPARSE"], [358, 9, 1, "", "GNU_FORMAT"], [358, 6, 1, "", "HeaderError"], [358, 9, 1, "", "LNKTYPE"], [358, 6, 1, "", "LinkOutsideDestinationError"], [358, 6, 1, "", "OutsideDestinationError"], [358, 9, 1, "", "PAX_FORMAT"], [358, 9, 1, "", "REGTYPE"], [358, 6, 1, "", "ReadError"], [358, 9, 1, "", "SYMTYPE"], [358, 6, 1, "", "SpecialFileError"], [358, 6, 1, "", "StreamError"], [358, 6, 1, "", "TarError"], [358, 11, 1, "", "TarFile"], [358, 11, 1, "", "TarInfo"], [358, 9, 1, "", "USTAR_FORMAT"], [358, 12, 1, "", "data_filter"], [358, 12, 1, "", "fully_trusted_filter"], [358, 12, 1, "", "is_tarfile"], [358, 12, 1, "", "open"], [358, 12, 1, "", "tar_filter"], [358, 14, 1, "cmdoption-tarfile-create", "--create"], [358, 14, 1, "cmdoption-tarfile-extract", "--extract"], [358, 14, 1, "cmdoption-tarfile-filter", "--filter"], [358, 14, 1, "cmdoption-tarfile-list", "--list"], [358, 14, 1, "cmdoption-tarfile-test", "--test"], [358, 14, 1, "cmdoption-tarfile-v", "--verbose"], [358, 14, 1, "cmdoption-tarfile-c", "-c"], [358, 14, 1, "cmdoption-tarfile-e", "-e"], [358, 14, 1, "cmdoption-tarfile-l", "-l"], [358, 14, 1, "cmdoption-tarfile-t", "-t"], [358, 14, 1, "cmdoption-tarfile-v", "-v"]], "tarfile.FilterError": [[358, 7, 1, "", "tarinfo"]], "tarfile.TarFile": [[358, 8, 1, "", "add"], [358, 8, 1, "", "addfile"], [358, 8, 1, "", "close"], [358, 7, 1, "", "errorlevel"], [358, 8, 1, "", "extract"], [358, 8, 1, "", "extractall"], [358, 8, 1, "", "extractfile"], [358, 7, 1, "", "extraction_filter"], [358, 8, 1, "", "getmember"], [358, 8, 1, "", "getmembers"], [358, 8, 1, "", "getnames"], [358, 8, 1, "", "gettarinfo"], [358, 8, 1, "", "list"], [358, 8, 1, "", "next"], [358, 8, 1, "", "open"], [358, 7, 1, "", "pax_headers"]], "tarfile.TarInfo": [[358, 7, 1, "", "chksum"], [358, 7, 1, "", "devmajor"], [358, 7, 1, "", "devminor"], [358, 8, 1, "", "frombuf"], [358, 8, 1, "", "fromtarfile"], [358, 7, 1, "", "gid"], [358, 7, 1, "", "gname"], [358, 8, 1, "", "isblk"], [358, 8, 1, "", "ischr"], [358, 8, 1, "", "isdev"], [358, 8, 1, "", "isdir"], [358, 8, 1, "", "isfifo"], [358, 8, 1, "", "isfile"], [358, 8, 1, "", "islnk"], [358, 8, 1, "", "isreg"], [358, 8, 1, "", "issym"], [358, 7, 1, "", "linkname"], [358, 7, 1, "", "mode"], [358, 7, 1, "", "mtime"], [358, 7, 1, "", "name"], [358, 7, 1, "", "offset"], [358, 7, 1, "", "offset_data"], [358, 7, 1, "", "pax_headers"], [358, 8, 1, "", "replace"], [358, 7, 1, "", "size"], [358, 7, 1, "", "sparse"], [358, 8, 1, "", "tobuf"], [358, 7, 1, "", "type"], [358, 7, 1, "", "uid"], [358, 7, 1, "", "uname"]], "telnetlib": [[359, 11, 1, "", "Telnet"]], "telnetlib.Telnet": [[359, 8, 1, "", "close"], [359, 8, 1, "", "expect"], [359, 8, 1, "", "fileno"], [359, 8, 1, "", "get_socket"], [359, 8, 1, "", "interact"], [359, 8, 1, "", "msg"], [359, 8, 1, "", "mt_interact"], [359, 8, 1, "", "open"], [359, 8, 1, "", "read_all"], [359, 8, 1, "", "read_eager"], [359, 8, 1, "", "read_lazy"], [359, 8, 1, "", "read_sb_data"], [359, 8, 1, "", "read_some"], [359, 8, 1, "", "read_until"], [359, 8, 1, "", "read_very_eager"], [359, 8, 1, "", "read_very_lazy"], [359, 8, 1, "", "set_debuglevel"], [359, 8, 1, "", "set_option_negotiation_callback"], [359, 8, 1, "", "write"]], "tempfile": [[360, 12, 1, "", "NamedTemporaryFile"], [360, 11, 1, "", "SpooledTemporaryFile"], [360, 11, 1, "", "TemporaryDirectory"], [360, 12, 1, "", "TemporaryFile"], [360, 12, 1, "", "gettempdir"], [360, 12, 1, "", "gettempdirb"], [360, 12, 1, "", "gettempprefix"], [360, 12, 1, "", "gettempprefixb"], [360, 12, 1, "", "mkdtemp"], [360, 12, 1, "", "mkstemp"], [360, 12, 1, "", "mktemp"], [360, 9, 1, "", "tempdir"]], "tempfile.SpooledTemporaryFile": [[360, 8, 1, "", "rollover"]], "tempfile.TemporaryDirectory": [[360, 8, 1, "", "cleanup"], [360, 7, 1, "", "name"]], "termios": [[361, 9, 1, "", "TCSADRAIN"], [361, 9, 1, "", "TCSAFLUSH"], [361, 9, 1, "", "TCSANOW"], [361, 12, 1, "", "tcdrain"], [361, 12, 1, "", "tcflow"], [361, 12, 1, "", "tcflush"], [361, 12, 1, "", "tcgetattr"], [361, 12, 1, "", "tcgetwinsize"], [361, 12, 1, "", "tcsendbreak"], [361, 12, 1, "", "tcsetattr"], [361, 12, 1, "", "tcsetwinsize"]], "test": [[362, 10, 0, "-", "regrtest"], [362, 10, 0, "-", "support"]], "test.support": [[362, 9, 1, "", "ALWAYS_EQ"], [362, 9, 1, "", "HAVE_DOCSTRINGS"], [362, 9, 1, "", "INTERNET_TIMEOUT"], [362, 9, 1, "", "LARGEST"], [362, 9, 1, "", "LONG_TIMEOUT"], [362, 9, 1, "", "LOOPBACK_TIMEOUT"], [362, 9, 1, "", "MAX_Py_ssize_t"], [362, 9, 1, "", "MISSING_C_DOCSTRINGS"], [362, 11, 1, "", "Matcher"], [362, 9, 1, "", "NEVER_EQ"], [362, 9, 1, "", "PGO"], [362, 9, 1, "", "PIPE_MAX_SIZE"], [362, 9, 1, "", "Py_DEBUG"], [362, 6, 1, "", "ResourceDenied"], [362, 9, 1, "", "SHORT_TIMEOUT"], [362, 9, 1, "", "SMALLEST"], [362, 9, 1, "", "SOCK_MAX_SIZE"], [362, 11, 1, "", "SaveSignals"], [362, 11, 1, "", "SuppressCrashReport"], [362, 9, 1, "", "TEST_DATA_DIR"], [362, 9, 1, "", "TEST_HOME_DIR"], [362, 9, 1, "", "TEST_HTTP_URL"], [362, 9, 1, "", "TEST_SUPPORT_DIR"], [362, 6, 1, "", "TestFailed"], [362, 12, 1, "", "adjust_int_max_str_digits"], [362, 12, 1, "", "anticipate_failure"], [362, 12, 1, "", "args_from_interpreter_flags"], [362, 12, 1, "", "bigaddrspacetest"], [362, 12, 1, "", "bigmemtest"], [362, 12, 1, "", "busy_retry"], [362, 10, 0, "-", "bytecode_helper"], [362, 12, 1, "", "calcobjsize"], [362, 12, 1, "", "calcvobjsize"], [362, 12, 1, "", "captured_stderr"], [362, 12, 1, "", "captured_stdin"], [362, 12, 1, "", "captured_stdout"], [362, 12, 1, "", "catch_unraisable_exception"], [362, 12, 1, "", "check__all__"], [362, 12, 1, "", "check_disallow_instantiation"], [362, 12, 1, "", "check_free_after_iterating"], [362, 12, 1, "", "check_impl_detail"], [362, 12, 1, "", "check_syntax_error"], [362, 12, 1, "", "checksizeof"], [362, 12, 1, "", "cpython_only"], [362, 12, 1, "", "detect_api_mismatch"], [362, 12, 1, "", "disable_faulthandler"], [362, 12, 1, "", "disable_gc"], [362, 12, 1, "", "findfile"], [362, 12, 1, "", "flush_std_streams"], [362, 12, 1, "", "gc_collect"], [362, 12, 1, "", "get_attribute"], [362, 12, 1, "", "get_original_stdout"], [362, 12, 1, "", "get_pagesize"], [362, 12, 1, "", "impl_detail"], [362, 10, 0, "-", "import_helper"], [362, 9, 1, "", "is_android"], [362, 9, 1, "", "is_jython"], [362, 12, 1, "", "is_resource_enabled"], [362, 12, 1, "", "load_package_tests"], [362, 9, 1, "", "max_memuse"], [362, 12, 1, "", "missing_compiler_executable"], [362, 12, 1, "", "no_tracing"], [362, 12, 1, "", "open_urlresource"], [362, 12, 1, "", "optim_args_from_interpreter_flags"], [362, 10, 0, "-", "os_helper"], [362, 12, 1, "", "patch"], [362, 12, 1, "", "print_warning"], [362, 12, 1, "", "python_is_optimized"], [362, 9, 1, "", "real_max_memuse"], [362, 12, 1, "", "reap_children"], [362, 12, 1, "", "record_original_stdout"], [362, 12, 1, "", "refcount_test"], [362, 12, 1, "", "requires"], [362, 12, 1, "", "requires_IEEE_754"], [362, 12, 1, "", "requires_bz2"], [362, 12, 1, "", "requires_docstrings"], [362, 12, 1, "", "requires_freebsd_version"], [362, 12, 1, "", "requires_gzip"], [362, 12, 1, "", "requires_limited_api"], [362, 12, 1, "", "requires_linux_version"], [362, 12, 1, "", "requires_lzma"], [362, 12, 1, "", "requires_mac_version"], [362, 12, 1, "", "requires_resource"], [362, 12, 1, "", "requires_zlib"], [362, 12, 1, "", "run_in_subinterp"], [362, 12, 1, "", "run_with_locale"], [362, 12, 1, "", "run_with_tz"], [362, 10, 0, "-", "script_helper"], [362, 12, 1, "", "set_memlimit"], [362, 12, 1, "", "setswitchinterval"], [362, 12, 1, "", "skip_if_broken_multiprocessing_synchronize"], [362, 12, 1, "", "sleeping_retry"], [362, 10, 0, "-", "socket_helper"], [362, 12, 1, "", "sortdict"], [362, 12, 1, "", "swap_attr"], [362, 12, 1, "", "swap_item"], [362, 12, 1, "", "system_must_validate_cert"], [362, 10, 0, "-", "threading_helper"], [362, 9, 1, "", "unix_shell"], [362, 9, 1, "", "verbose"], [362, 12, 1, "", "wait_process"], [362, 10, 0, "-", "warnings_helper"], [362, 12, 1, "", "with_pymalloc"]], "test.support.Matcher": [[362, 8, 1, "", "match_value"], [362, 8, 1, "", "matches"]], "test.support.SaveSignals": [[362, 8, 1, "", "restore"], [362, 8, 1, "", "save"]], "test.support.bytecode_helper": [[362, 11, 1, "", "BytecodeTestCase"]], "test.support.bytecode_helper.BytecodeTestCase": [[362, 8, 1, "", "assertInBytecode"], [362, 8, 1, "", "assertNotInBytecode"], [362, 8, 1, "", "get_disassembly_as_string"]], "test.support.import_helper": [[362, 11, 1, "", "CleanImport"], [362, 11, 1, "", "DirsOnSysPath"], [362, 12, 1, "", "forget"], [362, 12, 1, "", "import_fresh_module"], [362, 12, 1, "", "import_module"], [362, 12, 1, "", "make_legacy_pyc"], [362, 12, 1, "", "modules_cleanup"], [362, 12, 1, "", "modules_setup"], [362, 12, 1, "", "unload"]], "test.support.os_helper": [[362, 11, 1, "", "EnvironmentVarGuard"], [362, 9, 1, "", "FS_NONASCII"], [362, 11, 1, "", "FakePath"], [362, 9, 1, "", "SAVEDCWD"], [362, 9, 1, "", "TESTFN"], [362, 9, 1, "", "TESTFN_NONASCII"], [362, 9, 1, "", "TESTFN_UNDECODABLE"], [362, 9, 1, "", "TESTFN_UNENCODABLE"], [362, 9, 1, "", "TESTFN_UNICODE"], [362, 12, 1, "", "can_symlink"], [362, 12, 1, "", "can_xattr"], [362, 12, 1, "", "change_cwd"], [362, 12, 1, "", "create_empty_file"], [362, 12, 1, "", "fd_count"], [362, 12, 1, "", "fs_is_case_insensitive"], [362, 12, 1, "", "make_bad_fd"], [362, 12, 1, "", "rmdir"], [362, 12, 1, "", "rmtree"], [362, 12, 1, "", "skip_unless_symlink"], [362, 12, 1, "", "skip_unless_xattr"], [362, 12, 1, "", "temp_cwd"], [362, 12, 1, "", "temp_dir"], [362, 12, 1, "", "temp_umask"], [362, 12, 1, "", "unlink"]], "test.support.os_helper.EnvironmentVarGuard": [[362, 8, 1, "", "set"], [362, 8, 1, "", "unset"]], "test.support.script_helper": [[362, 12, 1, "", "assert_python_failure"], [362, 12, 1, "", "assert_python_ok"], [362, 12, 1, "", "interpreter_requires_environment"], [362, 12, 1, "", "kill_python"], [362, 12, 1, "", "make_pkg"], [362, 12, 1, "", "make_script"], [362, 12, 1, "", "make_zip_pkg"], [362, 12, 1, "", "make_zip_script"], [362, 12, 1, "", "run_python_until_end"], [362, 12, 1, "", "spawn_python"]], "test.support.socket_helper": [[362, 9, 1, "", "IPV6_ENABLED"], [362, 12, 1, "", "bind_port"], [362, 12, 1, "", "bind_unix_socket"], [362, 12, 1, "", "find_unused_port"], [362, 12, 1, "", "skip_unless_bind_unix_socket"], [362, 12, 1, "", "transient_internet"]], "test.support.threading_helper": [[362, 12, 1, "", "catch_threading_exception"], [362, 12, 1, "", "join_thread"], [362, 12, 1, "", "reap_threads"], [362, 12, 1, "", "start_threads"], [362, 12, 1, "", "threading_cleanup"], [362, 12, 1, "", "threading_setup"], [362, 12, 1, "", "wait_threads_exit"]], "test.support.warnings_helper": [[362, 11, 1, "", "WarningsRecorder"], [362, 12, 1, "", "check_no_resource_warning"], [362, 12, 1, "", "check_syntax_warning"], [362, 12, 1, "", "check_warnings"], [362, 12, 1, "", "ignore_warnings"]], "textwrap": [[364, 11, 1, "", "TextWrapper"], [364, 12, 1, "", "dedent"], [364, 12, 1, "", "fill"], [364, 12, 1, "", "indent"], [364, 12, 1, "", "shorten"], [364, 12, 1, "", "wrap"]], "textwrap.TextWrapper": [[364, 7, 1, "", "break_long_words"], [364, 7, 1, "", "break_on_hyphens"], [364, 7, 1, "", "drop_whitespace"], [364, 7, 1, "", "expand_tabs"], [364, 8, 1, "", "fill"], [364, 7, 1, "", "fix_sentence_endings"], [364, 7, 1, "", "initial_indent"], [364, 7, 1, "", "max_lines"], [364, 7, 1, "", "placeholder"], [364, 7, 1, "", "replace_whitespace"], [364, 7, 1, "", "subsequent_indent"], [364, 7, 1, "", "tabsize"], [364, 7, 1, "", "width"], [364, 8, 1, "", "wrap"]], "threading": [[365, 11, 1, "", "Barrier"], [365, 11, 1, "", "BoundedSemaphore"], [365, 6, 1, "", "BrokenBarrierError"], [365, 11, 1, "", "Condition"], [365, 11, 1, "", "Event"], [365, 11, 1, "", "Lock"], [365, 11, 1, "", "RLock"], [365, 11, 1, "", "Semaphore"], [365, 9, 1, "", "TIMEOUT_MAX"], [365, 11, 1, "", "Thread"], [365, 11, 1, "", "Timer"], [365, 9, 1, "", "__excepthook__"], [365, 12, 1, "", "active_count"], [365, 12, 1, "", "current_thread"], [365, 12, 1, "", "enumerate"], [365, 12, 1, "", "excepthook"], [365, 12, 1, "", "get_ident"], [365, 12, 1, "", "get_native_id"], [365, 12, 1, "", "getprofile"], [365, 12, 1, "", "gettrace"], [365, 11, 1, "", "local"], [365, 12, 1, "", "main_thread"], [365, 12, 1, "", "setprofile"], [365, 12, 1, "", "setprofile_all_threads"], [365, 12, 1, "", "settrace"], [365, 12, 1, "", "settrace_all_threads"], [365, 12, 1, "", "stack_size"]], "threading.Barrier": [[365, 8, 1, "", "abort"], [365, 7, 1, "", "broken"], [365, 7, 1, "", "n_waiting"], [365, 7, 1, "", "parties"], [365, 8, 1, "", "reset"], [365, 8, 1, "", "wait"]], "threading.Condition": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "notify"], [365, 8, 1, "", "notify_all"], [365, 8, 1, "", "release"], [365, 8, 1, "", "wait"], [365, 8, 1, "", "wait_for"]], "threading.Event": [[365, 8, 1, "", "clear"], [365, 8, 1, "", "is_set"], [365, 8, 1, "", "set"], [365, 8, 1, "", "wait"]], "threading.Lock": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "locked"], [365, 8, 1, "", "release"]], "threading.RLock": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "release"]], "threading.Semaphore": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "release"]], "threading.Thread": [[365, 7, 1, "", "daemon"], [365, 8, 1, "", "getName"], [365, 7, 1, "", "ident"], [365, 8, 1, "", "isDaemon"], [365, 8, 1, "", "is_alive"], [365, 8, 1, "", "join"], [365, 7, 1, "", "name"], [365, 7, 1, "", "native_id"], [365, 8, 1, "", "run"], [365, 8, 1, "", "setDaemon"], [365, 8, 1, "", "setName"], [365, 8, 1, "", "start"]], "threading.Timer": [[365, 8, 1, "", "cancel"]], "time": [[366, 9, 1, "", "CLOCK_BOOTTIME"], [366, 9, 1, "", "CLOCK_HIGHRES"], [366, 9, 1, "", "CLOCK_MONOTONIC"], [366, 9, 1, "", "CLOCK_MONOTONIC_RAW"], [366, 9, 1, "", "CLOCK_PROCESS_CPUTIME_ID"], [366, 9, 1, "", "CLOCK_PROF"], [366, 9, 1, "", "CLOCK_REALTIME"], [366, 9, 1, "", "CLOCK_TAI"], [366, 9, 1, "", "CLOCK_THREAD_CPUTIME_ID"], [366, 9, 1, "", "CLOCK_UPTIME"], [366, 9, 1, "", "CLOCK_UPTIME_RAW"], [366, 9, 1, "", "altzone"], [366, 12, 1, "", "asctime"], [366, 12, 1, "", "clock_getres"], [366, 12, 1, "", "clock_gettime"], [366, 12, 1, "", "clock_gettime_ns"], [366, 12, 1, "", "clock_settime"], [366, 12, 1, "", "clock_settime_ns"], [366, 12, 1, "", "ctime"], [366, 9, 1, "", "daylight"], [366, 12, 1, "", "get_clock_info"], [366, 12, 1, "", "gmtime"], [366, 12, 1, "", "localtime"], [366, 12, 1, "", "mktime"], [366, 12, 1, "", "monotonic"], [366, 12, 1, "", "monotonic_ns"], [366, 12, 1, "", "perf_counter"], [366, 12, 1, "", "perf_counter_ns"], [366, 12, 1, "", "process_time"], [366, 12, 1, "", "process_time_ns"], [366, 12, 1, "", "pthread_getcpuclockid"], [366, 12, 1, "", "sleep"], [366, 12, 1, "", "strftime"], [366, 12, 1, "", "strptime"], [366, 11, 1, "", "struct_time"], [366, 12, 1, "", "thread_time"], [366, 12, 1, "", "thread_time_ns"], [366, 12, 1, "", "time"], [366, 12, 1, "", "time_ns"], [366, 9, 1, "", "timezone"], [366, 9, 1, "", "tzname"], [366, 12, 1, "", "tzset"]], "time.struct_time": [[366, 7, 1, "", "tm_day"], [366, 7, 1, "", "tm_gmtoff"], [366, 7, 1, "", "tm_hour"], [366, 7, 1, "", "tm_isdst"], [366, 7, 1, "", "tm_min"], [366, 7, 1, "", "tm_mon"], [366, 7, 1, "", "tm_sec"], [366, 7, 1, "", "tm_wday"], [366, 7, 1, "", "tm_yday"], [366, 7, 1, "", "tm_year"], [366, 7, 1, "", "tm_zone"]], "timeit": [[367, 11, 1, "", "Timer"], [367, 12, 1, "", "default_timer"], [367, 12, 1, "", "repeat"], [367, 12, 1, "", "timeit"], [367, 14, 1, "cmdoption-timeit-h", "--help"], [367, 14, 1, "cmdoption-timeit-n", "--number"], [367, 14, 1, "cmdoption-timeit-p", "--process"], [367, 14, 1, "cmdoption-timeit-r", "--repeat"], [367, 14, 1, "cmdoption-timeit-s", "--setup"], [367, 14, 1, "cmdoption-timeit-u", "--unit"], [367, 14, 1, "cmdoption-timeit-v", "--verbose"], [367, 14, 1, "cmdoption-timeit-h", "-h"], [367, 14, 1, "cmdoption-timeit-n", "-n"], [367, 14, 1, "cmdoption-timeit-p", "-p"], [367, 14, 1, "cmdoption-timeit-r", "-r"], [367, 14, 1, "cmdoption-timeit-s", "-s"], [367, 14, 1, "cmdoption-timeit-u", "-u"], [367, 14, 1, "cmdoption-timeit-v", "-v"]], "timeit.Timer": [[367, 8, 1, "", "autorange"], [367, 8, 1, "", "print_exc"], [367, 8, 1, "", "repeat"], [367, 8, 1, "", "timeit"]], "tkinter": [[369, 12, 1, "", "Tcl"], [369, 11, 1, "", "Tk"], [370, 10, 0, "-", "colorchooser"], [189, 10, 0, "-", "commondialog"], [371, 10, 0, "-", "dnd"], [189, 10, 0, "-", "filedialog"], [372, 10, 0, "-", "font"], [373, 10, 0, "-", "messagebox"], [374, 10, 0, "-", "scrolledtext"], [189, 10, 0, "-", "simpledialog"], [375, 10, 0, "-", "tix"], [376, 10, 0, "-", "ttk"]], "tkinter.Tk": [[369, 7, 1, "", "children"], [369, 7, 1, "", "master"], [369, 7, 1, "", "tk"]], "tkinter.colorchooser": [[370, 11, 1, "", "Chooser"], [370, 12, 1, "", "askcolor"]], "tkinter.commondialog": [[189, 11, 1, "", "Dialog"]], "tkinter.commondialog.Dialog": [[189, 8, 1, "", "show"]], "tkinter.dnd": [[371, 11, 1, "", "DndHandler"], [371, 12, 1, "", "dnd_start"]], "tkinter.dnd.DndHandler": [[371, 8, 1, "", "cancel"], [371, 8, 1, "", "finish"], [371, 8, 1, "", "on_motion"], [371, 8, 1, "", "on_release"]], "tkinter.filedialog": [[189, 11, 1, "", "Directory"], [189, 11, 1, "", "FileDialog"], [189, 11, 1, "", "LoadFileDialog"], [189, 11, 1, "", "Open"], [189, 11, 1, "", "SaveAs"], [189, 11, 1, "", "SaveFileDialog"], [189, 12, 1, "", "askdirectory"], [189, 12, 1, "", "askopenfile"], [189, 12, 1, "", "askopenfilename"], [189, 12, 1, "", "askopenfilenames"], [189, 12, 1, "", "askopenfiles"], [189, 12, 1, "", "asksaveasfile"], [189, 12, 1, "", "asksaveasfilename"]], "tkinter.filedialog.FileDialog": [[189, 8, 1, "", "cancel_command"], [189, 8, 1, "", "dirs_double_event"], [189, 8, 1, "", "dirs_select_event"], [189, 8, 1, "", "files_double_event"], [189, 8, 1, "", "files_select_event"], [189, 8, 1, "", "filter_command"], [189, 8, 1, "", "get_filter"], [189, 8, 1, "", "get_selection"], [189, 8, 1, "", "go"], [189, 8, 1, "", "ok_event"], [189, 8, 1, "", "quit"], [189, 8, 1, "", "set_filter"], [189, 8, 1, "", "set_selection"]], "tkinter.filedialog.LoadFileDialog": [[189, 8, 1, "", "ok_command"]], "tkinter.filedialog.SaveFileDialog": [[189, 8, 1, "", "ok_command"]], "tkinter.font": [[372, 9, 1, "", "BOLD"], [372, 11, 1, "", "Font"], [372, 9, 1, "", "ITALIC"], [372, 9, 1, "", "NORMAL"], [372, 9, 1, "", "ROMAN"], [372, 12, 1, "", "families"], [372, 12, 1, "", "names"], [372, 12, 1, "", "nametofont"]], "tkinter.font.Font": [[372, 8, 1, "", "actual"], [372, 8, 1, "", "cget"], [372, 8, 1, "", "config"], [372, 8, 1, "", "copy"], [372, 8, 1, "", "measure"], [372, 8, 1, "", "metrics"]], "tkinter.messagebox": [[373, 9, 1, "", "ABORT"], [373, 9, 1, "", "ABORTRETRYIGNORE"], [373, 9, 1, "", "CANCEL"], [373, 9, 1, "", "ERROR"], [373, 9, 1, "", "IGNORE"], [373, 9, 1, "", "INFO"], [373, 11, 1, "", "Message"], [373, 9, 1, "", "NO"], [373, 9, 1, "", "OK"], [373, 9, 1, "", "OKCANCEL"], [373, 9, 1, "", "QUESTION"], [373, 9, 1, "", "RETRY"], [373, 9, 1, "", "RETRYCANCEL"], [373, 9, 1, "", "WARNING"], [373, 9, 1, "", "YES"], [373, 9, 1, "", "YESNO"], [373, 9, 1, "", "YESNOCANCEL"], [373, 12, 1, "", "askokcancel"], [373, 12, 1, "", "askquestion"], [373, 12, 1, "", "askretrycancel"], [373, 12, 1, "", "askyesno"], [373, 12, 1, "", "askyesnocancel"], [373, 12, 1, "", "showerror"], [373, 12, 1, "", "showinfo"], [373, 12, 1, "", "showwarning"]], "tkinter.messagebox.Message": [[373, 8, 1, "", "show"]], "tkinter.scrolledtext": [[374, 11, 1, "", "ScrolledText"]], "tkinter.scrolledtext.ScrolledText": [[374, 7, 1, "", "frame"], [374, 7, 1, "", "vbar"]], "tkinter.simpledialog": [[189, 11, 1, "", "Dialog"], [189, 12, 1, "", "askfloat"], [189, 12, 1, "", "askinteger"], [189, 12, 1, "", "askstring"]], "tkinter.simpledialog.Dialog": [[189, 8, 1, "", "body"], [189, 8, 1, "", "buttonbox"]], "tkinter.tix": [[375, 11, 1, "", "Balloon"], [375, 11, 1, "", "ButtonBox"], [375, 11, 1, "", "CheckList"], [375, 11, 1, "", "ComboBox"], [375, 11, 1, "", "Control"], [375, 11, 1, "", "DirList"], [375, 11, 1, "", "DirSelectBox"], [375, 11, 1, "", "DirSelectDialog"], [375, 11, 1, "", "DirTree"], [375, 11, 1, "", "ExFileSelectBox"], [375, 11, 1, "", "FileEntry"], [375, 11, 1, "", "FileSelectBox"], [375, 11, 1, "", "Form"], [375, 11, 1, "", "HList"], [375, 11, 1, "", "InputOnly"], [375, 11, 1, "", "LabelEntry"], [375, 11, 1, "", "LabelFrame"], [375, 11, 1, "", "ListNoteBook"], [375, 11, 1, "", "Meter"], [375, 11, 1, "", "NoteBook"], [375, 11, 1, "", "OptionMenu"], [375, 11, 1, "", "PanedWindow"], [375, 11, 1, "", "PopupMenu"], [375, 11, 1, "", "Select"], [375, 11, 1, "", "StdButtonBox"], [375, 11, 1, "", "TList"], [375, 11, 1, "", "Tk"], [375, 11, 1, "", "Tree"], [375, 11, 1, "", "tixCommand"]], "tkinter.tix.tixCommand": [[375, 8, 1, "", "tix_addbitmapdir"], [375, 8, 1, "", "tix_cget"], [375, 8, 1, "", "tix_configure"], [375, 8, 1, "", "tix_filedialog"], [375, 8, 1, "", "tix_getbitmap"], [375, 8, 1, "", "tix_getimage"], [375, 8, 1, "", "tix_option_get"], [375, 8, 1, "", "tix_resetoptions"]], "tkinter.ttk": [[376, 11, 1, "", "Combobox"], [376, 11, 1, "", "Notebook"], [376, 11, 1, "", "Progressbar"], [376, 11, 1, "", "Spinbox"], [376, 11, 1, "", "Style"], [376, 11, 1, "", "Treeview"], [376, 11, 1, "", "Widget"]], "tkinter.ttk.Combobox": [[376, 8, 1, "", "current"], [376, 8, 1, "", "get"], [376, 8, 1, "", "set"]], "tkinter.ttk.Notebook": [[376, 8, 1, "", "add"], [376, 8, 1, "", "enable_traversal"], [376, 8, 1, "", "forget"], [376, 8, 1, "", "hide"], [376, 8, 1, "", "identify"], [376, 8, 1, "", "index"], [376, 8, 1, "", "insert"], [376, 8, 1, "", "select"], [376, 8, 1, "", "tab"], [376, 8, 1, "", "tabs"]], "tkinter.ttk.Progressbar": [[376, 8, 1, "", "start"], [376, 8, 1, "", "step"], [376, 8, 1, "", "stop"]], "tkinter.ttk.Spinbox": [[376, 8, 1, "", "get"], [376, 8, 1, "", "set"]], "tkinter.ttk.Style": [[376, 8, 1, "", "configure"], [376, 8, 1, "", "element_create"], [376, 8, 1, "", "element_names"], [376, 8, 1, "", "element_options"], [376, 8, 1, "", "layout"], [376, 8, 1, "", "lookup"], [376, 8, 1, "", "map"], [376, 8, 1, "", "theme_create"], [376, 8, 1, "", "theme_names"], [376, 8, 1, "", "theme_settings"], [376, 8, 1, "", "theme_use"]], "tkinter.ttk.Treeview": [[376, 8, 1, "", "bbox"], [376, 8, 1, "", "column"], [376, 8, 1, "", "delete"], [376, 8, 1, "", "detach"], [376, 8, 1, "", "exists"], [376, 8, 1, "", "focus"], [376, 8, 1, "", "get_children"], [376, 8, 1, "", "heading"], [376, 8, 1, "", "identify"], [376, 8, 1, "", "identify_column"], [376, 8, 1, "", "identify_element"], [376, 8, 1, "", "identify_region"], [376, 8, 1, "", "identify_row"], [376, 8, 1, "", "index"], [376, 8, 1, "", "insert"], [376, 8, 1, "", "item"], [376, 8, 1, "", "move"], [376, 8, 1, "", "next"], [376, 8, 1, "", "parent"], [376, 8, 1, "", "prev"], [376, 8, 1, "", "reattach"], [376, 8, 1, "", "see"], [376, 8, 1, "", "selection"], [376, 8, 1, "", "selection_add"], [376, 8, 1, "", "selection_remove"], [376, 8, 1, "", "selection_set"], [376, 8, 1, "", "selection_toggle"], [376, 8, 1, "", "set"], [376, 8, 1, "", "set_children"], [376, 8, 1, "", "tag_bind"], [376, 8, 1, "", "tag_configure"], [376, 8, 1, "", "tag_has"], [376, 8, 1, "", "xview"], [376, 8, 1, "", "yview"]], "tkinter.ttk.Widget": [[376, 8, 1, "", "identify"], [376, 8, 1, "", "instate"], [376, 8, 1, "", "state"]], "token": [[377, 9, 1, "", "AMPER"], [377, 9, 1, "", "AMPEREQUAL"], [377, 9, 1, "", "ASYNC"], [377, 9, 1, "", "AT"], [377, 9, 1, "", "ATEQUAL"], [377, 9, 1, "", "AWAIT"], [377, 9, 1, "", "CIRCUMFLEX"], [377, 9, 1, "", "CIRCUMFLEXEQUAL"], [377, 9, 1, "", "COLON"], [377, 9, 1, "", "COLONEQUAL"], [377, 9, 1, "", "COMMA"], [377, 9, 1, "", "COMMENT"], [377, 9, 1, "", "DEDENT"], [377, 9, 1, "", "DOT"], [377, 9, 1, "", "DOUBLESLASH"], [377, 9, 1, "", "DOUBLESLASHEQUAL"], [377, 9, 1, "", "DOUBLESTAR"], [377, 9, 1, "", "DOUBLESTAREQUAL"], [377, 9, 1, "", "ELLIPSIS"], [377, 9, 1, "", "ENCODING"], [377, 9, 1, "", "ENDMARKER"], [377, 9, 1, "", "EQEQUAL"], [377, 9, 1, "", "EQUAL"], [377, 9, 1, "", "ERRORTOKEN"], [377, 9, 1, "", "EXCLAMATION"], [377, 9, 1, "", "FSTRING_END"], [377, 9, 1, "", "FSTRING_MIDDLE"], [377, 9, 1, "", "FSTRING_START"], [377, 9, 1, "", "GREATER"], [377, 9, 1, "", "GREATEREQUAL"], [377, 9, 1, "", "INDENT"], [377, 12, 1, "", "ISEOF"], [377, 12, 1, "", "ISNONTERMINAL"], [377, 12, 1, "", "ISTERMINAL"], [377, 9, 1, "", "LBRACE"], [377, 9, 1, "", "LEFTSHIFT"], [377, 9, 1, "", "LEFTSHIFTEQUAL"], [377, 9, 1, "", "LESS"], [377, 9, 1, "", "LESSEQUAL"], [377, 9, 1, "", "LPAR"], [377, 9, 1, "", "LSQB"], [377, 9, 1, "", "MINEQUAL"], [377, 9, 1, "", "MINUS"], [377, 9, 1, "", "NAME"], [377, 9, 1, "", "NEWLINE"], [377, 9, 1, "", "NL"], [377, 9, 1, "", "NOTEQUAL"], [377, 9, 1, "", "NT_OFFSET"], [377, 9, 1, "", "NUMBER"], [377, 9, 1, "", "N_TOKENS"], [377, 9, 1, "", "OP"], [377, 9, 1, "", "PERCENT"], [377, 9, 1, "", "PERCENTEQUAL"], [377, 9, 1, "", "PLUS"], [377, 9, 1, "", "PLUSEQUAL"], [377, 9, 1, "", "RARROW"], [377, 9, 1, "", "RBRACE"], [377, 9, 1, "", "RIGHTSHIFT"], [377, 9, 1, "", "RIGHTSHIFTEQUAL"], [377, 9, 1, "", "RPAR"], [377, 9, 1, "", "RSQB"], [377, 9, 1, "", "SEMI"], [377, 9, 1, "", "SLASH"], [377, 9, 1, "", "SLASHEQUAL"], [377, 9, 1, "", "SOFT_KEYWORD"], [377, 9, 1, "", "STAR"], [377, 9, 1, "", "STAREQUAL"], [377, 9, 1, "", "STRING"], [377, 9, 1, "", "TILDE"], [377, 9, 1, "", "TYPE_COMMENT"], [377, 9, 1, "", "TYPE_IGNORE"], [377, 9, 1, "", "VBAR"], [377, 9, 1, "", "VBAREQUAL"], [377, 9, 1, "", "tok_name"]], "tokenize": [[378, 6, 1, "", "TokenError"], [378, 12, 1, "", "detect_encoding"], [378, 12, 1, "", "generate_tokens"], [378, 12, 1, "", "open"], [378, 12, 1, "", "tokenize"], [378, 12, 1, "", "untokenize"], [378, 14, 1, "cmdoption-tokenize-e", "--exact"], [378, 14, 1, "cmdoption-tokenize-h", "--help"], [378, 14, 1, "cmdoption-tokenize-e", "-e"], [378, 14, 1, "cmdoption-tokenize-h", "-h"]], "tomllib": [[379, 6, 1, "", "TOMLDecodeError"], [379, 12, 1, "", "load"], [379, 12, 1, "", "loads"]], "trace": [[380, 11, 1, "", "CoverageResults"], [380, 11, 1, "", "Trace"], [380, 14, 1, "cmdoption-trace-c", "--count"], [380, 14, 1, "cmdoption-trace-C", "--coverdir"], [380, 14, 1, "cmdoption-trace-f", "--file"], [380, 14, 1, "cmdoption-trace-help", "--help"], [380, 14, 1, "cmdoption-trace-ignore-dir", "--ignore-dir"], [380, 14, 1, "cmdoption-trace-ignore-module", "--ignore-module"], [380, 14, 1, "cmdoption-trace-l", "--listfuncs"], [380, 14, 1, "cmdoption-trace-m", "--missing"], [380, 14, 1, "cmdoption-trace-R", "--no-report"], [380, 14, 1, "cmdoption-trace-r", "--report"], [380, 14, 1, "cmdoption-trace-s", "--summary"], [380, 14, 1, "cmdoption-trace-g", "--timing"], [380, 14, 1, "cmdoption-trace-t", "--trace"], [380, 14, 1, "cmdoption-trace-T", "--trackcalls"], [380, 14, 1, "cmdoption-trace-version", "--version"], [380, 14, 1, "cmdoption-trace-C", "-C"], [380, 14, 1, "cmdoption-trace-R", "-R"], [380, 14, 1, "cmdoption-trace-T", "-T"], [380, 14, 1, "cmdoption-trace-c", "-c"], [380, 14, 1, "cmdoption-trace-f", "-f"], [380, 14, 1, "cmdoption-trace-g", "-g"], [380, 14, 1, "cmdoption-trace-l", "-l"], [380, 14, 1, "cmdoption-trace-m", "-m"], [380, 14, 1, "cmdoption-trace-r", "-r"], [380, 14, 1, "cmdoption-trace-s", "-s"], [380, 14, 1, "cmdoption-trace-t", "-t"]], "trace.CoverageResults": [[380, 8, 1, "", "update"], [380, 8, 1, "", "write_results"]], "trace.Trace": [[380, 8, 1, "", "results"], [380, 8, 1, "", "run"], [380, 8, 1, "", "runctx"], [380, 8, 1, "", "runfunc"]], "traceback": [[381, 11, 1, "", "FrameSummary"], [381, 11, 1, "", "StackSummary"], [381, 11, 1, "", "TracebackException"], [381, 12, 1, "", "clear_frames"], [381, 12, 1, "", "extract_stack"], [381, 12, 1, "", "extract_tb"], [381, 12, 1, "", "format_exc"], [381, 12, 1, "", "format_exception"], [381, 12, 1, "", "format_exception_only"], [381, 12, 1, "", "format_list"], [381, 12, 1, "", "format_stack"], [381, 12, 1, "", "format_tb"], [381, 12, 1, "", "print_exc"], [381, 12, 1, "", "print_exception"], [381, 12, 1, "", "print_last"], [381, 12, 1, "", "print_stack"], [381, 12, 1, "", "print_tb"], [428, 7, 1, "", "tb_frame"], [428, 7, 1, "", "tb_lasti"], [428, 7, 1, "", "tb_lineno"], [428, 7, 1, "", "tb_next"], [381, 12, 1, "", "walk_stack"], [381, 12, 1, "", "walk_tb"]], "traceback.FrameSummary": [[381, 7, 1, "", "filename"], [381, 7, 1, "", "line"], [381, 7, 1, "", "lineno"], [381, 7, 1, "", "name"]], "traceback.StackSummary": [[381, 8, 1, "", "extract"], [381, 8, 1, "", "format"], [381, 8, 1, "", "format_frame_summary"], [381, 8, 1, "", "from_list"]], "traceback.TracebackException": [[381, 7, 1, "", "__cause__"], [381, 7, 1, "", "__context__"], [381, 7, 1, "", "__notes__"], [381, 7, 1, "", "__suppress_context__"], [381, 7, 1, "", "end_lineno"], [381, 7, 1, "", "end_offset"], [381, 7, 1, "", "exc_type"], [381, 7, 1, "", "exceptions"], [381, 7, 1, "", "filename"], [381, 8, 1, "", "format"], [381, 8, 1, "", "format_exception_only"], [381, 8, 1, "", "from_exception"], [381, 7, 1, "", "lineno"], [381, 7, 1, "", "msg"], [381, 7, 1, "", "offset"], [381, 8, 1, "", "print"], [381, 7, 1, "", "stack"], [381, 7, 1, "", "text"]], "tracemalloc": [[382, 11, 1, "", "DomainFilter"], [382, 11, 1, "", "Filter"], [382, 11, 1, "", "Frame"], [382, 11, 1, "", "Snapshot"], [382, 11, 1, "", "Statistic"], [382, 11, 1, "", "StatisticDiff"], [382, 11, 1, "", "Trace"], [382, 11, 1, "", "Traceback"], [382, 12, 1, "", "clear_traces"], [382, 12, 1, "", "get_object_traceback"], [382, 12, 1, "", "get_traceback_limit"], [382, 12, 1, "", "get_traced_memory"], [382, 12, 1, "", "get_tracemalloc_memory"], [382, 12, 1, "", "is_tracing"], [382, 12, 1, "", "reset_peak"], [382, 12, 1, "", "start"], [382, 12, 1, "", "stop"], [382, 12, 1, "", "take_snapshot"]], "tracemalloc.DomainFilter": [[382, 7, 1, "", "domain"], [382, 7, 1, "", "inclusive"]], "tracemalloc.Filter": [[382, 7, 1, "", "all_frames"], [382, 7, 1, "", "domain"], [382, 7, 1, "", "filename_pattern"], [382, 7, 1, "", "inclusive"], [382, 7, 1, "", "lineno"]], "tracemalloc.Frame": [[382, 7, 1, "", "filename"], [382, 7, 1, "", "lineno"]], "tracemalloc.Snapshot": [[382, 8, 1, "", "compare_to"], [382, 8, 1, "", "dump"], [382, 8, 1, "", "filter_traces"], [382, 8, 1, "", "load"], [382, 8, 1, "", "statistics"], [382, 7, 1, "", "traceback_limit"], [382, 7, 1, "", "traces"]], "tracemalloc.Statistic": [[382, 7, 1, "", "count"], [382, 7, 1, "", "size"], [382, 7, 1, "", "traceback"]], "tracemalloc.StatisticDiff": [[382, 7, 1, "", "count"], [382, 7, 1, "", "count_diff"], [382, 7, 1, "", "size"], [382, 7, 1, "", "size_diff"], [382, 7, 1, "", "traceback"]], "tracemalloc.Trace": [[382, 7, 1, "", "domain"], [382, 7, 1, "", "size"], [382, 7, 1, "", "traceback"]], "tracemalloc.Traceback": [[382, 8, 1, "", "format"], [382, 7, 1, "", "total_nframe"]], "tty": [[383, 12, 1, "", "cfmakecbreak"], [383, 12, 1, "", "cfmakeraw"], [383, 12, 1, "", "setcbreak"], [383, 12, 1, "", "setraw"]], "turtle": [[384, 11, 1, "", "RawPen"], [384, 11, 1, "", "RawTurtle"], [384, 11, 1, "", "Screen"], [384, 11, 1, "", "ScrolledCanvas"], [384, 11, 1, "", "Shape"], [384, 11, 1, "", "Turtle"], [384, 11, 1, "", "TurtleScreen"], [384, 11, 1, "", "Vec2D"], [384, 12, 1, "", "addshape"], [384, 12, 1, "", "back"], [384, 12, 1, "", "backward"], [384, 12, 1, "", "begin_fill"], [384, 12, 1, "", "begin_poly"], [384, 12, 1, "", "bgcolor"], [384, 12, 1, "", "bgpic"], [384, 12, 1, "", "bk"], [384, 12, 1, "", "bye"], [384, 12, 1, "", "circle"], [384, 12, 1, "", "clear"], [384, 12, 1, "", "clearscreen"], [384, 12, 1, "", "clearstamp"], [384, 12, 1, "", "clearstamps"], [384, 12, 1, "", "clone"], [384, 12, 1, "", "color"], [384, 12, 1, "", "colormode"], [384, 12, 1, "", "degrees"], [384, 12, 1, "", "delay"], [384, 12, 1, "", "distance"], [384, 12, 1, "", "done"], [384, 12, 1, "", "dot"], [384, 12, 1, "", "down"], [384, 12, 1, "", "end_fill"], [384, 12, 1, "", "end_poly"], [384, 12, 1, "", "exitonclick"], [384, 12, 1, "", "fd"], [384, 12, 1, "", "fillcolor"], [384, 12, 1, "", "filling"], [384, 12, 1, "", "forward"], [384, 12, 1, "", "get_poly"], [384, 12, 1, "", "get_shapepoly"], [384, 12, 1, "", "getcanvas"], [384, 12, 1, "", "getpen"], [384, 12, 1, "", "getscreen"], [384, 12, 1, "", "getshapes"], [384, 12, 1, "", "getturtle"], [384, 12, 1, "", "goto"], [384, 12, 1, "", "heading"], [384, 12, 1, "", "hideturtle"], [384, 12, 1, "", "home"], [384, 12, 1, "", "ht"], [384, 12, 1, "", "isdown"], [384, 12, 1, "", "isvisible"], [384, 12, 1, "", "left"], [384, 12, 1, "", "listen"], [384, 12, 1, "", "lt"], [384, 12, 1, "", "mainloop"], [384, 12, 1, "", "mode"], [384, 12, 1, "", "numinput"], [384, 12, 1, "", "onclick"], [384, 12, 1, "", "ondrag"], [384, 12, 1, "", "onkey"], [384, 12, 1, "", "onkeypress"], [384, 12, 1, "", "onkeyrelease"], [384, 12, 1, "", "onrelease"], [384, 12, 1, "", "onscreenclick"], [384, 12, 1, "", "ontimer"], [384, 12, 1, "", "pd"], [384, 12, 1, "", "pen"], [384, 12, 1, "", "pencolor"], [384, 12, 1, "", "pendown"], [384, 12, 1, "", "pensize"], [384, 12, 1, "", "penup"], [384, 12, 1, "", "pos"], [384, 12, 1, "", "position"], [384, 12, 1, "", "pu"], [384, 12, 1, "", "radians"], [384, 12, 1, "", "register_shape"], [384, 12, 1, "", "reset"], [384, 12, 1, "", "resetscreen"], [384, 12, 1, "", "resizemode"], [384, 12, 1, "", "right"], [384, 12, 1, "", "rt"], [384, 12, 1, "", "screensize"], [384, 12, 1, "", "seth"], [384, 12, 1, "", "setheading"], [384, 12, 1, "", "setpos"], [384, 12, 1, "", "setposition"], [384, 12, 1, "", "settiltangle"], [384, 12, 1, "", "setundobuffer"], [384, 12, 1, "", "setup"], [384, 12, 1, "", "setworldcoordinates"], [384, 12, 1, "", "setx"], [384, 12, 1, "", "sety"], [384, 12, 1, "", "shape"], [384, 12, 1, "", "shapesize"], [384, 12, 1, "", "shapetransform"], [384, 12, 1, "", "shearfactor"], [384, 12, 1, "", "showturtle"], [384, 12, 1, "", "speed"], [384, 12, 1, "", "st"], [384, 12, 1, "", "stamp"], [384, 12, 1, "", "teleport"], [384, 12, 1, "", "textinput"], [384, 12, 1, "", "tilt"], [384, 12, 1, "", "tiltangle"], [384, 12, 1, "", "title"], [384, 12, 1, "", "towards"], [384, 12, 1, "", "tracer"], [384, 12, 1, "", "turtles"], [384, 12, 1, "", "turtlesize"], [384, 12, 1, "", "undo"], [384, 12, 1, "", "undobufferentries"], [384, 12, 1, "", "up"], [384, 12, 1, "", "update"], [384, 12, 1, "", "width"], [384, 12, 1, "", "window_height"], [384, 12, 1, "", "window_width"], [384, 12, 1, "", "write"], [384, 12, 1, "", "write_docstringdict"], [384, 12, 1, "", "xcor"], [384, 12, 1, "", "ycor"]], "turtle.Shape": [[384, 8, 1, "", "addcomponent"]], "types": [[385, 9, 1, "", "AsyncGeneratorType"], [385, 9, 1, "", "BuiltinFunctionType"], [385, 9, 1, "", "BuiltinMethodType"], [385, 9, 1, "", "CellType"], [385, 9, 1, "", "ClassMethodDescriptorType"], [385, 11, 1, "", "CodeType"], [385, 9, 1, "", "CoroutineType"], [385, 12, 1, "", "DynamicClassAttribute"], [385, 9, 1, "", "EllipsisType"], [385, 9, 1, "", "FrameType"], [385, 9, 1, "", "FunctionType"], [385, 9, 1, "", "GeneratorType"], [385, 11, 1, "", "GenericAlias"], [385, 9, 1, "", "GetSetDescriptorType"], [385, 9, 1, "", "LambdaType"], [385, 11, 1, "", "MappingProxyType"], [385, 9, 1, "", "MemberDescriptorType"], [385, 9, 1, "", "MethodDescriptorType"], [385, 9, 1, "", "MethodType"], [385, 9, 1, "", "MethodWrapperType"], [385, 11, 1, "", "ModuleType"], [385, 9, 1, "", "NoneType"], [385, 9, 1, "", "NotImplementedType"], [385, 11, 1, "", "SimpleNamespace"], [385, 11, 1, "", "TracebackType"], [385, 11, 1, "", "UnionType"], [385, 9, 1, "", "WrapperDescriptorType"], [385, 12, 1, "", "coroutine"], [385, 12, 1, "", "get_original_bases"], [385, 12, 1, "", "new_class"], [385, 12, 1, "", "prepare_class"], [385, 12, 1, "", "resolve_bases"]], "types.MappingProxyType": [[385, 8, 1, "", "copy"], [385, 8, 1, "", "get"], [385, 8, 1, "", "items"], [385, 8, 1, "", "keys"], [385, 8, 1, "", "values"]], "types.ModuleType": [[385, 7, 1, "", "__doc__"], [385, 7, 1, "", "__loader__"], [385, 7, 1, "", "__name__"], [385, 7, 1, "", "__package__"], [385, 7, 1, "", "__spec__"]], "typing": [[386, 11, 1, "", "AbstractSet"], [386, 9, 1, "", "Annotated"], [386, 9, 1, "", "Any"], [386, 9, 1, "", "AnyStr"], [386, 11, 1, "", "AsyncContextManager"], [386, 11, 1, "", "AsyncGenerator"], [386, 11, 1, "", "AsyncIterable"], [386, 11, 1, "", "AsyncIterator"], [386, 11, 1, "", "Awaitable"], [386, 11, 1, "", "BinaryIO"], [386, 11, 1, "", "ByteString"], [386, 9, 1, "", "Callable"], [386, 11, 1, "", "ChainMap"], [386, 9, 1, "", "ClassVar"], [386, 11, 1, "", "Collection"], [386, 9, 1, "", "Concatenate"], [386, 11, 1, "", "Container"], [386, 11, 1, "", "ContextManager"], [386, 11, 1, "", "Coroutine"], [386, 11, 1, "", "Counter"], [386, 11, 1, "", "DefaultDict"], [386, 11, 1, "", "Deque"], [386, 11, 1, "", "Dict"], [386, 9, 1, "", "Final"], [386, 11, 1, "", "ForwardRef"], [386, 11, 1, "", "FrozenSet"], [386, 11, 1, "", "Generator"], [386, 11, 1, "", "Generic"], [386, 11, 1, "", "Hashable"], [386, 11, 1, "", "IO"], [386, 11, 1, "", "ItemsView"], [386, 11, 1, "", "Iterable"], [386, 11, 1, "", "Iterator"], [386, 11, 1, "", "KeysView"], [386, 11, 1, "", "List"], [386, 9, 1, "", "Literal"], [386, 9, 1, "", "LiteralString"], [386, 11, 1, "", "Mapping"], [386, 11, 1, "", "MappingView"], [386, 11, 1, "", "Match"], [386, 11, 1, "", "MutableMapping"], [386, 11, 1, "", "MutableSequence"], [386, 11, 1, "", "MutableSet"], [386, 11, 1, "", "NamedTuple"], [386, 9, 1, "", "Never"], [386, 11, 1, "", "NewType"], [386, 9, 1, "", "NoReturn"], [386, 9, 1, "", "NotRequired"], [386, 9, 1, "", "Optional"], [386, 11, 1, "", "OrderedDict"], [386, 11, 1, "", "ParamSpec"], [386, 9, 1, "", "ParamSpecArgs"], [386, 9, 1, "", "ParamSpecKwargs"], [386, 11, 1, "", "Pattern"], [386, 11, 1, "", "Protocol"], [386, 9, 1, "", "Required"], [386, 11, 1, "", "Reversible"], [386, 9, 1, "", "Self"], [386, 11, 1, "", "Sequence"], [386, 11, 1, "", "Set"], [386, 11, 1, "", "Sized"], [386, 11, 1, "", "SupportsAbs"], [386, 11, 1, "", "SupportsBytes"], [386, 11, 1, "", "SupportsComplex"], [386, 11, 1, "", "SupportsFloat"], [386, 11, 1, "", "SupportsIndex"], [386, 11, 1, "", "SupportsInt"], [386, 11, 1, "", "SupportsRound"], [386, 9, 1, "", "TYPE_CHECKING"], [386, 11, 1, "", "Text"], [386, 11, 1, "", "TextIO"], [386, 9, 1, "", "Tuple"], [386, 11, 1, "", "Type"], [386, 9, 1, "", "TypeAlias"], [386, 11, 1, "", "TypeAliasType"], [386, 9, 1, "", "TypeGuard"], [386, 11, 1, "", "TypeVar"], [386, 11, 1, "", "TypeVarTuple"], [386, 11, 1, "", "TypedDict"], [386, 9, 1, "", "Union"], [386, 9, 1, "", "Unpack"], [386, 11, 1, "", "ValuesView"], [386, 12, 1, "", "assert_never"], [386, 12, 1, "", "assert_type"], [386, 12, 1, "", "cast"], [386, 12, 1, "", "clear_overloads"], [386, 12, 1, "", "dataclass_transform"], [386, 12, 1, "", "final"], [386, 12, 1, "", "get_args"], [386, 12, 1, "", "get_origin"], [386, 12, 1, "", "get_overloads"], [386, 12, 1, "", "get_type_hints"], [386, 12, 1, "", "is_typeddict"], [386, 12, 1, "", "no_type_check"], [386, 12, 1, "", "no_type_check_decorator"], [386, 12, 1, "", "overload"], [386, 12, 1, "", "override"], [386, 12, 1, "", "reveal_type"], [386, 12, 1, "", "runtime_checkable"], [386, 12, 1, "", "type_check_only"]], "typing.NewType": [[386, 7, 1, "", "__module__"], [386, 7, 1, "", "__name__"], [386, 7, 1, "", "__supertype__"]], "typing.ParamSpec": [[386, 7, 1, "", "__name__"], [386, 7, 1, "", "args"], [386, 7, 1, "", "kwargs"]], "typing.TypeAliasType": [[386, 7, 1, "", "__module__"], [386, 7, 1, "", "__name__"], [386, 7, 1, "", "__type_params__"], [386, 7, 1, "", "__value__"]], "typing.TypeVar": [[386, 7, 1, "", "__bound__"], [386, 7, 1, "", "__constraints__"], [386, 7, 1, "", "__contravariant__"], [386, 7, 1, "", "__covariant__"], [386, 7, 1, "", "__infer_variance__"], [386, 7, 1, "", "__name__"]], "typing.TypeVarTuple": [[386, 7, 1, "", "__name__"]], "typing.TypedDict": [[386, 7, 1, "", "__optional_keys__"], [386, 7, 1, "", "__required_keys__"], [386, 7, 1, "", "__total__"]], "unicodedata": [[387, 12, 1, "", "bidirectional"], [387, 12, 1, "", "category"], [387, 12, 1, "", "combining"], [387, 12, 1, "", "decimal"], [387, 12, 1, "", "decomposition"], [387, 12, 1, "", "digit"], [387, 12, 1, "", "east_asian_width"], [387, 12, 1, "", "is_normalized"], [387, 12, 1, "", "lookup"], [387, 12, 1, "", "mirrored"], [387, 12, 1, "", "name"], [387, 12, 1, "", "normalize"], [387, 12, 1, "", "numeric"], [387, 9, 1, "", "ucd_3_2_0"], [387, 9, 1, "", "unidata_version"]], "unittest": [[388, 11, 1, "", "FunctionTestCase"], [388, 11, 1, "", "IsolatedAsyncioTestCase"], [388, 6, 1, "", "SkipTest"], [388, 11, 1, "", "TestCase"], [388, 11, 1, "", "TestLoader"], [388, 11, 1, "", "TestResult"], [388, 11, 1, "", "TestSuite"], [388, 11, 1, "", "TextTestResult"], [388, 11, 1, "", "TextTestRunner"], [388, 12, 1, "", "addModuleCleanup"], [388, 9, 1, "", "defaultTestLoader"], [388, 12, 1, "", "doModuleCleanups"], [388, 8, 1, "", "enterModuleContext"], [388, 12, 1, "", "expectedFailure"], [388, 12, 1, "", "installHandler"], [388, 12, 1, "", "main"], [389, 10, 0, "-", "mock"], [388, 12, 1, "", "registerResult"], [388, 12, 1, "", "removeHandler"], [388, 12, 1, "", "removeResult"], [388, 12, 1, "", "skip"], [388, 12, 1, "", "skipIf"], [388, 12, 1, "", "skipUnless"], [388, 14, 1, "cmdoption-unittest-b", "--buffer"], [388, 14, 1, "cmdoption-unittest-c", "--catch"], [388, 14, 1, "cmdoption-unittest-durations", "--durations"], [388, 14, 1, "cmdoption-unittest-f", "--failfast"], [388, 14, 1, "cmdoption-unittest-locals", "--locals"], [388, 14, 1, "cmdoption-unittest-b", "-b"], [388, 14, 1, "cmdoption-unittest-c", "-c"], [388, 14, 1, "cmdoption-unittest-f", "-f"], [388, 14, 1, "cmdoption-unittest-k", "-k"]], "unittest-discover": [[388, 14, 1, "cmdoption-unittest-discover-p", "--pattern"], [388, 14, 1, "cmdoption-unittest-discover-s", "--start-directory"], [388, 14, 1, "cmdoption-unittest-discover-t", "--top-level-directory"], [388, 14, 1, "cmdoption-unittest-discover-v", "--verbose"], [388, 14, 1, "cmdoption-unittest-discover-p", "-p"], [388, 14, 1, "cmdoption-unittest-discover-s", "-s"], [388, 14, 1, "cmdoption-unittest-discover-t", "-t"], [388, 14, 1, "cmdoption-unittest-discover-v", "-v"]], "unittest.IsolatedAsyncioTestCase": [[388, 8, 1, "", "addAsyncCleanup"], [388, 8, 1, "", "asyncSetUp"], [388, 8, 1, "", "asyncTearDown"], [388, 8, 1, "", "enterAsyncContext"], [388, 8, 1, "", "run"]], "unittest.TestCase": [[388, 8, 1, "", "addClassCleanup"], [388, 8, 1, "", "addCleanup"], [388, 8, 1, "", "addTypeEqualityFunc"], [388, 8, 1, "", "assertAlmostEqual"], [388, 8, 1, "", "assertCountEqual"], [388, 8, 1, "", "assertDictEqual"], [388, 8, 1, "", "assertEqual"], [388, 8, 1, "", "assertFalse"], [388, 8, 1, "", "assertGreater"], [388, 8, 1, "", "assertGreaterEqual"], [388, 8, 1, "", "assertIn"], [388, 8, 1, "", "assertIs"], [388, 8, 1, "", "assertIsInstance"], [388, 8, 1, "", "assertIsNone"], [388, 8, 1, "", "assertIsNot"], [388, 8, 1, "", "assertIsNotNone"], [388, 8, 1, "", "assertLess"], [388, 8, 1, "", "assertLessEqual"], [388, 8, 1, "", "assertListEqual"], [388, 8, 1, "", "assertLogs"], [388, 8, 1, "", "assertMultiLineEqual"], [388, 8, 1, "", "assertNoLogs"], [388, 8, 1, "", "assertNotAlmostEqual"], [388, 8, 1, "", "assertNotEqual"], [388, 8, 1, "", "assertNotIn"], [388, 8, 1, "", "assertNotIsInstance"], [388, 8, 1, "", "assertNotRegex"], [388, 8, 1, "", "assertRaises"], [388, 8, 1, "", "assertRaisesRegex"], [388, 8, 1, "", "assertRegex"], [388, 8, 1, "", "assertSequenceEqual"], [388, 8, 1, "", "assertSetEqual"], [388, 8, 1, "", "assertTrue"], [388, 8, 1, "", "assertTupleEqual"], [388, 8, 1, "", "assertWarns"], [388, 8, 1, "", "assertWarnsRegex"], [388, 8, 1, "", "countTestCases"], [388, 8, 1, "", "debug"], [388, 8, 1, "", "defaultTestResult"], [388, 8, 1, "", "doClassCleanups"], [388, 8, 1, "", "doCleanups"], [388, 8, 1, "", "enterClassContext"], [388, 8, 1, "", "enterContext"], [388, 8, 1, "", "fail"], [388, 7, 1, "", "failureException"], [388, 8, 1, "", "id"], [388, 7, 1, "", "longMessage"], [388, 7, 1, "", "maxDiff"], [388, 7, 1, "", "output"], [388, 7, 1, "", "records"], [388, 8, 1, "", "run"], [388, 8, 1, "", "setUp"], [388, 8, 1, "", "setUpClass"], [388, 8, 1, "", "shortDescription"], [388, 8, 1, "", "skipTest"], [388, 8, 1, "", "subTest"], [388, 8, 1, "", "tearDown"], [388, 8, 1, "", "tearDownClass"]], "unittest.TestLoader": [[388, 8, 1, "", "discover"], [388, 7, 1, "", "errors"], [388, 8, 1, "", "getTestCaseNames"], [388, 8, 1, "", "loadTestsFromModule"], [388, 8, 1, "", "loadTestsFromName"], [388, 8, 1, "", "loadTestsFromNames"], [388, 8, 1, "", "loadTestsFromTestCase"], [388, 7, 1, "", "sortTestMethodsUsing"], [388, 7, 1, "", "suiteClass"], [388, 7, 1, "", "testMethodPrefix"], [388, 7, 1, "", "testNamePatterns"]], "unittest.TestResult": [[388, 8, 1, "", "addDuration"], [388, 8, 1, "", "addError"], [388, 8, 1, "", "addExpectedFailure"], [388, 8, 1, "", "addFailure"], [388, 8, 1, "", "addSkip"], [388, 8, 1, "", "addSubTest"], [388, 8, 1, "", "addSuccess"], [388, 8, 1, "", "addUnexpectedSuccess"], [388, 7, 1, "", "buffer"], [388, 7, 1, "", "collectedDurations"], [388, 7, 1, "", "errors"], [388, 7, 1, "", "expectedFailures"], [388, 7, 1, "", "failfast"], [388, 7, 1, "", "failures"], [388, 7, 1, "", "shouldStop"], [388, 7, 1, "", "skipped"], [388, 8, 1, "", "startTest"], [388, 8, 1, "", "startTestRun"], [388, 8, 1, "", "stop"], [388, 8, 1, "", "stopTest"], [388, 8, 1, "", "stopTestRun"], [388, 7, 1, "", "tb_locals"], [388, 7, 1, "", "testsRun"], [388, 7, 1, "", "unexpectedSuccesses"], [388, 8, 1, "", "wasSuccessful"]], "unittest.TestSuite": [[388, 8, 1, "", "__iter__"], [388, 8, 1, "", "addTest"], [388, 8, 1, "", "addTests"], [388, 8, 1, "", "countTestCases"], [388, 8, 1, "", "debug"], [388, 8, 1, "", "run"]], "unittest.TextTestRunner": [[388, 8, 1, "", "_makeResult"], [388, 8, 1, "", "run"]], "unittest.mock": [[389, 9, 1, "", "ANY"], [389, 11, 1, "", "AsyncMock"], [389, 9, 1, "", "DEFAULT"], [389, 9, 1, "", "FILTER_DIR"], [389, 11, 1, "", "MagicMock"], [389, 11, 1, "", "Mock"], [389, 11, 1, "", "NonCallableMagicMock"], [389, 11, 1, "", "NonCallableMock"], [389, 11, 1, "", "PropertyMock"], [389, 12, 1, "", "call"], [389, 12, 1, "", "create_autospec"], [389, 12, 1, "", "mock_open"], [389, 12, 1, "", "patch"], [389, 12, 1, "", "seal"], [389, 9, 1, "", "sentinel"]], "unittest.mock.AsyncMock": [[389, 8, 1, "", "assert_any_await"], [389, 8, 1, "", "assert_awaited"], [389, 8, 1, "", "assert_awaited_once"], [389, 8, 1, "", "assert_awaited_once_with"], [389, 8, 1, "", "assert_awaited_with"], [389, 8, 1, "", "assert_has_awaits"], [389, 8, 1, "", "assert_not_awaited"], [389, 7, 1, "", "await_args"], [389, 7, 1, "", "await_args_list"], [389, 7, 1, "", "await_count"], [389, 8, 1, "", "reset_mock"]], "unittest.mock.Mock": [[389, 7, 1, "", "__class__"], [389, 8, 1, "", "__dir__"], [389, 8, 1, "", "_get_child_mock"], [389, 8, 1, "", "assert_any_call"], [389, 8, 1, "", "assert_called"], [389, 8, 1, "", "assert_called_once"], [389, 8, 1, "", "assert_called_once_with"], [389, 8, 1, "", "assert_called_with"], [389, 8, 1, "", "assert_has_calls"], [389, 8, 1, "", "assert_not_called"], [389, 8, 1, "", "attach_mock"], [389, 7, 1, "", "call_args"], [389, 7, 1, "", "call_args_list"], [389, 7, 1, "", "call_count"], [389, 7, 1, "", "called"], [389, 8, 1, "", "configure_mock"], [389, 7, 1, "", "method_calls"], [389, 8, 1, "", "mock_add_spec"], [389, 7, 1, "", "mock_calls"], [389, 8, 1, "", "reset_mock"], [389, 7, 1, "", "return_value"], [389, 7, 1, "", "side_effect"]], "unittest.mock.call": [[389, 8, 1, "", "call_list"]], "unittest.mock.patch": [[389, 12, 1, "", "dict"], [389, 12, 1, "", "multiple"], [389, 12, 1, "", "object"], [389, 12, 1, "", "stopall"]], "urllib": [[393, 10, 0, "-", "error"], [394, 10, 0, "-", "parse"], [395, 10, 0, "-", "request"], [395, 10, 0, "-", "response"], [396, 10, 0, "-", "robotparser"]], "urllib.error": [[393, 6, 1, "", "ContentTooShortError"], [393, 6, 1, "", "HTTPError"], [393, 6, 1, "", "URLError"]], "urllib.error.ContentTooShortError": [[393, 7, 1, "", "content"]], "urllib.error.HTTPError": [[393, 7, 1, "", "code"], [393, 7, 1, "", "fp"], [393, 7, 1, "", "headers"], [393, 7, 1, "", "reason"], [393, 7, 1, "", "url"]], "urllib.error.URLError": [[393, 7, 1, "", "reason"]], "urllib.parse": [[394, 11, 1, "", "DefragResult"], [394, 11, 1, "", "DefragResultBytes"], [394, 11, 1, "", "ParseResult"], [394, 11, 1, "", "ParseResultBytes"], [394, 11, 1, "", "SplitResult"], [394, 11, 1, "", "SplitResultBytes"], [394, 12, 1, "", "parse_qs"], [394, 12, 1, "", "parse_qsl"], [394, 12, 1, "", "quote"], [394, 12, 1, "", "quote_from_bytes"], [394, 12, 1, "", "quote_plus"], [394, 12, 1, "", "unquote"], [394, 12, 1, "", "unquote_plus"], [394, 12, 1, "", "unquote_to_bytes"], [394, 12, 1, "", "unwrap"], [394, 12, 1, "", "urldefrag"], [394, 12, 1, "", "urlencode"], [394, 12, 1, "", "urljoin"], [394, 12, 1, "", "urlparse"], [394, 12, 1, "", "urlsplit"], [394, 12, 1, "", "urlunparse"], [394, 12, 1, "", "urlunsplit"]], "urllib.parse.urllib.parse.SplitResult": [[394, 8, 1, "", "geturl"]], "urllib.request": [[395, 11, 1, "", "AbstractBasicAuthHandler"], [395, 11, 1, "", "AbstractDigestAuthHandler"], [395, 11, 1, "", "BaseHandler"], [395, 11, 1, "", "CacheFTPHandler"], [395, 11, 1, "", "DataHandler"], [395, 11, 1, "", "FTPHandler"], [395, 11, 1, "", "FancyURLopener"], [395, 11, 1, "", "FileHandler"], [395, 11, 1, "", "HTTPBasicAuthHandler"], [395, 11, 1, "", "HTTPCookieProcessor"], [395, 11, 1, "", "HTTPDefaultErrorHandler"], [395, 11, 1, "", "HTTPDigestAuthHandler"], [395, 11, 1, "", "HTTPErrorProcessor"], [395, 11, 1, "", "HTTPHandler"], [395, 11, 1, "", "HTTPPasswordMgr"], [395, 11, 1, "", "HTTPPasswordMgrWithDefaultRealm"], [395, 11, 1, "", "HTTPPasswordMgrWithPriorAuth"], [395, 11, 1, "", "HTTPRedirectHandler"], [395, 11, 1, "", "HTTPSHandler"], [395, 11, 1, "", "OpenerDirector"], [395, 11, 1, "", "ProxyBasicAuthHandler"], [395, 11, 1, "", "ProxyDigestAuthHandler"], [395, 11, 1, "", "ProxyHandler"], [395, 11, 1, "", "Request"], [395, 11, 1, "", "URLopener"], [395, 11, 1, "", "UnknownHandler"], [395, 12, 1, "", "build_opener"], [395, 12, 1, "", "getproxies"], [395, 12, 1, "", "install_opener"], [395, 12, 1, "", "pathname2url"], [395, 12, 1, "", "url2pathname"], [395, 12, 1, "", "urlcleanup"], [395, 12, 1, "", "urlopen"], [395, 12, 1, "", "urlretrieve"]], "urllib.request.AbstractBasicAuthHandler": [[395, 8, 1, "", "http_error_auth_reqed"]], "urllib.request.AbstractDigestAuthHandler": [[395, 8, 1, "", "http_error_auth_reqed"]], "urllib.request.BaseHandler": [[395, 8, 1, "", "add_parent"], [395, 8, 1, "", "close"], [395, 8, 1, "", "default_open"], [395, 8, 1, "", "http_error_default"], [395, 7, 1, "", "parent"], [395, 8, 1, "", "unknown_open"]], "urllib.request.CacheFTPHandler": [[395, 8, 1, "", "setMaxConns"], [395, 8, 1, "", "setTimeout"]], "urllib.request.DataHandler": [[395, 8, 1, "", "data_open"]], "urllib.request.FTPHandler": [[395, 8, 1, "", "ftp_open"]], "urllib.request.FancyURLopener": [[395, 8, 1, "", "prompt_user_passwd"]], "urllib.request.FileHandler": [[395, 8, 1, "", "file_open"]], "urllib.request.HTTPBasicAuthHandler": [[395, 8, 1, "", "http_error_401"]], "urllib.request.HTTPCookieProcessor": [[395, 7, 1, "", "cookiejar"]], "urllib.request.HTTPDigestAuthHandler": [[395, 8, 1, "", "http_error_401"]], "urllib.request.HTTPErrorProcessor": [[395, 8, 1, "", "http_response"], [395, 8, 1, "", "https_response"]], "urllib.request.HTTPHandler": [[395, 8, 1, "", "http_open"]], "urllib.request.HTTPPasswordMgr": [[395, 8, 1, "", "add_password"], [395, 8, 1, "", "find_user_password"]], "urllib.request.HTTPPasswordMgrWithPriorAuth": [[395, 8, 1, "", "add_password"], [395, 8, 1, "", "find_user_password"], [395, 8, 1, "", "is_authenticated"], [395, 8, 1, "", "update_authenticated"]], "urllib.request.HTTPRedirectHandler": [[395, 8, 1, "", "http_error_301"], [395, 8, 1, "", "http_error_302"], [395, 8, 1, "", "http_error_303"], [395, 8, 1, "", "http_error_307"], [395, 8, 1, "", "http_error_308"], [395, 8, 1, "", "redirect_request"]], "urllib.request.HTTPSHandler": [[395, 8, 1, "", "https_open"]], "urllib.request.OpenerDirector": [[395, 8, 1, "", "add_handler"], [395, 8, 1, "", "error"], [395, 8, 1, "", "open"]], "urllib.request.ProxyBasicAuthHandler": [[395, 8, 1, "", "http_error_407"]], "urllib.request.ProxyDigestAuthHandler": [[395, 8, 1, "", "http_error_407"]], "urllib.request.Request": [[395, 8, 1, "", "add_header"], [395, 8, 1, "", "add_unredirected_header"], [395, 7, 1, "", "data"], [395, 7, 1, "", "full_url"], [395, 8, 1, "", "get_full_url"], [395, 8, 1, "", "get_header"], [395, 8, 1, "", "get_method"], [395, 8, 1, "", "has_header"], [395, 8, 1, "", "header_items"], [395, 7, 1, "", "host"], [395, 7, 1, "", "method"], [395, 7, 1, "", "origin_req_host"], [395, 8, 1, "", "remove_header"], [395, 7, 1, "", "selector"], [395, 8, 1, "", "set_proxy"], [395, 7, 1, "", "type"], [395, 7, 1, "", "unverifiable"]], "urllib.request.URLopener": [[395, 8, 1, "", "open"], [395, 8, 1, "", "open_unknown"], [395, 8, 1, "", "retrieve"], [395, 7, 1, "", "version"]], "urllib.request.UnknownHandler": [[395, 8, 1, "", "unknown_open"]], "urllib.response": [[395, 11, 1, "", "addinfourl"]], "urllib.response.addinfourl": [[395, 7, 1, "", "code"], [395, 8, 1, "", "getcode"], [395, 8, 1, "", "geturl"], [395, 7, 1, "", "headers"], [395, 8, 1, "", "info"], [395, 7, 1, "", "status"], [395, 7, 1, "", "url"]], "urllib.robotparser": [[396, 11, 1, "", "RobotFileParser"]], "urllib.robotparser.RobotFileParser": [[396, 8, 1, "", "can_fetch"], [396, 8, 1, "", "crawl_delay"], [396, 8, 1, "", "modified"], [396, 8, 1, "", "mtime"], [396, 8, 1, "", "parse"], [396, 8, 1, "", "read"], [396, 8, 1, "", "request_rate"], [396, 8, 1, "", "set_url"], [396, 8, 1, "", "site_maps"]], "uu": [[397, 6, 1, "", "Error"], [397, 12, 1, "", "decode"], [397, 12, 1, "", "encode"]], "uuid": [[398, 9, 1, "", "NAMESPACE_DNS"], [398, 9, 1, "", "NAMESPACE_OID"], [398, 9, 1, "", "NAMESPACE_URL"], [398, 9, 1, "", "NAMESPACE_X500"], [398, 9, 1, "", "RESERVED_FUTURE"], [398, 9, 1, "", "RESERVED_MICROSOFT"], [398, 9, 1, "", "RESERVED_NCS"], [398, 9, 1, "", "RFC_4122"], [398, 11, 1, "", "SafeUUID"], [398, 11, 1, "", "UUID"], [398, 12, 1, "", "getnode"], [398, 12, 1, "", "uuid1"], [398, 12, 1, "", "uuid3"], [398, 12, 1, "", "uuid4"], [398, 12, 1, "", "uuid5"], [398, 14, 1, "cmdoption-uuid-h", "--help"], [398, 14, 1, "cmdoption-uuid-name", "--name"], [398, 14, 1, "cmdoption-uuid-namespace", "--namespace"], [398, 14, 1, "cmdoption-uuid-uuid", "--uuid"], [398, 14, 1, "cmdoption-uuid-N", "-N"], [398, 14, 1, "cmdoption-uuid-h", "-h"], [398, 14, 1, "cmdoption-uuid-n", "-n"], [398, 14, 1, "cmdoption-uuid-u", "-u"]], "uuid.SafeUUID": [[398, 7, 1, "", "safe"], [398, 7, 1, "", "unknown"], [398, 7, 1, "", "unsafe"]], "uuid.UUID": [[398, 7, 1, "", "bytes"], [398, 7, 1, "", "bytes_le"], [398, 7, 1, "", "clock_seq"], [398, 7, 1, "", "clock_seq_hi_variant"], [398, 7, 1, "", "clock_seq_low"], [398, 7, 1, "", "fields"], [398, 7, 1, "", "hex"], [398, 7, 1, "", "int"], [398, 7, 1, "", "is_safe"], [398, 7, 1, "", "node"], [398, 7, 1, "", "time"], [398, 7, 1, "", "time_hi_version"], [398, 7, 1, "", "time_low"], [398, 7, 1, "", "time_mid"], [398, 7, 1, "", "urn"], [398, 7, 1, "", "variant"], [398, 7, 1, "", "version"]], "venv": [[399, 11, 1, "", "EnvBuilder"], [399, 12, 1, "", "create"]], "venv.EnvBuilder": [[399, 8, 1, "", "create"], [399, 8, 1, "", "create_configuration"], [399, 8, 1, "", "ensure_directories"], [399, 8, 1, "", "install_scripts"], [399, 8, 1, "", "post_setup"], [399, 8, 1, "", "setup_python"], [399, 8, 1, "", "setup_scripts"], [399, 8, 1, "", "upgrade_dependencies"]], "warnings": [[400, 11, 1, "", "catch_warnings"], [400, 12, 1, "", "filterwarnings"], [400, 12, 1, "", "formatwarning"], [400, 12, 1, "", "resetwarnings"], [400, 12, 1, "", "showwarning"], [400, 12, 1, "", "simplefilter"], [400, 12, 1, "", "warn"], [400, 12, 1, "", "warn_explicit"]], "wave": [[401, 6, 1, "", "Error"], [401, 11, 1, "", "Wave_read"], [401, 11, 1, "", "Wave_write"], [401, 12, 1, "", "open"]], "wave.Wave_read": [[401, 8, 1, "", "close"], [401, 8, 1, "", "getcompname"], [401, 8, 1, "", "getcomptype"], [401, 8, 1, "", "getframerate"], [401, 8, 1, "", "getmark"], [401, 8, 1, "", "getmarkers"], [401, 8, 1, "", "getnchannels"], [401, 8, 1, "", "getnframes"], [401, 8, 1, "", "getparams"], [401, 8, 1, "", "getsampwidth"], [401, 8, 1, "", "readframes"], [401, 8, 1, "", "rewind"], [401, 8, 1, "", "setpos"], [401, 8, 1, "", "tell"]], "wave.Wave_write": [[401, 8, 1, "", "close"], [401, 8, 1, "", "setcomptype"], [401, 8, 1, "", "setframerate"], [401, 8, 1, "", "setnchannels"], [401, 8, 1, "", "setnframes"], [401, 8, 1, "", "setparams"], [401, 8, 1, "", "setsampwidth"], [401, 8, 1, "", "tell"], [401, 8, 1, "", "writeframes"], [401, 8, 1, "", "writeframesraw"]], "weakref": [[402, 9, 1, "", "CallableProxyType"], [402, 9, 1, "", "ProxyType"], [402, 9, 1, "", "ProxyTypes"], [402, 9, 1, "", "ReferenceType"], [402, 11, 1, "", "WeakKeyDictionary"], [402, 11, 1, "", "WeakMethod"], [402, 11, 1, "", "WeakSet"], [402, 11, 1, "", "WeakValueDictionary"], [402, 11, 1, "", "finalize"], [402, 12, 1, "", "getweakrefcount"], [402, 12, 1, "", "getweakrefs"], [402, 12, 1, "", "proxy"], [402, 11, 1, "", "ref"]], "weakref.WeakKeyDictionary": [[402, 8, 1, "", "keyrefs"]], "weakref.WeakValueDictionary": [[402, 8, 1, "", "valuerefs"]], "weakref.finalize": [[402, 8, 1, "", "__call__"], [402, 7, 1, "", "alive"], [402, 7, 1, "", "atexit"], [402, 8, 1, "", "detach"], [402, 8, 1, "", "peek"]], "weakref.ref": [[402, 7, 1, "", "__callback__"]], "webbrowser": [[403, 6, 1, "", "Error"], [403, 12, 1, "", "get"], [403, 7, 1, "", "name"], [403, 12, 1, "", "open"], [403, 12, 1, "", "open_new"], [403, 12, 1, "", "open_new_tab"], [403, 12, 1, "", "register"]], "webbrowser.controller": [[403, 8, 1, "", "open"], [403, 8, 1, "", "open_new"], [403, 8, 1, "", "open_new_tab"]], "winreg": [[405, 12, 1, "", "CloseKey"], [405, 12, 1, "", "ConnectRegistry"], [405, 12, 1, "", "CreateKey"], [405, 12, 1, "", "CreateKeyEx"], [405, 12, 1, "", "DeleteKey"], [405, 12, 1, "", "DeleteKeyEx"], [405, 12, 1, "", "DeleteValue"], [405, 12, 1, "", "DisableReflectionKey"], [405, 12, 1, "", "EnableReflectionKey"], [405, 12, 1, "", "EnumKey"], [405, 12, 1, "", "EnumValue"], [405, 12, 1, "", "ExpandEnvironmentStrings"], [405, 12, 1, "", "FlushKey"], [405, 9, 1, "", "HKEY_CLASSES_ROOT"], [405, 9, 1, "", "HKEY_CURRENT_CONFIG"], [405, 9, 1, "", "HKEY_CURRENT_USER"], [405, 9, 1, "", "HKEY_DYN_DATA"], [405, 9, 1, "", "HKEY_LOCAL_MACHINE"], [405, 9, 1, "", "HKEY_PERFORMANCE_DATA"], [405, 9, 1, "", "HKEY_USERS"], [405, 9, 1, "", "KEY_ALL_ACCESS"], [405, 9, 1, "", "KEY_CREATE_LINK"], [405, 9, 1, "", "KEY_CREATE_SUB_KEY"], [405, 9, 1, "", "KEY_ENUMERATE_SUB_KEYS"], [405, 9, 1, "", "KEY_EXECUTE"], [405, 9, 1, "", "KEY_NOTIFY"], [405, 9, 1, "", "KEY_QUERY_VALUE"], [405, 9, 1, "", "KEY_READ"], [405, 9, 1, "", "KEY_SET_VALUE"], [405, 9, 1, "", "KEY_WOW64_32KEY"], [405, 9, 1, "", "KEY_WOW64_64KEY"], [405, 9, 1, "", "KEY_WRITE"], [405, 12, 1, "", "LoadKey"], [405, 12, 1, "", "OpenKey"], [405, 12, 1, "", "OpenKeyEx"], [405, 12, 1, "", "QueryInfoKey"], [405, 12, 1, "", "QueryReflectionKey"], [405, 12, 1, "", "QueryValue"], [405, 12, 1, "", "QueryValueEx"], [405, 9, 1, "", "REG_BINARY"], [405, 9, 1, "", "REG_DWORD"], [405, 9, 1, "", "REG_DWORD_BIG_ENDIAN"], [405, 9, 1, "", "REG_DWORD_LITTLE_ENDIAN"], [405, 9, 1, "", "REG_EXPAND_SZ"], [405, 9, 1, "", "REG_FULL_RESOURCE_DESCRIPTOR"], [405, 9, 1, "", "REG_LINK"], [405, 9, 1, "", "REG_MULTI_SZ"], [405, 9, 1, "", "REG_NONE"], [405, 9, 1, "", "REG_QWORD"], [405, 9, 1, "", "REG_QWORD_LITTLE_ENDIAN"], [405, 9, 1, "", "REG_RESOURCE_LIST"], [405, 9, 1, "", "REG_RESOURCE_REQUIREMENTS_LIST"], [405, 9, 1, "", "REG_SZ"], [405, 12, 1, "", "SaveKey"], [405, 12, 1, "", "SetValue"], [405, 12, 1, "", "SetValueEx"]], "winreg.PyHKEY": [[405, 8, 1, "", "Close"], [405, 8, 1, "", "Detach"], [405, 8, 1, "", "__enter__"], [405, 8, 1, "", "__exit__"]], "winsound": [[406, 12, 1, "", "Beep"], [406, 9, 1, "", "MB_ICONASTERISK"], [406, 9, 1, "", "MB_ICONEXCLAMATION"], [406, 9, 1, "", "MB_ICONHAND"], [406, 9, 1, "", "MB_ICONQUESTION"], [406, 9, 1, "", "MB_OK"], [406, 12, 1, "", "MessageBeep"], [406, 12, 1, "", "PlaySound"], [406, 9, 1, "", "SND_ALIAS"], [406, 9, 1, "", "SND_ASYNC"], [406, 9, 1, "", "SND_FILENAME"], [406, 9, 1, "", "SND_LOOP"], [406, 9, 1, "", "SND_MEMORY"], [406, 9, 1, "", "SND_NODEFAULT"], [406, 9, 1, "", "SND_NOSTOP"], [406, 9, 1, "", "SND_NOWAIT"], [406, 9, 1, "", "SND_PURGE"]], "wsgiref": [[407, 10, 0, "-", "handlers"], [407, 10, 0, "-", "headers"], [407, 10, 0, "-", "simple_server"], [407, 10, 0, "-", "types"], [407, 10, 0, "-", "util"], [407, 10, 0, "-", "validate"]], "wsgiref.handlers": [[407, 11, 1, "", "BaseCGIHandler"], [407, 11, 1, "", "BaseHandler"], [407, 11, 1, "", "CGIHandler"], [407, 11, 1, "", "IISCGIHandler"], [407, 11, 1, "", "SimpleHandler"], [407, 12, 1, "", "read_environ"]], "wsgiref.handlers.BaseHandler": [[407, 8, 1, "", "_flush"], [407, 8, 1, "", "_write"], [407, 8, 1, "", "add_cgi_vars"], [407, 7, 1, "", "error_body"], [407, 7, 1, "", "error_headers"], [407, 8, 1, "", "error_output"], [407, 7, 1, "", "error_status"], [407, 8, 1, "", "get_scheme"], [407, 8, 1, "", "get_stderr"], [407, 8, 1, "", "get_stdin"], [407, 7, 1, "", "http_version"], [407, 8, 1, "", "log_exception"], [407, 7, 1, "", "origin_server"], [407, 7, 1, "", "os_environ"], [407, 8, 1, "", "run"], [407, 8, 1, "", "sendfile"], [407, 7, 1, "", "server_software"], [407, 8, 1, "", "setup_environ"], [407, 7, 1, "", "traceback_limit"], [407, 7, 1, "", "wsgi_file_wrapper"], [407, 7, 1, "", "wsgi_multiprocess"], [407, 7, 1, "", "wsgi_multithread"], [407, 7, 1, "", "wsgi_run_once"]], "wsgiref.headers": [[407, 11, 1, "", "Headers"]], "wsgiref.headers.Headers": [[407, 8, 1, "", "add_header"], [407, 8, 1, "", "get_all"]], "wsgiref.simple_server": [[407, 11, 1, "", "WSGIRequestHandler"], [407, 11, 1, "", "WSGIServer"], [407, 12, 1, "", "demo_app"], [407, 12, 1, "", "make_server"]], "wsgiref.simple_server.WSGIRequestHandler": [[407, 8, 1, "", "get_environ"], [407, 8, 1, "", "get_stderr"], [407, 8, 1, "", "handle"]], "wsgiref.simple_server.WSGIServer": [[407, 8, 1, "", "get_app"], [407, 8, 1, "", "set_app"]], "wsgiref.types": [[407, 11, 1, "", "ErrorStream"], [407, 11, 1, "", "FileWrapper"], [407, 11, 1, "", "InputStream"], [407, 11, 1, "", "StartResponse"], [407, 9, 1, "", "WSGIApplication"], [407, 9, 1, "", "WSGIEnvironment"]], "wsgiref.util": [[407, 11, 1, "", "FileWrapper"], [407, 12, 1, "", "application_uri"], [407, 12, 1, "", "guess_scheme"], [407, 12, 1, "", "is_hop_by_hop"], [407, 12, 1, "", "request_uri"], [407, 12, 1, "", "setup_testing_defaults"], [407, 12, 1, "", "shift_path_info"]], "wsgiref.validate": [[407, 12, 1, "", "validator"]], "xdrlib": [[408, 6, 1, "", "ConversionError"], [408, 6, 1, "", "Error"], [408, 11, 1, "", "Packer"], [408, 11, 1, "", "Unpacker"]], "xdrlib.Packer": [[408, 8, 1, "", "get_buffer"], [408, 8, 1, "", "pack_array"], [408, 8, 1, "", "pack_bytes"], [408, 8, 1, "", "pack_double"], [408, 8, 1, "", "pack_farray"], [408, 8, 1, "", "pack_float"], [408, 8, 1, "", "pack_fopaque"], [408, 8, 1, "", "pack_fstring"], [408, 8, 1, "", "pack_list"], [408, 8, 1, "", "pack_opaque"], [408, 8, 1, "", "pack_string"], [408, 8, 1, "", "reset"]], "xdrlib.Unpacker": [[408, 8, 1, "", "done"], [408, 8, 1, "", "get_buffer"], [408, 8, 1, "", "get_position"], [408, 8, 1, "", "reset"], [408, 8, 1, "", "set_position"], [408, 8, 1, "", "unpack_array"], [408, 8, 1, "", "unpack_bytes"], [408, 8, 1, "", "unpack_double"], [408, 8, 1, "", "unpack_farray"], [408, 8, 1, "", "unpack_float"], [408, 8, 1, "", "unpack_fopaque"], [408, 8, 1, "", "unpack_fstring"], [408, 8, 1, "", "unpack_list"], [408, 8, 1, "", "unpack_opaque"], [408, 8, 1, "", "unpack_string"]], "xml": [[410, 10, 0, "-", "dom"], [414, 10, 0, "-", "sax"]], "xml.dom": [[410, 6, 1, "", "DOMException"], [410, 6, 1, "", "DomstringSizeErr"], [410, 9, 1, "", "EMPTY_NAMESPACE"], [410, 6, 1, "", "HierarchyRequestErr"], [410, 6, 1, "", "IndexSizeErr"], [410, 6, 1, "", "InuseAttributeErr"], [410, 6, 1, "", "InvalidAccessErr"], [410, 6, 1, "", "InvalidCharacterErr"], [410, 6, 1, "", "InvalidModificationErr"], [410, 6, 1, "", "InvalidStateErr"], [410, 6, 1, "", "NamespaceErr"], [410, 6, 1, "", "NoDataAllowedErr"], [410, 6, 1, "", "NoModificationAllowedErr"], [410, 6, 1, "", "NotFoundErr"], [410, 6, 1, "", "NotSupportedErr"], [410, 6, 1, "", "SyntaxErr"], [410, 6, 1, "", "WrongDocumentErr"], [410, 9, 1, "", "XHTML_NAMESPACE"], [410, 9, 1, "", "XMLNS_NAMESPACE"], [410, 9, 1, "", "XML_NAMESPACE"], [410, 12, 1, "", "getDOMImplementation"], [411, 10, 0, "-", "minidom"], [412, 10, 0, "-", "pulldom"], [410, 12, 1, "", "registerDOMImplementation"]], "xml.dom.Attr": [[410, 7, 1, "", "localName"], [410, 7, 1, "", "name"], [410, 7, 1, "", "prefix"], [410, 7, 1, "", "value"]], "xml.dom.Comment": [[410, 7, 1, "", "data"]], "xml.dom.DOMImplementation": [[410, 8, 1, "", "createDocument"], [410, 8, 1, "", "createDocumentType"], [410, 8, 1, "", "hasFeature"]], "xml.dom.Document": [[410, 8, 1, "", "createAttribute"], [410, 8, 1, "", "createAttributeNS"], [410, 8, 1, "", "createComment"], [410, 8, 1, "", "createElement"], [410, 8, 1, "", "createElementNS"], [410, 8, 1, "", "createProcessingInstruction"], [410, 8, 1, "", "createTextNode"], [410, 7, 1, "", "documentElement"], [410, 8, 1, "", "getElementsByTagName"], [410, 8, 1, "", "getElementsByTagNameNS"]], "xml.dom.DocumentType": [[410, 7, 1, "", "entities"], [410, 7, 1, "", "internalSubset"], [410, 7, 1, "", "name"], [410, 7, 1, "", "notations"], [410, 7, 1, "", "publicId"], [410, 7, 1, "", "systemId"]], "xml.dom.Element": [[410, 8, 1, "", "getAttribute"], [410, 8, 1, "", "getAttributeNS"], [410, 8, 1, "", "getAttributeNode"], [410, 8, 1, "", "getAttributeNodeNS"], [410, 8, 1, "", "getElementsByTagName"], [410, 8, 1, "", "getElementsByTagNameNS"], [410, 8, 1, "", "hasAttribute"], [410, 8, 1, "", "hasAttributeNS"], [410, 8, 1, "", "removeAttribute"], [410, 8, 1, "", "removeAttributeNS"], [410, 8, 1, "", "removeAttributeNode"], [410, 8, 1, "", "setAttribute"], [410, 8, 1, "", "setAttributeNS"], [410, 8, 1, "", "setAttributeNode"], [410, 8, 1, "", "setAttributeNodeNS"], [410, 7, 1, "", "tagName"]], "xml.dom.NamedNodeMap": [[410, 8, 1, "", "item"], [410, 7, 1, "", "length"]], "xml.dom.Node": [[410, 8, 1, "", "appendChild"], [410, 7, 1, "", "attributes"], [410, 7, 1, "", "childNodes"], [410, 8, 1, "", "cloneNode"], [410, 7, 1, "", "firstChild"], [410, 8, 1, "", "hasAttributes"], [410, 8, 1, "", "hasChildNodes"], [410, 8, 1, "", "insertBefore"], [410, 8, 1, "", "isSameNode"], [410, 7, 1, "", "lastChild"], [410, 7, 1, "", "localName"], [410, 7, 1, "", "namespaceURI"], [410, 7, 1, "", "nextSibling"], [410, 7, 1, "", "nodeName"], [410, 7, 1, "", "nodeType"], [410, 7, 1, "", "nodeValue"], [410, 8, 1, "", "normalize"], [410, 7, 1, "", "parentNode"], [410, 7, 1, "", "prefix"], [410, 7, 1, "", "previousSibling"], [410, 8, 1, "", "removeChild"], [410, 8, 1, "", "replaceChild"]], "xml.dom.NodeList": [[410, 8, 1, "", "item"], [410, 7, 1, "", "length"]], "xml.dom.ProcessingInstruction": [[410, 7, 1, "", "data"], [410, 7, 1, "", "target"]], "xml.dom.Text": [[410, 7, 1, "", "data"]], "xml.dom.minidom": [[411, 12, 1, "", "parse"], [411, 12, 1, "", "parseString"]], "xml.dom.minidom.Node": [[411, 8, 1, "", "toprettyxml"], [411, 8, 1, "", "toxml"], [411, 8, 1, "", "unlink"], [411, 8, 1, "", "writexml"]], "xml.dom.pulldom": [[412, 11, 1, "", "DOMEventStream"], [412, 11, 1, "", "PullDom"], [412, 11, 1, "", "SAX2DOM"], [412, 9, 1, "", "default_bufsize"], [412, 12, 1, "", "parse"], [412, 12, 1, "", "parseString"]], "xml.dom.pulldom.DOMEventStream": [[412, 8, 1, "", "expandNode"], [412, 8, 1, "", "getEvent"], [412, 8, 1, "", "reset"]], "xml.etree": [[413, 10, 0, "-", "ElementInclude"], [413, 10, 0, "-", "ElementTree"]], "xml.etree.ElementInclude": [[413, 12, 1, "", "default_loader"], [413, 12, 1, "", "include"]], "xml.etree.ElementTree": [[413, 11, 1, "", "C14NWriterTarget"], [413, 12, 1, "", "Comment"], [413, 11, 1, "", "Element"], [413, 11, 1, "", "ElementTree"], [413, 11, 1, "", "ParseError"], [413, 12, 1, "", "ProcessingInstruction"], [413, 11, 1, "", "QName"], [413, 12, 1, "", "SubElement"], [413, 11, 1, "", "TreeBuilder"], [413, 12, 1, "", "XML"], [413, 12, 1, "", "XMLID"], [413, 11, 1, "", "XMLParser"], [413, 11, 1, "", "XMLPullParser"], [413, 12, 1, "", "canonicalize"], [413, 12, 1, "", "dump"], [413, 12, 1, "", "fromstring"], [413, 12, 1, "", "fromstringlist"], [413, 12, 1, "", "indent"], [413, 12, 1, "", "iselement"], [413, 12, 1, "", "iterparse"], [413, 12, 1, "", "parse"], [413, 12, 1, "", "register_namespace"], [413, 12, 1, "", "tostring"], [413, 12, 1, "", "tostringlist"]], "xml.etree.ElementTree.Element": [[413, 8, 1, "", "append"], [413, 7, 1, "", "attrib"], [413, 8, 1, "", "clear"], [413, 8, 1, "", "extend"], [413, 8, 1, "", "find"], [413, 8, 1, "", "findall"], [413, 8, 1, "", "findtext"], [413, 8, 1, "", "get"], [413, 8, 1, "", "insert"], [413, 8, 1, "", "items"], [413, 8, 1, "", "iter"], [413, 8, 1, "", "iterfind"], [413, 8, 1, "", "itertext"], [413, 8, 1, "", "keys"], [413, 8, 1, "", "makeelement"], [413, 8, 1, "", "remove"], [413, 8, 1, "", "set"], [413, 7, 1, "", "tag"], [413, 7, 1, "", "tail"], [413, 7, 1, "", "text"]], "xml.etree.ElementTree.ElementTree": [[413, 8, 1, "", "_setroot"], [413, 8, 1, "", "find"], [413, 8, 1, "", "findall"], [413, 8, 1, "", "findtext"], [413, 8, 1, "", "getroot"], [413, 8, 1, "", "iter"], [413, 8, 1, "", "iterfind"], [413, 8, 1, "", "parse"], [413, 8, 1, "", "write"]], "xml.etree.ElementTree.ParseError": [[413, 7, 1, "", "code"], [413, 7, 1, "", "position"]], "xml.etree.ElementTree.TreeBuilder": [[413, 8, 1, "", "close"], [413, 8, 1, "", "comment"], [413, 8, 1, "", "data"], [413, 8, 1, "", "doctype"], [413, 8, 1, "", "end"], [413, 8, 1, "", "end_ns"], [413, 8, 1, "", "pi"], [413, 8, 1, "", "start"], [413, 8, 1, "", "start_ns"]], "xml.etree.ElementTree.XMLParser": [[413, 8, 1, "", "close"], [413, 8, 1, "", "feed"], [413, 8, 1, "", "flush"]], "xml.etree.ElementTree.XMLPullParser": [[413, 8, 1, "", "close"], [413, 8, 1, "", "feed"], [413, 8, 1, "", "flush"], [413, 8, 1, "", "read_events"]], "xml.parsers": [[314, 10, 0, "-", "expat"]], "xml.parsers.expat": [[314, 12, 1, "", "ErrorString"], [314, 6, 1, "", "ExpatError"], [314, 12, 1, "", "ParserCreate"], [314, 9, 1, "", "XMLParserType"], [314, 6, 1, "", "error"], [314, 10, 0, "-", "errors"], [314, 10, 0, "-", "model"]], "xml.parsers.expat.ExpatError": [[314, 7, 1, "", "code"], [314, 7, 1, "", "lineno"], [314, 7, 1, "", "offset"]], "xml.parsers.expat.errors": [[314, 9, 1, "", "XML_ERROR_ABORTED"], [314, 9, 1, "", "XML_ERROR_AMPLIFICATION_LIMIT_BREACH"], [314, 9, 1, "", "XML_ERROR_ASYNC_ENTITY"], [314, 9, 1, "", "XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_BAD_CHAR_REF"], [314, 9, 1, "", "XML_ERROR_BINARY_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING"], [314, 9, 1, "", "XML_ERROR_DUPLICATE_ATTRIBUTE"], [314, 9, 1, "", "XML_ERROR_ENTITY_DECLARED_IN_PE"], [314, 9, 1, "", "XML_ERROR_EXTERNAL_ENTITY_HANDLING"], [314, 9, 1, "", "XML_ERROR_FEATURE_REQUIRES_XML_DTD"], [314, 9, 1, "", "XML_ERROR_FINISHED"], [314, 9, 1, "", "XML_ERROR_INCOMPLETE_PE"], [314, 9, 1, "", "XML_ERROR_INCORRECT_ENCODING"], [314, 9, 1, "", "XML_ERROR_INVALID_ARGUMENT"], [314, 9, 1, "", "XML_ERROR_INVALID_TOKEN"], [314, 9, 1, "", "XML_ERROR_JUNK_AFTER_DOC_ELEMENT"], [314, 9, 1, "", "XML_ERROR_MISPLACED_XML_PI"], [314, 9, 1, "", "XML_ERROR_NOT_STANDALONE"], [314, 9, 1, "", "XML_ERROR_NOT_SUSPENDED"], [314, 9, 1, "", "XML_ERROR_NO_BUFFER"], [314, 9, 1, "", "XML_ERROR_NO_ELEMENTS"], [314, 9, 1, "", "XML_ERROR_NO_MEMORY"], [314, 9, 1, "", "XML_ERROR_PARAM_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_PARTIAL_CHAR"], [314, 9, 1, "", "XML_ERROR_PUBLICID"], [314, 9, 1, "", "XML_ERROR_RECURSIVE_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_RESERVED_NAMESPACE_URI"], [314, 9, 1, "", "XML_ERROR_RESERVED_PREFIX_XML"], [314, 9, 1, "", "XML_ERROR_RESERVED_PREFIX_XMLNS"], [314, 9, 1, "", "XML_ERROR_SUSPENDED"], [314, 9, 1, "", "XML_ERROR_SUSPEND_PE"], [314, 9, 1, "", "XML_ERROR_SYNTAX"], [314, 9, 1, "", "XML_ERROR_TAG_MISMATCH"], [314, 9, 1, "", "XML_ERROR_TEXT_DECL"], [314, 9, 1, "", "XML_ERROR_UNBOUND_PREFIX"], [314, 9, 1, "", "XML_ERROR_UNCLOSED_CDATA_SECTION"], [314, 9, 1, "", "XML_ERROR_UNCLOSED_TOKEN"], [314, 9, 1, "", "XML_ERROR_UNDECLARING_PREFIX"], [314, 9, 1, "", "XML_ERROR_UNDEFINED_ENTITY"], [314, 9, 1, "", "XML_ERROR_UNEXPECTED_STATE"], [314, 9, 1, "", "XML_ERROR_UNKNOWN_ENCODING"], [314, 9, 1, "", "XML_ERROR_XML_DECL"], [314, 9, 1, "", "codes"], [314, 9, 1, "", "messages"]], "xml.parsers.expat.xmlparser": [[314, 8, 1, "", "AttlistDeclHandler"], [314, 8, 1, "", "CharacterDataHandler"], [314, 8, 1, "", "CommentHandler"], [314, 7, 1, "", "CurrentByteIndex"], [314, 7, 1, "", "CurrentColumnNumber"], [314, 7, 1, "", "CurrentLineNumber"], [314, 8, 1, "", "DefaultHandler"], [314, 8, 1, "", "DefaultHandlerExpand"], [314, 8, 1, "", "ElementDeclHandler"], [314, 8, 1, "", "EndCdataSectionHandler"], [314, 8, 1, "", "EndDoctypeDeclHandler"], [314, 8, 1, "", "EndElementHandler"], [314, 8, 1, "", "EndNamespaceDeclHandler"], [314, 8, 1, "", "EntityDeclHandler"], [314, 7, 1, "", "ErrorByteIndex"], [314, 7, 1, "", "ErrorCode"], [314, 7, 1, "", "ErrorColumnNumber"], [314, 7, 1, "", "ErrorLineNumber"], [314, 8, 1, "", "ExternalEntityParserCreate"], [314, 8, 1, "", "ExternalEntityRefHandler"], [314, 8, 1, "", "GetBase"], [314, 8, 1, "", "GetInputContext"], [314, 8, 1, "", "GetReparseDeferralEnabled"], [314, 8, 1, "", "NotStandaloneHandler"], [314, 8, 1, "", "NotationDeclHandler"], [314, 8, 1, "", "Parse"], [314, 8, 1, "", "ParseFile"], [314, 8, 1, "", "ProcessingInstructionHandler"], [314, 8, 1, "", "SetBase"], [314, 8, 1, "", "SetParamEntityParsing"], [314, 8, 1, "", "SetReparseDeferralEnabled"], [314, 8, 1, "", "StartCdataSectionHandler"], [314, 8, 1, "", "StartDoctypeDeclHandler"], [314, 8, 1, "", "StartElementHandler"], [314, 8, 1, "", "StartNamespaceDeclHandler"], [314, 8, 1, "", "UnparsedEntityDeclHandler"], [314, 8, 1, "", "UseForeignDTD"], [314, 8, 1, "", "XmlDeclHandler"], [314, 7, 1, "", "buffer_size"], [314, 7, 1, "", "buffer_text"], [314, 7, 1, "", "buffer_used"], [314, 7, 1, "", "ordered_attributes"], [314, 7, 1, "", "specified_attributes"]], "xml.sax": [[414, 6, 1, "", "SAXException"], [414, 6, 1, "", "SAXNotRecognizedException"], [414, 6, 1, "", "SAXNotSupportedException"], [414, 6, 1, "", "SAXParseException"], [415, 10, 0, "-", "handler"], [414, 12, 1, "", "make_parser"], [414, 12, 1, "", "parse"], [414, 12, 1, "", "parseString"], [417, 10, 0, "-", "saxutils"], [416, 10, 0, "-", "xmlreader"]], "xml.sax.SAXException": [[414, 8, 1, "", "getException"], [414, 8, 1, "", "getMessage"]], "xml.sax.handler": [[415, 11, 1, "", "ContentHandler"], [415, 11, 1, "", "DTDHandler"], [415, 11, 1, "", "EntityResolver"], [415, 11, 1, "", "ErrorHandler"], [415, 11, 1, "", "LexicalHandler"], [415, 9, 1, "", "all_features"], [415, 9, 1, "", "all_properties"], [415, 9, 1, "", "feature_external_ges"], [415, 9, 1, "", "feature_external_pes"], [415, 9, 1, "", "feature_namespace_prefixes"], [415, 9, 1, "", "feature_namespaces"], [415, 9, 1, "", "feature_string_interning"], [415, 9, 1, "", "feature_validation"], [415, 9, 1, "", "property_declaration_handler"], [415, 9, 1, "", "property_dom_node"], [415, 9, 1, "", "property_lexical_handler"], [415, 9, 1, "", "property_xml_string"]], "xml.sax.handler.ContentHandler": [[415, 8, 1, "", "characters"], [415, 8, 1, "", "endDocument"], [415, 8, 1, "", "endElement"], [415, 8, 1, "", "endElementNS"], [415, 8, 1, "", "endPrefixMapping"], [415, 8, 1, "", "ignorableWhitespace"], [415, 8, 1, "", "processingInstruction"], [415, 8, 1, "", "setDocumentLocator"], [415, 8, 1, "", "skippedEntity"], [415, 8, 1, "", "startDocument"], [415, 8, 1, "", "startElement"], [415, 8, 1, "", "startElementNS"], [415, 8, 1, "", "startPrefixMapping"]], "xml.sax.handler.DTDHandler": [[415, 8, 1, "", "notationDecl"], [415, 8, 1, "", "unparsedEntityDecl"]], "xml.sax.handler.EntityResolver": [[415, 8, 1, "", "resolveEntity"]], "xml.sax.handler.ErrorHandler": [[415, 8, 1, "", "error"], [415, 8, 1, "", "fatalError"], [415, 8, 1, "", "warning"]], "xml.sax.handler.LexicalHandler": [[415, 8, 1, "", "comment"], [415, 8, 1, "", "endCDATA"], [415, 8, 1, "", "endDTD"], [415, 8, 1, "", "startCDATA"], [415, 8, 1, "", "startDTD"]], "xml.sax.saxutils": [[417, 11, 1, "", "XMLFilterBase"], [417, 11, 1, "", "XMLGenerator"], [417, 12, 1, "", "escape"], [417, 12, 1, "", "prepare_input_source"], [417, 12, 1, "", "quoteattr"], [417, 12, 1, "", "unescape"]], "xml.sax.xmlreader": [[416, 11, 1, "", "AttributesImpl"], [416, 11, 1, "", "AttributesNSImpl"], [416, 11, 1, "", "IncrementalParser"], [416, 11, 1, "", "InputSource"], [416, 11, 1, "", "Locator"], [416, 11, 1, "", "XMLReader"]], "xml.sax.xmlreader.Attributes": [[416, 8, 1, "", "getLength"], [416, 8, 1, "", "getNames"], [416, 8, 1, "", "getType"], [416, 8, 1, "", "getValue"]], "xml.sax.xmlreader.AttributesNS": [[416, 8, 1, "", "getNameByQName"], [416, 8, 1, "", "getQNameByName"], [416, 8, 1, "", "getQNames"], [416, 8, 1, "", "getValueByQName"]], "xml.sax.xmlreader.IncrementalParser": [[416, 8, 1, "", "close"], [416, 8, 1, "", "feed"], [416, 8, 1, "", "reset"]], "xml.sax.xmlreader.InputSource": [[416, 8, 1, "", "getByteStream"], [416, 8, 1, "", "getCharacterStream"], [416, 8, 1, "", "getEncoding"], [416, 8, 1, "", "getPublicId"], [416, 8, 1, "", "getSystemId"], [416, 8, 1, "", "setByteStream"], [416, 8, 1, "", "setCharacterStream"], [416, 8, 1, "", "setEncoding"], [416, 8, 1, "", "setPublicId"], [416, 8, 1, "", "setSystemId"]], "xml.sax.xmlreader.Locator": [[416, 8, 1, "", "getColumnNumber"], [416, 8, 1, "", "getLineNumber"], [416, 8, 1, "", "getPublicId"], [416, 8, 1, "", "getSystemId"]], "xml.sax.xmlreader.XMLReader": [[416, 8, 1, "", "getContentHandler"], [416, 8, 1, "", "getDTDHandler"], [416, 8, 1, "", "getEntityResolver"], [416, 8, 1, "", "getErrorHandler"], [416, 8, 1, "", "getFeature"], [416, 8, 1, "", "getProperty"], [416, 8, 1, "", "parse"], [416, 8, 1, "", "setContentHandler"], [416, 8, 1, "", "setDTDHandler"], [416, 8, 1, "", "setEntityResolver"], [416, 8, 1, "", "setErrorHandler"], [416, 8, 1, "", "setFeature"], [416, 8, 1, "", "setLocale"], [416, 8, 1, "", "setProperty"]], "xmlrpc": [[419, 10, 0, "-", "client"], [420, 10, 0, "-", "server"]], "xmlrpc.client": [[419, 11, 1, "", "Binary"], [419, 11, 1, "", "DateTime"], [419, 11, 1, "", "Fault"], [419, 11, 1, "", "MultiCall"], [419, 11, 1, "", "ProtocolError"], [419, 11, 1, "", "ServerProxy"], [419, 12, 1, "", "dumps"], [419, 12, 1, "", "loads"]], "xmlrpc.client.Binary": [[419, 7, 1, "", "data"], [419, 8, 1, "", "decode"], [419, 8, 1, "", "encode"]], "xmlrpc.client.DateTime": [[419, 8, 1, "", "decode"], [419, 8, 1, "", "encode"]], "xmlrpc.client.Fault": [[419, 7, 1, "", "faultCode"], [419, 7, 1, "", "faultString"]], "xmlrpc.client.ProtocolError": [[419, 7, 1, "", "errcode"], [419, 7, 1, "", "errmsg"], [419, 7, 1, "", "headers"], [419, 7, 1, "", "url"]], "xmlrpc.client.ServerProxy.system": [[419, 8, 1, "", "listMethods"], [419, 8, 1, "", "methodHelp"], [419, 8, 1, "", "methodSignature"]], "xmlrpc.server": [[420, 11, 1, "", "CGIXMLRPCRequestHandler"], [420, 11, 1, "", "DocCGIXMLRPCRequestHandler"], [420, 11, 1, "", "DocXMLRPCRequestHandler"], [420, 11, 1, "", "DocXMLRPCServer"], [420, 11, 1, "", "SimpleXMLRPCRequestHandler"], [420, 11, 1, "", "SimpleXMLRPCServer"]], "xmlrpc.server.CGIXMLRPCRequestHandler": [[420, 8, 1, "", "handle_request"], [420, 8, 1, "", "register_function"], [420, 8, 1, "", "register_instance"], [420, 8, 1, "", "register_introspection_functions"], [420, 8, 1, "", "register_multicall_functions"]], "xmlrpc.server.DocCGIXMLRPCRequestHandler": [[420, 8, 1, "", "set_server_documentation"], [420, 8, 1, "", "set_server_name"], [420, 8, 1, "", "set_server_title"]], "xmlrpc.server.DocXMLRPCServer": [[420, 8, 1, "", "set_server_documentation"], [420, 8, 1, "", "set_server_name"], [420, 8, 1, "", "set_server_title"]], "xmlrpc.server.SimpleXMLRPCRequestHandler": [[420, 7, 1, "", "rpc_paths"]], "xmlrpc.server.SimpleXMLRPCServer": [[420, 8, 1, "", "register_function"], [420, 8, 1, "", "register_instance"], [420, 8, 1, "", "register_introspection_functions"], [420, 8, 1, "", "register_multicall_functions"]], "zipapp": [[421, 12, 1, "", "create_archive"], [421, 12, 1, "", "get_interpreter"], [421, 14, 1, "cmdoption-zipapp-c", "--compress"], [421, 14, 1, "cmdoption-zipapp-h", "--help"], [421, 14, 1, "cmdoption-zipapp-info", "--info"], [421, 14, 1, "cmdoption-zipapp-m", "--main"], [421, 14, 1, "cmdoption-zipapp-o", "--output"], [421, 14, 1, "cmdoption-zipapp-p", "--python"], [421, 14, 1, "cmdoption-zipapp-c", "-c"], [421, 14, 1, "cmdoption-zipapp-h", "-h"], [421, 14, 1, "cmdoption-zipapp-m", "-m"], [421, 14, 1, "cmdoption-zipapp-o", "-o"], [421, 14, 1, "cmdoption-zipapp-p", "-p"]], "zipfile": [[422, 6, 1, "", "BadZipFile"], [422, 6, 1, "", "BadZipfile"], [422, 6, 1, "", "LargeZipFile"], [422, 11, 1, "", "Path"], [422, 11, 1, "", "PyZipFile"], [422, 9, 1, "", "ZIP_BZIP2"], [422, 9, 1, "", "ZIP_DEFLATED"], [422, 9, 1, "", "ZIP_LZMA"], [422, 9, 1, "", "ZIP_STORED"], [422, 11, 1, "", "ZipFile"], [422, 11, 1, "", "ZipInfo"], [422, 12, 1, "", "is_zipfile"], [422, 14, 1, "cmdoption-zipfile-create", "--create"], [422, 14, 1, "cmdoption-zipfile-extract", "--extract"], [422, 14, 1, "cmdoption-zipfile-list", "--list"], [422, 14, 1, "cmdoption-zipfile-metadata-encoding", "--metadata-encoding"], [422, 14, 1, "cmdoption-zipfile-test", "--test"], [422, 14, 1, "cmdoption-zipfile-c", "-c"], [422, 14, 1, "cmdoption-zipfile-e", "-e"], [422, 14, 1, "cmdoption-zipfile-l", "-l"], [422, 14, 1, "cmdoption-zipfile-t", "-t"]], "zipfile.Path": [[422, 8, 1, "", "exists"], [422, 8, 1, "", "is_dir"], [422, 8, 1, "", "is_file"], [422, 8, 1, "", "iterdir"], [422, 8, 1, "", "joinpath"], [422, 7, 1, "", "name"], [422, 8, 1, "", "open"], [422, 8, 1, "", "read_bytes"], [422, 8, 1, "", "read_text"], [422, 9, 1, "", "stem"], [422, 9, 1, "", "suffix"], [422, 9, 1, "", "suffixes"]], "zipfile.PyZipFile": [[422, 8, 1, "", "writepy"]], "zipfile.ZipFile": [[422, 8, 1, "", "close"], [422, 7, 1, "", "comment"], [422, 7, 1, "", "debug"], [422, 8, 1, "", "extract"], [422, 8, 1, "", "extractall"], [422, 7, 1, "", "filename"], [422, 8, 1, "", "getinfo"], [422, 8, 1, "", "infolist"], [422, 8, 1, "", "mkdir"], [422, 8, 1, "", "namelist"], [422, 8, 1, "", "open"], [422, 8, 1, "", "printdir"], [422, 8, 1, "", "read"], [422, 8, 1, "", "setpassword"], [422, 8, 1, "", "testzip"], [422, 8, 1, "", "write"], [422, 8, 1, "", "writestr"]], "zipfile.ZipInfo": [[422, 7, 1, "", "CRC"], [422, 7, 1, "", "comment"], [422, 7, 1, "", "compress_size"], [422, 7, 1, "", "compress_type"], [422, 7, 1, "", "create_system"], [422, 7, 1, "", "create_version"], [422, 7, 1, "", "date_time"], [422, 7, 1, "", "external_attr"], [422, 7, 1, "", "extra"], [422, 7, 1, "", "extract_version"], [422, 7, 1, "", "file_size"], [422, 7, 1, "", "filename"], [422, 7, 1, "", "flag_bits"], [422, 8, 1, "", "from_file"], [422, 7, 1, "", "header_offset"], [422, 7, 1, "", "internal_attr"], [422, 8, 1, "", "is_dir"], [422, 7, 1, "", "reserved"], [422, 7, 1, "", "volume"]], "zipimport": [[423, 6, 1, "", "ZipImportError"], [423, 11, 1, "", "zipimporter"]], "zipimport.zipimporter": [[423, 7, 1, "", "archive"], [423, 8, 1, "", "create_module"], [423, 8, 1, "", "exec_module"], [423, 8, 1, "", "find_spec"], [423, 8, 1, "", "get_code"], [423, 8, 1, "", "get_data"], [423, 8, 1, "", "get_filename"], [423, 8, 1, "", "get_source"], [423, 8, 1, "", "invalidate_caches"], [423, 8, 1, "", "is_package"], [423, 8, 1, "", "load_module"], [423, 7, 1, "", "prefix"]], "zlib": [[424, 9, 1, "", "ZLIB_RUNTIME_VERSION"], [424, 9, 1, "", "ZLIB_VERSION"], [424, 12, 1, "", "adler32"], [424, 12, 1, "", "compress"], [424, 12, 1, "", "compressobj"], [424, 12, 1, "", "crc32"], [424, 12, 1, "", "decompress"], [424, 12, 1, "", "decompressobj"], [424, 6, 1, "", "error"]], "zlib.Compress": [[424, 8, 1, "", "compress"], [424, 8, 1, "", "copy"], [424, 8, 1, "", "flush"]], "zlib.Decompress": [[424, 8, 1, "", "copy"], [424, 8, 1, "", "decompress"], [424, 7, 1, "", "eof"], [424, 8, 1, "", "flush"], [424, 7, 1, "", "unconsumed_tail"], [424, 7, 1, "", "unused_data"]], "zoneinfo": [[425, 6, 1, "", "InvalidTZPathWarning"], [425, 9, 1, "", "TZPATH"], [425, 11, 1, "", "ZoneInfo"], [425, 6, 1, "", "ZoneInfoNotFoundError"], [425, 12, 1, "", "available_timezones"], [425, 12, 1, "", "reset_tzpath"]], "zoneinfo.ZoneInfo": [[425, 8, 1, "", "clear_cache"], [425, 8, 1, "", "from_file"], [425, 7, 1, "", "key"], [425, 8, 1, "", "no_cache"]]}, "objnames": {"0": ["c", "member", "C \u6210\u54e1\u51fd\u6578"], "1": ["c", "macro", "C \u5de8\u96c6"], "2": ["c", "function", "C \u51fd\u5f0f"], "3": ["c", "functionParam", "C \u51fd\u5f0f\u53c3\u6578"], "4": ["c", "type", "C \u578b\u5225"], "5": ["c", "struct", "C \u7d50\u69cb"], "6": ["py", "exception", "Python \u4f8b\u5916"], "7": ["py", "attribute", "Python \u5c6c\u6027"], "8": ["py", "method", "Python \u65b9\u6cd5"], "9": ["py", "data", "Python \u8cc7\u6599"], "10": ["py", "module", "Python \u6a21\u7d44"], "11": ["py", "class", "Python \u985e\u5225"], "12": ["py", "function", "Python \u51fd\u5f0f"], "13": ["std", "pdbcommand", "pdbcommand"], "14": ["std", "cmdoption", "\u7a0b\u5f0f\u9078\u9805"], "15": ["std", "envvar", "\u74b0\u5883\u8b8a\u6578"], "16": ["std", "opcode", "opcode"], "17": ["std", "monitoring-event", "monitoring-event"], "18": ["std", "2to3fixer", "2to3fixer"]}, "objtypes": {"0": "c:member", "1": "c:macro", "2": "c:function", "3": "c:functionParam", "4": "c:type", "5": "c:struct", "6": "py:exception", "7": "py:attribute", "8": "py:method", "9": "py:data", "10": "py:module", "11": "py:class", "12": "py:function", "13": "std:pdbcommand", "14": "std:cmdoption", "15": "std:envvar", "16": "std:opcode", "17": "std:monitoring-event", "18": "std:2to3fixer"}, "terms": {"00": [33, 89, 104, 107, 109, 183, 186, 221, 235, 267, 319, 341, 366, 384, 425, 451, 452, 455, 467, 468, 469, 475, 479, 482, 483], "000": [160, 176, 183, 186, 235, 261, 282, 308, 461, 474, 475, 476], "0000": [87, 99, 109, 158, 183, 203, 209, 259, 344, 366, 428, 462, 475, 476, 483], "00000": 186, "000000": [176, 183, 366, 464], "00000000": 158, "0000000000000000": 98, "000000120": 345, "0000003": 186, "0000007f": 158, "00000080": 158, "000001": 183, "0000050000069649e": 275, "0000050000166668e": 275, "000007ff": 158, "00000800": 158, "00001": 478, "000027119750287": 481, "00003": 478, "00005": 186, "0000ffff": 158, "0001": [99, 183, 435, 480, 483], "000100": 183, "00010000": 158, "00010203": 398, "0001100110011": 466, "0001100110011001100110011001100110011001100110011": 444, "00012": 446, "000178": 467, "0002": 183, "000384": 183, "00042": 344, "0007": 259, "000s": 388, "001": [84, 183, 225, 261, 271, 308, 366, 435], "0010ffff": 158, "0011001100110011001100110011001100110011001100110011": 78, "00111": 211, "00112444be1e": [398, 467], "001j": 435, "001s": 388, "002": [183, 308, 344], "0023": 186, "003": [225, 428, 446, 455], "00308d78": 98, "003244936839808227": 444, "00365b68": 98, "003s": 474, "004": 267, "0041": 430, "0042": 344, "0043": [387, 430], "0045": 465, "004643": 78, "0049": 387, "0051575902860057365": 444, "005s": 388, "0060000": 186, "0061": 109, "0062": 109, "0063": 109, "0065": 109, "007": 378, "00797": 454, "007b": 109, "007f": [344, 435], "00c7": [387, 430], "00df": 109, "00e9": 109, "00ea": 109, "00ff": [158, 475, 476, 483], "01": [89, 96, 102, 107, 146, 183, 186, 209, 225, 235, 240, 267, 332, 337, 339, 341, 344, 366, 408, 422, 425, 430, 451, 461, 463, 465, 466, 467, 475, 476, 479, 480, 483], "010": [225, 261, 362], "0102030405060708090a0b0c0d0e0f00": 235, "010x": 146, "011": 261, "01110011": 225, "012": [244, 261, 344, 463], "0123": 344, "01234": 344, "01234567": 345, "0123456789": [337, 344, 345], "0123456789abcdef": 446, "0123456789abcdefabcdef": 345, "013": 261, "0130": [106, 319], "0131": [106, 319], "013671875": 475, "013765762467652909": 475, "014": 271, "0144": 85, "017": 186, "017f": [106, 319], "018": 160, "01875": 343, "01bb6f00122b177f36cab49cea8b6b26": 341, "01ff": 462, "01t00": 183, "01t01": 451, "01t03": 425, "01t12": 183, "01z": 183, "02": [102, 104, 183, 186, 267, 283, 332, 366, 423, 451, 462, 464, 465, 466, 475, 479, 483], "021": 261, "0224": 469, "023": 261, "024": 483, "024e": 94, "0268e7": 94, "0286": 483, "029035": [103, 465], "02d": 319, "02e": 186, "02s": 476, "02x": 345, "03": [101, 102, 183, 186, 267, 341, 345, 347, 366, 451, 465, 467, 483], "0302": 109, "030712": 183, "031107": 465, "031edd7d41651593c5fe5c006fa5752b37fddff7bc4e843aa6af0c950f4b9406": 235, "0321336330": 369, "0327": [387, 430], "033": [98, 177, 483], "0330": 183, "0340": 483, "037": 271, "03894": 341, "03d": [200, 267, 344], "04": [86, 89, 92, 183, 345, 347, 366, 425, 448, 467, 469, 472, 479, 480, 483], "0400": [183, 476], "040070": 78, "0405": 398, "04215312199994514": 367, "042173697819788e": 444, "042178034628478e": 444, "04d": [85, 226], "04e": 308, "04t00": 183, "04x": [87, 109], "05": [89, 102, 134, 154, 183, 261, 275, 319, 341, 347, 366, 452, 467, 468, 479, 483], "0500": [183, 209], "0518e6": 94, "052": 468, "054": 101, "055": 101, "05954861408025609": 318, "0596158101": 369, "05edt": 366, "06": [86, 102, 183, 245, 267, 332, 449, 467, 479, 483], "0607": 398, "0625": [283, 449], "063415": 183, "0660": [344, 462], "07": [102, 183, 267, 271, 319, 345, 366, 378, 425, 467, 468, 479, 482, 483], "0718": 483, "0720": 470, "073": [469, 483], "075": 481, "0755": [151, 483], "0758": 483, "0772": 483, "077e010": 435, "07a5610bae9d": 483, "08": [104, 183, 209, 245, 267, 341, 366, 425, 482, 483], "0809": 398, "0810874155219827": 343, "08588060699912603": 367, "0876": 483, "0877": 367, "09": [85, 102, 154, 209, 267, 275, 332, 341, 448, 483], "0999999999999996": 462, "09999999999999995": 452, "09x": 472, "0a": 464, "0a0b0c0d0e0f": 398, "0a1": [113, 483], "0a2": [113, 483], "0a3": [113, 483], "0a3b9": 319, "0a4": 483, "0a5": 33, "0abc": 259, "0alpha1": 462, "0an": 80, "0b": [18, 47, 225, 292, 344, 345, 468, 475], "0b0": 211, "0b1": [113, 483], "0b100101": [344, 469, 471], "0b10011": 344, "0b100110111": 435, "0b1010": [225, 470], "0b101010": 345, "0b10101101": 468, "0b101111": 468, "0b11": 225, "0b11000000101010000000000000000001": 259, "0b1101": 468, "0b1110": 225, "0b2": [455, 483], "0b3": 483, "0b4": [479, 483], "0b_1110_0101": 435, "0beta1": 462, "0bf2": 109, "0bn": 80, "0c": 347, "0c076caaa8": 455, "0c9aee199e5d": [398, 467], "0cf1": 475, "0cf2": 475, "0db8": 99, "0def": 259, "0e": 186, "0e0": 435, "0f": [267, 475, 483], "0f84": 109, "0g": [469, 483], "0goofi": 465, "0h": [341, 483], "0i": 483, "0if": [472, 474], "0in": [472, 474], "0j": [186, 225, 344, 419, 483], "0l": [35, 73, 347], "0o": [18, 47, 85, 225, 344, 345, 468, 475], "0o10": [85, 225], "0o12": 225, "0o177": 435, "0o21": 468, "0o24": 475, "0o377": [435, 473, 474, 483], "0o444": 296, "0o52": [345, 468], "0o600": 293, "0o644": 151, "0o666": [151, 184, 293, 296, 397], "0o70": 225, "0o700": [293, 474, 483], "0o720": 470, "0o755": 151, "0o777": [293, 296], "0p": [480, 483], "0rc1": 483, "0rcn": 80, "0s": 347, "0x": [9, 18, 47, 64, 85, 87, 94, 106, 138, 176, 193, 225, 244, 283, 292, 344, 345, 384, 389, 390, 435, 466, 475, 483], "0x0": [96, 158], "0x00": [109, 178, 191], "0x000000000041a6b1": 96, "0x000000000041b717": 96, "0x000000000041b7c0": 96, "0x00000000004371c3": 98, "0x00000000004374e1": 98, "0x000000000044060a": 96, "0x0000000000440d1b": 96, "0x0000000000440d94": 96, "0x0000000000446647": 96, "0x00000000004466aa": 96, "0x00000000004cd1e6": 96, "0x000000000053db6c": 98, "0x000000000053dba8": 98, "0x0000000000584abd": 96, "0x0000000000630ce2": 98, "0x00000000008d6be8": 98, "0x00000000008d6bea": 98, "0x00000000008d6bf6": 98, "0x00000000008d6bf8": 98, "0x00000010": 98, "0x00000014": 98, "0x00000020": [98, 176], "0x00000024": 98, "0x00000030": 98, "0x00000031": 98, "0x00000038e46d73e3": 96, "0x00000045": 98, "0x00000046": 98, "0x00000144": 98, "0x00000254": 98, "0x00000274": 98, "0x00007fb899f39700": [214, 476], "0x00007fbcdbd32700": 479, "0x00010000": 483, "0x002d6c30": 98, "0x00a1db50": 440, "0x00ac18f0": 193, "0x00b18c90": 93, "0x00c45070": 93, "0x01": [4, 191, 337], "0x0100": 483, "0x010502f0": 352, "0x02": [191, 479], "0x03": [4, 191], "0x03020000": 57, "0x030401a2": 4, "0x03050400": [56, 480, 483], "0x03060000": [56, 480, 483], "0x03060100": [56, 480, 483], "0x03080000": [473, 481], "0x03090000": [100, 482], "0x030900a4": [472, 473], "0x030900b1": 473, "0x030a0000": 57, "0x030a00a1": 473, "0x030a00f0": 4, "0x030b0000": [473, 483], "0x030b00a2": 473, "0x04": [4, 191, 428], "0x08": [191, 428], "0x0bf2": 109, "0x1": [186, 344, 444, 468, 471, 472, 474], "0x10": 428, "0x1000": 428, "0x100020bf": 341, "0x101739a10": 475, "0x101e0cef0": 251, "0x1021": 146, "0x1022bd788": 475, "0x103528488": 251, "0x1035a2840": 226, "0x103fe0000": 226, "0x1053bb7c8": 139, "0x10_0000_0000_0000": 318, "0x10c90e650": 440, "0x10ffff": [109, 225, 352, 476], "0x12": 398, "0x12131415": 347, "0x1234": 398, "0x12345678": 398, "0x12345678123456781234567812345678": 398, "0x144": 85, "0x16d07cc": 85, "0x18": 211, "0x1d000000": 176, "0x1f": [178, 472, 474], "0x1for": [472, 474], "0x2": 4, "0x20": [64, 143, 344, 428], "0x2000": 428, "0x20000000": 483, "0x2001_0db8_0000_0000_0000_0000_0000_1000": 259, "0x265e": 109, "0x2a": [225, 345], "0x3": 344, "0x30c00a0": 176, "0x34": 398, "0x37f080": 469, "0x37f850": 469, "0x3dad39f5e0": 96, "0x3dad3a95a0": 96, "0x3dbdc7ea70": 96, "0x3dbdf85820": 96, "0x3ff": 347, "0x400": 435, "0x400cad2c": 465, "0x400cad4c": 465, "0x402c2080": 466, "0x402c2090": 466, "0x402ef0d4": 466, "0x4198d0": 85, "0x50": 109, "0x5678": 398, "0x567812345678": 398, "0x5c2b8d": 96, "0x63d0f8": 96, "0x6d72c0": 96, "0x7352a0": 85, "0x7e30e0": 96, "0x7e7820": 96, "0x7e7d20": 96, "0x7eba00": 96, "0x7f": [178, 344], "0x7f19e0": 96, "0x7f3ddc9f4350": 344, "0x7f46b9fe31e0": 476, "0x7fa66db2be58": 413, "0x7fb5d302f9d0": 93, "0x7fbcd41666f8": 479, "0x7fbcd41666fc": 479, "0x7fc859830220": 402, "0x7fffac0011c0": 96, "0x7fffac001640": 96, "0x7fffac001c90": 96, "0x7fffb8001a10": 96, "0x7fffb8001c40": 96, "0x7fffc8002090": 96, "0x7fffd00019d0": 96, "0x7fffd00024a0": 96, "0x7fffdf5fe710": 96, "0x7fffe4001580": 96, "0x7fffefa18710": 96, "0x7ffff2128500": 96, "0x7ffff7f14360": 96, "0x7ffff7fb1868": 96, "0x7ffff7fb6020": 96, "0x7ffff7fb6080": 96, "0x7ffff7fb60f0": 96, "0x7ffff7fb6160": 96, "0x7ffff7fb61d0": 96, "0x7ffff7fb6240": 96, "0x7ffff7fb62b0": 96, "0x7ffff7fc6340": 96, "0x7ffff7fd5ee8": 96, "0x7ffff7fe2700": 96, "0x7fffff7fefe8": 96, "0x7fffffff": 483, "0x80": [59, 109, 178, 344, 483], "0x8116870": 464, "0x8117f90": [464, 465], "0x858770": 96, "0x858860": 96, "0x858a90": 96, "0x928310": 96, "0x9420b04": 96, "0x948e82c": 96, "0x984b464": 96, "0x984b474": 96, "0x984b494": 96, "0x98fa6e4": 96, "0x98faaa4": 96, "0x98fab44": 96, "0x98fad24": 96, "0x99262ac": 96, "0x9aead74": 96, "0x_ff_ff_ff_ff": 479, "0xa": 4, "0xa5": 85, "0xaa4560": 96, "0xaacd80": 96, "0xaace60": 96, "0xad4730": 96, "0xb": 4, "0xb2": 85, "0xb771b7f4": 96, "0xb77e6fac": 413, "0xb77ec1cc": 413, "0xb77ec26c": 413, "0xb77ec2ac": 413, "0xbb": 158, "0xbf": 158, "0xc": 4, "0xc000": 106, "0xc185a0": 96, "0xc191e0": 96, "0xc9c790": 96, "0xc9c7f8": 96, "0xcb": [42, 479, 483], "0xcb5380": 96, "0xcd": [42, 483], "0xd75060": 96, "0xd750e0": 96, "0xd75160": 96, "0xd751e0": 96, "0xd7ee60": 96, "0xd7fd10": 96, "0xd7ff40": 96, "0xd800": 64, "0xd80160": 96, "0xd80260": 96, "0xd802e0": 96, "0xd803e0": 96, "0xdb": [42, 479, 483], "0xdbff": 64, "0xdc00": 64, "0xdd": [42, 483], "0xdeadbeef": 435, "0xdecafbad": [102, 267], "0xdfff": 64, "0xef": 158, "0xf": 4, "0xface": 225, "0xfb": [42, 479, 483], "0xfd": [42, 483], "0xff": [59, 158, 225, 344], "0xffd2": 106, "0xfffe": [64, 158], "0xffff": [352, 476, 483], "0xffffffff": [465, 479, 483], "0xffffffffl": 465, "0xmnn00pp0l": 483, "0xxxx": 483, "0xxxxxxx": 158, "10": [4, 10, 14, 18, 20, 22, 23, 26, 28, 33, 34, 36, 39, 45, 47, 49, 52, 55, 57, 58, 61, 63, 64, 68, 73, 78, 79, 84, 87, 92, 93, 94, 95, 98, 101, 102, 103, 106, 108, 109, 110, 112, 113, 115, 116, 120, 121, 122, 123, 126, 129, 131, 134, 135, 136, 137, 138, 139, 143, 147, 149, 150, 151, 154, 155, 158, 160, 163, 169, 176, 177, 181, 183, 185, 186, 188, 191, 193, 209, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 231, 233, 235, 236, 237, 241, 242, 250, 251, 252, 255, 258, 259, 261, 266, 267, 268, 274, 275, 278, 282, 283, 284, 286, 288, 291, 292, 293, 294, 296, 303, 304, 307, 308, 311, 312, 318, 319, 322, 325, 326, 330, 332, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 355, 360, 362, 364, 365, 366, 367, 369, 372, 378, 381, 384, 385, 386, 388, 390, 394, 395, 407, 413, 415, 420, 422, 423, 425, 427, 428, 429, 430, 431, 432, 435, 440, 441, 442, 443, 444, 446, 448, 449, 451, 452, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 482, 484], "100": [85, 92, 102, 109, 110, 117, 125, 126, 136, 147, 155, 181, 183, 186, 190, 201, 208, 214, 225, 241, 245, 259, 261, 266, 275, 283, 284, 295, 318, 329, 337, 343, 344, 345, 358, 366, 367, 376, 384, 388, 395, 405, 407, 419, 427, 430, 441, 444, 446, 449, 450, 451, 452, 462, 465, 467, 468, 469, 472, 473, 475, 477, 478, 481, 483], "1000": [59, 85, 98, 102, 109, 149, 173, 177, 183, 221, 247, 259, 261, 275, 283, 284, 320, 329, 344, 345, 352, 369, 382, 384, 426, 440, 441, 444, 446, 449, 450, 462, 467, 468, 469, 475, 476, 481], "10000": [95, 308, 333, 367, 384, 465, 476, 483], "100000": [73, 225, 308, 367, 382, 465], "1000000": [104, 167, 183, 221, 225, 283, 308, 367, 441, 469, 479, 483], "10000000": 318, "100000000": 247, "1000000000": 340, "100000000000": 466, "1000000000000000": 479, "1000000000000000055511151231257827021181583404541015625": [186, 444, 469], "10000000000000001": 444, "100000000000000088817841970012523233890533447265625": [186, 471, 475], "1000000000000001": [466, 471], "1000000000000403": 261, "1000003": 475, "100001": 483, "1000026": 186, "1000110": 483, "1000158": 483, "100039": 483, "100050": 483, "100061": 483, "100086": 483, "100098": 483, "1000s": 483, "1001": [78, 158, 345], "10010": 226, "100101": 344, "100107": 483, "100110": 483, "100112": 483, "100117": 483, "100126": 483, "100131": 483, "100133": 483, "100143": 483, "100146": 483, "100160": [474, 483], "1001604": 468, "100161": 474, "100180": 483, "100188": 483, "10022": 483, "100220": 483, "100221": 483, "100222": 483, "100228": 483, "10023": 341, "100234": [474, 483], "100247": 483, "100268": 483, "100272": 483, "100287": 483, "100288": 483, "1003": 294, "10030": 483, "100320": 483, "100340": 483, "100342": 483, "100344": [474, 483], "100348": 483, "100357": 483, "100363": 483, "100370": 483, "100372": 483, "100374": 483, "10042": 477, "100425": [474, 483], "10042ed0": 441, "100454": 483, "100472": 483, "100474": 483, "100479": 483, "100485": [474, 483], "100488": 483, "10049": [480, 483], "1005": 382, "100519": 483, "100530": 483, "100540": 483, "100562": 483, "100573": 483, "100581": 474, "100585": 483, "100598": 474, "100616": 483, "100637": 483, "100649": 483, "100668": 483, "100689": 483, "100690": 483, "1007": 102, "100712": 483, "100719": 483, "100720": 483, "100726": 483, "100740": 483, "100750": 483, "10076": [480, 483], "100762": 483, "100776": 483, "100792": 483, "100795": 483, "100805": 483, "100809": 483, "100813": 483, "100814": 483, "100833": 483, "100884": 483, "100892": 483, "100923": 483, "10093": 475, "100942": 483, "100982": 483, "100985": 483, "100_000": [93, 343], "100_000_000_000": 435, "100k": 77, "100s": 75, "100x": 476, "101": [110, 120, 241, 261, 318, 343, 345, 382, 389, 444, 461, 469, 475], "1010": [345, 481], "10100": 211, "101000": [474, 483], "101006": 483, "101010": 345, "101015": 483, "101037": 483, "101046": 483, "101060": 483, "1011": [343, 345], "101101": 474, "101135": 483, "101143": 483, "101144": 483, "101152": 483, "101193": 474, "101196": 483, "101225": 483, "101251": 483, "101264": 474, "101266": 483, "101277": 483, "101282": 483, "101283": 483, "101291": 483, "101293": 483, "1013": 426, "10131": 483, "101313": 483, "101317": 483, "101323": 483, "101326": 483, "101334": 483, "101360": 483, "101362": 483, "101372": 483, "101377": 483, "1014": 408, "101400": 483, "101408": 483, "10141": 476, "101430": 483, "101438": 483, "101441": 474, "101446": 483, "10145": 96, "101467": 483, "1015": 481, "101517": 483, "10152": 343, "101520": 483, "101522": 483, "101525": 474, "101538": 483, "101541": 483, "101543": 483, "101561": [474, 483], "101566": 483, "101570": 483, "101578": [474, 483], "101588": [474, 483], "10160": 475, "101614": 483, "101632": [474, 483], "101634": 483, "101640": 483, "10166": 343, "101673": 483, "101688": 483, "101693": 483, "101696": 483, "101698": 474, "101727": 483, "101759": 483, "101763": 483, "101765": 483, "101773": 483, "101799": [474, 483], "10181": 476, "101819": 483, "101827": 474, "101849": 483, "101857": 483, "101865": 483, "101866": 474, "101881": 483, "101892": 483, "101907": 483, "101936": 483, "101952": 483, "101961": 483, "101967": 483, "10197": 477, "101975": 483, "101979": 483, "10199": 475, "101997": 483, "102": [102, 186, 241, 261, 343, 469, 475, 481, 482], "102013": 483, "102019": 483, "102024": 483, "102027": 483, "10203": [478, 483], "102038": 483, "102056": 483, "102069": 483, "102103": 483, "102114": 483, "102126": 483, "102153": 483, "102179": 483, "102192": [474, 483], "10220": 475, "102213": 483, "102250": 483, "102255": 483, "102281": 483, "1023": 347, "102300": 483, "102302": 483, "102310": 483, "102336": 483, "102344": 483, "102356": 483, "102362": 483, "102378": 483, "102388": 483, "102397": 483, "1024": [87, 109, 175, 186, 215, 235, 268, 309, 337, 338, 341, 344, 382, 435, 451, 483], "10240": 358, "102406": 483, "102416": 483, "102433": [474, 483], "102491": 483, "102493": 483, "1025": 483, "102500": [474, 483], "102509": 483, "102512": 483, "102519": [474, 483], "102537": 483, "102541": 483, "102549": 483, "102578": 483, "10259": 96, "102594": 483, "10260": 96, "102613": 483, "102615": 483, "102628": 483, "102670": 483, "102690": 483, "102700": 483, "102701": 483, "102711": 483, "10272": 475, "102748": [474, 483], "102755": [474, 483], "102778": [474, 483], "10278": 476, "102780": 483, "102795": 483, "102809": 483, "102818": 483, "102823": 483, "102828": [474, 483], "102839": 483, "102853": 474, "102856": [474, 483], "102859": [474, 483], "102871": [474, 483], "102947": 483, "102953": 483, "102956": 483, "102973": 483, "102978": 483, "102980": 483, "102988": 483, "102997": 483, "103": [241, 261, 343, 344, 382, 461, 469, 475, 482, 483], "1030": 183, "103000": 483, "103015": [474, 483], "103023": 483, "103046": 483, "103053": 483, "103056": 483, "103068": 483, "103082": [474, 483], "103085": 483, "103088": 483, "103091": 483, "103092": 483, "103112": 483, "10314": 475, "103142": 483, "103143": 483, "103176": [474, 483], "103179": 474, "103186": 483, "103193": [474, 483], "103194": 483, "103204": 483, "10321": 475, "103220": 483, "103225": 483, "103242": 483, "103256": 483, "103285": 483, "103295": 483, "103323": 483, "103329": 483, "103333": 483, "103357": 483, "103365": 483, "1034053": 469, "103449": 483, "103462": 483, "103472": 483, "1034791200": 465, "103487": 474, "103488": 483, "103489": [474, 483], "103492": 483, "103497": 474, "1034h": 483, "103509": [474, 483], "103525": 483, "103532": 483, "103533": 483, "103538": 483, "103545": 483, "103548": 483, "103556": 483, "103559": 483, "103578": 483, "103583": 483, "103584": 483, "103590": [474, 483], "103596": 483, "1036": 382, "103629": [474, 483], "103631": 483, "103636": [474, 483], "103646": 483, "103650": 483, "103673": 483, "103685": 483, "103693": [474, 483], "103699": [474, 483], "103743": 483, "103763": 483, "103764": 474, "10379": [480, 483], "103791": 483, "103793": [474, 483], "103801": 483, "10381": [480, 483], "103820": 483, "103822": 483, "103839": 483, "103845": 483, "103848": 483, "103857": [474, 483], "103861": 483, "103872": 483, "103895": 483, "103899": 483, "103907": 483, "103935": 483, "10395": [478, 483], "103956": 483, "103963": 483, "103968": 483, "103977": 483, "103987": 483, "103_410": 343, "104": [96, 186, 343, 475, 481, 482, 483], "104018": 483, "104028": 483, "104035": 483, "104049": 483, "104066": 483, "104078": 483, "104090": 483, "104102": 483, "104104": 483, "104106": 483, "104108": 483, "104109": 483, "104110": 474, "104114": 483, "104138": 474, "104139": 483, "104140": 474, "104142": 483, "104144": 483, "104180": 483, "104210": 474, "104263": 483, "104265": 483, "104282": 483, "104301": 483, "10430216751806065": 444, "104307": 483, "104310": 483, "104340": 483, "104372": 483, "104389": 483, "104392": 483, "104399": 483, "104405": 483, "104432": 483, "104461": 483, "104482": 483, "104484": 483, "104490": 483, "104494": 483, "104496": 483, "104499": 483, "1045": 481, "104522": 483, "104536": 483, "104554": 483, "104555": 483, "104572": 483, "104600": 483, "104615": 483, "104621": 483, "104623": 483, "104668": [474, 483], "104690": 483, "104692": 483, "104719": 483, "104736": 483, "104797": 483, "104799": 483, "104803": 483, "104812": 483, "104820": 483, "104825": 483, "104874": 483, "104879": 483, "104935": 483, "104943": 483, "104947": 483, "104955": 483, "10496": 483, "104972": 483, "104976": 483, "104996": 483, "105": [96, 186, 343], "105002": 483, "105013": 483, "105017": 483, "105035": 483, "105052": 483, "105071": 483, "105080": 483, "105084": 483, "105089": 483, "10510": 483, "105102": 483, "105113": 483, "105115": 483, "10513": 483, "105144": 483, "105146": 483, "10516": 476, "105162": 483, "105164": 483, "10518": 475, "105194": 483, "105227": 483, "105235": 483, "105239": 483, "105259": 483, "105280": 483, "105324": 483, "105332": 483, "105340": 483, "10536": 483, "105375": 483, "105387": [474, 483], "105390": 483, "1054041": [481, 483], "105435": 483, "105436": 483, "10544": [480, 481, 483], "105486": 483, "105497": 483, "10554": 475, "105549": 483, "105564": 483, "105587": 483, "105588": 483, "105603": 483, "105605": 483, "105626": 483, "105658": 483, "105699": 483, "105716": 483, "10572": 483, "105736": 483, "105745": 483, "105776": 483, "105800": 483, "105808": 483, "105829": 483, "105831": 483, "105840": 483, "10586": 475, "105866": 483, "10590": [478, 483], "105908": 483, "10593": 475, "105967": 483, "105974": 483, "105979": 483, "105987": 483, "106": [235, 261, 343, 461, 464], "1060": [343, 481, 483], "106052": 483, "106075": 483, "106092": 483, "1061": 483, "106118": 483, "106145": 483, "106152": 483, "106176": 483, "106186": 483, "10620": 475, "106232": 483, "106233": 483, "106242": 483, "106263": 483, "106292": 483, "1063": 223, "106330": 483, "106350": 483, "106359": 483, "106396": 483, "106403": 483, "10650": 483, "106503": 483, "106510": 483, "106524": 483, "106530": 483, "106531": 474, "10656": 483, "106560": 483, "106584": 483, "106602": 483, "106669": 483, "106684": 483, "106714": 483, "106719": 483, "106723": 483, "106752": 483, "106774": 483, "10679": 475, "1068": 382, "1068268": 469, "106831": 483, "106844": 483, "106881": 483, "106895": 483, "106897": 483, "106898": 483, "106905": 483, "106917": 483, "106931": 483, "106939": 284, "106948": 483, "106962": 483, "106970": 483, "107": [343, 461], "107008": 483, "107077": 483, "107080": 483, "1071": 343, "10711": 475, "107155": 483, "10716": 483, "107178": 483, "107219": 483, "107226": 483, "107237": 483, "107263": 483, "107305": 483, "10735": [344, 472, 473, 480, 481, 482], "107396": 483, "1074": 483, "10740": 483, "10744": 483, "10746": 483, "10747": 483, "10755": 476, "107565": 483, "107576": 483, "107715": 483, "107724": 483, "10775": 476, "107774": 483, "107805": 483, "107810": 483, "107814": 483, "10783": 475, "10784": 476, "107845": 483, "1079": 476, "107901": 483, "107913": 483, "107915": 483, "107916": 483, "107963": 483, "108": [343, 382, 461], "1080": 469, "108083": 483, "108111": 483, "108269": 483, "10827": 475, "108295": 483, "108310": 483, "10838": 483, "108388": 483, "108390": 483, "108469": 483, "108487": 483, "108520": 483, "108654": 483, "10866": 476, "10868": 476, "108682": 483, "1087": 288, "108732": 483, "108740": 483, "1087418": 469, "108791": 483, "1088": 288, "10882": 476, "108826": 483, "108834": 483, "108843": 483, "108851": 483, "10889": 475, "1089": 288, "108927": 483, "108959": 483, "108962": 483, "108976": 483, "108987": 483, "109": [343, 382, 461], "1090": 288, "109015": 483, "109047": 483, "109052": 483, "1091": 288, "10910": 483, "109114": 483, "109118": 483, "109120": 483, "109179": 483, "109181": 483, "109191": 483, "109195": 483, "1092": 288, "109207": 483, "109209": 483, "109216": 483, "109219": 483, "109230": 483, "109237": 483, "10924": 476, "109286": 483, "1093": 288, "109341": 483, "109351": 483, "109371": 483, "109375": 483, "109396": 483, "1094": 288, "10945": [482, 483], "109475": 483, "109496": 483, "1095": [183, 288], "109521": 483, "109534": 483, "109538": 483, "109580": 483, "109590": 483, "109593": 483, "109594": 483, "109596": 483, "1096": 288, "109613": 483, "109627": 483, "109631": 483, "109653": 483, "10968": 476, "109719": 483, "109747": 483, "1097797": 477, "10978": 483, "109782": 483, "109786": 483, "109793": 483, "10980": 475, "109818": 483, "109823": 483, "109853": 483, "109858": 483, "109889": 483, "109894": 483, "109972": 483, "1099726899285419": 166, "109974": 483, "10998": 476, "109980": 483, "109981": 483, "109991": 483, "10_000": [318, 343], "10_152": 343, "10_756": 343, "10aedt": 366, "10c": 347, "10d": 446, "10e6": 85, "10ffff": [87, 158, 428, 476, 483], "10j": 435, "10m": 284, "10px": 467, "10s": [102, 347], "10shhb": 347, "10x": [475, 476, 477, 480, 483], "10xxxxxx": 158, "11": [4, 7, 13, 23, 25, 26, 31, 33, 34, 35, 43, 52, 57, 58, 59, 60, 61, 68, 72, 85, 87, 89, 92, 93, 94, 95, 96, 100, 101, 102, 104, 105, 106, 109, 112, 113, 117, 120, 122, 126, 127, 128, 135, 136, 138, 139, 141, 146, 150, 151, 152, 153, 158, 160, 166, 169, 173, 175, 176, 181, 183, 184, 186, 191, 193, 211, 212, 213, 215, 218, 221, 225, 226, 230, 231, 234, 235, 236, 241, 242, 245, 247, 249, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 272, 275, 278, 281, 283, 287, 288, 291, 293, 295, 296, 297, 299, 301, 307, 318, 319, 321, 322, 330, 332, 333, 334, 336, 337, 339, 340, 341, 343, 344, 345, 347, 348, 349, 352, 354, 355, 358, 359, 360, 361, 362, 364, 366, 378, 379, 381, 383, 386, 388, 395, 397, 399, 400, 403, 407, 408, 412, 422, 423, 424, 425, 427, 428, 430, 431, 435, 436, 442, 446, 455, 456, 461, 464, 465, 466, 468, 470, 472, 474, 475, 477, 478, 479, 484], "110": [261, 305, 343, 345, 441], "1100": [343, 471], "110000": 464, "110017": 483, "110031": 483, "110033": 483, "110036": 483, "110038": 483, "110045": 483, "110088": 483, "1101": 468, "11015": 483, "11016": 477, "110167": 483, "110190": 483, "110196": 483, "1102": 483, "110237": 483, "11025": 295, "110259": 483, "110267": 483, "110345": 483, "110365": 483, "110367": 483, "110378": 483, "110388": 483, "110392": 483, "110395": 483, "1104": 483, "110437": 483, "110455": 483, "110459": 483, "110488": 483, "110514": 483, "110519": 483, "110543": 483, "110590": 483, "1106316": 468, "110647": 483, "110696": 483, "11072": 476, "110746": 483, "110782": 483, "110820": 483, "11085": 476, "11089": 476, "110894": 483, "1109": 343, "110910": 483, "110913": 483, "110918": 483, "110932": 483, "110938": 483, "110950": 483, "110995": 483, "110xxxxx": 158, "111": [96, 109, 225, 261, 343, 345, 461], "1110": 225, "111015": 483, "11102": 483, "111046": 483, "111049": 483, "11105": 483, "111058": 483, "11109": 476, "111092": 483, "1110xxxx": 158, "11110xxx": 158, "11111111": [186, 344], "1111111111111111": 283, "11111113": 186, "11113": 476, "111159": 483, "111165": 483, "111174": 483, "111187": 483, "11122": 483, "111239": 483, "111251": 483, "111253": 483, "111293": 483, "111295": 483, "111342": 483, "111356": 483, "111358": 483, "111366": 483, "111380": 483, "1114111": [64, 352, 476], "1114112": [64, 158], "111460": 483, "111531": 483, "111541": 483, "1115886": 468, "111615": 483, "111654": 483, "111699": 483, "11175": 477, "111775": 483, "111784": 483, "111804": 483, "11183": 476, "111841": 483, "111856": 483, "111877": 483, "11191": 483, "11192": 483, "11193": 483, "111942": 483, "111_845": 343, "112": [186, 259, 343, 382, 472, 481, 482, 483], "112006": 483, "11205": 483, "112087": 483, "112088": 483, "112105": 483, "112125": 483, "112215": 483, "11223": 476, "112243": 483, "112266": 483, "112272535095293": 166, "112281": 483, "1123": [366, 471], "112305": 483, "11233": 483, "112334": 483, "112343": 483, "112356": 483, "112358": 483, "112364": 483, "112367": 483, "112387": 483, "112388": 483, "112414": 483, "112438": 483, "1125": 158, "112509": 483, "112536": 483, "112559": 483, "112578": 483, "112582705942171": 166, "1125899906842624": 444, "11259": 483, "112618": 483, "112625": 483, "112645": 483, "11271": [478, 483], "112716": 483, "112769": 483, "11281": 476, "112826": 474, "112867": 483, "11289": 476, "112898": 483, "11291": 476, "112932": 483, "112943": 483, "11297": 476, "113": [186, 221, 449], "113009": 483, "113028": 483, "113171": 483, "113188": 483, "113199": 483, "113214": 483, "113246": 483, "113267": 483, "113269": 483, "113280": 483, "113297": 483, "113320": 483, "113358": 483, "113407": 483, "113421": 483, "113516": 483, "113538": 483, "113543": 483, "113594": 483, "113602": 483, "113659": 483, "113661": 483, "1137": 468, "113703": 483, "113729": 483, "11377": 476, "113781": 483, "113877": 483, "11388": 476, "113892": 483, "11390": 477, "113903": 483, "113951": 483, "113964": 483, "114": [109, 122, 225], "114014": 483, "114053": 483, "114071": 483, "114077": 483, "11408": 98, "114096": 483, "11410": 483, "11414": 98, "114149": 483, "11418": 98, "1142331976": 78, "11424": 98, "114257": 483, "11428": 98, "1143": 160, "114328": 483, "11433": 98, "114388": 483, "114440": 483, "114492": 483, "1145": 103, "11453": 483, "114539": 348, "114563": 483, "114572": 483, "11471": 483, "114763": 483, "114781": 483, "114828": 483, "114887": 483, "114959": 483, "114965": 483, "115": [122, 225, 261, 345, 382, 483], "115009": 483, "115011": 483, "115015": 483, "115049": 483, "115059": 483, "1150640792": 176, "115122": 483, "115133": 483, "115154": 483, "115165": 483, "115167": 483, "115197": 483, "115233": 483, "115243": 483, "115280095190773": 166, "115392": 483, "115398": 483, "115399": 483, "11549": 480, "115543": 483, "115554": 483, "115570": 483, "11558": 483, "115596": 483, "115618": 483, "11571": 483, "115712": 483, "115720": 483, "115797848077099": 166, "1158": 468, "115809": 483, "115823": 483, "115874": 483, "115881": 483, "115886": 483, "11591": 476, "11594": 483, "115978": 483, "115979": 483, "11599": 483, "116034": 483, "116040": 483, "11610": 476, "116117": 483, "116143": 483, "116145": 483, "1162": 343, "11620": 483, "116296": 483, "116307": 483, "116313": 483, "116325": 483, "116333": 483, "116401": 483, "116484": 483, "116600": 483, "116604": 483, "116626": 483, "116735": 483, "116741": 483, "116764": 483, "116767": 483, "116773": 483, "116811": 483, "116869": 483, "11688": 476, "11694": 483, "116957": 483, "117": [382, 463, 483], "117021": 483, "117084": 483, "11709": 483, "117110": 483, "117178": 483, "117187": 483, "117216": 288, "117233": 483, "117267": 483, "1172711": 476, "117310": 483, "117313": 483, "11734": [479, 483], "117467": 483, "117503": 483, "117534": 483, "117535": 483, "117566": 483, "1176": 223, "117691": 483, "117692": 483, "117881": 483, "117894": 483, "117928": 483, "11798": 477, "117995": 483, "118013": 483, "1180193": 469, "118033": 483, "118042": 483, "1181": 468, "11811": 476, "11816": 477, "118164": 483, "118168": 483, "11822": [480, 483], "118221": 483, "11824": 483, "118263": 483, "118272": 483, "118314": 483, "118347": 483, "118404": 483, "118486": [474, 483], "118507": 483, "118513": 483, "118643": 483, "11866": 483, "11874": 483, "11888": 476, "118997": 483, "119": [288, 343, 382, 481], "119011": 483, "119050": 483, "119070": 483, "119118": 483, "11913": [480, 483], "119174": 483, "1192": 343, "119213": 483, "1193128": 468, "1193577": 468, "11939": 477, "11953": 483, "119585": 483, "11959": 477, "119690": 483, "119821": 483, "1198569": [480, 483], "11a1": 483, "11a2": 483, "11a4": 483, "11a7": 483, "11alpha": 483, "11b1": 483, "11da": [398, 467], "11s": 102, "11x": 472, "12": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 482, 484], "120": [59, 72, 95, 155, 193, 226, 261, 352, 384, 469, 479, 481, 483], "1200": [343, 456], "120000j": 471, "1200313": 476, "12006": 479, "12016": 476, "12021": 476, "12022": [473, 483], "12049": 476, "12067": 483, "120x": 476, "121": [343, 469], "12100": 476, "12139": 476, "12144": 483, "12168": 269, "12170": 476, "12178": 483, "1218234": 483, "12191": 476, "122": [469, 479], "12202": 483, "1220212": 469, "1221598": 468, "12220": 483, "1222585": 469, "12239": 483, "1224": 343, "123": [35, 73, 100, 102, 106, 122, 186, 221, 225, 261, 268, 337, 344, 347, 430, 440, 446, 462, 464, 468, 469, 471, 475], "1230540": [481, 483], "12306": 476, "12319": [479, 483], "12326": 476, "12328": 476, "1233329": 479, "1234": [176, 186, 259, 313, 329, 344, 378, 398, 442, 468, 472, 478, 483], "12345": [102, 176, 225, 440, 442, 465, 471, 479, 483], "123456": 183, "1234567": [186, 221, 452, 471], "12345678": 398, "12345678123456781234567812345678": 398, "123456789": 186, "1234567890": [345, 468], "123456789012": 466, "1234567890123": 464, "1234567890123l": 464, "1235": 166, "12380": 476, "12382": 483, "12387": 483, "123e": 186, "124": [469, 471, 475, 477], "12410": 483, "12414": 483, "12419": 269, "12428": 477, "12442": 476, "12458": 483, "1246": 94, "12486": 483, "125": [221, 446, 449, 468], "1250": 158, "1251": 158, "12518": 483, "1252": [158, 448, 452], "12523": 483, "12524": 242, "1253": 158, "1254": [158, 319], "12546": 483, "1255": 158, "12551": 476, "1256": 158, "1257": 158, "1258": 158, "126": [176, 259, 382, 481], "12629": 476, "12639": 483, "12646": 476, "127": [35, 58, 64, 102, 107, 109, 126, 133, 136, 170, 245, 247, 259, 283, 293, 338, 341, 344, 348, 352, 362, 382, 467, 478, 483], "1270084485": 96, "12707": 483, "12708": 476, "12715": 476, "12720": 476, "12728": 483, "1273829": 468, "1275": 466, "12753": 476, "1276": 382, "12760": 476, "12782": 472, "128": [35, 64, 87, 99, 102, 109, 141, 160, 177, 186, 226, 235, 259, 284, 293, 340, 341, 384, 398, 435, 449, 467, 474, 478, 483], "12800": 483, "12803": 476, "12822": 483, "1283": 483, "12844": [480, 483], "1286": 475, "12866": 477, "12885": 483, "12888": 476, "1289118": 475, "12892": 477, "129": 343, "12900": 483, "12915": [302, 483], "12921": 477, "12923": 483, "1294959": [482, 483], "1296": 261, "1297230027": 293, "1297230295": 293, "12_345": 225, "12b1": 483, "12beta1": 483, "12beta4": 483, "12f": 466, "12g": [444, 462], "12j": 471, "12s": 102, "12x": 476, "13": [68, 95, 98, 102, 104, 109, 112, 117, 139, 141, 150, 151, 152, 153, 158, 160, 173, 176, 183, 193, 211, 226, 236, 241, 249, 259, 261, 266, 272, 278, 281, 287, 294, 295, 301, 322, 332, 336, 339, 340, 343, 344, 345, 349, 352, 359, 360, 378, 386, 397, 403, 408, 429, 441, 444, 446, 449, 450, 464, 465, 466, 467, 468, 469, 473, 475, 477, 478, 480, 481, 482, 483, 484], "130": [101, 259, 343, 469], "130283799226640": 84, "130283807619344": 84, "130283816012048": 84, "130283824404752": 84, "130283832797456": 84, "13041": 483, "13051": 483, "13054": 476, "13062": 476, "13096": 483, "13097": 483, "1310": 343, "131002": 426, "1311": 483, "13121": 476, "13128": 483, "13153": [481, 483], "132": 235, "13201": 476, "13204": 483, "1321": 235, "13216": 476, "1322": [478, 483], "13223": 483, "13226": 476, "132263": 183, "13227": 476, "13231": 109, "13232": 102, "13236": 483, "13245": 476, "13248": [477, 479, 483], "13266": 477, "13273": 476, "1327883547": 296, "13295": 476, "133": 382, "1330538": 468, "13312": 483, "1334": 382, "13341": 215, "13357": 476, "13358": 476, "13374": 476, "13390": 477, "1339796": 468, "13411": 476, "13449": 476, "13464": 476, "13477": 477, "13487": 483, "13501": 483, "135143996": 463, "13521": 476, "13550": 476, "13553": 483, "13583": [478, 483], "13585": 476, "13586": 483, "13592": 477, "13598": 483, "135_000": 483, "136": 463, "13600": 413, "13601": [482, 483], "13609": 476, "13611": [481, 483], "13620": 476, "13626": 476, "13627": 476, "13631": 483, "13633": 477, "13634": 476, "13635": 476, "13637": 476, "13641": 476, "1368247": 469, "136kb": 453, "137": 481, "13742": [478, 483], "13743": 483, "13748": 476, "13756": 483, "13773": 477, "13777": 476, "13790": 483, "13802": [479, 480, 483], "1381": 468, "13814": 483, "13847": 476, "13857": 476, "13866": [478, 483], "13884": 483, "13886": 483, "13891296": 85, "13896": 477, "139": [186, 382, 464], "13901272": 85, "13916": 483, "13918": [478, 483], "13936": [183, 478, 483], "1393667": 468, "13938": 483, "13952": 483, "13959": 476, "13960": 476, "13968": [478, 483], "13988": 476, "1399": 475, "13993": 476, "139966783348904": 176, "139966785747344": 176, "13b": 483, "13th": 378, "14": [61, 68, 85, 89, 95, 96, 98, 106, 109, 121, 139, 141, 150, 158, 160, 161, 166, 176, 177, 183, 186, 191, 193, 209, 225, 236, 241, 247, 250, 253, 259, 261, 283, 293, 296, 302, 319, 322, 332, 337, 340, 343, 344, 345, 352, 358, 366, 378, 386, 398, 413, 428, 430, 432, 435, 442, 444, 446, 449, 452, 464, 466, 467, 469, 472, 473, 475, 478, 483, 484], "140": [384, 469, 483], "1400": 261, "140000": [176, 345], "140000000000000124344978758017532527446746826171875": 186, "140000000000001": 467, "1400001049": 176, "140018365411392": 176, "140161580456576": [389, 390], "14040": 476, "140736940992272": 96, "140737213728528": 96, "140737354016512": 96, "14099": 483, "14105": 483, "141100": 413, "14117": 483, "1412": 96, "14127": 476, "14132": 483, "1414213": 221, "1415": [167, 186, 468], "14156": 483, "14159": [442, 444], "141592": 275, "1415926535": 186, "14159265358979": 352, "141592653589793": [154, 444, 475], "141592653589793115997963468544185161590576171875": 186, "1415926535897932": 221, "141592653589793238462643383": 186, "14159265359": [167, 444, 446], "1415926536": 481, "1415927": 283, "14159292": 186, "141593e": 221, "1416": [186, 442], "14166": 476, "14180": 476, "14191": [480, 483], "142": [382, 442, 446], "14203": 483, "14204": 476, "14210": 476, "1422": 341, "14243": 483, "14260": 483, "14265": 483, "14285": 483, "142857": [186, 193], "142857142857": 193, "14285714285714285": [193, 446], "142857142857142857142857142857142857": 452, "142857142857142857142857142857142857142857142857142857142857": 186, "1428571428571428571428571428571428571429": 221, "1428571428571428571428571429": [186, 466], "142857143": [186, 466], "143": [186, 248, 382, 384, 464], "14315": 483, "14323": 477, "143401161400469": 444, "143401161448607": 444, "14368": 451, "14373": [478, 483], "14377": 477, "14386": 476, "144": [85, 226, 261, 441, 449, 450, 481], "14400": 183, "14432": 477, "1444529": 468, "1445": 96, "14455": 477, "1446": 382, "14465": 483, "14470": 477, "14493": 476, "14538": 476, "1454": 382, "14546": 483, "14588": 476, "14605": 476, "14621": 477, "14624": 476, "14625": 477, "14626": 476, "14631": 477, "14646": 476, "14647": 483, "1465": 382, "14678": [472, 483], "147": [102, 481], "1473257": 468, "14738": 476, "14758": 478, "14794": 477, "148": 382, "14807": 476, "14837": 476, "148957571865031": 318, "1490190": 468, "14910": [478, 483], "14916": 483, "1491866": 468, "1492704": 477, "1492e7": 94, "14935": 483, "14976": [480, 483], "14977": 483, "14_15_93": 435, "14_15_93j": 435, "14e": 435, "14j": 435, "15": [68, 78, 85, 92, 95, 98, 101, 102, 108, 109, 131, 150, 158, 160, 167, 181, 183, 193, 203, 211, 215, 223, 236, 241, 247, 258, 259, 261, 266, 267, 288, 293, 299, 318, 319, 322, 340, 341, 343, 344, 345, 348, 352, 366, 367, 378, 381, 387, 424, 425, 435, 446, 456, 463, 465, 466, 467, 468, 469, 471, 472, 473, 475, 478, 479, 480, 481, 482, 483], "150": [343, 384, 388, 465, 469], "1500": [384, 483], "15002": 483, "15006": 476, "15010": 483, "15014": [478, 483], "15026": 476, "15027": [478, 483], "15037": 483, "1505": 465, "15061": 476, "15068": 483, "1507": [102, 468], "1508": 102, "15088": [482, 483], "15114": [476, 477, 478, 483], "15132": 477, "15133": 483, "1513695": 468, "1514420": 483, "1515": 469, "1515144883": 341, "15153": 476, "15156": 476, "1519638": [478, 483], "152": 93, "15204": 477, "1521": [143, 317], "15216": [480, 483], "1521950": 479, "1522": [146, 317], "1523": 469, "15234": 483, "15238": 476, "1524": 272, "15248": [481, 483], "1526": 382, "15275": 483, "1529353": [479, 480, 481, 483], "153": 102, "15303": 483, "15308": 483, "1530959": 468, "1533": 469, "1533909": 468, "1534": 468, "15347": 483, "15348": 483, "15359": 477, "15369": 483, "1537": 468, "1537721": 475, "1537850": 468, "15381": [478, 483], "154": [223, 284, 382, 466, 475], "15417": 477, "1542": 483, "1543": 96, "1544": 96, "15442": 477, "1545": 96, "15450": 483, "15452": 477, "1546": 96, "1547": 96, "1548": 96, "15480": 477, "155": [96, 319], "15506": 483, "15511187532873822802242430164693032110632597200169861120000": 468, "15513": 483, "15522": 483, "15523": 483, "15528": 477, "15530bba69924174860db778f2c6f8104d3aaf9d26241840c8c4a641c8d000a9": 235, "15582": [478, 483], "15596": 477, "15627": 477, "1563": 382, "15641": 477, "1565525": 477, "156641360502280": 98, "156641360518804": 98, "156641360532797": 98, "156641360546807": 98, "156641360563367": 98, "156641360578365": 98, "156641360591757": 98, "156641360605556": 98, "156641360617482": 98, "156641360629814": 98, "156641360642285": 98, "156641360656770": 98, "156641360669707": 98, "156641360687853": 98, "156641360700719": 98, "156641360719640": 98, "156641360732567": 98, "156641360747370": 98, "1569291": 475, "15696": 483, "157": [186, 479], "15701": 477, "1571184": 469, "15758": 477, "15759": 483, "15765": 337, "15767": 479, "15786": [479, 480, 483], "158": 474, "1580": 471, "15801": 483, "15805": 477, "15806": 477, "1581": 382, "1581073": 468, "15812": 483, "15819": 483, "1583": 468, "15836": 483, "1583863": 469, "15859": 483, "15873": [480, 483], "1588": 469, "1589": 475, "15903": 483, "1590864": 469, "15913": 483, "15916": [478, 483], "1591665": 468, "15944": 483, "15955": [478, 483], "15958": 477, "1596321": 483, "15968": 483, "1597": 441, "1599845": 468, "15999": 483, "15g": 352, "15s": [102, 267, 268, 469, 475], "15x": [475, 482, 483], "16": [4, 5, 16, 34, 41, 47, 68, 78, 85, 89, 94, 95, 96, 102, 107, 109, 117, 121, 141, 146, 150, 158, 173, 176, 177, 183, 193, 211, 221, 225, 226, 235, 236, 240, 259, 261, 262, 267, 283, 292, 293, 295, 314, 318, 319, 322, 326, 332, 337, 341, 343, 344, 345, 348, 352, 366, 369, 378, 398, 424, 426, 435, 440, 442, 444, 446, 449, 451, 452, 453, 456, 462, 464, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "160": [369, 382, 384, 426], "16000": 483, "1601": 405, "1602": 483, "16034": 477, "16043": 483, "16047": 483, "16049": 477, "1607951": 469, "16099": [479, 483], "161": 483, "16104": 478, "16110": 477, "16113": [479, 483], "1612262": [479, 480, 483], "16129": 477, "16133": 483, "16135": 477, "1613500": 483, "16136": 477, "1614": 382, "16148": 477, "1616979": [469, 475], "1617161": 483, "16180": 483, "16181": 483, "16182": 483, "16203": 477, "1621": 483, "16233": 483, "1625": 476, "16255": 483, "16285": [480, 483], "1629": 468, "16290": 477, "163": 483, "1631171": 468, "16314": [478, 483], "1632": 319, "16324": [478, 483], "16329": 483, "16333": 477, "1635": 468, "16351": 477, "1635741": [472, 483], "16379": [473, 483], "1638033": 468, "16382": 483, "16384": 303, "16396": 483, "1640": 468, "16421": 477, "16423": 477, "1646": 468, "16464": 477, "1647489": 483, "16475": 477, "1648": 468, "16484": 483, "16486": 477, "16488": 477, "1649190": 468, "16499": 477, "165": [85, 267, 343], "16500": [480, 483], "16518": [478, 483], "16522": 477, "1652342830": 325, "1652342835": 325, "1652342840": 325, "16531": [478, 483], "16537": 483, "1653741": 483, "1655": [469, 471], "1657": 468, "16580": 483, "16594": 483, "16595": 477, "16596": 477, "166": [382, 386], "16613": 477, "16620": 483, "16624": 477, "16632": 477, "1663329": 468, "1664": [469, 471], "16662": [478, 483], "1667": 483, "16674": 477, "16685": 477, "16690": 483, "16692": 477, "16694": 477, "167": 382, "16709": 477, "16711680": 344, "1673007": 476, "1674032": 469, "16742": 477, "1675": 332, "16754": 477, "1675423": 468, "1675951": 475, "16764": [479, 483], "16772": 477, "16795": 483, "168": [99, 102, 243, 259, 267, 345], "16806": 483, "16808": [478, 483], "1681432": 468, "16832": 477, "1683368": 468, "16840": 483, "16864": [479, 483], "1686487": 468, "16865": 483, "16893": 483, "1690608": 476, "16914": [478, 483], "16935": 477, "1696199": [469, 471], "16965": 483, "16967": 477, "16970": 483, "16991": [478, 483], "16995": 483, "16997": 477, "16be": 158, "16fd2706": [398, 467], "16g": 352, "16le": 158, "16mb": 483, "17": [4, 68, 94, 95, 102, 109, 139, 150, 183, 186, 190, 193, 208, 223, 236, 257, 261, 292, 293, 319, 366, 378, 426, 444, 449, 463, 466, 468, 469, 471, 474, 475, 477, 478, 483, 484], "170": [343, 384], "1700": 347, "1700288": 468, "17005": [482, 483], "17015": 477, "1703178": 483, "17045": 483, "1706815": 468, "17087": 477, "17094": 477, "17095": 483, "17115": 477, "17128": 483, "17134": 477, "17140": 483, "17150": 477, "17159": 477, "17162": 477, "17172": 483, "17185": 483, "172": [109, 343, 476], "17201": 477, "17211": 479, "17214": 483, "17219": 483, "1722344": 469, "17232": 483, "17239": [481, 483], "17258": 483, "17272": 477, "17276": 477, "1727780": 468, "1728": 382, "17288": 483, "1729": 283, "17293": 483, "173": 468, "1730": 248, "17323": 477, "1734346": 468, "1736190": 468, "17373": [478, 483], "1738": 394, "17381": 483, "17386": 483, "17390": 483, "1739468": [468, 471, 478], "17396": 483, "1739906": 468, "17400": 477, "17401": 483, "17422": 483, "17434": 477, "17442": [478, 483], "17445": [478, 483], "17457": 477, "1745761": 476, "17467": 477, "17481": 477, "17482": 226, "17485": 477, "17487": 477, "17498": 483, "1750": 341, "17500": 483, "175091447274739": 343, "17527": 483, "1753": 483, "17530": 483, "1753245": 468, "17535": [480, 481, 483], "1755": [288, 476], "17552": [478, 483], "17561": [481, 483], "17565798759460449": 465, "17574405670166016": 465, "17582": 483, "17596": 483, "17599": 483, "176": 117, "17603": 483, "17611": [481, 483], "17616": 477, "17618": 477, "17621": [478, 483], "17633": 483, "17636": [478, 483], "17642": 483, "1764286": 483, "17643": 477, "17654": 483, "1766": 266, "17660": 478, "1770": 109, "17711": 483, "17717": 483, "1772673": 477, "1772833": 475, "17735": 483, "17741": 477, "1775025": 468, "17752": 483, "17756": 483, "17764": 477, "17765": 483, "1777412": 475, "17792": 483, "17799": 483, "178": 85, "17804": 477, "17818": 477, "17826": 483, "17827": 477, "17828": 477, "17839": 477, "1783957616": 467, "17852": 483, "17853": 477, "17861": 483, "17884": [479, 483], "1788835886": 369, "17896": 483, "179": 369, "17909": [479, 483], "17911": [478, 483], "17914": 477, "17916": 477, "17923": 483, "17934": 477, "17941": [479, 483], "17970987693706186": 451, "1798": 468, "17f": 444, "17g": [462, 471], "17x": [261, 472, 483], "18": [80, 89, 95, 98, 109, 150, 183, 186, 193, 223, 226, 236, 296, 318, 319, 332, 341, 343, 344, 347, 352, 376, 446, 451, 465, 466, 469, 472, 473, 474, 475, 480, 481, 482, 483], "180": [155, 235, 343, 384, 475], "1800146073117523": 318, "18010": 483, "18011": 477, "18014398509481984l": 468, "18018": [479, 483], "18020": 477, "18039": [478, 483], "1804289383": 176, "18049": 483, "18058": 477, "18060": 483, "18065": 477, "18072": 477, "18075": 483, "1808": [394, 478, 483], "18093": 483, "18096": 483, "18104": 483, "1811": 469, "18111": 477, "1812": 483, "18128": 483, "18132": 483, "18138": 477, "18143": 477, "18147": 477, "18149": 477, "18159": 478, "1817": 468, "18174": 483, "1818": [469, 471], "1819": 468, "18192": 477, "18193": 477, "18193507194519043": 465, "18194": 477, "18214": 477, "18216": 483, "18219": 483, "18240": 477, "18283": 483, "18287": 483, "18288201344": 466, "18288201344j": 466, "1828820134592177245001": 466, "18292": 483, "183": 369, "18314": 483, "18319": 483, "1832": 408, "18338": 477, "18348": 483, "18369": 483, "18372": 483, "18374": 483, "18378": 483, "18379": 477, "18383": 483, "18393": 477, "18395": [478, 483], "184": 337, "18401": 483, "18408": 477, "18409": 483, "18410": 483, "18416": 477, "18446744073709551616": [462, 469], "18446744073709551616l": 464, "18473": 483, "18492": 483, "185": [382, 471], "18518": 483, "18520": 477, "18531": 483, "18532": 477, "18533": 483, "18540": 483, "18554": 483, "18569": 477, "18578": 483, "18582": 477, "18585": 477, "18592": 483, "18596": 477, "18600": 477, "18604": 483, "1861": 468, "18615": [478, 483], "18622": 483, "18626": 477, "18643": 483, "1866884": 483, "18673": 477, "18682": 483, "18684": 483, "1869": 335, "18690": 477, "187": 467, "1870": 476, "18711": [478, 483], "18725": 477, "18726": [479, 483], "18748": [188, 481, 483], "1875": 483, "18756": 477, "18764": 477, "18771": 477, "18775": 477, "1878": 468, "18787": 483, "18794": 477, "18802": 483, "18807": [477, 483], "18818": 477, "18819": 483, "18823": 477, "18844": [479, 483], "18853": 483, "18878": 477, "18882": 477, "18891": 477, "18893": 483, "18896": [480, 483], "189": 479, "18901": 477, "18910": 483, "18920": 477, "18922": 477, "18929": 477, "1893": 337, "18931": [478, 483], "18937": 477, "1895": 426, "18966": [480, 483], "18973": 483, "18974": 483, "18978": 477, "18982": 483, "18983": [478, 483], "18999": 477, "18t15": 183, "18x": 472, "19": [86, 89, 95, 96, 101, 102, 106, 109, 139, 150, 160, 176, 183, 186, 193, 209, 223, 236, 261, 293, 341, 343, 344, 345, 423, 465, 466, 467, 468, 469, 472, 475, 481, 482, 483], "190": [85, 343, 464], "1900": [86, 183, 366, 435, 468, 475], "19003": 483, "1902": 483, "19030": 477, "19072": [473, 483], "19076": 483, "19078": 477, "19104": 483, "19105": 483, "19132": 477, "19143": 483, "19152": 477, "19157": 483, "19165": 483, "19176": 483, "19199": 477, "192": [99, 102, 243, 259, 267, 345], "19201": 477, "19205": 477, "19209": 477, "19218": 477, "19219": 477, "19222": [477, 478], "19223": 477, "19235": [478, 483], "1926": 475, "19261": 477, "19266": 477, "19270": 483, "19274": 477, "19282": 477, "1929": 483, "19292": 477, "193": [243, 384, 470], "1932": 483, "19324": 477, "19343": 477, "19361": [478, 483], "19375": 477, "19380": [478, 483], "19385": 483, "1939": 305, "19398": 483, "19407": 483, "19413": 477, "19414": 483, "19417": 483, "19435": 483, "1944": 183, "1945": 183, "19450": 483, "1946": 337, "19460": 483, "19466": 483, "19468": 483, "19475": [479, 483], "19489": 483, "19493": 483, "19494": [478, 483], "195": [343, 479], "19500": [479, 483], "19505": [478, 483], "19524": 483, "19537": 483, "19542": 483, "19546": 483, "19548": 483, "19552": 477, "19555": 477, "19569": 483, "1957": 340, "19573": 483, "1960": 147, "19610": 483, "19611": [479, 483], "19619": 477, "19628": [478, 483], "1963": 147, "1964": 451, "19641": 477, "19655": 483, "1966": 183, "19662": 478, "19665591977536678": 367, "19668": 477, "1967": [183, 384, 469], "19674": 477, "19675": 483, "19676": [478, 483], "1968": 34, "19689": 477, "1969": 366, "19696": 483, "19697": 483, "1970": [78, 80, 147, 150, 183, 339, 366, 483], "19705": 483, "1971": [262, 340, 343], "19711": 483, "19717": 483, "1972": [109, 340, 465, 466, 467], "19722": 477, "19737": 483, "19746": [478, 483], "19748": 483, "1975": [93, 147, 262, 340, 343, 449, 481], "19764": [480, 483], "19771": 483, "19775": [478, 483], "19776": [478, 483], "19777": [478, 483], "1979": [340, 343], "1980": [158, 190, 422, 483], "1980s": 468, "1982": [340, 343, 366], "19824": 483, "1983": [340, 343], "1984": 340, "19840": 478, "1985": [153, 340], "19858": 483, "1986": [147, 183], "19865": 483, "1987": [154, 158, 183, 408], "1988": [183, 190, 358, 468], "19883": 483, "19884": 483, "1989": [80, 183, 468], "19891": 483, "19896": 483, "199": 241, "1990": 426, "19903": 483, "1990s": [468, 483], "1991": [33, 69, 80, 340, 426], "19925": 483, "1993": [366, 483], "19930": [480, 483], "19933": 483, "19937": 318, "1994": [245, 426], "19940": [478, 483], "19946": 477, "1995": [33, 69, 209, 426, 462, 483], "1996": 426, "19962": 483, "1997": [33, 147, 426, 469, 475], "19977": [478, 483], "1998": [106, 111, 318, 426], "19980": 483, "1999": [352, 366, 395, 426], "1999149567": 369, "19995": 483, "19996": 483, "1999999999999999555910790149937383830547332763671875": 78, "19999999999999996": 78, "1999999999999999997": 186, "199999999999ap": 471, "19da": 475, "19s": 476, "1_000": [261, 483], "1_000_000": [318, 479, 483], "1_000_000_000_000_000": 479, "1_000_000_000_000_007": 261, "1_000_000_000_000_403": 261, "1_234_567": 221, "1_400": 343, "1_650_000_000": 325, "1_680": 343, "1a": [211, 479], "1a2": 4, "1b": 483, "1beta1": 462, "1bf21a98c78a1c376ae9": 235, "1c": 483, "1d": [344, 483], "1e": [154, 225, 275, 345, 347, 430, 478, 483], "1e100": [193, 275, 430, 435], "1e100j": 435, "1e25": 474, "1e300": 193, "1e50": 344, "1e500": 18, "1e6": 225, "1e9": 483, "1e9999999999999999999": 186, "1els": [472, 474], "1f": [102, 318, 382, 483], "1f600": 109, "1f609": 109, "1g": [469, 483], "1h": [98, 469], "1i": 483, "1j": [87, 154, 262, 389, 483], "1k": 483, "1l": [35, 341, 464, 465, 468, 469, 483], "1m": 483, "1mb": 469, "1n": 483, "1not": 483, "1or": [472, 474], "1p2": 460, "1q": 483, "1s": [120, 483], "1st": [85, 183, 261], "1t": 483, "1u": 483, "1v": 483, "1w": 483, "20": [78, 85, 89, 92, 93, 95, 98, 101, 102, 106, 109, 134, 139, 150, 155, 176, 181, 183, 186, 193, 209, 211, 221, 235, 236, 247, 255, 259, 261, 267, 283, 293, 296, 308, 318, 319, 321, 322, 337, 341, 343, 344, 352, 358, 366, 367, 384, 386, 394, 396, 426, 435, 440, 449, 451, 455, 456, 462, 466, 467, 468, 469, 471, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "200": [78, 85, 110, 155, 177, 186, 190, 223, 241, 242, 245, 337, 341, 344, 369, 384, 388, 395, 407, 427, 446, 452, 465, 479, 481, 483], "2000": [69, 85, 101, 150, 158, 223, 269, 284, 366, 384, 426, 441, 444, 462, 465, 468, 475, 476, 477, 483], "20000": [186, 367], "200000": [176, 367], "2001": [69, 99, 102, 209, 259, 332, 358, 366, 413, 422, 426, 463, 464, 465, 468, 475, 481, 483], "2001_0db8_0000_0000_0000_0000_0000_1000": 259, "2002": [103, 109, 183, 259, 426, 464, 465], "20022": 483, "20028": 483, "2003": [102, 183, 267, 413, 423, 451, 465, 468, 483], "20030112190404": 288, "20035": [478, 483], "2004": [158, 183, 376, 426, 466], "20041": 483, "20047": 483, "2004h": 483, "2005": [101, 102, 183, 271, 426, 466, 467, 468, 483], "20059": [479, 483], "2006": [78, 95, 183, 267, 314, 411, 413, 422, 426, 467, 482], "20060816": [314, 411, 413], "20061227": 106, "2007": [183, 369, 426, 468, 483], "20071127": 395, "20076": 483, "20079": 483, "2008": [33, 158, 183, 223, 332, 347, 413, 426, 468, 469, 470, 475, 483], "20087": 483, "2009": [102, 183, 319, 340, 390, 426, 463, 469, 471], "20092": [481, 483], "20098": [478, 483], "200c": 469, "200x100": 369, "200x200": 384, "201": [96, 110, 241, 261, 369, 462], "2010": [101, 102, 109, 267, 332, 345, 352, 390, 469, 475], "20104": 483, "2011": [183, 203, 341, 413, 426, 428, 455, 475], "20111104": 183, "20111104t000523": 183, "2012": [85, 92, 109, 223, 476, 482, 483], "20120": 483, "2013": [92, 102, 109, 183, 294, 341, 426, 483], "201311": 483, "2014": [183, 237, 341, 468, 469, 477, 483], "20140210194412": 103, "20145": 483, "2015": [102, 183, 326, 426, 456, 478, 483], "20152": 483, "20155": 483, "2016": [78, 183, 341, 446, 453, 461, 479, 480, 483], "20160321211320": 467, "20160331090247": 467, "20161005": 455, "2017": [86, 294, 341, 435, 456, 483], "20170": 483, "20170401": 483, "20173": 483, "20177": 483, "20179": 483, "2018": [341, 473, 480, 483], "20180": 483, "20180309043602": 483, "20180410025338": 467, "20184": 483, "20188": [478, 483], "2019": [183, 343, 455, 481, 483], "20190511": 177, "20191": [426, 483], "20191204": 183, "20197": [478, 483], "202": [110, 183, 235, 241], "2020": [105, 344, 425, 426, 469, 472, 473, 480, 481, 482, 483], "202002l": 483, "20200703234532": 469, "20201124024954": 467, "20204": [478, 483], "2021": [183, 426, 468, 472, 483], "20210": 483, "20210224183619": 84, "20210619163128": 469, "20211": 483, "20218": [478, 483], "2022": [158, 183, 195, 235, 448, 451, 466, 473, 483], "20220517033456": 426, "2023": [69, 102, 409, 426, 474, 483], "20239": 483, "2024": [474, 483], "20260": 483, "20274": 483, "2028": 262, "20283": 483, "20284": 483, "20285": 483, "20289": [478, 483], "2029": 262, "20291": 483, "20295": [478, 483], "203": [110, 241], "20314": 483, "2033": 468, "20334": [478, 483], "20335": 483, "20355": 483, "20361": [480, 483], "20362": 483, "20366": 483, "20369": 483, "2037": 483, "203718": 200, "20378": 483, "2038": [183, 366, 483], "20383": [478, 483], "20387": 483, "20392": 483, "2039930378537762": 481, "204": [110, 241, 245, 384], "20416": [478, 483], "20421": [478, 483], "20438": 478, "20440": 483, "20443": [482, 483], "2045": [143, 194, 196, 202, 203, 205, 419], "2046": [194, 197, 202], "2047": [194, 202, 203, 208, 209, 235, 475], "20476": 479, "2048": [107, 341, 405, 483], "20480": [478, 483], "20486": [480, 483], "20490": 483, "20491": 483, "20499": 483, "204_199": 343, "205": [68, 110, 241, 245, 288, 402, 483, 484], "20504": 483, "20508": 483, "20519": 483, "2052": [478, 483], "20523": [482, 483], "20524": 483, "20526": 483, "20535": 483, "20537": [478, 483], "20539": 483, "2054": 469, "20567": 483, "20572": 483, "20574": 483, "20577": 483, "20578": 478, "20586": 483, "20589": 483, "206": [110, 241], "2060": [158, 248], "20602": 483, "20625": 477, "20627": [478, 483], "20633": 483, "20635": 483, "20636": 483, "20637": 483, "20639": 483, "20640": 483, "20644": 483, "20668": 483, "2068": [244, 366], "20684": 483, "20691": [478, 483], "20692": 483, "207": [68, 241, 308, 484], "20709": 483, "20710": 477, "20726": [478, 483], "20729": 483, "20731": 483, "20743": 483, "20746": 483, "20765": 483, "20766": 483, "20769": 483, "20778": 483, "20784": 477, "20791": 483, "208": [68, 241, 484], "2080": 318, "20804": [480, 483], "20816": 483, "20817": 483, "20825": [480, 483], "20826": [478, 483], "20844": 483, "20849": [481, 483], "20875": 483, "20879": 483, "20884": 483, "20891": 483, "20896": 483, "20900": 483, "20904": 483, "20907": 483, "2091": [479, 483], "20912": 483, "20928": 483, "20929": 483, "20939": 483, "20942": 483, "20951": [478, 483], "20968": [478, 483], "20980": 483, "20990": 483, "20995": [480, 483], "20998": 483, "20d9cd024d4fb086aae819a1432dd2466de12947831b75c5a30cf2676095d3b4": 235, "20ni": 394, "20th": 462, "20x": [472, 474], "21": [78, 95, 98, 102, 109, 150, 183, 186, 190, 203, 223, 226, 235, 236, 319, 341, 343, 366, 378, 382, 441, 449, 450, 455, 464, 465, 467, 468, 475, 476, 479, 481, 482, 483], "210": 261, "2100": 435, "21000": 483, "21013": 483, "21015": 483, "21016": 483, "21032": 483, "21037": 483, "2104": 464, "21041": [472, 483], "21043": 483, "21044": 483, "21047": [478, 483], "21052": 483, "21057": 483, "21058": 483, "21060": 483, "21068": 483, "2107": [422, 483], "21071": [480, 483], "21075": 483, "21076": [478, 483], "21079": 483, "21082": [293, 483], "21083": 478, "21085": 483, "21088": 483, "2109": [243, 244], "21090": 483, "21091": 483, "21093": 483, "21097": 483, "21099": 483, "210s": 474, "211": [154, 288, 476], "21101": 483, "21112": 483, "21116": 483, "21117": 483, "21120": 483, "21121": 483, "21122": 483, "21124": 483, "21127": 483, "21131": 483, "21134": 483, "21136": 483, "21137": 483, "21139": 483, "21141": 483, "21145": [481, 483], "21147": 483, "21149": 483, "21151": 483, "21155": 483, "21156": [478, 483], "21159": 483, "21166": 483, "21167": 483, "21169": 483, "21171": 483, "21172": 483, "21173": 483, "21176": [478, 483], "2118": 477, "21192": 483, "21193": 483, "21197": 483, "21200": 483, "21201": 483, "21203": 483, "21205": [478, 483], "21207": 483, "21209": 483, "21212": 167, "21217": 483, "2122": [481, 483], "21222": 483, "21223": 483, "21226": 483, "21233": [478, 483], "21236": 483, "21238": [478, 483], "21239": 483, "2125": 468, "21256": 483, "21257": 483, "21262": [478, 483], "21263": 483, "21269": 483, "21270": 483, "21271": [479, 483], "21272": 483, "21274": 483, "21275": 483, "21276": 483, "21277": 483, "21284": 483, "21285": 483, "21291": 483, "21295": 483, "212a": [106, 319], "21302": [473, 483], "21304": 469, "21305": 469, "21306": 469, "21307": 469, "21308": 469, "2131": 382, "21310": 483, "21311": 483, "21312": 483, "21313": 483, "21314": 483, "21315": 483, "21321": 483, "21323": 483, "21326": [478, 483], "21332": 483, "21338": [478, 483], "2135": 483, "21354": 483, "21356": 483, "21377": 483, "2138": 468, "21386": 483, "21389": 483, "21391": 483, "21396": 483, "21398": 483, "214": [186, 308], "21402": 483, "21407": 483, "21408": 483, "21417": [480, 483], "21418": 483, "21421": 483, "21423": [480, 483], "21424": 483, "21425": 483, "21435": 483, "21446": 483, "21448": 483, "21455": [478, 483], "21456": 483, "21462": 469, "21463": 483, "21469": 483, "21474": 483, "2147483647": [419, 435, 467], "2147483648": 419, "21476": 483, "21477": 483, "21478": 483, "21486": [478, 483], "21487": [478, 483], "21491": 483, "21493": 483, "21499": 483, "21503": 483, "21513": 483, "21514": 483, "21515": 483, "21519": 483, "2152": 483, "21520": 483, "21522": 483, "21523": 483, "21525": 483, "21526": 483, "21527": [478, 483], "21529": 483, "21536": [481, 483], "21538": 483, "21539": [478, 483], "21548": 483, "21549": [478, 483], "2155": 344, "21552": 483, "21565": 478, "21578": 483, "21580": 483, "2159": 483, "21590": [479, 483], "21597": 483, "216": [337, 446, 449], "2160": 387, "21600": 483, "21605": 483, "21618": 483, "21619": 483, "21629": 483, "21634": 483, "21642": 483, "21649": 483, "21650": [478, 483], "21668": 483, "21669": 483, "2167": 109, "21671": 469, "21676": 483, "21677": 483, "21679": 483, "2168": 109, "21686": 483, "21694": 483, "21695": 483, "21697": 483, "217": [68, 382, 484], "21703": 483, "21704": 483, "21706": 478, "21707": 483, "21708": [479, 483], "2171": 96, "21711": 483, "21714": 483, "217160342717258261933904529e": 378, "21716034272e": 378, "21717": [478, 483], "21718": 483, "21719": [478, 483], "21720": 483, "21722": 483, "21723": 483, "21725": [478, 483], "21729": 483, "21736": 483, "21740": 483, "2175": [478, 483], "21750": 483, "21760": 483, "21765": 483, "21766": 483, "21767": 483, "21775": 483, "21776": 483, "21777": 483, "21781": 483, "21793": [478, 483], "21795": [478, 483], "218": [68, 226, 484], "2180": 483, "21800": [478, 483], "21801": 483, "21802": 483, "21804": [478, 483], "21811": 483, "21815": [479, 483], "21817": 483, "21827": 483, "2183": [194, 196, 205, 483], "21832": 483, "21858": 483, "21859": 483, "21862": [480, 483], "21863": 483, "21866": 483, "21872": 483, "2188": 341, "21883": 483, "21888": 483, "21897": 483, "21905": 483, "21906": 483, "21907": 483, "21916": 483, "21918": 483, "21923": 483, "21925": 483, "21931": 483, "21932": 483, "21933": 483, "21939": 483, "21940": 483, "21942": 483, "21947": 483, "21951": 483, "21958": 483, "2196": 468, "21965": [478, 483], "21966": 483, "21971": 483, "21975": 483, "21976": 483, "2197947391": 341, "21983": 483, "21986": 483, "21987": 483, "21991": 483, "21995": 483, "21st": 483, "22": [33, 77, 96, 102, 106, 109, 150, 160, 173, 176, 183, 191, 236, 247, 259, 261, 267, 284, 318, 337, 341, 343, 345, 384, 423, 426, 444, 465, 474, 475, 481, 482, 483], "220": [337, 341, 441], "22002": 483, "22003": [478, 483], "22005": 483, "22018": [478, 483], "2202": 483, "22027": [478, 483], "22031": 483, "22032": 483, "22033": 483, "22038": 483, "22042": 483, "22043": [478, 483], "22044": 483, "22047": 483, "22050": 295, "22051": 483, "22054": [478, 483], "22060": 483, "22062": 483, "22068": 483, "2207": 95, "22077": 483, "22079": 483, "22082": 483, "22085": 483, "22091": 483, "22095": 483, "22098": 483, "221": 223, "22102": 483, "22104": 483, "22107": 483, "2211": [478, 483], "22111": 483, "22115": [479, 483], "22116": 483, "22117": 483, "22118": [478, 483], "22120": 483, "22127": 483, "22138": 483, "22140": 483, "22153": 483, "22155": 483, "22165": 483, "22166": 483, "22168": 483, "22173": 483, "22176": 483, "22181": [478, 483], "22182": 483, "22184": 483, "22185": 483, "22189": [478, 483], "22201": 483, "22206": 483, "22215": 483, "22216": 483, "22217": 483, "22219": 483, "22222": 452, "22222222": 344, "22226": 483, "22227": 483, "22233": 483, "22236": 483, "22241": 483, "22247": 483, "22257": [480, 483], "22258": 483, "22274": 483, "22276": [473, 483], "22278": 483, "22286": [478, 483], "22287": 483, "22289": 483, "223": 158, "2231": [194, 196, 202, 205, 209, 483], "22314": 483, "22335": 483, "22338": 483, "2235": 468, "22351": 483, "22352": 483, "22359": 483, "22362": 483, "22364": 483, "22366": [478, 483], "22370": 483, "22377": 483, "22384": 483, "22385": 483, "22389": [478, 483], "22390": 483, "22394": 483, "22396": 483, "223967b49e49": 479, "224": [341, 467, 483], "2240": 468, "22406": 483, "22407": [478, 483], "22410": 483, "22415": 483, "22417": 483, "22419": 483, "22423": 483, "22427": 483, "22435": 483, "22437": [478, 483], "22445": 483, "22448": 483, "22449": 483, "22450": 483, "22453": [478, 483], "22454": 483, "22457": 483, "22462": 483, "22464": 478, "22470": 483, "22485": 483, "22486": [478, 482, 483], "22490": 483, "22493": [479, 483], "225": [343, 384, 462], "2250": 468, "22508": 483, "22517": 483, "2251799813685248": [221, 475], "2251799813685248l": 468, "22518": 483, "22519": 483, "22520": 483, "22524": [478, 483], "22536": 483, "22540": [478, 483], "22547": 483, "22557": 483, "22558": 483, "22560": 478, "22578": [478, 483], "2258": 102, "22585": 483, "22589": [480, 483], "22591": 483, "22592": 483, "226": [223, 241], "22602": 483, "22604": 483, "22609": 483, "22615": 483, "22619": [478, 483], "22631": 483, "22636": 483, "22638": [478, 483], "22640": [481, 483], "22641": 483, "22642": 483, "22643": 483, "22644": 483, "22653": 483, "22665": 483, "2267": 465, "22674": 483, "22676": 483, "226805979": 451, "22681": [478, 483], "22682": [478, 483], "22687": 483, "22696": [478, 483], "227": [68, 113, 484], "22703": 483, "22708": 483, "22721": 483, "22726": 483, "22733": 483, "22735": 483, "22759": 483, "22769": 483, "22770": 483, "22775": 483, "22776": 483, "22783": 483, "22788": [478, 483], "22796": [478, 483], "228": 343, "22806": 483, "22807": [480, 483], "22812": 483, "22815": 483, "22818": [478, 483], "22820": 483, "22821": 483, "22824": 483, "22826": 483, "22829": 479, "22834": [478, 483], "22836": 483, "22838": 483, "22841": 483, "22847": [478, 483], "22849": 483, "22854": 483, "22859": 483, "22865": 483, "22869": 483, "22872": 483, "2288": 483, "22885": 483, "22894": 483, "22896": 483, "22898": [479, 480, 483], "229": [68, 484], "22902": 483, "22903": 483, "22906": 483, "22908": 483, "22915": 483, "22919": 483, "2292": 483, "22921": 483, "22928": 483, "22931": 483, "22932": 483, "22935": 483, "22936": [478, 483], "22939": 483, "22940": [478, 483], "2295": 241, "22955": [478, 483], "22958": 483, "22959": 483, "22960": [478, 483], "22966": 483, "22970": 483, "22977": 483, "22980": 483, "22982": 483, "22986": 483, "22995": 483, "23": [20, 94, 96, 98, 102, 109, 150, 183, 186, 209, 225, 226, 236, 259, 261, 267, 283, 319, 332, 337, 344, 348, 359, 366, 367, 464, 465, 473, 475, 477, 478, 479, 481, 482, 483], "230": [68, 223, 475, 479, 484], "23000e": 186, "23001": [478, 483], "23004": 483, "23008": 483, "23009": 483, "23014": 478, "23016": 483, "23026": [479, 483], "23033": [480, 483], "23034": [479, 483], "23041": 483, "23048": 483, "23051": 483, "23057": [481, 483], "2305843009213693951": 475, "23063": 483, "23071": 483, "23076": 483, "23078": 483, "23082": 483, "23086": [478, 483], "23093": 483, "23094": 483, "23096": 483, "23098": 483, "23099": 483, "231": 102, "23103": 483, "23111": 483, "23112": 483, "2312": 158, "23132": 483, "23133": [478, 483], "23136": 483, "23138": 483, "23143": 483, "23144": 483, "23146": 483, "2315": 382, "23165": 483, "23171": [478, 483], "23180": 483, "23184": 483, "23185": [478, 483], "23186": [478, 483], "23192": 483, "23193": [478, 483], "232": [68, 484], "23205": 483, "23206": [478, 483], "23209": 483, "23211": 483, "23214": 483, "23215": 483, "23216": 483, "23220": 483, "23224": 483, "23225": 483, "23229": [479, 483], "23239": [478, 483], "2324": 241, "23247": 483, "23248": 483, "23250": 483, "23252": [478, 483], "23253": 483, "23254": 483, "23260": 483, "23262": 483, "23266": [478, 483], "23268": 483, "23275": 483, "23285": 483, "23290": 483, "233": [109, 226, 441, 449, 450], "23302": 483, "23309": 483, "23310": 483, "23319": 483, "23321": 483, "23325": 483, "23326": 483, "23328": 483, "23329": 483, "2333": 469, "23330": 483, "23338": 483, "23342": [478, 483], "23344": [478, 483], "23345": 483, "2335": 469, "23353": 483, "23361": 483, "23363": 483, "23364": 483, "23366": 483, "23367": 483, "23369": 483, "23374": 483, "23378": 483, "23392": 483, "23395": 483, "23399": 483, "234": [68, 186, 345, 452, 471, 478, 484], "23400": 483, "23403": 483, "23404": [469, 478, 479, 483], "23411": 483, "23413": 386, "2342": [248, 464], "23420": 483, "23421": 483, "23426": 483, "23427": [472, 483], "23430": [479, 483], "23437": [478, 483], "23441": 483, "23445": 483, "2345": 186, "23451": 483, "2345678": 186, "23456789": 186, "23460": 483, "23464": [478, 483], "23465": 483, "23466": 483, "23476": 483, "23481": 483, "23485": 483, "23488": [478, 483], "234881026": 293, "23491": [478, 483], "23492": 483, "235": [68, 250, 483, 484], "23500": 483, "23501": 483, "23502": 483, "23504": 483, "23517": 483, "23521": 483, "23529": 483, "23539": 483, "23544": 483, "23552": [479, 483], "23563": 483, "23564": 483, "23566": [478, 483], "23568": [478, 483], "23571": 483, "23572": 483, "23573": [478, 483], "23576": 483, "23581": [478, 483], "23583": 483, "23585": 483, "23589": 483, "23591": [479, 483], "23596": 483, "236": [68, 113, 436, 484], "23600": 483, "23601": 483, "23605": [478, 483], "23606": 483, "23611": [478, 483], "23615": 483, "23618": 483, "23622": [478, 483], "23629": 483, "23631": 483, "23632": [478, 483], "236337": 103, "236343": 103, "23640": 483, "23646": 483, "23647": 483, "23652": 483, "23657": 483, "23661": 483, "23668": [478, 483], "23671": [478, 483], "23672": 483, "2368": 394, "23681": [478, 483], "23686": 483, "23688": 483, "23689": 483, "23691": 483, "23699": [480, 483], "237": [68, 344, 470, 484], "23700": 483, "23702679807320237": 367, "23703": 483, "23704": [478, 483], "23706": 483, "23715": 483, "23718": 483, "23722": [479, 481, 483], "23725": 483, "23726": 483, "23728": 483, "2373": 259, "23731": 483, "23735": 483, "23742": 483, "23745": 483, "23749": [480, 483], "23752": 483, "23753": 483, "23765": 483, "2377": 476, "23775": 483, "23779": 483, "23780": 483, "23782": 483, "23792": 483, "23796": 483, "23799": 483, "238": [66, 68, 87, 113, 470, 484], "23801": 483, "23804": 483, "23811": 483, "23815": 483, "23817": 483, "23819": 483, "23831": [481, 483], "23834": 483, "23835": [480, 483], "23836": 483, "23838": 483, "23839": 483, "23840": 483, "23846": 483, "23848": [479, 483], "23853": [478, 483], "23859": 483, "23865": 483, "23867": 481, "23880": 483, "23881": 483, "23882": [473, 483], "23883": [479, 483], "23887": 483, "23888": 483, "23890": 483, "23894": 483, "23896": 483, "23898": 483, "239": 176, "23903": 483, "23908": 483, "23910": [478, 483], "23911": 483, "23914": 483, "23917": 483, "23919": 483, "23927": 483, "23934": 483, "23935": 483, "23944": 483, "23955": 483, "2396": [394, 469, 478, 480, 483], "23968": 483, "2397": 395, "23972": 483, "23973": 483, "23977": 483, "23985": 483, "23992": 483, "23996": 483, "23998": 483, "23e": 186, "23e999": 186, "23z": 183, "24": [4, 85, 94, 95, 96, 99, 106, 109, 139, 141, 150, 183, 186, 193, 209, 236, 259, 261, 295, 319, 332, 343, 344, 347, 349, 366, 424, 435, 469, 473, 476, 477, 481, 482, 483], "240": [288, 384], "24000": 483, "24001": 483, "2401": 465, "24017": [478, 483], "24018": [478, 483], "24022": 483, "24029": 483, "24031": 483, "24037": 483, "24044": 483, "24048": 483, "24064": [478, 483], "24076": 483, "24077": 483, "24091": 483, "24094": 483, "24096": 483, "24097": 483, "24098": 483, "241": [68, 484], "24102": 483, "24103": 483, "24114": 483, "24115": 483, "24120": 483, "24129": 483, "24132": 483, "24134": 483, "24136": 483, "24137": 483, "24139": [473, 483], "24142": 483, "24155": 483, "24160": [472, 483], "24164": [479, 483], "24178": 483, "24179": 483, "24184": [478, 483], "24190": [478, 483], "24192": 483, "24199": 483, "24206": 483, "24209": 483, "24211": [478, 483], "24214": 483, "2422": [469, 475], "24225": [479, 483], "242274": 483, "24230": 483, "24234": [473, 483], "24241": 483, "24244": 483, "24248": [478, 483], "24254": 483, "24257": 483, "24259": 483, "24266": 483, "24268": [478, 483], "24270": [478, 483], "24276": 483, "24277": [479, 483], "24284": [478, 483], "24285": 483, "24291": 483, "24298": 483, "243": [382, 463], "24305": 483, "24310": 483, "24324": 483, "24326": 483, "24328": 483, "24329": 483, "24334": 483, "24336": 483, "24340": 483, "24345": 483, "24347": 483, "24348": 483, "24351": 483, "24359": 483, "24360": 483, "24362": 483, "24368": 483, "24369": 483, "24373": 483, "24377": 483, "2439": 468, "24391": 483, "244": 382, "24400": [478, 483], "24402": 483, "24407": 483, "24408": 483, "24412": [481, 483], "24416": [482, 483], "24421": 483, "24426": 483, "2443": 475, "24432": 483, "24444": 483, "24450": [478, 483], "24452": 483, "24454": [479, 483], "24455": 483, "24456": 483, "24458": 483, "24464": [472, 483], "24467": 483, "24483": 483, "24484": 483, "24489": 483, "2449": 305, "24492": 483, "24514": 483, "24521": 483, "24522": 483, "24538": 483, "24552": 483, "24562": 483, "24564": 483, "24567": 483, "24569": 483, "24570": 483, "24580": 483, "24583": 483, "24594": 483, "24596": 483, "246": [340, 468, 483], "24603": 483, "24608": 483, "24618": 483, "24619": 483, "24620": 483, "24631": 483, "24633": 483, "24634": 483, "24635": 483, "24643": 483, "24657": 483, "24658": 483, "2466": 483, "24667": 483, "24669": 483, "24683": 483, "24684": 483, "24687": 483, "24688": 483, "24693": 483, "24695": 483, "247": 477, "24700": [480, 483], "24705": 483, "24723": 483, "24726": 483, "24729": 483, "24731": 483, "24744": [480, 483], "24745": 483, "24746": 483, "24748": 483, "24750": 483, "24751": 483, "24759": 483, "24764": 483, "24769": 483, "2476979795053773": [221, 475], "24773": [479, 483], "24774": 483, "24782": 483, "24790": 483, "24791": 483, "24792": 483, "24798": 483, "248": 337, "24801": 483, "24802": 483, "24806": 483, "24808": 483, "24820": 483, "24821": [480, 483], "24824": 483, "24838": 483, "24839": 483, "24847": 483, "24848": 483, "24857": 483, "24861": 483, "24867": 483, "2487": 464, "24870": 479, "24874": 483, "24879": [479, 483], "24881": 483, "24882": 483, "24884": 479, "24891": 483, "249": [340, 467, 474, 483], "24902": 483, "24903": 483, "24905": [473, 483], "24910": 483, "24912": 483, "24913": 483, "24915": 483, "24917": 483, "24932": 483, "2495": 96, "24952": 483, "24959": 483, "24960": 483, "24964": 483, "24965": 483, "24972": 483, "24975": 483, "24982": 483, "24986": 483, "24988": 483, "24989": 483, "24992": 483, "24n": 345, "25": [4, 85, 94, 95, 126, 150, 183, 186, 190, 221, 236, 259, 261, 283, 318, 319, 322, 335, 337, 340, 343, 344, 361, 378, 382, 384, 424, 442, 446, 448, 449, 451, 462, 464, 465, 466, 468, 469, 473, 474, 476, 478, 479, 480, 481, 482, 483], "250": [126, 223, 308, 335, 340, 384, 469], "25002": 479, "25003": 483, "25007": 483, "25008": 483, "25011": [479, 483], "25019": 483, "25022": 483, "25027": 483, "25029": 483, "25032": 483, "25034": 483, "2504": [481, 483], "25041": 483, "25047": 483, "25054": [480, 483], "25060": 483, "25066": 483, "25068": 483, "25071": 483, "25081": 483, "25089": 483, "25091": 483, "25092": 483, "25099": 483, "251": 468, "25102": 483, "25108": 483, "25111": 483, "25112": 483, "25118": 483, "2512": 102, "25126": 483, "25130": 483, "25131": 483, "25135": 483, "25136": 483, "25143": 483, "25144": 483, "25150": 483, "25154": [479, 483], "25155": 483, "25163": 483, "25164": 483, "25165": 483, "25169": 483, "25172": 483, "25173": 483, "25177": 483, "2518": 241, "25182": 483, "25188": 483, "25195": 483, "25198": 483, "25199": 483, "252": [68, 99, 428, 483, 484], "25203": 483, "25209": [479, 483], "25213": 483, "25219": 483, "25221": 483, "25224": 483, "25225": 483, "25227": [479, 483], "25232": 483, "25233": 483, "25237": 483, "25246": 483, "25260": 483, "25262": 483, "25264": 483, "25267": [479, 483], "2527": [478, 483], "25270": 483, "25274": 483, "25280": 483, "25283": 483, "25285": 483, "25287": [479, 483], "253": [68, 99, 484], "25301": [479, 483], "25304": 483, "2531": [96, 469, 475], "25313": 483, "25316": 483, "25319": 483, "25320": 483, "25324": 483, "25328": 483, "25339": 483, "253425": 476, "25348": 483, "25349": [479, 483], "25351": 483, "25357": [479, 483], "25361": 483, "25364": 483, "25377": 483, "25380": 483, "25381": 483, "25382": [479, 483], "25387": 483, "25388": 483, "25390": 483, "25395": 483, "25399": [479, 483], "254": [99, 483], "25400": 483, "25401": [479, 483], "25402": 483, "25406": 483, "25407": 483, "25410": 483, "25411": 483, "25416aea0573": 337, "25421": 483, "25427": [481, 483], "25430": 483, "25440": 483, "25441": 483, "25446": 483, "25447": 483, "25449": 483, "25450": 483, "25451": [481, 483], "25455": 483, "25462": 483, "25464": 483, "25471": 483, "25478": 483, "25483": 479, "25485": [479, 483], "25498": 483, "255": [35, 64, 68, 87, 92, 99, 109, 113, 158, 160, 177, 191, 225, 235, 259, 344, 347, 384, 430, 473, 476, 478, 480, 483, 484], "2550": 426, "25500": 483, "25503": 483, "25507": 483, "25510": 483, "25514": 483, "25515": 483, "25530": 483, "25532": 483, "25554": 483, "25555": 483, "25564": 483, "25569": 483, "25578": 483, "25583": 483, "25584": 483, "25590": 483, "25593": [479, 483], "25596": [479, 483], "25597": 483, "256": [39, 42, 64, 87, 99, 158, 173, 177, 186, 225, 235, 270, 326, 341, 344, 358, 428, 449, 466, 467, 481, 482, 483], "25604": 483, "25609": [479, 483], "25612": [480, 483], "25616": 483, "25624": 483, "25625": [473, 483], "25626": 483, "25628": [479, 483], "25630": 483, "25638": [479, 483], "25651": 483, "25652": 483, "25658": [480, 483], "25659": 483, "25660": 483, "25663": 483, "25672": 483, "25674": 483, "25677": 483, "25684": 483, "25688": 483, "25691": 483, "25696": 483, "256color": [177, 483], "256k": 467, "257": 483, "25702": 483, "25707": 483, "25709": 483, "25711": 483, "25715": 483, "25717": 483, "25718": 483, "25720": 483, "25725": 483, "2573": 467, "25735": 483, "25738": 483, "25745": 483, "25750": 483, "25758": 483, "25761": 483, "25764": 483, "25766": 483, "25768": [479, 483], "25771": 483, "25778": 483, "2578": 469, "25780": [482, 483], "25782": 483, "25788": [479, 483], "25791": [479, 483], "25794": 483, "25802": 483, "25803": 483, "25805": 483, "25822": 483, "25825": 483, "25827": 483, "25843": 483, "25850": 483, "25856": 483, "25860": 483, "25862": 483, "25869": [479, 483], "25873": [479, 483], "25887": 483, "25894": 483, "25895": 483, "259": [468, 483], "25902": 483, "25905": 483, "25911": 483, "25913": 483, "25914": 483, "25920": 483, "25924": 483, "25928": [479, 483], "25931": 483, "25935": 483, "25939": 483, "25940": 483, "25942": [480, 483], "25945": 483, "25949": 483, "2595": 305, "25951": 483, "25953": [479, 483], "25958": [479, 483], "25961": 483, "25969": 483, "25971": [479, 483], "25973": 483, "25974": 483, "25987": 479, "25988": [480, 483], "25994": [479, 483], "25995": 483, "25996": [480, 483], "25c8": 337, "25t00": 183, "25x": 473, "26": [92, 94, 101, 104, 150, 183, 211, 236, 259, 283, 318, 332, 341, 366, 367, 378, 394, 423, 426, 465, 466, 469, 475, 479, 481, 482, 483], "260": [440, 461, 469, 479], "26002": 483, "26012": 483, "26013": 483, "26014": 483, "26015": 483, "26020": 483, "26027": 483, "26032": [479, 483], "26039": [479, 483], "2604": 483, "26040": 483, "26041": 483, "26045": 483, "26050": 483, "26053": 483, "26058": 483, "2606": 337, "26065": 483, "26067": 483, "26069": 483, "26071": 483, "26073": 483, "26079": 483, "26081": [479, 483], "26099": 483, "261": [464, 483], "26103": 483, "26107": 483, "26110": [480, 483], "26117": 483, "26120": 483, "26121": [480, 483], "26129": [479, 483], "26131": [472, 483], "26133": 483, "26136": 483, "26146": [479, 483], "26147": 483, "26154": 483, "2616": [110, 242, 393, 395, 407, 475], "26163": 483, "26167": 483, "26168": 483, "26171": 483, "26175": 483, "26177": 483, "2618": 469, "26182": 483, "26185": 483, "26186": 483, "26187": 483, "26194": 483, "26198": 483, "262": 382, "26202": 483, "26204": 483, "26219": [481, 483], "26221": 479, "26227": 483, "26228": 483, "26241": 472, "26243": [479, 483], "26249": [479, 483], "26253": 483, "26268": 483, "26271": 483, "26273": [479, 480, 483], "26280": 483, "26282": [479, 483], "26288": 483, "26289": 483, "26293": 483, "26295": 483, "263": [68, 109, 250, 378, 467, 483, 484], "26302": 483, "26307": 483, "26309": 483, "26312": 483, "26313": 483, "26315": 483, "26316": 483, "26323": [479, 483], "26325": 483, "26331": 483, "26335": [479, 483], "26353": 483, "26355": 483, "26359": [479, 483], "26367": 483, "26373": 483, "26385": 483, "26386": 483, "26389": [472, 483], "264": [293, 347, 464], "2640": [223, 482, 483], "26402": 483, "26404": [479, 483], "26406": 483, "26407": 483, "26423": 483, "26439": 483, "26457": 483, "26464": 483, "26465": 483, "26467": [481, 483], "26470": [479, 483], "26475": 483, "26478": 483, "26482": [479, 483], "26488": 483, "26489": 483, "26492": [479, 483], "26494": 483, "26499": 483, "265": 483, "26502": 483, "26510": [480, 483], "26513": 483, "26516": [479, 483], "26523": 483, "265252859812191058636308480000000": 193, "26526": 483, "26530": 483, "26536": [479, 483], "26543": 483, "26544": 483, "26552": 483, "26556": 483, "26558": 483, "26560": 483, "26563": 483, "26564": [479, 483], "26567": [479, 483], "26568": 479, "26569": 483, "26574": [479, 483], "26579": [473, 483], "26581": 483, "26583": 483, "26585": 483, "26586": 483, "26587": [479, 483], "26588": [479, 483], "26589": 483, "26590": 483, "265e": 109, "265f": 109, "26616": 483, "26617": 483, "26624": 483, "266262841": 444, "2663": 468, "266310978": 444, "26634": 483, "26637": 483, "26641": 483, "26644": 483, "26647": [479, 483], "2665": 96, "26654": 483, "26657": 483, "26659": 483, "26660": 483, "26661": 483, "26662": 483, "26664": 483, "26667": 483, "26673": 483, "26676": 483, "26680": 483, "26685": [479, 483], "26704": 483, "26707": [481, 483], "26709": 483, "26711": 483, "26717": 483, "26718": 483, "26721": [479, 483], "26730": 483, "26732": 483, "26733": 483, "26735": 483, "26736": 483, "26741": [479, 483], "26750": 483, "26754": [479, 483], "26782": 483, "26789": 483, "26791": 483, "26792": 483, "26796": 483, "26798": [479, 483], "26799": 483, "26800": 483, "26801": 483, "26802": 483, "26804": 483, "26806": 483, "26807": 483, "26809": 483, "26811": 483, "26819": 483, "26822": 483, "26823": [479, 483], "26826": 483, "26835": 483, "26836": [481, 483], "26837": 483, "26839": 483, "26844": 483, "268443839": 341, "26848": 483, "26851": 483, "26864": 483, "26865": 479, "26867": 483, "26868": 483, "26870": [479, 483], "26873": 483, "26881": 483, "26884": 483, "26885": [479, 483], "26892": 483, "269": [96, 188, 483], "2690": 475, "26900": 483, "26903": 483, "26906": 483, "26907": 479, "26909": 483, "26915": 483, "26919": 483, "26920": 483, "26923": 483, "26930": 483, "26932": [452, 483], "26936": 483, "26937": 483, "26939": 483, "26944": 483, "26952": 483, "26967": 483, "26977": 483, "26978": [481, 483], "26981": 483, "26983": 483, "26984": 483, "26985": 483, "26991": 483, "26996": 483, "27": [94, 150, 183, 236, 257, 293, 319, 337, 341, 343, 367, 378, 435, 446, 449, 462, 465, 471, 472, 475, 476, 480, 481, 482, 483], "270": [183, 384], "27005": 483, "27007": 483, "27014": 483, "27025": 483, "27027": 483, "27029": 483, "27030": 483, "27031": 483, "27033": 483, "27034": 483, "27038": 483, "27039": 483, "27040": [479, 483], "27041": [479, 483], "27043": 483, "27044": 483, "27048": 483, "27053": 483, "27056": [479, 483], "27057": 483, "2706": 475, "27062": 483, "27064": 483, "27066": 483, "27078": [479, 483], "27079": 483, "27080": 483, "27083": 483, "27095": [479, 483], "27097": 483, "27099": [479, 480, 483], "271": 483, "27100": 483, "27114": 483, "27115": 483, "27117": 483, "27122": 483, "27129": 483, "27130": 483, "27137": 483, "27138": 483, "27140": [479, 483], "27141": 483, "27144": 483, "27145": 483, "27147": 483, "27156": 483, "27157": 483, "27164": 483, "27167": 483, "27169": 483, "27172": [479, 483], "27173": 483, "27177": [479, 483], "27181": [479, 481, 483], "27186": [479, 483], "2719": 468, "27190": 483, "27196": 483, "27199": 483, "272": [473, 483], "27212": 483, "27213": [479, 483], "27214": 483, "27222": 483, "27223": 483, "27229": 483, "27238": 483, "27239": 483, "27240": 483, "27243": [479, 483], "27245": 483, "27262": 483, "2727368790656328": 367, "27275": 483, "27278": 483, "27285": 483, "27286": 483, "27294": 483, "273": [68, 158, 270, 284, 423, 484], "27300": 483, "27309": 483, "27310": 483, "27313": 483, "27319": 483, "2732": [394, 469, 475], "27321": 483, "27330": 483, "27331": [479, 483], "27332": 483, "27334": 483, "27340": 483, "27348": 483, "27350": [479, 483], "27355": 483, "27358": 483, "27364": [479, 483], "27365": 483, "27366": 483, "27369": 483, "27372": 483, "27380": 483, "27392": [479, 483], "27397": 483, "274": 470, "27413": 483, "27418": 483, "27419": 483, "27427": 483, "27428": 483, "27434": 483, "27441": 483, "27442": 483, "27443": 483, "27445": 483, "27452": 483, "27453": 483, "27456": [479, 480, 483], "2746": 469, "27466": 483, "27469": 483, "27472": 483, "27473": 483, "27477": 483, "27485": 483, "27487": 483, "27494": 483, "27497": 483, "27500": 483, "27506": 483, "27507": 483, "27512": 483, "27513": 483, "27514": 483, "27517": 483, "27522": 483, "27524": 483, "27533": 483, "27535": 483, "27539": 483, "27541": 483, "27558": 483, "27566": 483, "27567": 483, "27568": 483, "27570": 483, "27573": 483, "27574": [479, 483], "27575": 483, "27576": 483, "27580": 483, "27581": 483, "27584": [480, 483], "27585": 483, "27587": 483, "27593": 483, "27594": 483, "27598": [479, 483], "27599": 483, "27609": 483, "27610": 483, "27611": 483, "27620": 483, "27621": 483, "27629": 483, "27635": 483, "27639": 483, "27640": [472, 483], "27641": 483, "27643": 483, "27645": [480, 483], "27646": 483, "27647": 483, "27656": 483, "27657": 483, "27659": 483, "27661": [479, 483], "27662": 483, "27664": [479, 483], "27666": 483, "27683": 483, "27691": 483, "277": [68, 484], "27704": 483, "27705": 483, "27706": 483, "27713": 483, "27714": 483, "27718": 483, "27731": 483, "27736": 483, "27737": 483, "2774": 241, "27744": [479, 483], "27752": 483, "27756": 483, "27758": 483, "27759": 483, "27760": 483, "27766": [479, 483], "27772": 483, "27773": 483, "27774": 483, "27776": 483, "27778": 483, "27781": [479, 483], "27782": 483, "27783": 483, "27787": 483, "27792": 483, "27794": 483, "278": [68, 87, 484], "27805": 483, "27807": 483, "27811": 483, "27812": 483, "27819": [479, 483], "27820": 483, "27821": 483, "27827": 483, "27832": 483, "27842": [479, 483], "27850": [479, 483], "27861": 483, "27863": 483, "27866": 483, "27867": [480, 483], "27870": 483, "27876": 384, "27881": 483, "27883": 483, "27884": 483, "27891": 483, "27897": 483, "279": [68, 226, 484], "27906": 483, "27911": 483, "27917": 483, "27919": [479, 483], "27922": 483, "27928": [479, 483], "27929": 483, "27930": 483, "27931": 483, "27932": [479, 483], "27936": 483, "27939": 483, "27942": 483, "27945": 483, "27946": 483, "27948": 483, "27952": 483, "27953": 483, "27955": 483, "27959": [479, 483], "27961": 483, "27972": 483, "27976": 483, "27979": [480, 483], "27982": [479, 483], "27983": 483, "27985": [479, 483], "27987": 483, "27988": 483, "27998": 483, "27999": 483, "27t00": 183, "28": [4, 33, 98, 102, 150, 186, 226, 236, 259, 340, 366, 384, 466, 467, 468, 472, 475, 481, 482, 483], "280": 479, "2800": 337, "28003": [479, 483], "28005": 483, "28008": 483, "28009": 483, "28015": 483, "28019": 483, "28022": [479, 483], "28023": 483, "28025": [479, 483], "28027": 483, "28029": [482, 483], "28037": 483, "28043": [479, 483], "28046": 483, "28047": 483, "28050": 479, "28055": 483, "28065": 483, "28066": 483, "28070": 483, "28071": 483, "28075": 483, "28080": [473, 483], "28082": 483, "28085": 479, "28086": 483, "28087": 483, "28097": 483, "28102": 483, "28110": 483, "28114": 483, "28115": 483, "28120": 483, "28124": [480, 483], "28126": 483, "28128": 483, "28131": 483, "28134": [480, 483], "28137": [480, 483], "28138": 483, "28146": 483, "28147": 483, "28148": 483, "28161": 483, "28162": 483, "28163": 483, "28164": 483, "28167": 483, "28174": 483, "28176": 483, "2818": 475, "28180": 483, "28181": 483, "28182": 483, "28183": 483, "28189": 483, "2819": 468, "28192": 483, "282": [68, 267, 332, 484], "28200": 483, "28201": 483, "28203": 483, "28208": 483, "2821": 194, "28214": 483, "28217": 483, "2822": [196, 202, 209, 242, 245, 271, 366, 451, 464], "28225": 483, "28226": 483, "28227": 483, "28228": 483, "28229": 483, "28231": 483, "28238": [481, 483], "28240": 483, "28247": 483, "28248": 483, "28249": 483, "28251": 483, "28253": 483, "28254": 483, "28255": 483, "28257": [479, 483], "28258": 483, "28269": 483, "28275": 483, "28280": [480, 483], "28281": 483, "28286": [482, 483], "28289": 483, "28292": [480, 483], "28293": 483, "28298": 483, "283": [80, 183], "283000": 183, "28307": [473, 483], "28314": 483, "28317": 483, "283185": 275, "28321": 483, "28322": 483, "28325": 483, "28326": 483, "28332": [480, 483], "28333": 483, "28334": 483, "28350": 483, "28353": 483, "28367": 483, "28368": 483, "28369": 483, "28370": [479, 483], "28371": 483, "28372": 483, "28376": 483, "28379": 483, "28380": 483, "28387": 483, "28399": 483, "284": 382, "28401": 483, "28402": 483, "28409": 483, "28411": [480, 483], "28414": [480, 483], "28416": 483, "28426": 483, "28427": 483, "28430": 483, "28440": [469, 483], "28441": 483, "28444": 483, "28448": 483, "28449": 483, "2846": [469, 475], "28468": [472, 483], "28469": 483, "28471": 483, "28480": 483, "28485": 483, "28488": 483, "28492": 483, "285": [68, 87, 440, 484], "28500": 483, "28503": 483, "285078": 384, "28509": 483, "28512": 483, "28513": 483, "28517": 483, "28518": 483, "28522": 483, "28523": 483, "28524": 267, "28528": 483, "28532": 483, "28538": 483, "28544": [479, 483], "28548": 483, "28549": 483, "28552": 483, "28556": 483, "28557": 483, "28563": 483, "28564": [480, 483], "28572": 483, "28577": 483, "28580": 483, "28583": 483, "28596": 483, "28598": 483, "28600": 483, "28603": 483, "28604": 483, "28612": 483, "28613": [479, 483], "28617": 483, "28621": 483, "28624": 483, "28634": 483, "28638": [480, 483], "28639": 483, "28643": 483, "28648": 483, "28652": 483, "28653": 483, "28660": 483, "28665": 483, "28666": 483, "28668": 483, "28676": 483, "28682": [480, 483], "28683": 483, "28684": 483, "28685": [480, 483], "28692": [480, 483], "28699": 483, "28703": 483, "28704": 483, "28707": 480, "2871": 468, "28720": [479, 483], "28721": 483, "28724": [482, 483], "28727": 483, "28731": 483, "28732": 483, "28735": 483, "28739": 483, "28740": [480, 483], "28746": 483, "28748": 483, "28752": 483, "28761": [480, 483], "28762": 483, "28768": 483, "28769": [480, 483], "28770": 483, "28774": 483, "28779": 483, "28782": 483, "28787": 483, "28791": 483, "28797": 483, "28799": [480, 483], "288": 467, "28805": 483, "28806": 483, "28808": 483, "28822": [480, 483], "28835": 483, "28843": 483, "28847": [480, 483], "28849": 483, "28850": 483, "28856": 483, "28866": 483, "28871": 483, "28876": 483, "28893": 483, "28894": 480, "28896": 483, "28898": 483, "289": [68, 95, 226, 308, 484], "28918": 483, "28923": 483, "28927": [480, 483], "28929": 483, "28932": 483, "28936": 483, "28950": 483, "28958": 483, "28961": 483, "28963": 483, "28964": 483, "28969": 483, "28974": [480, 483], "2898": 468, "28985": 483, "28990": 483, "28991": 483, "28994": 483, "29": [4, 98, 102, 106, 150, 183, 186, 190, 236, 259, 261, 267, 318, 366, 465, 468, 472, 476, 481, 482, 483], "290": 226, "29000": [183, 483], "29011": 483, "29034": 483, "29040": 483, "29049": 483, "29055": 483, "29058": 483, "2906": 468, "29061": 483, "29071": 483, "29073": 483, "29076": 483, "29079": 483, "29080": 483, "29083": 483, "29084": 483, "29085": 483, "29094": 483, "29097": 483, "291": 462, "29100": 483, "29102": [480, 483], "29103": 483, "29104": 483, "29110": 483, "29119": 483, "29136": [480, 483], "29137": [480, 483], "29139": 483, "29142": 483, "29156": 183, "29159": 483, "29169": 483, "29183": 483, "29192": [480, 483], "29193": [480, 483], "29195": 483, "29196": 483, "29197": 483, "292": [68, 102, 267, 345, 484], "29203": 483, "29204": 483, "29209": [481, 483], "29210": 483, "29212": 483, "29218": [480, 483], "29219": 483, "29235": [481, 483], "29237": 483, "29240": [480, 483], "29243": 483, "29248": 483, "29255": 483, "29262": 483, "2927": 477, "29271": 483, "29286": 480, "29290": 483, "29293": 483, "29298": 483, "293": [68, 382, 484], "29300": 480, "29302": [480, 483], "29316": 483, "29319": 483, "29326": 483, "29327": 483, "29335": 483, "29337": 483, "29338": 483, "29341": 483, "29347": 483, "29349": 483, "29367": 483, "29368": 483, "2937": 469, "29376": 483, "29377": [480, 483], "29384": 483, "29392": 483, "29403": 483, "29409": 483, "29410": [473, 483], "29412": 483, "294144947901014": 481, "29416": 483, "29418": [473, 483], "29435": 483, "29438": 483, "29442": 483, "29444": 483, "29446": 483, "29452": 480, "29456": 483, "29463": 483, "29469": [480, 483], "29478": 483, "295": [288, 474, 483], "29505": 483, "29507": 480, "295147905179352891391": 469, "29515": 483, "29519": 483, "29532": 483, "29534": 483, "29537": 483, "29546": [480, 483], "29548": [482, 483], "29553": 483, "29564": [98, 483], "29565": 98, "29566": [98, 483], "29567": 98, "29568": [98, 483], "29569": 98, "29570": 98, "29571": [98, 483], "29572": 483, "29576": [480, 483], "29577": 483, "29579": 483, "29581": 483, "29585": [480, 483], "29587": 483, "29590": 483, "29591": 483, "29600": 483, "29602": 483, "29607": 483, "29613": 483, "29615": 483, "29619": 483, "29620": 483, "29623": 483, "29636": 483, "29639": 483, "2964": 243, "29643": 483, "29645": 483, "29649": 483, "2965": [243, 395, 483], "29654": [480, 483], "29673": 483, "29679": 480, "29683": 483, "29684": 483, "29688": 483, "29692": 483, "29694": 483, "29695": 483, "29703": 483, "29704": [382, 483], "29706": 483, "29708": [480, 483], "29711": 483, "29714": 483, "29723": 483, "29727": 483, "29728": [480, 483], "29734": 483, "29741": 483, "29742": 483, "29743": 483, "29748": 483, "29753": 483, "29755": 483, "29778": 483, "29781": 483, "298": 382, "2980": 288, "29800": 483, "29816": 483, "29822": 483, "2983": [469, 471], "29832": 483, "29839": 483, "29847": 483, "29849": 483, "2985": 468, "29851": [480, 483], "29854": 483, "29859": 483, "29861": 483, "2987": [469, 475], "29870": 483, "29877": 483, "29882": [472, 483], "29883": [481, 483], "29884": 483, "29890": 483, "29894": 483, "299": [110, 223, 241], "29901": 483, "29910": 483, "29911": 483, "29914": 483, "29922": 483, "29931": 483, "29935": 483, "29941": 483, "29942": 483, "29949": 483, "29953": 483, "29960": 483, "29962": [480, 483], "29970": [480, 483], "29979": [480, 483], "29980": 473, "29982": 483, "29988": 483, "29990": 483, "29995": [480, 483], "29998": 483, "29s": 476, "2_147_483_648": 173, "2_500": 318, "2_900": 343, "2a": [345, 483], "2a3": 352, "2a4": 483, "2am": 183, "2b": [337, 479], "2c": [84, 369, 483], "2d": [344, 446, 483], "2devel9": 469, "2e": [186, 483], "2e2": 186, "2ef0": 344, "2f": [102, 134, 221, 345, 394, 444, 468, 469, 471, 483], "2fel": 394, "2g": 483, "2gib": 483, "2h": 483, "2i": 369, "2j": [73, 98, 225, 262, 483], "2k": [341, 483], "2l": [35, 462], "2m": 483, "2n": [468, 483], "2nd": [85, 261, 319, 369, 483], "2o": 483, "2s": 483, "2t00": 183, "2to3": [68, 87, 187, 254, 468, 469, 470, 473, 474, 475, 483], "2x": [474, 476, 479, 483], "30": [78, 84, 85, 92, 93, 95, 98, 101, 102, 126, 136, 150, 155, 160, 183, 186, 193, 236, 259, 261, 267, 269, 293, 316, 318, 321, 337, 343, 344, 345, 362, 365, 366, 367, 384, 423, 440, 441, 451, 452, 456, 465, 466, 467, 469, 471, 472, 473, 477, 478, 479, 480, 481, 482, 483], "300": [73, 92, 102, 110, 155, 241, 247, 384, 395, 427, 452, 475, 483], "3000": [78, 87, 113, 385, 386, 427, 428, 468, 470], "30000": 466, "3000000000000003": 186, "30003": 483, "30008": 483, "3001": 475, "30014": [480, 483], "30017": 483, "3002": 469, "30024": [480, 483], "30038": 483, "30039": 483, "30040": 483, "30048": 483, "30050": [480, 483], "30052": 483, "30054": 480, "30057": 483, "30058": 483, "30061": 483, "30064": 483, "30068": 483, "30070": 483, "30077": 483, "3008": 468, "30085": 483, "30088": 483, "3009": 102, "30095": 480, "301": [68, 102, 110, 241, 395, 483, 484], "30101": 483, "30102": 483, "30103": [480, 483], "30119": 483, "3013": 102, "30143": 483, "30149": 483, "3015": 483, "30155": [472, 483], "30156": 483, "30157": 483, "30167": 483, "30176": 483, "30177": 483, "30185": 483, "3018611848820001": 367, "30190": 483, "30197": 483, "302": [68, 87, 110, 225, 241, 242, 245, 250, 265, 302, 324, 352, 395, 423, 432, 467, 468, 471, 476, 483, 484], "30202": 483, "30205": 483, "30215": [480, 483], "30218": 483, "30228": 483, "30237": 483, "30241": [480, 483], "30243": 483, "30245": 483, "30249": 483, "30256": 483, "302585092994045684017991455": 186, "30262": [481, 483], "30266": 483, "30285": [480, 483], "30290": 483, "30291": [480, 483], "30298": 483, "30299": 483, "303": [80, 110, 241, 395], "30301": 483, "30302": [480, 483], "30303": 483, "30306": 483, "30319": 483, "30329": 483, "30340": 483, "30345": 483, "30346": 483, "30347": 483, "30348": 483, "30349": [480, 483], "30353": 483, "30357": 483, "30362": [480, 483], "30375": 483, "30378": 483, "30383": 483, "30389": 483, "30397": 483, "30399": [480, 483], "303e": 94, "304": [110, 241, 245, 480], "30404": 483, "30406": [480, 483], "30414": 483, "30416": 483, "30418": 483, "30427": 483, "30436": [480, 483], "30441": 483, "30450": [480, 483], "30455": 483, "30458": 483, "30459": [472, 483], "30463": 483, "30465": 483, "30470": 483, "30485": 483, "30486": 483, "30495": 483, "30496": 483, "305": [68, 110, 175, 241, 484], "30500": 483, "30501": 483, "30502": 483, "30508": [480, 483], "30511": 483, "30512": [473, 483], "30520": [480, 483], "30522": [480, 483], "30523": 483, "30526": [480, 483], "30532": 483, "30533": [473, 483], "30537": [480, 483], "30540": 483, "30541": [480, 483], "30553": 483, "30555": 483, "30557": 483, "3056": 259, "30561": 483, "30566": 483, "30570": 483, "30579": [480, 483], "30581": 483, "30589": 483, "30595": 483, "30596": [480, 483], "30597": 483, "306": 382, "30604": 483, "30605": 483, "30607": 483, "30616": 483, "30617": 483, "30618": [482, 483], "30622": [480, 483], "30624": 483, "30639": 483, "30642": 483, "30645": 483, "30654": 483, "30657": 483, "30661": 481, "30664": 483, "30670": [481, 483], "30674": 483, "30675": 483, "3068": 483, "30681": 483, "30682": 483, "30687": 483, "30688": [481, 483], "30693": [480, 483], "30694": 483, "30695": 483, "30696": 483, "30697": [479, 480, 483], "307": [68, 110, 241, 299, 395, 484], "30703": 483, "30708": [480, 483], "30715": 483, "3072": 483, "30721": 483, "30722": 483, "30723": 483, "30728": 483, "30730": 483, "30731": 483, "30736": 483, "30746": 483, "30747": 483, "30765": 483, "30768": 483, "30773": [482, 483], "30777": 483, "30779": 483, "30780": 483, "30781": 483, "30788": 483, "30794": [480, 483], "308": [68, 226, 241, 430, 483, 484], "30803": 483, "30805": 483, "30806": 483, "30807": 483, "30808": 483, "30814": 483, "30817": 483, "30822": 483, "30828": 483, "30832": 483, "30835": 483, "30840": 483, "30851": 483, "30853": 483, "30854": 483, "30856": 483, "30858": 483, "30860": 483, "30863": 483, "30870": 483, "30876": 483, "30877": 483, "30879": 483, "30881": 483, "30886": 483, "30897": [480, 483], "30899": 483, "309": [68, 484], "30913": 483, "30916": 483, "30917": 483, "30919": 483, "30934": 483, "30946": 483, "30947": 483, "30961": 483, "30966": [482, 483], "30977": [481, 483], "30978": 483, "30981": 483, "30983": 483, "30987": 483, "30988": 483, "30993": 483, "30_687": 343, "30pm": 183, "30s": 98, "30t21": 465, "30x": [395, 476], "31": [20, 93, 106, 150, 173, 176, 178, 183, 211, 234, 259, 262, 318, 319, 343, 344, 352, 366, 419, 422, 424, 425, 435, 451, 465, 467, 468, 475, 480, 481, 482, 483], "310": 176, "3100": 468, "31001": 483, "31002": 483, "31003": 483, "31004": 483, "3101": [68, 345, 484], "31014": 483, "3102": [469, 470], "31033": 483, "3104": [436, 470], "31047": 483, "3105": [68, 113, 470, 484], "31050": 483, "31051": 483, "31058735": 444, "3106": [68, 484], "31060": 483, "31061": 483, "3107": [427, 441, 470, 478, 480], "31070": 483, "31071": 483, "31072": [480, 483], "3108": 470, "31080": [480, 483], "31082": 483, "31083": 483, "3109": 470, "31095": 483, "310d": 483, "311": 341, "3110": [68, 470, 484], "31107": 483, "31109": 483, "3111": 470, "31113": 483, "3112": [68, 113, 470, 484], "31122": 483, "31128": [480, 483], "3113": 470, "31130": 483, "31135": 483, "3114": 470, "3115": [122, 385, 427, 428, 470, 476], "31151": [480, 483], "3116": [68, 87, 470, 471, 484], "31161": 483, "31163": 483, "31169": 483, "31170": 483, "31174": 483, "31177": 483, "31178": 483, "31179": [480, 483], "3118": [68, 344, 470, 481, 483, 484], "31183": 483, "31185": 483, "3119": [49, 68, 116, 161, 428, 470, 484], "3120": [250, 435, 470], "31202": 483, "31205": 483, "31206": 483, "3121": [45, 470, 483], "3123": 470, "31233": [480, 483], "31234": 483, "31238": 483, "31241": 483, "31243": 483, "31245": [480, 483], "31247": 483, "31249": 483, "3126155": 318, "3127": [68, 470, 484], "31271": 483, "3128": 395, "31281": 483, "31285": 483, "31287": 483, "3129": [68, 427, 470, 484], "31291": 483, "31292": 483, "31293": 483, "31294": 483, "31299": 483, "31307": 483, "31308": 483, "3131": [435, 470, 483], "31310": 483, "31311": 483, "31315": 483, "3132": [436, 470], "31320": 483, "31325": 483, "31326": 483, "31333": [480, 483], "31334": 483, "31336": 483, "31338": [480, 483], "3134": [213, 470, 483], "31340": 483, "31341": 483, "31343": 483, "31344": [480, 483], "31346": 483, "31347": 483, "3135": [428, 469, 470], "31350": 483, "31351": 483, "31353": [480, 483], "31354": 483, "31356": 483, "31358": 483, "31368": [480, 483], "31369": 483, "3137": [68, 484], "31370": [480, 483], "31373": 483, "3138": 470, "31380": 483, "31389": [480, 483], "31392": 483, "31399": [480, 483], "314": [68, 85, 484], "31400": 483, "3141": [68, 116, 289, 470, 484], "31410": 483, "31411": 483, "31414": 483, "31415": [480, 483], "314159": 475, "31416": 483, "31418": 483, "31421": 483, "31423": 483, "31425": 483, "31429": [480, 483], "31431": 483, "31432": 483, "3144": 476, "31446": 483, "31453": 483, "31457": 483, "31459": 483, "31460": 483, "3147": [31, 68, 85, 163, 250, 311, 324, 362, 432, 450, 476, 484], "31471": 483, "31477": 483, "31478": 483, "3148": [68, 166, 484], "31480": 483, "31482": 483, "31488": 483, "3149": [68, 352, 483, 484], "31490": 483, "31492": 483, "31493": 483, "31499": 483, "31500": 483, "31505": 483, "31506": 483, "31508": [481, 483], "3151": [23, 68, 213, 322, 328, 337, 465, 484], "31512": 483, "31516": 483, "31518": 483, "31522": 483, "31525": 483, "31532": 483, "31536": 483, "31536000": 183, "31537": 483, "3154": [299, 477, 483], "31540": [480, 483], "31544": 483, "31546": 483, "3155": [68, 87, 484], "31553": [481, 483], "31556": 483, "31558": [480, 483], "31559": 483, "3156": 477, "31566": 483, "31569": 483, "31574": [480, 483], "31577": 483, "3158": 477, "31583": 483, "31588": 483, "31592": 483, "31596": 483, "31602": 483, "31608": 483, "31609": 483, "31618": 483, "31619": 483, "31620": 483, "31624": 483, "31625": 483, "31626": 483, "3163": 476, "31632": 483, "31638": [480, 483], "31639": [480, 483], "3164": 102, "31641": 483, "31642": 483, "31647": 483, "31648": [480, 483], "31649": 483, "31650": [480, 483], "31653": 483, "31658": 483, "3166": 469, "31662": 483, "31664": [480, 483], "31671": [480, 483], "31672": 483, "31673": 483, "31675": 483, "31680": [481, 483], "31690": [480, 483], "31692": 469, "31696": 483, "31699": 483, "31701": 483, "31702": [480, 483], "31705": 483, "31708": 483, "31709": [480, 483], "3171": 259, "31715": 483, "31718": 483, "31721": 483, "31728": 483, "31731": 483, "31731050786291404": 475, "31733": 469, "31752": 483, "31756": [480, 483], "31758": 483, "31764": [176, 483], "31770": 483, "31778": [480, 483], "31781": 483, "31783": 483, "31784": 483, "31786": 483, "31787": 483, "318": [68, 427, 484], "31800": 483, "31801": [480, 483], "31802": 483, "31803": 483, "31804": 483, "31806": 483, "31809": 483, "31819": [480, 483], "31821": 483, "31825": 483, "31827": 483, "31829": 483, "31831": 483, "31834": 483, "31836": 483, "31843": [480, 483], "31844": [472, 483], "31845": 483, "3184678262814532": 481, "31848": 483, "31849": 483, "31852": 483, "31853": 483, "31854": 483, "31855": 483, "31857": 483, "31858": 483, "31860": [479, 480, 483], "31861": [472, 483], "31862": 483, "31866": 483, "31870": [472, 483], "31884": 483, "3189": 483, "31891": 483, "31893": 483, "31897": 483, "31900": [479, 480, 483], "31901": 483, "31902": 483, "31903": 483, "31904": 483, "31908": 483, "31917": 483, "31920": 483, "31922": 483, "31926": 483, "31927": 483, "31933": 483, "31934": 483, "31938": 483, "31943": [480, 483], "31944": 483, "31945": [480, 483], "31949": 483, "31956": [472, 483], "31957": 483, "31961": 483, "31966": 483, "31970": [480, 483], "31972": 483, "31975": [480, 483], "31976": 483, "31985": [480, 483], "3199": 382, "31993": 483, "32": [4, 16, 25, 41, 42, 59, 68, 86, 94, 95, 98, 99, 106, 107, 109, 115, 121, 139, 141, 146, 153, 158, 166, 176, 186, 215, 226, 235, 250, 251, 259, 261, 262, 270, 283, 293, 303, 304, 306, 311, 318, 326, 333, 337, 343, 344, 347, 349, 352, 365, 366, 388, 398, 405, 406, 422, 423, 424, 428, 435, 446, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "320": [226, 388], "32000": 344, "32001": 344, "32002": [344, 483], "32011": 483, "32012": [480, 483], "32015": 483, "32018": 483, "32021": 483, "32023": [480, 483], "32025": [480, 483], "32028": 483, "32030": 483, "32034": 483, "32037": 483, "32043": [480, 483], "32046": 483, "32056": 483, "32059": 483, "32066": [480, 483], "32069": 483, "3207": 468, "32071": [480, 483], "32072": 483, "32088": 483, "32089": 483, "32096": 483, "320px": 467, "321": [125, 186], "32100": 483, "321000e": 186, "32101": 483, "32102": [480, 481, 483], "32105": 483, "32107": [480, 483], "32108": 483, "32110": 483, "32117": [481, 483], "32121": [480, 483], "32125": 483, "32126": 483, "32129": 483, "32136": 483, "32137": 483, "32138": 483, "32143": 483, "32146": 483, "32147": 483, "32154": 483, "32159": 483, "32164": 483, "32173": 483, "32174": 483, "32176": 483, "32178": 483, "32182": 483, "32185": [480, 483], "32186": 483, "32193": [480, 483], "32199": 483, "321e": 186, "322": [68, 484], "32206": [480, 483], "32207": 483, "3221225984": 99, "3221225985": [99, 259], "32214": 483, "32215": 483, "32217": 483, "32218": 483, "32221": 483, "32222": 483, "32225": 483, "32226": [480, 483], "32227": [480, 483], "32228": 483, "32230": [480, 483], "32232": 483, "32236": 483, "32241": 483, "32248": [480, 483], "32250": [480, 483], "32251": [480, 483], "32252": 483, "32253": [480, 483], "32255": 483, "32257": 483, "32259": 483, "32260": 483, "32264": 483, "32265": [480, 483], "32269": [480, 483], "32270": 483, "32272": 483, "32273": 483, "32277": 483, "32278": 483, "32279": 483, "32282": 483, "32285": [481, 483], "3229": 241, "32296": [480, 483], "32299": 483, "323": [166, 479], "32302": 483, "32303": [480, 483], "32304": [480, 483], "32305": [480, 483], "32308": [480, 483], "32309": [482, 483], "32311": [480, 483], "32314": [480, 481, 483], "32320": [480, 483], "32321": 483, "3232235521": [259, 345], "32323": 483, "32327": [480, 483], "32329": 483, "32331": [480, 483], "32337": 483, "32348": [480, 483], "32351": [480, 483], "32355": [480, 483], "32356": [480, 483], "32357": 483, "32363": 483, "32370": 483, "32373": [480, 483], "32374": 483, "32379": 483, "32380": [481, 483], "32381": 483, "32388": [481, 483], "32390": 483, "32391": [480, 483], "32394": 483, "32399": 483, "324": [68, 85, 348, 484], "32403": [480, 483], "32404": 483, "32409": 483, "32410": [480, 483], "32411": 483, "32415": [480, 483], "32417": [481, 483], "32418": [480, 483], "32422": 483, "32424": 483, "32430": [481, 483], "32433": [480, 483], "32436": [480, 483], "32441": [480, 483], "32454": [480, 483], "32455": 483, "32457": 483, "32467": 483, "32468": 483, "32473": 483, "32489": [481, 483], "32490": 483, "32492": [481, 483], "32493": 483, "32494": 483, "32498": 483, "32499": 483, "325": [183, 186, 467], "32500": 483, "32502": 483, "32503": 483, "32505": 483, "32506": 483, "32507": 483, "32512": 483, "32513": 483, "32515": 483, "32517": 483, "32521": 483, "32528": [481, 483], "32533": 483, "32544": [480, 483], "32547": 483, "32549": 483, "32550": [480, 483], "32551": 483, "32554": 483, "32555": 483, "32556": 483, "32557": 483, "32560": 483, "32568": 483, "32574": 483, "32576": 483, "32583": 483, "32585": [480, 483], "32587": 483, "32588": 483, "32591": [480, 483], "32592": 483, "32593": 483, "32596": 483, "32598": 483, "326": 319, "32602": 483, "32604": 483, "32609": 480, "32610": 483, "32613": 483, "32614": 483, "32622": 483, "32627": 483, "32630": [480, 483], "32631": 483, "32635": 483, "32643": 483, "32647": 483, "32649": 483, "32650": 483, "32659": [480, 483], "32660": 483, "32662": [480, 483], "32663": 483, "32670": [480, 483], "32677": [480, 483], "32680": 483, "32681": 483, "32684": 483, "32685": 483, "32689": 483, "32690": [480, 483], "32691": 483, "32695": 483, "32697": 483, "327": [68, 473, 484], "32703": 483, "32710": 483, "32711": 483, "32713": 483, "32717": 480, "32718": [481, 483], "32721": 483, "32722": 483, "32724": 483, "32726": 483, "32727": 483, "32734": 483, "32741": [480, 483], "32745": 483, "32749": [481, 483], "32751": [481, 482, 483], "32759": 483, "32765": 483, "32767": [75, 347], "32768": [109, 220, 341, 347, 424, 483], "32775": 483, "32777": 483, "32780": 483, "32782": 483, "32788": 483, "32792": [480, 483], "32793": 483, "328": [68, 113, 225, 250, 432, 470, 476, 484], "3280": 341, "32800": 483, "32819": 483, "32820": 483, "32826": 483, "32831": 483, "32836": 483, "32837": 483, "32841": 483, "32844": 483, "32849": 483, "3285": 183, "32852": 483, "32856": [482, 483], "32857": 483, "32859": 483, "32861": 483, "32872": 483, "32873": 483, "32874": 483, "32885": 483, "32889": 483, "32890": 483, "32892": [481, 483], "32894": 483, "32896": 483, "32898": 483, "32901": 483, "32903": 483, "32905": 483, "32910": 483, "32911": 483, "32912": 483, "32913": 483, "32916": 483, "32922": 483, "32925": 483, "32929": 483, "32932": 483, "32933": 483, "32940": 483, "32941": [481, 483], "32946": 483, "32947": [480, 483], "32951": [480, 483], "32953": 483, "32960": 483, "32962": 483, "32968": 483, "32969": 483, "32970": 483, "32972": [481, 483], "32981": 483, "32984": 483, "32989": 483, "32990": 483, "32995": 483, "32999": 483, "32be": 158, "32bit": [337, 464, 483], "32c18f": 384, "32k": 483, "32le": 158, "32m": 475, "32mu": 475, "32x": 472, "33": [86, 96, 147, 160, 176, 178, 261, 283, 284, 319, 352, 389, 444, 450, 451, 464, 465, 466, 475, 481, 482, 483], "33000": 483, "33001": 483, "33005": 483, "33009": 483, "33012": 483, "33015": 483, "33016": 483, "33018": 483, "33021": 483, "33026": 483, "33034": 483, "33037": 483, "33041": [481, 483], "33042": 483, "33043": 483, "33053": [480, 483], "33056": 483, "33060": 296, "33061": 483, "33064": 483, "33065": 483, "33073": [481, 483], "33078": 483, "33083": [481, 483], "33089": [481, 483], "33096": 483, "33097": [480, 483], "331": [68, 484], "33100": 483, "33106": [481, 483], "33109": 483, "33110": 483, "33116": 483, "33123": 483, "33125": [482, 483], "33126": 483, "33127": 483, "33128": 483, "33131": 483, "33134": 483, "33136": 483, "33138": 483, "33141": 483, "33144": 483, "33163": 483, "33164": 483, "33165": 483, "33169": [480, 483], "33175": 483, "33176": 483, "33178": 483, "33182": 483, "33184": 483, "33185": 483, "33188": 293, "33189": 483, "33195": 483, "33197": 483, "33199": 483, "33201": 483, "33203": 483, "33204": 483, "33205": 483, "33209": 483, "33217": [480, 483], "33224": 483, "33231": 483, "33234": [481, 483], "33237": 483, "33238": 483, "33251": 483, "33254": 483, "33256": 483, "33262": [482, 483], "33263": 483, "33265": 483, "33266": 483, "33270": 483, "33274": 483, "33276": 483, "33277": 296, "33281": 483, "33289": 483, "33291": 483, "333": [78, 85, 442, 444, 467], "3330": 259, "33305": 483, "33306": 483, "33308": 483, "33311": 483, "33312": 483, "33316": 483, "33329": 483, "3333": [68, 407, 484], "33331": 483, "33332": 483, "33333333": 344, "33334": 483, "33336": 483, "33346": [473, 483], "33348": 483, "33349": 483, "33358": 483, "33361": 483, "33363": 483, "33365": 483, "33375": 483, "33377": 483, "33378": 483, "33383": 483, "33387": 483, "3339": 101, "33391": 483, "33392": 473, "33393": 483, "33394": 483, "33407": [481, 483], "33409": 483, "33416": [481, 483], "33418": 483, "33421": 483, "33422": 483, "33433": 483, "33451": 483, "33452526613163807108170062053440751665152000000000": 468, "33453": 483, "33460": 483, "33461": 483, "33462": [481, 483], "33469": 483, "33475": 483, "33476": 483, "33479": 483, "33482": 483, "33483": 483, "33487": 483, "33495": 483, "33497": 483, "33499": [481, 483], "335": 366, "33503": 483, "33504": 483, "33505": 483, "33509": 483, "33512": 483, "33516": 483, "33519": 483, "33522": 483, "33524": 483, "33529": 483, "33530": [481, 483], "33536": 483, "33540": [480, 483], "33541": 483, "33542": 483, "33548": 483, "33562": 483, "33564": 483, "33569": 483, "33570": 483, "33578": 483, "33582": 483, "3359300": 341, "33594": 483, "33597": [481, 483], "33604": 483, "33608": 483, "33610": 483, "33613": 483, "33614": 483, "33618": [480, 483], "33622": 483, "33623": 483, "33625": 483, "33628": 483, "33635": 483, "33642": [479, 480, 483], "33648": 483, "33652": 483, "33654": 483, "33655": 483, "33656": [479, 480, 483], "3366": 469, "33660": 483, "33663": 483, "33664": 483, "33671": [332, 481, 483], "33672": 483, "33674": 483, "33679": [479, 480, 483], "33684": 483, "33687": 483, "33689": 483, "33693": 483, "33694": 483, "33695": [481, 483], "337": 384, "33706": 483, "33710": [481, 483], "33717": 483, "33720": [35, 483], "33721": [481, 483], "33725": [283, 481, 483], "33729": 483, "33731": 483, "33734": 483, "33736": 483, "33738": 483, "33746": 483, "33763": 483, "33767": 483, "33768": [479, 480, 483], "33769": 483, "33770": 483, "33775": 483, "33778": 483, "33786": 483, "3379": 469, "33792": [480, 483], "338": [68, 324, 432, 455, 484], "33803": 483, "33805": 483, "33809": [473, 483], "33812": 483, "33817": 483, "33818": [481, 483], "3382": 469, "33824": 483, "33832": 483, "33833": 483, "33839": 483, "33842": 483, "33843": 483, "33847": 483, "33851": 483, "33855": 483, "33856": 483, "33871": 483, "33873": 483, "33895": 483, "33897": [481, 483], "33899": [479, 480, 481, 483], "339": 467, "33901": 483, "33904": 483, "33905": 483, "33906": 483, "33907": 483, "33916": 483, "33917": 483, "33924": 483, "33929": 483, "33930": 483, "33932": 483, "33936": 483, "33944": 483, "33947": 483, "33954": 483, "33956": 483, "33962": [472, 482, 483], "33967": 483, "33972": 483, "33974": 483, "33975": 483, "33978": 483, "33985": 483, "33987": 483, "33989": 483, "33af": 109, "33cc8c": 384, "33md": 475, "34": [33, 96, 102, 139, 183, 186, 221, 226, 337, 341, 343, 430, 441, 449, 450, 475, 483], "34001": 483, "34002": 483, "34003": [481, 483], "34006": 483, "34008": 483, "34010": 483, "34011": 483, "34013": 483, "34019": 483, "34022": 483, "34035": 483, "34037": [482, 483], "34041": 483, "34042": 483, "34043": 483, "34044": 483, "34047": 483, "34052": 483, "34054": 483, "34055": 483, "34056": 483, "34060": 483, "34062": 483, "34065": 483, "34066": 483, "34068": 483, "3407": 465, "34070": 483, "34075": [481, 483], "34080": 483, "34081": 483, "34087": 483, "34093": 483, "34097": 483, "340k": 463, "341": [68, 102, 484], "34100": 483, "34108": 483, "34113": 483, "34118": 483, "34120": 483, "34121": 483, "34125": 483, "34126": 483, "34127": 483, "34139": 483, "34141": 483, "34144": 483, "34149": 483, "34151": 483, "34155": 483, "34160": [481, 483], "34164": 483, "34170": 483, "34171": 483, "34193": 483, "34197": 483, "342": [68, 95, 161, 367, 430, 484], "34200": 483, "34204": [472, 483], "34213": 483, "34215": 483, "34225": 483, "34226": 483, "34228": 483, "34245": 483, "34246": 483, "34247": 480, "34248": 483, "34251": 483, "3426": [469, 483], "34263": 483, "34266": 483, "34270": [481, 483], "34271": 483, "34272": 483, "34275": 483, "34279": 483, "3428": 319, "34282": 483, "34293": 483, "34294": 483, "343": [68, 87, 113, 169, 427, 428, 446, 449, 470, 484], "34303": 483, "34318": 483, "34320": 483, "34323": 483, "34331": 483, "34333": 483, "34334": 483, "34341": 483, "34347": 483, "34353": 483, "34363": 483, "34373": 483, "34377": 483, "34384": 483, "3439": [469, 471], "34391": 483, "34398": 483, "34399": 483, "344": 382, "34400": 483, "34401": 483, "34403": 483, "34405": 483, "34408": 483, "34410": 483, "34412": 483, "34421": 483, "34424": 483, "34427": 483, "34441": 483, "34443": 483, "34449": 483, "3445": 475, "34454": 483, "34463": 483, "34472": 483, "34485": 483, "34488": 483, "34490": 483, "345": [319, 466, 471], "34515": 483, "34519": 483, "34521": 483, "345216": 183, "34523": 483, "34527": 483, "34530": 483, "34532": 483, "34536": 483, "34537": 483, "34538": 482, "3454": [346, 465, 483], "34542": 483, "34547": 483, "34548": 483, "34552": 483, "34555": 483, "34556": 483, "34558": 483, "34561": 483, "34563": 483, "34567": [435, 479], "34569": 483, "34572": 483, "34574": 483, "34579": 483, "34581": 483, "34582": 483, "34585": 483, "34587": 483, "34588": 483, "34594": 483, "34596": 483, "345s": 476, "346": 96, "34602": 483, "34603": 483, "34604": 483, "34610": 483, "34616": [481, 483], "34622": 483, "34623": 483, "34625": 483, "34630": 483, "34631": 483, "34632": [481, 483], "34636": 483, "34637": 483, "34638": 483, "34641": [481, 483], "34651": [481, 483], "34652": 483, "34653": 483, "34658": 483, "34659": [481, 483], "34661": 483, "34666": 483, "34670": [481, 483], "34672": 483, "34679": 483, "34683": 483, "34687": [481, 483], "34691": 483, "347": [382, 467], "34706": 483, "34710": 483, "34711": 483, "34720": 483, "34725": 483, "34728": 483, "3473": 468, "34735": 483, "34738": 483, "34745": 483, "34749": 483, "34750": 483, "34751": 483, "34758": 483, "34762": [17, 480, 483], "34764": 483, "34765": 483, "34767": 483, "34769": 483, "34770": 483, "34774": 483, "34775": [482, 483], "34776": 483, "34784": 483, "34788": [482, 483], "34789": 483, "34790": [481, 482, 483], "34791": 483, "34793": [482, 483], "34794": 483, "34798": 483, "348": 96, "34803": 483, "34812": 483, "34816": 483, "34819": 483, "34822": [482, 483], "34824": 483, "34828": 483, "34829": [481, 483], "34844": 483, "34849": 483, "34850": [481, 483], "34854": 483, "34861": 483, "34864": 483, "34866": 483, "3487": 468, "34871": 483, "34872": 483, "34876": 483, "34879": 483, "3488": 475, "34880": [482, 483], "34886": 483, "34890": 483, "34897": 483, "34898": [481, 483], "3490": [158, 465], "34900": 483, "34903": 483, "34909": 483, "3491": [465, 483], "34910": 483, "34911": 483, "34913": 483, "34916": 473, "3492": [158, 465], "34922": 483, "34925": 483, "34926": 483, "3493": 337, "34932": 483, "34936": 483, "34939": 483, "34941": 483, "34956": [482, 483], "34962": 483, "34966": 483, "34967": 483, "34969": 483, "3497": 94, "34970": 483, "34973": 483, "34974": 483, "34975": [473, 483], "34977": 483, "34983": 483, "34989": 483, "34990": 483, "34a04430": 84, "35": [93, 95, 186, 225, 318, 343, 403, 435, 465, 466, 467, 468, 474, 475, 479, 481, 482, 483], "35008": 483, "3501": 248, "35011": 483, "35017": 483, "35018": [472, 483], "35022": 483, "35024": 483, "35025": 483, "35029": 483, "35035": 483, "35038": 483, "35042": 483, "35044": 483, "35045": 483, "35047": [481, 483], "35050": 483, "35052": 483, "35053": 483, "35059": [481, 483], "35062": 483, "35065": 483, "35066": 483, "35067": 483, "35070": 483, "35078": 483, "35079": 483, "35081": [481, 483], "35082": 483, "35087": 483, "35088": 483, "35089": 483, "35093": 483, "35097": 483, "35099": 483, "35113": 483, "35114": 483, "35121": 483, "35125": 483, "35132": 483, "35134": [472, 473, 481, 483], "351364": 466, "35139": 483, "3514": 475, "3515": 102, "35152": 483, "35153": [481, 483], "35168": 483, "35169": 483, "35178": 483, "35182": 483, "35183": 483, "35186": 483, "35189": 483, "35193": 483, "35196": 483, "35198": 483, "352": [68, 468, 470, 473, 483, 484], "35202": 483, "35208": 483, "35213": 483, "35214": 483, "35224": [481, 483], "35226": 483, "35246": 483, "35252": 483, "35257": 483, "35259": 483, "35269": 483, "35277": 483, "35279": 483, "35283": [481, 483], "35292": 483, "35293": 483, "35296": 483, "35299": 483, "353": [35, 68, 472, 483, 484], "3530": 483, "35304892063140869": 465, "35306": 483, "35308": 483, "35310": 483, "35312": 483, "35317": 483, "35321": 483, "35322": 483, "35328": 483, "35330": 483, "35332": 483, "35336": 483, "35341": 483, "35344": 483, "35345": [481, 483], "35346": 483, "35348": 483, "35351": 483, "35352": 483, "35357": 483, "35360": 483, "35370": 483, "35371": 483, "3537115888337719": 444, "35372": 483, "35376": 483, "35378": 483, "35379": 483, "35380": 483, "35381": 483, "35389": 483, "35394": 483, "35397": 483, "35401": 483, "35402": 483, "35409": 483, "35412": 483, "35415": 483, "35416": 483, "3542": [337, 483], "35423": 483, "35424": 483, "35431": [481, 483], "35436": 483, "35444": 483, "35445": 483, "35455": 483, "35459": 481, "35471": [481, 483], "35474": 483, "35477": 483, "3548": [146, 466], "35488": 483, "35491": 483, "35493": 483, "35494": 483, "35498": [472, 483], "35499": 483, "354aa": 319, "355": [186, 221], "35500": 483, "35502": 483, "35504": 483, "35505": 483, "35511": 483, "35512": 483, "35513": 483, "35519": 483, "35521": 483, "35523": 483, "35526": 483, "35537": [481, 483], "35540": 483, "35545": 483, "35550": 483, "35551": 483, "35552": 483, "35555": 483, "35560": 483, "35564": 483, "35568": 483, "35569": 483, "35581": 483, "35582": 481, "35585": 483, "35588": 483, "35591": 483, "35596": 483, "35598": 483, "356": 467, "35606": [481, 483], "356099432828281": 481, "3561": 476, "35610": 483, "35614": 483, "35615": 483, "35619": 483, "35621": 483, "35623": 483, "35634": 483, "35640": 483, "35641": 483, "35642": 483, "35643": 483, "35652": 483, "3566": 478, "35660": 483, "35661": 483, "35664": [481, 483], "35668": 483, "35673": 483, "35674": 483, "35682": 483, "35683": 483, "35689": 483, "35692": 483, "35699": 483, "357": [68, 484], "35702": [481, 483], "35704": 483, "35712": [482, 483], "35713": [481, 483], "35714": 483, "35715": 483, "35717": 483, "35719": 483, "35720": 483, "35721": 483, "35724": 483, "35726": 483, "35727": 483, "35728": 483, "35733": 483, "35746": 483, "35753": 483, "35755": 483, "35758": 483, "35763": 483, "35764": 483, "35766": [481, 483], "35769": 483, "35770": 483, "35771": 483, "35772": 483, "35780": 483, "35797": 483, "35798": 483, "35800": [473, 482, 483], "35802": 483, "35803": 483, "35805": 483, "35807": 483, "35808": 483, "35810": [481, 482, 483], "35811": 483, "35813": [481, 483], "35814": 483, "3582": 469, "35823": 483, "35833": 483, "35843": 483, "35845": 483, "35847": 483, "3585": 469, "35854": 483, "35859": [473, 483], "35864": [481, 483], "35872": 483, "35873": 483, "35877": 483, "35883": 483, "35884": [481, 483], "35886": [481, 483], "35890": 483, "35892": 481, "35899": 483, "35900": [481, 483], "35904": [481, 483], "35907": 483, "35911": 483, "35917": 483, "35918": 483, "35920": 483, "35922": 483, "35923": 483, "35924": 483, "35925": 483, "35926": 483, "35928": 483, "3592984": 382, "35930": 483, "35931": 483, "35934": 483, "35936": 483, "35941": 483, "35942": 483, "35943": 483, "35947": 483, "35950": 483, "35952": 483, "35960": 483, "35961": 483, "35967": 483, "35970": 483, "35975": 483, "35976": 483, "35983": 483, "35991": 483, "35992": 483, "35993": 483, "35998": 483, "36": [18, 39, 101, 104, 109, 225, 261, 271, 283, 318, 322, 343, 345, 366, 442, 446, 449, 451, 452, 453, 472, 475, 477, 481, 482, 483], "360": 384, "3600": [126, 133, 139, 169, 183], "36002": 483, "36004": [481, 483], "36007": 483, "36010": 483, "36012": [481, 483], "36016": [481, 483], "36018": [481, 483], "36019": 483, "3602": 382, "36020": [472, 483], "36025": 483, "36027": [481, 483], "36028797018963968": 444, "3602879701896397": 444, "36035": 483, "36037": 483, "3603bae63c13": 483, "36043": 483, "36044": [482, 483], "36045": 483, "36046": 483, "36048": [481, 483], "36050": 483, "36051": 483, "36052": 483, "360620266859": 261, "36073": 483, "36076": 483, "36083": 483, "36084": [481, 483], "36085": [481, 483], "36091": 483, "36096": 483, "361": 468, "36103": 483, "36106": 483, "36123": 483, "36124": 483, "36127": 481, "36130": 483, "36138": 483, "36139": 483, "36142": 483, "36143": 483, "36144": [482, 483], "36146": 483, "36152": 483, "36157": 483, "36161": 483, "36169": 483, "36176": 483, "36179": 483, "36184": 483, "36188": 483, "362": [68, 87, 98, 255, 484], "36205": 483, "36210": 483, "36216": 483, "36218": 483, "36227": 483, "36231": 483, "36232": 483, "36234": 483, "36235": 483, "36236": 483, "36239": 483, "36250": 483, "36251": 483, "36252": 483, "36256": 483, "36260": 483, "36262": 483, "36264": [481, 483], "36266": 483, "36267": 483, "36268": [481, 483], "36272": 483, "36279": 483, "36280": 483, "36282": 483, "36285": 483, "36287": 483, "3628800": 226, "36290": 483, "36297": [481, 483], "36298": 483, "36301": 483, "36302": 483, "36305": 483, "36310": 483, "36311": 483, "36312": 483, "3632": 469, "36320": [481, 483], "36321": 483, "36324": 483, "36326": [481, 483], "36329": 483, "36332": 483, "36333": 483, "36341": 483, "36342": 483, "36345": 483, "36346": [472, 482, 483], "36348": [481, 483], "36350": [482, 483], "36351": 483, "36352": 483, "36356": 483, "36365": 483, "36366": 483, "36368": 483, "36374": 483, "36379": 483, "36381": [481, 483], "36384": [481, 482, 483], "36385": 483, "36389": 483, "36390": 483, "36396": 483, "36398": 483, "36401": 483, "36402": 483, "3640375": 325, "36405": 483, "36406": 483, "36407": 483, "36409": [482, 483], "36412": 483, "36419": 483, "36421": 483, "36425": 483, "3642538": 325, "36429": 483, "36430": 483, "36433": 483, "3643398": 325, "36434": 483, "36436": 483, "36440": 483, "36441": 483, "36443": 483, "36452": 483, "36454": 483, "36459": 483, "36465": [472, 481, 483], "36470": 483, "36475": [481, 483], "36487": 483, "36492": [481, 483], "365": [94, 183, 341, 343, 366], "3650": 183, "36500": 483, "36503": 483, "36504": 483, "36508": 483, "36509": 483, "36515": 483, "36517": 483, "36520": 483, "36522": 483, "3652260728": 343, "36523": 483, "36533": 483, "36540": [481, 483], "36541": 483, "36542": 483, "36543": [482, 483], "36544": 483, "36546": [481, 483], "36548": 483, "36549": 483, "36559": 483, "36560": 483, "36564": 483, "36565": 483, "36575": 483, "36577": 483, "36582": 483, "36588": [481, 483], "36589": 483, "3659": 223, "36590": 483, "36594": 483, "36598": 483, "366": [68, 94, 98, 183, 250, 324, 366, 432, 470, 476, 484], "36601": 483, "36605": 483, "36607": 483, "36611": 483, "36613": 483, "36618": 483, "36623": [481, 483], "36625": 483, "36629": 483, "36634": 483, "36635": 483, "36641": 483, "36649": 483, "3665": 476, "36650": 483, "36669": [481, 483], "36673": [481, 483], "36674": 483, "36676": [481, 483], "36686": 483, "36698": 483, "367": 94, "36700": 483, "36707": [481, 483], "36710": 482, "36719": 483, "36721": [481, 483], "36722": [481, 483], "36725": 483, "36728": [481, 483], "36734": 483, "36737": 483, "36742": 483, "36747": 483, "36748": 483, "36763": [481, 483], "36772": [481, 483], "36778": 483, "36779": 483, "36781": 483, "36782": 483, "36783": 483, "36785": [481, 483], "36786": 483, "36793": [481, 483], "36797": 483, "368": 382, "36801": 483, "36802": 483, "36806": 483, "36807": 483, "36813": 483, "36814": 483, "36816": 483, "36817": [481, 483], "368181376027291943": 96, "36819": 483, "36820": 483, "36826": 483, "36829": [481, 483], "36831796169281006": 465, "36832": 483, "36833": 483, "36842": 483, "36845": 483, "36851": 483, "36854": 483, "36861": 483, "36867": 483, "36868": 483, "36871": 483, "36878": 483, "36880": 483, "36887": [481, 483], "36888": 483, "36889": 483, "36895": [481, 483], "36896": 483, "369": 481, "36907": 483, "36915": 483, "36916": 483, "36917": [481, 483], "36919": 483, "36921": [481, 483], "36922": 483, "36933": [481, 483], "36946": 483, "36948": 483, "3694863": 325, "36949": 483, "36952": [481, 483], "36958": 483, "36959": 483, "36960": 483, "3696074": 325, "369612": 325, "36965": 483, "36969": 483, "3697174": 325, "36972": 483, "36974": [481, 482, 483], "36982": [472, 483], "36983": 483, "36984": 483, "36991": 483, "36993": 483, "36996": 483, "36999": [481, 483], "37": [96, 176, 245, 318, 343, 344, 345, 382, 406, 451, 466, 469, 471, 472, 473, 480, 481, 482, 483], "370": [68, 334, 455, 470, 483, 484], "37001": 483, "37004": 483, "37007": [481, 483], "37008": 483, "37022": 483, "37027": [481, 483], "37027556854118704": 367, "37028": [481, 483], "37029": 483, "37032": [481, 483], "37034": 483, "37035": 483, "37038": 483, "37039": 483, "37045": 483, "37046": 483, "37047": 483, "37049": 483, "37050": 483, "37053": 483, "37054": 483, "37058": 483, "37064": 483, "37069": 483, "37072": 483, "37076": 483, "37077": 483, "37081": 483, "37085": 483, "37087": 483, "3709": [475, 476], "37098": 483, "371": [68, 470, 484], "37107": 483, "37111": 483, "37120": 483, "37122": 483, "37123": 483, "3712595970846668": 367, "37126": 483, "37128": [481, 483], "37129": 483, "37140": 483, "37149": 483, "37150": 483, "37151": 483, "37153": 483, "37158": 483, "37160": 483, "37163": 483, "37165": 483, "37169": 483, "37170": 483, "37173": 483, "37177": 483, "37178": [481, 483], "37189": 483, "37192": 332, "37193": 483, "37194": [482, 483], "37199": 483, "372": [68, 484], "3720238095238095": [343, 451], "37205": 483, "37206": 483, "37207": [482, 483], "37210": 483, "37212": 483, "37213": 483, "37215": 483, "37219": 483, "37221": [481, 483], "37228": [479, 480, 481, 482, 483], "37231": 483, "37251": 483, "37252": 483, "37256": 483, "37257": [482, 483], "37261": 483, "37266": 483, "37267": 483, "37268": 483, "37269": 483, "37278": 483, "37279": 483, "37280": 483, "37283": 483, "37284": 483, "37295": [473, 483], "373": [105, 469], "37300": 483, "37305": 483, "37308": 483, "37312": [482, 483], "37315": [482, 483], "37316": 483, "37319": 472, "37320": [482, 483], "37321": 483, "37324": [472, 483], "37325": 483, "37328": 483, "37330": [473, 483], "37335": 483, "37337": 483, "37340": [482, 483], "37345": 483, "37347": 483, "37348": [482, 483], "37351": [481, 483], "37354": 483, "37358": 483, "37359": 483, "37362": 483, "37363": 483, "37364": 483, "37369": 483, "37372": 483, "37376": [482, 483], "37380": 483, "37388": [482, 483], "37392": [482, 483], "37394": 483, "3740": 344, "37400": 483, "37404": [482, 483], "37405": 483, "37406": 483, "37409": 483, "37411": 483, "37412": [481, 483], "37414": [482, 483], "37415": 483, "37417": 483, "37420": 483, "37421": 483, "37424": 483, "37428": 483, "37433": 483, "37434": 483, "37437": 483, "37440": 483, "37441694736480713": 465, "37444": [482, 483], "37444887175646646": 318, "37445": 483, "37448": 483, "37449": 483, "37456": 483, "37461": 483, "37463": 483, "37467": 483, "37468": 483, "37472": 483, "37474": 483, "37478": 483, "37479": 483, "37481": [481, 483], "37482": 483, "37483": [482, 483], "37487": 483, "37488": 483, "37491": 483, "375": [283, 343], "37502": 483, "37520": 483, "37521": 483, "37523": 483, "37526": 483, "37530": 483, "37531": 483, "37534": 483, "37537": 483, "37540": [482, 483], "37543": 483, "37549": 483, "37555": 483, "37556": 483, "37558": 483, "37578": 483, "37579": 483, "37587": 483, "37593": 483, "37596": 483, "3761": 102, "37619": 483, "37627": [480, 481, 483], "37628": 483, "37630": [482, 483], "37633": 483, "37642": 483, "37645": [482, 483], "37648": 483, "37658": 483, "37663": [482, 483], "37664": 483, "37672": 483, "37675": 483, "37685": 483, "37689": 483, "37691": 483, "37692": 483, "37695": 483, "37697": 483, "377": [226, 441, 449, 450], "3770": 283, "37702": 483, "37703": 483, "37704": 483, "37705": 483, "37707": [482, 483], "37723": 483, "37725": 483, "37726": 483, "37734": 483, "37738": 483, "37742": [482, 483], "37748": 483, "37751": [482, 483], "37757": 483, "37759": 483, "37760": 483, "37764": 483, "37765": [481, 482, 483], "37772": 483, "37778": 483, "37785": 483, "37788": 483, "37798": 483, "378": [68, 96, 345, 382, 484], "37802": 483, "37803": 483, "37804": [482, 483], "37805": 483, "3781": 468, "37810": 483, "37811": 483, "37812": 483, "37814e6": 94, "37819": [481, 483], "37824": 483, "37828": 483, "37830": 483, "37834": [481, 483], "37838": 483, "37840": 483, "37849": 483, "37851": 483, "37863": 483, "37866875250654886": 367, "37868": 483, "37876": 483, "37878": [482, 483], "37879": 483, "37880": 483, "37885": 483, "37892": [472, 483], "37902": 483, "37903": [472, 483], "37915": 483, "37926": 483, "37929": 483, "37931": 483, "37936": 483, "37937": 483, "37942": 483, "37945": 483, "37947": 483, "37950": 483, "37951": [481, 483], "37953": 483, "37957": 483, "37958": 483, "37960": 483, "37961": 483, "37964": 483, "37965": 483, "37966": [481, 483], "37971": 483, "37972": 483, "37977": 483, "37979": 483, "37986": [482, 483], "37994": 483, "37995": [482, 483], "37999": [472, 483], "37m": 481, "38": [101, 102, 190, 225, 267, 337, 382, 465, 472, 481, 482, 483], "380": [68, 353, 430, 484], "38005": 483, "38006": 483, "38008": 483, "38010": 483, "38013": 483, "38018": 483, "38019": 483, "38020": 483, "38021": 483, "38026": 483, "38030": 483, "38031": 483, "38037": 483, "38041": 483, "38045": 483, "38049": 483, "3805": 465, "38053": 483, "38056": 483, "38059": 483, "38061": [482, 483], "38062": 483, "38066": 483, "38069": 483, "38071": 483, "38072": 483, "38073": 483, "38074": 483, "38075": 483, "38076": 483, "38077": 483, "38080": 483, "38081": 483, "38086": 483, "38087": 483, "38088": 483, "38089": 483, "38091": 483, "38092": 483, "38093": 483, "381": 382, "38108": 483, "38109": 483, "3811": 468, "38110": 483, "38112": [482, 483], "38113": 483, "38114": 483, "38115": 483, "38116": 483, "38117": 483, "38118": 483, "38121": 483, "38124": 483, "38132": 483, "38133": 483, "38134": 483, "38136": 483, "38140": 483, "38142": 483, "38144": [472, 483], "38148": 483, "38149": 483, "38153": 483, "38155": 483, "38156": 483, "38161": 483, "38163": 483, "38169": 483, "38174": 483, "38175": 483, "38183": 483, "38185": 483, "38191": 483, "38200": [472, 483], "38205": 483, "38210": 483, "38212": 483, "38216": 483, "38219": 483, "38234": [481, 483], "38236": 483, "38237": 483, "38239": 483, "38242": 483, "38243": 483, "38248": 483, "38249": 483, "38250": 483, "38252": 483, "38256": 483, "38265": 483, "38266": 483, "38267": 483, "38270": 483, "38271": 483, "38275": 483, "38291": [386, 472, 483], "38293": 483, "38294": 483, "383": [64, 158, 337, 483], "38301": 483, "38302": [472, 483], "38303": 483, "38307": [472, 483], "38308": 483, "38310": 483, "38312": [482, 483], "38317": 483, "38319": 483, "38324": 483, "38325": 483, "38328": 483, "38329": 483, "38332": 483, "38334": 483, "38341": 483, "38344": 483, "38344867356679524": 367, "38347": 483, "38348": 483, "38351": 483, "38352": 483, "38355": 483, "38359": 483, "38360": 483, "38361": 483, "38371": [473, 482, 483], "38373": 483, "38377": 483, "38378": 483, "38379": [482, 483], "38380": 483, "38387": 483, "38392": 483, "38395": 483, "384": [68, 183, 467, 472, 474, 482, 483, 484], "38402": 483, "38405": 483, "38410": 483, "38415": 483, "38417": 483, "38418": 483, "38422": 483, "38431": 483, "38435": 483, "38437": 483, "38438": 483, "38439": 483, "38443": 483, "38449": 483, "38453": 483, "38465": 483, "38468": 483, "38469": 483, "38470": 483, "38472": 483, "38473": 483, "38478": 483, "38488": 483, "38490": [472, 483], "38492": 483, "38493": [482, 483], "385": 475, "38500": [482, 483], "38502": 483, "38506": 483, "38519": 483, "38521": 483, "38523": 483, "38525": 483, "38527": 483, "38529": 483, "38530": [472, 483], "38535": 483, "38536": 483, "38540": 483, "38546": 483, "38547": 483, "38565": 483, "38576": 483, "38586": 483, "38588": 483, "38589": 483, "38592": 483, "38597": 483, "38598": 483, "3860": 469, "38602": [482, 483], "38605": 483, "38610": 483, "38613": 483, "38614": 483, "38615": [482, 483], "38622": 483, "38629": 483, "38630": 483, "38631": 483, "38634": 483, "38636": 483, "38639": 483, "38640": 483, "38641": 483, "38643": 483, "38644": [482, 483], "38650": [482, 483], "38659": 483, "38662": 483, "38668": 483, "38669": 483, "38673": 483, "38684": 483, "38686": 483, "38688": 483, "38689": 483, "38691": 483, "38692": [482, 483], "38693": 483, "38698": 483, "387": [57, 80, 213, 343], "38704": 483, "38707": 483, "38708": 483, "38712": [482, 483], "38713": [482, 483], "38716": 483, "38722": 483, "38723": 483, "38724": 483, "3873": 475, "38731": [472, 483], "38741": 483, "38761": 483, "38778": 483, "38785": 483, "38786": 483, "38787": [482, 483], "3879": 259, "38792": 483, "38804": 483, "38807": 483, "38809": 483, "38811": 483, "38816": 483, "38820": [472, 483], "38821": 483, "38822": 483, "38823": 483, "38834": 483, "38835": [482, 483], "38839": 483, "38840": 483, "38841": 483, "38852": 483, "38857": 483, "38858": 483, "38859": 483, "38862": 483, "38863": 483, "38870": [482, 483], "38871": 483, "38875": 483, "38876": 483, "38878": 483, "38880": 483, "38881": 483, "38883": 483, "38891": 483, "38892": 483, "38894": 483, "38896": [482, 483], "38899": 483, "389": [68, 484], "38901": 483, "38905609893": 186, "389056098930650227230427461": 186, "38907": 483, "38908": [472, 483], "38913": 483, "38914": 483, "38916": [482, 483], "38918": 483, "38920": 483, "38922": 483, "38927": 483, "38928": 483, "38932": 483, "38941": 483, "38943": 483, "38944": [481, 482, 483], "38945": 483, "38956": 483, "38960": 483, "38964": 483, "38965": 483, "38971": 483, "38976": 483, "38978": 483, "38979": 483, "38980": [472, 483], "38982": 483, "38986": 483, "38991": 483, "38992": 483, "38994": 483, "39": [96, 160, 183, 193, 283, 293, 366, 456, 466, 472, 476, 481, 482, 483], "39006": 483, "39007": 483, "39008": 483, "39010": 483, "39011": [482, 483], "39017": 483, "39019": 483, "39022": 483, "39026": 483, "39028": 483, "39031": 483, "39033": 483, "39039": 483, "39040": 483, "39048": 483, "39050": 483, "39055": 483, "39056": 483, "39057": 483, "39058": 483, "39064": 483, "39068": 483, "39073": 483, "39075": 483, "39080": 483, "39082": 483, "39087": 483, "39091": 483, "391": [68, 484], "39101": 483, "39104": 483, "39107": 483, "39114": 483, "39129": 483, "39142": 483, "39144": 483, "39148": 483, "39152": 483, "39153": 483, "39156": [482, 483], "39158": 483, "39160": 483, "39164": 483, "39166": 483, "39168": 483, "39184": 483, "39185": 483, "39191": 483, "39198": 483, "392": 475, "39200": 483, "39207": [482, 483], "39209": 483, "39215": 483, "39216": 483, "39218": 483, "39219": 483, "39220": 483, "39235": 483, "39239": [482, 483], "3924": 469, "39242": 483, "39244": 483, "39245": 483, "39259": [482, 483], "39264": 483, "3927": 259, "39273": [472, 483], "39274": 483, "39288": [482, 483], "39297": 483, "393": [64, 68, 158, 352, 472, 482, 483, 484], "39305": 483, "39310": [482, 483], "39313": 483, "39314": 483, "39316": 483, "39320": 483, "39322": [482, 483], "39327": 483, "39328": 382, "39329": [482, 483], "39336": [482, 483], "39337": [472, 483], "39342": 483, "39349": [482, 483], "39350": [482, 483], "39351": [482, 483], "39353": [482, 483], "39357": [482, 483], "39359": 483, "39360": 483, "39366": [482, 483], "39369": [382, 483], "39372": [482, 483], "39377": [482, 483], "39380": 483, "39381": 483, "39382": 483, "39384": 483, "39385": [472, 483], "39386": 483, "39388": 483, "39389": 483, "39390": 483, "39392": 483, "39393": 483, "39394": 483, "39395": [482, 483], "39396": 483, "39401": 483, "39406": 483, "39411": 483, "39413": [482, 483], "39416": 483, "39421": 483, "39427": 483, "39430": 483, "39432": 483, "39434": [482, 483], "39435": 483, "39439": 483, "39448": 483, "39450": 483, "39452": 483, "39453": 483, "39465": [482, 483], "39474": 483, "39479": [482, 483], "39481": [482, 483], "39485": 483, "39489": [482, 483], "39491": 483, "39492": 483, "39493": 483, "39495": 483, "39498": 483, "39500": 483, "39502": 483, "39503": 483, "39507": [482, 483], "39509": [482, 483], "39510": 483, "39511": 483, "39517": 483, "39520": 483, "39522": 483, "39529": 483, "39530": 483, "39542": [482, 483], "39546": 483, "39548": 483, "39549": 483, "39553": 483, "3955516149999312": 367, "39559": 483, "39562": [482, 483], "39567": 483, "39572": 483, "39573": [472, 473, 483], "39579": 483, "39580": 483, "39583": 483, "39586": [482, 483], "39587": 483, "39590": 483, "39595": 483, "39600": 483, "39603": 483, "39606": 483, "39609": 483, "39610": 483, "39615": 483, "39619": 483, "39622": 483, "39627": 483, "39631": 483, "39638": [482, 483], "39639": [482, 483], "39648": [482, 483], "39649": 483, "39651": 483, "39652": 483, "39654": 483, "39656": 483, "39663": 483, "39667": 483, "39674": 483, "39677": 483, "39678": 483, "39679": 483, "39681": 483, "39682": 483, "39693": 483, "397": [68, 332, 461, 478, 483, 484], "39702": [482, 483], "39705": 483, "39716": 483, "39717": 483, "39718": 483, "39719": 483, "3972": [109, 469], "39728": 483, "3972e6": 94, "39744": 483, "39761": 483, "39763": 483, "39764": 483, "39769": 483, "3977": 288, "39775": [482, 483], "39776": 483, "39778": 483, "39781": 483, "39789": 483, "39791": [482, 483], "39793": 483, "39794": 483, "398": 476, "39812": [482, 483], "39824": 483, "39825": 483, "39826": 483, "39828": 483, "39829": 483, "39830": 483, "39847": 483, "39850": 483, "39852": 483, "39855": 483, "3986": [245, 394, 469, 472, 478, 479, 480, 481, 482, 483], "39868": 483, "39871": 483, "39877": [482, 483], "39879": 483, "39881": 483, "39882": [482, 483], "39883": 483, "39884": 483, "39885": 483, "39889": 483, "39899": 483, "399": [241, 483], "39906": [472, 483], "39915": 483, "39916": 483, "39916800": 468, "39926": [482, 483], "39930": 483, "39934": 483, "39936": 483, "39939": [482, 483], "39942": 483, "39946": [482, 483], "39947": [482, 483], "39950": [472, 483], "39953": 483, "39960": 483, "39965": 483, "39966": 483, "39968": 483, "39969": [482, 483], "39984": [482, 483], "39988": [482, 483], "39991": 483, "39994": 483, "39995": 483, "39999": 483, "3ad2a9b37c6070e374c7a8c508fe20ca86b6ed54e286e93a0318e95e881db5aa": 235, "3b8a": [398, 467], "3bsd": 337, "3c": [85, 369], "3ca4": [398, 467], "3d": [344, 446], "3d363ff7401e02026f4a4687d4863c": 235, "3des": [167, 341, 479, 483], "3dgamer": 464, "3dm": 98, "3e": 378, "3f": [85, 160, 446, 475, 481], "3gpp": 483, "3gpp2": 483, "3i": 369, "3j": [225, 289, 469], "3l": 462, "3rc1": 483, "3rd": [84, 319, 334, 386, 446, 476, 483], "3s": 347, "3tk": 369, "3to2": 483, "3x": [261, 477, 483], "3x4": 442, "40": [92, 93, 95, 96, 101, 155, 160, 183, 193, 247, 267, 308, 318, 319, 321, 332, 343, 366, 375, 384, 424, 441, 451, 452, 472, 477, 480, 481, 482, 483], "400": [73, 102, 110, 117, 155, 223, 241, 283, 288, 335, 369, 384, 441, 452, 472], "4000": 452, "40000": [446, 483], "40000000000000002": 468, "40003": 483, "40010": [482, 483], "40014": 483, "40016": 483, "40017": 483, "40019": 483, "40020": 483, "40024": [482, 483], "40025": 483, "4004": 344, "40050": 483, "40052": 483, "40055": 483, "40059": [473, 483], "40066": [472, 483], "40067": 483, "4007": 259, "40077": 483, "40082": 483, "40084": 483, "40089": 483, "40091": 483, "40094": [482, 483], "400s": 75, "401": [110, 241, 395, 441, 472, 478, 483], "40105": 483, "40108": 483, "40116": [473, 483], "40121": 483, "40126": 483, "40128": 483, "40137": 483, "40138": 483, "40141": 483, "40146": 483, "40148": 483, "40149": 483, "40158": 483, "40162": 483, "40163": 483, "40164": 483, "4017": 102, "40170": [473, 482, 483], "40173": 483, "40176": [472, 483], "40179": 483, "40181": 483, "40182": [482, 483], "40183617287970225": 367, "40190": 483, "40192": [482, 483], "40196": 483, "402": [110, 241, 382], "40204": 483, "40208": [482, 483], "40217": [63, 482, 483], "40219": 483, "4022": 483, "40222": [473, 483], "40228": 483, "40234": 483, "40241": [482, 483], "40246": 483, "40257": [482, 483], "40260": 483, "40262": 483, "40263": 483, "40267": 483, "40270": 483, "40273": 483, "40275": 483, "40277": 483, "40280": 483, "40282": 483, "40286": [482, 483], "40287": 483, "40290": 483, "40291": [482, 483], "40296": 483, "403": [110, 241, 245, 441, 472], "4030": [474, 483], "40304": 483, "40313": 483, "40318": 483, "40321": 483, "40325": 483, "40328": 483, "40330": 483, "40334": [472, 482, 483], "40355": 483, "40358": 483, "40360": [473, 482, 483], "40375": [482, 483], "40385": 483, "40389": 483, "40394": 483, "40396": 483, "40397": 483, "40398": 483, "404": [110, 151, 241, 242, 245, 262, 395, 407, 419, 420, 441, 472, 478], "40408": 483, "40412": 483, "40417": 483, "40421": [482, 483], "40422": 483, "40423": 483, "40428": [482, 483], "40429": [473, 483], "40431": 483, "40432": 483, "40436": 483, "40443": 483, "40447": 483, "40448": 483, "40453": 483, "40457": 483, "40458": 483, "40459": 483, "40465": [473, 482, 483], "40468": [472, 482, 483], "40477": 483, "40479": [482, 483], "40480": 483, "40492": 483, "40495": [482, 483], "40497": 483, "40499": 483, "405": [68, 110, 241, 399, 484], "40501": 483, "40502": 483, "40503": 483, "40504": 483, "40511": 483, "40514": 483, "40515": 483, "40521": 483, "40523": 483, "40527": 483, "40536": 483, "40541": 483, "40545": 483, "40549": 483, "40550": 483, "40552": 483, "40559": 483, "40561": 483, "40563": 483, "40564": 483, "40566": 483, "40571": 483, "40585": 483, "40592": 483, "40593": 483, "40596": 483, "40597": 483, "406": [110, 241], "40607": 483, "40611": 483, "40612": 483, "40614": 483, "40617": 483, "40620": 483, "40624": 483, "40626": 483, "40630": 482, "40631": 483, "40636": 483, "40637": 483, "40645": [472, 483], "40648": 483, "40650": 483, "40653": 483, "40662": 483, "40663": 483, "40665": 483, "40670": 483, "40671": 483, "40676": 483, "40677": 483, "40679": 483, "40680": 483, "40683": 483, "40684": 483, "40692": 483, "40695": 483, "40696": 483, "40698": [482, 483], "407": [110, 241], "40701": 483, "40703": 483, "40723": 483, "40724": 483, "40726": 483, "40737": 483, "4074": 469, "40741": 483, "40744": [472, 483], "40750": 483, "40754": 483, "40755": 483, "40756": 483, "40759": 483, "40767": 483, "40777": 483, "40780": 483, "40782": 483, "40791": 483, "40792": [472, 483], "40795": 483, "408": [110, 241], "40807": 483, "40810": [472, 483], "40816": 483, "40823": 483, "40824": [482, 483], "40826": 483, "40834": 483, "40838": 483, "40839": [472, 483], "40847": 483, "40849": [472, 483], "40854": 483, "40855": 483, "40859": 483, "4086": 341, "40870": 483, "40874": 483, "40876": 483, "40880": 483, "40882": 483, "40883": 483, "40884": 483, "40889": 483, "40890": [472, 483], "40897": 483, "409": [68, 110, 241, 484], "40903": 483, "40904": 483, "40910": 483, "40924": 483, "40927": 483, "40928": 483, "40939": 483, "40943": [472, 483], "40947": 483, "40948": 483, "40950": 483, "40955": 483, "40956": 483, "40957": 483, "40958": 483, "4096": [89, 107, 109, 115, 160, 173, 223, 225, 235, 337, 344, 365, 475], "40960": 109, "40964": 483, "40967": [482, 483], "40968": 483, "40979": 483, "4098": [344, 442, 446], "40985": 483, "40989": 483, "40998": 483, "40g": 221, "40x": 395, "41": [101, 261, 307, 318, 319, 343, 419, 451, 468, 482, 483], "410": [110, 241], "41001": [472, 483], "41002": 483, "41003": 483, "41004": 483, "41005": 483, "41006": [472, 483], "41009": 483, "41011": 483, "41025": 483, "41028": 483, "41031": 483, "41039": 483, "41043": 483, "41045": 483, "41048": 483, "41052": 483, "41056": 483, "41058": 483, "41061": 483, "41064": [472, 483], "41068": 483, "41069": 483, "41073": [472, 483], "41074": 483, "41076": 483, "41084": 483, "41085": 483, "41086": 483, "41094": 483, "411": [87, 110, 241, 267, 352, 382, 483], "41100": [482, 483], "41103": [472, 483], "41116": 483, "41123": [472, 473, 483], "41137": [473, 483], "41138": 483, "41139": [472, 483], "41142": 483, "41144": 483, "41149": 483, "41152": 483, "41161": 483, "41162": 483, "41175": 483, "41180": 483, "41182": 483, "41193": 483, "41194": 483, "41195": 483, "412": [68, 110, 226, 241, 484], "41207": 483, "41215": 483, "41218": 483, "4122": [68, 254, 256, 467], "41229": [472, 483], "41233": 483, "41235": 483, "41246": 483, "41247": 483, "41249": 483, "41252": 483, "41260": 483, "4127": [344, 442, 446], "41273": 483, "41282": 483, "41287": 483, "41288": 483, "41295": 483, "41299": 483, "413": [110, 241, 483], "41300": 483, "41304": 483, "41306": 483, "41314": 483, "41316": 483, "41317": 483, "41322": 483, "41323": 483, "41324": 483, "41332": [472, 483], "41333": 483, "41334": [472, 483], "41340": 483, "41341": 483, "41342": 483, "41344": 483, "4136": [469, 471], "41361": 483, "41364": 483, "41369": 483, "41370": 483, "41373": 483, "41374": 483, "41384": 483, "4139": 442, "414": [68, 110, 186, 241, 343, 382, 435, 465, 483, 484], "41402": 483, "41403": 483, "41412": 483, "4142": 344, "41421": 483, "414213": 221, "41421356": 186, "414213562373095048801688724": 186, "4142135623730951": 186, "4142135623730951j": 154, "41422": 483, "41425": 483, "41428": [472, 483], "41431": 483, "41435": 483, "41439": 483, "41440": [472, 483], "41440500499993504": 367, "41443": 483, "41462": 483, "41467": 483, "41468": 483, "41471": 483, "41473": 483, "41477": 483, "41486": [472, 483], "41490": 483, "41491": 483, "41492": 483, "41497": 483, "41498": 483, "41499": 176, "415": [110, 241], "41503": 483, "41513": 483, "41515": 483, "41517": 483, "41520": 483, "41521": 483, "41524": 483, "41525": 483, "41526": 483, "41528": 483, "41531": 483, "41533": 483, "41543": [472, 483], "41546": 483, "41557": 483, "41559": [472, 483], "41561": 483, "41576": 483, "41586": 483, "416": [110, 241, 382], "41602": 483, "41604": 483, "41609": 483, "41611": 483, "41617": 483, "41620": 483, "41621": 483, "41624": 483, "41625": [472, 483], "41627": 483, "41631": 483, "41638": 483, "41654": 483, "41659": 483, "41662": 483, "41670": 483, "41675": 483, "41681": 483, "41686": 483, "41687": 483, "41689": 483, "4169": 318, "41690": 483, "41692": [472, 483], "41696": 483, "417": [110, 241, 245], "41706": 483, "41710": [473, 483], "41713": [472, 483], "41718": 472, "41720": 483, "41726": 483, "41730": 483, "41731": 483, "41732": 483, "41735": 483, "41739": 483, "41744": 483, "41747": 483, "41748": 483, "41754": 483, "41756": [472, 483], "41773": 483, "41774": 483, "41775": 483, "41780": 483, "41784": [472, 483], "41789": 483, "41792": [472, 483], "41796": 483, "417a": 469, "418": [241, 441, 472, 476, 482, 483], "4180": [175, 483], "41805": 483, "41810": [472, 483], "41815": 483, "41816": [472, 483], "41817": 483, "41818": 483, "41825": 483, "41831": 483, "41832": [472, 483], "41833": 483, "41834": [472, 483], "41837": 483, "41840": 483, "41842": [472, 483], "41845": 483, "41848": 482, "41861": 483, "41870": [472, 483], "41873": [472, 483], "41876": 483, "41877": 483, "41887": 483, "41889": 483, "41891": 483, "41894": 483, "419": [382, 471], "41900": 483, "41902": 483, "41905": 483, "41906": 483, "41907": 483, "41909": 483, "41910": 483, "41916": 483, "41922": [472, 483], "41923": [472, 483], "41928": 483, "4193": 259, "41930": [473, 483], "41933": 483, "41936": [472, 483], "41939": 483, "41943": 483, "41944": 483, "4195": 471, "41960": 483, "41963": 483, "41966": 483, "41970": 483, "41972": [472, 483], "41974": [472, 483], "41976": 483, "41979": 483, "41984": 483, "41986": 483, "41993": 483, "41994": 483, "42": [78, 85, 94, 96, 101, 120, 122, 125, 129, 139, 160, 169, 170, 176, 186, 193, 225, 226, 255, 268, 283, 284, 292, 296, 297, 318, 343, 344, 345, 367, 381, 384, 386, 388, 389, 420, 427, 429, 440, 441, 446, 449, 466, 467, 468, 475, 476, 479, 481, 482, 483], "420": [68, 87, 250, 432, 483, 484], "42005": 483, "42008": 483, "4201": 471, "42010": 483, "42012": [473, 483], "42014": 483, "42015": 483, "42021": 483, "42030": 483, "42035": [473, 483], "42043": 483, "42047": 483, "42051": 483, "42059": 483, "42061": 483, "42064": 483, "42065": 483, "42066": 483, "42073": 483, "42083": 483, "42085": 483, "42087": 483, "42089": 483, "42090": 483, "42093": [472, 483], "42095": 483, "421": [68, 241, 352, 483, 484], "42103": 483, "42111": 483, "42116": 483, "42119": 483, "42120": 483, "42123": 483, "42125": 483, "42128": 483, "42129": 483, "42131": [472, 483], "42133": [472, 483], "42134": [472, 483], "42135": [472, 483], "42136": [472, 483], "42137": [472, 483], "42140": 483, "42143": 483, "42146": 483, "42150": 483, "42151": 483, "42153": 483, "42157": [472, 483], "42158": 483, "42163": 483, "4217": 223, "42171": 483, "42174": 483, "42183": 483, "42195": [472, 482, 483], "42197": 483, "42199": 483, "421e": 94, "422": 241, "42202": [472, 483], "42206": 483, "42212": 483, "42214": 483, "42217": 483, "42218": 483, "42222": 483, "42225": 483, "42232": 483, "42233": 483, "42235": 483, "42236": 483, "42237": 483, "42238": 483, "42246": 483, "42248": 483, "42249": 483, "42251": [472, 483], "42255": [473, 483], "42257": 483, "42260": [472, 483], "42262": [472, 483], "42264": [472, 483], "42266": 483, "42268": 483, "42269": [472, 483], "42278": 483, "42282": 483, "42296": 483, "42299": [472, 483], "423": 241, "42308": [472, 483], "42316": 483, "42318": 483, "42323": 483, "42328": 483, "42332": 483, "42333": [472, 483], "42340": 483, "42345": [472, 482, 483], "42349": 483, "42350": 483, "42351": 386, "42361": 483, "42369": 483, "42374": 483, "42375": 483, "42378": [269, 483], "42381": 483, "42382": 483, "42383": 483, "42384": 483, "42385": 483, "42388": 483, "42392": [472, 483], "42393": [472, 483], "42398": 483, "424": [241, 477], "42403": 483, "42406": 483, "42413": [472, 483], "42415": 483, "42423": [472, 483], "42426": 483, "42435": 483, "42470": 483, "42482": 483, "42487": 483, "425": [98, 241, 482, 483], "42500": 483, "425000000": [186, 476], "42504": 483, "42508": 483, "42517": 483, "42532": 483, "42536": 483, "4254": [478, 483], "42540": 483, "42540766411282592856903984951653826560": 99, "42540766411282592856903984951653826561": 99, "42553": 483, "42562": 483, "42572654": 446, "42576": 483, "4258": [469, 471, 481], "42584": 483, "42591": 483, "42598": 483, "42599": 472, "426": [98, 241], "42603": [472, 483], "42604": 483, "42609": 483, "42613": 483, "42615": 483, "42627": 483, "42630": 483, "42639": [472, 483], "42641": 483, "42644": 483, "42655": 483, "42658": 483, "42678": 483, "42681": 483, "42685": 483, "42686": 483, "42692": 483, "4272": 469, "42721": 483, "42725": [472, 483], "42726": 483, "42727": 483, "42737": [472, 483], "42739": 483, "42740": 483, "42745": 483, "42747": 483, "42756": 483, "42759": 483, "42772": 483, "42777": 483, "42780": 483, "42782": 483, "42794": 483, "42799": 483, "428": [241, 296, 477], "42800": 483, "42802": [472, 483], "42806": 483, "42808": 483, "42811": 483, "42814": 483, "42819": 483, "42823": 483, "42827": 483, "42834": 483, "42846": 483, "42848": 483, "4285": [469, 471], "42851": 483, "42854": 483, "42856": [472, 483], "42862": 483, "42864": [472, 483], "42866": 483, "42874": 483, "42877": 483, "42882": 483, "42885": 483, "42892": 483, "429": [241, 477], "42901": 483, "42904": 483, "4291": [259, 483], "42914": [472, 483], "42918": 483, "42919": 483, "42923": 483, "42924": 483, "42927": [472, 483], "4293": 469, "42931": 483, "42934": 483, "42938": 483, "42944": 483, "4294967295": [455, 479], "4294967296": [99, 259, 470], "42955": [472, 483], "42958": 483, "42960": 483, "42967": [472, 479, 480, 481, 482, 483], "42971": 483, "42972": 483, "42979": 483, "42986": 483, "42988": 483, "42990": [472, 483], "42994": 483, "42997": [472, 483], "42_572_654": 446, "42els": 483, "43": [104, 160, 173, 183, 223, 341, 344, 367, 441, 475, 481, 482, 483], "4300": [34, 344, 472, 473, 480, 481, 482], "43008": [472, 482, 483], "43012": 483, "43014": 483, "43017": [472, 483], "43024": 483, "4303": 483, "43030": 483, "43031": 483, "43066": 483, "43075": 483, "43077": 483, "43080": [472, 483], "43084": 483, "43086": 483, "431": 241, "43102": 483, "43103": [472, 483], "43105": 483, "43106": [472, 483], "43108": 483, "43109": 483, "43112": 483, "43118": 483, "43121": 483, "43124": 483, "43125": 483, "43137": 483, "4314": 186, "43146": 483, "43149": [472, 483], "43153": 483, "43155": 483, "43158": 483, "43162": 483, "43163": 483, "43172": 483, "43174": 483, "43176": 483, "43179": 483, "43181": 483, "43199": 483, "432": [34, 480, 483], "43216": [473, 483], "43218": 483, "4322": 110, "43224": [473, 483], "43232": 483, "43234": [473, 483], "43239": 483, "43244": [472, 483], "43245": 483, "43251": 483, "43253": 483, "43258": 483, "43260": 483, "43265": 483, "43270": 483, "43277": [472, 483], "43278": 483, "43283": 483, "43284": 483, "43285": 483, "43287": [472, 483], "43288": 483, "43295": 483, "43296": 483, "43298": 483, "433028": [479, 483], "433030": [473, 483], "4331": [343, 477], "43312": 483, "43316": 483, "43317": 483, "43318": 483, "43321": 483, "43323": 483, "43332": 483, "43352": 483, "43354": 483, "43356": [472, 483], "43362": 483, "43368": 483, "43369": 483, "43372": 483, "43390": 483, "43392": 483, "43399": 483, "433b": [398, 467], "434": [68, 247], "43406": 483, "43407": 483, "43410": 483, "43413": 483, "43414": 483, "43420": 483, "43422": 483, "43423": 483, "43424": 483, "43425": 483, "43428": 483, "43433": 483, "43434": 483, "43439": [472, 483], "43440": 483, "43445": 483, "43452": [472, 483], "43464": 483, "43466": [472, 483], "43472": 483, "43475": [472, 483], "43478": 483, "43492": 483, "43497": 483, "43498": 483, "435": [308, 477], "4350": 483, "43510": 483, "43517": 483, "43521": 483, "43522": 483, "43532": [472, 483], "43534": 483, "43538": 483, "43541": 483, "43542": 483, "43555": 483, "43558": 483, "4356": [472, 483], "43567": 483, "43568": 483, "43571": [472, 483], "43575": [472, 483], "43577": 483, "43592": 483, "436": [68, 319], "43607": 483, "43612": 483, "43613": 483, "43617": 483, "43625": 483, "43631": 483, "43643": 483, "4365": 469, "43650": 483, "43652": 483, "43655": 483, "43660": 483, "43666": 483, "43667": 483, "43669": [472, 483], "43672": [472, 483], "43680": 483, "43682": [472, 483], "43683": 483, "43688": [472, 483], "43689": 483, "43693": 483, "437": 158, "43706": 483, "43712": [472, 483], "43720": [472, 483], "43721": 483, "43723": 483, "43731": 483, "43733": 483, "43739": 483, "43744": 483, "43745": 483, "43751": 483, "43752": 483, "43753": [472, 483], "43754": 483, "43755": [482, 483], "43756": 483, "43757": 472, "43760": [472, 473, 483], "43762": [472, 483], "43764": 483, "43766": [472, 483], "43772": 483, "43774": 483, "43776": 483, "43778": 483, "43780": 483, "43783": 472, "43785": [472, 483], "43787": 483, "43788": [472, 483], "43789": [472, 483], "43791": [472, 483], "43794": [472, 483], "43795": [472, 483], "43797": [472, 483], "43798": 483, "43799": [472, 483], "4380": 259, "43811": [472, 483], "43817": [472, 483], "43820": 483, "43822": [472, 483], "43823": [472, 483], "43827": 483, "43833": [472, 483], "4384": 471, "43842": 483, "43843": 483, "43846": 483, "43851": 483, "43853": 483, "43857": 483, "43858": 483, "43859": 483, "43867": 483, "43868": [472, 483], "43869": 483, "43879": 483, "43880": [472, 483], "43882": [481, 483], "43892": 483, "43895": 483, "43901": [472, 483], "43905": 483, "43907": 483, "43908": [472, 473, 483], "43913": 483, "43914": [472, 483], "43916": [472, 483], "43918": 483, "43920": [472, 483], "43921": 483, "43923": 473, "43926": 483, "43930": 483, "43931": [473, 483], "43933": 483, "43937": 483, "43938": 483, "43945": 483, "4395": 483, "43950": [473, 483], "43952": 483, "43957": 483, "43959": 483, "43961": 483, "43962": 483, "43963": 483, "43972": 483, "43974": [473, 483], "43977": 483, "43979": 483, "4397e6": 94, "43981": 483, "43984": 483, "43987": 483, "43993": 483, "43998": [472, 483], "43b3c982cf697e0c5ab22172d1ca7421": 235, "43c": 369, "44": [117, 160, 186, 284, 318, 328, 387, 472, 476, 481, 482], "440": 384, "44002": 483, "44009": 483, "44010": [472, 483], "44011": 483, "44015": 483, "44018": 483, "44019": [473, 483], "44022": 483, "44024": 483, "44025": 483, "44026": 483, "44029": [473, 483], "44032": 483, "44035": 483, "44050": 483, "44059": 483, "44061": 483, "44072": 483, "44074": 483, "44077": [472, 483], "44081": 483, "44089": 483, "44092": [473, 483], "44094": 483, "44095": 483, "44098": 483, "441": [478, 483], "44100": [117, 295], "44110": 483, "44113": 483, "44114": 483, "44131": 483, "44133": 483, "44142": 483, "44143": 483, "44145": 483, "44150": 483, "44154": 483, "44156": 483, "44168": 483, "44173": 483, "44180": 483, "44184": 483, "44187": 483, "44195": 483, "442": [63, 68, 75, 227, 482, 483], "44201": 483, "44210": 483, "44219": 483, "44220": 483, "44232": 483, "44235": [473, 483], "44241": 483, "44242": 483, "44246": 483, "44254": 483, "44258": [473, 483], "44260": 483, "44263": [473, 483], "4428": 382, "44287": 483, "44289": 483, "44297": 483, "443": [87, 136, 242, 341, 477], "44304": 483, "44305": [472, 483], "44313": 483, "44317": 483, "44322": 483, "44335": 483, "44337": 483, "44338": 483, "44339": [473, 483], "44340": [473, 483], "44342": 483, "44347": 483, "44348": 483, "44349": 483, "44351": 483, "44353": 483, "44356": 483, "44357": [473, 483], "44359": 483, "44362": 483, "44363": 483, "44364": 483, "44368": 483, "44376": 483, "44378": 483, "44381": 483, "44389": 483, "44392": 483, "44394": 483, "44395": 483, "44396": 483, "44404": 483, "44409": 483, "44422": 483, "44434": 483, "44439": 483, "4444": 469, "44441": 483, "44444444": 344, "44446": 483, "4445": 186, "44451": 483, "44453": 483, "44456": 483, "44458": 483, "44461": 483, "44464": 483, "44466": [472, 483], "44468": 483, "44471": [473, 483], "44472": 483, "44482": 483, "44483": 483, "44486": 483, "44490": [472, 483], "44491": [473, 483], "44493": 483, "445": 68, "44511": 483, "44515": 483, "44516": 483, "44523": 483, "44524": 483, "44525": 483, "44530": 483, "44535": 483, "44539": 483, "44544": 483, "44547": [473, 483], "44549": 483, "44553": 483, "44554": 483, "44558": 483, "44561": 483, "44562": 483, "44566": 483, "44569": [473, 483], "44572": 483, "44581": 483, "44582": 483, "44584": [472, 483], "44587": 483, "44589": 483, "44590": [473, 483], "44592": 483, "44594": 483, "446": [68, 469], "44600": 483, "44605": 483, "44606": 483, "44608": 483, "44611": [473, 483], "44613": 483, "44631": 483, "44633": 483, "44635": 483, "44636": 483, "44638": 483, "44646": 483, "44647": 483, "44648": 483, "44649": 483, "44651": 483, "44653": 483, "44655": 483, "44661": 483, "44662": 483, "44666": 483, "44667": 483, "44674": [473, 483], "44676": 483, "44678": 483, "44682": 483, "44686": 483, "44687": 483, "44688": [473, 483], "44689": 483, "44690": 483, "44693": 483, "44698": 483, "44704": 483, "44708": 483, "44709d6fcb83d92a76dcb0b668c98e1b1d3dafe7": 235, "4471": 475, "44717": 483, "4472": 483, "44720": 483, "44725": 483, "4473": 477, "44732": 483, "44733": 483, "44734": 483, "44740": 483, "44747": 483, "44751": 483, "44752": 483, "44771": 483, "44784": 483, "44786": 483, "44791": 483, "44792": 483, "44793": 483, "448": [68, 430, 483], "44801": 483, "44806": 483, "44807": 483, "44817": 483, "44821": 483, "44822": 483, "44826": 483, "44828": 483, "44838": 483, "44839": 483, "44844": 483, "44848": 483, "44849": 483, "44852": 483, "44856": 483, "44859": 483, "44860": 483, "44863": 483, "44865": 483, "44872": 483, "44874": 483, "44878": 483, "44885": 483, "44886": 483, "44889": 483, "4489": 476, "44890": 483, "44891": 483, "44893": 483, "44895": 483, "44900": 483, "44903": 483, "44904": 483, "44911": 483, "44914": 483, "44929": 483, "44934": [473, 483], "44935": 483, "44945": 483, "44947": 483, "44949": 483, "44953": 483, "44954": 483, "44955": 483, "44957": 483, "44959": 483, "44962": 483, "44963": 483, "44967": 483, "44977": [473, 483], "44978": 483, "44987": [473, 483], "45": [86, 95, 146, 160, 167, 186, 225, 267, 283, 318, 337, 343, 384, 386, 465, 466, 467, 472, 481, 482, 483], "450": 477, "45000": [472, 483], "45001": 483, "45007": 483, "45010": 483, "45011": 483, "45012": 483, "45018": 483, "45019": 483, "45020": 483, "45021": 483, "45022": 483, "45024": 483, "45026": 483, "45030": 483, "45034": 483, "4503599627370497": 221, "45042": 483, "45046": [473, 483], "45052": 483, "45056": 483, "45061": 483, "45067": 483, "45075": 483, "45081": 483, "45083": 483, "45085": [473, 483], "45094": 483, "45099": 483, "451": [45, 68, 160, 241, 250, 302, 324, 352, 432, 472, 474, 478, 483], "45100": 483, "45107": 483, "45116": 483, "45121": 483, "45123": 483, "45124": [473, 483], "45125": 483, "45128": 483, "45129": [473, 483], "4513": 102, "45132": [473, 483], "45138": 483, "45150": 483, "45155": 483, "45156": 483, "45160": 483, "45162": 483, "45163": 483, "45166": 483, "45167": 483, "45168": 483, "45171": 483, "45173": [473, 483], "4518": 102, "45183": 483, "45185": 483, "45188": 483, "45190": [473, 483], "45192": 483, "45193": 483, "45195": 483, "45209": 483, "45216": 483, "45220": 483, "45221": 483, "45225": 483, "45228": 483, "45234": 483, "45235": 483, "45238": 483, "45239": 483, "45243": [473, 483], "45249": 483, "45250": 483, "45256": [473, 483], "45262": 483, "45269": 483, "45274": 483, "45280": 483, "45292": [473, 483], "45296": 483, "453": [68, 210], "45313": 467, "45315": 467, "45317": 483, "45320": [473, 483], "45321": 483, "45324": 483, "45328": 483, "45329": 483, "45337": 483, "45340": [473, 483], "45343": 483, "45355": 467, "45356m": 467, "45359": 483, "45367": 483, "45371": 483, "45375": 483, "45379": 483, "45383": 483, "45385": 483, "45386": 483, "45390": 483, "45392": 483, "45393": 483, "45395": 483, "454": 477, "45400": 483, "45402": 483, "45403": 483, "45405": 483, "45406": 483, "45408": 483, "45410": 483, "45411": 483, "45412": [473, 483], "45413": [473, 483], "45416": 483, "45417": 483, "45428": 483, "45429": [473, 483], "45433": [473, 483], "45434": [473, 483], "45438": 483, "45440": [473, 483], "45445": 483, "45447": [472, 473, 482, 483], "45449": 483, "45450": 483, "45459": [473, 483], "45461": 483, "45464": 483, "45467": 483, "45474": [473, 483], "45475": 483, "45489": 483, "4549": 464, "45494": 483, "45495": 483, "45507": 483, "4551": 475, "45514": 483, "45515": 483, "45516": 483, "45521": 483, "45522": [473, 483], "45526": 483, "45530": 483, "45532": 483, "45535": 483, "45536": 483, "45548": [473, 483], "45557": 483, "45561": 483, "45566": 483, "45569": [473, 483], "45570": [473, 483], "45571": [473, 483], "45573": 483, "45574": 483, "45577": 483, "45578": 483, "45581": 483, "45582": 483, "45595": 483, "456": [30, 68, 73, 102, 186], "45604": 483, "45606": 483, "45607": [473, 483], "45609": 483, "45613": [473, 483], "45614": 483, "45615": 483, "45616": 483, "45618": 483, "45635": 483, "45636": 483, "45639": 483, "45640": 483, "45643": 483, "45644": 483, "45654": 483, "45655": 483, "45662": 483, "45663": 483, "45664": 483, "45666": 483, "45668": 483, "45678": 483, "45679": [341, 483], "45680": 483, "45688": 483, "45695": 483, "45696": 483, "45701": 483, "45703": 483, "45709": 483, "45711": [473, 483], "45716": 483, "45720": 483, "45723": 483, "45726": 483, "45727": 483, "45731": 483, "45732": 483, "45738": 483, "45743": 483, "45745": 483, "45747": [473, 483], "45753": 483, "45754": 483, "45755": 483, "45757": 483, "45763": [473, 483], "45764": 483, "45765": 483, "45766": 483, "45772": 483, "45773": 483, "45774": 483, "45783": 483, "45786": 483, "45788": 483, "45790": 483, "45798": 483, "458": 467, "45800": 483, "45803": 483, "45811": 483, "45813": 483, "45816": 483, "45820": 483, "45822": 483, "4582495471": 343, "45826": 483, "45828": [473, 483], "45829": 483, "45831": 483, "45835": 483, "45837": [473, 483], "4584": 319, "45840": 483, "45847": [473, 483], "45848": 483, "45850": 483, "45855": 483, "45863": 483, "45866": 483, "45873": 483, "45874": 483, "45876": 483, "45881": 483, "45885": 483, "45886": 483, "45898": 483, "45901": 483, "4591308524824727": 343, "45915": 483, "45917": [473, 483], "45923": 483, "45924": 483, "45925": 483, "45947": [473, 483], "45948": 483, "45949": 483, "45950": 483, "45953": 483, "45995": 483, "45997": 483, "46": [101, 160, 318, 344, 452, 472, 481, 482, 483], "46000": 483, "46004": 483, "46006": 483, "46007": [473, 483], "46009": 483, "46014": [473, 483], "46016": 483, "46018": 483, "46023": 483, "46025": 483, "46028": 483, "4603": [481, 482], "46030": 483, "46031": 483, "46032": 483, "46033": 483, "46039": 483, "46042": 483, "46045": 483, "46048": 483, "46049": 483, "46053": 483, "46054": 483, "46055": 483, "4606": 469, "46066": 483, "46070": 483, "46072": 483, "46075": 483, "46080": 483, "46085": 483, "46088": 483, "46091": 483, "461": [68, 344], "46103": 483, "46105": 483, "46106": 483, "46107": 483, "46109": 483, "46110": 483, "46114": 483, "46118": 483, "46120": 483, "46124": 483, "46125": 483, "46126": 483, "46129": 483, "46140": 483, "46142": [473, 483], "46150": 483, "4616": 483, "46161": 483, "4617": 475, "46170": 483, "46176": 483, "46195": 483, "46196": 483, "46197": 483, "46202": 483, "46205": 483, "46208": 483, "46217": 483, "46221": 483, "46222": 483, "46232": 483, "46235": 483, "46236": 483, "46237": 483, "46238": 483, "46239": 483, "46240": 483, "46242": 483, "46244": 483, "46245": [473, 483], "46246": 483, "46252": 483, "46257": 483, "46258": 483, "46262": 483, "46263": 483, "46266": 483, "46269": 483, "4627": [262, 483], "46278": 483, "46285": 483, "46289": 483, "46296": 483, "46297": 483, "4630": 483, "46306": 483, "46307": 483, "46314": 483, "46315": 483, "46316": 483, "46323": 483, "46328": [473, 483], "46329": 483, "46331": 483, "46333": 483, "46339": 483, "46342": 483, "46343": [473, 483], "46347": 483, "46361": 483, "46362": 483, "46364": 483, "46376": 483, "46382": 483, "46383": 483, "46400": 483, "46406": 483, "46407": 483, "46409": 483, "46412": 483, "46414": 483, "46415": 483, "46417": 483, "4642": 288, "46421": 483, "46422": 483, "46429": 483, "46430": 483, "46431": 483, "46433": 483, "46434": 483, "46436": 483, "46443": 483, "464471": 483, "46458": 483, "46463": 483, "46469": 483, "46470": 483, "46471": 483, "46474": 483, "46475": 483, "46476": 483, "4648": [143, 327, 483], "46480": 483, "46481": 483, "46483": [473, 483], "46487": 483, "46491": 483, "465": [68, 335, 483], "46503": 483, "46509": 483, "46510": 483, "46513": 483, "46521": 483, "46522": 483, "46527": 483, "46528": 483, "46534": [473, 483], "46539": 483, "46542": 483, "46544": 483, "46547": 483, "465484": 476, "46553": 483, "46556": 483, "46557": 483, "46564": 483, "46565": 483, "46566": 483, "46567": 483, "46571": 483, "46576": 483, "4658": 347, "46581": 483, "46587": 483, "46591": 483, "466": 68, "4660": 109, "46600": 483, "46602": 483, "46607": [473, 483], "46608": [473, 483], "4661": 475, "46613": [473, 483], "46615": 483, "46616": 483, "46623": 483, "46624": 483, "46626": 483, "46630": 483, "46638": 483, "46640": [473, 483], "46642": 483, "46643": 483, "46644": 483, "46655": 483, "46656": [473, 483], "46659": [473, 483], "46672": 483, "46675": 483, "46676": 483, "46678": 483, "46681": 483, "46696": 483, "46702": 483, "46707": 483, "46708": 483, "46712": 483, "46720": 483, "46721": 483, "46724": 483, "46725": 473, "46729": 483, "46730": 483, "46732": 483, "46736": 483, "46737": 483, "46744": 483, "46748": 483, "46752": 483, "46755": 483, "46756": 483, "46760": 483, "46762": 483, "46764": 483, "46775": 483, "46784": 483, "46785": 483, "46786": 483, "46787": 483, "467924": 468, "46794": 483, "46797": 483, "468": [68, 160, 483], "46805": [473, 483], "46808": 483, "46811": 483, "46820": 483, "46823": 483, "46827": 483, "46829": 483, "46836": 483, "46838": 483, "46841": [473, 483], "46845": [473, 483], "46848": 483, "46850": 483, "46852": [473, 483], "46860": 483, "46864": [473, 483], "46877": 483, "4688": [469, 471], "46881": 483, "46890": 483, "46891": 483, "46903": 483, "46906": [473, 483], "46907": 483, "46913": 483, "46917": [473, 483], "46921": 483, "46927": 483, "46932": 483, "46933": 483, "46940": 483, "46942": 483, "46944": 483, "46948": 483, "46951": 483, "46955": 483, "46961": 483, "46962": 483, "46968": 483, "46973": 483, "46981": 483, "46985": 483, "46987": 483, "46993": 483, "46994": 483, "46995": 483, "46996": [473, 483], "46998": 483, "47": [102, 183, 209, 261, 318, 319, 424, 442, 451, 468, 472, 483], "47000": 483, "47004": 483, "47005": 483, "47009": 483, "47012": 483, "47015": 483, "47016": 483, "47022": [473, 483], "47024": 483, "47025": 483, "47029": 483, "47032": 483, "47037": 483, "47039": 483, "47040": 483, "47045": 483, "47053": 483, "47057": 483, "47061": [473, 483], "47062": 483, "47063": 483, "47066": [473, 483], "47067": 483, "4707": 471, "47070": 483, "47074": 473, "47086": 483, "47087": [473, 483], "47088": [473, 483], "47091": 483, "47095": [473, 483], "47098": [473, 483], "47099": 483, "471": [68, 160, 483], "4710": 469, "47101": 483, "47103": 483, "47104": 483, "47109": 483, "47115": 483, "47117": 483, "47120": 483, "47126": 483, "47127": 483, "47129": 483, "47135": 483, "47146": [474, 483], "4715": 469, "47151": 483, "47152": [473, 483], "47161": 483, "47162": 483, "47167": 483, "47169": 483, "47171": 483, "47176": 483, "47177": 483, "47182": 483, "47186": 483, "47189": 483, "47194": 483, "47197": 483, "47205": 483, "47208": 483, "47211": 483, "47212": 483, "47220": 483, "47227": 483, "47231": 483, "47239": 483, "47256": 483, "47260": 483, "4727": 483, "4739": [469, 471], "4746e7": 94, "475": [68, 213, 225, 293, 328, 329, 333, 337, 366, 483], "4753": 471, "4756": 469, "4759": 469, "476": [68, 382, 483], "4761": 476, "4764": 469, "477": [68, 474, 483], "477863": 475, "478": 478, "479": [68, 113, 213, 479, 480, 483], "479001600": 226, "479425538604": 186, "4794255386042030002732879352": 186, "4796": 469, "48": [93, 96, 235, 259, 343, 344, 382, 398, 472, 483], "480": 384, "4801": 341, "4805": 475, "4806": 483, "481": 466, "4816": 469, "48241": 483, "483": [87, 478], "4832": 483, "4833": 483, "48330": [474, 483], "484": [68, 87, 122, 343, 344, 386, 427, 428, 436, 441, 472, 473, 474, 479, 480, 481, 483], "48484": 167, "485": [68, 154, 275, 483], "4855": 382, "486": [68, 214, 476, 483], "4865": 469, "486539264": 176, "4868": 471, "487": [68, 483], "4870": 475, "4879": 469, "488": [68, 250, 311, 362, 455, 483], "4885": 477, "489": [33, 45, 68, 71, 73, 250, 482, 483], "4892": 476, "49": [102, 245, 261, 267, 283, 382, 442, 446, 449, 472, 481, 482, 483], "490": 98, "49083": 473, "491": 382, "4910": 471, "49152": 106, "4918": 241, "492": [68, 87, 161, 255, 427, 428, 430, 479, 483], "4928": 483, "493": [68, 98], "4931": 483, "494": [102, 479], "495": [68, 425, 483], "4954": [335, 483], "4960hq": [481, 482], "4963": 483, "4966": 476, "4969": 469, "497": 261, "4972": [475, 478], "498": [68, 87, 435, 477, 483], "498245": 475, "499": [221, 223, 241, 288], "4991": 469, "49a6": 337, "49g": 469, "4_500": 343, "4a0": 80, "4c": 369, "4c524c52": 344, "4d": 446, "4dom": 462, "4f": 318, "4gib": 483, "4h": [177, 347], "4j": [299, 427, 435, 442, 468], "4l": 462, "4rc1": 483, "4s": 102, "4th": 340, "4x": [261, 292, 474, 476, 477, 479, 483], "4y": 483, "50": [79, 84, 85, 95, 101, 102, 139, 155, 160, 183, 186, 247, 267, 279, 308, 318, 319, 337, 343, 352, 366, 367, 376, 384, 388, 390, 412, 413, 426, 449, 450, 451, 468, 469, 473, 475, 478, 479, 480, 481, 482, 483], "500": [85, 102, 110, 155, 183, 186, 214, 223, 241, 288, 343, 344, 398, 407, 450, 452, 465, 467, 472, 483], "5000": [173, 186], "50000": [283, 367], "500000": 478, "5000000": 367, "50003": 468, "50007": 337, "5001": 483, "50022": 167, "5005": 343, "50096": 474, "500_000": [235, 344], "500mb": 186, "501": [102, 110, 241, 245, 293, 475], "5010": 483, "502": [110, 241, 466], "50220": 483, "50221": 483, "50222": 483, "50225": 483, "50227": 483, "50229": 483, "503": [110, 241], "5032": 469, "50380847": 341, "50380848": 341, "504": [110, 241, 344], "505": [102, 110, 241], "5054": 483, "5058": 186, "506": [241, 326, 479, 483], "50644": 483, "507": 241, "508": 241, "5080": 469, "5084": [469, 471], "509": [341, 468, 477, 483], "5094": 475, "50th": 343, "51": [89, 102, 104, 318, 384, 442, 468, 472], "510": 241, "51090942171709440000": 468, "511": [241, 422, 479], "5111111": 186, "51111111": 186, "512": [42, 131, 173, 235, 293, 328, 358, 424, 446, 467, 474, 475, 479, 481, 483], "5124": 483, "5127": 475, "512mib": 483, "513595166163142": 149, "514": [160, 269, 461, 465, 473, 483], "5142": 469, "515": [68, 221, 345, 473, 483], "5150": [471, 475], "51524": 483, "5155": 283, "515625": 283, "51574": 483, "5161": [248, 478, 483], "5175": 471, "5176": 469, "5178": 475, "518s": 474, "519": [68, 87, 382, 483], "52": [102, 104, 106, 139, 183, 275, 318, 319, 341, 345, 382, 442, 444, 466, 469, 483], "520": 68, "5202": 477, "521": 382, "5211": 469, "5228": 471, "523": [26, 33, 68, 465, 473, 474, 482, 483], "5237": [469, 471], "524": [293, 479, 483], "52425": [409, 483], "524288112": 186, "524313": [386, 479], "5246": 341, "525": [68, 87, 161, 255, 352, 430, 483], "52560": 85, "526": [68, 87, 102, 122, 181, 386, 427, 436, 472, 480, 481, 483], "5260": 469, "527": 464, "52719": 464, "528": [33, 34, 68, 461, 483], "5280": [341, 478, 483], "5288": [480, 483], "529": [33, 64, 68, 293, 352, 455, 461, 481, 483], "52g": 469, "53": [33, 78, 102, 104, 139, 183, 186, 275, 318, 344, 366, 390, 444, 467, 483], "530": [68, 430, 483], "5300": 483, "5303": 382, "5309": [478, 483], "53094": [469, 471, 475], "5313": 283, "5319": [479, 483], "5321": [203, 476], "5322": [194, 196, 199, 201, 203, 205, 207, 208, 335], "5331": 283, "535": 89, "536": 462, "5367": 468, "536th": 343, "537": 483, "5372": [398, 467], "538": [34, 68, 266, 455, 456, 483], "5381": 469, "539": [33, 68, 483], "539294296": 78, "54": [104, 139, 318, 332, 343, 423, 465, 472, 473], "540": [34, 68, 266, 293, 483], "541": 319, "5411": [478, 483], "5417": 475, "5424": [102, 269], "5432": 344, "54321": [102, 442], "54341": 386, "544": [386, 481, 483], "545": 68, "546": [160, 382], "5464": 469, "5468": 475, "54738": 483, "54781": 483, "5479": 469, "548": 319, "5490196078431373": 384, "54962537085770791": 451, "55": [33, 93, 95, 101, 102, 104, 139, 186, 226, 284, 318, 319, 343, 384, 441, 442, 444, 449, 450, 455, 479], "550": 395, "5506": 475, "551": [96, 469], "5511": 469, "5511151231257827e": 186, "5512": 469, "552": [34, 68, 250, 311, 473, 483], "553": [68, 483], "554": [33, 160, 483], "555": 78, "55554444": 344, "55555": 478, "5555555555555p": 468, "5556": 102, "5559e7": 94, "557": [181, 382, 480, 483], "5585": 469, "559": 261, "56": [101, 104, 183, 186, 225, 258, 283, 337, 343, 442, 444, 475, 478, 483], "560": [68, 385, 428, 483], "5600": 186, "5601": 158, "561702493119680037517373933e": 186, "562": [68, 428, 483], "5625": [343, 449], "563": [68, 113, 288, 386, 427, 436, 483], "5630": [469, 471], "5633": 483, "5639": 475, "564": [68, 483], "565": [68, 213], "566": [251, 483], "5663": 469, "567": [126, 129, 170, 186, 345, 452, 471, 480, 483], "5670": 469, "567004bf96e4a25773ebf4": 235, "5675": [471, 475], "5677": 469, "5678": [259, 398], "567812345678": 398, "5679": 469, "568": 186, "5680": [480, 481, 483], "5689": 476, "569": 96, "57": [109, 465, 481, 482, 483], "570": [427, 481, 483], "5700": 483, "57002": 483, "57011": 483, "5707963267948966": 384, "571": 382, "571186405732": 344, "571208": 341, "572": [78, 427, 430, 474, 481, 483], "5728": 469, "57281": 474, "573": [482, 483], "57344": 109, "5735": 259, "574": [299, 382, 481, 483], "5753": [469, 475], "57535828626024577": 451, "57539": 483, "5755": 483, "5758": 472, "57684": [473, 483], "577479": 475, "578": [59, 68, 142, 352, 467, 468, 483], "5788": 469, "5789": 241, "578966293710682886880994035146873798396722250538762761564": 344, "5793": 469, "5794": 343, "57s": 476, "58": [104, 158, 318, 343, 345, 483], "5800": [478, 483], "5812": 469, "5827": 469, "5829014980008651": 367, "584": [160, 293, 385, 402, 482, 483], "5842": 241, "5845": 477, "58451": 474, "5846": [473, 483], "585": [62, 87, 161, 344, 385, 386, 473, 482, 483], "586": [386, 472, 481, 482, 483], "5863": 476, "5867": 475, "587": [34, 68, 102, 341, 483], "5870": 476, "589": [382, 386, 481, 483], "5891": 158, "58933": 483, "5894": 483, "5895": 158, "59": [20, 89, 102, 183, 261, 319, 366, 382, 453, 475, 483], "590": [10, 68, 472, 473, 482, 483], "5906": 343, "591": [386, 481, 483], "5912": 343, "59121": 483, "5913": 469, "5914": 471, "5920": 469, "5929": 341, "593": [386, 482, 483], "594": [117, 141, 151, 152, 153, 173, 249, 272, 281, 287, 288, 295, 301, 336, 339, 349, 359, 397, 408, 473, 474, 483], "5950": 483, "596": [454, 482], "597": [258, 472, 483], "5975": 475, "598": 308, "5982": 469, "5983": [33, 468, 469], "599": [110, 223, 241, 288], "59900": 413, "59956": 483, "59pm": 183, "5_906": 343, "5a1": 483, "5a2": 483, "5aef": 337, "5c": 319, "5d": 102, "5e": [186, 347], "5i": 369, "5j": [225, 345, 449], "5mb": 483, "5r92": 464, "5s": 102, "5t": 464, "5th": 340, "5x": [464, 474, 479, 480, 483], "60": [126, 136, 147, 155, 166, 183, 186, 196, 261, 307, 318, 341, 343, 366, 381, 382, 384, 398, 435, 465, 467, 473, 475, 479, 481, 483], "600": [102, 183, 479, 483], "6000": [109, 235, 283], "600000": 471, "6001": 469, "6003": 469, "600362": 468, "6004799503160661l": 468, "602": [80, 482], "60203": 474, "60254": 384, "60346": 483, "604": [68, 88, 344, 483], "60436": 483, "60580": 483, "6064": 476, "6066": 341, "6071428571428572": 451, "6075": 475, "6081": 475, "609": 332, "6094": 469, "60_190": 343, "61": [166, 344, 366, 466, 483], "610": [226, 441, 449, 450], "6101": 469, "61162": 483, "612": [68, 101, 386, 468, 483], "61261m": 468, "613": [68, 102, 386, 483], "6135": [479, 483], "6137": 471, "614": [427, 482, 483], "61441": [479, 480], "615": [226, 425, 482, 483], "6152": [469, 478], "616": [469, 482, 483], "616263": 344, "61648": 483, "6167": 483, "617": [112, 431, 472, 473, 482, 483], "618": [101, 261, 472, 483], "619": 382, "6192": 469, "62": [104, 186, 238, 240, 382], "620": [101, 466], "6213": 95, "6220": 382, "623": [64, 318, 472, 474, 483], "624": [472, 473, 483], "62432": 483, "625": [343, 444, 481], "62519": 483, "626": [13, 68, 191, 428, 474, 483], "6267": 469, "628": [479, 483], "63": [78, 318, 340, 352, 483], "630": 483, "63072000": 341, "631": 160, "63103m": 33, "632": [472, 474, 483], "63301": 483, "6335014": 465, "634": [63, 68, 112, 427, 428, 483], "635": 472, "636": [427, 441, 472], "63760": 483, "6378": 340, "6378140": 94, "6397": 476, "64": [7, 42, 64, 68, 85, 93, 94, 99, 107, 136, 143, 146, 176, 177, 183, 186, 225, 235, 259, 261, 270, 283, 284, 293, 303, 304, 306, 332, 337, 341, 344, 347, 352, 384, 404, 419, 428, 442, 446, 449, 456, 461, 462, 464, 466, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "640": [34, 344, 384], "640625": 283, "64206": 225, "6422": [479, 483], "6431": 95, "64373": 483, "644": [341, 472, 474, 483], "64490": 483, "6450": 343, "64512": 344, "6459": 343, "646": [68, 158, 386, 483], "64662": 483, "647": [68, 386, 483], "6472": [469, 475], "64739884393063583815028902": 466, "647488369766392": 481, "6478": 483, "64783": 483, "648": 479, "649": [113, 429], "6491": 469, "64bit": [355, 474, 483], "65": [104, 288, 318, 332, 343, 344, 449, 462, 468, 469, 478, 483], "65000": 483, "65001": [476, 483], "650320426": 481, "650320427": 481, "65052": 483, "6507": 483, "6508": 469, "652": [68, 483], "6531": [205, 208, 335, 478, 483], "6532": [194, 205, 207, 208, 478, 480, 483], "65320": 456, "654": [68, 483], "6543": 247, "65490": 106, "655": [68, 386, 483], "65533": 176, "65535": [64, 422, 464], "65535l": 469, "65536": [64, 449, 483], "65565": 337, "6560": 476, "6564": 468, "657": [68, 102, 483], "65701": 483, "65772": 483, "65802": 483, "6582483453": 343, "6584": [481, 483], "6585": 241, "659": [68, 483], "6595": 469, "65961": [474, 483], "6598": 483, "66": [291, 389, 442, 463, 468], "6614918939584953775": 96, "662": 319, "6623": [478, 483], "66285": 483, "663": 102, "6639": 483, "664": 382, "6641": 475, "665": 102, "66543": 483, "666": 464, "6666": 478, "66666666666666663": 468, "666666666666667": 449, "6676": 483, "668": [102, 332], "669": [68, 102, 160, 483], "6690": 475, "6693": [469, 475], "67": [33, 104, 221, 225, 337, 343, 382, 384, 446, 468, 483], "670": [102, 473], "6700": 483, "67044": 483, "67048": [473, 474], "67056": 483, "6706": 475, "670664": 476, "671": 102, "6713": [469, 475], "6715": 476, "67179024": 444, "672": [102, 221], "6721": 483, "672102882379219": 481, "67248": 483, "673": [68, 102, 386, 483], "67300e": 94, "6739": 483, "674": 261, "675": [68, 225, 386, 483], "6755": 476, "676": 483, "6766": [479, 483], "67693": 483, "67790": 483, "678": [68, 474, 483], "6796": 343, "68": [96, 109, 186, 225, 318, 366, 413, 481], "680": [473, 483], "68000": 344, "6806": 343, "681": [68, 386, 483], "6816": 469, "68163": 483, "68166": 483, "682": [345, 473], "68264": 473, "682689492137086": 475, "683": [464, 474, 483], "684": [68, 483], "68400": 183, "6845": 469, "6851": 483, "6855": [248, 478, 483], "6856": [305, 469, 475, 478, 483], "6857": 469, "686": [258, 293], "68656c6c6f": 477, "6866": 469, "68686": 483, "686e": 94, "687": [343, 483], "688": [68, 161, 428, 483], "688e": 94, "689": 483, "689215": 451, "6896": 469, "68966": [473, 483], "68968": 483, "68k": 295, "68s": 476, "69": [102, 366, 413, 472], "69093": 483, "69142": 483, "6916": 483, "692": [68, 386, 483], "693": 474, "6939": 469, "694": 475, "695": [68, 101, 386, 429, 436, 483], "6953": 483, "6963": 469, "697": [101, 474, 483], "6973": 483, "698": [68, 386, 483], "699": [474, 483], "6_450": 343, "6_796": 343, "6a1": 468, "6d": [98, 102], "6dm": 98, "6e": [109, 221], "6f": 109, "6fa1d8fcfd719046d762": 235, "6fa459ea": [398, 467], "6ff843ba685842aa82031d3f53c48b66326df7639a63d128974c5c14f31a0f33343a8c65551134ed1ae0f2b0dd2bb495dc81039e3eeb0aa1bb0388bbeac29183": 235, "6final": 462, "6jack": 223, "6rc1": 483, "6s": [98, 102, 190], "6shhbbb": 475, "6th": [446, 483], "6to4": 259, "6x": [474, 483], "6yd86yt": 464, "70": [147, 183, 186, 318, 343, 364, 382, 441, 451, 452, 483], "700": 452, "7005": 469, "701": [68, 483], "7023": 465, "7031": 469, "7033": [469, 475], "70363": 473, "706": [358, 472, 473, 474, 481, 482, 483], "7062": 483, "7063": 483, "7065186196740147912": 96, "70710678118654757": 451, "7074029114692207l": 468, "70766": 473, "709": [68, 469, 483], "7094": 475, "70th": 183, "70x": [480, 483], "71": [104, 382, 474, 483], "711": 349, "711019": 468, "7113": 475, "7117": 469, "7133": 469, "71332": 382, "71383": 483, "714": 160, "7140": 469, "7144": 344, "7150": 469, "7159": [262, 478, 483], "716": 382, "717": 319, "7171": 477, "717ak": 319, "71828": 467, "718281": 275, "7182818": 468, "718281828459045": 471, "7182818284590451": 471, "718281828459045235360287471": [186, 468], "7182818285": 186, "718ak": 319, "71i": 464, "72": [186, 247, 261, 343, 384, 466, 467, 483], "720": [193, 475, 481], "72000": 476, "7205759403792794": 444, "7228": 469, "72284": 483, "7230": [242, 395], "7231": 241, "7232": [241, 469], "7233": 241, "72346": [474, 483], "7235": 241, "7238": 241, "7242": 469, "7246671520006203": 367, "72719": 483, "7279": 469, "727ak": 319, "728": [261, 304], "729": 446, "73": [318, 382, 452, 466, 481, 482], "7301": [341, 469, 475, 478], "730920": 183, "730920th": 183, "7311": 476, "7312": 469, "7316": 475, "7319": 469, "7330": 477, "7333": 469, "7347": 469, "7348": 469, "7356": 467, "73561": 483, "7357": 469, "73588": 483, "736": 120, "7362": 469, "74": [109, 343, 452, 481, 482], "74044": 483, "741": [89, 483], "74116": 483, "74166": 483, "7418": [469, 475], "7423": 382, "742598": 468, "744": 469, "74468": 483, "7451": 475, "74573": 483, "7461": 475, "7462": [469, 475], "74668": 483, "74690": [474, 483], "74696": [474, 483], "7471": [469, 475], "7475": 477, "748": 96, "74895": 483, "7490": 469, "74940": 483, "75": [87, 92, 102, 190, 193, 283, 343, 384, 449, 451, 465, 466, 468, 469, 474, 479, 480, 481, 482, 483], "750": 343, "750000e": 468, "751": 296, "75128": 483, "7525": [341, 483], "7528": 469, "75367": 483, "7538": 483, "754": [25, 154, 186, 262, 275, 347, 362, 430, 444, 456, 466, 468, 471, 473, 475, 479, 480, 483], "7540": 241, "755": [84, 102], "755670": 476, "75586": 483, "7559": 483, "75666": 483, "75705": 483, "75729": 483, "7585": 469, "759": 308, "75988": 483, "76": [143, 202, 343, 382, 384, 419], "7604": 469, "7609": 469, "761": 382, "7610": [469, 475], "762": 160, "7622": [469, 475], "7625": 319, "7633": 469, "76511": 483, "7652": 476, "767": [102, 406], "7678": 446, "768": [115, 365], "76846": 483, "769": 95, "7693": 235, "77": [104, 147, 186, 382, 384, 475], "7703": 469, "77102": 483, "7725": 241, "773": 101, "77377": 483, "77532": 483, "77617": [474, 483], "7766": 469, "7767": [469, 475], "7769": [480, 483], "777": [462, 478], "77749": 483, "77757": [474, 483], "7776": 483, "77772": 483, "7777777": 78, "77782": [474, 483], "778": 343, "779": [261, 382], "77e10": 435, "78": [208, 284, 476, 483], "78079": 483, "7830": [478, 483], "784": 382, "7853": 469, "78530": [474, 483], "78607": 483, "78707": 483, "78724": 483, "7876932": 293, "78851": [479, 480], "78878": 483, "789": [73, 186, 468], "79": [109, 382, 441], "7902": 469, "79033": 483, "79043": 183, "79060": 183, "79096": 483, "7914": 235, "79218": 483, "79228162514264337593543950336": 435, "79325": 483, "79382": 483, "79429": 483, "7948648": 193, "79512": 483, "7953": 95, "7956": 466, "79579": 483, "7958": 318, "7962": 475, "798": 296, "7988": 469, "7990": 483, "7994": [469, 477], "79940": [474, 483], "7_500": 318, "7a1": 483, "7b1": 483, "7bc817d5ba917528e8bd07ec461c635291e7b06a": 483, "7bit": [195, 197, 198, 201, 203, 208, 271, 475, 476, 483], "7e": 221, "7eguido": 394, "7f3529fcf759": 51, "7j": 442, "7s": 319, "7x": 483, "80": [85, 107, 136, 147, 155, 158, 167, 208, 242, 243, 247, 261, 307, 308, 332, 337, 338, 343, 384, 388, 394, 395, 452, 466, 473, 475, 478, 479, 483], "800": [141, 235, 270, 467, 469, 472, 475, 479, 483], "8000": [245, 295, 333, 407, 419, 420, 467, 481, 483], "800080": 384, "80010": [473, 483], "801": 475, "8013": 475, "8016": 469, "802": 337, "8024": 469, "802652743337129": 94, "8032": 469, "8035946855390597": 343, "80361": 483, "8038": 469, "804": 382, "8046": 475, "80527": 483, "8059983": 176, "8074": 469, "8080": [110, 242, 243, 337, 395, 419], "8081": 170, "8083": 465, "8092": 395, "80s": 98, "81": [87, 104, 261, 283, 318, 343, 378, 442, 446, 449, 451, 481], "810": 343, "81002": 483, "8104": 469, "81057": 483, "8106": 382, "81079": 483, "8109": 477, "8110": 483, "81194": 483, "8138": 483, "81403": 483, "8142": 469, "814253": 483, "815": 343, "81548": [473, 483], "8156": 469, "81620": [474, 483], "81652": 483, "8173": 382, "81790": 483, "8188": 475, "8192": [87, 107, 223, 225, 242, 407], "81w": 345, "82": [96, 464], "82012": 483, "82052": 483, "821": 335, "822": [106, 109, 200, 202, 230, 242, 335, 366, 464], "8222": 469, "8222838654177922817725562880000000": 468, "823": 483, "8231": 483, "8233": 469, "8235": 469, "8243": 483, "8256": 483, "8257": [469, 475], "8268": 469, "82711": 483, "8274": 98, "8276": [469, 475], "827738": 465, "828": 261, "82814": 483, "82836": 483, "8294": [469, 475], "8297": [241, 483], "829951": 468, "82eb": [398, 467], "83": [343, 382, 451, 477], "8300": 469, "83004": 483, "83006": 483, "830080526611674": 481, "83035": 483, "8305": 126, "83076": 483, "8311": 477, "83122": 474, "8321": [469, 475], "8322": [469, 475], "833": 102, "834": 319, "83434": 483, "83499": 483, "8354": 469, "83571": 481, "83638": [474, 483], "8364": [109, 225], "83658": 483, "83743": 481, "83861": 483, "83901": 483, "84": [183, 343, 479, 481, 483], "8402": [343, 477], "8406": 343, "8407": 476, "8413": 475, "84131": 483, "8425": [482, 483], "8442": 95, "8443": 341, "84436": [474, 483], "84461": [473, 483], "8451": 469, "84538": 474, "84540": 474, "84559": 474, "846388": 468, "8467": [423, 465], "84694": 483, "8470": 241, "84753": 483, "84783": 483, "848": 382, "8484": [469, 475], "84867": 483, "8492": 483, "84976": 483, "849999999": 186, "85": [146, 153, 288, 343, 478], "850": [158, 469], "850728": 475, "851": 296, "85128": 483, "8513": 476, "8518757509529533123": 96, "852": 158, "8524": 475, "8525": 483, "852554": 296, "85267": 483, "85272": 481, "85308": 483, "8536": 483, "8538": 483, "854": [186, 359], "8540": [475, 476], "85417": 483, "85432": 483, "855": [158, 221], "85525": 483, "85542": 473, "85567": 483, "857": 158, "85760": 483, "858": 158, "8585": 483, "85858": [474, 483], "8589934592": 466, "859": 251, "85936": 483, "8594": 476, "85984": [474, 483], "85987": 186, "85988": 186, "85_705_149": 446, "86": [96, 104, 173, 221, 343, 345, 382, 384], "860": 158, "8601": [150, 183, 190, 266, 340, 419, 473, 479, 483], "86087": 483, "86094": 483, "861": [158, 296], "86128": 483, "862": 158, "86275": 483, "86298": 483, "863": 158, "8637": [479, 483], "8637678": 446, "86388": [474, 483], "86399": [20, 183], "86400": 483, "86404": 483, "86421": 474, "86438": 483, "865": 158, "86508": 483, "866": [158, 190, 481], "86650": 483, "86682": 483, "8675309": 343, "86826": 483, "8684": 476, "8685": 475, "8688": 469, "869": 158, "86986": 483, "869e": 94, "869s": 474, "86yd": 464, "87": [186, 248, 343, 348], "870": 382, "87092": 483, "87106": 483, "87115": 483, "8713": 477, "8722": 483, "87235": 483, "87260": 483, "8729": 469, "87389": 483, "8739": 476, "87390": 483, "874": 261, "87447": 483, "87451": [479, 480, 481, 482], "87474": 483, "875": 283, "87518": 473, "87604": 483, "87634": 483, "87695": 483, "87729": 483, "87730": 483, "87758256189": 186, "8775825618903727161162815826": 186, "8777": 475, "877df851": 483, "87822": 483, "87849": 483, "87868": 483, "87889": 472, "87901": 483, "87925541791544": 318, "8797": 483, "87995": [474, 483], "87999": [474, 483], "87a": 249, "87x": 482, "88": [104, 183, 343, 382, 478], "88013": 483, "88024": 473, "88048": [472, 479, 480, 482], "88050": 483, "8806": 475, "8807": 475, "8808": 476, "88089": 483, "8809": 476, "88116": [473, 483], "88123": 483, "8813": 477, "8814": 475, "88226": 483, "88233": 483, "88261": 473, "88267": 483, "88279": [473, 483], "8828": 476, "88324": 483, "88330": 483, "88352": 483, "8837": 475, "8844": 475, "8845": 475, "88457": 473, "88496": 483, "8850": 475, "88500": 483, "88516": 483, "8859": [64, 109, 158, 190, 195, 196, 202, 205, 242, 288, 314, 340, 407, 417, 462, 475, 478], "88597": [474, 483], "886313e1": [398, 467], "88691": 483, "88745": 483, "88750": 483, "8876": 483, "88773": 483, "888": 284, "88831": 483, "88863": 483, "8888": [133, 136], "88888": 442, "88943": 483, "88965": 483, "88970": 473, "89": [104, 147, 186, 226, 337, 343, 441, 449, 450, 471, 475], "890": 345, "8901": [186, 482, 483], "8901234": 471, "89022": 483, "89026": 473, "89051": 483, "892": 319, "89237": 483, "89258": 483, "89263": 473, "89279": 483, "8931": 483, "89313": 473, "89325": [474, 483], "89336": [474, 483], "89373": 483, "89392": 483, "89412": 483, "89415": 483, "89452": 483, "89455": 483, "894e": [398, 467], "89519": [473, 474, 483], "89536": 474, "89545": 483, "89546": 483, "89550": 483, "896": [267, 343], "89610": 483, "89653": 473, "89682": 483, "8970": 483, "89727": 483, "8978": 483, "89792": 483, "89811": 483, "89828": 483, "89858": 483, "89874": [473, 474], "89886": [474, 483], "8990": 475, "89914": 483, "89973": 483, "89987": 483, "89988": 483, "89a": 249, "89ric": 476, "8_qbz5n2kfra8p0": 461, "8baf": [398, 467], "8bit": [196, 197, 198, 201, 202, 203, 207, 208, 475, 476, 483], "8bitmim": [335, 478, 483], "8c7fada847da": [398, 467], "8fa3": 475, "8gb": 186, "8ghz": 308, "8m": 481, "8p": 483, "8s": [102, 267, 268, 469, 475], "8svx": 336, "8x": [261, 483], "8zc": 483, "90": [104, 147, 155, 261, 283, 318, 343, 384, 481], "900": [102, 449], "9000": [245, 386, 430], "90005": 483, "90016": [474, 483], "9003": 475, "90043": 483, "9007199254740992": 221, "90081": 483, "90085": 483, "90095": 483, "901": [96, 471], "90104": 483, "90153": 473, "90155": 483, "901e4e52b20a": 483, "902": [96, 475], "90208": 483, "9022": 268, "90224": 473, "90230": 483, "9025": 475, "903": [96, 382], "90329": 483, "9035": 477, "90352": 483, "90353": 473, "90385": [474, 483], "904": 96, "90415": 473, "904625697166532776746648320380374280103671755200316906558262375061821325312": 186, "90465": 473, "90467": 483, "90473": [473, 483], "90494": 483, "905": 96, "90500": 473, "90535": 483, "90536": [474, 483], "90549": 483, "9056": 483, "90562": 181, "90564": 473, "90568": 483, "90572": 473, "906": 96, "90622": 483, "90623": 483, "9063": 483, "90633": [473, 483], "90638": 473, "90656": [474, 483], "90690": 483, "90699": 483, "907": 96, "90711": 473, "90716": 483, "90729": 473, "90750": 483, "90751": [474, 483], "90765": 474, "908": 96, "90802": 473, "90817": [473, 474, 483], "90844": 483, "90848": 483, "90872": 483, "90876": 483, "90887": 483, "909": 96, "90908": 473, "90927": 473, "90953": 474, "90985": 483, "90989": 483, "9099": 288, "90994": 483, "90997": [474, 483], "90_560": 343, "90s": 483, "91": [104, 343], "910": 96, "91020": 483, "91038": 483, "91051": [474, 483], "91052": [474, 483], "91053": 483, "91054": [474, 483], "91058": [474, 483], "91061": 483, "91070": 269, "91078": 483, "91079": 483, "911": [96, 382], "9110": 475, "91102": 483, "91133": 483, "91137": 473, "91146": 483, "91152": 483, "91153": 483, "91154": 473, "91162": 483, "91165": 473, "91166": [474, 483], "91173": 483, "91181": 473, "91207": 483, "91210": 483, "91212": 483, "91215": 483, "91217": 483, "91218": 473, "91219": 483, "91227": 483, "91230": 483, "91231": 483, "9124": 475, "91248": [474, 483], "91256": 483, "91266": 483, "91276": 483, "91298": 483, "91320": 483, "91321": 483, "91330": 483, "91351": 483, "9138244460009446": 367, "91389": 483, "91399": 483, "91401": 483, "91404": [473, 483], "91409": 483, "91421": 483, "91428": 483, "91432": 483, "91447": 483, "91456": 483, "9146": 483, "91462": 483, "9147": 475, "91479": 483, "91487": [473, 483], "91502": 483, "91513": 483, "91524": [474, 483], "91526": 483, "91539": 483, "91547": 483, "91551": 483, "91565": 483, "91575": 483, "91576": 483, "91577": 483, "91578": 483, "91581": 483, "91583": 483, "91595": 483, "91603": 483, "91607": 483, "91616": 483, "91621": 483, "91625": 483, "91632": 483, "91636": 483, "91670": 483, "91700": 483, "91719": 483, "91731": 483, "91734": 483, "91742": 483, "91744": 483, "91752": 483, "91760": [473, 474, 483], "91768": 483, "9177": 477, "9177857982131165996": 96, "91783": 483, "9179": [478, 483], "918": 261, "91803": 483, "91810": 483, "91821": 483, "91827": [473, 483], "91832": 483, "9184": 466, "91851": 483, "91860": [473, 483], "91869": 483, "91888": 483, "91896": [386, 474, 483], "919": 319, "91904": 483, "91910": 483, "91922": 483, "91924": 483, "91928": 483, "9195": 465, "91952": 483, "91954": 483, "91960": 483, "91968": 483, "91973": 473, "91984": 483, "91996": 483, "92": [343, 481, 482], "9203": 475, "92031": 483, "92032": 483, "92036": 483, "92049": 483, "92062": 483, "92063": 483, "92081": 483, "9210": 475, "92112": 483, "92114": 483, "92118": 483, "92119": 483, "92122": 483, "92123": 483, "92128": 483, "9213": 475, "92154": [473, 483], "9216": 483, "92169": 483, "92173": 483, "92184": 483, "92193": 483, "921f9f01b866ep": 444, "92203": 483, "92210": 483, "92216": 483, "92228": 483, "92236": 483, "92240": 483, "92245": 483, "92248": [474, 483], "92257": 474, "92261": 483, "92301": 483, "9232": 483, "9233": 483, "92332": [386, 473, 474, 483], "92336": 483, "92345": 483, "92356": 483, "923754": 475, "9239": 483, "92391": 483, "924": 102, "92445": 483, "92452": 483, "9246": 483, "925": 319, "92514": 483, "9252925514383915483333812743580549779436104706260696366600": 344, "92530": 483, "92531": 483, "92536": [474, 483], "92546": 483, "92547": 483, "92548": 474, "92550": 483, "92584": [474, 483], "92591": 483, "9260": 476, "92603": 483, "92619": 483, "92647": 483, "92651": [474, 483], "92658": 483, "92670": 483, "92671": 483, "92675": 483, "92678": 483, "92728": [473, 483], "92734": 483, "92777": 483, "92781": 483, "928": 343, "92804": 483, "92817": 483, "92839": 483, "92841": 483, "92858": 483, "92869": 483, "92886": 483, "92888": 483, "92892": 483, "92898": 483, "92913": 483, "92914": 483, "92925": 474, "92930": 483, "92932": 483, "92955": 483, "92984": 483, "92986": 483, "93": [337, 481, 482], "93010": 483, "93012": [474, 483], "93018": 483, "93021": 483, "9303": 483, "93031": 483, "93033": 483, "93040": 483, "93044": 483, "93061": 483, "93065": 483, "93096": 483, "93103": 483, "93143": [474, 483], "93156": 483, "93157": 483, "93162": 483, "932": 158, "93202": 483, "93205": 483, "93207": [474, 483], "93223": 483, "93243": [474, 483], "93252": 483, "93259": 483, "93274": [474, 483], "93283": 483, "93297": 483, "93312": [474, 483], "9332": 93, "93345": 483, "93351": [473, 483], "93353": 483, "93354": 483, "93356": 483, "93359": 483, "9337": 475, "93370": 483, "93382": 483, "934": 382, "93418": 483, "93421": 483, "93429": [474, 483], "9344": 476, "93442": 483, "93444": 483, "93453": 483, "93461": 483, "93464": 483, "93466": 483, "93475": 483, "93491": 483, "93503": [474, 483], "9351": 483, "93516": 483, "93521": 483, "93533": 483, "93554": 483, "93575": 483, "93584": 483, "936": 158, "9360": 475, "93616": 483, "93621": 483, "93626": 483, "93662": 483, "93671": 483, "93678": 483, "93696": 483, "937": 308, "9372": [481, 483], "93744": 483, "938": 382, "93820": 483, "93824": 483, "93839": 483, "93841": 483, "93847": 483, "93852": 483, "93858": 483, "93883": 483, "93884": 483, "93896": 483, "93899": 483, "93910": 483, "93911": 483, "93937": [473, 483], "93939": [474, 483], "93951": 483, "93955": 483, "93957": 483, "93963": [474, 483], "93973": 483, "94": [283, 318, 469], "940": 382, "94018": 483, "94021": 483, "94028": 483, "940286": 483, "94036": 483, "94043": 426, "941": 296, "9410": 475, "94101": 483, "94155": 483, "94163": [474, 483], "94169": [474, 483], "94172": [474, 483], "94182": 483, "94192": 483, "94196": [474, 483], "94199": [474, 483], "94207": 483, "94208": 483, "94214": 483, "94215": 483, "94216": [474, 483], "94226": [474, 483], "9424": 475, "9425": 475, "94254": 483, "94262": 483, "94280": 483, "94309": [386, 474, 483], "94315": 483, "94318": 483, "94321": 483, "94328": 483, "94329": 483, "94343": 483, "94352": [474, 483], "94360": 483, "94379": [474, 483], "94382": 483, "94383": [474, 483], "94398": 483, "94399": 483, "94404": 483, "94430": 483, "94438": 483, "94440": 483, "94473": [474, 483], "94485": 483, "945": 483, "94510": 483, "94518": 483, "94526": 483, "94538": 483, "94597": [474, 483], "94603": 483, "94606": 483, "94607": 483, "94619": 483, "94637": 483, "94675": 483, "94682": 483, "94684": 483, "94694": 483, "94722": 483, "94731": 483, "94736": 483, "94739": 483, "94772": 483, "94773": 483, "94777": 483, "94781": 483, "94801": 483, "94802": 483, "94821": 483, "94822": 483, "94841": 483, "94847": 483, "94857": 483, "94869": 483, "94893": 483, "949": 158, "94906": [474, 483], "94909": 483, "94912": 483, "94930": 483, "94936": [473, 483], "94938": 483, "94943": 483, "94947": 483, "94949": 483, "94996": 483, "95": [293, 314, 318, 343, 382, 465, 468], "950": 158, "95005": 483, "95023": 483, "95027": 483, "95045": 483, "95051": 426, "95060": 483, "95065": 483, "95066": 483, "950730698041": 475, "95077": 483, "95083": 474, "95085": [473, 483], "95087": 483, "95097": 483, "95105": 483, "95109": 483, "95113": 483, "95132": 483, "95145": 483, "9514790517935283e": 469, "9514790517935289e": 469, "95149": 483, "95150": 483, "95166": 483, "9517": 483, "95174": 483, "95185": 483, "95191": [472, 473, 483], "95194": 483, "95196": 483, "95199": 483, "95212": 483, "95218": 483, "9523": 475, "95231": 483, "95243": 483, "95245": 483, "9528": 475, "95280": 483, "95285": 483, "95289": 483, "95299": [474, 483], "95324": 483, "95339": 483, "95355": 483, "95359": 483, "95385": 483, "95388": [474, 483], "95389": 483, "95411": 483, "95415": 483, "95445": 483, "95451": 483, "95454": 483, "95463": 483, "95471": 483, "9548": 477, "95495": 483, "95504": [474, 483], "95511": 483, "95534": 483, "9554": 483, "9556": 477, "95573": 483, "95587": 483, "95588": 483, "95589": [474, 483], "956": 296, "95605": 483, "95609": 483, "95649": 483, "95656": 483, "9567": 475, "957003": 468, "95704": 483, "95731": 483, "95733": 483, "95736": 483, "95756": 483, "957650": 468, "95778": 483, "95781": [474, 483], "95782": 483, "958": 343, "95804": 483, "95818": 483, "95853": 483, "95861": [474, 483], "95865": 483, "95876": 483, "95882": 483, "95899": 483, "959": 223, "95921": 483, "95922": 483, "95957": 483, "95973": 483, "95977": 483, "95987": 483, "95f0": 341, "96": [94, 99, 259, 344, 382, 479, 480, 481, 482, 483], "960": [261, 483], "96000": 295, "96002": 483, "96005": 483, "96019": 483, "96035": 483, "96046": 483, "96052": 483, "96055": 483, "96071": 483, "96073": 483, "96078": 483, "96079": 483, "96098": 483, "96123": 474, "96125": 483, "96127": 483, "96142": 483, "96143": 483, "96145": 483, "96151": 483, "96159": 483, "96172": 483, "96175": 483, "96187": 483, "96192": 483, "9620": 483, "96237": 483, "96268": 483, "96269": 483, "96290": 483, "96305": 483, "96310": 483, "96346": 483, "96348": 483, "96349": 483, "96352": 483, "96364": 483, "96385": 483, "96387": 483, "96388": 483, "96415": 483, "96421": 483, "96432": 483, "96465": 483, "96497": 483, "96512": 483, "96522": 483, "96534": 483, "96538": 483, "96559": 483, "96569": 483, "96572": 483, "96577": 483, "96580": 474, "96582": 483, "96587": 483, "966": 160, "96611": 483, "96612": 483, "96624": 483, "96636": 483, "96641": 483, "96652": 483, "9666": 475, "96670": [474, 483], "96678": 483, "96704": 483, "96729": 483, "96734": [474, 483], "96735": 483, "96741": 483, "96751": 483, "96754": 483, "96761": 483, "96764": 483, "9678": 483, "96793": 483, "96803": 483, "96819": 483, "96821": 483, "96827": 483, "96828": 483, "96848": 483, "96853": 483, "96864": 483, "96865": 483, "96883": 483, "969": 382, "96905": 483, "96931": 483, "9694": [472, 483], "96965": 483, "96975": 483, "97": [104, 109, 122, 225, 278, 344, 469, 475], "97001": 483, "97002": 483, "97005": 483, "97008": 483, "9733": 465, "9740": 483, "97514": 483, "97527": 483, "9754": 475, "97545": 483, "9757": 475, "97591": 483, "97592": 483, "976": 382, "97616": 483, "97639": 483, "97646": 483, "97649": 483, "97669": [474, 483], "97670": 483, "97681": [474, 483], "97696": 483, "976e": 94, "977": [101, 288], "9770": 483, "97725": 483, "97728": 483, "97731": 483, "97741": 483, "97752": 483, "97779": 483, "9778": 475, "97781": 483, "97786": 483, "97799": 483, "978": 369, "97825": 483, "97837": 483, "97850": [474, 483], "97897": 483, "979": 101, "97912": 483, "97922": [474, 483], "97928": 483, "97930": [474, 483], "97933": 483, "9794": 475, "97943": 483, "9795": 476, "97955": 483, "97959": 483, "97966": 483, "979728": 466, "97973": 483, "97997": 483, "98": [293, 337, 344, 405, 468, 469, 475], "980": 475, "98003": 483, "98023": 483, "98024": 474, "98030": 483, "98040": [474, 483], "98086": 483, "98098": 483, "98108": 483, "98139": 483, "9815": 483, "98169": 483, "98178": 483, "98179": 474, "98248": 483, "98251": 483, "98253": 483, "98254": [474, 483], "98257": 483, "9826": 475, "9828": 95, "98284": 483, "98307": 483, "98331": 483, "98354": 483, "9836": 158, "98360": 483, "98363": [474, 483], "98374": 483, "98390": 483, "98393": [474, 483], "98398": 483, "9840": 475, "98401": [474, 483], "98410": 483, "98414": 483, "98415": 483, "98433": 483, "98458": 483, "98461": 483, "9850": [480, 483], "98522": 483, "9856": 476, "9858": 483, "98586": [474, 483], "98608": 483, "98610": 483, "9862": 475, "98624": 483, "98627": 483, "98629": 483, "98636": 483, "98658": [474, 483], "98680": 483, "98686": 483, "98689": 483, "986893273527251": 343, "98692": 483, "987": [441, 449, 450], "98703": 483, "98705": 483, "98707": 483, "98713": 483, "98724": [474, 483], "9873": 475, "98739": 483, "98740": 483, "98744": 483, "98745": 483, "98762": 483, "9876543211234567": 352, "9876543211234568": 352, "98767": 78, "98776": 483, "98778": 483, "9878": 95, "98783": 483, "98790": 483, "98793": 483, "98811": 483, "98817": 483, "9882": 343, "98831": 483, "98832": 483, "98836": [474, 483], "98852": 483, "98872": 483, "98878": 483, "98886": 483, "98897": 483, "98903": 483, "98925": 483, "98931": [474, 483], "98940": 483, "98949": 483, "98963": 483, "98966": 472, "98978": 483, "98989": 483, "9899": 352, "98999": 483, "99": [85, 92, 107, 147, 176, 183, 186, 261, 266, 268, 319, 343, 344, 366, 466, 469, 470, 475], "99005": [474, 483], "99016": 483, "99017": 483, "99029": 483, "99069": 483, "99079": 483, "99086": 483, "99103": 483, "99108": 483, "99110": 483, "99111": 483, "99113": 483, "991266": 483, "99127": [474, 483], "99134": 483, "99138": 483, "99139": [474, 483], "9915": 475, "99153": 483, "99155": 483, "99181": 483, "99184": 483, "99191": 483, "99201": 483, "99202": 483, "99203": 483, "99204": 483, "99205": 483, "99240": 483, "99247": 474, "99248": 483, "99254": 483, "99257": 483, "99266": 483, "99275": 483, "99277": 483, "99284": 483, "99285": 474, "99289": [474, 483], "99293": 483, "99298": 483, "993": 248, "99305": 483, "99337": 483, "99341": 483, "99344": 483, "99345": 483, "99353": 483, "99370": 483, "99377": 483, "99379": 483, "9938": 483, "99382": 483, "99388": [474, 483], "99418": 483, "99433": 483, "99442": 483, "9948": 483, "99482": [474, 483], "9949": 483, "994956": 465, "995": [305, 479], "99508": 483, "99509": 483, "9951": [478, 483], "99540": 483, "99547": [474, 483], "99553": 483, "99554": 483, "9957": 476, "99576": 483, "99578": 483, "99581": 483, "99582": 483, "99593": 483, "996": 102, "99612": 483, "9962": 475, "99645": 483, "99659": 483, "997": 102, "99708": 483, "99726": [474, 483], "99729": 483, "99741": 483, "998": 102, "99834": 483, "9988": 483, "99889": 483, "99891": 483, "99892": 483, "999": [186, 284], "9991": 226, "99925": 483, "9993": 476, "99931": 483, "99934": 483, "99941": 483, "99942": 483, "99944": 483, "99947": 483, "99952": 483, "99955": 483, "99957": [474, 483], "9998": [183, 479, 483], "9999": [102, 104, 133, 150, 183, 247, 338, 475, 480, 483], "99998": 478, "99999": 347, "999999": [20, 183, 186, 366, 476], "9999999": 78, "9999999895305022877376682436": 468, "999999999": [20, 183], "999999999999999999": [186, 476], "999999999999ap": 186, "999_999_999": 173, "9_": [106, 109, 319, 435], "9_000": 483, "9a": [106, 319], "9a2f": 337, "9b90": [398, 467], "9e": 94, "9s": 102, "9tjqk": 319, "_0": 471, "_1": [160, 469, 471], "_2": [469, 471], "_3": 160, "_4g": 362, "__": [80, 85, 102, 289, 362, 435], "___": 85, "______": 85, "__________": 85, "_________________": 85, "____________________________": 85, "__abs__": [63, 225, 291, 386, 428, 483], "__absolute_start_time__": 96, "__adapt__": 483, "__add__": [63, 80, 94, 100, 160, 168, 255, 289, 291, 389, 428, 430, 483], "__aenter__": [87, 169, 191, 388, 389, 390, 427, 428, 483], "__aexit__": [87, 139, 169, 191, 388, 389, 390, 427, 428, 483], "__aiter__": [63, 87, 161, 191, 225, 389, 390, 427, 428, 478, 479, 480, 483], "__all__": [225, 247, 279, 319, 362, 436, 450, 463, 479, 483], "__and__": [63, 161, 211, 291, 389, 428, 430], "__anext__": [63, 87, 161, 191, 213, 225, 389, 427, 428, 430, 483], "__annotations__": [68, 87, 93, 181, 191, 225, 226, 255, 386, 427, 428, 436, 441, 470, 472, 475, 477, 478, 479, 481, 482, 483], "__args__": [62, 344, 472, 482, 483], "__await__": [63, 87, 161, 191, 385, 428, 478, 483], "__base__": 63, "__bases__": [49, 63, 76, 103, 203, 225, 299, 344, 385, 428, 465, 483], "__block": 96, "__bool__": [63, 94, 112, 211, 232, 291, 344, 367, 389, 405, 428, 430, 470, 483], "__bound__": [386, 427, 429], "__breakpointhook__": [352, 450, 483], "__buffer__": [161, 255, 428, 474, 483], "__build_class__": [191, 450, 483], "__builtin__": [465, 470, 471], "__builtin_avail": 483, "__builtin_bswap16": 483, "__builtin_nan": 483, "__builtin_new": 68, "__builtin_unreach": [35, 483], "__builtins__": [31, 96, 148, 225, 255, 429, 450, 470, 472, 483], "__bytes__": [196, 201, 205, 344, 386, 428, 473, 477, 478, 483], "__cached__": [31, 96, 225, 250, 324, 432, 472, 474, 475, 477, 483], "__call__": [10, 63, 85, 87, 93, 120, 159, 160, 161, 203, 211, 225, 283, 291, 358, 386, 389, 390, 402, 428, 430, 474, 479, 483], "__callback__": [402, 477], "__cantrace__": 352, "__cause__": [23, 191, 213, 381, 436, 470, 483], "__ceil__": [221, 275, 389, 428, 483], "__char_unsigned__": 483, "__class__": [49, 80, 85, 87, 93, 94, 100, 183, 211, 225, 250, 299, 344, 389, 400, 428, 440, 464, 465, 468, 479, 483], "__class_getitem__": [62, 68, 344, 386, 430, 473, 480, 483], "__classcell__": [428, 479, 481, 483], "__cleanenv": 362, "__closure__": [112, 428, 470, 483], "__cmp__": [462, 463, 465, 468, 469, 470], "__code__": [255, 344, 428, 470, 481, 483], "__coerce__": [464, 469], "__complex__": [15, 154, 225, 262, 386, 389, 428, 468, 473, 477, 480, 481, 483], "__concat__": 291, "__conform__": [340, 483], "__console__": 157, "__constraints__": [386, 427], "__contains__": [55, 58, 63, 80, 85, 87, 94, 98, 161, 196, 205, 211, 261, 271, 291, 344, 389, 407, 416, 428, 430, 462, 465, 466, 468, 483], "__context__": [23, 213, 381, 436, 470, 476, 483], "__contravariant__": 386, "__copy__": [171, 474, 483], "__counter": 402, "__covariant__": 386, "__cplusplus": 73, "__cwd": 362, "__dataclass_fields__": 483, "__dataclass_transform__": 386, "__debug__": [34, 66, 168, 188, 225, 250, 436, 450, 455, 465, 472, 483], "__declspec": 86, "__deepcopy__": [171, 483], "__defaults__": [255, 428, 470, 483], "__del__": [23, 33, 52, 63, 68, 73, 84, 182, 227, 258, 283, 316, 340, 360, 362, 389, 428, 477, 483], "__delattr__": [63, 75, 80, 93, 142, 181, 428, 483], "__delete__": [63, 87, 93, 255, 389, 428, 464, 483], "__delitem__": [63, 80, 160, 161, 196, 205, 271, 291, 389, 407, 410, 413, 428, 465, 470, 483], "__delslice__": 470, "__dict__": [45, 49, 61, 63, 85, 88, 93, 100, 102, 116, 144, 148, 193, 225, 226, 250, 255, 267, 269, 297, 299, 308, 344, 385, 419, 427, 428, 432, 440, 463, 464, 469, 470, 472, 474, 478, 479, 483], "__dictoffset__": 58, "__dir__": [80, 94, 211, 225, 255, 389, 428, 468, 477, 480, 483], "__displayhook__": [352, 450], "__div__": 483, "__divmod__": [63, 389, 428, 472, 478, 483], "__doc__": [45, 63, 75, 80, 84, 87, 93, 94, 96, 157, 160, 190, 193, 211, 225, 226, 255, 289, 313, 320, 323, 385, 427, 428, 435, 440, 441, 446, 450, 463, 464, 465, 470, 472, 475, 477, 478, 482, 483], "__dunder__": [68, 182], "__enter__": [68, 87, 102, 191, 258, 283, 315, 333, 344, 358, 386, 388, 389, 405, 427, 428, 467, 468, 469, 473, 476, 479, 483], "__eq__": [22, 63, 78, 80, 85, 87, 147, 161, 168, 181, 195, 202, 211, 226, 244, 255, 291, 344, 385, 389, 390, 419, 428, 463, 468, 469, 470, 473, 475, 480, 483], "__excepthook__": [352, 365, 450, 472, 483], "__exit__": [87, 102, 169, 191, 258, 283, 333, 344, 358, 362, 388, 389, 405, 427, 428, 467, 468, 469, 479, 483], "__file__": [31, 45, 89, 96, 102, 114, 188, 193, 225, 235, 250, 255, 265, 302, 323, 324, 362, 382, 388, 400, 423, 428, 432, 456, 465, 477, 479, 480, 482, 483], "__final__": [386, 473, 483], "__float__": [15, 25, 63, 154, 225, 386, 389, 428, 472, 480, 481, 483], "__floor__": [221, 275, 389, 428, 483], "__floordiv__": [63, 291, 389, 428, 430, 464, 472, 483], "__format__": [80, 183, 211, 221, 225, 259, 345, 389, 428, 435, 468, 469, 473, 476, 477, 480, 483], "__fspath__": [59, 293, 296, 362, 389, 479, 483], "__func__": [93, 112, 255, 344, 428, 440, 468, 469], "__future__": [66, 68, 87, 88, 112, 159, 213, 225, 254, 255, 263, 315, 386, 427, 428, 436, 464, 465, 467, 468, 470, 472, 473, 477, 478, 480, 481, 482, 483, 484], "__ge__": [63, 80, 94, 161, 181, 226, 291, 344, 389, 428, 463, 469, 475], "__get__": [63, 87, 93, 181, 226, 255, 389, 428, 464, 479, 483], "__getattr__": [49, 58, 63, 75, 85, 93, 142, 176, 216, 225, 255, 299, 323, 344, 385, 389, 428, 430, 447, 464, 468, 474, 475, 476, 477, 480, 483], "__getattribute__": [49, 63, 80, 87, 93, 225, 255, 299, 428, 430, 464, 468, 475, 480, 483], "__getformat__": [389, 483], "__getinitargs__": 389, "__getitem__": [37, 40, 54, 63, 64, 68, 80, 87, 98, 102, 108, 116, 160, 161, 176, 196, 203, 205, 211, 218, 225, 271, 283, 291, 319, 344, 345, 386, 389, 390, 407, 410, 412, 413, 427, 430, 452, 464, 465, 466, 470, 473, 474, 475, 479, 481, 483], "__getnewargs__": [94, 160, 299, 389, 465, 478, 483], "__getnewargs_ex__": [299, 483], "__getslice__": 470, "__getstate__": [299, 389, 465, 473, 483], "__globals__": [88, 255, 428, 470, 472, 483], "__gt__": [63, 80, 94, 108, 161, 181, 225, 226, 291, 344, 389, 428, 463, 469, 475], "__hash__": [22, 63, 78, 80, 85, 87, 161, 181, 211, 225, 289, 344, 389, 428, 455, 467, 468, 470, 476, 480, 483], "__hello__": [176, 483], "__hex__": [468, 470], "__iadd__": [63, 80, 85, 161, 291, 428, 462], "__iand__": [63, 161, 168, 291, 428], "__iconcat__": 291, "__ifloordiv__": [63, 291, 428], "__ilshift__": [63, 291, 428], "__imatmul__": [63, 291, 428, 478], "__imod__": [63, 291, 428], "__import__": [31, 191, 225, 250, 268, 299, 428, 432, 450, 468, 471, 476, 479, 482, 483], "__imul__": [63, 80, 160, 168, 291, 428, 483], "__index__": [15, 25, 39, 63, 68, 225, 291, 344, 347, 386, 389, 428, 468, 469, 470, 472, 473, 477, 480, 481, 483, 484], "__infer_variance__": 386, "__init__": [45, 61, 63, 68, 76, 78, 79, 80, 85, 87, 93, 101, 102, 107, 108, 114, 120, 128, 133, 139, 148, 160, 161, 167, 169, 172, 175, 176, 183, 184, 190, 194, 211, 213, 214, 225, 226, 238, 241, 245, 250, 251, 252, 253, 262, 267, 268, 269, 281, 283, 296, 299, 302, 308, 315, 320, 333, 340, 345, 358, 362, 365, 369, 382, 385, 386, 388, 389, 390, 399, 402, 407, 410, 414, 422, 428, 432, 440, 441, 450, 452, 462, 463, 464, 465, 467, 468, 472, 473, 474, 476, 479, 481, 483], "__init_subclass__": [61, 211, 225, 428, 473, 479, 483], "__initializing__": 225, "__initsubclass__": 483, "__instancecheck__": [49, 389, 428, 483], "__int64": 176, "__int__": [39, 63, 221, 225, 386, 389, 428, 467, 469, 472, 473, 480, 481, 483], "__interactivehook__": [334, 352, 450, 455, 477], "__inv__": 291, "__invert__": [63, 211, 291, 389, 428, 430], "__ior__": [63, 161, 291, 428], "__ipow__": [63, 291, 428, 472, 483], "__irshift__": [63, 291, 428], "__isabstractmethod__": [116, 476], "__isol": 362, "__isub__": [63, 161, 291, 428, 462], "__iter__": [63, 75, 80, 87, 94, 102, 116, 161, 211, 225, 258, 271, 283, 344, 386, 388, 389, 390, 422, 427, 428, 430, 440, 464, 465, 468, 477, 479, 482, 483], "__itruediv__": [63, 291, 428], "__ixor__": [63, 161, 291, 428], "__kwdefaults__": [255, 428, 477], "__le__": [63, 80, 94, 161, 181, 226, 291, 344, 389, 428, 463, 469, 475], "__len__": [63, 80, 87, 116, 161, 196, 205, 211, 225, 271, 283, 291, 344, 386, 389, 410, 413, 427, 428, 465, 466, 481, 483], "__length_hint__": [49, 291, 428, 477, 483], "__libc_start_main": 104, "__lltrace__": [96, 456, 483], "__loader__": [31, 45, 225, 250, 265, 324, 385, 432, 446, 450, 472, 476, 477, 480, 483], "__lshift__": [63, 291, 389, 428, 430], "__lt__": [63, 75, 80, 94, 108, 147, 161, 168, 181, 225, 226, 291, 344, 385, 389, 428, 430, 463, 469, 470, 475, 483], "__ltrace__": 483, "__main__": [33, 34, 35, 66, 68, 79, 84, 85, 87, 93, 96, 101, 102, 104, 126, 144, 155, 166, 188, 190, 193, 200, 213, 228, 250, 254, 267, 279, 283, 292, 297, 299, 308, 313, 315, 323, 324, 333, 338, 340, 342, 362, 367, 382, 384, 386, 388, 389, 390, 399, 400, 402, 407, 421, 429, 433, 437, 440, 446, 450, 455, 463, 466, 467, 468, 469, 471, 475, 476, 477, 478, 481, 482, 483], "__match_args__": [181, 427, 428, 441, 472, 483], "__matmul__": [63, 291, 389, 428, 478], "__members__": [94, 211, 464, 470], "__metaclass__": [103, 112, 464, 468, 470], "__metadata__": 386, "__methods__": [464, 470, 483], "__missing__": [160, 344, 389, 427, 428, 467, 475, 483], "__mod__": [63, 291, 389, 428, 430, 472, 483], "__module__": [23, 27, 58, 63, 88, 93, 94, 160, 181, 197, 211, 225, 226, 255, 279, 362, 386, 428, 465, 472, 478, 479, 483], "__mro__": [49, 63, 85, 93, 116, 197, 225, 344, 386, 428], "__mro_entries__": [385, 428, 480, 483], "__mul__": [63, 80, 160, 291, 389, 428, 430, 483], "__nain__": 483, "__name__": [19, 29, 45, 61, 63, 68, 84, 85, 87, 93, 94, 96, 101, 102, 103, 104, 126, 144, 155, 157, 166, 183, 188, 190, 193, 197, 200, 211, 225, 226, 228, 250, 255, 267, 283, 289, 292, 296, 297, 299, 302, 313, 315, 321, 323, 324, 333, 338, 342, 344, 362, 365, 367, 385, 386, 388, 399, 400, 402, 407, 420, 428, 432, 446, 450, 464, 465, 468, 470, 472, 474, 476, 477, 478, 479, 481, 482, 483], "__ne__": [63, 80, 161, 195, 202, 291, 389, 419, 428, 463, 473, 483], "__neg__": [63, 291, 389, 428, 430], "__new__": [45, 61, 63, 68, 76, 80, 85, 93, 121, 142, 203, 211, 213, 225, 274, 278, 296, 299, 337, 382, 385, 389, 428, 474, 477, 479, 481, 483], "__next__": [63, 75, 87, 95, 112, 161, 166, 175, 191, 213, 225, 258, 283, 344, 422, 428, 430, 440, 470, 483], "__nonzero__": [112, 470], "__not__": 291, "__note__": 483, "__notes__": [213, 381, 483], "__objclass__": 428, "__oct__": [468, 470], "__optional_keys__": [386, 483], "__or__": [63, 161, 211, 291, 344, 389, 428, 430], "__orig_bases__": [385, 474, 483], "__orig_class__": 483, "__origin__": [62, 344], "__override__": 386, "__package__": [45, 96, 225, 250, 324, 385, 432, 446, 450, 468, 472, 474, 476, 477, 479, 483], "__pad": 483, "__parameters__": [62, 344, 386, 483], "__path__": [31, 68, 87, 250, 302, 312, 352, 450, 477, 479, 480, 483], "__pos__": [63, 291, 389, 428, 430], "__post_init__": [181, 483], "__pow__": [63, 291, 389, 428, 430, 472, 483], "__prepare__": [385, 389, 428, 477, 479, 483], "__pure_virtu": 68, "__pycache__": [85, 250, 296, 311, 352, 450, 455, 473, 475, 481, 483], "__pyvenv_launcher__": [34, 483], "__qualnam": 483, "__qualname__": [19, 27, 29, 61, 87, 93, 94, 197, 211, 225, 226, 255, 344, 428, 429, 472, 476, 478, 483], "__r": 289, "__radd__": [63, 289, 428, 430], "__rand__": [63, 428, 430], "__rdivmod__": [63, 428, 472, 483], "__reduce__": [80, 211, 299, 389, 467, 481, 483], "__reduce_ex__": [80, 94, 299, 389, 483], "__release_buffer__": [428, 483], "__repr__": [63, 80, 93, 94, 103, 108, 160, 181, 183, 195, 211, 225, 255, 283, 286, 307, 321, 340, 385, 386, 389, 419, 425, 428, 452, 464, 465, 472, 473, 475, 480, 481, 483], "__required_keys__": [386, 483], "__reversed__": [80, 87, 160, 161, 211, 225, 389, 428, 479], "__rfloordiv__": [428, 472, 483], "__rlshift__": [63, 428], "__rmatmul__": [63, 428, 478], "__rmod__": [63, 160, 428, 472, 478, 483], "__rmul__": [63, 80, 428, 430, 483], "__ror__": [63, 428, 430, 483], "__round__": [221, 225, 386, 389, 428, 470, 483], "__rpow__": [63, 428, 472, 483], "__rrshift__": [63, 428], "__rshift__": [63, 291, 389, 428, 430], "__rsub__": [63, 168, 428], "__rtruediv__": 428, "__rxor__": [63, 428, 430], "__safe_for_unpickling__": 465, "__self__": [93, 255, 344, 428, 440, 468, 483], "__set__": [63, 87, 93, 181, 255, 389, 428, 464, 479, 483], "__set_format__": [473, 483], "__set_name__": [61, 93, 181, 428, 474, 479, 483], "__setattr__": [63, 75, 80, 85, 93, 142, 181, 299, 389, 428, 436, 464, 483], "__setformat__": [473, 483], "__setitem__": [63, 80, 160, 161, 191, 196, 205, 208, 271, 283, 291, 299, 389, 390, 407, 410, 413, 428, 436, 465, 470, 483], "__setslice__": 470, "__setstate__": [299, 389, 465, 481, 483], "__signature__": [255, 477, 483], "__sizeof__": [80, 352, 389, 468, 483], "__slots__": [68, 87, 160, 181, 225, 226, 255, 299, 385, 402, 464, 469, 481, 483], "__spam": [430, 440], "__spec__": [31, 68, 250, 252, 324, 385, 450, 472, 474, 477, 479, 480, 483], "__stderr__": [247, 352, 362, 450], "__stdin__": [247, 352, 450], "__stdout__": [247, 332, 352, 450], "__str__": [63, 80, 94, 101, 102, 160, 183, 195, 196, 201, 202, 203, 205, 211, 255, 267, 283, 344, 345, 385, 389, 425, 428, 443, 464, 472, 473, 481, 483], "__sub__": [63, 161, 291, 389, 428, 430], "__subclasscheck__": [49, 61, 116, 389, 428, 483], "__subclasses__": [63, 344, 389, 474, 483], "__subclasshook__": [80, 116, 161, 483], "__sun": 483, "__supertype__": [386, 483], "__suppress_context__": [23, 213, 381, 436], "__svr4": 483, "__test__": 193, "__text_signatur": 483, "__text_signature__": 483, "__total__": 386, "__traceback__": [23, 213, 352, 381, 385, 428, 430, 436, 470, 473, 483], "__truediv__": [63, 250, 253, 291, 389, 428, 430, 464, 478], "__trunc__": [225, 275, 389, 428, 473, 483], "__type_params__": [191, 226, 255, 344, 386, 427, 428, 429, 483], "__typing_prepare_subst__": 483, "__unicode__": [464, 469], "__unpacked__": [344, 483], "__unraisablehook__": [352, 450], "__updat": 440, "__value__": [386, 429, 436, 483], "__vectorcalloffset__": [58, 61], "__venv_bin_name__": 399, "__venv_dir__": 399, "__venv_name__": [399, 482], "__venv_prompt__": [399, 482, 483], "__venv_python__": 399, "__version__": [177, 190, 245, 388, 476, 478, 482, 483], "__warningregistry__": [400, 483], "__weaklistoffset__": 58, "__weakref__": [181, 402, 428, 483], "__wrapped__": [88, 93, 225, 226, 255, 472, 473, 475, 477, 478, 483], "__wrapper__": 483, "__x": 93, "__x__": 470, "__xor__": [63, 161, 211, 291, 389, 428, 430], "_a": 345, "_a85char": 382, "_a85chars2": 382, "_abc": [482, 483], "_abc_cach": 483, "_abc_caches_clear": 483, "_abc_data": 483, "_abc_negative_cach": 483, "_abc_registri": 483, "_abc_registry_clear": 483, "_abcol": 98, "_accessor": 483, "_acquire_restor": 96, "_actionscontain": 483, "_activ": 483, "_add": 289, "_add_callback": 483, "_after_": 268, "_after_fork": 483, "_age": 93, "_aix": 483, "_aix_support": 483, "_aliv": 226, "_always_": 483, "_annotatedalia": 483, "_anonymous_": [176, 483], "_argtypes_": 483, "_as_parameter_": 176, "_asdict": [160, 468, 469, 471, 481, 483], "_ast": [122, 467, 475, 483], "_async_connect": 388, "_asyncio": [456, 483], "_asyncio_future_block": 129, "_at_fork_reinit": 483, "_audiodata": 206, "_awaitev": 483, "_b32tab": 382, "_b32tab2": 382, "_b85char": 382, "_b85chars2": 382, "_b_base_": 176, "_b_needsfree_": 176, "_bar": 362, "_base_execut": [34, 483], "_bcd2str": 477, "_beginthreadex": 469, "_bisect": 483, "_blake2": 483, "_bool": [176, 347, 468], "_bootlocal": 483, "_bootstrap": [283, 382, 483], "_bootstrap_extern": 483, "_bootstrap_python": 483, "_bootsubprocess": 483, "_buffer": 483, "_build": 296, "_builtinsuit": 468, "_bundl": [456, 472, 483], "_bz2": [482, 483], "_c_api": 73, "_cach": [85, 283, 463], "_call": 483, "_call_match": 483, "_callmethod": 283, "_candidate_tempdir_list": 483, "_cdata": [176, 483], "_cell_factori": 483, "_cfg": 384, "_charset": [198, 206, 230, 483], "_check_notifi": 96, "_clamp": 476, "_class": 207, "_classname__spam": [85, 440], "_cleanup": 96, "_cleanup_on_error": 169, "_clear_type_cach": [352, 450], "_clearcach": 225, "_code": 308, "_codec": [482, 483], "_codecs_cn": 483, "_codecs_hk": 483, "_codecs_iso2022": 483, "_codecs_jp": 483, "_codecs_kr": 483, "_codecs_tw": 483, "_collect": 483, "_collections_abc": 161, "_commit": 293, "_compil": [279, 308], "_compress": [472, 483], "_condit": 96, "_condition__lock": 96, "_condition__wait": 96, "_config_var": 483, "_conn_lost": 483, "_connect": [388, 419], "_constant": [279, 344, 483], "_contextvar": [482, 483], "_convert": 483, "_convert_": [94, 483], "_copysign": 483, "_count": 140, "_count_el": 483, "_create_unverified_context": [242, 469, 477], "_crypt": [482, 483], "_csv": [362, 483], "_ctype": [176, 426, 469, 480, 483], "_ctypes_test": 483, "_current_except": [142, 352, 474, 483], "_current_fram": [142, 352, 450, 467], "_curs": 483, "_curses_panel": 483, "_d": 478, "_data": [206, 226], "_dataclassparam": 483, "_datetim": 483, "_dbm": 483, "_debug": 35, "_debugmallocstat": [352, 450], "_decim": [426, 456, 476, 483], "_declspec": 77, "_deco": 466, "_decode_filter_properti": 483, "_decompos": 483, "_default": 181, "_defaultformatt": 268, "_dept": 93, "_dictkeysobject": 483, "_dirnamew": 483, "_dispatch": 420, "_distutils_findv": 483, "_dummy_thread": [480, 482, 483], "_dummythread": 483, "_dump_registri": 483, "_elementre": 483, "_elementtre": 483, "_emscripten_info": [352, 483], "_enablelegacywindowsfsencod": [352, 455, 479], "_encod": 206, "_encoded_word": 483, "_enter_task": [128, 483], "_enumdict": 483, "_environ": 483, "_error": 395, "_errorhold": 388, "_eval_typ": 483, "_except": 297, "_exit": [140, 213, 214, 293], "_expand": 279, "_exposed_": 283, "_extra_attribut": 476, "_f": 148, "_factori": 207, "_fallback": 230, "_fdel": 116, "_featur": [87, 113, 225], "_feed": 483, "_fget": 116, "_field": [122, 160, 386, 468, 469, 483], "_field_default": [160, 386, 483], "_field_typ": [386, 481, 482, 483], "_fields_": [176, 283, 344, 483], "_fields_default": 483, "_file": 360, "_final": 402, "_finalize_manag": 483, "_find_and_load": 483, "_fix": [478, 483], "_flatten": 483, "_flush": 407, "_foo": 255, "_forget_codec": 483, "_frame": [297, 483], "_framework": 450, "_free": 467, "_freeze_importlib": 483, "_freeze_modul": [33, 483], "_from_iter": 161, "_frozen": [31, 176, 473, 483], "_frozen_importlib": [176, 283, 483], "_frozen_importlib_extern": [176, 483], "_fset": 116, "_funcptr": 176, "_functool": [482, 483], "_gdbm": 483, "_generate_next_value_": [94, 211, 483], "_gestalt": 477, "_get_": 483, "_get_anothervalu": 410, "_get_child_mock": [389, 390], "_get_default_schem": 355, "_get_foo": 411, "_get_module_lock": 483, "_get_preferred_schem": 355, "_get_protocol_attr": 483, "_get_running_loop": 483, "_get_slot": 483, "_get_somevalu": 410, "_get_type_var": 483, "_get_x": 116, "_getdiskusag": 483, "_getfinalpathnam": 483, "_getfram": [101, 142, 352, 450, 463, 473, 483], "_getframemodulenam": [142, 352, 483], "_getvalu": 283, "_getvolumepathnam": 483, "_git": [450, 483], "_grouper": 261, "_h": 283, "_ham__spam": 430, "_handl": 176, "_hash": [161, 483], "_hashlib": [482, 483], "_hashopenssl": 483, "_header_value_pars": 483, "_heapq": 483, "_helper": 468, "_hexdig": 382, "_home": 450, "_hook": 251, "_htest": 483, "_https_verify_certif": 469, "_id2obj_dict": 402, "_idle_semaphor": 483, "_ignore_": [94, 211, 480, 483], "_imagedata": 206, "_imp": 483, "_import": 483, "_incompatible_extension_module_restrict": [250, 483], "_infer_return_typ": 483, "_info": 230, "_init_main": 34, "_init_module_attr": 432, "_inittab": 31, "_install_schem": 355, "_internaldict": [480, 483], "_inverted_registri": 279, "_io": [120, 188, 475, 479, 483], "_iobas": 483, "_is_callable_members_on": 483, "_is_fork_ctx": 483, "_is_main_interpret": 474, "_is_own": 96, "_is_valid_operand": 226, "_isdir": 483, "_isdst": 183, "_iterate_directori": 483, "_json": [482, 483], "_leave_task": [128, 483], "_length_": [176, 483], "_load_windows_store_cert": 483, "_local": [266, 482, 483], "_localetime__pad": 483, "_log": 267, "_log_traceback": 483, "_logpath": 332, "_lsprof": [308, 483], "_lzma": 483, "_mac_ver_gstalt": 477, "_mac_ver_lookup": 477, "_main_thread": 483, "_mainthread": 483, "_maintyp": 206, "_make": [160, 340, 347, 483], "_make_socket_transport": 128, "_makeresult": 388, "_malloc": 467, "_mangle_from_": 201, "_mapping__upd": 440, "_mappingsubclass__upd": 440, "_markupbas": [470, 472, 483], "_math": 483, "_maxfreelist": 468, "_maybe_compil": 483, "_md5": 483, "_member_names_": 483, "_member_type_": 483, "_meta": 483, "_method_to_typeid_": 283, "_mirroroutput": 96, "_missing_": [94, 211, 483], "_missing__": 483, "_mock_": 483, "_mock_cal": 389, "_mod": [472, 483], "_modulesetupfail": 96, "_msc_ver": 483, "_msg": 206, "_msi": 483, "_msvc_lang": 483, "_msvccompil": 483, "_multiarch": 483, "_multibytecodec": 483, "_multiprocess": 483, "_myattr": 203, "_n": 259, "_name": [93, 176, 181, 196, 205, 483], "_name_": [94, 211], "_namedintconst": 344, "_namespaceload": 483, "_namespacepath": 483, "_nntpbase": 483, "_node": [472, 483], "_noncallablemock__get_return_valu": 389, "_noncallablemock__get_side_effect": 389, "_noncallablemock__return_value_doc": 389, "_noncallablemock__set_return_valu": 389, "_noncallablemock__set_side_effect": 389, "_normal": 483, "_numeric_repr_": 211, "_ob_next": 63, "_ob_prev": 63, "_object": 176, "_opcod": 483, "_open": [395, 483], "_open_osfhandl": 483, "_oper": 483, "_operator_fallback": 289, "_optimize_unicod": 279, "_order_": [94, 211, 483], "_origin": 483, "_original_stderr": 96, "_original_stdout": 96, "_osx_support": 483, "_outfil": 85, "_overlap": [480, 483], "_pack_": 176, "_param": [196, 205, 206, 407], "_parameterkind": 483, "_paramspec_tvar": 483, "_pars": 230, "_parse_localenam": 483, "_parse_makefil": 483, "_parse_sub": 308, "_parseaddr": 483, "_parser": [279, 308], "_path": 483, "_patternend": 279, "_pi": [35, 481, 483], "_pickl": 483, "_pid": 283, "_pointer": 176, "_posixshmem": 483, "_posixsubprocess": [482, 483], "_previoustestclass": 96, "_private__nam": 68, "_proactorreadpipetransport": 483, "_process_work": 483, "_proto_memb": 483, "_protocolmeta": 483, "_proxi": [395, 483], "_pth": [34, 68, 280, 461, 479, 480, 483], "_py_addpendingcal": 483, "_py_addtoallobject": 482, "_py_atom": 483, "_py_atomic_": 483, "_py_atomic_load": 483, "_py_atomic_stor": 483, "_py_c_diff": 15, "_py_c_neg": 15, "_py_c_pow": 15, "_py_c_prod": 15, "_py_c_quot": 15, "_py_c_sum": 15, "_py_cast": 483, "_py_cast_impl": 483, "_py_char2wchar": [478, 483], "_py_checkrecursionlimit": [472, 482, 483], "_py_clearimmort": 483, "_py_closerang": 483, "_py_codeunit": 483, "_py_comp_diag_ignore_depr_decl": 483, "_py_comp_diag_pop": 483, "_py_comp_diag_push": 483, "_py_dealloc": 481, "_py_decodeutf8ex": 483, "_py_dg_strtod": 483, "_py_eval_evalframedefault": 104, "_py_fopen": 483, "_py_fopen_obj": 483, "_py_forgetrefer": [482, 483], "_py_getallocatedblock": 483, "_py_getglobalreftot": 474, "_py_getreftot": [482, 483], "_py_hashsecret": 483, "_py_identifi": 483, "_py_immortal_refcnt": [474, 483], "_py_initializefromarg": [482, 483], "_py_initializefromwidearg": [482, 483], "_py_initializemain": 34, "_py_internalst": 57, "_py_isfin": [33, 481], "_py_isimmort": [474, 483], "_py_negativerefcount": 483, "_py_newinterpret": 483, "_py_newinterpreterfromconfig": 483, "_py_newrefer": [482, 483], "_py_no_return": 35, "_py_no_sanitize_address": 483, "_py_no_sanitize_memori": 483, "_py_no_sanitize_thread": 483, "_py_nonestruct": [3, 86], "_py_packagecontext": 483, "_py_preiniti": 483, "_py_printrefer": 482, "_py_printreferenceaddress": 482, "_py_pyatexit": 483, "_py_reftot": 474, "_py_set_s": 473, "_py_set_typ": 473, "_py_setlocalefromenv": 483, "_py_setprogramfullpath": [473, 483], "_py_tpflags_have_vectorcal": 10, "_py_tracemalloc_config": 482, "_py_wchar2char": [478, 483], "_py_wfopen": 483, "_pyaccu": 483, "_pyaiterwrapper_typ": [482, 483], "_pyarg_nokwnam": 483, "_pyarg_unpackkeywordswithvararg": 483, "_pyast_alia": 431, "_pyast_annassign": 431, "_pyast_arg": 431, "_pyast_assert": 431, "_pyast_assign": 431, "_pyast_asyncfor": 431, "_pyast_asyncfunctiondef": 431, "_pyast_asyncwith": 431, "_pyast_attribut": 431, "_pyast_augassign": 431, "_pyast_await": 431, "_pyast_binop": 431, "_pyast_boolop": 431, "_pyast_break": 431, "_pyast_cal": 431, "_pyast_classdef": 431, "_pyast_compar": 431, "_pyast_comprehens": 431, "_pyast_const": 431, "_pyast_continu": 431, "_pyast_delet": 431, "_pyast_dict": 431, "_pyast_dictcomp": 431, "_pyast_excepthandl": 431, "_pyast_expr": 431, "_pyast_express": 431, "_pyast_for": 431, "_pyast_functiondef": 431, "_pyast_functiontyp": 431, "_pyast_generatorexp": 431, "_pyast_glob": 431, "_pyast_if": 431, "_pyast_ifexp": 431, "_pyast_import": 431, "_pyast_importfrom": 431, "_pyast_interact": 431, "_pyast_keyword": 431, "_pyast_lambda": 431, "_pyast_list": 431, "_pyast_listcomp": 431, "_pyast_match": 431, "_pyast_match_cas": 431, "_pyast_matcha": 431, "_pyast_matchclass": 431, "_pyast_matchmap": 431, "_pyast_matchor": 431, "_pyast_matchsequ": 431, "_pyast_matchsingleton": 431, "_pyast_matchstar": 431, "_pyast_matchvalu": 431, "_pyast_namedexpr": 431, "_pyast_nonloc": 431, "_pyast_paramspec": 431, "_pyast_pass": 431, "_pyast_rais": 431, "_pyast_return": 431, "_pyast_set": 431, "_pyast_setcomp": 431, "_pyast_slic": 431, "_pyast_star": 431, "_pyast_subscript": 431, "_pyast_tri": 431, "_pyast_trystar": 431, "_pyast_tupl": 431, "_pyast_typealia": 431, "_pyast_typevar": 431, "_pyast_typevartupl": 431, "_pyast_unaryop": 431, "_pyast_whil": 431, "_pyast_with": 431, "_pyast_withitem": 431, "_pyast_yield": 431, "_pyast_yieldfrom": 431, "_pybytes_insertthousandsgroup": [482, 483], "_pybytes_insertthousandsgroupinglocal": [482, 483], "_pybytes_repeat": 483, "_pybytes_res": [9, 483], "_pybyteswrit": 483, "_pycfunctionfast": 58, "_pycfunctionfastwithkeyword": 58, "_pycode_getextra": [13, 474, 483], "_pycode_quicken": 483, "_pycode_setextra": [13, 474, 483], "_pydatetim": 483, "_pydebug_printtotalref": 482, "_pydecim": 483, "_pydict_contain": 483, "_pydict_newpres": 483, "_pyerr_chainexcept": [474, 483], "_pyerr_chainexceptions1": [474, 483], "_pyerr_chainstackitem": 483, "_pyerr_display": 483, "_pyerr_getexcinfo": 483, "_pyerr_gettopmostexcept": 483, "_pyerr_occur": 483, "_pyerr_stackitem": [473, 483], "_pyeval_calltrac": 483, "_pyeval_evalcod": 483, "_pyeval_evalcodewithnam": 483, "_pyeval_evalframedefault": [98, 104, 483], "_pyeval_getasyncgenfin": 483, "_pyeval_getasyncgenfirstit": 483, "_pyeval_getcoroutineorigintrackingdepth": 483, "_pyeval_matchclass": 483, "_pyeval_requestcodeextraindex": [13, 474], "_pyeval_setasyncgenfin": 483, "_pyeval_setasyncgenfirstit": 483, "_pyeval_vector": [104, 483], "_pyfloat_digit": [482, 483], "_pyfloat_digitsinit": [482, 483], "_pyfloat_repr": [482, 483], "_pyframe_isentryfram": 483, "_pyframe_numslotsforcodeobject": 483, "_pyframeevalfunct": [33, 473, 483], "_pygilstate_reinit": 483, "_pyimport_findsharedfuncptrwindow": 483, "_pyimport_frozenbootstrap": 176, "_pyimport_loaddynamicmodul": 79, "_pyinterpreterconfig": 483, "_pyinterpreterfram": [26, 33, 473, 483], "_pyinterpreterstate_en": 483, "_pyinterpreterstate_getevalframefunc": [33, 483], "_pyinterpreterstate_idincref": 483, "_pyinterpreterstate_idinitref": 483, "_pyinterpreterstate_setevalframefunc": [33, 483], "_pyio": [469, 471, 474, 483], "_pyio_get_console_typ": 483, "_pylist_fromarrayst": 483, "_pylong": 483, "_pylong_add": 104, "_pyobject_assert": 456, "_pyobject_callmethodidobjarg": 483, "_pyobject_callmethodnoarg": [10, 483], "_pyobject_callmethodonearg": [10, 483], "_pyobject_callonearg": [10, 483], "_pyobject_checkconsist": 483, "_pyobject_clearmanageddict": [474, 483], "_pyobject_debugmalloc": 96, "_pyobject_debugmallocapi": 96, "_pyobject_debugmallocstat": 483, "_pyobject_extra_init": 58, "_pyobject_fastcall_prepend": 483, "_pyobject_fastcalldict": 10, "_pyobject_fre": 483, "_pyobject_functionstr": [482, 483], "_pyobject_gc_calloc": 483, "_pyobject_gc_track": [28, 481, 483], "_pyobject_gc_untrack": [28, 481, 483], "_pyobject_genericsetattrwithdict": 93, "_pyobject_get_weakrefs_listptr": [63, 474], "_pyobject_getdictptr": 49, "_pyobject_getmethod": 483, "_pyobject_getst": 483, "_pyobject_isfre": 483, "_pyobject_malloc": [104, 483], "_pyobject_new": 3, "_pyobject_newvar": 3, "_pyobject_realloc": 483, "_pyobject_vectorcal": 10, "_pyobject_vectorcallmethod": [10, 483], "_pyobject_visitmanageddict": [474, 483], "_pyopcode_opnam": 483, "_pyos_sigintev": 483, "_pypegen_add_type_comment_to_arg": 431, "_pypegen_alias_for_star": 431, "_pypegen_arguments_parsing_error": 431, "_pypegen_augoper": 431, "_pypegen_check_barry_as_flufl": 431, "_pypegen_check_fstring_convers": 431, "_pypegen_check_legacy_stmt": 431, "_pypegen_class_def_decor": 431, "_pypegen_cmpop_expr_pair": 431, "_pypegen_collect_call_seq": 431, "_pypegen_concatenate_str": 431, "_pypegen_constant_from_str": 431, "_pypegen_constant_from_token": 431, "_pypegen_decoded_constant_from_token": 431, "_pypegen_dummy_nam": 431, "_pypegen_empty_argu": 431, "_pypegen_ensure_imaginari": 431, "_pypegen_ensure_r": 431, "_pypegen_formatted_valu": 431, "_pypegen_function_def_decor": 431, "_pypegen_get_cmpop": 431, "_pypegen_get_expr": 431, "_pypegen_get_expr_nam": 431, "_pypegen_get_key": 431, "_pypegen_get_last_comprehension_item": 431, "_pypegen_get_pattern": 431, "_pypegen_get_pattern_key": 431, "_pypegen_get_valu": 431, "_pypegen_interactive_exit": 431, "_pypegen_join_names_with_dot": 431, "_pypegen_join_sequ": 431, "_pypegen_joined_str": 431, "_pypegen_key_pattern_pair": 431, "_pypegen_key_value_pair": 431, "_pypegen_keyword_or_star": 431, "_pypegen_make_argu": 431, "_pypegen_make_modul": 431, "_pypegen_map_names_to_id": 431, "_pypegen_name_default_pair": 431, "_pypegen_nonparen_genexp_in_cal": 431, "_pypegen_pars": 431, "_pypegen_parser_new": 483, "_pypegen_raise_error_known_loc": 483, "_pypegen_seq_append_to_end": 431, "_pypegen_seq_count_dot": 431, "_pypegen_seq_delete_starred_expr": 431, "_pypegen_seq_extract_starred_expr": 431, "_pypegen_seq_flatten": 431, "_pypegen_seq_insert_in_front": 431, "_pypegen_set_expr_context": 431, "_pypegen_setup_full_format_spec": 431, "_pypegen_singleton_seq": 431, "_pypegen_slash_with_default": 431, "_pypegen_star_etc": 431, "_pypreconfig": 483, "_pyrun_anyfileobject": 104, "_pyrun_simplefileobject": 104, "_pyruntim": [34, 482, 483], "_pyruntime_initi": 483, "_pyruntimest": [481, 483], "_pyruntimestate_fini": 483, "_pystate_addmodul": 483, "_pystaticobject_checkrefcnt": 483, "_pystatictype_dealloc": 483, "_pysys_clearaudithook": [33, 142], "_pysys_getobjectid": 483, "_pysys_setobjectid": 483, "_pythread_currentfram": 483, "_pythreadstate_curr": 483, "_pythreadstate_getfram": [482, 483], "_pythreadstate_uncheckedget": 483, "_pytime_gettimeofday": 483, "_pytime_localtim": 483, "_pytraceback_add": 483, "_pytracemalloc_gettraceback": 483, "_pytracemalloc_newrefer": [482, 483], "_pytracemalloc_track": 483, "_pytracemalloc_untrack": 483, "_pytrash_begin": 483, "_pytrash_cond": 483, "_pytrash_deposit_object": 483, "_pytrash_destroy_chain": 483, "_pytrash_end": 483, "_pytrash_thread_deposit_object": 483, "_pytrash_thread_destroy_chain": 483, "_pytuple_res": [60, 464], "_pytype_getmodulebydef": 483, "_pytype_lookup": [61, 93, 472, 483], "_pyunicode_asunicod": [473, 482], "_pyunicode_clearstaticstr": [482, 483], "_pyunicode_equaltoasciiid": 483, "_pyunicode_fromid": 483, "_pyunicode_name_capi": [472, 483], "_pyunicode_new": 96, "_pyunicodewrit": 483, "_pyvectorcall_funct": 10, "_queue": 483, "_quote_html": 483, "_randbelow": 475, "_random": [426, 483], "_randommodul": 483, "_read_readi": 483, "_read_ready_cb": 483, "_reconstruct": 299, "_recursivewildcardselector": 483, "_register_atexit": 483, "_register_task": [128, 483], "_regrtest_top": 193, "_release_sav": 96, "_remove_dups_flatten": 483, "_removetestatindex": [388, 477], "_replac": [160, 394, 468, 483], "_request": 395, "_reset_internal_lock": 483, "_respons": 395, "_resultfordocleanup": 96, "_resultobj": 86, "_retval": 297, "_rlock": 96, "_rlock__block": 96, "_rlock__count": 96, "_rlock__own": 96, "_root": 369, "_run_exitfunc": 483, "_run_fin": 483, "_safe_repr": 483, "_save": 33, "_sc_aix_realmem": 483, "_sc_open_max": 483, "_schedule_callback": 483, "_scproxi": 483, "_screen": 384, "_selectordatagramtransport": 483, "_selectorsockettransport": 483, "_send_traceback_head": 468, "_sendfile_use_sendfil": 483, "_sentinel": 85, "_servername_callback": 483, "_set_anothervalu": 410, "_set_foo": 411, "_set_x": 116, "_setmod": 483, "_setroot": 413, "_sha1": 483, "_sha2": 483, "_sha256": 483, "_sha3": [473, 483], "_sha512": 483, "_sharedfil": 483, "_showwarnmsg": 483, "_shutdown": [469, 483], "_signal": 483, "_signature_get_bound_param": 483, "_signature_strip_non_python_syntax": 483, "_simplecdata": 176, "_slotnam": [279, 483], "_slotvalu": 93, "_socket": [465, 483], "_sourc": [160, 480, 483], "_spam": 440, "_spec_signatur": 483, "_sqlite": [456, 483], "_sqlite3": 483, "_srcfile": 101, "_sre": [279, 478, 483], "_ssl": 483, "_sslcontext": 483, "_sslprotocoltransport": 483, "_sslsocket": 483, "_stack_overflow": 483, "_start": 104, "_start_serv": 483, "_stat": [477, 483], "_static": [296, 483], "_station_id": 85, "_statist": 483, "_stats_clear": 483, "_stats_dump": 483, "_stats_off": 483, "_stats_on": 483, "_stdcallfuncptr": 176, "_stderr_buff": 96, "_stdout_buff": 96, "_step": 483, "_storeact": 120, "_stream": 281, "_stricmp": 483, "_string": 483, "_strptime": 483, "_struct": 483, "_structur": [196, 204, 205], "_subpart": 206, "_subtyp": [198, 206], "_sunder_": [68, 182], "_syscmd_ver": 483, "_sysconfigdata": 483, "_tee": 261, "_temp": 225, "_templat": 296, "_temporaryfileclos": 483, "_temporaryfilewrapp": 483, "_test": [388, 475, 483], "_test_all_chown_common": 483, "_test_multiprocess": 483, "_testcapi": [362, 456, 483], "_testcapimodul": 483, "_testconsol": 483, "_testemb": [456, 483], "_testinternalcapi": 483, "_testmethodnam": 96, "_testmultiphas": 483, "_testsharedmemori": 483, "_text": 206, "_texttestresult": [474, 483], "_thread": [63, 68, 84, 96, 142, 164, 254, 365, 465, 474, 476, 483], "_threading_loc": 365, "_threadwakeup": 483, "_time": 183, "_timezon": 483, "_tkinter": [66, 369, 384, 465, 473, 478, 482, 483], "_top_level_dir": 483, "_tracemalloc": 483, "_tstate": 483, "_type": 279, "_type_": 176, "_type_check": 473, "_type_equality_func": 96, "_typenam": 483, "_typeobject": [63, 75], "_u": 176, "_unpack_zipfil": 483, "_unpickler_read": 483, "_unpickler_setinputstream": 483, "_unregister_task": [128, 483], "_unsafe_url_bytes_to_remov": [472, 479, 480, 481, 482], "_unspecifi": 362, "_untrack_read": 483, "_urlopen": 395, "_use_args_": 483, "_use_broken_old_ctypes_structure_semantics_": [474, 483], "_use_posix_spawn": 348, "_use_vfork": 348, "_utest": 483, "_uuid": 483, "_v2": 483, "_validation_record": 281, "_valu": [93, 196, 205], "_value_": [94, 211], "_verbose__verbos": 96, "_version": 483, "_voltag": 225, "_vt_co": 386, "_wait": 96, "_wakeup": 483, "_warn": [362, 472, 483], "_warn_skip": 400, "_weakref": [5, 482, 483], "_weakrefset": 382, "_winapi": [142, 483], "_windowsconsoleio": [33, 34], "_winreg": [462, 468, 469, 470], "_without_invalid": 431, "_wmimodul": 483, "_worker": 483, "_write": 407, "_write_readi": 483, "_x": [225, 259, 468, 479], "_xoption": [34, 59, 352, 450, 455], "_xxsubinterpret": 483, "_xxsubinterpretersmodul": 474, "_z": 283, "_zlibdecompressor": 483, "_zoneinfo": 483, "a0": 80, "a0c8f0": 384, "a1": [102, 228, 483], "a1b2c3": 319, "a2": [102, 228, 319], "a2b_": [146, 476], "a2b_base64": [143, 146, 483], "a2b_hex": [146, 158, 477], "a2b_hqx": [473, 482, 483], "a2b_qp": [146, 483], "a2b_uu": 146, "a7p10": 344, "a8098c1a": [398, 467], "a85": 477, "a85decod": [143, 477, 483], "a85encod": [143, 477, 483], "a_": 177, "a_altcharset": 177, "a_attribut": 177, "a_blink": [92, 177], "a_bold": [92, 177, 468], "a_bool": 167, "a_chartext": 177, "a_color": 177, "a_dim": [92, 177], "a_expr": 430, "a_float": 167, "a_horizont": 177, "a_invi": 177, "a_ital": [177, 483], "a_left": 177, "a_list": [85, 381], "a_lock": 115, "a_low": 177, "a_mock": 389, "a_norm": 177, "a_protect": 177, "a_revers": [92, 177], "a_right": 177, "a_standout": [92, 177], "a_top": 177, "a_tupl": 428, "a_underlin": [92, 177], "a_url": 110, "a_vert": 177, "aa": [102, 160, 261, 319, 442, 469], "aaa": 469, "aaaa": [261, 319, 469], "aaaaa": 469, "aaaaaa": 319, "aaaab": 319, "aaaabbbccd": 261, "aaaabbbccdaabbb": 261, "aaab": 319, "aabbbbccddddeeffffgg": 343, "aabcadeaf": 261, "aac": [478, 483], "aac2": 337, "aahz": [462, 466, 467], "aapo": 483, "aarch64": [456, 483], "aaron": [477, 483], "aasland": [472, 473, 474, 483], "ab": [103, 106, 149, 160, 190, 234, 261, 270, 292, 309, 319, 344, 417, 426, 435, 442, 462, 465], "ab56ef": 258, "aba": 95, "abaakouk": 483, "ababababab": 106, "abahurir": 483, "abandon": [213, 369, 415, 475], "abbc": 95, "abbccad": 261, "abbrevi": [68, 109, 118, 177, 183, 186, 266, 292, 297, 308, 348, 366, 381, 413, 455, 477, 478, 479, 483], "abc": [63, 68, 73, 78, 80, 85, 87, 88, 93, 95, 106, 109, 112, 126, 133, 136, 160, 167, 170, 176, 182, 184, 187, 191, 226, 228, 242, 251, 252, 254, 258, 259, 261, 267, 268, 280, 283, 290, 299, 315, 319, 321, 330, 331, 344, 345, 352, 362, 382, 385, 422, 423, 426, 427, 428, 430, 432, 435, 440, 442, 462, 464, 465, 466, 467, 468, 469, 470, 473, 474, 479, 480, 481, 483], "abc1": 344, "abc123": 468, "abc5": 435, "abcabc": 344, "abcabc1": 344, "abcabcabc": 462, "abcb": 106, "abcbd": 106, "abcd": [106, 109, 160, 190, 261, 465, 468, 472], "abcdef": [161, 176, 258, 261, 319, 469, 477], "abcdefg": [261, 291, 473, 483], "abcdefgh": [475, 477], "abcdefghijklm": 468, "abcdefghijklmnopqrstuvwxyz": [344, 345, 469], "abcdefghijklmnopqrstuvwxyz0123456789": 319, "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz": [344, 469], "abcefg": 344, "abcmeta": [116, 428, 468, 475, 476, 477, 483], "abday_1": 266, "abday_2": 266, "abday_3": 266, "abday_4": 266, "abday_5": 266, "abday_6": 266, "abday_7": 266, "abdolmalek": 319, "abe": 108, "abelson": 95, "abeysiriwardan": 473, "abhilash": [478, 483], "abi": [3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 21, 22, 23, 24, 25, 26, 28, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 45, 47, 48, 49, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 98, 100, 352, 456, 460, 469, 473, 474, 477, 478, 480, 482, 483, 484], "abi3": [57, 476], "abid": 480, "abiflag": [352, 450, 456, 475, 481, 483], "abil": [7, 72, 73, 85, 92, 95, 101, 102, 106, 117, 213, 250, 253, 268, 283, 292, 324, 332, 344, 410, 421, 423, 426, 427, 463, 464, 465, 467, 468, 469, 475, 476, 477, 478, 479, 483], "abiv2": 483, "abl": [7, 33, 63, 73, 75, 76, 77, 84, 92, 94, 96, 101, 102, 106, 109, 141, 151, 158, 159, 169, 176, 177, 181, 183, 194, 235, 255, 267, 268, 269, 283, 292, 293, 295, 297, 299, 309, 314, 319, 332, 337, 340, 341, 348, 358, 362, 365, 384, 394, 400, 406, 413, 421, 427, 428, 434, 455, 456, 461, 462, 463, 464, 467, 469, 474, 475, 476, 477, 480, 481, 483], "abmon_1": 266, "abmon_10": 266, "abmon_11": 266, "abmon_12": 266, "abmon_2": 266, "abmon_3": 266, "abmon_4": 266, "abmon_5": 266, "abmon_6": 266, "abmon_7": 266, "abmon_8": 266, "abmon_9": 266, "abnorm": [297, 352, 394, 475], "abnsec": 319, "abort": [5, 35, 42, 59, 73, 102, 130, 133, 136, 138, 212, 213, 223, 248, 293, 297, 333, 340, 341, 352, 358, 359, 365, 373, 388, 432, 465, 480, 483], "abortretryignor": 373, "about": [5, 7, 13, 22, 23, 25, 27, 28, 42, 51, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 80, 84, 89, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 128, 133, 141, 144, 154, 155, 157, 158, 169, 176, 178, 181, 183, 186, 187, 190, 191, 194, 195, 197, 201, 203, 207, 209, 213, 216, 225, 235, 243, 245, 247, 250, 255, 261, 265, 267, 268, 269, 270, 271, 275, 278, 279, 283, 288, 292, 293, 297, 299, 307, 308, 312, 319, 320, 321, 322, 328, 330, 332, 333, 335, 337, 339, 340, 341, 342, 344, 347, 348, 352, 353, 358, 359, 362, 369, 376, 381, 384, 386, 388, 394, 395, 400, 405, 408, 410, 412, 414, 415, 416, 422, 423, 425, 427, 428, 429, 430, 432, 434, 436, 455, 456, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "abouttoquit": 102, "abov": [5, 7, 23, 33, 34, 42, 58, 63, 64, 72, 73, 75, 76, 85, 92, 94, 95, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 117, 120, 137, 139, 149, 151, 158, 163, 167, 169, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 197, 200, 203, 205, 208, 213, 215, 225, 230, 234, 235, 242, 243, 247, 251, 258, 266, 267, 268, 269, 270, 275, 278, 283, 288, 292, 293, 297, 299, 308, 313, 319, 324, 332, 333, 334, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 354, 362, 366, 369, 375, 376, 380, 384, 386, 388, 394, 395, 397, 405, 408, 410, 413, 420, 421, 426, 427, 428, 431, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 480, 481, 482, 483], "above_normal_priority_class": 348, "abra": 345, "abracadabra": [87, 93, 160, 283, 344, 345, 442, 466], "abraham": [475, 483], "abram": 93, "abridg": 271, "abrupt": [338, 365, 483], "abs": [47, 63, 95, 154, 183, 186, 225, 275, 289, 291, 344, 381, 382, 384, 386, 428, 430, 440, 442, 450, 473, 480, 483], "abs_tol": [154, 275, 478], "abscissa": 478, "absenc": [101, 110, 115, 255, 265, 267, 319, 341, 365, 428, 443, 483], "absent": [18, 120, 177, 268, 297, 337, 395, 475, 483], "absfloatvalu": 225, "absolut": [31, 33, 34, 47, 61, 63, 68, 72, 76, 84, 101, 113, 139, 141, 144, 151, 153, 155, 186, 191, 193, 213, 225, 230, 242, 250, 251, 257, 258, 268, 269, 270, 275, 278, 292, 293, 296, 324, 331, 332, 335, 340, 344, 345, 352, 354, 358, 366, 369, 382, 384, 386, 394, 399, 405, 415, 422, 425, 430, 432, 436, 446, 450, 455, 456, 461, 462, 466, 468, 469, 470, 474, 475, 476, 477, 478, 480, 482, 483, 484], "absolute_import": [113, 436, 467], "absolute_nam": 250, "absolutelinkerror": 358, "absolutepatherror": 358, "abspath": [200, 294, 296, 399, 469, 483], "abstract": [32, 55, 63, 68, 74, 76, 78, 79, 84, 85, 87, 91, 92, 93, 132, 133, 169, 176, 182, 183, 186, 208, 213, 221, 226, 244, 251, 253, 254, 258, 264, 269, 280, 290, 293, 301, 329, 337, 341, 344, 352, 386, 425, 428, 430, 465, 467, 469, 470, 472, 475, 476, 478, 479, 480, 482, 483, 484], "abstractasynccontextmanag": [169, 344, 386, 480, 483], "abstractbasicauthhandl": [68, 256, 389, 483], "abstractchildwatch": [132, 474, 483], "abstractclassmethod": [116, 475, 476], "abstractcontextmanag": [169, 344, 386, 479, 483], "abstractdigestauthhandl": [68, 256, 389, 483], "abstracteventloop": [126, 128, 132, 482, 483], "abstracteventlooppolici": [130, 132, 474, 483], "abstracthttphandl": [389, 479, 483], "abstractmethod": [93, 116, 226, 250, 251, 253, 289, 293, 329, 468, 476], "abstractproperti": [116, 468, 476], "abstractserv": 483, "abstractset": 386, "abstractstaticmethod": [116, 475, 476], "absurd": 483, "abus": [358, 436, 475, 483], "abxcd": 190, "abxd": [106, 319, 480], "abycdf": 190, "ac": [149, 160, 261, 426, 456, 465, 483], "ac_apple_universal_build": 355, "ac_c_char_unsign": 483, "ac_cache_check": 483, "ac_cv_buggy_getaddrinfo": 456, "ac_cv_cxx_thread": 483, "ac_cv_file__dev_ptc": 456, "ac_cv_file__dev_ptmx": 456, "ac_cv_func_shutdown": 483, "ac_header_tim": 483, "ac_path_target_tool": 483, "ac_path_tool": 483, "acbd18db4cc2f85cedef654fccc4a4d8": 340, "acc": [476, 483], "acceler": [384, 462, 463, 467, 470, 476, 477, 483], "accent": [109, 331], "accept": [5, 23, 28, 31, 33, 58, 61, 64, 66, 67, 68, 73, 75, 76, 79, 85, 89, 92, 95, 99, 102, 106, 107, 109, 110, 117, 120, 126, 133, 137, 139, 141, 146, 149, 151, 155, 158, 163, 167, 169, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 201, 205, 206, 208, 209, 213, 215, 221, 226, 228, 234, 235, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 278, 282, 283, 292, 293, 295, 299, 314, 319, 324, 328, 329, 330, 332, 333, 335, 338, 340, 341, 344, 348, 352, 358, 362, 364, 366, 375, 376, 378, 380, 382, 385, 386, 388, 394, 395, 397, 403, 405, 407, 411, 413, 416, 419, 421, 422, 426, 427, 428, 430, 432, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "accept2dyear": [475, 476], "accept_connect": 365, "acceptlist": 362, "acceptstr": 362, "accepttupl": 362, "access": [5, 7, 11, 16, 23, 31, 33, 45, 47, 49, 50, 54, 55, 59, 60, 61, 63, 68, 72, 73, 75, 76, 77, 79, 84, 85, 87, 93, 96, 99, 101, 102, 106, 109, 110, 118, 136, 138, 139, 142, 146, 149, 151, 158, 160, 161, 169, 170, 177, 181, 183, 184, 186, 191, 193, 194, 196, 200, 203, 205, 207, 212, 213, 217, 218, 221, 225, 226, 230, 233, 235, 242, 243, 244, 245, 246, 247, 250, 251, 253, 254, 255, 257, 258, 259, 261, 267, 269, 271, 276, 278, 280, 281, 282, 283, 284, 292, 293, 295, 296, 297, 299, 302, 312, 314, 319, 320, 322, 324, 328, 330, 332, 333, 335, 337, 338, 339, 340, 342, 344, 348, 352, 353, 354, 355, 358, 359, 362, 365, 369, 375, 376, 381, 384, 385, 386, 387, 388, 394, 395, 399, 404, 406, 410, 411, 412, 413, 415, 419, 420, 422, 425, 426, 427, 429, 430, 432, 436, 449, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 481, 482, 483], "access_copi": 278, "access_default": [278, 483], "access_read": 278, "access_writ": 278, "accesslog": 451, "accessor": [11, 68, 85, 225, 273, 411, 467, 481, 483], "accid": [76, 120, 468, 469, 470, 481, 483], "accident": [25, 33, 102, 186, 190, 193, 213, 436, 463, 465, 468, 478, 483], "accommod": [72, 102, 201, 250, 369, 466, 483], "accompani": [191, 271, 335, 337, 463, 475, 483], "accomplish": [33, 85, 120, 177, 248, 330, 410, 427, 483], "accord": [7, 18, 33, 39, 64, 66, 76, 92, 93, 94, 95, 99, 102, 103, 109, 151, 158, 169, 181, 183, 186, 196, 201, 203, 205, 208, 209, 216, 218, 225, 226, 233, 235, 243, 247, 248, 250, 253, 261, 266, 267, 268, 281, 283, 292, 293, 308, 341, 342, 344, 346, 347, 348, 366, 375, 376, 378, 384, 388, 394, 395, 410, 422, 426, 428, 430, 432, 435, 455, 461, 464, 465, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 483], "account": [84, 106, 158, 160, 163, 167, 183, 186, 190, 191, 202, 209, 223, 225, 235, 244, 266, 267, 268, 286, 293, 307, 339, 347, 352, 358, 359, 362, 399, 467, 471, 475, 477, 478, 479, 481, 482, 483], "accross": 483, "acct": 223, "accumul": [85, 92, 95, 120, 186, 226, 261, 292, 299, 308, 318, 331, 380, 388, 463, 475, 476, 481, 483], "accur": [42, 176, 207, 245, 275, 292, 308, 352, 358, 366, 369, 382, 422, 466, 468, 469, 474, 475, 477, 479, 480, 481, 483], "accuraci": [183, 225, 261, 275, 308, 444, 466, 474, 483], "accustom": 186, "acdeb": 160, "ace": [158, 318, 319, 465], "achiev": [33, 45, 63, 72, 85, 95, 100, 102, 120, 158, 167, 176, 226, 245, 261, 267, 283, 320, 341, 352, 362, 365, 369, 374, 395, 413, 428, 435, 436, 462, 464, 465, 467, 477, 478, 483], "achim": 468, "achraf": 481, "acid": [167, 464, 474], "ack": [0, 178, 468], "acknowledg": [68, 103, 136, 167, 178, 358, 426], "acl": [248, 332], "acloc": [456, 474, 483], "aclos": [126, 161, 169, 430, 472, 482, 483], "acm": [243, 318], "aco": [154, 275], "acosh": [154, 275, 468, 483], "acquaint": 292, "acquir": [7, 33, 73, 96, 115, 138, 169, 208, 215, 267, 271, 283, 293, 333, 341, 358, 365, 374, 428, 467, 468, 469, 470, 473, 475, 476, 478, 480, 483], "acquire_db_connect": 169, "acquire_lock": [470, 474], "acquire_resourc": 169, "acquire_special_resourc": 169, "acquisit": [169, 267, 365, 456, 475, 483], "acronym": 366, "across": [33, 42, 61, 63, 68, 85, 100, 120, 167, 169, 176, 183, 191, 193, 209, 255, 260, 261, 266, 267, 268, 269, 283, 299, 314, 320, 328, 330, 352, 365, 369, 376, 378, 384, 413, 430, 435, 465, 466, 468, 469, 474, 475, 479, 480, 481, 483], "acs": 177, "acs_": 92, "acs_bbss": 177, "acs_block": 177, "acs_board": 177, "acs_bsb": 177, "acs_bssb": 177, "acs_bsss": 177, "acs_bte": 177, "acs_bullet": 177, "acs_ckboard": 177, "acs_darrow": 177, "acs_degre": 177, "acs_diamond": 177, "acs_gequ": 177, "acs_hlin": 177, "acs_lantern": 177, "acs_larrow": 177, "acs_lequ": 177, "acs_llcorn": 177, "acs_lrcorn": 177, "acs_lte": 177, "acs_nequ": 177, "acs_pi": 177, "acs_plminus": [92, 177], "acs_plus": 177, "acs_rarrow": 177, "acs_rte": 177, "acs_s1": 177, "acs_s3": 177, "acs_s7": 177, "acs_s9": 177, "acs_sbb": 177, "acs_sbsb": 177, "acs_sbss": 177, "acs_ssb": 177, "acs_ssbb": 177, "acs_sssb": 177, "acs_ssss": 177, "acs_sterl": 177, "acs_tte": 177, "acs_uarrow": 177, "acs_ulcorn": [92, 177], "acs_urcorn": 177, "acs_vlin": 177, "act": [63, 67, 75, 85, 95, 101, 144, 176, 181, 183, 191, 196, 201, 205, 208, 225, 226, 244, 248, 250, 253, 259, 267, 293, 296, 309, 311, 340, 344, 352, 365, 375, 384, 385, 386, 426, 428, 435, 461, 462, 463, 468, 472, 476, 477, 481, 482, 483], "action": [33, 42, 55, 68, 73, 75, 76, 89, 92, 106, 115, 118, 144, 155, 160, 169, 177, 190, 200, 215, 228, 242, 248, 281, 283, 293, 297, 301, 308, 309, 325, 328, 333, 338, 340, 344, 352, 358, 359, 361, 365, 376, 384, 388, 389, 395, 399, 400, 426, 428, 441, 455, 462, 463, 465, 466, 467, 468, 469, 471, 475, 477, 482, 483], "action_1": 472, "action_2": 472, "action_3": 472, "action_wildcard": 472, "actiontext": 281, "activ": [13, 22, 23, 27, 33, 49, 59, 63, 66, 72, 92, 96, 106, 132, 138, 139, 144, 151, 152, 160, 169, 177, 186, 213, 218, 223, 243, 247, 251, 272, 283, 288, 292, 295, 297, 305, 308, 314, 328, 334, 338, 340, 341, 344, 348, 352, 353, 365, 366, 369, 376, 384, 385, 399, 411, 412, 415, 436, 441, 453, 455, 461, 462, 464, 465, 467, 468, 469, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "activate_stack_trampolin": [104, 352, 474, 483], "active_children": 283, "active_count": [247, 283, 365, 468, 472, 483], "active_tim": 96, "active_us": 441, "activecount": [365, 468, 472, 483], "activeforeground": 369, "activepython": [85, 461], "activest": [85, 105, 454, 459, 462, 475], "activetcl": 483, "actor": [413, 441, 481], "actual": [5, 7, 13, 23, 33, 39, 49, 55, 58, 61, 63, 64, 66, 73, 75, 76, 77, 84, 85, 92, 93, 94, 96, 99, 101, 102, 106, 109, 117, 139, 149, 151, 158, 160, 167, 169, 173, 176, 177, 178, 181, 191, 193, 197, 200, 203, 206, 207, 209, 213, 225, 230, 234, 245, 248, 250, 251, 252, 253, 255, 261, 265, 267, 268, 269, 270, 271, 278, 281, 283, 292, 293, 295, 297, 305, 308, 320, 324, 325, 330, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 358, 365, 369, 372, 381, 384, 386, 388, 389, 390, 395, 399, 405, 410, 414, 422, 426, 427, 428, 429, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 480, 481, 482, 483], "acut": 109, "acycl": 232, "ad": [103, 261, 426, 465], "adam": [84, 468, 469, 472, 474, 475, 476, 479, 480, 481, 482, 483], "adapt": [42, 68, 85, 102, 141, 176, 186, 191, 225, 230, 267, 297, 298, 332, 337, 341, 369, 384, 462, 463, 467, 469, 471, 473, 474, 479, 483], "adapt_date_iso": 340, "adapt_datetime_epoch": 340, "adapt_datetime_iso": 340, "adapt_point": 340, "adaptor": 390, "adat": 304, "add": [5, 7, 28, 31, 33, 34, 45, 55, 58, 59, 63, 73, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 139, 141, 151, 152, 155, 157, 158, 160, 161, 163, 167, 169, 177, 181, 183, 186, 189, 191, 193, 194, 195, 196, 197, 200, 203, 205, 206, 208, 223, 225, 226, 230, 232, 234, 236, 243, 244, 245, 247, 250, 255, 258, 261, 262, 267, 268, 271, 276, 281, 283, 289, 291, 292, 293, 299, 301, 302, 307, 308, 319, 321, 328, 332, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 352, 353, 354, 355, 358, 362, 364, 366, 369, 375, 376, 384, 385, 386, 388, 389, 390, 394, 395, 400, 410, 411, 413, 414, 419, 420, 421, 422, 423, 426, 427, 428, 430, 431, 432, 434, 435, 436, 440, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "add_": [196, 197], "add_alia": 195, "add_altern": [200, 205], "add_argu": [68, 89, 102, 118, 160, 190, 200, 228, 309, 399, 451, 469, 475, 483], "add_argument_group": [120, 483], "add_attach": [200, 205], "add_cgi_var": 407, "add_charset": 195, "add_child_handl": 132, "add_codec": 195, "add_cookie_head": 243, "add_count": 473, "add_cross_compiling_path": 483, "add_data": [281, 395, 477], "add_dll_directori": [142, 293, 481, 483], "add_done_callback": [129, 139, 166, 480, 483], "add_fallback": 230, "add_fil": 281, "add_flag": 271, "add_fold": 271, "add_get_handl": 197, "add_handl": [110, 395], "add_head": [196, 205, 206, 389, 395, 407], "add_help": [68, 118], "add_help_opt": 292, "add_histori": 320, "add_label": 271, "add_log": 386, "add_method": 93, "add_mutually_exclusive_group": [89, 120, 483], "add_not": [213, 443, 473, 483], "add_object_typ": 483, "add_on": 181, "add_opt": [120, 292, 465], "add_option_group": 292, "add_par": 395, "add_pars": [102, 120, 475], "add_password": [110, 395], "add_payload": 199, "add_read": [126, 130, 131, 133, 136, 483], "add_rel": [200, 205], "add_sect": [167, 475], "add_sequ": 271, "add_set_handl": 197, "add_signal_handl": [126, 130, 131, 483], "add_spam": 45, "add_stream": 281, "add_subclass": 483, "add_subpars": [102, 120, 475, 480, 483], "add_tabl": 281, "add_task": 236, "add_trick": 440, "add_two": 386, "add_typ": 276, "add_unicode_checkmark": 386, "add_unredirected_head": [243, 395], "add_writ": [126, 130, 131, 483], "addasynccleanup": 388, "addaudithook": [59, 142, 352, 450], "addch": [92, 177, 483], "addclasscleanup": [388, 481, 483], "addcleanup": [388, 389, 390, 469, 481, 483], "addcompon": 384, "adddlldirectori": 293, "adddur": [388, 483], "added": [4, 5, 7, 10, 11, 13, 14, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 42, 43, 45, 47, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 68, 73, 75, 85, 92, 93, 94, 95, 98, 100, 101, 102, 103, 106, 112, 115, 116, 117, 120, 121, 122, 126, 128, 129, 132, 133, 135, 136, 138, 139, 141, 143, 144, 149, 150, 151, 154, 155, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 179, 181, 183, 184, 186, 188, 190, 191, 193, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 218, 221, 223, 225, 226, 227, 230, 231, 232, 234, 235, 237, 238, 239, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 283, 284, 288, 291, 292, 293, 294, 296, 297, 299, 300, 302, 303, 304, 305, 307, 308, 311, 312, 314, 316, 318, 319, 320, 321, 322, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 402, 403, 405, 407, 410, 411, 413, 419, 420, 421, 422, 423, 424, 425, 427, 428, 429, 430, 432, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "addendum": 426, "adder": 95, "adder_funct": 420, "adderror": [388, 483], "adderrorinfo": 483, "addexpectedfailur": 388, "addext": 483, "addfailur": [388, 483], "addfil": 358, "addfilt": [101, 102, 267], "addhandl": [101, 102, 267, 471], "addhead": 395, "addict": 463, "addin": 483, "addind": 411, "addinfourl": [395, 483], "adding": [13, 22, 33, 47, 61, 68, 73, 74, 77, 84, 85, 92, 93, 95, 100, 106, 110, 141, 151, 181, 186, 195, 196, 197, 205, 206, 207, 243, 247, 262, 267, 271, 293, 319, 340, 344, 365, 376, 386, 388, 395, 413, 422, 423, 428, 430, 432, 435, 436, 455, 456, 461, 462, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "addit": [5, 7, 9, 23, 31, 33, 41, 42, 45, 58, 61, 63, 66, 68, 73, 75, 76, 84, 94, 95, 96, 99, 100, 101, 102, 106, 109, 112, 115, 117, 120, 139, 141, 151, 157, 158, 167, 169, 173, 176, 177, 180, 181, 182, 183, 184, 186, 189, 190, 191, 193, 194, 196, 197, 199, 202, 203, 205, 206, 208, 213, 215, 218, 221, 225, 226, 230, 234, 235, 242, 243, 245, 247, 250, 251, 255, 257, 258, 259, 261, 262, 266, 267, 268, 270, 271, 276, 278, 283, 285, 292, 293, 299, 305, 307, 308, 313, 314, 319, 321, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 386, 387, 388, 394, 395, 399, 400, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 444, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "addlevelnam": 267, "addmodulecleanup": [388, 481, 483], "addnstr": 177, "addpackagepath": 279, "addr": [133, 136, 151, 170, 259, 329, 337, 341, 362, 420, 475, 478, 483], "addr4": 99, "addr6": [99, 478], "addr_spec": [203, 476], "addr_typ": 337, "address": [5, 9, 23, 42, 51, 58, 63, 64, 68, 73, 75, 85, 96, 101, 102, 107, 112, 121, 126, 128, 133, 142, 164, 170, 176, 191, 193, 200, 203, 208, 209, 212, 215, 223, 225, 242, 243, 245, 256, 262, 267, 269, 270, 271, 284, 319, 322, 335, 337, 338, 340, 341, 362, 382, 386, 394, 420, 428, 456, 462, 464, 465, 467, 468, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "address_bit": 483, "address_exclud": 259, "address_famili": [337, 338], "address_in_rang": 483, "address_str": 245, "addresse": [102, 269], "addressfamili": 337, "addresshead": 203, "addresslist": 483, "addressof": [142, 176], "addresssanit": [456, 483], "addressvalueerror": [99, 259], "addrq": 483, "addshap": 384, "addsitedir": 334, "addskip": [388, 483], "addstr": [92, 177, 483], "addsubtest": [388, 483], "addsuccess": 388, "addtest": [193, 388], "addtwic": 440, "addtypeequalityfunc": [388, 469], "addunexpectedsuccess": 388, "addwidget": 102, "adequ": [61, 63, 76, 213, 469, 476], "adher": [158, 167, 245, 262, 269, 283, 434], "adhf": 102, "adict": 304, "aditya": [473, 474, 483], "adjac": [106, 183, 190, 252, 270, 282, 319, 388, 410, 435, 461, 477, 480, 483], "adject": [140, 446], "adjunct": 475, "adjust": [5, 45, 54, 56, 64, 120, 160, 177, 183, 186, 201, 208, 293, 307, 324, 334, 340, 341, 344, 366, 369, 375, 376, 413, 462, 469, 477, 479, 480, 481, 483], "adjust_int_max_str_digit": 362, "adler": [424, 426], "adler32": [235, 424, 483], "admin": 247, "adminemailhandl": 102, "adminexecutesequ": 281, "administ": [398, 462, 468, 480, 483], "administr": [31, 33, 59, 101, 151, 155, 248, 287, 288, 293, 334, 337, 366, 407, 429, 461, 466, 476, 481, 482, 483], "adminuisequ": 281, "adminuserid": 386, "admit": 103, "adnan": 483, "ado": 154, "adob": [143, 477, 483], "adopt": [395, 432, 463, 464, 465, 468, 482, 483], "adpcm": 141, "adpcm2lin": [141, 483], "adpcmfrag": 141, "adrian": [473, 474, 480, 483], "ads": 243, "advanc": [32, 68, 76, 85, 92, 106, 149, 167, 169, 176, 177, 186, 187, 194, 225, 234, 255, 258, 261, 270, 278, 292, 337, 341, 348, 352, 380, 384, 386, 411, 412, 422, 427, 428, 434, 461, 465, 470, 475, 481, 483, 484], "advantag": [33, 51, 73, 75, 85, 95, 101, 102, 186, 197, 250, 299, 308, 324, 331, 344, 375, 388, 411, 413, 415, 462, 465, 466, 471, 474, 475, 476, 477, 478, 481, 483], "advent": 480, "adverb": [68, 363], "advers": 480, "advertis": [212, 288, 335, 341, 426, 468, 477, 478, 481, 483], "advic": [278, 293, 461, 474, 483], "advis": [101, 169, 176, 248, 283, 288, 293, 365, 400, 425, 426, 428, 430, 475, 481, 483], "advisori": [271, 428, 455, 462, 483], "advtexecutesequ": 281, "ae": 235, "aead": [337, 341], "aealmlobdk": 319, "aeiou": 344, "aeiouaeiou": 226, "aenter": 427, "aepack": 468, "aes": [337, 341, 465], "aes128": 341, "aes256": [341, 483], "aesgcm": 341, "aest": 366, "aetool": 468, "aetyp": 468, "aexit": 427, "af": 337, "af_": [337, 477], "af_alg": [337, 479, 483], "af_bluetooth": [337, 483], "af_can": [337, 483], "af_divert": 337, "af_hyperv": 337, "af_inet": [45, 102, 107, 126, 283, 337, 338, 341, 362, 468, 483], "af_inet6": [126, 337, 483], "af_link": [337, 477], "af_netlink": [337, 467], "af_packet": [337, 483], "af_pip": 283, "af_qipcrtr": [337, 483], "af_rd": 337, "af_tipc": 337, "af_unix": [126, 131, 283, 337, 338, 483], "af_unspec": [126, 136, 337], "af_vsock": [337, 480, 483], "afalsevalu": 304, "afanasyev": 483, "aff": 475, "affair": 462, "affect": [33, 45, 59, 60, 64, 68, 73, 84, 93, 94, 95, 102, 106, 139, 144, 167, 177, 183, 186, 191, 193, 202, 205, 230, 243, 247, 250, 258, 266, 269, 271, 278, 293, 307, 319, 320, 321, 322, 337, 340, 341, 348, 354, 356, 358, 362, 366, 375, 376, 384, 386, 388, 394, 400, 405, 410, 427, 428, 430, 432, 436, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "affection": 481, "affin": [186, 483], "affix": [428, 483], "afford": 462, "afghanistan": 183, "aflag": 473, "afloat": 304, "afmt_a_law": 295, "afmt_ima_adpcm": 295, "afmt_mu_law": 295, "afmt_queri": 295, "afmt_s16_b": 295, "afmt_s16_l": 295, "afmt_s8": 295, "afmt_u16_b": 295, "afmt_u16_l": 295, "afmt_u8": 295, "aforement": [33, 476], "afoul": [463, 465], "afresh": [101, 169, 267], "africa": 468, "after": [5, 7, 13, 23, 26, 27, 28, 33, 34, 39, 42, 45, 58, 59, 61, 63, 64, 68, 71, 72, 73, 76, 85, 92, 94, 95, 100, 101, 102, 103, 106, 110, 112, 115, 117, 120, 128, 133, 135, 139, 144, 146, 147, 149, 151, 152, 153, 155, 157, 167, 169, 170, 176, 177, 179, 181, 183, 185, 186, 190, 191, 193, 195, 196, 205, 206, 207, 209, 212, 213, 215, 216, 218, 225, 228, 232, 234, 235, 242, 245, 247, 248, 250, 255, 258, 261, 266, 267, 268, 269, 270, 271, 275, 278, 279, 282, 283, 284, 288, 292, 293, 295, 297, 305, 308, 309, 314, 319, 320, 324, 325, 328, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 376, 381, 382, 384, 386, 388, 395, 399, 400, 405, 407, 410, 413, 415, 416, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 444, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "after_cancel": 483, "after_in_child": 293, "after_in_par": 293, "after_par": 483, "afterward": [33, 72, 93, 176, 183, 186, 261, 293, 328, 340, 352, 359, 421, 428, 464, 465, 468, 483], "ag": 483, "ag_fram": 255, "ag_run": [255, 482, 483], "again": [13, 22, 27, 28, 33, 45, 63, 73, 75, 76, 84, 85, 92, 94, 95, 96, 102, 106, 109, 110, 133, 146, 151, 167, 170, 176, 177, 183, 200, 212, 214, 221, 226, 232, 243, 247, 261, 267, 269, 275, 278, 282, 283, 292, 293, 295, 297, 299, 308, 313, 328, 331, 333, 335, 340, 341, 344, 348, 352, 360, 362, 365, 369, 375, 376, 384, 387, 395, 400, 413, 414, 427, 428, 430, 432, 435, 436, 441, 443, 461, 462, 464, 465, 468, 470, 475, 476, 480, 481, 483], "against": [49, 72, 73, 75, 76, 85, 94, 102, 106, 112, 120, 136, 141, 173, 176, 181, 190, 191, 193, 235, 251, 255, 278, 292, 293, 305, 307, 308, 311, 314, 319, 324, 331, 333, 342, 344, 358, 362, 365, 369, 375, 384, 385, 386, 388, 400, 411, 412, 413, 414, 419, 420, 421, 426, 427, 428, 432, 455, 456, 462, 463, 464, 465, 466, 467, 474, 475, 477, 478, 479, 480, 481, 483], "age": [85, 93, 108, 160, 225, 226, 243, 244, 340, 341, 343, 451, 464, 465, 466, 469, 475], "agen": [255, 430, 483], "agen_clos": 255, "agen_cr": 255, "agen_run": 255, "agen_suspend": 255, "agenc": [341, 426], "agent": [106, 110, 271, 272, 335, 352, 395, 396, 464, 468], "agffno5wuhb77vbri6f9iv2qixu7whw": 235, "aggarw": [481, 483], "aggrav": 475, "aggreg": [139, 261, 340, 388, 473, 483], "aggregate_class": 340, "aggress": [41, 344, 467, 483], "agl": 176, "agnost": [99, 344, 386], "ago": [85, 464, 483], "agre": [103, 341, 347, 426, 483], "agreement": [426, 462, 481], "agren": 483, "aguiar": 483, "ahead": [117, 261, 359, 366, 403, 410, 431, 466, 483], "ahi": 190, "ahlstrom": [423, 462, 465], "ahoy": 244, "ai_": 337, "ai_canonnam": 337, "ai_numerichost": 337, "ai_pass": [126, 136, 337], "aid": [63, 340, 461, 465, 466, 469, 475, 476, 477, 483], "aifc": [68, 206, 254, 336, 349, 350, 401, 462, 473, 474, 482, 483], "aifc_read": 483, "aiff": [68, 153, 206, 254, 336, 350, 450, 483], "aiffread": 450, "aiffwrit": 450, "ailmsux": 319, "aim": [42, 72, 75, 99, 109, 270, 281, 352, 386, 413, 461, 464, 466, 467, 477, 481], "aio": 328, "aioe": 483, "aiohttp": 169, "aiosmtpd": [474, 483], "air": 333, "ais": [158, 465], "ait": 483, "aiter": [49, 225, 428, 472, 479, 483], "aiudi": [482, 483], "aivar": 483, "aix": [73, 115, 293, 306, 352, 365, 481, 482, 483], "aix3": [481, 483], "aix4": 483, "aix5": 352, "aix7": [352, 481, 483], "aix_genuine_cplusplus": 355, "aix_platform": 483, "aixtool": 483, "ajith": 473, "ak": 95, "aka": [68, 193, 355, 422, 428, 461, 480, 483], "akin": [252, 344, 432], "akira": [478, 483], "akm": 106, "akshay": 483, "akshit": 478, "akt": 319, "akt5": 319, "akt5q": 319, "akuchl": 453, "al": [79, 95, 181, 337, 341, 346, 376, 468, 479, 483], "ala": 25, "alacazam": [442, 466], "alae": 483, "alan": [369, 467, 468, 474, 480, 483], "alarm": [308, 333, 477, 483], "alaw": [117, 349], "alaw2lin": 141, "albatross": 230, "albeit": 230, "albert": [478, 480, 483], "alberto": [468, 476], "albrecht": 319, "alecsandru": [479, 483], "aleksandr": 483, "aleksi": 483, "alert": [92, 240, 269, 341, 386, 400, 480, 483], "alert_description_": 341, "alert_description_handshake_failur": 341, "alert_description_internal_error": 341, "alertdescript": 341, "alessandro": 479, "alex": [84, 465, 468, 469, 472, 473, 474, 478, 479, 481, 482, 483], "alexand": [109, 468, 469, 471, 474, 475, 478, 479, 480, 483], "alexandr": [235, 468, 469, 471, 475, 477, 483], "alexandru": 483, "alexey": [468, 477, 478, 483], "alg_": [337, 479], "alg_bit": 341, "algebra": [261, 468, 483], "algorithm": [30, 33, 42, 68, 84, 85, 87, 103, 106, 109, 133, 141, 146, 149, 151, 158, 173, 182, 183, 186, 190, 193, 202, 208, 222, 225, 230, 235, 248, 254, 258, 259, 261, 266, 269, 270, 275, 280, 281, 308, 337, 341, 344, 352, 364, 395, 422, 423, 430, 456, 462, 464, 465, 467, 469, 471, 472, 475, 476, 479, 480, 481, 482, 483], "algorithms_avail": [235, 469, 475, 483], "algorithms_guarante": [235, 469, 475], "alia": [31, 68, 85, 87, 94, 102, 122, 133, 137, 153, 158, 161, 176, 178, 183, 191, 195, 197, 205, 213, 218, 228, 230, 243, 250, 254, 255, 283, 287, 292, 293, 297, 319, 322, 328, 329, 333, 337, 340, 348, 351, 353, 359, 365, 384, 385, 386, 403, 405, 406, 419, 422, 423, 427, 429, 436, 456, 470, 472, 474, 477, 479, 480, 482, 483], "alias": [23, 68, 94, 120, 158, 187, 195, 211, 213, 230, 266, 297, 303, 337, 340, 344, 376, 384, 387, 429, 435, 436, 440, 456, 461, 463, 465, 468, 472, 474, 475, 476, 477, 479, 482, 483], "alias_for_squar": 94, "alias_ti": 431, "aliaslist": 337, "aliasmbc": 483, "alic": 235, "alien": [147, 365], "align": [63, 68, 118, 145, 153, 345, 362, 376, 384, 408, 468, 469, 474, 483], "alignof_max_align_t": 483, "alignof_x": 483, "aliquam": 149, "alist": [191, 304, 428], "aliv": [34, 63, 85, 176, 226, 283, 305, 344, 362, 365, 402, 427, 428, 452, 455, 463, 469, 470, 475, 477, 483], "alkalin": 474, "all": [5, 7, 9, 17, 22, 23, 25, 28, 31, 33, 34, 35, 39, 42, 45, 47, 55, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 108, 109, 110, 112, 117, 120, 124, 128, 133, 134, 137, 138, 139, 141, 144, 146, 147, 149, 151, 153, 155, 157, 158, 159, 160, 161, 163, 164, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 185, 186, 190, 191, 192, 193, 194, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 222, 225, 226, 227, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 284, 287, 288, 293, 295, 296, 297, 299, 302, 305, 308, 309, 311, 312, 313, 314, 316, 322, 324, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 441, 442, 446, 449, 450, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 480, 481, 482, 483], "all_black_hol": 472, "all_complet": [139, 166], "all_equ": 261, "all_error": [126, 223, 337, 473, 483], "all_featur": 415, "all_fram": 382, "all_polls_clos": 475, "all_properti": 415, "all_recipi": 209, "all_suffix": [250, 255], "all_task": [124, 128, 139, 480, 482, 483], "all_thread": 214, "alleg": 426, "allen": [318, 341, 475, 483], "allevi": [250, 462], "alli": 463, "alliancefran": [158, 465], "alliancefranais": [158, 465], "allison": 483, "alloc": [5, 7, 16, 23, 28, 31, 32, 34, 45, 49, 56, 58, 59, 63, 64, 66, 68, 72, 73, 74, 76, 85, 93, 100, 115, 133, 169, 176, 188, 214, 283, 284, 293, 299, 314, 322, 337, 352, 365, 376, 382, 405, 416, 455, 456, 462, 463, 464, 467, 469, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "allocate_lock": 115, "allocationgranular": 278, "allocfunc": [57, 63, 75], "allow": [5, 7, 9, 22, 23, 33, 34, 41, 42, 43, 45, 49, 58, 59, 61, 63, 64, 68, 71, 72, 73, 75, 76, 79, 84, 85, 89, 92, 93, 95, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 132, 133, 135, 137, 138, 139, 151, 153, 157, 158, 160, 161, 163, 167, 169, 173, 176, 177, 180, 181, 183, 186, 189, 190, 191, 193, 194, 195, 196, 202, 203, 205, 208, 211, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 261, 262, 265, 266, 267, 268, 269, 271, 276, 278, 279, 283, 287, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 311, 313, 314, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 348, 352, 353, 354, 356, 358, 362, 364, 365, 366, 369, 374, 375, 376, 377, 380, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 413, 415, 416, 419, 420, 421, 422, 423, 427, 428, 429, 430, 431, 432, 435, 436, 441, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "allow_abbrev": [68, 118, 478, 483], "allow_broadcast": 126, "allow_daemon_thread": 33, "allow_dotted_nam": 420, "allow_exec": 33, "allow_exit_without_flush": 283, "allow_foo": 268, "allow_fork": 33, "allow_frag": 394, "allow_nan": [262, 483], "allow_no_valu": [167, 469], "allow_non": [283, 419, 420, 465], "allow_reuse_address": [102, 338, 420, 468], "allow_reuse_port": 483, "allow_thread": 33, "allowed_domain": 243, "allowed_nam": 481, "allowing_all_extens": 483, "allowlist": [243, 394], "allowpathinfo": 407, "allowpathinfoforscriptmap": 407, "allowunassign": 158, "allowzip64": [422, 477, 483], "almost": [33, 64, 72, 75, 76, 84, 85, 92, 102, 106, 108, 109, 112, 120, 157, 177, 186, 251, 258, 266, 272, 275, 283, 288, 292, 319, 344, 348, 369, 388, 428, 434, 456, 461, 463, 465, 468, 470, 474, 476, 482, 483], "alo": 190, "alon": [7, 64, 75, 81, 85, 102, 106, 250, 297, 319, 324, 331, 420, 426, 427, 434, 464, 467, 468, 477, 483], "along": [7, 58, 95, 100, 101, 102, 120, 141, 149, 163, 169, 176, 186, 193, 203, 205, 218, 230, 234, 235, 244, 250, 251, 267, 269, 278, 293, 299, 308, 329, 335, 337, 341, 344, 345, 348, 369, 376, 380, 384, 386, 388, 414, 421, 426, 427, 436, 462, 463, 464, 465, 466, 468, 469, 474, 475, 477, 478, 483], "alongsid": [354, 375, 421, 426, 435, 461], "alph": 449, "alpha": [4, 68, 80, 87, 113, 284, 288, 307, 318, 352, 355, 449, 451, 462, 463, 468, 471, 484], "alpha2": 483, "alphabet": [64, 85, 89, 143, 146, 173, 178, 186, 196, 199, 262, 267, 268, 271, 308, 326, 334, 344, 385, 461, 465, 466, 467, 468, 469, 472, 477, 478, 479, 480, 481, 483], "alphanumer": [64, 106, 151, 178, 193, 250, 268, 272, 299, 319, 331, 344, 345, 366, 465, 483], "alpin": 483, "alpn": [242, 341, 395, 472, 478, 483], "alreadi": [5, 7, 9, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 49, 51, 54, 60, 61, 63, 64, 66, 68, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 99, 100, 102, 103, 106, 109, 112, 120, 129, 133, 139, 151, 163, 167, 169, 176, 181, 183, 184, 189, 190, 196, 199, 200, 205, 208, 212, 213, 218, 227, 242, 243, 247, 248, 250, 255, 258, 261, 267, 268, 270, 271, 276, 281, 282, 283, 292, 293, 299, 302, 305, 307, 308, 320, 321, 328, 329, 332, 333, 337, 340, 341, 344, 348, 352, 353, 356, 358, 359, 362, 369, 376, 384, 388, 394, 397, 399, 400, 403, 405, 410, 411, 413, 417, 421, 427, 428, 430, 432, 436, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "already_report": 241, "also": [5, 7, 11, 13, 23, 26, 28, 31, 33, 34, 42, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 132, 133, 137, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 213, 214, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 234, 235, 241, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 302, 305, 308, 309, 311, 313, 314, 319, 321, 322, 324, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 358, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "alt": [177, 178, 240, 247, 376, 462, 483], "alt_digit": 266, "altchar": 143, "alter": [7, 22, 42, 85, 153, 186, 208, 243, 247, 248, 262, 268, 272, 299, 324, 344, 345, 384, 426, 428, 432, 462, 466, 475, 477, 479, 480, 481, 482, 483], "alter_si": 324, "altern": [0, 18, 23, 31, 33, 45, 63, 68, 73, 78, 79, 84, 85, 93, 95, 106, 109, 110, 112, 120, 132, 137, 138, 139, 158, 161, 167, 173, 176, 177, 178, 181, 186, 193, 196, 199, 200, 205, 211, 214, 215, 218, 221, 225, 228, 242, 251, 261, 267, 268, 269, 272, 283, 292, 293, 295, 297, 299, 314, 324, 332, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 358, 359, 365, 369, 375, 376, 381, 384, 386, 388, 394, 399, 400, 405, 407, 425, 426, 430, 431, 432, 433, 455, 458, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 477, 478, 479, 480, 481, 482, 483], "although": [23, 25, 27, 42, 63, 72, 85, 94, 101, 102, 103, 139, 158, 176, 181, 183, 190, 193, 196, 197, 200, 205, 206, 248, 255, 258, 267, 271, 281, 283, 292, 293, 295, 299, 307, 319, 345, 352, 355, 358, 366, 375, 412, 414, 415, 416, 425, 427, 428, 430, 432, 434, 436, 455, 461, 462, 474, 477, 478, 479, 483], "alti": 465, "altinstal": [210, 456, 460, 469, 475, 477], "altogeth": [101, 102, 151, 314, 422, 428, 475], "altsep": [231, 247, 293, 296, 473, 483], "altzon": [183, 366], "alum": 426, "alumni": 426, "alv": 476, "alwai": 483, "alway": [5, 7, 9, 11, 13, 17, 23, 25, 31, 33, 34, 37, 39, 42, 43, 45, 47, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 73, 75, 76, 79, 85, 92, 93, 94, 95, 96, 100, 101, 102, 106, 110, 112, 115, 120, 133, 139, 141, 144, 146, 149, 151, 157, 158, 163, 167, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 206, 207, 208, 214, 216, 221, 226, 230, 234, 235, 242, 244, 245, 247, 248, 250, 251, 255, 257, 258, 259, 262, 266, 267, 269, 270, 271, 272, 275, 283, 292, 293, 295, 299, 307, 309, 319, 324, 330, 331, 333, 334, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 358, 362, 364, 365, 366, 369, 376, 377, 384, 386, 388, 394, 395, 400, 405, 410, 413, 415, 417, 422, 425, 427, 428, 429, 430, 432, 435, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "always_eq": 362, "always_iter": 251, "always_typed_act": 292, "am": [101, 102, 103, 183, 266, 299, 366, 434], "am_ait": 63, "am_anext": 63, "am_await": 63, "am_send": 63, "amauri": [468, 469, 471, 475, 483], "amax": 427, "amaz": [193, 464], "ambassador": 481, "amber": 483, "ambigu": [11, 89, 95, 103, 106, 120, 183, 259, 292, 297, 319, 344, 425, 427, 430, 434, 435, 462, 468, 474, 477, 479, 480, 481, 482, 483], "ambigui": 483, "ambiguousoptionerror": 292, "ambiti": 466, "ambv": 475, "amd": 478, "amd64": [107, 303, 347, 355, 483], "amdk6": 303, "ame": [449, 479], "amend": [476, 483], "america": [183, 425, 426, 469, 482], "american": [92, 183], "amessag": 201, "amet": 149, "amin": 483, "amit": [479, 483], "amk": [106, 319, 465, 468, 469], "ammar": [473, 479, 480, 481, 483], "amoeba": 80, "among": [63, 103, 141, 176, 181, 190, 193, 271, 283, 284, 293, 300, 328, 352, 358, 366, 369, 375, 388, 428, 461, 475, 481, 483], "amongst": [341, 399], "amort": 261, "amount": [33, 45, 73, 76, 84, 85, 95, 133, 139, 177, 186, 235, 258, 259, 270, 283, 288, 292, 293, 295, 299, 305, 307, 314, 322, 330, 332, 333, 337, 342, 344, 364, 365, 366, 369, 376, 384, 395, 411, 463, 466, 468, 475, 477, 478, 479, 480, 482, 483], "amp": [417, 475], "amper": 377, "amperequ": 377, "ampersand": 469, "amplif": 314, "amplifi": 186, "amplitud": 468, "amsterdam": [33, 366, 426], "amt": 242, "amx_til": 483, "an": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 74, 75, 76, 77, 78, 80, 89, 91, 92, 94, 95, 96, 99, 100, 101, 103, 105, 106, 107, 110, 112, 113, 114, 115, 117, 120, 128, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 164, 166, 167, 170, 173, 176, 177, 178, 179, 181, 182, 184, 186, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 280, 281, 283, 284, 285, 287, 288, 290, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 398, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 449, 451, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "an_absolute_path": 296, "an_error": 381, "an_int": 167, "an_item_is_avail": 365, "anaconda": 461, "analog": [28, 64, 75, 85, 96, 102, 186, 255, 267, 268, 275, 283, 299, 364, 384, 428, 430, 432, 464, 466, 467, 469, 475, 477, 481, 483], "analogu": [85, 283], "analys": 191, "analysi": [7, 33, 68, 106, 152, 154, 190, 264, 279, 308, 331, 386, 430, 434, 435, 436, 467, 476, 478, 483], "analyz": [279, 299, 319, 331, 341, 382, 386, 426, 435, 467, 468, 469, 475, 483], "analyze_dxp": 483, "anand": [469, 475], "ananthakrishnan": 482, "anatoli": [469, 483], "ancbufs": 337, "ancdata": 337, "ancestor": [101, 102, 103, 177, 267, 268, 283, 296, 376, 389, 413, 428, 465, 483], "ancestr": 483, "ancestri": 463, "anchor": [250, 252, 296, 354, 369, 376, 469, 474, 477, 483], "anchorag": 95, "ancient": [358, 467, 483], "ancillari": [68, 315, 337, 483], "and": [2, 9, 10, 11, 13, 16, 17, 18, 22, 24, 26, 27, 28, 30, 31, 32, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 60, 61, 63, 65, 66, 67, 68, 74, 78, 80, 84, 87, 89, 91, 97, 98, 99, 101, 103, 105, 107, 112, 113, 114, 115, 117, 118, 119, 122, 124, 126, 129, 130, 134, 135, 137, 138, 139, 141, 144, 145, 146, 147, 149, 152, 153, 154, 155, 157, 159, 160, 163, 164, 166, 167, 170, 173, 175, 177, 178, 179, 181, 182, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 228, 231, 232, 233, 234, 235, 236, 242, 244, 245, 246, 248, 249, 251, 253, 254, 256, 257, 258, 261, 264, 265, 267, 269, 271, 272, 273, 276, 278, 279, 280, 281, 282, 284, 285, 287, 288, 289, 290, 291, 295, 296, 297, 298, 301, 302, 303, 304, 305, 307, 309, 311, 312, 313, 314, 315, 318, 320, 321, 322, 323, 324, 325, 326, 329, 330, 331, 334, 335, 336, 338, 339, 342, 343, 345, 346, 348, 352, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 368, 371, 374, 375, 376, 377, 378, 380, 381, 383, 387, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 412, 414, 415, 416, 417, 420, 421, 422, 423, 426, 427, 431, 433, 434, 436, 438, 441, 442, 443, 446, 449, 451, 453, 455, 457, 458, 459, 472, 473, 484], "and_": [95, 291], "and_expr": 430, "and_test": 430, "ander": [469, 472, 480, 483], "andersen": 483, "anderson": 479, "andersson": 483, "andi": [468, 471, 483], "andr": [109, 230, 340, 462, 463, 464, 465, 467, 483], "andra": 483, "andrad": 483, "andrea": 483, "andrei": [473, 483], "andress": 475, "andrew": [108, 109, 177, 426, 462, 464, 465, 466, 467, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483], "andrey": 483, "andrich": 462, "andriy": 483, "android": [34, 64, 87, 266, 303, 352, 362, 479, 480, 481, 483], "android_api_level": 483, "anech": [478, 483], "anew": [384, 432, 482, 483], "anext": [225, 472, 483], "anext_await": 483, "angelico": [478, 479, 483], "angl": [63, 106, 144, 158, 209, 225, 275, 384, 468, 469, 483], "angular": [68, 290, 434], "ani": [5, 7, 9, 11, 13, 22, 23, 24, 27, 28, 31, 33, 34, 35, 37, 39, 42, 43, 45, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 115, 116, 117, 120, 132, 133, 135, 136, 137, 138, 139, 141, 144, 149, 151, 152, 155, 157, 158, 159, 163, 167, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 192, 193, 194, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 218, 220, 221, 225, 226, 230, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 283, 288, 291, 292, 293, 295, 297, 299, 302, 305, 308, 309, 313, 314, 315, 316, 319, 320, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 353, 354, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 388, 390, 394, 395, 399, 400, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 446, 450, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "anim": [68, 94, 222, 230, 376, 446, 468, 478], "anint": 304, "anish": 483, "ann": 88, "ann1": 386, "anna": [481, 482], "annassign": 122, "annex": [275, 387, 435, 468], "anno": 255, "annot": [27, 68, 85, 87, 97, 113, 122, 181, 191, 226, 248, 254, 255, 266, 300, 351, 362, 380, 386, 402, 426, 427, 428, 430, 431, 445, 470, 472, 473, 474, 475, 476, 478, 481, 482, 483], "annotate_field": 122, "annotated_assignment_stmt": 436, "annotated_rh": 431, "announc": [34, 80, 109, 293, 476], "annoy": [92, 109, 151, 267, 462, 464, 465, 468, 470, 476, 481, 483], "annual": [261, 482], "anod": 212, "anomal": 362, "anomali": 186, "anonym": [95, 176, 223, 268, 278, 293, 384, 427, 430, 462, 475, 483], "anoth": [5, 7, 22, 23, 31, 33, 42, 58, 63, 64, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 100, 101, 102, 106, 108, 109, 110, 112, 115, 120, 125, 132, 133, 139, 144, 151, 155, 158, 163, 167, 169, 173, 176, 177, 181, 183, 186, 193, 194, 196, 203, 213, 215, 221, 225, 226, 230, 235, 243, 245, 247, 250, 255, 261, 262, 267, 268, 270, 271, 278, 283, 287, 288, 292, 293, 297, 299, 301, 308, 309, 311, 314, 319, 328, 332, 333, 338, 340, 341, 344, 347, 348, 352, 353, 354, 355, 365, 369, 375, 376, 378, 380, 384, 386, 388, 389, 394, 395, 399, 405, 408, 410, 411, 413, 414, 422, 425, 427, 428, 429, 430, 432, 436, 443, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 478, 479, 481, 482, 483], "another_config": 167, "another_coro": 139, "another_extens": 167, "another_funct": 381, "another_sl": 284, "another_way": 400, "another_year": 183, "anotherkey": 167, "anotherstr": 304, "anothertyp": 386, "anothervalu": 410, "ans": 200, "ansi": [42, 68, 87, 120, 145, 176, 266, 293, 352, 366, 461, 462, 474, 476, 479, 481, 483], "ansi_x3": 34, "answer": [85, 89, 93, 94, 133, 193, 226, 235, 268, 271, 308, 345, 366, 442, 446, 462, 466, 470, 483], "answer_challeng": 283, "ant": [94, 149], "anthon": 483, "anthoni": [464, 466, 467, 480, 481, 482, 483], "anti": [376, 384, 390, 483], "anticip": [474, 479, 483], "anticipate_failur": 362, "antigrav": 483, "antilink": 223, "antivirus": [247, 362], "antoin": [296, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "anton": 483, "antoni": [473, 483], "antonio": 475, "antti": 467, "any_contigu": 255, "any_ord": [389, 390], "anycast": 259, "anydbm": [469, 470], "anymor": [7, 11, 31, 33, 63, 64, 85, 133, 144, 283, 293, 297, 337, 352, 469, 470, 474, 475, 476, 481, 483], "anyon": [76, 341, 355, 362, 426, 463, 469, 477], "anyset": 55, "anystr": 386, "anyth": [5, 28, 41, 63, 72, 73, 76, 85, 92, 95, 101, 102, 106, 109, 120, 137, 151, 176, 177, 178, 181, 183, 186, 193, 196, 203, 247, 248, 257, 258, 267, 269, 283, 292, 297, 301, 319, 323, 330, 334, 335, 341, 345, 348, 352, 353, 362, 365, 369, 376, 384, 386, 394, 405, 413, 421, 427, 428, 430, 432, 441, 461, 463, 464, 467, 468, 476, 477, 481, 483], "anytim": [34, 151, 344, 369], "anyway": [63, 76, 176, 243, 247, 259, 388, 463, 464, 474, 483], "anywher": [7, 85, 151, 186, 190, 247, 251, 261, 268, 292, 319, 352, 378, 386, 394, 415, 425, 429, 430, 432, 470, 482, 483], "ao": 359, "aodlambelk": 319, "aon": 384, "ap": 102, "apach": [283, 341, 419, 426, 453, 462, 479, 483], "apache2": 296, "apart": [59, 76, 95, 106, 167, 190, 283, 292, 302, 430, 435, 461, 465, 469, 471], "ape": 190, "aperiod": 384, "apf": 483, "api": [2, 7, 11, 13, 15, 16, 17, 20, 22, 23, 24, 26, 27, 28, 35, 38, 39, 45, 46, 48, 51, 55, 58, 59, 61, 63, 64, 65, 68, 72, 74, 75, 76, 79, 84, 87, 88, 91, 92, 97, 100, 101, 102, 104, 107, 108, 109, 110, 112, 120, 125, 127, 128, 129, 132, 133, 136, 137, 139, 140, 142, 159, 161, 164, 169, 170, 175, 176, 177, 185, 187, 188, 191, 192, 194, 195, 197, 198, 201, 202, 203, 205, 206, 208, 209, 211, 217, 223, 228, 235, 236, 246, 250, 254, 255, 257, 258, 259, 262, 267, 268, 269, 271, 273, 280, 281, 282, 283, 285, 293, 294, 295, 298, 302, 304, 309, 318, 319, 320, 332, 337, 341, 342, 345, 352, 353, 355, 357, 360, 362, 365, 369, 379, 386, 388, 389, 390, 394, 395, 400, 405, 406, 407, 409, 411, 414, 415, 419, 420, 429, 430, 432, 433, 435, 436, 440, 441, 445, 451, 461, 462, 463, 464, 484], "api_vers": [352, 450, 465], "apilevel": 340, "apitest": 483, "apl": [261, 471, 475], "apolici": 208, "apop": 305, "apostroph": [344, 471], "app": [68, 74, 102, 247, 269, 352, 369, 399, 407, 459, 461, 468, 469, 475, 483], "app1": 102, "app2": 102, "appar": [73, 92, 151, 333, 408, 462, 466, 483], "appdata": [334, 461, 468], "appear": [25, 33, 34, 45, 58, 59, 66, 68, 75, 76, 84, 92, 94, 95, 99, 101, 102, 106, 112, 120, 122, 133, 151, 158, 163, 167, 176, 177, 181, 186, 190, 191, 193, 196, 199, 202, 203, 205, 222, 225, 230, 235, 247, 248, 250, 255, 259, 266, 268, 269, 271, 272, 281, 283, 293, 297, 308, 314, 319, 331, 333, 335, 337, 340, 344, 345, 358, 364, 369, 376, 385, 386, 395, 400, 408, 410, 413, 416, 420, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 461, 463, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 483], "appel": 190, "append": [9, 34, 38, 59, 64, 76, 78, 79, 80, 84, 85, 101, 102, 103, 107, 112, 120, 121, 134, 149, 151, 157, 158, 160, 161, 163, 176, 181, 184, 186, 189, 191, 196, 200, 202, 203, 205, 208, 225, 226, 234, 247, 248, 249, 250, 255, 258, 261, 267, 269, 270, 271, 281, 283, 284, 288, 292, 293, 297, 299, 301, 302, 309, 316, 318, 319, 320, 321, 330, 334, 337, 341, 342, 343, 344, 352, 358, 362, 378, 388, 395, 400, 408, 411, 413, 422, 427, 428, 435, 440, 441, 442, 443, 449, 450, 452, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 483], "append_const": [120, 292, 483], "append_histori": 320, "append_history_fil": [320, 478, 483], "append_nul": [269, 476], "appendchild": [410, 411, 462], "appendhtml": 102, "appendix": [103, 235, 426], "appendleft": [160, 466], "appendpath": [461, 473], "appetit": 464, "appl": [68, 93, 176, 190, 217, 247, 254, 269, 291, 347, 442, 451, 459, 465, 468, 469, 471, 479, 483], "applesingl": 468, "appleton": 483, "appletrawmain": 468, "appletrunn": 468, "appli": [13, 34, 63, 64, 73, 75, 94, 95, 96, 101, 102, 103, 112, 120, 122, 139, 141, 158, 169, 176, 177, 178, 181, 183, 186, 190, 191, 193, 205, 208, 209, 213, 220, 223, 225, 226, 230, 235, 243, 244, 245, 247, 255, 259, 261, 267, 268, 270, 271, 272, 276, 283, 292, 293, 297, 299, 308, 314, 319, 321, 322, 324, 328, 332, 337, 341, 344, 345, 348, 352, 354, 358, 362, 365, 366, 369, 376, 378, 382, 386, 387, 388, 394, 400, 411, 413, 419, 422, 426, 427, 428, 429, 430, 432, 436, 442, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 479, 480, 481, 482, 483], "applic": [31, 33, 34, 57, 63, 64, 68, 72, 73, 75, 77, 85, 95, 100, 101, 106, 108, 109, 110, 120, 133, 137, 139, 145, 151, 157, 167, 169, 177, 183, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 213, 214, 225, 226, 235, 242, 246, 261, 262, 266, 267, 268, 269, 271, 272, 276, 281, 282, 283, 292, 293, 299, 305, 308, 314, 319, 325, 331, 332, 333, 337, 340, 341, 344, 346, 348, 354, 358, 362, 364, 365, 366, 368, 369, 371, 375, 376, 382, 384, 386, 387, 388, 394, 395, 399, 400, 405, 407, 410, 411, 413, 414, 415, 416, 417, 422, 423, 425, 426, 427, 430, 434, 436, 455, 458, 459, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "application_nam": 142, "application_uri": 407, "applicationwid": 186, "apploc": 461, "apply_async": [283, 468], "apply_default": [255, 478, 483], "applyresult": 283, "appnam": [102, 269], "apport": 214, "appreci": [422, 426], "approach": [33, 68, 73, 74, 76, 79, 85, 95, 101, 102, 109, 110, 115, 151, 158, 169, 186, 190, 193, 225, 267, 283, 293, 333, 338, 340, 344, 348, 365, 369, 384, 388, 395, 413, 419, 428, 430, 461, 462, 463, 467, 468, 469, 471, 475, 476, 478, 479, 480, 483, 484], "appropi": 483, "appropri": [5, 9, 23, 31, 41, 42, 49, 54, 61, 63, 64, 68, 71, 73, 75, 76, 92, 94, 95, 96, 101, 102, 106, 110, 112, 120, 137, 139, 151, 157, 158, 177, 183, 184, 186, 193, 195, 196, 201, 202, 205, 206, 207, 208, 225, 226, 230, 235, 242, 243, 245, 248, 250, 258, 259, 266, 267, 268, 269, 271, 275, 283, 292, 293, 299, 307, 308, 314, 319, 324, 328, 333, 335, 337, 338, 341, 344, 345, 347, 348, 352, 355, 358, 365, 366, 375, 381, 384, 385, 386, 394, 395, 399, 403, 408, 410, 411, 413, 415, 421, 422, 426, 429, 430, 432, 436, 455, 461, 462, 463, 464, 465, 466, 468, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "approv": [243, 288, 307, 461, 462, 469, 483], "approx": 483, "approxim": [47, 64, 68, 85, 158, 177, 181, 186, 190, 193, 202, 213, 221, 247, 280, 283, 343, 347, 348, 362, 381, 384, 388, 428, 430, 432, 446, 461, 468, 469, 480, 483], "appspot": [469, 471, 475], "appveyor": 388, "apr": [95, 455, 464, 467], "aprano": [477, 479, 481], "april": [150, 183, 435, 448, 462, 463], "apropo": 483, "apt": [79, 96, 98, 479, 483], "aqua": [247, 459, 483], "aquamac": 459, "aquatk": 475, "aquir": 483, "ar": [355, 456, 483], "arab": [109, 158, 186, 344, 462, 469, 475], "arahesi": [469, 475, 483], "aranguren": 468, "araujo": [109, 473, 476, 477, 481, 483], "arbcd": 466, "arbitrari": [5, 13, 23, 33, 39, 42, 45, 55, 59, 61, 63, 68, 72, 74, 76, 84, 85, 94, 95, 102, 106, 109, 110, 115, 120, 133, 151, 158, 159, 169, 175, 176, 179, 183, 186, 191, 203, 208, 225, 230, 233, 234, 245, 248, 250, 251, 255, 259, 262, 267, 268, 271, 283, 287, 290, 293, 295, 297, 299, 307, 313, 319, 322, 328, 330, 333, 334, 337, 338, 339, 340, 344, 345, 352, 354, 358, 362, 365, 366, 369, 384, 386, 388, 397, 410, 413, 419, 420, 421, 428, 445, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "arbitrarili": [66, 167, 169, 191, 268, 293, 388, 395, 430, 466, 474, 481, 483], "arbitrary_str": [386, 473], "arc": [275, 384, 468, 469, 471, 475, 483], "arch": [456, 468, 483], "archi": 413, "architectur": [68, 272, 279, 303, 333, 347, 355, 368, 410, 421, 428, 456, 460, 461, 465, 466, 468, 476, 478, 481, 482, 483], "archiv": [68, 84, 102, 103, 105, 119, 192, 219, 251, 271, 342, 354, 358, 362, 399, 422, 423, 426, 451, 456, 462, 463, 467, 468, 469, 471, 474, 475, 477, 480, 481, 483, 484], "archive_nam": 332, "archivepath": 423, "arcnam": [358, 422], "ardelean": 483, "arduous": 462, "are": [5, 7, 9, 11, 13, 18, 22, 23, 25, 28, 31, 33, 34, 39, 41, 42, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 87, 89, 92, 93, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 122, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 225, 226, 227, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 287, 288, 289, 290, 293, 295, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 316, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 451, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "area": [5, 7, 42, 45, 63, 92, 94, 96, 101, 102, 109, 177, 196, 205, 225, 247, 278, 299, 322, 337, 341, 371, 376, 434, 446, 462, 467, 468, 477, 480], "area1": 102, "area2": 102, "aregtyp": 358, "aren": [76, 84, 85, 92, 93, 94, 95, 99, 106, 109, 112, 139, 167, 176, 201, 217, 255, 259, 268, 269, 292, 338, 341, 347, 352, 369, 377, 419, 462, 463, 464, 465, 466, 467, 468, 469, 476, 477, 483], "arena": [68, 431, 455, 467, 482, 483], "arepr": 321, "arflag": 355, "arfrev": [469, 475, 483], "arg": [5, 10, 20, 23, 28, 33, 34, 35, 36, 58, 59, 61, 62, 63, 64, 66, 72, 73, 75, 76, 78, 84, 85, 87, 89, 93, 94, 100, 101, 102, 112, 115, 116, 120, 122, 125, 126, 132, 137, 139, 140, 142, 144, 155, 160, 166, 169, 170, 175, 176, 177, 181, 183, 190, 191, 197, 200, 203, 205, 211, 212, 213, 215, 225, 226, 228, 232, 247, 248, 250, 253, 255, 261, 267, 268, 269, 271, 283, 284, 291, 292, 293, 297, 299, 300, 307, 308, 316, 318, 335, 344, 345, 348, 352, 355, 359, 362, 365, 376, 380, 384, 386, 388, 389, 390, 395, 399, 402, 427, 428, 431, 436, 441, 443, 448, 451, 455, 456, 462, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 478, 479, 481, 482, 483], "arg0": [98, 293, 353, 483], "arg1": [10, 75, 85, 95, 98, 116, 191, 225, 292, 293, 428, 464, 465, 467], "arg1typ": 386, "arg2": [10, 75, 85, 95, 98, 116, 191, 225, 292, 389, 428, 464, 465, 467], "arg2typ": 386, "arg3": [75, 85, 98, 116], "arg4": 98, "arg_format": 79, "arg_lin": 120, "arg_nam": 345, "arg_ti": 431, "argc": [33, 34, 66, 72, 73, 191, 483], "argcount": [13, 66, 142, 385, 481], "arginfo": 255, "arglist": 73, "argn": 225, "argpars": [68, 85, 97, 102, 118, 160, 190, 200, 228, 254, 292, 309, 399, 451, 474, 483, 484], "argrepr": 191, "args_from_interpreter_flag": 362, "argtyp": [122, 176, 483], "argu": [103, 462, 464, 469], "arguabl": [85, 341], "argument": [7, 9, 11, 13, 22, 23, 24, 25, 28, 31, 33, 34, 35, 37, 39, 42, 47, 49, 56, 58, 59, 60, 61, 63, 64, 65, 66, 68, 72, 73, 75, 76, 78, 79, 84, 87, 89, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 106, 108, 109, 110, 112, 114, 115, 117, 118, 122, 128, 133, 135, 136, 137, 139, 141, 142, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 164, 167, 169, 170, 173, 177, 178, 181, 183, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 282, 283, 287, 288, 295, 297, 299, 301, 302, 304, 307, 308, 311, 313, 314, 315, 319, 320, 321, 322, 324, 325, 326, 328, 331, 332, 333, 334, 335, 336, 337, 340, 341, 342, 344, 345, 347, 352, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 376, 378, 380, 381, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 413, 414, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 436, 440, 442, 443, 445, 446, 450, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 480, 481, 482, 483], "argument1": 87, "argument2": 87, "argument_default": [68, 118], "argument_list": [144, 427, 430], "argumentclin": 483, "argumentdefaultshelpformatt": [102, 120, 483], "argumenterror": [120, 176, 483], "argumentn": 87, "argumentpars": [68, 89, 102, 118, 160, 190, 200, 228, 309, 399, 451, 469, 474, 475, 478, 480, 483], "arguments_ti": 431, "argumenttypeerror": 120, "argv": [33, 34, 35, 66, 68, 72, 73, 102, 114, 118, 126, 136, 142, 188, 190, 193, 218, 228, 247, 292, 293, 297, 309, 324, 338, 342, 352, 356, 369, 388, 407, 443, 448, 450, 451, 455, 465, 468, 469, 470, 475, 480, 481, 483], "argv0": 369, "argval": [191, 362], "argvemul": 468, "ari": 483, "arial": 384, "ariel": 477, "aris": [96, 186, 258, 267, 268, 299, 385, 426, 430, 464, 466, 475, 481, 483], "arithmet": [68, 183, 186, 213, 221, 225, 256, 290, 319, 344, 352, 419, 425, 427, 428, 431, 433, 451, 465, 466, 467, 475, 476, 478, 481, 483], "arithmeticerror": [23, 186, 213, 450], "ariti": 108, "arizona": [464, 465], "arka": 483, "arm": [107, 478, 483], "arm32": 483, "arm64": [176, 481, 482, 483], "armin": [466, 467, 468, 469, 471, 475, 476, 477, 483], "armor": [196, 205], "armstrong": 483, "armv7": 483, "arnaud": [466, 476], "arnon": [478, 483], "aros": 95, "around": [7, 23, 25, 31, 33, 43, 59, 72, 73, 76, 79, 95, 98, 100, 102, 114, 120, 139, 141, 148, 152, 155, 167, 169, 177, 183, 186, 191, 193, 206, 215, 218, 221, 226, 247, 250, 255, 261, 265, 269, 275, 281, 283, 287, 292, 293, 297, 302, 319, 337, 341, 343, 352, 358, 362, 369, 376, 381, 384, 386, 388, 427, 428, 431, 442, 443, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 480, 481, 483], "arowski": 469, "arp": [337, 483], "arpa": [259, 359, 478], "arr": [176, 283, 444], "arr1": 283, "arr2": 283, "arrang": [84, 95, 101, 102, 108, 132, 133, 139, 193, 236, 255, 268, 283, 341, 365, 369, 375, 376, 483], "array": [2, 5, 9, 10, 16, 31, 39, 45, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 84, 87, 93, 100, 102, 117, 118, 142, 158, 178, 182, 215, 254, 279, 283, 284, 285, 287, 293, 299, 309, 337, 344, 347, 361, 379, 381, 385, 386, 408, 419, 427, 428, 442, 452, 465, 466, 467, 468, 469, 470, 475, 478, 480, 482, 483], "array2": 386, "array_buffer_getbuf": 483, "array_inplace_repeat": 483, "arraydesc": 176, "arrays": 340, "arriv": [23, 115, 193, 243, 245, 283, 318, 333, 338, 341, 366, 442, 462], "arrival_tim": 318, "arrow": [177, 247, 297, 375, 376, 384, 443], "art": [153, 154, 160, 193], "art_num": 288, "arthur": [167, 344, 481, 483], "articl": [95, 109, 226, 235, 261, 271, 288, 384, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "article_numb": 288, "artifact": [250, 252, 253, 295, 476, 483], "artifici": [176, 353, 413, 428, 474, 477, 483], "artificil": 483, "artist": 93, "arvin": 468, "as": [5, 6, 7, 9, 11, 13, 17, 18, 20, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 100, 103, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 146, 149, 151, 152, 155, 157, 158, 159, 160, 161, 163, 166, 167, 173, 175, 176, 177, 178, 179, 181, 183, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 289, 292, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 429, 430, 431, 432, 434, 435, 436, 438, 441, 443, 446, 450, 451, 452, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "as_byt": [196, 200, 201, 205, 208, 251, 477], "as_complet": [124, 129, 139, 166, 474, 481, 483], "as_complex": 262, "as_fil": [250, 252, 253, 474, 483], "as_integer_ratio": [186, 221, 344, 444, 468, 479, 481, 483], "as_pattern": [427, 431], "as_posix": 296, "as_str": [196, 201, 202, 205, 477, 483], "as_tupl": [186, 468], "as_uri": 296, "asaf": 483, "asan": [456, 483], "ascend": [191, 308, 344], "ascension": 474, "ascent": 372, "ascher": 463, "ascii": [16, 23, 31, 34, 42, 49, 58, 68, 71, 92, 101, 102, 106, 107, 109, 110, 118, 120, 122, 133, 137, 143, 145, 151, 158, 176, 177, 183, 191, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 214, 225, 230, 237, 248, 254, 256, 258, 262, 266, 272, 282, 285, 286, 288, 293, 299, 314, 317, 319, 331, 335, 338, 340, 341, 344, 345, 346, 349, 358, 359, 362, 395, 397, 413, 419, 422, 426, 434, 435, 441, 446, 448, 450, 455, 462, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "ascii85": [143, 477, 483], "ascii_lett": [244, 326, 345, 464, 470], "ascii_lowercas": [319, 345, 464], "ascii_uppercas": [345, 464], "asctim": [101, 102, 267, 268, 309, 366, 463, 469, 475], "asdict": [181, 483], "asdl": [122, 467, 472, 482, 483], "asdl_alias_seq": 431, "asdl_arg_seq": 431, "asdl_comprehension_seq": 431, "asdl_excepthandler_seq": 431, "asdl_expr_seq": 431, "asdl_identifier_seq": 431, "asdl_int_seq": 431, "asdl_keyword_seq": 431, "asdl_match_case_seq": 431, "asdl_pattern_seq": 431, "asdl_seq": 431, "asdl_seq_get": 431, "asdl_seq_len": 431, "asdl_stmt_seq": 431, "asdl_type_param_seq": 431, "asdl_withitem_seq": 431, "aseert": [389, 483], "asend": [161, 430, 482, 483], "asert": [389, 483], "ashish": 483, "ashley": 479, "ashley_": 452, "ashley_0": 452, "ashley_1": 452, "ashley_2": 452, "ashwin": 483, "asi": 483, "asia": 425, "asian": [158, 387, 466], "asid": [33, 183, 225, 247, 308, 358, 428, 430, 475, 480, 481], "asimov": 319, "asin": [154, 275], "asinh": [154, 275, 468, 483], "ask": [42, 87, 92, 102, 161, 194, 233, 235, 243, 247, 258, 269, 292, 297, 332, 339, 341, 344, 386, 395, 412, 413, 414, 422, 430, 432, 436, 461, 466, 467, 468, 469, 470, 483], "ask_exit": 126, "ask_ok": 441, "askar": [473, 479, 480, 481, 483], "askcolor": 370, "askdirectori": 189, "askfloat": 189, "askinteg": [189, 483], "askokcancel": 373, "askopenfil": 189, "askopenfilenam": 189, "askquest": 373, "askretrycancel": 373, "asksaveasfil": 189, "asksaveasfilenam": 189, "askstr": 189, "askyesno": 373, "askyesnocancel": 373, "asleep": 366, "asn": 341, "asnam": 122, "asnebc": 319, "asparagus": 200, "asparagus_cid": 200, "aspect": [42, 72, 73, 94, 102, 106, 110, 181, 183, 193, 250, 268, 293, 335, 394, 428, 475, 479], "asperg": 200, "aspinal": 480, "aspn": [110, 275], "assch": 479, "assembl": [85, 95, 109, 191, 282, 340, 348, 369, 428, 434, 467, 483], "assert": [34, 35, 49, 66, 68, 96, 102, 108, 112, 116, 122, 139, 168, 181, 183, 184, 188, 191, 193, 213, 225, 228, 255, 283, 292, 297, 299, 319, 340, 344, 362, 385, 386, 388, 389, 390, 400, 402, 411, 425, 426, 427, 430, 431, 433, 435, 450, 455, 456, 465, 466, 468, 471, 475, 477, 478, 481, 482, 483], "assert_": [112, 473, 474, 475, 483], "assert_any_await": 389, "assert_any_cal": 389, "assert_await": 389, "assert_awaited_onc": [389, 390], "assert_awaited_once_with": 389, "assert_awaited_with": 389, "assert_cal": [389, 479, 483], "assert_called_onc": [389, 479, 483], "assert_called_once_with": [389, 390, 483], "assert_called_with": [389, 390, 483], "assert_has_await": [389, 483], "assert_has_cal": [389, 390, 483], "assert_nev": [386, 473, 483], "assert_not_await": 389, "assert_not_cal": [389, 478, 483], "assert_python": 362, "assert_python_failur": [362, 483], "assert_python_ok": [362, 483], "assert_stmt": [431, 436], "assert_typ": [386, 473, 483], "assert_used_once_with": 389, "assert_used_with": 389, "assertalmostequ": [112, 388, 469, 473, 474, 475, 483], "assertcountequ": [388, 475], "assertdictcontainssubset": [469, 471, 474, 475, 483], "assertdictequ": [388, 469, 471], "assertequ": [112, 362, 388, 389, 390, 451, 469, 473, 474, 475, 477, 481, 483], "assertfals": [112, 388, 469, 473, 474], "assertgreat": [388, 469], "assertgreaterequ": [388, 469], "asserti": [388, 390, 469], "assertin": [388, 469], "assertinbytecod": 362, "assertionerror": [23, 191, 213, 283, 362, 388, 389, 390, 407, 436, 450, 473, 482, 483], "assertisinst": [388, 469], "assertisnon": [388, 469, 471], "assertisnot": [388, 469], "assertisnotnon": [388, 469, 471], "assertitemsequ": 469, "assertless": [388, 469], "assertlessequ": [388, 469], "assertlistequ": [388, 469, 471, 483], "assertlog": [388, 472, 477, 483], "assertmultilineequ": [388, 469], "assertnolog": [388, 472, 483], "assertnotalmostequ": [112, 388, 469, 473, 474, 475, 483], "assertnotequ": [112, 388, 473, 474, 475], "assertnotin": [388, 469], "assertnotinbytecod": [362, 483], "assertnotisinst": [388, 469], "assertnotregex": [388, 473, 474], "assertnotregexpmatch": [469, 473, 474], "assertrais": [112, 388, 451, 469, 471, 473, 474, 476, 483], "assertraisesregex": [388, 473, 474, 476, 483], "assertraisesregexp": [388, 469, 471, 473, 474], "assertregex": [388, 473, 474, 475, 483], "assertregexpmatch": [388, 469, 473, 474, 475], "assertsameel": 476, "assertsequenceequ": [388, 469, 471, 483], "assertsetequ": [388, 469, 471], "asserttru": [112, 388, 469, 473, 474, 475], "asserttupleequ": [388, 469, 471, 483], "assertwarn": [388, 475, 476, 483], "assertwarnsregex": [388, 475, 476, 483], "assertxyy": 388, "asset": 483, "assign": [54, 61, 63, 68, 73, 75, 76, 79, 85, 87, 93, 94, 95, 109, 112, 115, 120, 122, 139, 158, 167, 170, 176, 177, 181, 186, 191, 196, 202, 203, 205, 208, 212, 225, 226, 243, 250, 267, 271, 278, 283, 292, 293, 296, 297, 299, 314, 319, 330, 331, 337, 340, 341, 344, 347, 351, 352, 362, 364, 365, 376, 381, 386, 387, 388, 400, 411, 413, 422, 425, 427, 428, 429, 431, 432, 433, 435, 440, 441, 442, 449, 456, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 476, 478, 479, 480, 482, 483, 484], "assignment_express": [427, 430, 431], "assignment_stmt": 436, "assist": [95, 109, 264, 278, 385, 399, 426, 428, 464, 465, 466, 467, 468, 469, 480, 483], "assoc": 328, "associ": [5, 23, 33, 58, 61, 63, 66, 73, 75, 76, 84, 87, 92, 94, 99, 100, 101, 102, 106, 110, 115, 120, 135, 139, 144, 151, 158, 175, 177, 179, 186, 191, 193, 194, 196, 201, 203, 213, 230, 242, 245, 247, 248, 250, 252, 255, 267, 276, 283, 292, 293, 295, 297, 299, 314, 328, 329, 337, 344, 346, 348, 353, 358, 362, 365, 369, 375, 376, 386, 388, 402, 403, 405, 406, 410, 413, 415, 416, 419, 420, 422, 423, 426, 427, 428, 429, 431, 432, 436, 442, 454, 461, 469, 475, 476, 477, 480, 481, 482, 483], "associatefil": 461, "assoclen": 337, "assort": [63, 68, 74, 193, 375, 483], "assret": [389, 483], "assret_called_with": 389, "assrt": [389, 483], "assum": [5, 7, 33, 34, 41, 45, 54, 56, 60, 63, 72, 73, 76, 84, 85, 89, 95, 96, 99, 100, 101, 102, 106, 109, 120, 151, 153, 158, 161, 167, 169, 176, 183, 196, 199, 201, 202, 203, 209, 225, 230, 235, 242, 243, 247, 248, 249, 252, 266, 267, 268, 283, 288, 292, 293, 297, 302, 311, 313, 334, 337, 340, 341, 343, 344, 345, 347, 348, 358, 364, 366, 376, 386, 388, 395, 399, 408, 416, 421, 426, 428, 430, 432, 436, 461, 462, 463, 464, 467, 468, 470, 474, 476, 477, 478, 479, 480, 483], "assumpt": [33, 63, 73, 76, 100, 161, 181, 183, 343, 464, 468, 475, 479, 480, 483], "assur": [39, 76, 226, 283, 378, 428, 469, 471, 475, 483], "ast": [68, 156, 184, 225, 254, 264, 351, 377, 378, 467, 472, 473, 474, 476, 480, 483], "ast_for_dotted_nam": 483, "ast_obj": 122, "ast_unpars": 483, "astamp": 384, "asterisk": [64, 248, 344, 386, 406, 413, 427, 430, 436, 480], "asthana": 483, "astimezon": [183, 190, 425, 476, 479, 481, 483], "astr": 304, "astral": 483, "asttoken": 122, "astupl": [181, 483], "astz": 183, "asymmetr": 158, "asymmetri": 428, "asymptot": 483, "async": [19, 23, 26, 32, 50, 68, 87, 102, 123, 124, 125, 126, 129, 133, 134, 135, 136, 137, 138, 139, 169, 170, 191, 225, 226, 255, 264, 312, 341, 377, 385, 386, 388, 389, 390, 428, 430, 431, 435, 472, 473, 474, 479, 480, 481, 482, 483], "async_chat": [477, 483], "async_foo": 389, "async_for_stmt": 427, "async_func": 389, "async_funcdef": 427, "async_gen_wrap": [473, 483], "async_generator_athrow": 483, "async_iter": 225, "async_queri": 386, "async_with_stmt": 427, "asyncconnect": [388, 481], "asynccontextdecor": [169, 472, 483], "asynccontextmanag": [169, 386, 390, 428, 480, 483], "asyncexitstack": [169, 473, 480, 481, 483], "asyncfor": [122, 483], "asyncfunctiondef": [122, 483], "asyncgen": 126, "asyncgen_hook": 352, "asyncgener": [161, 344, 386, 479, 483], "asyncgeneratortyp": 385, "asynchat": [68, 426, 468, 473, 477, 483], "asynchron": [32, 63, 68, 87, 125, 130, 133, 135, 136, 137, 139, 161, 166, 169, 170, 187, 191, 213, 225, 256, 267, 283, 315, 337, 341, 348, 352, 385, 388, 390, 406, 427, 436, 469, 473, 474, 475, 476, 477, 478, 480, 481, 483], "asynci": 483, "asyncio": [68, 84, 101, 102, 114, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 156, 164, 169, 188, 254, 260, 267, 283, 341, 348, 352, 365, 389, 390, 428, 430, 455, 483], "asynciomodul": 483, "asynciter": [36, 49, 161, 344, 386, 478, 483], "asyncmock": [389, 390, 481, 483], "asyncmockmixin": 389, "asyncor": [68, 426, 466, 468, 473, 483], "asyncresult": 283, "asyncsetup": [388, 481], "asyncteardown": [388, 481], "asyncwith": [122, 483], "asynczip": 452, "at": [5, 7, 9, 13, 22, 23, 25, 27, 28, 31, 33, 34, 41, 42, 43, 45, 49, 58, 59, 60, 61, 63, 64, 66, 71, 72, 73, 75, 76, 77, 79, 85, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 115, 117, 120, 125, 126, 129, 133, 135, 136, 138, 139, 141, 143, 144, 146, 149, 151, 153, 155, 158, 160, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 186, 188, 190, 191, 192, 193, 194, 196, 200, 201, 202, 203, 207, 208, 213, 214, 215, 218, 221, 223, 225, 226, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 275, 278, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 308, 309, 311, 313, 314, 318, 319, 320, 322, 324, 328, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 386, 388, 389, 390, 394, 395, 400, 402, 405, 406, 408, 410, 411, 412, 413, 415, 416, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "at_end_lin": 279, "at_eof": 136, "at_minsigstksz": 483, "atan": [154, 275, 468], "atan2": [154, 275, 483], "atanh": [154, 275, 468, 483], "atequ": 377, "atexit": [68, 78, 84, 112, 166, 254, 267, 315, 320, 402, 462, 466, 472, 483], "athen": 319, "atheo": [465, 483], "athirdstr": 304, "athrow": [161, 430, 482, 483], "athukorala": 483, "atim": 293, "atime_n": 293, "atlas": 319, "atle": [467, 483], "atof": [266, 466, 467], "atoi": [72, 266], "atom": [28, 68, 84, 227, 283, 293, 316, 319, 337, 344, 365, 366, 431, 433, 469, 470, 473, 476, 483], "atomic_uintptr_t": 483, "atop": [341, 467, 468], "atruevalu": 304, "atsuo": 477, "attach": [13, 33, 45, 72, 100, 101, 102, 120, 132, 183, 193, 194, 196, 197, 199, 203, 205, 206, 207, 212, 247, 267, 268, 284, 328, 329, 340, 352, 369, 375, 381, 388, 407, 425, 426, 427, 428, 436, 463, 465, 469, 470, 476, 479, 481, 483], "attach_loop": [132, 483], "attach_mock": [389, 390, 483], "attack": [109, 173, 225, 235, 244, 262, 268, 332, 340, 344, 358, 409, 467, 468, 469, 472, 473, 476, 477, 478, 479, 480, 481, 482, 483], "attain": 225, "attali": 483, "attempt": [5, 11, 23, 25, 31, 33, 47, 59, 61, 63, 67, 85, 92, 94, 96, 99, 102, 106, 109, 110, 120, 122, 133, 149, 155, 167, 169, 173, 177, 184, 186, 190, 191, 193, 194, 196, 199, 203, 205, 206, 207, 209, 212, 213, 225, 226, 242, 243, 247, 248, 250, 255, 258, 265, 266, 268, 269, 270, 271, 278, 282, 283, 293, 295, 299, 302, 305, 307, 311, 313, 314, 319, 320, 322, 325, 328, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 352, 358, 359, 362, 364, 365, 366, 386, 388, 394, 395, 410, 413, 415, 416, 417, 422, 423, 427, 428, 430, 432, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 478, 479, 480, 481, 482, 483], "atten": 450, "attent": [7, 100, 106, 177, 384, 465, 475, 477], "attim": [269, 477], "attitud": 193, "attlistdeclhandl": 314, "attnam": 314, "attorney": 319, "attr": [52, 63, 68, 79, 92, 122, 177, 191, 240, 244, 251, 255, 273, 281, 291, 292, 299, 314, 360, 362, 369, 388, 389, 413, 415, 416, 417, 427, 428, 431, 436, 462, 463, 466, 473, 476, 483], "attr_nam": [49, 362, 464], "attract": [271, 468, 470], "attrdict": [267, 483], "attrgett": [87, 95, 108, 147, 291, 466, 467, 468, 475, 478, 483], "attrib": [413, 467, 483], "attribut": [11, 22, 23, 26, 27, 31, 33, 45, 49, 50, 56, 60, 61, 63, 68, 74, 79, 87, 88, 95, 101, 103, 106, 108, 110, 112, 115, 118, 120, 122, 133, 137, 142, 144, 149, 151, 155, 158, 159, 160, 167, 174, 175, 176, 177, 181, 183, 186, 190, 191, 193, 195, 196, 197, 200, 203, 205, 207, 208, 213, 215, 216, 225, 226, 228, 233, 234, 242, 243, 244, 245, 247, 248, 250, 251, 254, 258, 259, 262, 268, 269, 270, 271, 273, 281, 283, 288, 291, 295, 298, 299, 302, 304, 305, 312, 313, 314, 315, 319, 321, 325, 328, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 345, 347, 348, 353, 358, 361, 362, 364, 365, 366, 367, 369, 371, 374, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 405, 408, 410, 411, 413, 414, 415, 417, 419, 420, 422, 423, 425, 426, 427, 429, 435, 436, 440, 442, 456, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 481, 482, 483, 484], "attribute1": 389, "attribute2": 389, "attribute_nam": 345, "attribute_nod": 410, "attributeerror": [23, 49, 58, 68, 88, 93, 102, 151, 169, 176, 181, 213, 225, 226, 250, 255, 268, 283, 293, 299, 302, 319, 333, 344, 362, 367, 385, 388, 389, 390, 410, 411, 427, 428, 430, 436, 450, 456, 462, 464, 469, 473, 475, 476, 477, 478, 480, 483], "attributenam": [11, 73], "attributeref": [430, 436], "attributesimpl": 416, "attributesn": [68, 273, 414, 415], "attributesnsimpl": 416, "attrnam": [79, 267, 410], "attroff": 177, "attron": 177, "attrs_dict": 413, "attrset": 177, "atyp": 432, "au": [68, 206, 254, 295, 336, 341, 350, 450], "au_read": 68, "au_writ": [68, 477], "auburn": 94, "aud": 483, "audibl": [102, 177], "audienc": [101, 307, 400, 434, 465, 470], "audio": [68, 117, 141, 153, 206, 336, 362, 406, 462, 483], "audio_file_encoding_adpcm_g721": 349, "audio_file_encoding_adpcm_g722": 349, "audio_file_encoding_adpcm_g723_3": 349, "audio_file_encoding_adpcm_g723_5": 349, "audio_file_encoding_alaw_8": 349, "audio_file_encoding_doubl": 349, "audio_file_encoding_float": 349, "audio_file_encoding_linear_16": 349, "audio_file_encoding_linear_24": 349, "audio_file_encoding_linear_32": 349, "audio_file_encoding_linear_8": 349, "audio_file_encoding_mulaw_8": 349, "audio_file_mag": 349, "audio_mac": 468, "audioclip": 481, "audiodev": [295, 468], "audioop": [68, 254, 350, 467, 473, 474, 482, 483], "audit": [24, 58, 59, 68, 98, 115, 121, 142, 176, 185, 227, 274, 293, 335, 352, 353, 385, 395, 450, 455, 465, 472, 483], "aug": [33, 95, 183, 423, 464, 465], "augassign": [122, 431], "augload": [482, 483], "augment": [63, 68, 85, 120, 122, 193, 268, 276, 331, 375, 428, 431, 435, 455, 475, 483, 484], "augmented_assignment_stmt": 436, "augop": 436, "augoper": 431, "augstor": [482, 483], "augtarget": 436, "augu": 149, "auguri": 465, "august": [150, 467], "augusto": 483, "augustus": 435, "aumasson": [235, 426], "auread": 450, "austin": 468, "australia": 366, "australianphilosoph": 428, "austria": 413, "auth": [223, 248, 269, 335, 341, 465, 478, 483], "auth_cram_md5": 335, "auth_handl": 395, "auth_login": [335, 483], "auth_plain": 335, "auth_siz": 235, "authent": [68, 164, 223, 235, 241, 248, 267, 269, 286, 288, 305, 335, 341, 395, 419, 424, 464, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "authenticationerror": 283, "authinfo": 288, "authkey": [283, 284, 483], "authobject": [248, 335], "author": [31, 73, 77, 95, 100, 101, 106, 110, 111, 158, 160, 193, 213, 235, 242, 251, 252, 269, 293, 307, 340, 341, 388, 394, 395, 419, 426, 453, 462, 463, 464, 465, 466, 467, 468, 469, 471, 473, 475, 477, 478, 483], "author_email": [307, 483], "authoris": 248, "authorit": [31, 110, 474, 483], "authorized_key": 332, "authorizer_callback": 340, "authorship": 426, "authpriv": 269, "authreq": 395, "authuri": 395, "auto": [33, 68, 93, 96, 110, 183, 211, 247, 320, 331, 337, 384, 389, 456, 460, 462, 469, 472, 475, 479, 480, 483], "auto_fil": 96, "auto_spec": 483, "autocommit": [68, 298, 474, 483], "autocomplet": [479, 480, 483], "autocompletewindow": 483, "autoconf": [456, 474, 483], "autodetect": [109, 304, 358, 395, 463, 467], "autoexec": 106, "autoexpand": 483, "autogil": 468, "autoincr": [376, 483], "autojunk": 190, "autom": [76, 84, 288, 365, 463, 469, 477, 481, 483], "automak": 483, "automat": [7, 23, 28, 33, 45, 55, 59, 61, 63, 68, 71, 73, 76, 84, 85, 92, 95, 96, 99, 106, 109, 112, 120, 132, 133, 139, 151, 155, 158, 161, 167, 169, 176, 177, 181, 184, 186, 187, 190, 191, 193, 196, 201, 205, 206, 208, 209, 213, 223, 225, 226, 234, 242, 243, 248, 250, 255, 266, 267, 268, 270, 271, 272, 278, 281, 283, 288, 292, 293, 297, 299, 308, 313, 320, 323, 328, 330, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 356, 358, 362, 365, 366, 368, 369, 376, 384, 386, 388, 394, 395, 405, 411, 415, 419, 422, 423, 426, 428, 429, 430, 432, 436, 446, 451, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "automata": 106, "automatrix": 426, "automount": 33, "autonam": 94, "autonom": [338, 426], "autonumb": 94, "autoproxi": 483, "autorais": [403, 467], "autorang": [367, 479, 483], "autoreconf": 456, "autosav": 247, "autospec": [389, 390, 483], "autospecc": [68, 187, 483], "autospect": 483, "autotool": [469, 478, 479], "auwrit": 450, "auxiliari": [102, 108, 261, 475, 483], "auxiliary_modul": 102, "auxv": 483, "avail": [5, 7, 11, 13, 22, 23, 25, 26, 27, 33, 34, 39, 42, 45, 55, 58, 59, 61, 64, 66, 68, 71, 72, 73, 75, 77, 84, 85, 92, 94, 96, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 133, 136, 137, 139, 151, 155, 158, 163, 167, 169, 170, 173, 176, 177, 182, 184, 186, 191, 195, 207, 210, 212, 213, 214, 215, 218, 223, 225, 226, 229, 230, 233, 235, 242, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 262, 266, 267, 268, 269, 271, 275, 276, 278, 282, 283, 284, 287, 288, 292, 293, 295, 297, 299, 304, 305, 308, 313, 314, 315, 318, 319, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 354, 356, 358, 359, 361, 362, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 385, 386, 388, 395, 399, 403, 405, 408, 410, 411, 413, 414, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "available_timezon": [425, 483], "availmask": 177, "avenu": [319, 426, 464], "averag": [93, 141, 261, 293, 308, 318, 344, 348, 376, 382, 434, 451, 470, 477, 481, 483], "average_arrival_interv": 318, "average_service_tim": 318, "averi": 480, "avg": 141, "avgpp": 141, "avi": [468, 469, 476, 479, 480, 483], "avif": 483, "avir": [472, 483], "aviv": [473, 479, 481, 483], "avoid": [23, 33, 34, 42, 61, 63, 68, 72, 73, 75, 76, 85, 92, 94, 95, 101, 103, 106, 108, 109, 120, 132, 133, 137, 138, 139, 149, 158, 160, 167, 169, 176, 177, 183, 186, 215, 225, 242, 245, 248, 255, 259, 265, 266, 268, 269, 271, 278, 283, 289, 292, 293, 299, 314, 319, 321, 332, 333, 337, 340, 342, 344, 348, 352, 358, 362, 364, 365, 366, 369, 375, 385, 388, 395, 406, 410, 411, 413, 417, 427, 428, 430, 431, 432, 435, 436, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "avoids_symlink_attack": [332, 483], "avraham": 483, "avvan": 483, "aw": [139, 483], "await": [63, 68, 87, 123, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 161, 169, 170, 188, 191, 225, 255, 264, 344, 377, 385, 386, 388, 389, 427, 429, 431, 433, 435, 462, 465, 472, 473, 479, 480, 481, 482, 483], "await_arg": 389, "await_args_list": [389, 483], "await_count": 389, "await_expr": 430, "await_primari": 431, "awaken": 365, "awar": [68, 77, 99, 100, 103, 106, 108, 139, 167, 179, 182, 194, 196, 200, 202, 203, 205, 206, 209, 226, 230, 248, 266, 272, 293, 340, 341, 345, 352, 366, 369, 400, 413, 416, 455, 456, 461, 462, 464, 465, 466, 470, 471, 474, 475, 476, 479, 480, 483], "away": [23, 27, 33, 76, 85, 95, 101, 102, 120, 177, 183, 186, 193, 247, 250, 255, 275, 283, 292, 293, 308, 319, 452, 464, 465, 470, 477, 478, 483], "awk": [439, 462], "awkward": [100, 469, 481], "awoken": 365, "awri": 365, "awrit": 483, "aws": [139, 483], "ax": 261, "ax_check_openssl": 483, "axi": [85, 275, 376, 441, 472], "axyo": 103, "ay": [261, 319], "aycock": 463, "aync": 191, "ayon": 200, "ayt": 359, "ayz": 344, "az": 95, "azur": 483, "b1": [103, 337, 384], "b10": 93, "b1000000": 483, "b1152000": 483, "b1500000": 483, "b16decod": 143, "b16encod": 143, "b1o": 394, "b2": [103, 337, 384], "b2000000": 483, "b2500000": 483, "b2a_base64": [146, 479, 483], "b2a_hex": [146, 158, 483], "b2a_hqx": [473, 482, 483], "b2a_qp": [146, 483], "b2a_uu": [146, 480, 483], "b2j": 190, "b3": 337, "b3000000": 483, "b32": 477, "b32decod": [143, 477, 483], "b32encod": 143, "b32hexdecod": [143, 472, 483], "b32hexencod": [143, 472, 483], "b3500000": 483, "b4000000": 483, "b500000": 483, "b576000": 483, "b64decod": [143, 235, 476, 483], "b64encod": [143, 235, 483], "b85decod": [143, 477], "b85encod": [143, 477, 483], "b9": 146, "b901": 146, "b901ef": 146, "b921600": 483, "b9_01ef": 146, "b_c": 470, "b_exit": 483, "b_nofallthrough": 483, "b_return": 483, "ba": [120, 255, 261, 422, 478], "babel": [89, 230], "babyl": [68, 285], "babylmessag": [68, 285], "bac": 120, "bacd": 160, "bach": 160, "bachmann": 483, "back": [7, 10, 22, 25, 28, 39, 41, 42, 58, 59, 63, 64, 73, 76, 84, 85, 95, 96, 102, 106, 108, 109, 112, 120, 128, 133, 146, 151, 155, 158, 161, 167, 169, 177, 181, 183, 186, 190, 191, 193, 194, 196, 205, 208, 215, 225, 230, 232, 235, 243, 245, 250, 258, 268, 269, 278, 282, 283, 284, 292, 293, 295, 297, 299, 312, 314, 319, 330, 337, 338, 340, 341, 342, 344, 345, 352, 358, 362, 366, 369, 377, 378, 384, 394, 395, 413, 417, 419, 420, 422, 425, 427, 428, 432, 436, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 481, 482, 483], "backend": [76, 158, 177, 184, 340, 352, 362, 390, 456], "backendprovid": 390, "background": [33, 68, 77, 92, 102, 139, 167, 169, 177, 246, 247, 269, 283, 293, 340, 348, 362, 365, 369, 375, 376, 384, 427, 428, 452, 466, 477, 483], "background_task": 139, "backgroundcolor": 384, "backgroundimag": 384, "backlog": [126, 136, 283, 337, 478, 483], "backoff": [362, 483], "backport": [68, 247, 251, 252, 314, 358, 386, 389, 413, 422, 468, 478, 479, 480, 481, 482, 483], "backrefer": [106, 319, 483], "backslash": [68, 158, 159, 193, 209, 225, 247, 258, 283, 293, 319, 348, 435, 446, 465, 466, 470, 474, 479, 480, 483], "backslashreplac": [33, 34, 109, 158, 214, 225, 258, 267, 293, 344, 352, 455, 465, 478, 480, 483], "backslashreplace_error": 158, "backspac": [92, 106, 177, 178, 247, 319, 435, 448, 483], "backtick": [112, 146, 397, 470, 480], "backtrac": [96, 483], "backtrack": [106, 319, 483], "backup": [102, 112, 218, 269, 340, 358, 468, 475, 480, 483], "backupcount": [102, 268, 269, 469], "backus": 434, "backward": [23, 24, 33, 59, 61, 64, 66, 80, 87, 101, 102, 120, 128, 144, 167, 177, 183, 191, 193, 194, 196, 205, 207, 208, 213, 228, 245, 248, 250, 255, 267, 268, 271, 293, 295, 299, 302, 308, 314, 319, 322, 332, 337, 341, 344, 348, 362, 366, 381, 384, 386, 394, 395, 397, 419, 428, 430, 432, 435, 436, 440, 461, 462, 464, 465, 467, 468, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483], "backward_target": 483, "bacon": [120, 160, 190, 250, 279, 344, 381, 395, 428], "baconhamegg": 279, "bad": [42, 68, 72, 73, 101, 110, 120, 188, 190, 193, 201, 212, 213, 235, 247, 266, 268, 271, 283, 292, 308, 333, 384, 386, 397, 422, 436, 441, 443, 464, 468, 470, 472, 477, 479, 483], "bad_cb": 386, "bad_gateway": 241, "bad_request": 241, "badaracco": [474, 483], "badarasco": 473, "badchild": 474, "badger": 120, "badgzipfil": [234, 481, 483], "badmodul": 279, "badoptionerror": 292, "badstatuslin": 242, "badzipfil": [422, 483], "baffl": 309, "bag": [160, 200, 427, 440], "baggag": 75, "bail": [35, 483], "bailey": 468, "baiter": [478, 483], "baji": 483, "bak": 218, "bake": [175, 319], "baker": 475, "bakker": [480, 483], "balanc": [106, 160, 261, 477], "balcerzak": 479, "balezin": 483, "balf": [473, 474, 483], "balhar": 482, "baller": [196, 205], "balling": 483, "balloon": 375, "ballot": 475, "balogh": [479, 483], "baltic": 158, "bam": [101, 267], "banana": [291, 344, 442, 451, 471], "band": [68, 298, 328, 483], "bandclass": 114, "bandwidth": [102, 109, 343, 441, 469, 472], "bang": 389, "bank": 468, "banner": [155, 157, 483], "banquet": 468, "bar": [28, 51, 85, 87, 94, 101, 102, 104, 106, 120, 122, 155, 167, 176, 177, 200, 228, 243, 247, 250, 262, 267, 268, 283, 288, 291, 292, 293, 294, 296, 297, 302, 304, 308, 311, 313, 334, 340, 344, 358, 362, 369, 374, 376, 385, 386, 388, 389, 390, 407, 422, 423, 425, 427, 432, 434, 435, 436, 441, 462, 468, 483], "bar_const": 362, "bar_pars": 120, "bar_test": [388, 480], "bar_var": 85, "bare": [34, 101, 102, 122, 167, 203, 292, 335, 431, 459, 461, 467, 470, 473, 481, 483], "barebon": 459, "barker": [478, 483], "barkhau": 481, "barn": [468, 480, 483], "barnert": [479, 483], "barnett": [477, 483], "barney": [472, 474, 483], "barran": 468, "barri": [230, 462, 463, 464, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "barrier": [68, 124, 164, 283, 384, 473, 475, 483], "barriertest": 474, "barry_as_flufl": 483, "bart": 481, "bartelt": 85, "barton": 483, "bas": 472, "base": [5, 18, 23, 25, 31, 33, 34, 39, 43, 45, 47, 49, 50, 61, 63, 64, 68, 73, 75, 76, 78, 84, 87, 88, 89, 92, 93, 94, 95, 98, 99, 100, 101, 103, 106, 110, 120, 122, 123, 132, 136, 139, 143, 144, 145, 146, 154, 157, 163, 167, 169, 173, 176, 181, 182, 183, 186, 187, 189, 193, 195, 197, 199, 200, 201, 202, 203, 205, 206, 208, 221, 225, 226, 234, 235, 242, 243, 245, 246, 247, 248, 251, 253, 254, 255, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 280, 281, 282, 283, 288, 292, 293, 296, 298, 299, 302, 305, 308, 312, 314, 319, 320, 321, 324, 329, 330, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 362, 365, 366, 369, 375, 376, 382, 385, 386, 387, 388, 394, 395, 398, 399, 400, 403, 407, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 433, 435, 440, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 470, 471, 472, 473, 474, 476, 477, 478, 479, 481, 482, 483, 484], "base1": [122, 440], "base16": [68, 254, 285, 466], "base2": [122, 440], "base3": 440, "base32": [68, 254, 285, 466, 472, 483], "base64": [68, 146, 156, 158, 195, 196, 197, 198, 199, 202, 203, 206, 208, 235, 248, 251, 254, 285, 317, 326, 327, 335, 341, 382, 395, 397, 419, 464, 466, 482, 483], "base64_codec": 158, "base64mim": 483, "base85": [68, 254, 285, 477, 483], "base_64": 158, "base_class": 203, "base_dir": [68, 142, 219], "base_environ": 407, "base_ev": [126, 352, 430, 483], "base_exec_prefix": [34, 334, 352, 399, 450], "base_execut": 34, "base_futur": 129, "base_nam": [142, 332], "base_prefix": [34, 230, 334, 352, 399, 450], "base_subprocess": 137, "base_url": 413, "basealia": 85, "basecflag": 456, "basecgihandl": 407, "baseclass": 78, "baseclassnam": 440, "baseconfigur": 268, "basecooki": 244, "basecppflag": 456, "basedefaulteventlooppolici": 483, "basedir": 281, "baseeventloop": [128, 483], "baseexcept": [23, 127, 139, 166, 213, 267, 352, 353, 381, 432, 436, 443, 450, 467, 468, 470, 473, 480, 481, 483], "baseexceptiongroup": [139, 169, 213, 381, 427, 473, 483], "basehandl": [68, 256, 389, 407, 483], "basehead": [203, 205], "basehttp": 245, "basehttprequesthandl": [110, 242, 245, 393, 407, 475, 476, 483], "basehttpserv": 470, "baselin": 160, "basemanag": [283, 284, 483], "basenam": [98, 102, 120, 184, 193, 292, 294, 296, 369, 375, 399, 422, 483], "baseprocess": 483, "baseprotocol": 133, "baseproxi": [283, 483], "baserequesthandl": 338, "baserotatinghandl": [68, 101, 118, 466], "baseselector": [329, 483], "baseselectoreventloop": 483, "baseserv": [338, 476, 483], "basestr": [112, 465, 470, 477], "basetestcas": 344, "basetestsuit": 388, "basetransport": [133, 136, 481], "basetwo": 226, "bash": [102, 155, 296, 331, 399, 447, 453, 483], "basi": [85, 101, 102, 158, 176, 243, 262, 267, 271, 308, 352, 353, 358, 422, 426, 432, 436, 461, 464, 465, 480, 483], "basic": [23, 33, 63, 64, 68, 73, 74, 75, 77, 84, 85, 92, 93, 95, 96, 99, 101, 102, 103, 112, 120, 135, 144, 155, 158, 160, 167, 169, 177, 183, 184, 187, 189, 190, 230, 234, 245, 247, 250, 252, 255, 258, 262, 267, 269, 283, 292, 304, 307, 308, 322, 337, 338, 340, 341, 344, 348, 358, 362, 365, 368, 369, 374, 376, 381, 384, 386, 388, 395, 406, 412, 413, 414, 415, 419, 420, 430, 436, 456, 462, 464, 465, 467, 468, 469, 471, 475, 476, 477, 478, 481, 483], "basicauth": 395, "basicblock": 483, "basicconfig": [93, 101, 102, 125, 169, 267, 466, 475, 476, 481, 483], "basiccontext": [186, 476], "basicinterpol": [167, 473, 483], "basics": [49, 58, 61, 474, 483], "basictestrunn": 483, "basicus": 386, "basket": 442, "bass": [249, 336], "bastian": 473, "bastien": [475, 477], "bastin": [109, 466], "bastion": 465, "bat": [106, 296, 319, 348, 362, 399, 483], "batch": [101, 106, 261, 299, 348, 461, 474, 478, 483], "batch_proc": 386, "batch_siz": 96, "batcheld": [109, 483], "batchmod": 167, "batchrenam": 452, "batista": [466, 468], "batteri": 451, "battl": 483, "batuhan": [472, 473, 474, 481, 482, 483], "baud": [92, 483], "baudrat": 177, "bauer": 465, "baxter": [464, 466, 467], "bayard": 483, "bayer": 483, "bayesian": [68, 290], "bayl": [480, 481, 483], "baz": [101, 102, 104, 120, 167, 247, 250, 262, 267, 268, 283, 293, 311, 362, 385, 388, 389, 390, 407, 432, 436], "bb": [33, 95, 160, 261, 267, 455, 480, 483], "bbb": 261, "bbbb": 106, "bbc": [80, 166, 439, 478], "bbdehiioqssuvvwx": 455, "bbedit": [177, 459], "bbhhiillqq": 469, "bbox": 376, "bc": [103, 106, 160, 247, 261, 344, 462], "bcc": [203, 335], "bcd": [106, 261], "bcde": [190, 261, 469], "bce": 344, "bcj": [270, 483], "bclass": 106, "bcm": [337, 483], "bcryptgenrandom": [293, 473, 483], "bd": 261, "bd1a": [398, 467], "bdaddr": 337, "bdaddr_ani": 337, "bdaddr_loc": 337, "bdb": [68, 167, 185, 254, 297, 456, 469, 481, 483], "bdbquit": 144, "bdeo": 103, "bdfl": 87, "bdist": 478, "bdist_": 463, "bdist_dumb": 483, "bdist_msi": [473, 482, 483], "bdist_rpm": [462, 483], "bdist_wheel": [472, 473, 481, 482, 483], "bdist_wininst": [462, 472, 481, 482, 483], "be": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 128, 132, 133, 135, 136, 137, 138, 139, 141, 143, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 179, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 291, 292, 293, 295, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 448, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bean": [175, 319], "bear": [64, 183, 243, 250, 283, 344, 352, 483], "beauregard": [473, 483], "beauti": [114, 190], "beazley": [109, 464, 475], "becam": [95, 149, 293, 335, 352, 366, 386, 462, 468, 469, 478, 481, 482, 483], "becaus": [5, 23, 28, 33, 34, 42, 45, 47, 54, 58, 60, 63, 71, 72, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 122, 129, 133, 135, 136, 137, 139, 149, 151, 157, 158, 161, 163, 166, 167, 169, 176, 181, 183, 184, 186, 190, 193, 196, 201, 203, 205, 208, 212, 213, 214, 215, 225, 226, 230, 235, 243, 244, 245, 247, 250, 251, 253, 255, 258, 261, 267, 268, 269, 270, 271, 281, 283, 287, 292, 293, 295, 297, 299, 301, 302, 319, 328, 330, 331, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 358, 359, 362, 365, 366, 369, 375, 384, 386, 388, 395, 400, 402, 406, 407, 410, 413, 415, 419, 425, 427, 428, 429, 430, 431, 432, 435, 436, 449, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beck": [362, 388, 463], "becker": 476, "becom": [28, 33, 34, 63, 64, 66, 73, 84, 85, 92, 93, 94, 95, 100, 102, 106, 107, 109, 112, 132, 133, 139, 141, 158, 177, 193, 196, 202, 205, 225, 247, 255, 258, 261, 283, 292, 293, 297, 299, 308, 311, 318, 328, 329, 331, 332, 333, 341, 344, 345, 348, 352, 358, 365, 369, 376, 384, 386, 395, 422, 427, 428, 429, 430, 436, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beda": 469, "bednarski": 483, "bee": 94, "beef": 475, "beek": 472, "been": [5, 7, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 43, 45, 47, 49, 58, 59, 60, 63, 64, 67, 73, 75, 79, 84, 85, 92, 93, 94, 95, 99, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 133, 134, 139, 141, 144, 149, 151, 153, 155, 158, 160, 161, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 196, 199, 201, 202, 204, 207, 212, 213, 218, 225, 226, 230, 232, 235, 242, 243, 244, 247, 248, 250, 251, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 276, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 309, 314, 319, 320, 322, 328, 329, 331, 333, 334, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 354, 356, 358, 360, 361, 362, 364, 365, 366, 369, 375, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 402, 403, 405, 408, 411, 412, 413, 416, 419, 420, 421, 422, 426, 427, 428, 429, 430, 432, 435, 436, 442, 446, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beep": [177, 406, 479], "beer": [176, 483], "beetl": 94, "beewar": 459, "befor": [5, 7, 13, 17, 22, 23, 27, 28, 31, 33, 34, 42, 45, 51, 55, 56, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 85, 87, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 110, 115, 117, 120, 128, 132, 133, 135, 136, 137, 139, 141, 149, 151, 153, 155, 157, 158, 159, 167, 169, 170, 176, 177, 183, 184, 186, 190, 191, 193, 195, 196, 201, 203, 205, 213, 218, 223, 225, 226, 234, 242, 243, 245, 247, 248, 250, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 313, 314, 319, 320, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 362, 364, 365, 366, 375, 376, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 411, 412, 413, 414, 415, 416, 420, 422, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 446, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "before_and_aft": 261, "before_async_with": 191, "before_with": [191, 473], "beforehand": [45, 432], "beg": 177, "began": [243, 250, 267, 362, 462, 463, 483], "begidx": 155, "begin": [7, 23, 58, 68, 73, 75, 76, 78, 79, 84, 85, 95, 102, 106, 117, 120, 139, 151, 155, 167, 177, 178, 183, 186, 190, 193, 196, 201, 209, 215, 247, 250, 255, 258, 261, 262, 270, 271, 278, 283, 288, 293, 297, 301, 302, 314, 319, 320, 324, 334, 335, 340, 341, 344, 345, 347, 358, 359, 364, 369, 376, 378, 384, 388, 413, 415, 416, 425, 427, 428, 429, 430, 432, 434, 435, 436, 449, 455, 456, 461, 464, 467, 468, 469, 474, 479, 480, 483], "begin_fil": 384, "begin_fin": [481, 483], "begin_i": [92, 177], "begin_poli": 384, "begin_x": [92, 177], "beginn": [267, 331], "begun": [365, 465, 466], "behalf": [33, 333, 426, 483], "behav": [10, 23, 33, 34, 45, 63, 64, 76, 85, 94, 100, 102, 106, 109, 163, 167, 169, 170, 176, 183, 184, 186, 226, 244, 257, 258, 271, 278, 288, 293, 320, 321, 333, 335, 337, 338, 341, 344, 348, 352, 356, 364, 369, 386, 388, 411, 413, 427, 428, 429, 430, 435, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 480, 481, 483], "behavior": [22, 23, 27, 28, 33, 34, 42, 58, 61, 63, 68, 73, 79, 85, 92, 93, 94, 100, 101, 102, 119, 120, 132, 139, 149, 157, 167, 173, 176, 177, 181, 183, 186, 190, 193, 194, 196, 201, 203, 205, 206, 208, 213, 215, 218, 225, 234, 242, 245, 247, 250, 255, 257, 261, 262, 266, 267, 269, 270, 271, 275, 276, 283, 288, 292, 293, 299, 302, 309, 314, 328, 331, 332, 333, 334, 335, 337, 338, 341, 343, 344, 345, 347, 348, 352, 358, 362, 365, 366, 369, 374, 376, 378, 381, 383, 386, 388, 394, 395, 400, 410, 425, 427, 428, 429, 430, 432, 435, 436, 455, 456, 461, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 482, 483, 484], "behaviour": [28, 31, 33, 49, 63, 68, 84, 85, 95, 101, 102, 106, 169, 189, 213, 215, 217, 243, 255, 258, 267, 268, 269, 283, 292, 293, 299, 311, 319, 320, 328, 331, 333, 337, 338, 340, 344, 348, 352, 364, 384, 394, 395, 400, 413, 416, 419, 428, 430, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 476, 477, 479, 480, 483], "behind": [93, 176, 193, 309, 325, 355, 358, 384, 395, 428, 461, 463, 466, 483], "behnel": [473, 477, 478, 480, 481, 483], "beihang": 426, "being": [5, 7, 13, 22, 23, 27, 28, 33, 45, 60, 61, 63, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 133, 139, 149, 151, 158, 159, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 191, 193, 195, 196, 202, 205, 208, 213, 216, 218, 225, 226, 230, 234, 247, 248, 250, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 283, 292, 293, 295, 297, 299, 302, 307, 308, 309, 312, 314, 318, 319, 320, 324, 328, 329, 330, 332, 333, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 353, 355, 362, 364, 365, 366, 369, 376, 381, 386, 388, 394, 399, 400, 407, 410, 413, 414, 415, 417, 421, 422, 426, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bel": [178, 435, 465, 466, 467, 468, 469, 475, 476], "belang": 481, "belchenko": 469, "believ": [95, 292, 465], "bell": [177, 178, 369, 435, 467, 483], "belmont": [466, 472, 473, 483], "belong": [33, 42, 58, 63, 73, 85, 94, 100, 139, 193, 243, 259, 272, 281, 292, 293, 314, 338, 340, 344, 376, 385, 400, 410, 416, 427, 428, 440, 469, 476, 483], "belopolski": [109, 468, 469, 471, 474, 475, 478, 479, 480, 483], "below": [7, 23, 33, 45, 55, 59, 60, 61, 63, 64, 66, 73, 76, 93, 94, 95, 96, 101, 102, 110, 115, 117, 120, 133, 144, 149, 158, 167, 177, 179, 181, 183, 186, 189, 191, 193, 195, 203, 208, 213, 221, 230, 233, 235, 242, 243, 245, 247, 248, 249, 250, 252, 258, 266, 267, 268, 269, 276, 282, 283, 288, 292, 293, 295, 297, 299, 307, 314, 319, 320, 321, 322, 324, 328, 329, 331, 332, 333, 334, 335, 336, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 356, 358, 359, 362, 364, 365, 366, 369, 371, 376, 380, 384, 386, 388, 395, 403, 406, 413, 414, 419, 420, 422, 426, 427, 428, 429, 430, 431, 432, 435, 441, 461, 462, 463, 465, 467, 468, 469, 470, 474, 477, 478, 483], "below_normal_priority_class": 348, "ben": [463, 467, 473, 478, 483], "benc": 483, "benchmark": [85, 226, 308, 455, 462, 463, 465, 466, 467, 469, 470, 471, 473, 474, 476, 477, 478, 481, 482, 483], "bend": 466, "benderski": 477, "beneath": [112, 413, 483], "benedikt": 483, "benefici": [85, 102, 139, 426, 478], "benefit": [33, 85, 95, 102, 186, 268, 299, 344, 352, 362, 376, 386, 461, 464, 465, 466, 469, 475, 476, 480, 481, 483], "benesch": 479, "benevol": [87, 462], "bengt": 468, "beni": 466, "benign": 243, "benjamin": [109, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "bennett": 475, "benno": [478, 483], "beno": 483, "bent": 106, "beo": 470, "beopen": [68, 69], "bepoint": 344, "bereft": 441, "berg": 483, "berkeley": [107, 184, 470], "berkeleydb": [465, 468, 469, 483], "berker": [472, 477, 478, 479, 480, 481, 483], "berlin": 425, "berman": 477, "bernard": 483, "bernat": 341, "bernhard": 480, "bernstein": [235, 426, 468, 483], "berri": 483, "bertog": 468, "bertoni": 479, "besid": [5, 76, 93, 94, 183, 225, 333, 376, 435, 461, 483], "bessel": 343, "best": [31, 55, 64, 68, 84, 92, 95, 100, 101, 102, 122, 141, 174, 183, 186, 190, 193, 194, 195, 205, 223, 225, 226, 230, 234, 235, 242, 247, 248, 255, 270, 283, 288, 292, 293, 305, 307, 308, 331, 335, 337, 340, 344, 352, 358, 367, 369, 375, 384, 386, 403, 425, 428, 432, 456, 461, 462, 466, 467, 470, 474, 475, 477, 478, 479, 482, 483], "bet": 73, "beta": [4, 68, 113, 318, 352, 451, 462, 468, 478, 484], "beta1": 483, "betavari": 318, "bethard": [467, 469, 475, 478, 483], "better": [68, 72, 73, 75, 76, 84, 85, 93, 95, 100, 101, 102, 106, 114, 120, 138, 141, 159, 176, 190, 193, 215, 226, 228, 234, 247, 261, 266, 271, 283, 292, 293, 305, 308, 328, 347, 348, 365, 366, 369, 376, 384, 386, 388, 397, 413, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "betterexplain": 261, "betti": 419, "between": [7, 18, 20, 33, 34, 39, 42, 45, 54, 56, 60, 61, 63, 68, 72, 73, 74, 75, 76, 79, 84, 89, 91, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 120, 122, 133, 141, 146, 149, 158, 161, 164, 167, 173, 177, 183, 186, 191, 193, 195, 196, 197, 201, 205, 209, 213, 216, 218, 225, 230, 235, 247, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 275, 276, 278, 293, 295, 296, 297, 299, 308, 318, 319, 320, 334, 337, 338, 339, 340, 341, 343, 344, 347, 348, 352, 359, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 382, 384, 385, 388, 394, 395, 400, 405, 410, 411, 413, 417, 419, 425, 426, 427, 428, 430, 431, 432, 434, 436, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beverag": 101, "bewar": [158, 221, 262, 283, 330, 340, 341, 432, 451, 470], "beyond": [33, 68, 74, 92, 99, 106, 118, 183, 186, 197, 203, 255, 262, 268, 271, 282, 293, 319, 337, 340, 341, 344, 347, 405, 427, 434, 463, 474, 476, 483], "bf": [102, 319, 451], "bf_getbuff": [61, 63, 473], "bf_releasebuff": [5, 61, 63, 473], "bfd": 475, "bg": [177, 369, 376, 384, 483], "bgcolor": 384, "bgenloc": 468, "bgpic": 384, "bhat": 474, "bhi": 190, "bhl": 347, "bias": [141, 196, 205, 308, 318, 465, 475], "bibbl": 389, "bick": [95, 407], "bidirect": [109, 133, 283, 344, 346, 387, 462, 483], "bierenfeld": 477, "big": [4, 25, 35, 42, 64, 68, 73, 78, 84, 95, 102, 107, 109, 132, 133, 141, 153, 158, 167, 176, 177, 191, 230, 259, 269, 295, 344, 347, 349, 352, 362, 398, 405, 434, 452, 456, 464, 465, 466, 469, 471, 473, 475, 477, 483], "big5": [158, 466], "big5hksc": [158, 466], "bigaddrspacetest": 362, "bigcharset": 464, "bigdecim": 419, "bigendian": 153, "bigendianstructur": [176, 344, 483], "bigendianunion": [176, 483], "bigger": [64, 93, 275, 332, 344, 358, 461, 481, 483], "biggest": [92, 382, 470, 475, 476], "biginteg": 419, "bigmemtest": 362, "bignum": [186, 344, 476], "bigobject": 262, "biject": [33, 109], "bill": [102, 344, 446, 462, 468], "billah": 483, "billi": 463, "billion": [409, 483], "bin": [33, 35, 68, 72, 79, 84, 95, 102, 109, 110, 151, 164, 167, 200, 225, 245, 251, 292, 293, 296, 301, 343, 344, 345, 355, 395, 396, 399, 421, 428, 438, 448, 450, 453, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 483], "bin_nam": 399, "bin_path": 399, "binacii": 483, "binari": [5, 7, 34, 41, 42, 47, 57, 63, 66, 68, 75, 78, 84, 85, 87, 94, 102, 109, 115, 118, 122, 141, 143, 145, 146, 149, 168, 176, 186, 191, 194, 196, 197, 200, 201, 203, 205, 207, 208, 215, 221, 223, 225, 230, 234, 235, 245, 250, 252, 253, 254, 255, 256, 259, 261, 262, 266, 268, 269, 270, 271, 274, 275, 281, 282, 283, 288, 292, 293, 296, 299, 302, 304, 337, 345, 347, 348, 352, 355, 358, 369, 395, 397, 399, 405, 413, 416, 420, 421, 422, 425, 426, 428, 433, 436, 439, 445, 446, 456, 459, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "binary16": [25, 347], "binary32": [25, 347], "binary64": [25, 347, 444], "binary_": [473, 483], "binary_add": [475, 477, 483], "binary_add_adapt": 483, "binary_add_float": 483, "binary_add_int": 483, "binary_add_unicod": 483, "binary_add_unicode_inplace_fast": 483, "binary_floor_divid": 475, "binary_form": 341, "binary_modulo": 475, "binary_multipli": [475, 483], "binary_multiply_float": 483, "binary_multiply_int": 483, "binary_op": [191, 473, 483], "binary_op_gener": 483, "binary_op_inplace_add_unicod": 483, "binary_slic": [191, 474, 483], "binary_subscr": [191, 483], "binary_subscr_dict": 483, "binary_subscr_list_int": 483, "binary_subscr_tuple_int": 483, "binaryfunc": [57, 63], "binaryio": [252, 386, 483], "binascii": [68, 100, 143, 158, 254, 285, 397, 426, 469, 473, 477, 482, 483], "binbytes8": 483, "bind": [13, 44, 58, 61, 68, 85, 93, 102, 107, 129, 142, 169, 171, 177, 193, 223, 225, 230, 241, 245, 255, 266, 268, 294, 298, 314, 320, 329, 335, 337, 338, 341, 352, 362, 368, 371, 375, 376, 384, 426, 427, 428, 430, 432, 433, 434, 436, 441, 459, 462, 463, 464, 466, 467, 468, 472, 476, 477, 478, 480, 483], "bind_al": 483, "bind_and_activ": [338, 420, 468], "bind_class": 483, "bind_parti": 255, "bind_port": 362, "bind_textdomain_codeset": [266, 466, 473, 481], "bind_unix_socket": 362, "bindigit": 435, "bindir": 475, "bindsocket": 341, "bindtag": 376, "bindtextdomain": [230, 266], "bing": 483, "binget": 483, "binhex": [473, 482, 483], "binhex4": [146, 482, 483], "bininstal": 483, "binint1": 300, "bininteg": 435, "binlibdest": 475, "binomi": [318, 343, 483], "binomialvari": [318, 343, 474, 483], "binop": [122, 468, 483], "binpath": 399, "binput": [300, 483], "binunicode8": 483, "binutil": 481, "bio": [68, 288, 483], "biondi": 467, "biopython": 288, "bioreason": 426, "bird": 147, "birth_weight": 343, "birthday": [93, 451, 472], "bisect": [68, 182, 254, 452, 466, 483], "bisect_cmd": 483, "bisect_left": 147, "bisect_right": 147, "bit": [5, 7, 25, 41, 42, 58, 61, 63, 64, 66, 68, 73, 75, 76, 85, 86, 92, 93, 94, 95, 99, 102, 106, 109, 117, 118, 133, 141, 146, 152, 153, 154, 158, 167, 169, 177, 178, 186, 191, 193, 195, 200, 201, 202, 205, 208, 215, 216, 225, 227, 230, 235, 243, 244, 259, 266, 270, 275, 287, 289, 292, 293, 295, 299, 303, 306, 315, 319, 322, 328, 332, 336, 337, 341, 342, 344, 347, 348, 349, 352, 356, 358, 360, 366, 369, 376, 397, 398, 404, 410, 421, 422, 424, 427, 428, 430, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bit_count": [344, 472, 483], "bit_length": [275, 318, 344, 469, 471], "bit_rat": 481, "bitand": [122, 431], "bitdanc": 477, "bite": [85, 106, 292], "bitfield": [58, 113, 483], "bitmap": [249, 255, 281, 328, 369, 375, 376], "bitmapimag": 369, "bitmask": [63, 193, 295, 328, 329], "bitor": [122, 431], "bits_per_digit": [352, 456, 469, 471], "bits_per_sampl": 336, "bitset": [63, 75], "bitstr": 98, "bitter": 483, "bitwis": [47, 58, 68, 92, 94, 95, 106, 177, 178, 193, 215, 282, 293, 319, 329, 337, 340, 344, 353, 406, 428, 431, 433, 465, 468, 469, 474, 479, 483], "bitwise_and": 431, "bitwise_or": 431, "bitwise_xor": 431, "bitxor": [122, 431], "bj": 108, "bjoern": 483, "bjorn": [467, 483], "bjunk": [190, 477], "bk": 384, "bkfile": 483, "bkgd": 177, "bkgdset": 177, "bl": 177, "black": [92, 94, 102, 109, 147, 160, 177, 211, 247, 318, 376, 384, 452, 465, 466, 472, 473, 474, 477, 481], "blackbox": 362, "blackhol": 483, "blacklist": [480, 483], "blah": [109, 270, 292], "blahay": 483, "blai": 467, "blake": [95, 235], "blake1": 483, "blake2": [68, 174, 456, 473, 479, 482, 483], "blake2b": [235, 473, 479, 482, 483], "blake2b512": 483, "blanch": [476, 483], "blanchard": 483, "bland": [292, 467, 468], "blank": [68, 84, 85, 95, 120, 151, 155, 167, 175, 177, 186, 190, 193, 196, 205, 207, 208, 242, 245, 247, 268, 297, 334, 341, 344, 354, 384, 394, 413, 436, 466, 478, 480, 483], "blanklin": [193, 466], "bldshare": 456, "bleached_cor": 94, "bleaney": 473, "blech": 474, "bleed": 170, "bleedin": 441, "bletch": 334, "blhsing": 483, "blind": [344, 477], "blink": [92, 177, 481, 482, 483], "blip": 390, "blksize": [258, 407], "blktype": 358, "blo": 190, "bloat": 106, "blob": [68, 298, 341, 390, 473, 483], "blob_col": 340, "blobopen": [340, 473, 483], "block": [5, 7, 23, 33, 42, 45, 55, 63, 68, 73, 75, 77, 78, 92, 93, 106, 107, 110, 112, 115, 117, 125, 126, 133, 134, 135, 137, 138, 139, 144, 146, 149, 169, 176, 177, 178, 185, 186, 188, 190, 191, 193, 199, 207, 208, 212, 213, 215, 225, 226, 232, 234, 235, 242, 243, 247, 248, 255, 257, 258, 261, 269, 273, 282, 283, 284, 288, 293, 295, 296, 305, 313, 316, 322, 325, 328, 329, 330, 332, 333, 335, 337, 340, 342, 348, 351, 352, 353, 358, 359, 362, 365, 369, 386, 388, 395, 403, 405, 406, 411, 416, 428, 429, 430, 431, 432, 436, 455, 463, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "block_hash_person": 235, "block_on_clos": [338, 480, 483], "block_siz": [235, 237, 477], "blocked_domain": 243, "blocking_io": [126, 139], "blockingioerror": [23, 212, 213, 258, 293, 341, 427, 450, 476, 483], "blocklist": 243, "blocksiz": [223, 242, 293, 358, 480, 483], "blog": [85, 390, 467], "blogbench": 223, "blondon": 483, "bloomberg": 473, "blow": [102, 151, 292, 475, 483], "blowfish": [173, 480, 483], "blown": 464, "blowup": 409, "blue": [73, 92, 94, 102, 106, 108, 147, 155, 160, 177, 211, 261, 318, 343, 344, 369, 376, 384, 402, 441, 442, 449, 452, 465, 466, 471, 472, 474, 475, 479, 483], "blueish": 483, "blueprint": 100, "bluetooth": [337, 483], "blum": 483, "blur": [193, 261], "blurri": 483, "bm_regex_compil": 483, "bmp": [206, 247, 249, 369, 476, 477, 480, 481, 483], "bn": [80, 103], "bnf": [430, 434, 463], "bo": [480, 481, 483], "board": [95, 100, 177, 464, 465], "bob": [235, 283, 386, 459, 467, 468, 469, 471, 476], "bobrov": 483, "bobsavag": 459, "boddi": [84, 461], "bodi": [68, 84, 85, 110, 112, 122, 135, 136, 139, 169, 183, 189, 191, 195, 196, 197, 199, 200, 201, 205, 207, 208, 225, 240, 242, 245, 248, 255, 271, 272, 288, 333, 335, 340, 344, 362, 386, 388, 393, 395, 402, 413, 427, 429, 430, 431, 436, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "body_enc": 195, "body_encod": [195, 483], "body_line_iter": 204, "boehm": 78, "boer": 80, "bogildea": 483, "bogoychev": [479, 483], "bogus": [422, 469, 483], "bohman": 483, "bohuslav": 483, "boilerpl": [73, 76, 100, 289, 362, 432, 478, 483], "bold": [92, 150, 177, 369, 372], "boldfac": [92, 468], "bolen": [462, 464], "bolshakov": 483, "bolsterle": [481, 483], "bolt": [456, 474, 483], "bolt_apply_flag": [456, 483], "bolt_instrument_flag": [456, 483], "bolton": [469, 475], "bolz": 483, "bom": [64, 68, 109, 145, 262, 378, 483], "bom_b": 158, "bom_l": 158, "bom_utf16": 158, "bom_utf16_b": 158, "bom_utf16_l": 158, "bom_utf32": 158, "bom_utf32_b": 158, "bom_utf32_l": 158, "bom_utf8": 158, "bomb": [409, 422, 483], "bond": 483, "bone": [102, 459], "bont": [473, 474], "bonus": 463, "bonz": 476, "bonzo": 476, "boo": 100, "book": [91, 95, 106, 160, 183, 271, 319, 340, 369, 475, 483], "bookkeep": [33, 68, 177, 290, 474], "bookmark": 466, "bool": [5, 6, 31, 58, 68, 92, 94, 120, 126, 139, 167, 168, 176, 181, 211, 225, 226, 254, 261, 262, 267, 284, 289, 291, 340, 347, 379, 382, 386, 388, 410, 419, 427, 428, 430, 440, 450, 465, 468, 472, 474, 480, 481, 483], "bool_return": 443, "boolean": [5, 16, 68, 85, 101, 108, 120, 138, 167, 168, 176, 177, 183, 191, 193, 225, 235, 243, 245, 248, 254, 262, 268, 274, 283, 291, 293, 295, 304, 319, 320, 337, 338, 340, 341, 365, 369, 376, 379, 384, 386, 389, 395, 399, 410, 411, 419, 427, 428, 433, 463, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 482, 483, 484], "boolean_st": 167, "booleanoptionalact": [120, 474, 483], "booleanvar": [369, 483], "boolop": 122, "boom": [331, 389, 390], "boost": [56, 79, 226, 466, 483], "bootstrap": [68, 111, 142, 192, 254, 318, 334, 399, 474, 483], "bootup": 483, "boquien": 483, "border": [92, 177, 369, 376, 394], "bordum": [482, 483], "bore": 469, "borgstr": 477, "bori": 483, "boringssl": 483, "borland": [464, 483], "born": [102, 344], "borrow": [5, 22, 27, 58, 60, 63, 67, 73, 75, 87, 95, 212, 340, 464, 465, 466, 483], "borzenkov": 468, "bos": 483, "bosamiya": 483, "bosch": 462, "boswel": 476, "botani": 93, "botfram": [144, 483], "both": [5, 7, 22, 23, 24, 33, 45, 49, 55, 58, 63, 64, 72, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 120, 133, 137, 139, 141, 151, 158, 159, 161, 167, 169, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 205, 206, 207, 213, 215, 216, 220, 225, 226, 230, 233, 235, 243, 244, 245, 247, 250, 255, 257, 258, 259, 267, 268, 270, 275, 278, 281, 282, 283, 284, 287, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 314, 319, 320, 322, 324, 329, 330, 332, 333, 334, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 361, 362, 364, 366, 369, 376, 378, 380, 382, 384, 386, 388, 394, 395, 400, 405, 411, 413, 417, 419, 421, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 442, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bother": [85, 92, 102, 109, 283, 463, 464, 474], "bottl": [102, 176, 468], "bottleneck": [185, 226, 471], "bottom": [73, 84, 95, 96, 100, 120, 176, 177, 179, 191, 258, 267, 293, 297, 369, 376, 384, 386, 389, 428, 435, 461, 462, 464, 465, 483], "bottom_panel": 179, "bounc": [271, 462], "bound": [7, 10, 13, 42, 44, 54, 56, 60, 63, 64, 85, 93, 94, 101, 102, 106, 122, 126, 130, 138, 139, 158, 169, 186, 190, 191, 213, 225, 226, 247, 248, 250, 255, 268, 269, 283, 318, 319, 322, 331, 337, 340, 344, 351, 362, 365, 369, 375, 376, 385, 386, 395, 402, 420, 426, 427, 428, 429, 430, 431, 432, 436, 462, 464, 465, 467, 468, 469, 474, 476, 477, 480, 482, 483], "bound_of_t": 427, "boundargu": [255, 476, 478, 482, 483], "boundari": [33, 94, 106, 153, 183, 193, 196, 199, 205, 206, 211, 213, 283, 299, 319, 344, 347, 362, 415, 435, 468, 473, 483], "boundaryerror": 199, "boundedsemaphor": [68, 124, 283, 365, 476, 481, 483], "boundless": 428, "bourn": [80, 301], "bovenberg": 483, "bower": [474, 483], "bowl": 340, "box": [92, 102, 177, 247, 271, 369, 373, 375, 376, 386, 430, 479, 480, 481, 483], "boxcar": 419, "boxofstr": 386, "bozz": [102, 268], "bpbynumb": 144, "bpformat": 144, "bpl": 79, "bplist": 144, "bpnumber": 297, "bpo": [17, 35, 183, 188, 226, 267, 269, 283, 293, 302, 332, 386, 467, 468, 469, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bpopular": [190, 477], "bpprint": 144, "bpython": 447, "br": [79, 177, 435, 470, 471, 475, 476, 483], "brace": [33, 158, 281, 319, 344, 345, 398, 430, 435, 479, 480, 483], "braceidpattern": [345, 483], "bracemessag": 102, "bracket": [5, 33, 63, 95, 102, 106, 109, 144, 209, 220, 225, 271, 297, 319, 340, 344, 386, 387, 394, 410, 413, 427, 428, 430, 434, 435, 436, 467, 468, 469, 483], "brad": 483, "bradshaw": [474, 483], "brain": [103, 466], "bram": [435, 464], "branch": [68, 154, 191, 270, 319, 353, 362, 375, 380, 462, 467, 468, 482, 483], "branchless": 483, "brand": [9, 55, 60, 73, 305, 483], "brandl": [109, 467, 468, 469, 471, 475, 476, 478, 479, 483], "brandon": 483, "brandt": [473, 474, 482, 483], "braun": [474, 483], "brave": 442, "bray": [480, 483], "brazil": 483, "brazilian": 483, "breach": [314, 426], "breadth": [384, 452], "breadth_first_search": 452, "break": [33, 63, 64, 68, 75, 76, 78, 84, 92, 94, 95, 102, 103, 106, 122, 128, 132, 136, 139, 144, 151, 158, 169, 170, 176, 177, 190, 193, 200, 202, 208, 247, 250, 255, 261, 271, 283, 292, 297, 299, 307, 314, 319, 321, 326, 333, 335, 337, 341, 344, 345, 348, 352, 359, 361, 362, 364, 365, 384, 388, 394, 399, 400, 407, 411, 427, 428, 429, 430, 431, 433, 435, 440, 443, 445, 462, 463, 464, 465, 467, 468, 469, 471, 475, 476, 477, 478, 480, 481, 483], "break_anywher": 144, "break_her": 144, "break_long_word": [364, 483], "break_loop": [481, 483], "break_on_hyphen": [364, 483], "break_stmt": 436, "breakag": [435, 462, 463, 465, 474, 480, 483], "breakdown": 186, "breaker": [474, 483], "breakfast": 428, "breakout": 177, "breakpoint": [42, 68, 79, 85, 142, 144, 147, 185, 225, 247, 297, 352, 353, 455, 467, 475, 483], "breakpointhook": [142, 225, 352, 450, 455, 480, 483], "brecht": [477, 478, 479, 483], "brees": 483, "bremmer": 464, "brendan": 483, "brester": 483, "brethren": 102, "brett": [105, 308, 465, 466, 467, 468, 469, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "breviti": [75, 292], "brew": 106, "brezovski": 483, "brian": [340, 434, 462, 465, 466, 468, 469, 475, 476, 477, 480, 483], "brian_1979": [358, 422], "bridg": [369, 475], "brief": [110, 120, 193, 205, 225, 226, 268, 292, 302, 308, 319, 322, 344, 348, 380, 426, 462, 464, 466, 467, 470, 475, 483], "briefcas": 459, "briefli": [33, 77, 109, 186, 467, 483], "brigg": 464, "bright": 92, "bright_side_of_lif": 381, "bring": [183, 247, 261, 332, 345, 375, 477, 478, 481, 482, 483], "british": 92, "brito": [473, 483], "brk": 359, "broad": [95, 183, 292, 394, 464, 467, 469, 476, 483], "broadcast": [259, 337, 483], "broadcast_address": 259, "broadcast_messag": 386, "broaden": 483, "broader": 477, "broccoli": 340, "broke": 483, "broken": [33, 100, 102, 107, 109, 112, 138, 190, 207, 212, 255, 266, 283, 293, 305, 333, 352, 362, 364, 365, 369, 388, 394, 435, 455, 467, 471, 474, 476, 477, 481, 482, 483], "brokenbarriererror": [124, 138, 365, 473, 475], "brokenexecutor": 166, "brokenpipeerror": [23, 137, 212, 213, 333, 450, 476, 483], "brokenprocesspool": 166, "brokenthreadpool": 166, "bronson": [472, 481, 483], "brot": 483, "brought": [299, 465, 483], "brouwer": 468, "brown": [384, 468, 483], "brows": [92, 110, 313, 376, 468, 483], "browser": [68, 95, 109, 110, 151, 152, 190, 244, 245, 247, 256, 257, 272, 308, 312, 313, 352, 394, 395, 440, 456, 462, 463, 465, 466, 467, 468, 474, 475, 476, 479, 480, 483], "browsercontrol": 462, "broytman": 483, "broytmann": 467, "bruce": [428, 483], "brun": 465, "bruno": [477, 478, 483], "brunthal": 473, "brute": 235, "bruynoogh": 468, "bryan": 483, "bryant": 477, "bryce": 483, "bs": [177, 178, 435], "bsd": [68, 84, 92, 107, 133, 177, 215, 322, 328, 333, 337, 342, 366, 438, 456, 462, 464, 468, 477, 483], "bsd0": 483, "bsdcam": 223, "bsddb": [330, 465, 468, 469], "bsddb185": 465, "bsddb3": [465, 470], "bsddbshelf": [330, 344], "bsds": [383, 474], "bsdtar": 358, "bstate": 177, "bt": [68, 469, 483], "btn": [369, 376, 384], "btoa": 143, "btopen": 330, "btproto_hci": 337, "btproto_l2cap": 337, "btproto_rfcomm": 337, "btproto_sco": 337, "btrfs": [215, 293], "bubbl": [139, 427, 483], "bucher": [473, 474, 482, 483], "buchholz": 483, "bucket": [386, 428], "buckley": 483, "bud": [196, 205, 407], "buddi": 440, "buf": [5, 7, 42, 126, 215, 235, 284, 341, 344, 358, 467], "buf1": 42, "buf2": 42, "buf3": 42, "buf_len": 466, "buff": 240, "buffer": [2, 8, 9, 18, 24, 32, 33, 34, 41, 42, 43, 50, 64, 65, 66, 68, 75, 87, 92, 96, 101, 112, 118, 120, 121, 127, 130, 136, 137, 142, 146, 149, 151, 157, 158, 161, 176, 177, 212, 213, 214, 215, 225, 234, 235, 242, 245, 269, 270, 278, 282, 283, 284, 293, 295, 296, 298, 314, 315, 322, 328, 331, 332, 333, 337, 341, 344, 347, 348, 352, 358, 359, 360, 362, 363, 365, 386, 388, 395, 407, 408, 413, 414, 422, 424, 455, 456, 464, 465, 466, 467, 468, 469, 470, 475, 477, 478, 479, 480, 482, 483, 484], "buffer_block_s": 483, "buffer_callback": 299, "buffer_info": 121, "buffer_len": 48, "buffer_length": 5, "buffer_s": [258, 314, 468], "buffer_text": [314, 465], "buffer_upd": [130, 133], "buffer_us": 314, "buffered_stdio": [33, 34, 474], "bufferediobas": [149, 225, 234, 242, 245, 258, 270, 299, 338, 360, 369, 407, 468, 469, 473, 475, 476, 478, 479, 483], "bufferedprotocol": [133, 480, 481, 483], "bufferedrandom": [225, 258, 468, 483], "bufferedread": [225, 258, 358, 468, 469, 475, 483], "bufferedrwpair": [258, 468, 483], "bufferedwrit": [225, 258, 468, 475, 483], "buffererror": [7, 23, 63, 213, 299, 450, 483], "bufferflag": [255, 428, 474], "bufferingformatt": [101, 267], "bufferinghandl": [102, 269], "bufferingloggerwrit": 102, "bufferingsmtphandl": 102, "buffertooshort": 283, "buffertyp": 43, "buflen": [64, 337], "bufsiz": [42, 73, 120, 126, 295, 337, 348, 358, 411, 412, 424, 466, 481, 483], "bug": [0, 59, 63, 68, 72, 73, 78, 79, 80, 84, 93, 95, 96, 102, 103, 105, 109, 125, 151, 177, 208, 225, 242, 243, 271, 293, 299, 308, 340, 341, 348, 362, 365, 368, 386, 444, 446, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "bugfix": [80, 89, 462, 463, 464, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "buggi": [92, 462, 464, 474, 476, 477, 483], "bugtrack_url": 307, "bugzilla": 483, "build": [9, 33, 34, 42, 58, 64, 65, 68, 74, 75, 76, 77, 79, 84, 85, 93, 98, 102, 110, 141, 155, 157, 158, 176, 186, 187, 190, 191, 203, 206, 208, 211, 225, 235, 245, 257, 258, 261, 273, 282, 292, 296, 307, 311, 314, 328, 334, 337, 338, 341, 344, 352, 355, 362, 369, 382, 384, 388, 394, 395, 399, 400, 410, 425, 428, 451, 455, 458, 461, 462, 464, 473, 484], "build_can_fram": 337, "build_const_key_map": [191, 479, 483], "build_dyson_spher": 472, "build_ext": [478, 483], "build_list": [191, 483], "build_list_unpack": 483, "build_map": [191, 483], "build_map_unpack": 483, "build_map_unpack_with_cal": [479, 483], "build_meta": 76, "build_open": [110, 243, 395], "build_pgo": 483, "build_set": [191, 483], "build_set_unpack": 483, "build_slic": 191, "build_ssl": 483, "build_str": [191, 479, 483], "build_tupl": [191, 483], "build_tuple_unpack": 483, "build_tuple_unpack_with_cal": [479, 483], "buildbot": [362, 388, 456, 483], "buildbottest": 456, "builddat": [303, 483], "builder": [399, 410, 411, 413], "buildno": 303, "buildout": [167, 475], "buildreleas": 483, "buildscript": [475, 483], "buildtool": 468, "built": [4, 7, 16, 23, 31, 33, 34, 37, 42, 47, 49, 58, 59, 61, 63, 68, 73, 75, 76, 77, 79, 80, 84, 85, 93, 101, 102, 109, 110, 111, 112, 115, 120, 128, 132, 151, 158, 159, 161, 163, 168, 178, 181, 186, 190, 191, 195, 199, 202, 206, 213, 221, 225, 230, 235, 247, 250, 251, 252, 254, 255, 257, 258, 261, 266, 275, 276, 283, 292, 293, 297, 299, 308, 311, 313, 320, 321, 328, 329, 337, 340, 341, 345, 347, 348, 352, 355, 362, 369, 376, 384, 385, 388, 389, 390, 400, 405, 410, 411, 413, 415, 419, 423, 427, 429, 430, 432, 434, 435, 436, 442, 443, 446, 455, 456, 461, 463, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "builtin": [33, 34, 35, 53, 63, 68, 85, 87, 93, 96, 122, 142, 158, 160, 191, 193, 225, 230, 235, 244, 247, 250, 254, 255, 259, 268, 299, 308, 315, 323, 334, 344, 352, 385, 386, 390, 427, 428, 430, 432, 435, 437, 440, 450, 456, 468, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482], "builtin_function_or_method": 483, "builtin_module_nam": [84, 250, 352, 450], "builtinfunctiontyp": 385, "builtinimport": [250, 283, 472, 473, 479, 483], "builtinload": [472, 473], "builtinmethodtyp": [385, 483], "builtout": 471, "bulgarian": 158, "bulk": [73, 186, 477], "bull": 483, "bullet": [177, 299], "bump": [477, 483], "bumpserialno": 42, "bumsik": 483, "bunch": [102, 128, 200, 207, 292, 462, 463, 464, 465, 468, 483], "bundl": [68, 85, 169, 201, 207, 223, 248, 305, 341, 368, 369, 421, 456, 458, 459, 465, 469, 474, 475, 477, 478, 480, 483], "bundlebuild": [468, 483], "bupjo": 475, "burden": [73, 469, 470, 474, 476, 478], "burger": 319, "burgess": 483, "burkland": 483, "burton": 483, "bus": [333, 405], "busi": [33, 85, 137, 212, 269, 338, 348, 369, 406, 415, 426, 441], "businesscategori": 341, "bussonni": [472, 480, 481, 483], "busy_retri": 362, "but": [5, 7, 9, 13, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 39, 42, 45, 47, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 78, 79, 84, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 128, 132, 133, 137, 139, 141, 144, 146, 151, 152, 155, 158, 159, 161, 167, 169, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 215, 216, 218, 220, 221, 225, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 257, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 282, 283, 288, 289, 292, 293, 295, 297, 299, 301, 304, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 358, 360, 362, 364, 365, 366, 369, 375, 376, 377, 378, 381, 384, 385, 386, 387, 388, 394, 395, 397, 400, 403, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "buter": 288, "butter": 340, "button": [92, 102, 151, 177, 189, 247, 281, 369, 375, 376, 384, 426, 461, 479, 480, 481, 483], "button5_": [177, 472, 483], "button_alt": 177, "button_ctrl": 177, "button_shift": 177, "buttonbox": [189, 375], "buttonn_click": 177, "buttonn_double_click": 177, "buttonn_press": 177, "buttonn_releas": 177, "buttonn_triple_click": 177, "buttonpress": 371, "buttonreleas": 371, "buy": [103, 341, 467], "buyst": 483, "buzz": 102, "bw": 376, "bword": 106, "bx": 261, "by": [5, 7, 13, 15, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 118, 120, 126, 128, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 152, 154, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 443, 449, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "by_handle_file_inform": [293, 478], "by_year": 147, "bye": [155, 170, 248, 288, 384, 476], "byelorussian": 158, "bykw5omccfazvcoyqwkkkemovymafor34mmkbx8r1ni": 251, "bypass": [93, 158, 226, 235, 293, 345, 352, 354, 425, 428, 430, 432, 474, 483], "byref": [176, 468], "byrn": 483, "bytarray": 483, "byte": [5, 7, 12, 16, 22, 23, 24, 25, 26, 28, 31, 33, 34, 39, 41, 42, 43, 49, 58, 59, 61, 63, 64, 66, 68, 78, 79, 84, 85, 87, 92, 93, 94, 100, 102, 106, 107, 110, 113, 117, 118, 121, 122, 126, 127, 133, 136, 137, 141, 142, 143, 145, 146, 149, 151, 153, 158, 161, 163, 166, 167, 177, 178, 182, 184, 186, 188, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 205, 206, 207, 208, 212, 213, 215, 223, 225, 230, 234, 235, 237, 242, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 261, 262, 266, 268, 269, 270, 271, 274, 278, 282, 283, 284, 287, 288, 293, 295, 296, 298, 299, 304, 309, 311, 314, 317, 318, 319, 322, 324, 328, 332, 333, 335, 336, 337, 338, 340, 341, 342, 348, 349, 352, 358, 359, 362, 369, 377, 378, 382, 383, 386, 395, 398, 400, 401, 405, 406, 407, 408, 410, 411, 413, 414, 415, 416, 419, 421, 422, 424, 425, 427, 428, 430, 431, 432, 440, 446, 450, 451, 455, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "byte_length": 344, "byte_offset": 13, "byte_stream": 475, "bytearray": [5, 7, 8, 33, 34, 64, 68, 78, 85, 87, 121, 133, 145, 146, 161, 176, 182, 191, 213, 215, 225, 235, 237, 254, 258, 261, 262, 274, 278, 284, 299, 304, 318, 337, 341, 347, 386, 394, 400, 419, 424, 427, 428, 430, 450, 455, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 482, 483], "bytearray_getbuff": 483, "bytearray_irepeat": 483, "bytearray_repeat": 483, "bytearrayobject": 483, "bytecod": [13, 31, 33, 66, 68, 84, 85, 87, 95, 96, 98, 104, 106, 163, 225, 250, 254, 255, 264, 311, 324, 333, 351, 352, 362, 382, 428, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 483, 484], "bytecode_help": [68, 187, 254, 483], "bytecode_suffix": [250, 474], "bytecodealli": 483, "bytecodetestcas": 362, "bytedesign": 384, "bytefil": 416, "byteord": [64, 344, 347, 352, 450, 483], "bytereef": 476, "bytes_l": 398, "bytes_method": 483, "bytes_per_sep": [146, 344], "bytes_recd": 107, "bytes_warn": [33, 34, 352, 474, 475], "bytesescapeseq": 435, "bytesfeedpars": [207, 475], "bytesgener": [196, 197, 201, 205, 208, 335, 475], "bytesheaderpars": [207, 476], "bytesio": [87, 196, 207, 234, 235, 258, 271, 299, 344, 360, 378, 421, 425, 468, 470, 475, 478, 483], "bytesiobuf_getbuff": 483, "bytesliter": 430, "bytesobject": 483, "bytespars": [200, 201, 207, 475, 483], "bytesprefix": 435, "bytestr": [92, 161, 293, 337, 344, 386, 413, 424, 468, 474, 483], "bytestream": 109, "byteswap": [121, 141, 477], "byteswarn": [23, 34, 213, 400, 450, 480, 483], "byxo": 103, "bz2": [68, 119, 158, 176, 218, 254, 270, 296, 332, 358, 362, 422, 451, 465, 469, 471, 472, 477, 482, 483], "bz2_codec": [158, 477], "bz2_encod": 477, "bz2compressor": [149, 483], "bz2decompressor": [149, 478, 483], "bz2file": [149, 270, 469, 471, 472, 476, 477, 482, 483], "bzip": 475, "bzip2": [68, 119, 218, 254, 332, 358, 422, 473, 475, 476, 483], "bztar": [332, 475], "c0": [394, 483], "c0a80001": 345, "c1": [103, 176, 344], "c11": [456, 473, 476, 483], "c14n": [68, 413, 481, 483], "c14n2": 426, "c14n_output": 413, "c14nwritertarget": 413, "c2": [103, 176], "c3": [68, 319, 394, 428, 465, 476], "c3ref": 340, "c89": [183, 468], "c90": 483, "c99": [18, 35, 63, 76, 154, 176, 275, 344, 347, 352, 444, 456, 468, 472, 475, 479, 483], "c__builtin__": 471, "c_allow_pre_v3": 483, "c_api_object": 73, "c_bool": [176, 468], "c_buffer": 176, "c_builtin": 474, "c_byte": [176, 483], "c_byte_array_4": 176, "c_call": [144, 352], "c_char": [176, 283], "c_char_p": [176, 467], "c_contigu": [255, 344], "c_dbconfig_defens": 340, "c_doubl": [176, 283, 467, 483], "c_except": [144, 352], "c_extens": 474, "c_float": [176, 467], "c_int": [176, 283, 467, 483], "c_int16": 176, "c_int32": 176, "c_int64": 176, "c_int8": 176, "c_long": [176, 344], "c_long_array_10": 176, "c_longdoubl": [176, 483], "c_longlong": 176, "c_make_encod": 483, "c_profilefunc": 473, "c_rais": 353, "c_return": [144, 352, 353], "c_s": 176, "c_short": [176, 283], "c_size_t": 176, "c_ssize_t": [176, 475], "c_time_t": [176, 483], "c_tracefunc": 473, "c_ubyt": [176, 483], "c_uint": 176, "c_uint16": 176, "c_uint32": 176, "c_uint64": 176, "c_uint8": [176, 483], "c_ulong": 176, "c_ulonglong": 176, "c_ushort": 176, "c_void_p": 176, "c_warn": 362, "c_warn_on_allowed_pre_v3": 483, "c_wchar": 176, "c_wchar_p": [176, 483], "ca": [68, 92, 106, 162, 261, 395, 426, 468, 469, 477, 483], "ca_cert": 341, "caaat": 106, "cab": [68, 467, 483], "cabinet": [281, 483], "cabl": 184, "cabnam": 281, "cabrera": 483, "cabundl": 341, "cabxyo": 103, "cacert": 341, "cach": [31, 34, 42, 61, 63, 64, 68, 73, 75, 84, 87, 93, 101, 106, 110, 116, 139, 147, 158, 160, 163, 176, 184, 190, 191, 216, 220, 226, 230, 250, 265, 267, 283, 288, 293, 302, 311, 319, 324, 330, 340, 341, 347, 352, 360, 362, 382, 386, 388, 395, 423, 425, 427, 450, 452, 453, 455, 461, 463, 465, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "cache_aft": 160, "cache_clear": [226, 475], "cache_from_sourc": [250, 474, 475, 477, 478, 479], "cache_info": [226, 475], "cache_paramet": [226, 483], "cache_tag": [31, 250, 352, 474, 476, 483], "cached_key": 160, "cached_properti": [85, 93, 226, 344, 474, 481, 483], "cached_stat": 340, "cacheftphandl": [68, 256, 483], "cacheinfo": [226, 475], "cad": 345, "cadata": [341, 477, 483], "cadefault": 395, "caesar": 158, "cafe": 475, "cafil": [341, 395, 469, 477], "caissuer": 341, "cal": [112, 150, 395, 396], "calc_item": 465, "calcel": 483, "calcobjs": [362, 483], "calcsiz": [7, 225, 337, 344, 347, 483], "calcul": [9, 31, 33, 34, 59, 63, 64, 73, 85, 89, 93, 95, 120, 150, 177, 181, 183, 186, 191, 206, 226, 235, 261, 269, 275, 283, 295, 322, 333, 337, 344, 345, 347, 354, 356, 366, 378, 381, 384, 385, 395, 428, 430, 432, 435, 464, 467, 468, 471, 473, 474, 477, 481, 483], "calculate_someth": 186, "calculatestar": 283, "calcvobjs": 362, "calderon": [469, 476], "calendar": [68, 156, 182, 183, 254, 366, 451, 462, 465, 473, 479, 483], "calendr": [150, 183], "calibr": 308, "california": [341, 426], "calissu": 477, "call": [2, 5, 7, 9, 11, 13, 17, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 37, 39, 42, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 74, 75, 76, 77, 79, 84, 87, 89, 92, 93, 94, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 117, 118, 120, 121, 122, 124, 125, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 149, 151, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 173, 177, 179, 181, 183, 184, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 223, 225, 226, 227, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 288, 291, 293, 295, 296, 297, 299, 302, 305, 307, 308, 309, 314, 319, 320, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 402, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 418, 419, 420, 421, 422, 425, 427, 428, 429, 431, 432, 435, 436, 440, 441, 442, 443, 446, 449, 451, 452, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 482, 483], "call_": 483, "call_arg": [389, 390, 483], "call_args_list": [389, 390], "call_at": [125, 126, 130, 480], "call_count": [389, 390], "call_exception_handl": [126, 130], "call_fin": [481, 483], "call_funct": [96, 142, 176, 473, 479, 483], "call_function_builtin_fast": 483, "call_function_builtin_o": 483, "call_function_ex": [191, 479, 483], "call_function_isinst": 483, "call_function_kw": [473, 479, 483], "call_function_len": 483, "call_function_var": 479, "call_function_var_kw": 479, "call_intrinsic_": 483, "call_intrinsic_1": [191, 474, 483], "call_intrinsic_2": [191, 474, 483], "call_kw": 483, "call_lat": [68, 130, 480, 483], "call_list": [389, 390], "call_method": [473, 480, 483], "call_method_kw": 483, "call_no_kw": 483, "call_profil": [482, 483], "call_soon": [68, 125, 129, 130, 133, 136, 386, 480, 483], "call_soon_threadsaf": [125, 126, 130, 480, 483], "call_stack": 98, "call_trac": [352, 450, 483], "call_tzinfo_method": 483, "callabl": [10, 33, 37, 58, 59, 63, 67, 68, 72, 73, 85, 87, 88, 92, 94, 95, 102, 108, 112, 120, 122, 126, 132, 136, 138, 139, 161, 166, 167, 170, 176, 177, 181, 187, 190, 191, 206, 207, 208, 223, 224, 225, 235, 248, 250, 251, 254, 258, 267, 268, 269, 271, 283, 291, 292, 293, 298, 299, 313, 314, 315, 325, 332, 333, 335, 344, 348, 352, 353, 358, 365, 371, 376, 378, 388, 389, 395, 399, 400, 407, 413, 421, 427, 430, 432, 450, 455, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "callable_iter": 106, "callableproxytyp": [402, 483], "callback": [5, 11, 13, 14, 22, 27, 28, 33, 61, 63, 67, 68, 73, 81, 87, 93, 100, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 139, 169, 223, 227, 255, 281, 283, 299, 308, 309, 314, 315, 316, 320, 329, 332, 340, 341, 342, 352, 359, 367, 369, 371, 376, 385, 386, 402, 412, 413, 415, 421, 428, 452, 467, 468, 472, 473, 474, 475, 476, 477, 479, 480, 481, 483, 484], "callback_": 120, "callback_arg": 292, "callback_kwarg": 292, "calle": [85, 353, 380], "called_onc": 483, "calledprocess": 483, "calledprocesserror": [348, 469, 478, 483], "caller": [5, 9, 23, 31, 33, 34, 45, 58, 61, 64, 73, 85, 88, 93, 95, 139, 144, 157, 158, 169, 176, 181, 189, 191, 225, 235, 242, 251, 252, 255, 258, 267, 291, 293, 302, 308, 332, 333, 335, 337, 341, 343, 348, 352, 365, 376, 380, 381, 386, 388, 395, 397, 400, 403, 405, 419, 421, 428, 429, 430, 440, 443, 463, 464, 465, 466, 467, 468, 469, 473, 479, 482, 483], "calloc": [42, 478, 483], "callsomefunct": 33, "callstat": [450, 480, 482, 483], "calltip": [68, 368, 483], "calltip_w": 483, "calltipwindow": 483, "calmett": 476, "caltech": 426, "cambridgeincolour": 162, "came": [95, 102, 193, 202, 283, 443, 463, 464, 465, 466, 467, 483], "camel": [395, 468, 475], "camelcas": 365, "camelot": 471, "cameron": [84, 147], "cammin": 467, "campbel": 483, "can": [5, 7, 11, 13, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 78, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 192, 193, 194, 195, 196, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 218, 220, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 288, 292, 293, 295, 297, 298, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "can0": 337, "can_": 337, "can_bcm": [337, 477], "can_bcm_": 337, "can_bcm_can_fd_fram": 337, "can_change_color": [92, 177], "can_dlc": 337, "can_fetch": [396, 483], "can_fram": 337, "can_frame_fmt": 337, "can_frame_s": 337, "can_id": 337, "can_isotp": [337, 483], "can_j1939": [337, 482, 483], "can_raw": 337, "can_raw_fd_fram": [337, 478, 483], "can_raw_join_filt": [337, 482, 483], "can_symlink": 362, "can_values_be_as_wel": 167, "can_write_eof": [130, 133, 136], "can_xattr": 362, "canadian": [92, 158], "cancel": [68, 124, 125, 126, 129, 134, 135, 138, 141, 151, 166, 169, 177, 178, 189, 212, 214, 281, 314, 325, 333, 365, 371, 373, 375, 376, 384, 388, 427, 430, 473, 475, 480, 481, 482, 483], "cancel_command": 189, "cancel_dump_traceback_lat": 214, "cancel_futur": [166, 482, 483], "cancel_join_thread": 283, "cancel_m": 139, "cancellederror": [124, 127, 129, 135, 138, 139, 166, 481, 483], "cancelsynchronousio": 483, "cand": 103, "candid": [68, 80, 93, 103, 113, 205, 230, 352, 428, 467, 468, 469, 477, 484], "canin": 440, "cannon": [105, 465, 466, 467, 468, 469, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "cannot": [7, 9, 24, 26, 28, 33, 34, 39, 49, 54, 58, 61, 63, 64, 66, 67, 72, 73, 76, 85, 92, 94, 95, 96, 99, 100, 101, 102, 103, 110, 112, 115, 132, 135, 144, 151, 158, 160, 161, 163, 167, 169, 176, 177, 181, 183, 186, 191, 193, 197, 201, 202, 203, 208, 212, 213, 214, 215, 218, 225, 226, 230, 233, 245, 247, 250, 252, 253, 255, 258, 266, 267, 268, 269, 270, 271, 276, 278, 282, 283, 293, 295, 296, 297, 299, 302, 304, 307, 308, 314, 319, 322, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 341, 344, 348, 352, 353, 354, 358, 362, 365, 366, 369, 386, 394, 395, 399, 405, 406, 410, 413, 415, 416, 419, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 455, 456, 461, 464, 465, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 482, 483], "cannotsendhead": 242, "cannotsendrequest": 242, "canon": [64, 85, 87, 94, 144, 167, 183, 186, 195, 211, 235, 292, 337, 346, 386, 387, 413, 425, 430, 469, 478, 483], "canonic": [413, 481, 483], "canonnam": 337, "canopi": 461, "canva": [384, 468, 474, 481, 483], "canvas": 384, "canvasheight": 384, "canvaswidth": 384, "canvheight": 384, "canvwidth": 384, "cap": [272, 483], "cap_sys_resourc": 322, "capa": [305, 477], "capabl": [28, 64, 76, 92, 93, 95, 102, 106, 169, 177, 186, 193, 212, 234, 245, 248, 250, 251, 253, 255, 257, 258, 259, 272, 282, 283, 288, 292, 305, 307, 320, 375, 413, 415, 422, 430, 455, 464, 465, 466, 467, 475, 476, 477, 478, 483], "capac": [102, 177, 269, 293, 343, 365, 467, 469], "capath": [341, 395, 477], "capi": [100, 469], "capit": [106, 109, 186, 319, 344, 345, 386, 387, 427, 430, 462, 480, 482, 483], "capnam": 177, "capsul": [16, 68, 73, 95, 470, 483], "captain": [291, 479], "caption": 176, "captur": [42, 68, 92, 95, 102, 122, 169, 176, 183, 193, 265, 267, 293, 319, 337, 341, 345, 348, 352, 358, 362, 381, 386, 400, 429, 466, 473, 476, 477, 478, 480, 483], "capture_loc": [381, 483], "capture_output": [348, 480, 483], "capture_pattern": [427, 431], "captured_stderr": [362, 483], "captured_stdin": 362, "captured_stdout": 362, "capturestderr": 348, "capturewarn": [267, 400], "capword": [344, 345, 483], "car": 85, "carbon": [468, 475], "card": [231, 295, 318, 319, 436], "cardin": [344, 483], "care": [13, 23, 33, 63, 66, 68, 73, 75, 76, 84, 85, 93, 94, 100, 101, 102, 106, 109, 110, 120, 144, 169, 176, 181, 183, 186, 191, 193, 196, 208, 230, 250, 267, 268, 269, 271, 283, 289, 292, 299, 308, 314, 319, 330, 333, 347, 348, 352, 358, 388, 400, 408, 411, 413, 421, 428, 430, 448, 455, 461, 462, 466, 467, 468, 469, 470, 474, 475, 477, 482, 483], "carel": [464, 483], "careless": 483, "caret": [34, 106, 177, 178, 193, 319, 381, 483], "carey": [473, 483], "carl": [468, 469, 474, 475, 476, 481, 482, 483], "carlier": 483, "carlo": [68, 290, 473], "carlson": [468, 476], "carlton": 474, "carmen": 160, "carneiro": 466, "carri": [92, 93, 101, 158, 184, 186, 191, 265, 267, 275, 283, 292, 318, 340, 388, 410, 426, 429, 435, 436, 467, 468, 469, 478, 481, 483], "carriag": [106, 178, 207, 208, 258, 319, 331, 344, 364, 407, 419, 435, 465, 467], "carrol": 483, "cartesian": [154, 261, 340, 468, 471, 478], "cas": 341, "cascad": [150, 483], "case": [5, 7, 13, 18, 22, 23, 24, 25, 27, 31, 33, 34, 35, 39, 41, 45, 49, 56, 58, 59, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 84, 85, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 107, 109, 110, 112, 117, 120, 122, 124, 133, 135, 139, 141, 144, 146, 149, 151, 155, 158, 159, 163, 167, 169, 173, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 195, 196, 201, 202, 203, 205, 207, 208, 209, 213, 214, 215, 220, 225, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 255, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 314, 319, 324, 325, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 362, 365, 366, 369, 375, 376, 378, 382, 384, 386, 387, 394, 395, 399, 400, 405, 410, 411, 413, 415, 416, 420, 421, 425, 428, 429, 430, 431, 432, 435, 436, 441, 443, 450, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "case_block": [427, 431], "case_sensit": [296, 474, 483], "casefold": [108, 109, 120, 143, 160, 261, 344, 476, 478, 481, 483], "caseless": [109, 344, 476], "cases_gener": 483, "cast": [7, 33, 42, 45, 58, 61, 64, 73, 76, 96, 176, 186, 344, 381, 386, 476, 480, 481, 483], "cat": [94, 102, 106, 160, 230, 287, 348, 441, 451, 453, 475, 478], "catalin": [476, 483], "catalina": 483, "catalog": [68, 246, 462, 463, 465, 483], "catalogu": 463, "catastroph": [214, 475, 483], "catch": [23, 42, 68, 85, 92, 95, 102, 109, 110, 120, 139, 167, 193, 213, 244, 255, 267, 292, 293, 315, 322, 331, 333, 340, 348, 362, 388, 395, 408, 428, 430, 462, 465, 467, 468, 469, 470, 474, 475, 476, 477, 479, 482, 483], "catch_threading_except": [362, 483], "catch_unraisable_except": [362, 483], "catch_warn": [362, 400, 468, 473, 474, 483], "catchbreak": 388, "categor": [183, 292, 319, 400, 430], "categori": [32, 68, 84, 101, 106, 109, 133, 213, 225, 241, 266, 269, 315, 319, 340, 344, 362, 387, 394, 435, 455, 462, 463, 467, 468, 470, 475, 480, 483], "cater": [102, 193, 268, 269], "cathedr": 426, "catherin": 93, "cathi": 480, "catstr": 362, "catucci": [475, 477], "cauet": [478, 483], "caught": [23, 100, 115, 120, 139, 152, 157, 213, 283, 293, 302, 305, 323, 332, 333, 337, 340, 352, 362, 366, 369, 388, 414, 423, 427, 428, 436, 443, 463, 468, 470, 477, 481, 483], "caus": [5, 9, 23, 33, 42, 47, 51, 59, 61, 63, 64, 66, 73, 75, 76, 77, 85, 95, 101, 102, 106, 110, 112, 115, 120, 122, 133, 135, 138, 139, 151, 152, 155, 158, 159, 163, 167, 169, 176, 177, 186, 190, 191, 193, 205, 208, 212, 213, 225, 228, 242, 245, 247, 248, 250, 255, 258, 262, 266, 267, 269, 271, 275, 276, 282, 283, 293, 297, 299, 302, 308, 313, 314, 319, 328, 330, 333, 334, 337, 340, 341, 344, 345, 352, 353, 356, 358, 362, 364, 365, 366, 376, 386, 388, 395, 400, 405, 410, 411, 415, 419, 422, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "causa": 103, "causal": 483, "caution": [68, 73, 85, 128, 190, 268, 292, 293, 296, 348, 413, 467, 483], "cautionari": [425, 466], "cautious": [120, 271, 394], "caveat": [13, 61, 68, 115, 192, 246, 250, 255, 308, 311, 428, 436], "caviti": 376, "cazabon": 469, "cb": [169, 261], "cb_result": 386, "cb_type": 341, "cba": 319, "cbc": [167, 337], "cbreak": [92, 177, 383, 483], "cbresult": 75, "cbrt": [275, 343, 473, 483], "cbs": 344, "cbuiltin": [299, 471], "cc": [160, 203, 209, 261, 271, 335, 361, 456, 465, 474, 476, 483], "cc0": 235, "ccach": 483, "ccbench": 469, "ccc": [223, 347, 376, 476], "cccccccccc": 347, "ccitt": [146, 349], "ccompil": 483, "ccp": 467, "ccs": [209, 341], "ccshare": 456, "cd": [117, 120, 190, 261, 295, 388, 417, 468], "cdata": [142, 176, 314, 410, 415, 416, 483], "cdata_section_nod": 410, "cdatasect": [68, 273], "cddb": 468, "cdecl": 176, "cdef": 261, "cdefg": 291, "cdf": [343, 481], "cdf246": 468, "cdfo": 103, "cdio": [479, 483], "cdll": [176, 467, 481, 483], "cdplayer": 468, "cdr": 85, "cdrom": [479, 483], "cdt": 183, "ce": [344, 461, 462, 483], "ce46195b56a9": 477, "cea": [468, 469, 476, 479, 480, 483], "ceas": [474, 483], "cedilla": [387, 430], "ceil": [221, 275, 289, 322, 344, 428, 468, 481, 483], "cela": 200, "celebr": 275, "celementtre": [68, 254, 273, 467, 475, 476, 483], "celeri": 340, "cell": [16, 27, 66, 68, 85, 92, 93, 176, 177, 191, 226, 255, 376, 385, 428, 468, 473, 483], "cell_cont": 428, "cellobject": [473, 483], "celltyp": [385, 483], "cellvar": [13, 225, 483], "celsius": 343, "celtic": 158, "cem": 483, "center": [150, 155, 177, 186, 248, 255, 344, 345, 369, 376, 384, 426, 428, 446, 466, 468, 476, 483], "centimetr": 369, "cento": [223, 473, 475, 480, 483], "central": [158, 183, 194, 205, 287, 343, 462, 463, 464, 465, 467, 475, 483], "centrum": [33, 69, 426], "centuri": [183, 366, 475, 483], "cepl": [478, 482, 483], "cere": 343, "cern": 395, "cert": [341, 460, 469, 477, 483], "cert_": 341, "cert_byt": 341, "cert_fil": [242, 395, 474, 483], "cert_non": [341, 483], "cert_opt": [341, 483], "cert_requir": [341, 483], "cert_store_stat": [341, 477, 483], "cert_tim": 341, "cert_time_to_second": [341, 478, 483], "certain": [7, 23, 33, 41, 42, 49, 58, 59, 63, 66, 73, 77, 85, 92, 94, 95, 101, 102, 106, 120, 133, 144, 158, 173, 176, 183, 190, 193, 195, 196, 199, 203, 205, 206, 208, 209, 234, 247, 255, 266, 267, 268, 269, 270, 271, 272, 283, 292, 293, 295, 297, 307, 308, 337, 341, 346, 348, 354, 358, 365, 366, 369, 386, 387, 388, 394, 410, 419, 428, 430, 432, 435, 461, 462, 463, 464, 465, 466, 468, 469, 471, 474, 476, 477, 480, 481, 483], "certainti": [73, 405], "certchain": 341, "certfil": [223, 248, 305, 335, 341, 462, 474, 479, 483], "certif": [68, 133, 136, 223, 242, 248, 269, 305, 362, 395, 419, 468, 474, 480, 483], "certifi": 483, "certificate_verify_fail": 341, "certificateerror": 341, "certificaterequest": 341, "cervant": 483, "ceval": [96, 472, 483], "cf": [66, 106, 337], "cf68fb5761b9c44e7878bfb2c4c9aea52264a80b75005e65619778de59f383a3": 235, "cf9": 84, "cf_feature_vers": [66, 481, 483], "cf_flag": [66, 481], "cfbundleallowmixedloc": 483, "cffi": [73, 74, 91, 186, 483], "cfg": [34, 85, 167, 268, 334, 354, 384, 399, 461, 468, 476, 478, 479, 483], "cfg_builder": 483, "cfgoptimizationtestcas": 483, "cfgparser": 167, "cfield": 483, "cfile": [85, 311], "cflag": [72, 104, 306, 361, 456, 465, 483], "cflags_alias": 456, "cflags_nodist": [456, 483], "cflagsforshar": 456, "cfmakecbreak": [383, 483], "cfmakeraw": [383, 483], "cfmfile": 468, "cfoo": 228, "cframe": 473, "cftuvsux": 89, "cfuhash": 68, "cfunctyp": [176, 483], "cfutur": 483, "cget": [372, 376], "cgi": [68, 110, 245, 254, 327, 328, 350, 395, 396, 407, 420, 462, 468, 472, 473, 474, 475, 477, 479, 480, 481, 482, 483], "cgi_directori": 245, "cgihandl": 407, "cgihttprequesthandl": [245, 483], "cgihttpserv": [470, 483], "cgirequesthandl": 483, "cgitb": [68, 151, 254, 350, 473, 474, 483], "cgixmlrpcrequesthandl": [68, 256, 466], "cgo": 483, "ch": [64, 92, 101, 102, 158, 177, 190, 395, 462, 483], "chacha": 235, "chacha20": [341, 479, 483], "chad": [109, 465, 467, 468, 483], "chaim": 483, "chain": [7, 23, 63, 68, 85, 93, 95, 100, 102, 110, 119, 157, 160, 167, 176, 213, 214, 225, 236, 255, 261, 267, 293, 352, 381, 389, 390, 395, 428, 430, 436, 445, 468, 470, 476, 477, 478, 482, 483], "chainmap": [68, 182, 344, 386, 474, 476, 477, 480, 483], "challeng": [33, 283, 335, 400, 475, 480, 483], "chambon": 469, "chan": [474, 483], "chanc": [5, 59, 75, 101, 102, 139, 250, 365, 467, 474, 481, 483], "chandra": [480, 483], "chang": [13, 17, 22, 23, 27, 33, 34, 39, 45, 54, 55, 58, 59, 60, 61, 63, 66, 68, 72, 73, 75, 76, 77, 79, 92, 93, 94, 95, 96, 102, 103, 105, 106, 109, 110, 112, 113, 115, 120, 139, 149, 151, 155, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 201, 205, 206, 207, 208, 212, 216, 218, 222, 223, 225, 226, 234, 235, 243, 246, 247, 248, 250, 251, 255, 258, 261, 265, 266, 267, 268, 269, 270, 271, 275, 278, 281, 283, 284, 293, 297, 299, 305, 308, 311, 313, 314, 319, 320, 321, 328, 329, 331, 332, 333, 337, 338, 339, 340, 341, 342, 344, 346, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 382, 385, 386, 388, 394, 395, 400, 405, 410, 411, 412, 413, 416, 421, 422, 425, 426, 427, 428, 429, 432, 434, 435, 436, 441, 451, 455, 456, 461, 476, 483, 484], "change_cwd": 362, "change_loc": 475, "change_st": 85, "changeabl": 85, "changelist": 328, "changelog": [68, 307, 469, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 484], "changes_class_v4": 483, "changeset": [475, 477, 483], "changestest": 483, "channel": [109, 117, 133, 141, 176, 201, 212, 268, 283, 295, 336, 337, 341, 349, 464, 476, 479, 480, 481, 482, 483], "channel_binding_typ": 341, "channel_send": 483, "channelid": 483, "chao": 384, "chapman": [84, 466, 481, 483], "chappel": 478, "chapter": [23, 42, 50, 66, 72, 73, 75, 76, 77, 84, 91, 95, 180, 187, 217, 222, 224, 246, 247, 260, 280, 290, 298, 315, 352, 430, 434, 435, 483], "chaput": [478, 483], "char": [5, 7, 8, 9, 10, 11, 13, 14, 17, 18, 22, 23, 24, 25, 26, 30, 31, 33, 34, 35, 39, 40, 41, 42, 43, 45, 48, 49, 51, 53, 54, 58, 59, 60, 61, 63, 64, 66, 72, 73, 75, 76, 79, 96, 98, 121, 146, 158, 176, 177, 202, 247, 262, 282, 344, 345, 347, 367, 369, 386, 413, 428, 440, 465, 467, 468, 469, 472, 477, 480, 481, 483], "char_data": 314, "char_max": 266, "charact": [5, 9, 16, 18, 33, 34, 39, 42, 49, 59, 68, 73, 84, 85, 87, 92, 102, 109, 120, 121, 131, 137, 143, 145, 146, 151, 155, 158, 167, 173, 175, 176, 177, 178, 183, 184, 186, 190, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 208, 209, 213, 214, 220, 225, 228, 231, 239, 244, 245, 247, 248, 250, 251, 258, 265, 266, 268, 271, 272, 282, 283, 285, 288, 293, 296, 299, 307, 314, 319, 320, 321, 323, 331, 332, 335, 337, 338, 340, 342, 344, 345, 346, 348, 352, 358, 359, 361, 362, 364, 366, 369, 375, 376, 387, 388, 394, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 426, 430, 431, 434, 435, 436, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "character": 352, "characterdatahandl": 314, "characterist": [7, 85, 299, 346, 352, 467, 468], "characters_written": [213, 483], "charalampo": [482, 483], "chardet": 481, "charfil": 416, "charg": [110, 250, 426], "charjunk": 190, "charl": [462, 469, 474, 476, 477, 478, 479, 480, 483], "charli": 483, "charmap": 158, "charmap_decod": 483, "charref": 106, "charset": [68, 151, 183, 190, 194, 196, 197, 202, 205, 206, 208, 209, 230, 248, 285, 341, 395, 407, 475, 478, 483], "chart": [93, 109], "chartreus": 94, "chase": 483, "chassi": 475, "chaudhari": 477, "chavez": 483, "chcp": [476, 483], "chdir": [142, 169, 293, 332, 352, 451, 473, 475, 476, 482, 483], "che": 467, "cheap": [85, 176, 299, 483], "cheaper": [68, 381, 480], "cheat": 386, "cheatsheet": 475, "check": [5, 7, 9, 17, 23, 25, 31, 33, 34, 41, 42, 43, 45, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 84, 92, 94, 95, 98, 100, 101, 102, 106, 109, 120, 128, 139, 143, 144, 149, 151, 155, 160, 161, 163, 167, 169, 173, 176, 177, 178, 181, 183, 186, 187, 191, 197, 200, 205, 208, 211, 213, 214, 215, 221, 226, 233, 242, 243, 245, 247, 248, 255, 259, 262, 265, 267, 268, 269, 270, 272, 275, 280, 283, 287, 288, 289, 293, 295, 302, 303, 305, 314, 320, 322, 328, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 357, 358, 362, 363, 365, 375, 376, 378, 382, 384, 385, 386, 388, 395, 399, 400, 413, 416, 419, 422, 424, 427, 430, 431, 432, 436, 446, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "check__all__": [362, 483], "check_cal": 348, "check_choic": 292, "check_circular": 262, "check_complex": 292, "check_crc32": 270, "check_crc64": 270, "check_disallow_instanti": 362, "check_eg_match": [191, 473, 483], "check_environ": 483, "check_exc_match": [191, 473, 483], "check_for_exit": 133, "check_free_after_iter": 362, "check_hash_pycs_mod": 34, "check_hostnam": [223, 242, 248, 288, 305, 335, 341, 395, 413, 474, 479, 483], "check_impl_detail": 362, "check_interrupted_writ": 483, "check_interv": 483, "check_modul": 483, "check_moon": 292, "check_multi_interp_extens": [33, 474], "check_mytyp": 292, "check_no_resource_warn": [362, 483], "check_non": 270, "check_null_allow": 431, "check_ord": 292, "check_output": [193, 348, 469, 477, 483], "check_resource_ok": 169, "check_returncod": 348, "check_same_thread": 340, "check_sha256": 270, "check_small_int": 483, "check_sourc": 34, "check_syntax_error": 362, "check_syntax_warn": [362, 483], "check_unknown": 270, "check_unused_arg": 345, "check_vers": 431, "check_warn": [362, 468], "checkabl": [386, 474, 483], "checkbox": [92, 151, 281, 461], "checkbutton": [375, 376, 483], "checkcach": [265, 483], "checked_hash": 311, "checker": [87, 120, 177, 183, 193, 292, 344, 386, 427, 428, 466, 467, 472, 473, 474, 478, 479, 481, 482, 483], "checkfuncnam": 144, "checkin": 462, "checklin": 483, "checklist": 375, "checkout": [120, 461, 469, 483], "checkpoint": [248, 352], "checkpyc": 483, "checksizeof": 362, "checksum": [146, 337, 358, 422, 424], "checktracecallbackcont": 483, "chees": [340, 441, 454], "cheeseshop": 441, "chen": 483, "chenet": [469, 475], "cheong": [472, 483], "chermsid": 465, "cherniavski": 466, "cherri": 483, "cheryl": [479, 480, 481, 483], "chess": [93, 95, 109, 464, 465], "chessboard": [95, 464, 465], "chestnykh": [235, 479], "chflag": [142, 293, 332, 342, 468, 476, 483], "chgat": [177, 468], "chhina": 474, "chi": [480, 483], "chih": 483, "child": [28, 33, 59, 85, 101, 102, 120, 132, 133, 137, 160, 212, 213, 248, 250, 253, 278, 283, 293, 296, 309, 314, 322, 328, 333, 337, 338, 348, 369, 376, 386, 389, 390, 410, 411, 413, 422, 428, 462, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 481, 482, 483], "child1": [314, 389], "child2": [314, 389], "child_conn": 283, "child_error": 483, "child_nam": 250, "child_stderr": 348, "child_stdin": 348, "child_stdout": 348, "child_stdout_and_stderr": 348, "childless": 469, "childnod": [410, 411, 462], "childprocesserror": [23, 212, 213, 293, 450, 476, 483], "children": [85, 101, 104, 132, 267, 283, 293, 312, 314, 322, 362, 369, 376, 384, 388, 410, 411, 412, 413, 422, 462, 469, 480, 483], "children_system": 293, "children_us": 293, "chines": [158, 466, 483], "chip": [244, 469], "chitespac": 247, "chiu": 483, "chjvymzdqg1ligrlig1hdhjpy2u": 288, "chksum": 358, "chm": 483, "chmod": [84, 102, 142, 151, 293, 296, 332, 342, 358, 438, 460, 472, 476, 483], "cho": [479, 483], "choi": [472, 483], "choic": [7, 68, 73, 84, 85, 89, 102, 110, 118, 151, 193, 225, 230, 247, 255, 267, 268, 271, 283, 292, 308, 314, 318, 324, 326, 329, 330, 341, 343, 344, 347, 375, 431, 434, 441, 451, 464, 467, 474, 475, 478, 479, 480, 483], "choos": [73, 75, 85, 89, 95, 102, 103, 106, 109, 120, 158, 163, 193, 205, 225, 226, 235, 245, 250, 267, 275, 292, 295, 299, 308, 318, 340, 341, 347, 348, 352, 353, 365, 369, 375, 413, 426, 432, 461, 464, 465, 469, 475, 476, 477, 480, 483], "chooser": 370, "chop": [283, 462, 466, 470], "chore": [94, 462], "chores_for_ethan": 94, "chorus": 167, "chose": [106, 250, 293, 434, 467], "chosen": [34, 45, 73, 94, 101, 106, 186, 225, 235, 268, 283, 284, 292, 299, 337, 341, 347, 352, 375, 415, 428, 451, 455, 461, 465, 466, 470, 483], "chowdhuri": 483, "chown": [102, 142, 293, 332, 476, 483], "chowntest": 102, "chr": [85, 109, 225, 240, 314, 387, 428, 450, 467, 469], "chrigstr": 469, "chris": [465, 467, 468, 476, 478, 479, 483], "christi": 483, "christian": [235, 426, 462, 466, 468, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483], "christien": 477, "christo": 475, "christoph": [465, 478, 483], "chrome": [403, 476, 483], "chromium": [403, 476], "chronic": 479, "chronolog": [109, 479], "chroot": [293, 483], "chrtype": 358, "chtype": 483, "chu": [468, 471], "chuck": 483, "chugunov": 483, "chunk": [5, 13, 43, 68, 78, 85, 102, 107, 109, 133, 149, 166, 180, 223, 225, 235, 240, 242, 254, 258, 261, 262, 270, 283, 293, 303, 314, 332, 334, 337, 347, 350, 395, 407, 415, 416, 430, 462, 465, 467, 469, 473, 474, 479, 483], "chunksiz": [149, 166, 283, 303, 478, 483], "churn": 479, "ci": [347, 461, 480, 481, 483], "cid": [197, 200, 337], "cinder": 483, "cipher": [68, 133, 167, 173, 235, 456, 469, 475, 476, 478, 479, 480, 483], "circl": [94, 155, 275, 384, 468], "circuit": [100, 344, 442], "circular": [28, 33, 35, 73, 76, 85, 262, 384, 390, 428, 463, 478, 480, 483], "circumfer": 275, "circumflex": [109, 377], "circumflexequ": 377, "circumst": [23, 42, 92, 94, 102, 103, 151, 167, 243, 267, 270, 292, 293, 322, 332, 395, 403, 428, 436, 466, 477, 481, 483], "circumv": 102, "circus": [186, 225, 439], "cis": 483, "cisco": [259, 483], "citi": [120, 341, 396, 426, 483], "city_list": 95, "city_st": 95, "civil": 183, "cj": 243, "cjk": [476, 483], "cjkcodec": [466, 483], "ck": 477, "cl": [77, 297, 468, 483], "claim": [73, 190, 199, 341, 394, 426, 483], "claird": 84, "clamp": [186, 475, 476, 483], "clang": [456, 474, 477, 479, 483], "clangcl": 483, "clara": 426, "clarendon": 154, "clarif": [64, 432, 483], "clarifi": [106, 467, 468, 475, 477, 483], "clariti": [107, 292, 366, 427, 475, 483], "clark": [426, 476, 483], "clash": [73, 94, 102, 176, 247, 267, 268, 271, 430, 435, 468, 478, 481, 482, 483], "class": [10, 22, 23, 28, 33, 44, 45, 49, 53, 54, 58, 61, 62, 63, 64, 67, 68, 73, 75, 76, 80, 84, 86, 87, 88, 92, 95, 99, 101, 103, 106, 107, 108, 109, 110, 112, 113, 116, 118, 121, 122, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 146, 147, 148, 149, 150, 151, 153, 155, 157, 159, 160, 164, 166, 167, 169, 170, 172, 175, 176, 177, 178, 182, 183, 184, 185, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 211, 218, 219, 221, 222, 223, 224, 225, 226, 227, 232, 234, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 262, 264, 266, 267, 268, 269, 270, 271, 276, 278, 279, 280, 284, 286, 288, 289, 292, 293, 295, 296, 297, 298, 301, 302, 304, 305, 307, 311, 313, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 330, 331, 333, 335, 337, 338, 340, 341, 343, 345, 348, 351, 352, 358, 359, 360, 362, 364, 365, 366, 367, 369, 370, 371, 372, 373, 374, 375, 376, 380, 381, 382, 386, 387, 389, 390, 394, 396, 398, 399, 400, 401, 402, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 429, 430, 431, 432, 433, 434, 436, 439, 441, 443, 445, 446, 450, 451, 452, 455, 461, 462, 463, 465, 466, 469, 470, 471, 472, 474, 475, 477, 478, 480, 481, 482, 483, 484], "class1": [85, 389, 390, 464], "class2": [85, 389, 390, 464], "class_": 230, "class_def": 431, "class_def_raw": 431, "class_definit": 382, "class_method": 389, "class_of_obj": 428, "class_or_inst": 181, "class_pattern": [427, 431], "classdef": [122, 427, 483], "classic": [95, 103, 167, 184, 203, 230, 271, 369, 384, 449, 464, 465, 467, 469, 470, 475, 483], "classif": [266, 292, 435], "classifi": [68, 251, 290, 307, 465, 469, 483], "classify_class_attr": 483, "classinfo": 225, "classinst": 297, "classmethod": [58, 87, 93, 94, 116, 160, 161, 176, 183, 186, 191, 193, 203, 211, 221, 225, 226, 250, 255, 261, 283, 296, 299, 343, 344, 358, 381, 382, 386, 388, 422, 425, 428, 450, 464, 466, 469, 472, 473, 474, 475, 476, 479, 480, 481, 483], "classmethoddescr_cal": 483, "classmethoddescriptortyp": [385, 480, 483], "classnam": [23, 85, 122, 161, 369, 375, 389, 390, 427, 440], "classname1": [389, 390], "classname2": [389, 390], "classobject": [93, 473, 483], "classroom": [384, 483], "classvar": [181, 386, 473, 479, 483], "claud": [478, 483], "claudiu": [477, 478, 483], "claudius": 462, "claus": [23, 68, 95, 102, 115, 139, 169, 213, 255, 283, 297, 314, 340, 344, 352, 362, 428, 429, 430, 435, 436, 443, 462, 467, 468, 475, 477, 480, 481, 482, 483], "clav": 477, "cld_continu": 293, "cld_dump": 293, "cld_exit": 293, "cld_kill": [293, 482, 483], "cld_stop": [293, 482, 483], "cld_trap": 293, "cldr": 425, "clean": [23, 33, 68, 73, 75, 100, 102, 106, 120, 122, 132, 139, 158, 166, 191, 193, 201, 205, 208, 212, 213, 247, 252, 255, 271, 282, 283, 284, 287, 315, 338, 340, 343, 358, 362, 395, 399, 416, 428, 430, 456, 462, 463, 464, 466, 467, 468, 469, 470, 474, 475, 476, 481, 482, 483], "clean_nam": 481, "cleanbyt": 483, "cleandoc": [122, 255], "cleaner": [344, 462, 471, 476, 478, 483], "cleanest": 308, "cleanfutur": 464, "cleanimport": [362, 483], "cleantest": 483, "cleanup": [33, 34, 35, 59, 68, 95, 102, 115, 135, 140, 164, 169, 214, 293, 338, 348, 352, 360, 362, 388, 390, 405, 411, 427, 428, 429, 430, 455, 462, 464, 467, 469, 470, 474, 475, 476, 481, 483], "cleanup_need": 169, "cleanup_resourc": 169, "cleanup_throw": [191, 474], "clear": [13, 22, 27, 32, 33, 35, 45, 47, 58, 61, 63, 67, 68, 73, 75, 76, 80, 85, 92, 95, 98, 100, 102, 103, 106, 109, 110, 120, 138, 155, 158, 160, 161, 167, 169, 177, 186, 191, 193, 205, 216, 223, 226, 243, 247, 250, 255, 265, 267, 269, 271, 276, 292, 293, 297, 302, 319, 320, 332, 333, 337, 340, 344, 352, 353, 358, 362, 365, 376, 381, 382, 383, 384, 386, 388, 389, 390, 399, 400, 413, 423, 427, 428, 430, 442, 449, 456, 461, 462, 464, 465, 467, 468, 469, 474, 475, 476, 477, 479, 480, 482, 483], "clear_all_break": 144, "clear_all_file_break": 144, "clear_bpbynumb": 144, "clear_break": 144, "clear_button": 102, "clear_cach": [216, 425, 477], "clear_cont": [197, 205], "clear_display": 102, "clear_flag": 186, "clear_fram": [381, 477], "clear_glob": 193, "clear_histori": 320, "clear_overload": [386, 473, 483], "clear_session_cooki": 243, "clear_trac": 382, "clear_trap": 186, "clearbreakpoint": 472, "clearcach": 265, "cleardata": 281, "clearer": [95, 193, 292, 344, 462, 463, 464, 465, 466, 468, 480, 483], "clearest": [85, 465], "clearok": 177, "clearscreen": 384, "clearstamp": 384, "cleartext": [173, 269], "clees": [175, 413, 441, 481], "clegg": [480, 483], "clement": [413, 479, 483], "clever": [109, 151, 299, 345, 464], "cli": [68, 234, 251, 340, 362, 455, 477, 480, 483], "click": [102, 151, 177, 189, 247, 293, 358, 384, 426, 461, 476, 479, 480, 481, 483], "clickabl": 483, "client": [60, 68, 73, 84, 93, 101, 102, 107, 110, 126, 142, 144, 151, 158, 164, 167, 170, 194, 196, 241, 243, 244, 245, 248, 251, 254, 256, 259, 267, 269, 288, 293, 299, 305, 328, 329, 335, 337, 338, 340, 359, 362, 365, 384, 386, 394, 395, 409, 410, 417, 418, 420, 426, 441, 451, 464, 466, 468, 474, 476, 481, 483], "client_addr": 170, "client_addr_var": 170, "client_address": [245, 338, 407], "client_auth": [341, 477], "client_connect": 126, "client_connected_cb": [136, 483], "client_context": 341, "client_thread": 107, "clienthello": 341, "clientip": 267, "clientmodul": 73, "clientsess": 169, "clientsocket": 107, "cliff": [465, 469], "climat": 481, "clinic": [68, 479, 481, 483], "clinton": 469, "clip": [47, 56, 177, 436], "clipboard": [247, 369, 479, 480, 481, 483], "clk_id": 366, "clobber": [243, 292, 483], "clock": [68, 85, 118, 131, 139, 183, 308, 322, 384, 468, 476, 478, 479, 480, 481, 483], "clock_": 476, "clock_boottim": [366, 480, 483], "clock_getr": [366, 476], "clock_gettim": [366, 476, 482, 483], "clock_gettime_n": [366, 480, 483], "clock_highr": 366, "clock_monoton": [366, 473, 480, 483], "clock_monotonic_raw": 366, "clock_nanosleep": [366, 473, 483], "clock_process_cputime_id": 366, "clock_prof": [366, 480, 483], "clock_r": 483, "clock_realtim": [366, 473, 483], "clock_seq": 398, "clock_seq_hi_vari": 398, "clock_seq_low": 398, "clock_settim": [366, 476], "clock_settime_n": [366, 480, 483], "clock_tai": [366, 483], "clock_thread_cputime_id": [366, 482, 483], "clock_uptim": [366, 480, 483], "clock_uptime_raw": [366, 481, 483], "clockspe": 223, "clockwis": 384, "clone": [59, 201, 205, 208, 230, 235, 237, 283, 293, 301, 335, 376, 384, 410, 434, 460, 476, 481], "clone_": 293, "clone_f": 293, "clone_fil": 293, "clone_new": 293, "clone_newcgroup": 293, "clone_newipc": 293, "clone_newn": 293, "clone_newnet": 293, "clone_newpid": 293, "clone_newtim": 293, "clone_newus": 293, "clone_newut": 293, "clone_sighand": 293, "clone_sysvsem": 293, "clone_thread": 293, "clone_vm": 293, "clonenod": [410, 483], "closabl": 386, "close": [33, 51, 63, 66, 68, 76, 78, 79, 85, 95, 96, 100, 101, 102, 107, 109, 117, 120, 126, 130, 132, 133, 135, 136, 137, 139, 151, 153, 155, 157, 158, 161, 167, 169, 170, 177, 184, 188, 190, 191, 199, 207, 208, 213, 214, 218, 223, 225, 234, 235, 240, 242, 243, 247, 248, 258, 267, 269, 270, 271, 278, 281, 283, 284, 288, 292, 293, 295, 301, 308, 309, 314, 320, 328, 329, 330, 331, 333, 335, 337, 338, 340, 341, 344, 348, 349, 352, 358, 359, 360, 362, 365, 366, 369, 375, 376, 378, 384, 386, 388, 390, 395, 399, 401, 405, 407, 413, 416, 417, 419, 420, 421, 422, 428, 430, 431, 435, 443, 446, 452, 462, 466, 467, 468, 469, 471, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "close_connect": 245, "close_fd": [293, 348, 466, 475, 480, 481, 483], "close_fil": 169, "close_notifi": 483, "close_rang": 483, "close_when_don": 483, "closeboundarynotfounddefect": 199, "closeconnect": 388, "closed_pattern": [427, 431], "closefd": [24, 188, 225, 258, 283, 470, 483], "closefrom": [482, 483], "closeit": 66, "closekey": 405, "closelog": [142, 356, 474], "closer": [94, 331, 332, 390, 400, 469, 470, 478, 483], "closerang": [293, 468, 483], "closest": [186, 221, 225, 275, 427, 468, 469, 474, 483], "closewalk": 483, "closur": [27, 58, 66, 76, 169, 170, 191, 225, 250, 255, 292, 344, 428, 473, 476, 479, 483], "closurevar": 255, "cloth": 207, "clover": 483, "clr": 110, "clrtobot": 177, "clrtoeol": 177, "cls": [49, 58, 61, 63, 85, 93, 94, 103, 116, 122, 161, 181, 191, 203, 211, 213, 225, 226, 255, 262, 296, 299, 340, 362, 382, 385, 386, 388, 427, 428, 431, 436, 443, 464, 466, 473, 475, 479, 480, 483], "cls_name": [181, 211], "cls_var": 93, "clsname": 93, "clue": 292, "clueless": 483, "clumsi": 476, "clumsier": [463, 464], "cluster": [190, 225, 337, 455, 468], "clutter": [85, 102, 475], "clvxxpq2t2lq5mp2y53vvqfcxywqjhkz": 483, "cm": [85, 139, 169, 362, 388], "cmath": [68, 87, 254, 275, 290, 344, 466, 468, 477, 483], "cmd": [34, 68, 86, 102, 120, 126, 137, 142, 144, 177, 215, 222, 223, 254, 293, 297, 301, 308, 332, 335, 348, 380, 399, 455, 474, 475, 483], "cmd1": 120, "cmd2": 120, "cmd_name": 362, "cmdloop": 155, "cmdqueue": 155, "cmds": 483, "cmode": 384, "cmowz": 344, "cmp": [108, 216, 225, 344, 462, 463, 466, 470, 483], "cmp_func": 176, "cmp_op": 191, "cmp_to_key": [108, 225, 226, 344, 469, 475], "cmpcach": 462, "cmpfile": 216, "cmpfunc": 176, "cmpop": 122, "cmpopexprpair": 431, "cmsg_data": 337, "cmsg_len": [337, 483], "cmsg_level": 337, "cmsg_space": [337, 483], "cmsg_type": 337, "cmu": 483, "cn": [103, 158], "cnf": [375, 460], "cnn": [166, 184], "cnri": [68, 462], "cnt": 160, "co": [13, 31, 58, 66, 68, 76, 120, 166, 256, 337, 353, 362, 466, 475, 480, 483], "co_": [255, 483], "co_argcount": [255, 428, 483], "co_async_gener": 255, "co_cellvar": [13, 255, 428, 473, 483], "co_cod": [13, 255, 428, 473, 483], "co_const": [191, 255, 428, 483], "co_coroutin": [255, 481, 483], "co_extra_freefunc": 483, "co_fastlocalkind": 483, "co_fastlocalnam": [191, 483], "co_filenam": [31, 255, 381, 428, 469, 483], "co_firstlineno": [191, 255, 428, 483], "co_flag": [255, 428, 483], "co_freevar": [13, 255, 428, 473, 483], "co_future_divis": [66, 481, 482], "co_gener": [255, 483], "co_iterable_coroutin": [191, 255], "co_kwonlyargcount": [255, 428], "co_lin": [191, 428, 472, 483], "co_lineno": 483, "co_linet": 483, "co_lnotab": [191, 255, 428, 472, 474, 479, 483], "co_nam": [191, 255, 381, 428, 478, 483], "co_nest": 255, "co_newloc": 255, "co_nloc": [255, 428], "co_nofre": 483, "co_nplaincellvar": 483, "co_optim": 255, "co_posit": [428, 473], "co_posonlyargcount": [255, 428, 481, 483], "co_qualnam": [27, 255, 428, 483], "co_stacks": [255, 428], "co_vararg": 255, "co_varkeyword": 255, "co_varnam": [13, 191, 255, 428, 473, 483], "coalesc": 308, "coars": 480, "coarser": 352, "cobalt": 483, "coccioli": 483, "cocoa": [369, 459, 475, 483], "code": [5, 7, 9, 11, 12, 13, 22, 23, 26, 27, 31, 34, 35, 39, 41, 42, 45, 48, 51, 55, 56, 59, 60, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 80, 84, 87, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 107, 112, 118, 121, 126, 128, 130, 132, 133, 135, 137, 139, 141, 142, 144, 146, 151, 152, 156, 158, 159, 163, 167, 168, 169, 170, 175, 176, 177, 180, 181, 183, 184, 186, 187, 190, 191, 193, 196, 202, 203, 205, 206, 208, 212, 213, 214, 215, 221, 225, 226, 228, 230, 235, 236, 241, 242, 243, 245, 248, 251, 254, 257, 259, 261, 262, 266, 267, 268, 269, 270, 271, 274, 278, 279, 280, 283, 287, 288, 292, 293, 295, 297, 299, 302, 308, 309, 311, 312, 313, 314, 315, 319, 320, 324, 325, 330, 331, 332, 333, 334, 335, 337, 340, 341, 346, 347, 348, 351, 352, 354, 356, 362, 364, 365, 366, 368, 369, 375, 376, 377, 378, 380, 381, 382, 385, 386, 390, 393, 394, 395, 397, 399, 408, 410, 411, 413, 414, 415, 419, 420, 421, 422, 423, 426, 427, 429, 430, 431, 432, 434, 435, 436, 442, 443, 445, 448, 454, 455, 456, 458, 459, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 477, 479, 480, 481, 483, 484], "code_addr": 51, "code_context": 255, "code_debug_rang": 34, "code_info": [191, 475], "code_object": [142, 225, 483], "code_pag": [64, 476], "code_point": 120, "code_s": 51, "codebas": [435, 477, 478, 483], "codec": [16, 34, 68, 87, 109, 145, 195, 201, 202, 213, 225, 254, 258, 293, 335, 344, 363, 422, 448, 451, 461, 462, 464, 466, 467, 470, 473, 478, 479, 481, 482, 483, 484], "codecinfo": [158, 467], "codecnam": 195, "codecontext": 483, "coded_valu": [244, 478, 480, 483], "codegen": 483, "codemod": 122, "codeobj": 191, "codeobject": [428, 473, 483], "codeop": [68, 79, 180, 254, 483], "codepag": [68, 120, 145, 352, 474, 483], "codepath": 483, "codepoint": [64, 247, 266], "codepoint2nam": 239, "coder": 141, "codereview": 469, "codeset": [34, 158, 230, 266, 464, 473, 481, 483], "codetool": 160, "codetyp": [353, 385, 481, 483], "codewarrior": 468, "codit": 138, "coeffici": [186, 261, 343, 345, 465, 477, 483], "coerc": [34, 64, 99, 167, 186, 195, 196, 205, 266, 343, 345, 455, 462, 470, 480, 483], "coerce_c_local": 34, "coerce_c_locale_warn": 34, "coercion": [34, 68, 225, 293, 345, 428, 455, 456, 467, 469, 483, 484], "coexist": 163, "cog": 475, "coghlan": [95, 99, 109, 324, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 480, 483], "cognoscer": 103, "cohen": 483, "coher": [193, 226], "cohort": 343, "coin": 318, "coincid": 103, "col": [92, 177, 247, 261, 345, 478, 483], "col_info": 483, "col_offset": [23, 122, 191, 481, 483], "cold": 483, "cole": [465, 466, 475, 483], "coleman": 483, "colin": [476, 483], "collabor": 465, "collaps": [196, 259, 364, 477, 483], "collapse_address": [259, 478, 483], "collapse_rfc2231_valu": [196, 209], "collat": [87, 266, 340, 473, 483], "collate_revers": 340, "collect": [28, 31, 42, 45, 52, 63, 64, 67, 68, 73, 74, 75, 78, 84, 85, 87, 92, 95, 98, 101, 102, 106, 112, 116, 120, 122, 125, 133, 139, 147, 151, 158, 167, 169, 170, 176, 179, 181, 182, 184, 187, 193, 194, 213, 214, 225, 226, 227, 242, 243, 251, 254, 255, 261, 264, 283, 293, 299, 305, 308, 314, 316, 330, 332, 333, 336, 337, 338, 340, 341, 343, 344, 347, 352, 359, 360, 362, 376, 382, 384, 385, 388, 395, 402, 405, 411, 413, 427, 428, 430, 436, 441, 442, 452, 453, 456, 461, 464, 465, 466, 467, 468, 470, 471, 473, 474, 483, 484], "collecteddur": [388, 483], "collector": [45, 50, 63, 68, 73, 76, 85, 87, 95, 100, 214, 254, 283, 292, 315, 352, 362, 411, 428, 456, 462, 464, 467, 468, 469, 471, 472, 474, 476, 477, 480, 482, 483], "collid": [283, 395], "collin": [95, 468, 469, 478, 483], "collis": [106, 235, 289, 330, 461, 472, 477, 481, 482, 483], "colm": 483, "colno": [262, 319, 478], "colombia": 413, "colon": [5, 106, 183, 193, 196, 199, 205, 208, 228, 230, 242, 255, 259, 267, 271, 297, 302, 319, 335, 345, 377, 378, 395, 400, 410, 427, 430, 431, 435, 443, 455, 456, 461, 468, 469, 479, 483], "colonequ": 377, "color": [68, 87, 94, 102, 155, 160, 162, 177, 189, 211, 222, 240, 331, 368, 369, 370, 375, 376, 378, 405, 428, 441, 442, 472, 473, 475, 479, 480, 483], "color_black": [92, 177], "color_blu": 177, "color_cont": [177, 472], "color_cyan": 177, "color_green": 177, "color_magenta": 177, "color_numb": 177, "color_pair": [92, 177, 483], "color_r": [92, 177], "color_whit": [92, 177], "color_yellow": 177, "colorchoos": [68, 254, 368, 369, 483], "colordeleg": 483, "colored_btn": 376, "colorfaq": 162, "colormap": 466, "colormix": 384, "colormod": 384, "colorpick": 468, "colorsi": [68, 254, 277, 483], "colorstr": 384, "colorstring1": 384, "colorstring2": 384, "colour": [84, 92, 106, 122, 462, 483], "column": [13, 34, 63, 68, 85, 98, 109, 151, 155, 177, 190, 191, 193, 213, 225, 247, 255, 261, 262, 281, 293, 308, 314, 319, 332, 340, 344, 347, 364, 368, 369, 378, 413, 416, 428, 455, 462, 469, 473, 478, 483], "colvin": [482, 483], "com": [1, 68, 69, 73, 75, 80, 84, 85, 93, 101, 102, 106, 110, 136, 162, 166, 176, 183, 184, 200, 243, 248, 261, 288, 297, 307, 318, 319, 326, 340, 341, 344, 388, 395, 396, 398, 405, 413, 419, 453, 454, 459, 461, 464, 466, 467, 468, 469, 474, 475, 476, 477, 478, 481, 483], "com1": 483, "comb": [261, 275, 343, 442, 473, 481, 483], "combin": [7, 23, 33, 49, 56, 58, 63, 64, 68, 72, 76, 85, 92, 95, 100, 102, 106, 109, 110, 117, 120, 139, 158, 160, 163, 169, 176, 177, 181, 183, 186, 189, 193, 203, 205, 208, 211, 243, 244, 245, 247, 250, 258, 261, 266, 267, 283, 292, 293, 295, 308, 318, 319, 322, 328, 329, 331, 334, 335, 337, 338, 340, 343, 344, 346, 347, 348, 356, 358, 369, 376, 386, 387, 388, 394, 405, 406, 423, 426, 427, 428, 430, 432, 435, 436, 446, 456, 462, 466, 467, 468, 469, 477, 478, 479, 480, 481, 483], "combinations_with_replac": [95, 160, 261, 318, 469, 471, 483], "combinator": [68, 261, 318, 471, 481], "combined_exampl": 441, "combo": [375, 376], "combobox": [68, 368, 375], "comboboxselect": 376, "comboboxtest": 483, "come": [33, 64, 71, 75, 84, 85, 92, 93, 101, 102, 103, 109, 110, 151, 158, 161, 169, 177, 181, 186, 193, 209, 226, 235, 244, 250, 292, 295, 299, 319, 320, 334, 338, 340, 341, 344, 355, 369, 376, 386, 395, 399, 410, 415, 427, 428, 432, 434, 435, 441, 461, 462, 463, 464, 465, 466, 468, 477, 480, 481, 482, 483], "comfort": [109, 193], "comma": [5, 34, 68, 78, 94, 112, 151, 175, 186, 193, 242, 248, 266, 267, 268, 271, 292, 319, 344, 345, 362, 377, 380, 395, 400, 427, 428, 430, 431, 436, 442, 455, 466, 467, 468, 469, 470, 472, 474, 477, 480, 481, 483, 484], "command": [23, 33, 34, 66, 68, 72, 73, 77, 79, 85, 101, 102, 104, 109, 112, 118, 119, 137, 142, 151, 155, 157, 164, 177, 185, 187, 193, 206, 214, 222, 223, 225, 228, 230, 234, 245, 247, 248, 251, 254, 255, 262, 264, 267, 268, 272, 283, 288, 292, 295, 301, 305, 308, 309, 313, 324, 331, 332, 334, 335, 340, 341, 344, 352, 354, 359, 362, 363, 369, 373, 375, 376, 382, 384, 400, 403, 407, 413, 420, 421, 428, 429, 436, 448, 451, 453, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 476, 478, 480, 481, 482, 483, 484], "command_lin": [142, 348], "command_line_arg": 160, "commandcompil": 159, "commandlin": 483, "comment": [1, 9, 64, 68, 73, 95, 102, 106, 109, 112, 122, 167, 176, 193, 203, 240, 243, 244, 247, 255, 273, 293, 299, 313, 314, 319, 331, 348, 362, 377, 378, 394, 412, 413, 415, 422, 423, 428, 431, 436, 449, 462, 464, 465, 467, 469, 470, 472, 473, 474, 475, 481, 483], "comment_factori": 413, "comment_nod": 410, "comment_prefix": 167, "comment_str": 344, "comment_url": 243, "commenthandl": 314, "commerci": [92, 295, 426, 468], "commit": [93, 120, 281, 288, 305, 340, 348, 371, 431, 467, 468, 469, 477, 479, 483], "committ": [288, 476], "committe": 468, "common": [5, 7, 23, 33, 34, 58, 63, 68, 73, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 108, 109, 110, 115, 120, 128, 139, 158, 160, 167, 169, 176, 181, 183, 190, 193, 195, 200, 201, 203, 205, 207, 208, 215, 216, 235, 242, 243, 245, 247, 251, 259, 261, 262, 265, 267, 271, 272, 276, 283, 292, 293, 295, 299, 307, 331, 332, 333, 335, 338, 340, 341, 346, 347, 348, 354, 358, 361, 362, 364, 365, 366, 369, 375, 384, 386, 388, 394, 395, 399, 400, 408, 417, 419, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 475, 476, 477, 478, 480, 481, 482, 483, 484], "common_dir": 216, "common_fil": 216, "common_funni": 216, "common_typ": 276, "commondialog": [68, 368, 369, 370], "commoninstal": 483, "commonnam": 341, "commonpath": [294, 478, 483], "commonplac": 475, "commonprefix": [294, 478], "commonwealth": 426, "communic": [33, 68, 102, 126, 133, 137, 193, 212, 242, 245, 247, 254, 257, 269, 283, 293, 299, 305, 309, 333, 337, 338, 341, 347, 348, 365, 376, 386, 419, 426, 462, 466, 467, 468, 478, 480, 481, 483], "communiti": [80, 85, 247, 459, 462, 463, 467, 468, 475, 480], "commut": [208, 261, 474], "comp": [80, 84, 85, 101, 149, 288, 454, 463, 464, 467, 476, 477], "comp_for": 430, "comp_if": 430, "comp_it": 430, "comp_oper": 430, "comp_siz": 452, "compact": [39, 42, 85, 106, 109, 151, 155, 190, 197, 262, 299, 307, 347, 381, 430, 465, 474, 476, 477, 479, 483], "compani": [341, 461, 467, 468, 473, 483], "companion": 465, "companydata": 160, "compaq": 83, "compar": [11, 23, 33, 34, 49, 63, 64, 68, 72, 75, 84, 92, 94, 99, 101, 102, 106, 122, 176, 181, 183, 186, 190, 191, 193, 195, 196, 197, 202, 214, 216, 225, 226, 236, 259, 262, 266, 267, 269, 271, 283, 292, 297, 308, 311, 314, 316, 326, 328, 340, 341, 342, 344, 346, 352, 362, 369, 382, 386, 387, 388, 390, 405, 413, 425, 427, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "comparand": 183, "compare_and_branch": 483, "compare_caseless": 109, "compare_digest": [173, 235, 237, 326, 469, 476, 483], "compare_hash": 173, "compare_network": 259, "compare_op": [191, 475, 482, 483], "compare_op_bitwise_or_pair": 431, "compare_op_gener": 483, "compare_sign": 186, "compare_str": 109, "compare_to": 382, "compare_tot": 186, "compare_total_mag": 186, "comparison": [23, 49, 63, 64, 68, 74, 95, 109, 112, 160, 161, 173, 176, 181, 183, 186, 190, 191, 193, 216, 220, 225, 226, 255, 256, 266, 283, 291, 344, 346, 352, 353, 362, 386, 388, 405, 413, 419, 428, 431, 433, 435, 442, 449, 455, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "comparison_flag": 193, "compass": 369, "compat": [5, 23, 24, 33, 34, 42, 59, 61, 63, 64, 66, 68, 75, 76, 79, 80, 84, 87, 92, 96, 100, 101, 102, 106, 109, 110, 120, 128, 139, 144, 158, 161, 167, 176, 184, 186, 193, 194, 196, 201, 203, 205, 207, 208, 213, 214, 222, 228, 230, 243, 245, 247, 248, 250, 251, 252, 253, 255, 259, 266, 267, 268, 271, 283, 288, 293, 295, 299, 301, 302, 308, 312, 314, 319, 322, 325, 332, 337, 340, 341, 344, 348, 352, 358, 362, 365, 366, 376, 381, 384, 386, 387, 388, 394, 395, 397, 411, 419, 421, 422, 425, 427, 428, 430, 432, 435, 436, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "compat32": [68, 194, 195, 198, 201, 202, 205, 206, 207, 208, 209, 285, 476, 478, 479, 483], "compat_smtp": 208, "compat_strict": 208, "compat_strict_smtp": 208, "compel": [268, 469], "compens": [84, 308, 479, 483], "compet": 475, "compil": [13, 31, 33, 34, 42, 45, 58, 59, 63, 66, 68, 74, 76, 77, 79, 84, 85, 86, 95, 96, 102, 109, 112, 113, 122, 142, 157, 159, 163, 167, 176, 180, 182, 184, 191, 193, 213, 220, 225, 230, 235, 242, 247, 248, 250, 252, 255, 268, 270, 274, 308, 311, 314, 319, 320, 324, 331, 340, 341, 344, 345, 347, 351, 352, 355, 359, 362, 381, 385, 386, 387, 388, 400, 410, 422, 426, 428, 429, 432, 434, 435, 436, 440, 450, 455, 458, 461, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "compile_": 483, "compile_command": [157, 159, 483], "compile_dir": [163, 478, 480, 483], "compile_fil": [163, 478, 483], "compile_path": [163, 478], "compile_sourc": 483, "compile_typ": 351, "compileal": [68, 85, 156, 254, 264, 311, 352, 450, 456, 461, 474, 475, 479, 483], "compileall_opt": [456, 474, 483], "compileflag": 193, "compiler_flag": [113, 225], "compilerflag": 113, "complain": [63, 76, 102, 169, 247, 463, 483], "complaint": 463, "complement": [96, 106, 319, 384, 428, 476, 480, 482, 483], "complementari": [275, 318, 408, 469, 475], "complet": [23, 33, 34, 42, 59, 64, 66, 68, 73, 75, 76, 77, 87, 92, 94, 95, 100, 102, 103, 106, 117, 120, 126, 133, 136, 137, 139, 151, 154, 155, 157, 158, 159, 163, 166, 167, 169, 177, 181, 183, 186, 190, 193, 194, 196, 202, 203, 205, 206, 207, 208, 223, 226, 230, 233, 235, 245, 255, 259, 261, 262, 267, 268, 269, 271, 272, 276, 281, 283, 284, 292, 293, 295, 297, 299, 308, 316, 319, 322, 323, 328, 331, 332, 334, 337, 338, 340, 341, 342, 344, 348, 352, 353, 354, 358, 361, 362, 363, 365, 368, 369, 375, 376, 378, 380, 381, 384, 386, 388, 394, 395, 408, 410, 411, 413, 416, 427, 428, 429, 430, 432, 434, 445, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "complete_": 155, "complete_foo": 155, "complete_stat": 340, "completedefault": 155, "completedprocess": [348, 478, 483], "completekey": [155, 297], "complex": [2, 5, 13, 15, 68, 72, 73, 75, 84, 85, 87, 102, 106, 120, 128, 132, 154, 161, 167, 170, 175, 184, 186, 190, 194, 200, 203, 225, 226, 254, 262, 268, 275, 289, 290, 292, 299, 307, 319, 333, 334, 345, 348, 352, 358, 384, 386, 419, 427, 430, 435, 436, 440, 449, 450, 455, 464, 466, 467, 468, 469, 471, 472, 473, 475, 477, 479, 480, 481, 482, 483], "complex_funct": 386, "complex_numb": 431, "complexencod": 262, "complexvalu": 225, "compli": [186, 262, 271, 314, 426, 468, 483], "complianc": [68, 186, 194, 203, 208, 285, 288, 410, 476, 477, 483], "compliant": [102, 112, 146, 183, 194, 195, 196, 201, 202, 203, 207, 208, 209, 215, 235, 262, 271, 311, 331, 340, 366, 394, 407, 426, 430, 464, 467, 469, 474, 476, 479, 480, 483], "complic": [33, 63, 73, 92, 94, 95, 100, 103, 106, 109, 110, 141, 158, 169, 176, 181, 190, 193, 215, 226, 243, 292, 299, 319, 366, 428, 430, 462, 464, 465, 466, 467, 468, 469, 471, 475, 483], "compnam": [117, 349, 401], "compon": [33, 42, 45, 64, 73, 85, 93, 101, 102, 106, 109, 110, 139, 158, 160, 177, 183, 186, 194, 208, 225, 230, 243, 245, 250, 251, 255, 281, 293, 296, 319, 331, 332, 344, 345, 352, 353, 355, 356, 358, 366, 369, 376, 384, 385, 386, 394, 395, 405, 410, 415, 420, 422, 425, 428, 432, 435, 455, 461, 465, 466, 468, 469, 470, 474, 475, 477, 478, 479, 480, 483], "componentflag": 281, "compos": [63, 68, 173, 200, 201, 202, 203, 208, 272, 293, 335, 355, 356, 375, 382, 387, 435, 476], "composit": [271, 352, 376, 387, 432, 483], "compound": [2, 68, 222, 247, 345, 364, 369, 375, 376, 427, 431, 435, 468, 476, 483], "compound_stmt": [427, 431, 437], "comprehend": 250, "comprehens": [24, 68, 84, 85, 87, 100, 112, 149, 191, 235, 255, 264, 299, 344, 369, 429, 430, 431, 435, 440, 445, 457, 466, 467, 469, 470, 472, 473, 476, 477, 478, 480, 481, 482, 483, 484], "comprehension_ti": 431, "comprehes": 442, "compress": [33, 68, 95, 99, 102, 117, 119, 133, 158, 167, 200, 218, 234, 235, 259, 261, 276, 281, 295, 299, 332, 336, 341, 342, 349, 358, 401, 421, 422, 424, 451, 464, 465, 467, 469, 471, 475, 476, 477, 478, 479, 480, 481, 483], "compress_s": 422, "compress_typ": [422, 469], "compressionerror": 358, "compressionlevel": 167, "compresslevel": [149, 234, 358, 422, 480, 482, 483], "compressobj": [424, 483], "compressor": [149, 270, 483], "compris": [94, 288, 302, 348, 430, 435, 436, 468], "compromis": 366, "comptyp": [117, 349, 401], "compulsori": [463, 464, 465], "comput": [33, 34, 49, 63, 64, 68, 72, 75, 76, 85, 87, 92, 93, 95, 99, 101, 102, 103, 106, 109, 133, 139, 141, 146, 160, 161, 178, 181, 183, 185, 186, 190, 191, 193, 216, 225, 226, 235, 255, 259, 261, 267, 269, 275, 283, 293, 294, 307, 308, 311, 318, 334, 337, 338, 341, 344, 352, 365, 369, 384, 388, 395, 405, 426, 427, 428, 430, 435, 436, 440, 451, 455, 456, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 477, 480, 481, 483], "computer_nam": [142, 405], "computernam": 405, "computerollov": 483, "computerphil": 109, "comspec": [293, 348, 476, 477], "con": [85, 340, 483], "con1": 340, "con2": 340, "concat": [64, 95, 291, 386, 441], "concaten": [23, 53, 54, 68, 76, 106, 120, 121, 149, 151, 157, 158, 191, 225, 234, 235, 267, 270, 271, 293, 297, 314, 319, 331, 335, 337, 341, 344, 358, 381, 386, 424, 428, 430, 443, 446, 449, 461, 465, 466, 472, 483], "conceal": 478, "conceiv": [299, 358], "concentr": [73, 106, 110, 235, 369, 468], "concept": [68, 92, 95, 99, 100, 101, 109, 139, 167, 186, 194, 244, 250, 258, 261, 283, 301, 309, 340, 344, 358, 365, 368, 384, 386, 412, 413, 427, 432, 464, 465, 470, 476, 477, 478, 483], "conceptu": [93, 95, 101, 120, 141, 194, 196, 200, 205, 250, 253, 345, 386, 400, 432, 480], "concern": [99, 101, 133, 158, 167, 269, 299, 314, 341, 362, 426, 463, 464, 469, 479, 480, 481, 482, 483], "concert": 475, "concis": [95, 99, 167, 267, 292, 340, 428, 462, 466, 475, 479, 483], "conclud": [95, 101, 106], "concret": [23, 33, 68, 75, 76, 94, 106, 122, 176, 183, 187, 197, 208, 219, 230, 250, 253, 258, 268, 292, 296, 329, 338, 344, 347, 352, 365, 388, 394, 410, 417, 425, 432, 464, 465, 468, 476, 477, 480, 482, 483], "concurr": [33, 68, 84, 87, 114, 123, 124, 126, 129, 130, 133, 134, 137, 170, 226, 254, 271, 283, 296, 299, 311, 320, 330, 340, 341, 348, 352, 365, 413, 443, 469, 473, 474, 481, 483, 484], "cond": [96, 138, 144, 352, 386, 467], "conda": 461, "condcom": 240, "condens": [235, 268, 467, 483], "condit": [33, 59, 63, 68, 73, 75, 78, 85, 87, 94, 95, 110, 124, 133, 137, 139, 140, 144, 164, 181, 186, 190, 191, 199, 213, 226, 228, 240, 248, 250, 251, 257, 258, 259, 261, 267, 268, 271, 272, 281, 283, 297, 309, 314, 319, 327, 328, 337, 341, 352, 353, 360, 362, 386, 388, 400, 402, 412, 414, 416, 419, 426, 427, 428, 429, 433, 445, 452, 455, 462, 463, 464, 466, 468, 469, 472, 475, 476, 477, 478, 479, 481, 482, 483, 484], "condition1": 95, "condition2": 95, "condition3": 95, "conditional_express": [430, 435], "conditionn": 95, "conditiontest": 96, "conduc": 207, "conduct_elect": 475, "coneybear": 483, "conf": [101, 102, 106, 296, 452, 465, 475, 483], "confer": [376, 463, 467], "confid": [85, 151, 318], "config": [33, 34, 68, 72, 79, 85, 96, 101, 102, 118, 167, 247, 254, 266, 267, 269, 292, 332, 352, 355, 369, 372, 389, 390, 407, 452, 456, 460, 465, 469, 472, 473, 474, 475, 477, 479, 480, 481, 483], "config_arg": 483, "config_dict": 268, "config_initi": 102, "config_key": 483, "config_listen": 102, "config_sit": [456, 483], "config_str": 34, "config_work": 102, "configchang": 483, "configdialog": 483, "configdialog_tests_v1": 483, "configdict": 469, "configfil": 167, "confighandl": 483, "confighelpsourceedit": 483, "configpars": [68, 114, 217, 254, 268, 331, 462, 466, 469, 470, 471, 473, 477, 480, 483], "configur": [32, 35, 42, 59, 63, 64, 68, 72, 73, 85, 92, 95, 96, 100, 104, 106, 115, 118, 132, 136, 167, 170, 176, 182, 186, 189, 222, 223, 235, 245, 247, 248, 250, 254, 266, 267, 269, 271, 272, 292, 293, 305, 306, 307, 314, 315, 320, 323, 331, 335, 337, 340, 341, 352, 354, 358, 361, 362, 365, 369, 374, 375, 376, 388, 395, 399, 400, 405, 411, 412, 413, 417, 419, 426, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 471, 472, 473, 474, 476, 477, 478, 479, 480, 482, 483, 484], "configure_c_stdio": 34, "configure_cflag": 456, "configure_cflags_nodist": 456, "configure_cppflag": 456, "configure_ldflag": 456, "configure_ldflags_nodist": 456, "configure_local": 34, "configure_log": 102, "configure_mock": [389, 390, 483], "confin": [177, 193], "confirm": [101, 189, 267, 297, 386, 395, 400, 461, 483], "conflict": [68, 73, 102, 103, 106, 110, 120, 167, 230, 241, 352, 384, 405, 413, 426, 455, 461, 475, 477, 480, 483], "conflict_handl": [68, 118, 292], "conform": [28, 63, 68, 94, 101, 146, 151, 167, 183, 186, 201, 203, 208, 209, 211, 225, 242, 245, 247, 250, 252, 266, 267, 273, 299, 314, 352, 394, 411, 413, 419, 425, 428, 456, 466, 470, 471, 476, 477, 479, 480, 481, 482, 483], "conformflag": 211, "confound": 471, "confront": [414, 465], "confstr": [293, 483], "confstr_nam": 293, "conftest": 483, "confus": [63, 72, 84, 85, 92, 96, 100, 102, 106, 110, 157, 176, 186, 190, 193, 225, 259, 269, 292, 293, 299, 319, 333, 358, 369, 395, 428, 430, 435, 436, 462, 463, 464, 465, 466, 467, 469, 471, 474, 475, 477, 479, 480, 481, 483], "congest": 483, "conin": 348, "conjug": [186, 289, 344, 468], "conjunct": [31, 190, 192, 193, 225, 255, 268, 331, 337, 386, 431, 435, 471, 477], "conn": [93, 126, 160, 166, 169, 242, 283, 299, 329, 337, 341, 365, 467, 475, 478], "conn1": 283, "conn2": 283, "connect": [68, 92, 93, 99, 102, 107, 110, 118, 124, 126, 136, 142, 151, 160, 164, 169, 207, 212, 213, 223, 241, 242, 243, 245, 247, 248, 266, 267, 269, 288, 292, 293, 298, 299, 305, 309, 327, 328, 332, 333, 335, 338, 341, 347, 348, 352, 359, 362, 365, 369, 375, 384, 386, 390, 395, 397, 405, 411, 414, 416, 419, 426, 430, 449, 455, 456, 461, 462, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "connect_accepted_socket": [126, 130, 133, 472, 479, 483], "connect_ex": [84, 337, 462], "connect_read_pip": [126, 130, 131, 133, 137, 483], "connect_unix": 483, "connect_write_pip": [126, 130, 131, 133, 137, 483], "connectdb": 365, "connection_handl": [142, 340], "connection_lost": [130, 133, 483], "connection_mad": [126, 130, 133, 483], "connectionabortederror": [23, 212, 213, 450, 476], "connectionerror": [23, 213, 242, 443, 450, 476, 478], "connectionopt": 386, "connectionrefusederror": [23, 212, 213, 450, 476], "connectionreseterror": [23, 137, 212, 213, 242, 450, 476, 483], "connector": 435, "connectregistri": [142, 405], "connid": 102, "connor": [465, 477, 479, 483], "connstream": 341, "conout": 348, "conrad": [482, 483], "consectetur": 149, "consecut": [5, 22, 61, 64, 95, 158, 261, 275, 343, 344, 345, 347, 384, 428, 435, 455, 466, 477, 483], "consensus": 462, "consequ": [33, 42, 63, 73, 85, 161, 167, 191, 255, 283, 293, 314, 333, 337, 344, 352, 413, 428, 430, 434, 467, 469, 470, 474, 475, 476, 477, 478, 480, 483], "consequenti": 426, "conserv": [463, 466], "consid": [33, 34, 39, 42, 49, 55, 56, 63, 64, 72, 73, 75, 76, 85, 92, 93, 94, 95, 96, 99, 100, 102, 103, 106, 112, 120, 128, 144, 151, 163, 167, 176, 177, 181, 183, 184, 186, 190, 191, 193, 196, 204, 205, 208, 225, 226, 228, 230, 235, 243, 250, 252, 253, 255, 257, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 283, 288, 292, 297, 299, 308, 314, 319, 320, 328, 331, 333, 340, 341, 344, 345, 347, 348, 352, 355, 358, 362, 364, 365, 366, 369, 385, 386, 388, 394, 395, 399, 410, 411, 412, 420, 421, 427, 428, 429, 430, 432, 436, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 481, 482, 483], "consider": [68, 73, 85, 100, 101, 118, 164, 177, 181, 193, 223, 242, 248, 256, 271, 288, 305, 335, 340, 395, 410, 433, 462, 465, 466, 467, 469, 474, 476, 480, 483], "consist": [5, 7, 9, 23, 31, 33, 56, 63, 64, 66, 73, 85, 92, 94, 95, 102, 117, 141, 146, 151, 153, 158, 167, 177, 178, 183, 190, 191, 193, 196, 203, 205, 207, 208, 209, 228, 242, 243, 247, 248, 250, 252, 259, 262, 266, 268, 269, 270, 275, 283, 293, 299, 301, 308, 319, 325, 331, 335, 338, 340, 344, 346, 347, 348, 352, 353, 362, 364, 369, 375, 376, 381, 384, 386, 388, 395, 410, 425, 426, 427, 428, 430, 432, 435, 456, 461, 462, 463, 464, 465, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "consistut": 483, "consol": [33, 34, 66, 68, 85, 92, 101, 102, 176, 178, 180, 193, 201, 247, 268, 293, 297, 313, 320, 348, 352, 404, 455, 461, 464, 468, 475, 476, 480, 483], "console1": 102, "console2": 102, "console_prior": 475, "console_script": 251, "consolehandl": 101, "consolid": [96, 163, 284, 465, 476, 479, 483], "consortium": [109, 410], "conspicu": 426, "const": [4, 5, 7, 8, 9, 10, 11, 13, 14, 17, 18, 22, 23, 24, 25, 26, 30, 31, 33, 34, 39, 40, 41, 43, 45, 48, 49, 51, 52, 53, 54, 58, 59, 60, 61, 63, 64, 66, 68, 73, 75, 79, 98, 100, 118, 292, 411, 477, 480, 481, 483], "const_on": 35, "constant": [7, 25, 33, 45, 58, 63, 64, 68, 76, 78, 85, 92, 94, 102, 115, 118, 120, 122, 139, 158, 161, 164, 173, 176, 178, 183, 186, 191, 193, 211, 215, 225, 226, 235, 242, 244, 255, 261, 266, 267, 270, 273, 275, 281, 282, 283, 292, 293, 295, 298, 299, 304, 308, 319, 322, 326, 328, 329, 333, 337, 341, 342, 344, 352, 353, 356, 358, 359, 361, 362, 365, 369, 375, 377, 378, 382, 386, 387, 400, 404, 406, 410, 412, 413, 415, 419, 422, 428, 430, 435, 441, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "constant_factori": 160, "constant_nam": 314, "constantin": 483, "consti": 191, "constitu": [209, 251, 410], "constitut": [190, 259, 331, 394, 426, 483], "constprop": 104, "constrain": [66, 99, 122, 208, 386, 413, 427, 430, 432, 464, 467, 475, 481, 483], "constraint": [95, 122, 186, 191, 267, 293, 299, 307, 344, 386, 394, 427, 429, 431, 432, 467, 468, 470, 474, 483], "constru": 426, "construct": [23, 54, 58, 59, 61, 62, 66, 72, 73, 75, 85, 93, 94, 95, 99, 100, 101, 102, 103, 120, 133, 137, 139, 149, 158, 161, 169, 176, 183, 186, 189, 191, 193, 194, 197, 201, 203, 208, 209, 213, 216, 220, 221, 225, 234, 235, 243, 245, 250, 259, 261, 267, 268, 270, 281, 283, 292, 293, 299, 307, 308, 314, 319, 320, 331, 334, 335, 337, 340, 341, 344, 347, 365, 369, 381, 384, 386, 388, 394, 399, 411, 412, 413, 414, 419, 420, 422, 425, 427, 428, 429, 430, 435, 436, 451, 455, 461, 462, 463, 464, 466, 467, 469, 474, 475, 476, 478, 479, 480, 481, 482, 483], "constructor": [5, 23, 28, 53, 55, 63, 64, 68, 73, 79, 87, 93, 94, 95, 99, 101, 102, 112, 120, 122, 135, 149, 157, 158, 160, 161, 164, 167, 172, 175, 176, 181, 183, 186, 190, 193, 201, 202, 203, 206, 207, 208, 213, 218, 221, 225, 226, 234, 235, 237, 242, 243, 246, 248, 258, 259, 261, 262, 267, 268, 270, 271, 278, 283, 292, 299, 305, 307, 308, 316, 321, 325, 328, 330, 331, 335, 337, 338, 341, 344, 345, 351, 358, 359, 362, 364, 365, 369, 384, 385, 386, 388, 395, 403, 407, 413, 420, 422, 423, 425, 428, 430, 441, 443, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "constructor_ob": 172, "consult": [84, 85, 92, 95, 101, 106, 167, 176, 183, 230, 255, 267, 268, 271, 293, 295, 319, 322, 332, 335, 337, 340, 342, 352, 366, 432, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 482, 483], "consum": [7, 59, 63, 64, 68, 84, 85, 95, 96, 106, 120, 125, 127, 134, 136, 151, 158, 169, 191, 194, 207, 242, 261, 262, 283, 288, 292, 293, 296, 298, 308, 316, 319, 322, 330, 347, 352, 362, 365, 382, 386, 394, 413, 428, 431, 455, 462, 466, 467, 468, 469, 475, 476, 477, 479, 481, 483], "consumpt": [75, 255, 299, 322, 332, 352, 475, 476, 483], "cont": 193, "contact": [395, 407, 483], "contain": [5, 7, 9, 13, 18, 22, 23, 25, 28, 31, 33, 34, 41, 42, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 117, 118, 133, 139, 141, 144, 146, 149, 151, 152, 157, 158, 159, 161, 163, 167, 169, 170, 176, 177, 178, 181, 183, 184, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 225, 226, 230, 231, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 262, 266, 267, 268, 269, 270, 271, 272, 274, 276, 278, 279, 281, 283, 287, 288, 290, 291, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 311, 312, 313, 314, 319, 322, 324, 328, 330, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 446, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "contains_op": [191, 482, 483], "content": [5, 7, 9, 25, 33, 42, 45, 54, 58, 61, 64, 66, 68, 72, 84, 85, 92, 95, 101, 102, 106, 109, 110, 143, 149, 151, 153, 157, 158, 160, 163, 166, 175, 176, 177, 179, 184, 187, 191, 193, 194, 195, 196, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 215, 216, 223, 225, 226, 230, 234, 235, 240, 241, 242, 245, 247, 250, 251, 252, 253, 255, 258, 262, 268, 271, 273, 276, 278, 279, 281, 285, 293, 296, 299, 302, 307, 311, 319, 320, 332, 334, 337, 340, 341, 344, 347, 352, 354, 358, 360, 362, 364, 369, 378, 385, 393, 394, 395, 399, 407, 410, 411, 413, 415, 416, 417, 419, 420, 421, 422, 425, 426, 429, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "content_disposit": 203, "content_length": 483, "content_manag": [197, 205, 208, 477], "content_typ": [200, 203], "contentdispositionhead": 203, "contenthandl": [68, 273, 412, 414, 416, 417, 462], "contentmanag": [68, 194, 206, 285, 477, 483], "contenttooshorterror": [393, 395], "contenttransferencod": 203, "contenttransferencodinghead": 203, "contenttypehead": 203, "context": [11, 17, 23, 33, 42, 45, 49, 54, 64, 66, 68, 73, 78, 79, 85, 87, 95, 96, 100, 109, 120, 122, 123, 124, 126, 128, 129, 132, 139, 151, 152, 160, 164, 166, 167, 183, 184, 187, 190, 191, 213, 218, 223, 225, 230, 235, 242, 250, 251, 252, 254, 255, 262, 267, 268, 269, 270, 271, 278, 288, 290, 293, 295, 297, 298, 299, 305, 307, 308, 314, 315, 316, 319, 321, 322, 328, 329, 330, 335, 337, 338, 345, 348, 352, 358, 359, 360, 362, 365, 368, 375, 377, 386, 388, 390, 395, 399, 405, 410, 412, 413, 414, 415, 419, 422, 427, 429, 430, 435, 436, 456, 462, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "context_diff": 190, "context_expr": 122, "context_manag": 191, "context_use_ps1": 483, "contextbaseclass": 169, "contextdecor": [169, 475], "contextfilt": 102, "contextlib": [68, 78, 187, 254, 261, 315, 340, 344, 382, 469, 470, 471, 481, 483], "contextmanag": [169, 344, 386, 467, 468, 475, 479, 483], "contextu": [68, 190, 267], "contextvar": [17, 68, 87, 126, 129, 135, 139, 164, 186, 254, 456, 483], "conti": 469, "contig": [7, 255], "contig_ro": 255, "contigu": [2, 5, 43, 68, 87, 190, 248, 261, 271, 299, 344, 358, 415, 468, 476, 483], "conting": 255, "continu": [5, 23, 28, 35, 36, 59, 61, 68, 73, 78, 79, 85, 87, 93, 95, 100, 101, 109, 110, 115, 118, 122, 139, 155, 158, 169, 177, 193, 196, 199, 200, 202, 207, 211, 241, 242, 245, 248, 250, 251, 261, 267, 271, 282, 292, 293, 297, 314, 319, 332, 333, 337, 338, 341, 343, 344, 354, 358, 366, 377, 384, 388, 394, 395, 400, 415, 427, 428, 429, 430, 431, 432, 433, 434, 435, 443, 445, 452, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 480, 481, 483], "continuation_w": 202, "continue_loop": [481, 483], "continue_stmt": 436, "contort": 470, "contract": [42, 247, 344, 426], "contractu": 462, "contradictori": 292, "contrari": [7, 61, 190], "contrast": [64, 186, 226, 247, 308, 341, 344, 347, 369, 386, 412, 428, 429, 430, 432, 464, 476, 479, 480], "contravari": 386, "contravent": 196, "contrib": 369, "contribut": [181, 230, 235, 308, 319, 397, 426, 432, 462, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "contributor": [426, 470, 483], "contributori": 426, "contriv": [193, 483], "control": [7, 32, 33, 34, 42, 50, 58, 68, 73, 74, 75, 77, 79, 83, 84, 85, 92, 93, 94, 100, 101, 102, 106, 115, 120, 130, 132, 133, 137, 139, 143, 144, 149, 151, 152, 155, 158, 163, 176, 177, 178, 183, 184, 186, 190, 191, 193, 194, 196, 197, 201, 202, 205, 207, 208, 213, 215, 218, 222, 223, 225, 229, 234, 245, 247, 248, 250, 255, 256, 258, 259, 262, 267, 268, 269, 271, 276, 281, 282, 283, 288, 292, 293, 295, 297, 298, 299, 305, 307, 308, 309, 311, 314, 321, 322, 328, 329, 331, 333, 337, 338, 341, 344, 346, 347, 348, 352, 353, 358, 361, 364, 365, 369, 374, 375, 376, 380, 381, 385, 388, 394, 395, 399, 400, 405, 406, 407, 413, 415, 417, 419, 420, 422, 426, 427, 428, 429, 430, 432, 434, 436, 438, 443, 448, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "control_next": 281, "controlcondit": 281, "controlev": 281, "controlflow": 483, "controlnam": 178, "controversi": [292, 464], "conttyp": 358, "conv": [431, 452, 478], "conv_token": 431, "conveni": [5, 7, 23, 28, 31, 33, 42, 45, 63, 68, 73, 75, 84, 85, 101, 102, 109, 110, 120, 124, 139, 146, 151, 157, 158, 167, 181, 183, 186, 189, 191, 195, 196, 201, 202, 203, 205, 206, 207, 208, 209, 226, 230, 234, 235, 243, 247, 251, 255, 256, 267, 268, 270, 271, 276, 283, 292, 295, 297, 299, 308, 326, 331, 335, 337, 344, 348, 355, 358, 361, 362, 364, 366, 369, 375, 384, 386, 388, 399, 403, 410, 413, 414, 416, 421, 427, 428, 432, 435, 436, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 477, 478, 479, 481, 483], "convent": [58, 61, 63, 73, 85, 92, 93, 100, 101, 102, 109, 167, 176, 177, 178, 181, 183, 209, 228, 230, 243, 246, 266, 271, 292, 293, 295, 345, 352, 362, 364, 366, 395, 399, 428, 430, 434, 435, 452, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 477, 478, 480, 483], "converg": 109, "convers": [5, 9, 18, 33, 34, 63, 64, 68, 72, 92, 93, 118, 120, 122, 133, 146, 158, 167, 183, 186, 195, 225, 254, 256, 258, 262, 266, 271, 276, 290, 292, 293, 299, 337, 341, 345, 347, 348, 352, 358, 378, 385, 394, 397, 426, 427, 431, 433, 435, 450, 455, 461, 467, 468, 469, 470, 471, 472, 475, 477, 478, 480, 481, 482, 483, 484], "conversionerror": [408, 483], "conversionsyntax": 468, "convert": [5, 7, 18, 25, 33, 39, 47, 55, 56, 58, 59, 64, 66, 68, 72, 73, 75, 76, 84, 92, 93, 94, 95, 100, 101, 102, 106, 112, 117, 120, 139, 141, 144, 146, 148, 155, 158, 160, 164, 167, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 209, 213, 215, 220, 225, 226, 230, 244, 248, 259, 261, 266, 267, 268, 269, 270, 271, 275, 276, 283, 292, 293, 298, 299, 301, 302, 307, 309, 319, 335, 337, 342, 344, 345, 347, 352, 358, 362, 366, 376, 378, 383, 388, 394, 398, 400, 405, 411, 413, 415, 419, 425, 427, 428, 430, 435, 436, 443, 446, 451, 455, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "convert_arg_line_to_arg": 120, "convert_charref": [240, 477, 478, 483], "convert_d": 340, "convert_datetim": 340, "convert_field": 345, "convert_point": 340, "convert_timestamp": 340, "convert_to_error": 483, "convertingtupl": 483, "convey": 413, "convinc": [101, 266], "convolut": 261, "convolv": 261, "conway": 483, "cook": [106, 177, 359, 483], "cookbook": [35, 68, 74, 85, 97, 101, 110, 268, 269, 275, 367, 454, 475, 483], "cooki": [68, 110, 115, 235, 241, 254, 256, 258, 341, 365, 378, 395, 466, 468, 469, 470, 478, 480, 483], "cookie2": 243, "cookie3": 243, "cookie_spec": 243, "cookieerror": 244, "cookiejar": [68, 241, 244, 254, 256, 395, 483], "cookielib": [68, 469, 470], "cookiepolici": [68, 256], "coomb": [474, 477, 481, 482], "cooper": [33, 87, 116, 139, 203, 225, 341, 352, 369, 426, 480, 483], "coord": [345, 474, 483], "coordin": [85, 92, 94, 102, 154, 176, 177, 179, 183, 271, 275, 281, 340, 345, 366, 369, 376, 378, 384, 462, 468, 474, 478, 483], "cope": [466, 483], "copi": [5, 7, 9, 17, 25, 33, 34, 42, 43, 55, 58, 63, 64, 68, 73, 77, 80, 84, 85, 95, 100, 102, 112, 120, 133, 139, 151, 158, 160, 166, 167, 170, 172, 176, 177, 181, 182, 183, 186, 191, 193, 200, 201, 203, 208, 213, 215, 219, 225, 226, 230, 235, 237, 244, 247, 248, 254, 255, 258, 261, 267, 268, 269, 271, 276, 278, 283, 284, 292, 293, 297, 299, 301, 302, 309, 319, 330, 340, 344, 345, 347, 348, 352, 355, 358, 362, 372, 382, 384, 385, 388, 389, 390, 395, 399, 400, 415, 416, 421, 424, 426, 428, 440, 441, 442, 461, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "copied_list": 171, "coprim": [261, 344], "coprocessor": 333, "copy2": [84, 332, 475, 476, 478, 481, 483], "copy_ab": 186, "copy_call_arg": 390, "copy_context": 170, "copy_decim": 186, "copy_dict_without_key": 473, "copy_file_rang": [293, 483], "copy_free_var": [191, 473, 483], "copy_funct": [332, 475, 478, 483], "copy_loc": 122, "copy_neg": 186, "copy_nul": 64, "copy_reg": 470, "copy_sign": 186, "copy_str": 483, "copyabl": [399, 483], "copyfil": [84, 142, 332, 451, 469, 477, 481, 483], "copyfile2": 483, "copyfile_acl": 483, "copyfile_stat": 483, "copyfile_xattr": 483, "copyfileobj": [102, 110, 234, 332, 481, 483], "copyingmock": 390, "copyinstr": 98, "copymod": [142, 332, 483], "copyreg": [68, 171, 254, 279, 298, 299, 470, 483], "copyright": [33, 34, 69, 73, 86, 123, 168, 235, 247, 352, 413, 426, 448, 450, 455, 475, 481], "copyright_year_pattern": 481, "copysign": [275, 468, 483], "copystat": [142, 332, 476, 483], "copytre": [68, 84, 142, 219, 468, 469, 475, 481, 483], "corba": 410, "corchero": [472, 480, 483], "corderoy": 468, "core": [23, 28, 33, 34, 59, 68, 73, 96, 101, 106, 118, 163, 167, 205, 235, 250, 251, 261, 266, 269, 292, 293, 308, 313, 322, 333, 344, 362, 365, 369, 385, 399, 410, 413, 425, 428, 436, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 484], "coreconfig": 483, "coredump": [362, 483], "corner": [18, 63, 92, 177, 384, 464, 467, 468, 473, 483], "coro": [125, 126, 128, 135, 139, 478, 483], "coro_clos": 255, "coro_cr": 255, "coro_func": 125, "coro_run": 255, "coro_suspend": 255, "corollari": 470, "coroutin": [16, 26, 68, 87, 95, 123, 124, 125, 126, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 161, 169, 182, 186, 191, 213, 315, 344, 352, 353, 386, 388, 389, 430, 456, 467, 473, 474, 479, 480, 481, 482, 483], "coroutine_mock": 389, "coroutinetyp": [385, 478, 483], "corowrapp": [473, 483], "corp": 464, "corpor": [69, 426], "correct": [7, 25, 33, 45, 63, 64, 66, 71, 73, 76, 77, 85, 93, 94, 95, 96, 99, 100, 102, 103, 109, 110, 112, 117, 120, 133, 151, 158, 169, 176, 183, 186, 191, 193, 196, 197, 199, 203, 208, 209, 216, 225, 243, 247, 248, 259, 266, 275, 278, 283, 289, 292, 293, 295, 299, 314, 324, 331, 332, 337, 340, 341, 343, 344, 345, 347, 348, 352, 358, 362, 366, 369, 384, 386, 388, 405, 415, 421, 425, 426, 428, 430, 432, 435, 444, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "correct_rgba": 449, "correl": [250, 253, 343, 472, 474, 483], "correspond": [5, 9, 18, 22, 23, 31, 33, 45, 49, 56, 58, 61, 63, 64, 68, 71, 73, 75, 76, 79, 85, 92, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 115, 117, 120, 122, 128, 133, 137, 139, 146, 155, 158, 163, 167, 170, 176, 177, 178, 183, 184, 186, 189, 191, 193, 199, 208, 209, 212, 213, 218, 222, 225, 226, 230, 233, 235, 243, 245, 247, 248, 250, 251, 255, 259, 261, 262, 266, 267, 268, 269, 271, 283, 292, 293, 295, 307, 308, 314, 319, 329, 331, 332, 333, 334, 335, 337, 339, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 364, 365, 366, 369, 375, 376, 381, 386, 387, 388, 394, 397, 399, 403, 406, 410, 411, 415, 417, 419, 422, 423, 427, 428, 429, 430, 431, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "corrupt": [42, 59, 93, 109, 146, 177, 184, 212, 215, 243, 270, 271, 283, 299, 330, 340, 344, 358, 461, 480, 481, 483], "cos": [154, 186, 221, 275, 299, 451, 465, 481], "cosbuc": 483, "cosh": [154, 275], "cosin": [186, 275], "cost": [72, 85, 167, 183, 190, 226, 235, 243, 250, 293, 344, 367, 369, 381, 390, 422, 428, 462, 465, 468, 469, 473, 477, 483], "costa": 413, "coudert": 481, "could": [7, 22, 23, 27, 31, 33, 39, 42, 47, 56, 61, 63, 73, 76, 77, 85, 92, 93, 94, 95, 100, 101, 102, 103, 109, 110, 112, 120, 128, 129, 132, 133, 135, 138, 141, 151, 155, 167, 176, 177, 183, 193, 200, 201, 206, 208, 216, 225, 226, 228, 230, 245, 247, 255, 259, 261, 262, 267, 268, 269, 271, 283, 292, 293, 295, 296, 297, 299, 308, 311, 314, 319, 321, 329, 331, 333, 337, 340, 348, 352, 358, 362, 365, 369, 382, 386, 388, 394, 395, 397, 410, 422, 425, 428, 430, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "couldn": [73, 106, 110, 190, 293, 333, 340, 386, 423, 463, 464, 467, 469, 474, 479, 483], "council": [113, 483], "counsil": 473, "count": [5, 7, 9, 33, 34, 35, 45, 54, 58, 63, 64, 68, 74, 75, 76, 78, 80, 84, 85, 87, 89, 93, 94, 95, 96, 100, 102, 106, 120, 121, 126, 139, 144, 146, 148, 151, 160, 161, 176, 177, 190, 191, 193, 196, 208, 211, 218, 226, 236, 247, 248, 250, 255, 261, 267, 271, 278, 281, 283, 284, 288, 292, 293, 297, 299, 305, 308, 318, 319, 328, 331, 337, 340, 341, 344, 345, 347, 352, 362, 364, 365, 366, 369, 380, 382, 388, 395, 400, 413, 428, 430, 435, 436, 442, 446, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 481, 483], "count0": 227, "count1": 227, "count2": 227, "count_alloc": [469, 479, 482, 483], "count_diff": 382, "count_own": 96, "count_vowel": 226, "count_word": 386, "countcal": 380, "counter": [63, 68, 73, 76, 85, 87, 95, 182, 190, 191, 200, 236, 283, 292, 293, 343, 344, 365, 366, 386, 388, 430, 440, 464, 466, 467, 468, 469, 471, 475, 476, 481, 483], "counterclaim": 426, "counterclockwis": 384, "counterfil": 140, "counterintuit": 167, "counterpart": [73, 102, 177, 191, 225, 261, 267, 288, 337, 344, 361, 427, 469, 471, 473, 475, 480, 483], "countfunc": 380, "countless": 462, "countof": [291, 482, 483], "countri": [93, 243, 266, 341, 344, 413, 466], "country_data": 413, "country_data_as_str": 413, "countrydata": 413, "countrynam": 341, "counttestcas": 388, "coupl": [68, 75, 85, 102, 103, 120, 205, 208, 209, 267, 283, 292, 333, 368, 395, 461, 477, 479, 480, 483], "courier": [271, 369, 372, 483], "cournapeau": 469, "cours": [73, 76, 94, 95, 101, 102, 176, 186, 193, 200, 202, 207, 235, 267, 268, 283, 292, 331, 338, 341, 369, 384, 410, 419, 426, 428, 455, 462, 463, 465, 470, 475, 476, 477], "courtesi": 483, "cout": 85, "couzo": 483, "cov": 251, "covari": [343, 386, 472, 483], "cover": [76, 85, 92, 94, 100, 101, 102, 106, 109, 133, 169, 191, 193, 194, 208, 243, 268, 283, 292, 319, 335, 337, 344, 348, 369, 380, 384, 386, 388, 394, 410, 427, 434, 455, 462, 463, 464, 467, 470, 474, 476, 477, 483], "coverag": [33, 85, 352, 380, 470, 472, 474, 477, 483], "coverage_id": 353, "coverageresult": [380, 483], "coverdir": 380, "cow": 477, "cowl": 200, "cowlishaw": 466, "coyot": 243, "cp": [89, 93, 158, 292, 293, 469, 478], "cp037": 158, "cp1006": 158, "cp1026": 158, "cp1125": [158, 477], "cp1140": 158, "cp1250": [158, 167], "cp1251": 158, "cp1252": [87, 158, 448], "cp1253": 158, "cp1254": 158, "cp1255": 158, "cp1256": 158, "cp1257": 158, "cp1258": 158, "cp1361": 158, "cp154": 158, "cp273": [158, 477], "cp35": 483, "cp38": 483, "cp424": 158, "cp437": [158, 422], "cp500": 158, "cp65001": [158, 476, 483], "cp720": [158, 469, 475], "cp737": 158, "cp775": 158, "cp819": 158, "cp850": 158, "cp852": 158, "cp855": 158, "cp856": 158, "cp857": 158, "cp858": [158, 469], "cp860": 158, "cp861": 158, "cp862": 158, "cp863": 158, "cp864": 158, "cp865": 158, "cp866": 158, "cp866u": 158, "cp869": 158, "cp874": 158, "cp875": 158, "cp932": [158, 466], "cp936": 158, "cp949": [158, 466], "cp950": [158, 466], "cp_acp": [64, 158, 476, 479], "cp_oemcp": [158, 479], "cp_utf7": 483, "cp_utf8": [476, 483], "cpanel": 110, "cpathnam": 31, "cpickl": [465, 467, 469, 470], "cplx": 468, "cpp": [465, 483], "cppflag": [456, 465, 483], "cprofil": [68, 156, 185, 467, 483], "cpu": [33, 84, 104, 107, 109, 122, 125, 126, 130, 139, 158, 164, 166, 235, 236, 262, 270, 293, 322, 337, 344, 358, 366, 367, 382, 409, 456, 459, 465, 472, 474, 476, 480, 481, 482, 483], "cpu_bound": 126, "cpu_count": [163, 166, 283, 293, 472, 477, 483], "cpus": [283, 293, 347, 477, 478, 483], "cpy_trashcan_begin": 473, "cpy_trashcan_end": 473, "cpython": [1, 4, 10, 13, 33, 35, 54, 57, 59, 63, 68, 71, 73, 75, 76, 80, 85, 87, 89, 97, 100, 142, 158, 161, 186, 188, 191, 210, 213, 214, 225, 235, 237, 250, 255, 257, 275, 283, 293, 296, 303, 311, 314, 316, 320, 324, 332, 344, 348, 352, 353, 362, 365, 379, 385, 402, 407, 413, 425, 427, 428, 429, 430, 431, 434, 436, 450, 455, 456, 460, 461, 463, 464, 465, 467, 468, 469, 475, 476, 478, 483, 484], "cpython_autoconf": 483, "cpython_on": [362, 483], "cr": [177, 178, 208, 435, 480, 483], "cr_await": [255, 483], "cr_code": 255, "cr_frame": [255, 483], "cr_origin": [255, 352, 483], "cr_run": 255, "crabgrass": 442, "crack": [173, 190], "craft": [201, 299, 432, 475, 483], "craig": [465, 483], "cram": [248, 335], "crash": [13, 33, 43, 57, 63, 73, 75, 96, 100, 140, 151, 176, 184, 188, 214, 247, 250, 271, 283, 292, 297, 299, 330, 352, 362, 456, 462, 467, 468, 474, 476, 477, 479, 483], "crasher": 96, "crawl": [396, 479, 483], "crawl_delay": [396, 483], "crc": [146, 422, 424, 483], "crc32": [146, 235, 424, 451, 452, 483], "crc_hqx": [146, 473, 483], "creat": [5, 7, 9, 11, 13, 16, 17, 22, 23, 24, 25, 27, 28, 31, 34, 39, 42, 43, 45, 49, 51, 55, 58, 59, 60, 63, 66, 67, 68, 73, 75, 76, 77, 88, 92, 93, 96, 100, 101, 103, 106, 107, 108, 109, 110, 115, 117, 120, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 144, 149, 151, 153, 157, 158, 160, 161, 163, 167, 169, 170, 174, 176, 177, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 199, 200, 201, 202, 203, 205, 206, 207, 208, 213, 215, 218, 221, 225, 226, 230, 234, 236, 241, 242, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 278, 281, 282, 283, 284, 288, 293, 297, 298, 299, 302, 305, 307, 308, 312, 314, 319, 322, 323, 328, 330, 332, 334, 335, 337, 338, 341, 342, 343, 344, 347, 348, 352, 354, 358, 360, 362, 364, 365, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 395, 397, 399, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 420, 422, 423, 425, 426, 427, 429, 430, 432, 434, 435, 436, 440, 441, 442, 451, 452, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "create_": 474, "create_accepted_socket": 480, "create_aggreg": [340, 483], "create_arch": [421, 480, 483], "create_autospec": [68, 187, 483], "create_breakaway_from_job": 348, "create_builtin": 483, "create_cal": 390, "create_col": [340, 473, 483], "create_configur": 399, "create_connect": [126, 128, 130, 133, 136, 337, 341, 468, 469, 473, 475, 478, 480, 481, 483], "create_datagram_endpoint": [126, 130, 133, 473, 479, 480, 481, 482, 483], "create_decim": [186, 468, 476], "create_decimal_from_float": 186, "create_default_context": [126, 341, 395, 469, 477, 483], "create_default_error_mod": 348, "create_dynam": 483, "create_eager_task_factori": [139, 474], "create_empty_fil": 362, "create_font_tab": 483, "create_funct": [340, 483], "create_futur": [126, 128, 129, 130, 133, 478, 479, 483], "create_lin": 462, "create_method": 283, "create_model": [386, 473], "create_modul": [45, 250, 423, 432, 472, 478, 479, 483], "create_new_consol": 348, "create_new_process_group": [137, 348], "create_no_window": 348, "create_pars": [414, 416], "create_patch": 390, "create_polygon": 462, "create_serv": [126, 130, 133, 136, 337, 478, 479, 480, 481, 483], "create_stat": 308, "create_string_buff": [142, 176, 467], "create_subprocess_exec": [124, 126, 132, 137, 348, 481, 483], "create_subprocess_shel": [124, 126, 137, 481, 483], "create_system": 422, "create_task": [124, 125, 126, 128, 129, 130, 134, 138, 139, 473, 478, 480, 481, 483], "create_unicode_buff": [142, 176, 483], "create_unix_connect": [126, 130, 131, 133, 136, 483], "create_unix_serv": [126, 130, 131, 133, 136, 480, 483], "create_vers": 422, "create_window_funct": [340, 473, 483], "createattribut": 410, "createattributen": 410, "createcom": 410, "createconfighandl": 483, "createconnect": 388, "createdocu": [410, 411], "createdocumenttyp": 410, "createel": 410, "createelementn": 410, "createexpensiveconnectionobject": 388, "createfil": 142, "createfilehandl": [369, 483], "createjunct": 142, "createkey": [142, 405], "createkeyex": [405, 469], "createlock": [267, 269], "createnamedpip": [142, 483], "createpip": 142, "createprocess": [142, 348, 483], "createprocessinginstruct": 410, "createprocessw": 483, "createrecord": 281, "createsocket": [269, 473, 483], "createtextnod": [410, 411], "creation": [13, 16, 27, 33, 58, 59, 63, 68, 73, 76, 85, 93, 94, 95, 101, 102, 103, 118, 120, 133, 135, 137, 139, 149, 181, 182, 186, 197, 211, 225, 226, 230, 248, 250, 255, 256, 258, 267, 270, 271, 281, 283, 288, 292, 305, 311, 321, 322, 331, 332, 335, 342, 344, 348, 358, 362, 369, 375, 399, 410, 413, 421, 426, 427, 429, 432, 459, 465, 474, 476, 477, 478, 480, 482, 483], "creation_disposit": 142, "creationflag": [137, 348, 466], "creativ": [84, 235, 336], "creativecommon": 235, "creator": [102, 283, 293, 332, 411, 422, 423, 428, 434, 483], "creatur": 94, "creaturedatamixin": 94, "credenti": [269, 288, 337, 395, 461, 478, 483], "credit": [68, 86, 123, 168, 174, 247, 261, 352, 427, 448, 450, 481, 483], "crew": [464, 465, 467], "crimson": 211, "cristi": 474, "crit": 269, "criteria": [101, 248, 267, 308], "criterion": [248, 299, 428, 462], "critic": [39, 75, 87, 101, 102, 191, 250, 267, 268, 269, 292, 406, 432, 451, 452, 465, 467, 468, 471, 473, 475, 478, 483], "crl": [341, 477, 483], "crl3": 341, "crl4": 341, "crldistributionpoint": [341, 477], "crle": 483, "crlf": [64, 223, 244, 245, 480, 483], "crls": [341, 477], "crncystr": 266, "cro": 106, "crochemor": 472, "crompton": [479, 483], "cron": 269, "crop": 362, "cross": [68, 72, 76, 102, 141, 183, 212, 244, 247, 293, 299, 337, 358, 410, 425, 426, 435, 458, 459, 462, 463, 464, 465, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "crossov": 177, "crow": 106, "crt": [42, 68, 282, 341, 469, 477, 483], "crt_assembly_vers": [282, 469], "crtassem": [282, 469], "crucial": [358, 432, 462], "crude": 177, "cruft": 470, "crumb": 193, "crunch": 463, "crutch": 470, "cruz": 483, "crw": [348, 478], "crypt": [68, 174, 254, 310, 350, 426, 473, 474, 479, 483], "crypt_r": 483, "cryptedpasswd": 173, "cryptgenrandom": [293, 473, 483], "cryptic": [151, 483], "crypto": [479, 483], "crypto_auth": 426, "crypto_memcmp": [237, 483], "cryptoapi": 466, "cryptograph": [33, 235, 293, 413, 479], "cryptographi": [235, 337], "cryptographic_hash_funct": 235, "cs": [464, 465], "cs_gnu_libc_vers": 483, "cs_path": 483, "csbig5": 158, "csd": 303, "cserna": [469, 483], "csh": [399, 453, 477], "cshrc": [294, 459], "csi": 212, "csibm273": 158, "csiphash": 426, "csiso2022jp": 158, "csiso2022kr": 158, "csiso58gb231280": 158, "csprng": [341, 483], "csptcp154": 158, "csrc": 235, "csrf": 244, "css": [1, 150, 240, 475, 480, 483], "cssclass": 150, "cssclass_month": 150, "cssclass_month_head": 150, "cssclass_noday": 150, "cssclass_year": 150, "cssclass_year_head": 150, "cssclasses_weekday_head": 150, "csshiftji": 158, "cst": 183, "cstringio": [96, 468, 470], "csv": [68, 100, 160, 217, 254, 362, 451, 465, 467, 471, 479, 483], "csvfile": 175, "csvreader": 175, "csvwriter": 175, "ct": [106, 107], "ct_co": 386, "ctag": 483, "cte": [196, 197, 198, 203, 205, 208, 340, 483], "cte_typ": [201, 203, 208, 476], "ctermid": 293, "ctes": 483, "ctime": [72, 183, 293, 294, 342, 366, 465], "ctname": 102, "ctrl": [23, 86, 92, 102, 126, 135, 168, 178, 283, 297, 333, 338, 340, 441, 455, 462, 467, 475, 481, 483], "ctrl_": 333, "ctrl_break_ev": [137, 293, 333, 348, 469], "ctrl_c_event": [137, 293, 333, 348, 469], "ctx": [17, 23, 42, 102, 122, 170, 186, 283, 341, 468], "ctx_appnam": 102, "ctx_request": 102, "ctxmanag": 472, "ctxmanager1": 472, "ctxmanager2": 472, "ctxmanager3": 472, "ctype": [33, 68, 73, 96, 118, 142, 164, 196, 200, 205, 214, 254, 266, 293, 302, 344, 352, 386, 469, 474, 476, 479, 483], "ctypes_configur": 89, "ctypes_max_argcount": 483, "ctypes_pass_by_ref_hack": 483, "ctypes_unicod": 483, "cube": [275, 343, 449, 483], "cubic": 190, "cucci": 479, "cud": 177, "cud1": 177, "cufr": 483, "cull": 308, "culler": 483, "culprit": 102, "cultur": [106, 230, 266, 319], "cum_weight": 318, "cumbersom": [72, 100, 103, 186, 369], "cumtim": [308, 483], "cumul": [95, 218, 226, 275, 308, 343, 380, 382, 455, 467, 475, 477, 478, 483], "cunha": 472, "cuni": 475, "cup": 177, "cur": [109, 271, 281, 340, 345, 387, 430, 435, 468, 469, 479, 483], "cur_thread": 338, "curabitur": 149, "curdir": [189, 216, 293, 294, 332, 369], "curious": [93, 151, 483], "curl": [243, 460, 461, 483], "curr": 186, "curr_group": 261, "curr_key": 261, "curr_valu": 261, "currenc": [186, 266, 467, 483], "currency_symbol": [266, 452], "current": [5, 7, 11, 13, 17, 23, 26, 27, 28, 31, 33, 34, 39, 41, 42, 43, 45, 49, 53, 59, 61, 63, 64, 66, 68, 73, 75, 76, 79, 84, 89, 92, 95, 96, 99, 100, 101, 102, 106, 109, 110, 115, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 144, 151, 152, 153, 155, 158, 160, 163, 167, 169, 170, 173, 176, 177, 179, 183, 185, 186, 189, 191, 193, 196, 197, 200, 202, 203, 205, 208, 209, 212, 213, 214, 215, 218, 220, 222, 225, 230, 234, 235, 242, 244, 245, 247, 248, 250, 258, 259, 261, 266, 267, 269, 271, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 307, 308, 309, 311, 313, 314, 315, 319, 320, 322, 323, 324, 325, 329, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 353, 354, 355, 356, 358, 362, 364, 365, 366, 369, 375, 376, 380, 381, 384, 386, 388, 394, 395, 398, 399, 400, 405, 406, 408, 410, 411, 412, 413, 415, 416, 419, 422, 427, 428, 429, 430, 431, 432, 435, 436, 451, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "current_directori": 142, "current_limit": 344, "current_offset": [191, 477], "current_process": [102, 283], "current_stack": 483, "current_task": [124, 128, 139, 474, 480, 482, 483], "current_temperatur": 85, "current_thread": [84, 283, 338, 365, 472, 483], "currentbyteindex": 314, "currentcolumnnumb": 314, "currentcontrolset": 461, "currentfram": [255, 473], "currentlinenumb": 314, "currentthem": 483, "currentthread": [102, 190, 365, 472, 483], "currenttim": 420, "currentus": 399, "curri": 95, "currsiz": [226, 475], "curs": [68, 97, 118, 254, 462, 463, 466, 468, 483], "curs_set": [92, 177], "cursor": [68, 92, 155, 160, 175, 177, 247, 298, 299, 320, 369, 375, 376, 390, 467, 468, 471, 475, 479, 481, 482, 483], "cursorfont": 369, "cursus": 149, "cursyncup": 177, "curti": 483, "curtin": [469, 475, 476, 477, 480], "curv": [341, 384, 476, 483], "curve_nam": 341, "custom": [32, 33, 34, 59, 63, 68, 71, 73, 76, 79, 85, 96, 100, 110, 115, 118, 119, 126, 135, 139, 155, 158, 161, 164, 181, 183, 185, 189, 193, 203, 207, 208, 217, 225, 242, 245, 247, 250, 251, 255, 256, 258, 262, 267, 269, 271, 280, 292, 298, 320, 323, 332, 333, 334, 341, 344, 345, 352, 354, 358, 362, 365, 369, 376, 386, 388, 395, 399, 400, 410, 412, 413, 419, 425, 427, 430, 432, 436, 456, 458, 460, 462, 465, 466, 467, 468, 469, 470, 474, 475, 476, 478, 481, 482, 483], "custom2": 76, "custom3": 76, "custom4": 76, "custom_attribut": [102, 267], "custom_clear": 76, "custom_dealloc": 76, "custom_getfirst": 76, "custom_getlast": 76, "custom_getsett": 76, "custom_init": 76, "custom_memb": 76, "custom_method": 76, "custom_nam": 76, "custom_new": 76, "custom_setfirst": 76, "custom_setlast": 76, "custom_task_constructor": 139, "custom_travers": 76, "customadapt": 102, "customari": [186, 364, 426, 455], "customermodel": [386, 473], "customfield": 268, "customformatterfactori": 268, "customhtmlc": 150, "customis": [268, 384], "customiz": [183, 369, 469, 483], "customize_compil": 483, "customlisten": 268, "custommodul": 76, "customobject": 76, "customtyp": 76, "cut": [106, 154, 225, 247, 343, 366, 466, 468, 483], "cuthbert": [481, 483], "cutoff": [190, 483], "cuu": 177, "cuu1": 177, "cv": [365, 384], "cve": [33, 344, 409, 468, 469, 472, 473, 474, 480, 481, 482, 483], "cves": 483, "cvs": [293, 462, 463, 464, 465, 466, 467, 483], "cwd": [96, 142, 223, 293, 296, 348, 362, 399, 466, 481, 483], "cwe": [474, 483], "cwi": [68, 80, 240, 337, 394], "cx": [95, 261, 465], "cx_freez": [68, 85, 283, 458], "cxx": [79, 355, 456, 483], "cy": 261, "cyan": [92, 94, 177, 452], "cycl": [23, 28, 61, 63, 68, 73, 76, 78, 80, 85, 87, 95, 100, 102, 139, 227, 232, 247, 255, 261, 352, 362, 365, 376, 402, 427, 428, 436, 463, 465, 467, 468, 469, 475, 477, 481, 482, 483, 484], "cycleerror": 232, "cyclic": [28, 45, 63, 68, 74, 85, 87, 270, 292, 411, 424, 428, 475, 477, 483], "cygwin": [293, 352, 360, 461, 463, 465, 481, 483], "cynthia": 384, "cypher": 158, "cyril": 158, "cyrus": [248, 483], "cython": [74, 78, 79, 85, 91, 477, 483], "cython_coroutin": 483, "czech": 340, "czotter": 308, "d00": 483, "d1": [84, 469, 482], "d2": [84, 469, 482], "d24f26cf8de66472d58d4e1b1774b4c9158b1f4c": 235, "d25if65hy903weo": 248, "d2i_ssl_sess": 483, "d380000000000p": 344, "d48eceb": 86, "d800": 158, "d_": 269, "d_file_offset_bit": 306, "d_first_inn": 283, "d_fmt": 266, "d_largefile64_sourc": 306, "d_reentrant": 483, "d_t_fmt": 266, "d_type": 293, "da": [186, 261, 319], "dac": 483, "dad": 465, "daemen": 479, "daemon": [33, 101, 102, 269, 283, 316, 335, 337, 338, 365, 366, 402, 465, 468, 472, 476, 480, 482, 483], "daemon_thread": 338, "daft": 102, "daili": [95, 464, 483], "daisi": 441, "dalcrin": 471, "dale": [465, 476], "dalk": [108, 426, 464, 465, 467], "dam": 473, "damag": [31, 299, 358, 386, 426], "damien": [468, 477], "dan": [426, 466, 467, 475, 476, 477, 478, 482, 483], "danc": [384, 442], "danger": [31, 59, 61, 85, 283, 292, 293, 296, 341, 358, 434, 463, 466, 467, 472, 473, 474, 481, 482, 483], "dangl": [33, 63, 73, 77, 87, 293, 332, 344, 362, 427, 483], "daniel": [235, 465, 468, 469, 472, 473, 475, 477, 478, 479, 483], "danish": 158, "daod": 475, "dare": 337, "dark": [464, 483], "darken": 483, "darl": 483, "darren": 476, "dart": 384, "dartiailh": 483, "darwin": [33, 303, 352, 366, 462, 468, 478, 483], "das": [478, 479, 483], "dash": [151, 158, 177, 196, 205, 319, 331], "dashrepl": 319, "dat": [120, 184, 461], "data": [5, 7, 9, 13, 28, 33, 41, 42, 49, 54, 55, 56, 58, 60, 63, 64, 68, 72, 73, 74, 75, 77, 79, 84, 92, 93, 98, 100, 102, 104, 106, 108, 115, 117, 118, 119, 120, 121, 122, 126, 133, 134, 136, 137, 141, 142, 143, 144, 146, 147, 149, 151, 153, 157, 158, 160, 164, 166, 167, 169, 177, 178, 179, 182, 183, 184, 186, 190, 191, 195, 196, 197, 201, 203, 206, 207, 208, 212, 213, 215, 223, 225, 226, 230, 234, 235, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 258, 261, 262, 266, 267, 269, 271, 272, 273, 274, 276, 278, 281, 283, 284, 288, 290, 292, 293, 295, 296, 302, 304, 307, 308, 309, 314, 315, 316, 318, 319, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 355, 358, 359, 360, 361, 362, 366, 368, 375, 376, 379, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 401, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 426, 428, 430, 432, 439, 440, 443, 445, 451, 456, 458, 462, 463, 464, 465, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "data1": [242, 390], "data2": [242, 390], "data_dict": 390, "data_encod": 158, "data_filt": [358, 483], "data_in": 270, "data_open": 395, "data_out": 270, "data_receiv": [130, 133, 483], "data_struct": 468, "data_to_send": 102, "databas": [64, 68, 72, 84, 93, 106, 109, 142, 158, 177, 181, 183, 209, 225, 233, 243, 254, 266, 276, 298, 299, 308, 330, 339, 340, 344, 346, 365, 366, 369, 375, 376, 387, 395, 425, 432, 435, 443, 463, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "databaseconnect": [467, 468], "databaseerror": 340, "databaseprogram": 84, "databasetyp": 181, "dataclass": [68, 108, 160, 211, 236, 254, 307, 308, 315, 316, 340, 344, 386, 440, 441, 483], "dataclass_transform": [386, 473, 474, 483], "dataerror": [340, 483], "datafil": [366, 465], "datagram": [68, 130, 269, 338, 341, 452, 473, 483], "datagram_receiv": [130, 133], "datagramhandl": [68, 101, 118, 268, 477], "datagramprotocol": [133, 473], "datagramrequesthandl": 338, "datagramtransport": [133, 483], "datahandl": [68, 110, 256, 477], "datalen": 269, "datapath": 120, "dataset": [93, 167, 226, 466, 481, 483], "datasourc": 411, "datastack": 483, "datastream": 87, "datatrack": 126, "datatyp": [68, 75, 85, 176, 186, 217, 262, 299, 466, 468, 469, 471, 475, 484], "date": [20, 33, 68, 72, 85, 94, 102, 126, 133, 137, 139, 150, 163, 182, 193, 199, 203, 208, 209, 211, 243, 245, 266, 267, 269, 271, 288, 291, 293, 299, 311, 339, 340, 341, 344, 358, 366, 369, 379, 386, 390, 419, 420, 422, 423, 426, 432, 435, 451, 452, 461, 462, 466, 467, 468, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "date1": 183, "date2": 183, "date_str": 183, "date_tim": [248, 422], "date_time_str": 245, "datefmt": [101, 102, 267, 268], "datehead": 203, "dateprotocol": 133, "datestr": 248, "datetim": [16, 68, 85, 94, 102, 126, 133, 137, 139, 150, 182, 190, 203, 209, 211, 248, 254, 269, 288, 299, 304, 340, 341, 345, 366, 379, 385, 390, 419, 420, 425, 435, 451, 465, 466, 467, 468, 469, 472, 474, 478, 483], "datetime1": 183, "datetime2": 183, "datetyp": 183, "dateutil": [85, 183, 483], "datum": 261, "dave": [93, 108, 465, 466, 469, 475, 483], "davi": [478, 479, 483], "david": [93, 95, 96, 98, 103, 109, 230, 426, 461, 462, 463, 464, 465, 466, 468, 469, 471, 473, 475, 476, 477, 478, 479, 481, 483], "davin": [479, 481, 483], "dawan": 480, "day": [20, 73, 84, 85, 94, 106, 150, 167, 183, 226, 244, 262, 266, 269, 275, 288, 293, 339, 341, 343, 366, 385, 422, 425, 432, 435, 451, 462, 465, 467, 468, 469, 474, 477, 479, 481, 482, 483], "day_": 94, "day_0": 94, "day_1": [94, 266], "day_2": 266, "day_3": 266, "day_365": 94, "day_366": 94, "day_4": 266, "day_5": 266, "day_6": 266, "day_7": 266, "day_abbr": 150, "day_nam": 150, "daylight": [183, 209, 366, 425, 482], "days_to_go": 183, "db": [20, 68, 93, 175, 184, 225, 254, 261, 281, 298, 330, 451, 456, 467, 468, 470, 473, 483], "db00": 259, "db2pickl": 465, "db77e160355": [398, 467], "db8": [99, 259], "db_connect": [467, 468], "db_transact": [467, 468], "dbcs": [64, 158], "dbfilenameshelf": [330, 344], "dbg": 96, "dbhash": 470, "dbl_dig": 352, "dbl_epsilon": 352, "dbl_mant_dig": 352, "dbl_max": [25, 352], "dbl_max_10_exp": 352, "dbl_max_exp": 352, "dbl_min": [25, 352], "dbl_min_10_exp": 352, "dbl_min_exp": 352, "dbm": [68, 84, 254, 298, 299, 330, 428, 456, 469, 470, 481, 483], "dbmlibord": [456, 469], "dbpickler": 299, "dbshelv": 468, "dbunpickl": 299, "dc": [95, 261, 293, 413, 467], "dc1": 178, "dc2": 178, "dc3": 178, "dc4": 178, "dc80": [59, 109, 158, 225], "dcab": 446, "dcba": 465, "dcff": [59, 109, 158, 225], "dcgettext": [230, 266], "dcmp": 216, "dct": 262, "dd": [183, 248, 261, 292], "ddir": [163, 483], "ddl": [340, 479, 483], "ddthh": 183, "de": [7, 12, 23, 28, 41, 68, 74, 80, 103, 119, 177, 230, 243, 252, 261, 288, 299, 344, 358, 386, 394, 419, 472, 473, 474, 477, 479, 480, 482, 483], "de_d": [183, 266, 478], "deactiv": [17, 352, 369, 399, 428, 453, 461, 474, 483], "deactivate_stack_trampolin": [104, 352, 474, 483], "dead": [307, 402, 440, 441, 456, 465, 470, 475, 483], "deaddyt": 483, "deadlin": [139, 325], "deadlock": [33, 96, 137, 166, 212, 214, 267, 283, 293, 316, 338, 348, 352, 365, 428, 468, 475, 476, 483], "deaf": [338, 475], "deal": [42, 63, 64, 68, 72, 106, 109, 120, 125, 157, 158, 194, 196, 197, 205, 225, 258, 266, 282, 283, 292, 299, 318, 325, 337, 366, 384, 394, 413, 426, 431, 462, 464, 465, 466, 467, 470, 476, 478, 483], "deal_with_cli": 341, "dealloc": [9, 13, 22, 28, 33, 35, 42, 45, 52, 63, 64, 73, 75, 76, 87, 100, 362, 402, 436, 456, 463, 464, 469, 473, 475, 481, 483], "dealt": [75, 157, 292], "dean": 483, "death": [333, 476], "deb": 466, "debian": [79, 223, 460, 462, 463, 480, 483], "debnath": [480, 483], "debug": [17, 32, 33, 34, 49, 63, 66, 68, 75, 76, 92, 97, 101, 102, 125, 135, 144, 152, 170, 176, 186, 187, 188, 191, 196, 204, 205, 211, 213, 242, 248, 267, 268, 269, 279, 288, 292, 293, 297, 301, 305, 319, 331, 335, 340, 341, 344, 352, 358, 359, 362, 368, 369, 375, 382, 386, 388, 400, 413, 419, 422, 428, 429, 435, 436, 446, 452, 455, 457, 458, 461, 462, 463, 464, 465, 467, 468, 471, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483], "debug_bytecode_suffix": 250, "debug_collect": 227, "debug_expr": 431, "debug_fp": 102, "debug_leak": 227, "debug_overrid": [250, 478], "debug_saveal": 227, "debug_src": 193, "debug_stat": 227, "debug_uncollect": [227, 475], "debugg": [13, 32, 42, 68, 73, 96, 144, 185, 193, 213, 214, 247, 254, 321, 352, 353, 381, 388, 428, 440, 456, 461, 464, 465, 467, 468, 469, 474, 475, 479, 480, 481, 483], "debugger_id": 353, "debuginfo": 96, "debuginfod": 96, "debuglevel": [242, 335, 359, 395, 478, 483], "debugrunn": 193, "dec": [85, 86, 95, 183, 221, 223, 451, 464, 465, 483], "decad": 483, "decatur": 95, "decemb": [150, 183, 435, 451, 464, 465, 470, 479], "decept": [293, 465], "decid": [28, 34, 76, 85, 95, 101, 132, 139, 144, 157, 169, 183, 193, 243, 269, 337, 338, 352, 365, 386, 428, 432, 436, 467, 469, 474, 483], "decil": [343, 481], "decim": [39, 59, 64, 68, 78, 85, 106, 109, 158, 167, 178, 183, 221, 225, 226, 254, 259, 262, 266, 268, 290, 292, 308, 319, 343, 344, 345, 352, 365, 366, 378, 379, 387, 388, 419, 426, 428, 430, 435, 444, 445, 449, 455, 456, 462, 467, 468, 469, 471, 472, 473, 481, 482, 483, 484], "decimal_point": [266, 344, 483], "decimalexcept": 186, "decimaltupl": 186, "decinteg": 435, "decis": [27, 102, 157, 255, 352, 376, 427, 436, 462, 466, 467, 469, 475, 476, 483], "decistmt": 378, "deck": [160, 318], "decl": 240, "declar": [5, 33, 35, 58, 63, 68, 73, 75, 76, 78, 84, 85, 95, 102, 109, 128, 139, 167, 169, 170, 176, 225, 226, 240, 250, 255, 268, 292, 299, 314, 331, 338, 340, 344, 386, 388, 403, 410, 411, 413, 415, 416, 425, 427, 428, 429, 430, 431, 436, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "declassifi": 106, "declhandl": 415, "declin": 477, "deco": 466, "decod": [23, 33, 34, 59, 64, 66, 68, 72, 73, 87, 102, 109, 121, 126, 133, 136, 137, 141, 143, 145, 146, 176, 188, 196, 197, 199, 200, 201, 202, 203, 204, 206, 208, 209, 213, 225, 235, 244, 250, 258, 270, 285, 288, 293, 299, 304, 317, 337, 340, 341, 344, 347, 348, 352, 358, 359, 362, 377, 378, 394, 395, 397, 399, 419, 422, 428, 432, 435, 451, 462, 464, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 482, 483], "decode_data": [478, 479, 483], "decode_func": 462, "decode_head": [202, 288, 476], "decode_param": 209, "decode_rfc2231": 209, "decode_sourc": [250, 477], "decodebyt": [143, 158, 482, 483], "decoded_seq": 202, "decoded_str": 202, "decodedgener": [201, 479, 483], "decodestr": [317, 482, 483], "decompos": [5, 95, 387, 394, 483], "decomposit": [102, 387, 483], "decompress": [68, 119, 149, 158, 218, 234, 409, 424, 451, 467, 475, 476, 478, 479, 483], "decompressobj": 424, "decompressor": [149, 270, 483], "decompressread": [472, 483], "deconfigur": 101, "deconstruct": 5, "decor": [68, 87, 93, 94, 102, 161, 176, 181, 225, 226, 255, 315, 321, 344, 362, 386, 388, 389, 420, 427, 428, 429, 430, 431, 467, 469, 470, 473, 475, 476, 477, 480, 481, 482, 483, 484], "decorated_foo": 102, "decorator1": 122, "decorator2": 122, "decorator_list": 122, "decoupl": [452, 478, 480], "decreas": [7, 138, 183, 191, 259, 366, 428, 462, 466, 469, 476, 479, 481, 483], "decref": [63, 64, 483], "decrement": [5, 7, 9, 63, 73, 76, 85, 100, 139, 191, 283, 293, 297, 333, 365, 376, 428, 483], "decrypt": [268, 341, 422], "dedent": [120, 247, 364, 377, 378, 427, 431, 435, 483], "dedic": [33, 68, 102, 167, 193, 235, 341, 344, 362, 386, 483], "deduc": [63, 193, 283, 308, 354, 461, 475], "dedupl": 483, "deed": 106, "deem": [59, 207, 230, 269, 344, 426, 462, 463, 467, 469, 474, 475, 476, 477, 483], "deep": [68, 102, 182, 250, 254, 299, 307, 331, 352, 358, 410, 483], "deepchainmap": 160, "deepcopi": [85, 160, 171, 181, 319, 390, 424, 469, 474, 479, 480, 483], "deeper": [93, 110, 167, 183, 193, 307, 352], "deepfreez": 483, "deepli": [101, 362, 435, 462, 468, 483], "def": [7, 17, 22, 35, 45, 61, 66, 68, 71, 72, 73, 76, 79, 84, 85, 87, 88, 92, 93, 94, 95, 100, 102, 103, 104, 106, 107, 108, 109, 112, 114, 116, 120, 122, 123, 125, 126, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 148, 149, 155, 160, 161, 166, 169, 170, 172, 173, 176, 181, 183, 186, 188, 190, 191, 193, 200, 203, 211, 213, 216, 225, 226, 227, 228, 230, 232, 235, 236, 240, 243, 245, 247, 250, 251, 255, 258, 259, 261, 262, 267, 268, 275, 283, 289, 291, 292, 296, 297, 299, 303, 309, 312, 314, 316, 318, 319, 320, 321, 325, 329, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 351, 352, 358, 361, 362, 364, 365, 367, 369, 378, 381, 382, 384, 385, 386, 388, 389, 390, 399, 400, 402, 407, 411, 413, 419, 420, 422, 427, 428, 429, 430, 431, 435, 436, 440, 441, 443, 450, 451, 452, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "def_buf_s": 424, "def_mem_level": 424, "def_prog_mod": 177, "def_shell_mod": 177, "default": [5, 7, 17, 18, 23, 24, 27, 32, 33, 34, 35, 45, 49, 58, 61, 63, 64, 66, 68, 71, 76, 77, 78, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 111, 112, 115, 117, 118, 119, 122, 125, 126, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 214, 215, 216, 218, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 286, 287, 288, 291, 293, 295, 296, 297, 298, 299, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 344, 345, 347, 348, 352, 353, 355, 356, 359, 362, 364, 365, 366, 367, 369, 373, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 398, 399, 403, 405, 406, 407, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 448, 451, 453, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "default_addr": 102, "default_buffer_s": [225, 258, 348, 483], "default_bufs": 412, "default_charset": 195, "default_class": 203, "default_domain": 287, "default_exception_handl": [126, 130], "default_factori": [160, 181, 386, 483], "default_format": [358, 479], "default_ignor": [216, 477], "default_load": 413, "default_logging_config_port": 268, "default_max_str_digit": [34, 344, 352], "default_mod": 176, "default_msec_format": 267, "default_nam": [269, 428], "default_namespac": [413, 469, 483], "default_of_arg": 427, "default_open": 395, "default_pip": 210, "default_protocol": [299, 330, 472, 483], "default_sect": 167, "default_tcp_logging_port": [102, 268], "default_tim": 367, "default_time_format": 267, "default_udp_logging_port": 268, "default_valu": 17, "defaultact": 483, "defaultalluserstargetdir": 461, "defaultcontext": [186, 476], "defaultcookiepolici": [68, 256, 483], "defaultcustomtargetdir": 461, "defaultdict": [68, 87, 182, 344, 386, 467, 475, 483], "defaultdir": 281, "defaulteventlooppolici": [126, 132, 483], "defaultextens": 189, "defaulthandl": 314, "defaulthandlerexpand": 314, "defaultjustformetargetdir": 461, "defaultobj": 22, "defaultsect": 167, "defaultselector": [329, 333, 483], "defaulttest": [388, 477], "defaulttestload": 388, "defaulttestresult": 388, "defaultvalu": [49, 268], "defaultverifypath": 341, "defaultwidgetsizetestcas": 388, "defaultwindowssdkvers": 483, "defcount": 66, "defeat": [85, 106, 400, 428, 483], "defect": [194, 196, 199, 203, 205, 207, 208, 466, 476, 480, 483], "defenc": 96, "defend": [426, 483], "defenestr": 441, "defens": [394, 483], "defer": [63, 68, 73, 101, 160, 193, 246, 269, 278, 340, 341, 356, 463, 468, 474, 483], "deferr": [314, 413, 483], "defg": 261, "defghi": 161, "defi": 465, "defin": [5, 7, 11, 23, 25, 28, 33, 34, 35, 42, 43, 45, 50, 59, 61, 63, 64, 68, 71, 72, 73, 74, 77, 79, 84, 92, 93, 94, 95, 101, 102, 106, 109, 110, 114, 115, 118, 120, 125, 132, 133, 141, 144, 146, 151, 153, 155, 158, 161, 167, 169, 173, 176, 177, 179, 181, 183, 186, 189, 191, 193, 194, 196, 199, 203, 205, 208, 212, 213, 215, 216, 225, 226, 230, 233, 235, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 255, 258, 259, 262, 265, 266, 267, 269, 271, 275, 276, 283, 287, 288, 290, 293, 295, 297, 299, 301, 302, 304, 305, 307, 309, 312, 314, 319, 320, 322, 323, 324, 325, 328, 329, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 361, 362, 365, 366, 369, 375, 376, 377, 380, 381, 384, 385, 386, 387, 388, 389, 394, 395, 397, 400, 403, 405, 408, 410, 411, 413, 414, 415, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 441, 443, 449, 450, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "define_macro": 462, "defining_class": [58, 100, 483], "definit": [13, 31, 33, 39, 45, 50, 58, 59, 64, 68, 73, 75, 76, 85, 87, 92, 94, 99, 100, 102, 103, 106, 109, 112, 120, 144, 158, 161, 169, 176, 177, 181, 183, 225, 226, 230, 232, 247, 250, 251, 255, 256, 267, 269, 281, 283, 289, 292, 299, 308, 312, 313, 324, 335, 340, 344, 345, 352, 359, 364, 366, 377, 384, 385, 386, 387, 388, 395, 408, 410, 411, 414, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 445, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 480, 481, 482, 483], "deflat": [421, 424, 483], "defmacro": 95, "defparamet": 427, "defpath": [293, 332, 483], "defragresult": [394, 475, 483], "defragresultbyt": [394, 483], "defstat": 464, "defunct": 33, "defusedxml": [68, 273], "deg": 465, "dega": 303, "degrad": [177, 475, 483], "degre": [73, 155, 177, 275, 344, 384, 428, 465, 481, 483], "deiconifi": 247, "deili": [469, 475, 477, 481, 482], "deiniti": 177, "del": [49, 54, 58, 68, 73, 76, 85, 88, 93, 100, 103, 122, 144, 160, 178, 191, 196, 205, 225, 227, 230, 236, 247, 255, 271, 283, 284, 291, 292, 293, 296, 299, 330, 344, 389, 402, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 445, 452, 462, 463, 465, 467, 468, 469, 475, 483], "del_param": [196, 205], "del_stmt": [431, 436], "del_t_atom": 431, "del_target": 431, "delattr": [58, 225, 440, 450], "delawar": 341, "delay": [23, 84, 92, 102, 126, 129, 139, 177, 245, 247, 255, 269, 283, 288, 314, 325, 333, 337, 341, 362, 383, 384, 395, 396, 413, 428, 450, 468, 475, 479, 480, 481, 483], "delay_output": 177, "delayfunc": 325, "delayfunct": 476, "delayload": 243, "delch": 177, "dele": 305, "deleg": [42, 63, 68, 101, 102, 225, 226, 234, 267, 268, 269, 275, 299, 324, 385, 388, 428, 430, 432, 470, 473, 475, 479, 481, 482, 483, 484], "delet": [22, 49, 54, 58, 59, 63, 64, 68, 73, 75, 76, 84, 93, 98, 102, 106, 110, 116, 122, 144, 160, 167, 177, 178, 179, 181, 184, 190, 191, 196, 200, 205, 206, 213, 218, 223, 225, 226, 241, 247, 248, 250, 269, 271, 283, 293, 296, 297, 305, 330, 332, 334, 340, 342, 344, 352, 360, 362, 365, 369, 376, 384, 389, 395, 399, 400, 405, 427, 428, 432, 435, 436, 438, 461, 464, 465, 467, 468, 469, 470, 471, 475, 477, 480, 481, 482, 483, 484], "delete_attr": 191, "delete_deref": 191, "delete_fast": 191, "delete_glob": 191, "delete_nam": 191, "delete_nth": 160, "delete_on_clos": [360, 474, 483], "delete_subscr": 191, "deleteacl": [248, 466], "deletefilehandl": 369, "deletekey": [142, 405], "deletekeyex": [405, 469], "deleteln": 177, "deletem": 144, "deletesomethingdb": 388, "deletevalu": [142, 405], "delfino": 483, "delhallt": 483, "deliber": [85, 120, 292, 305, 334, 344, 385, 388, 426, 455, 477], "delic": [33, 63], "delight": 84, "delim": 34, "delimit": [33, 59, 68, 85, 87, 106, 167, 175, 193, 201, 221, 247, 248, 271, 288, 292, 299, 319, 320, 344, 345, 348, 369, 378, 394, 425, 433, 452, 461, 465, 475, 483], "delin": 476, "delitem": 291, "deliv": [101, 110, 133, 183, 225, 328, 333, 335, 376, 390, 430, 468, 483], "deliver_challeng": 283, "deliveri": [196, 200, 205, 207, 271, 293, 333, 337, 483], "deloc": [266, 478, 483], "delphi": 78, "delta": [20, 109, 141, 183, 190, 191, 270, 388, 464, 466, 469, 479, 481, 483], "delx": [93, 225], "demain": 468, "demand": [13, 42, 64, 93, 167, 283, 292, 427, 461, 474, 478, 482, 483], "demey": [472, 479, 481, 482, 483], "demian": [478, 479, 483], "demis": 441, "demo": [68, 89, 102, 222, 247, 411, 420, 451, 465, 468, 475, 484], "demo_app": 407, "demograph": 343, "demonstr": [63, 73, 75, 92, 94, 102, 106, 107, 114, 120, 149, 176, 186, 242, 244, 247, 267, 278, 283, 292, 307, 319, 320, 340, 343, 347, 369, 380, 381, 384, 388, 413, 425, 430, 442, 461, 463, 475, 483], "demot": 483, "demur": [479, 483], "den": 483, "dengler": 483, "deni": [139, 212, 338, 428, 465, 483], "denial": [225, 262, 314, 344, 358, 409, 428, 455, 472, 473, 480, 481, 482, 483], "denmark": 462, "denni": [318, 472, 473, 474, 482, 483], "denomin": [186, 221, 289, 468, 479, 481, 483], "denorm": [275, 352, 483], "denot": [5, 46, 61, 85, 103, 106, 167, 191, 244, 245, 255, 259, 293, 322, 344, 369, 395, 427, 428, 430, 431, 432, 435, 462, 468, 480, 483], "densiti": [68, 290], "denver": [93, 483], "deo": 103, "deopt": 483, "deoptim": 483, "dep": [399, 483], "depart": [160, 225, 344], "depend": [13, 27, 33, 34, 45, 53, 63, 64, 68, 72, 73, 75, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 102, 106, 109, 111, 115, 133, 139, 144, 151, 155, 158, 167, 169, 173, 176, 177, 181, 183, 186, 190, 191, 193, 195, 205, 208, 210, 213, 215, 219, 221, 225, 230, 234, 242, 243, 244, 247, 250, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 279, 281, 283, 288, 293, 299, 308, 309, 314, 315, 319, 322, 328, 329, 330, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 361, 362, 364, 366, 369, 376, 384, 386, 388, 390, 395, 399, 403, 405, 406, 413, 415, 419, 421, 425, 427, 428, 429, 430, 432, 435, 436, 452, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "deploy": [68, 84, 101, 202, 293, 348, 369, 425, 461, 475, 481, 482, 483], "deposit": 475, "deprec": [13, 23, 31, 33, 42, 49, 54, 56, 58, 59, 61, 63, 64, 68, 93, 112, 120, 139, 149, 151, 158, 161, 173, 176, 186, 187, 199, 205, 207, 213, 218, 225, 234, 242, 243, 248, 250, 252, 255, 259, 267, 272, 292, 293, 298, 299, 304, 305, 314, 322, 324, 328, 332, 335, 337, 341, 344, 346, 352, 358, 362, 365, 366, 369, 371, 384, 388, 394, 395, 397, 400, 403, 413, 423, 428, 430, 432, 461, 463, 464, 467, 470, 472, 474, 476, 481, 482, 483, 484], "deprecated_api": 400, "deprecatedlist": 483, "deprecationwarn": [23, 68, 106, 112, 132, 166, 168, 188, 213, 252, 283, 293, 340, 347, 358, 362, 388, 400, 413, 428, 432, 435, 450, 455, 463, 465, 469, 472, 473, 474, 475, 477, 478, 479, 481, 483, 484], "dept": [93, 440, 471, 475], "depth": [23, 91, 101, 103, 142, 163, 167, 177, 179, 184, 191, 196, 205, 213, 235, 270, 299, 307, 321, 340, 352, 358, 362, 375, 381, 385, 388, 412, 413, 462, 463, 464, 478, 479, 480, 483], "dequ": [68, 182, 261, 316, 344, 386, 427, 430, 442, 452, 466, 467, 468, 469, 473, 475, 478, 479, 483], "deque_append_pop": [481, 482], "deque_append_popleft": [481, 482], "deque_clear": 483, "deque_method": 35, "deque_pop": 35, "dequeu": [102, 269, 483], "der": [341, 398, 468, 477, 483], "der_cert_byt": 341, "der_cert_to_pem_cert": 341, "deref": 483, "derefer": [15, 57, 283, 358, 483], "dereferenc": [176, 476, 483], "deregist": 283, "derek": [469, 471], "deriv": [23, 33, 49, 61, 68, 76, 88, 103, 120, 144, 157, 158, 174, 176, 177, 178, 181, 183, 197, 199, 201, 202, 203, 213, 226, 230, 244, 248, 250, 251, 255, 261, 262, 267, 268, 272, 288, 292, 293, 308, 312, 313, 314, 328, 338, 352, 355, 369, 384, 386, 388, 395, 400, 408, 411, 416, 419, 420, 426, 428, 431, 432, 435, 440, 443, 462, 465, 466, 467, 468, 469, 470, 476, 477, 479, 480, 483], "derivedclassnam": 440, "derivedcoreproperti": 435, "dershowitz": [150, 183], "derwin": 177, "derzsi": 483, "des": [173, 310], "desc": [60, 93, 281, 288, 340, 471], "descend": [101, 108, 163, 196, 205, 255, 267, 283, 308, 342, 369, 376, 388, 410, 411, 413, 467, 469, 483], "descent": 372, "descr": [21, 93, 176], "descr_check": 483, "descr_get": 93, "descr_new": 93, "descrgetfunc": [57, 63, 75], "describ": [5, 7, 13, 23, 31, 42, 45, 49, 50, 51, 58, 59, 60, 61, 63, 66, 68, 72, 73, 75, 77, 92, 93, 94, 95, 99, 100, 101, 102, 103, 109, 110, 112, 115, 117, 120, 128, 137, 144, 151, 152, 158, 163, 167, 169, 176, 177, 180, 181, 184, 186, 187, 190, 191, 193, 194, 195, 196, 202, 203, 208, 213, 216, 217, 222, 223, 224, 225, 230, 235, 242, 244, 245, 246, 247, 248, 249, 251, 255, 259, 260, 266, 267, 268, 269, 271, 276, 280, 281, 288, 290, 292, 293, 295, 298, 299, 307, 308, 312, 314, 315, 319, 321, 322, 324, 328, 332, 335, 336, 337, 340, 341, 342, 344, 345, 347, 348, 352, 354, 358, 365, 369, 375, 376, 383, 384, 386, 388, 394, 395, 397, 405, 406, 408, 410, 414, 415, 416, 419, 422, 423, 426, 427, 428, 430, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "descrintro": 103, "descript": [5, 23, 24, 53, 58, 59, 63, 64, 68, 73, 89, 93, 98, 100, 101, 102, 117, 120, 128, 141, 160, 176, 177, 182, 190, 191, 193, 196, 200, 201, 202, 205, 212, 215, 230, 241, 245, 250, 251, 255, 259, 266, 267, 268, 270, 273, 278, 288, 292, 293, 297, 307, 313, 322, 332, 333, 337, 340, 341, 344, 356, 359, 361, 362, 366, 369, 375, 376, 386, 388, 399, 408, 414, 415, 419, 420, 427, 428, 429, 430, 434, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 474, 475, 477, 478, 480, 482, 483], "description_content_typ": 307, "description_unit": 483, "descriptor": [16, 23, 24, 31, 33, 49, 61, 63, 68, 75, 78, 81, 84, 87, 94, 97, 98, 116, 118, 125, 126, 130, 131, 132, 133, 149, 176, 177, 185, 188, 212, 215, 218, 225, 226, 235, 248, 255, 257, 258, 268, 278, 282, 283, 295, 309, 312, 315, 322, 328, 329, 332, 333, 337, 338, 341, 344, 348, 358, 359, 361, 362, 369, 385, 389, 427, 430, 436, 466, 467, 468, 469, 472, 473, 474, 475, 476, 478, 480, 482, 483], "descriptor_nam": 93, "descriptor_typ": 255, "descriptortyp": 483, "descrobject": 93, "descrsetfunc": [57, 63, 75], "deseri": [262, 284, 299, 340, 425, 446, 469, 473, 477, 479, 483], "deserialized_sl": 284, "deserv": [103, 271, 462], "design": [7, 34, 63, 76, 84, 85, 93, 94, 95, 100, 101, 102, 103, 109, 110, 137, 139, 146, 152, 158, 167, 169, 177, 183, 186, 192, 193, 194, 201, 213, 225, 226, 228, 230, 235, 247, 250, 271, 283, 292, 293, 299, 308, 323, 331, 337, 341, 347, 355, 358, 362, 365, 369, 375, 378, 384, 386, 394, 417, 425, 426, 432, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 480, 482, 483], "desir": [7, 9, 23, 33, 42, 61, 73, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 120, 137, 139, 151, 158, 161, 167, 169, 176, 177, 189, 190, 191, 208, 212, 226, 235, 245, 247, 250, 259, 266, 267, 271, 272, 276, 278, 292, 297, 302, 307, 311, 319, 320, 338, 340, 341, 344, 345, 347, 354, 362, 364, 365, 369, 375, 376, 384, 386, 394, 405, 412, 413, 416, 428, 430, 432, 455, 462, 464, 465, 466, 467, 468, 469, 477, 478, 479, 481, 483], "desired_access": 142, "desk": 101, "desktop": [86, 109, 403, 461], "desmond": [472, 483], "despit": [72, 85, 102, 103, 235, 262, 325, 348, 386, 432, 468, 483], "dest": [7, 68, 89, 102, 118, 200, 228, 269, 278, 292, 309, 399, 465, 467, 468, 469, 483], "dest1": [166, 475], "dest2": [166, 475], "dest3": [166, 475], "dest4": [166, 475], "dest_fil": 120, "destdir": [163, 483], "destin": [68, 101, 109, 177, 189, 208, 212, 242, 267, 268, 269, 271, 278, 292, 293, 332, 337, 344, 356, 358, 399, 466, 468, 472, 473, 474, 476, 477, 481, 482, 483], "destination_offset": 353, "destroy": [5, 11, 13, 22, 27, 33, 60, 63, 67, 95, 100, 247, 258, 278, 283, 292, 345, 365, 369, 388, 400, 405, 428, 432, 462, 464, 465, 467, 475, 479, 480, 482, 483], "destruct": [13, 33, 73, 75, 155, 177, 255, 344, 428, 463, 474, 475, 483], "destructor": [11, 33, 57, 63, 75, 76, 78, 84, 87, 115, 293, 316, 348, 352, 428, 436, 471, 475, 479, 481, 483], "destwin": 177, "detach": [132, 142, 149, 258, 270, 293, 337, 341, 376, 402, 405, 430, 475, 476, 483], "detached_process": 348, "detail": [13, 17, 26, 34, 39, 42, 45, 54, 55, 59, 61, 63, 64, 66, 68, 71, 72, 73, 76, 77, 79, 84, 85, 87, 88, 92, 93, 94, 95, 96, 100, 101, 102, 106, 108, 109, 110, 112, 118, 120, 133, 137, 139, 141, 144, 151, 152, 158, 169, 173, 176, 177, 181, 182, 183, 186, 190, 191, 193, 194, 196, 201, 205, 207, 211, 213, 215, 223, 225, 226, 230, 234, 235, 245, 246, 247, 250, 251, 255, 259, 262, 265, 267, 269, 270, 271, 272, 281, 283, 292, 293, 299, 314, 319, 322, 324, 331, 332, 335, 337, 338, 340, 342, 344, 347, 348, 352, 354, 355, 356, 358, 359, 362, 364, 365, 369, 373, 381, 385, 386, 388, 394, 395, 400, 405, 410, 413, 415, 419, 421, 422, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "detect": [23, 28, 34, 42, 59, 63, 73, 75, 76, 85, 93, 95, 106, 110, 112, 133, 158, 161, 177, 181, 183, 186, 191, 194, 203, 206, 213, 247, 250, 255, 271, 283, 292, 293, 295, 299, 307, 314, 320, 321, 331, 333, 335, 337, 340, 344, 348, 352, 358, 362, 364, 365, 378, 382, 388, 395, 403, 427, 428, 429, 430, 435, 443, 455, 456, 461, 462, 463, 464, 465, 468, 469, 474, 475, 477, 478, 479, 480, 481, 483], "detect_api_mismatch": 362, "detect_encod": [265, 378], "detect_modul": 483, "detect_socket": 483, "detect_typ": 340, "detector": [61, 73, 255, 456, 469], "determin": [5, 7, 11, 22, 23, 33, 34, 39, 45, 49, 54, 60, 63, 68, 73, 75, 76, 85, 92, 94, 99, 101, 102, 103, 106, 109, 120, 133, 144, 151, 154, 157, 158, 159, 161, 176, 177, 179, 181, 182, 184, 186, 189, 190, 191, 193, 197, 203, 208, 213, 215, 225, 230, 242, 247, 248, 249, 250, 255, 259, 265, 266, 267, 268, 269, 270, 271, 272, 279, 283, 292, 293, 295, 297, 299, 307, 308, 311, 314, 318, 319, 320, 321, 328, 330, 331, 332, 333, 334, 337, 340, 343, 344, 346, 347, 348, 352, 354, 355, 356, 358, 361, 366, 369, 376, 378, 384, 386, 388, 395, 400, 405, 410, 415, 421, 425, 426, 427, 429, 430, 432, 434, 435, 436, 455, 461, 464, 465, 467, 468, 469, 471, 474, 475, 476, 477, 478, 480, 483], "determinist": [34, 68, 102, 106, 169, 185, 250, 255, 337, 340, 359, 413, 475, 480, 482, 483], "detlef": [462, 465], "detract": 478, "detriment": 85, "dev": [34, 68, 79, 80, 96, 98, 102, 103, 126, 188, 229, 269, 271, 272, 293, 294, 295, 307, 333, 348, 352, 355, 438, 455, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 478, 483], "dev_mod": [34, 188, 352, 483], "dev_stag": 303, "dev_t": 483, "dev_team": 268, "devan": 186, "devel": [79, 98, 288, 483], "develop": [33, 34, 68, 75, 77, 78, 80, 85, 87, 92, 100, 101, 102, 103, 106, 109, 125, 151, 161, 169, 176, 186, 213, 214, 235, 250, 267, 268, 269, 292, 293, 307, 313, 340, 348, 352, 362, 368, 369, 375, 386, 400, 419, 422, 425, 455, 456, 457, 461, 463, 464, 465, 466, 467, 469, 470, 474, 475, 476, 477, 478, 481, 482, 483, 484], "developerwork": 95, "devguid": [89, 96, 477], "deviat": [64, 348, 394, 475, 476, 477, 483], "devic": [66, 68, 99, 131, 158, 177, 178, 212, 225, 247, 258, 269, 293, 296, 328, 329, 332, 333, 337, 342, 348, 352, 358, 405, 413, 455, 462, 468, 483], "device_encod": [293, 483], "device_id": 337, "devin": [478, 483], "devious": 483, "devis": 483, "devmajor": [358, 483], "devminor": [358, 483], "devnul": [126, 137, 283, 293, 333, 348, 476, 483], "devop": 483, "devot": 106, "devpol": [328, 329, 476, 477, 478, 483], "devpollselector": [329, 478, 480], "dez": 183, "dezemb": 183, "df": [102, 103, 469], "df924a2b08a7e89f6e11251d4602022977af2670": 98, "dfa": 483, "dfballer": 196, "dfff": 158, "dfile": 311, "dflag": 483, "dfo": 103, "dfunc": 190, "dgettext": [230, 266], "dh": [341, 472, 483], "dhfile": 341, "dhiru": 477, "di": [183, 467], "diaeresi": 158, "diagnos": [85, 96, 101, 176, 247, 267, 388], "diagnosi": 483, "diagnost": [33, 42, 68, 75, 101, 386, 419, 421, 458, 475, 479], "diagon": [109, 441, 472], "diagram": [101, 103, 193, 225, 338, 464], "dial": 102, "dialect": [68, 217, 340, 465, 467, 475, 483], "dialog": [68, 77, 92, 96, 247, 281, 292, 362, 368, 369, 370, 373, 375, 384, 461, 477, 478, 479, 480, 481, 482, 483], "dialog_swallow": 96, "diamant": 483, "diamet": 384, "diamond": [68, 94, 103, 177, 225, 428], "dice": 206, "dickinso": 471, "dickinson": [468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "dict": [5, 10, 22, 23, 26, 31, 33, 35, 54, 59, 61, 63, 68, 73, 78, 79, 84, 85, 87, 88, 93, 95, 96, 100, 112, 120, 122, 126, 160, 167, 171, 175, 181, 182, 184, 187, 190, 191, 193, 205, 211, 225, 226, 244, 250, 254, 255, 262, 267, 268, 269, 283, 288, 291, 299, 304, 307, 326, 330, 340, 341, 345, 355, 358, 362, 365, 369, 376, 379, 385, 386, 388, 402, 413, 419, 427, 428, 430, 431, 435, 441, 442, 446, 450, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "dict1": 468, "dict2": 468, "dict_comprehens": 430, "dict_display": 430, "dict_factori": [181, 340, 483], "dict_fromkey": 93, "dict_item": 430, "dict_item_list": 430, "dict_key": [226, 469, 483], "dict_merg": [191, 483], "dict_siz": 270, "dict_typ": [167, 304], "dict_upd": [191, 483], "dictat": [7, 87, 167, 222, 225, 299, 337, 461, 462, 468], "dictcomp": [122, 431], "dictconfig": [68, 101, 268, 269, 469, 475, 483], "dictconfigclass": 268, "dictconfigur": 268, "dictionari": [5, 21, 22, 23, 31, 33, 42, 45, 49, 53, 58, 59, 61, 63, 64, 66, 68, 73, 75, 76, 84, 85, 87, 93, 94, 95, 96, 101, 106, 110, 112, 115, 118, 120, 122, 144, 151, 157, 158, 160, 167, 173, 175, 176, 181, 183, 186, 191, 193, 195, 196, 200, 201, 202, 203, 205, 206, 207, 212, 216, 225, 226, 230, 236, 242, 244, 245, 250, 251, 255, 259, 261, 262, 266, 267, 269, 270, 271, 272, 274, 276, 279, 283, 287, 288, 291, 292, 293, 297, 299, 304, 305, 307, 308, 312, 314, 319, 324, 325, 326, 330, 335, 340, 341, 344, 345, 346, 348, 352, 355, 358, 362, 365, 369, 375, 376, 377, 380, 381, 384, 386, 388, 389, 393, 394, 395, 400, 407, 413, 416, 417, 427, 428, 429, 431, 436, 440, 441, 445, 446, 452, 455, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 477, 478, 479, 480, 481, 483, 484], "dictitems_contain": 483, "dictitems_revers": 483, "dictkeys_revers": 483, "dictmixin": 465, "dictobject": [93, 96, 467, 483], "dictproxi": 483, "dictread": [175, 479, 481, 483], "dictview": [87, 344, 481, 483], "dictwrit": [175, 475, 483], "did": [76, 84, 85, 102, 106, 110, 139, 167, 191, 193, 202, 243, 245, 283, 284, 292, 293, 314, 319, 329, 341, 348, 352, 365, 382, 383, 388, 415, 422, 428, 431, 442, 462, 463, 464, 472, 474, 475, 476, 477, 480, 481, 483], "did_user_define_their_nam": 114, "didn": [33, 76, 79, 85, 103, 106, 109, 169, 244, 292, 319, 335, 352, 428, 462, 463, 464, 466, 467, 468, 469, 477, 480, 482, 483], "die": [92, 212, 328, 481, 483], "diederich": [467, 471], "diego": [467, 481, 483], "dierk": 341, "diet": 190, "dietmar": 463, "diff": [112, 143, 190, 193, 388, 463, 466, 469, 475, 483], "diff_byt": [190, 478, 483], "diff_fil": 216, "differ": [9, 10, 13, 20, 23, 27, 33, 34, 42, 45, 58, 59, 63, 64, 66, 68, 72, 73, 74, 75, 76, 79, 84, 91, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 132, 133, 137, 138, 139, 141, 151, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 174, 176, 177, 183, 185, 186, 191, 193, 195, 196, 202, 203, 205, 208, 213, 214, 216, 222, 225, 226, 230, 242, 243, 245, 247, 250, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 289, 292, 293, 295, 297, 299, 302, 308, 313, 314, 318, 319, 320, 321, 322, 328, 330, 331, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 362, 363, 364, 365, 366, 369, 375, 376, 381, 385, 386, 388, 394, 395, 405, 410, 411, 420, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "differen": 483, "differenc": [475, 483], "difference_upd": [344, 468, 482, 483], "differenti": [183, 186, 320, 395, 475, 476, 479, 482, 483], "diffi": [341, 476], "difficult": [76, 84, 92, 95, 101, 103, 106, 109, 120, 268, 299, 395, 413, 462, 463, 464, 465, 466, 469, 475, 481, 483], "difficulti": [283, 462, 465], "difflib": [68, 145, 156, 193, 216, 254, 363, 463, 464, 466, 467, 468, 469, 477, 483], "dig": 352, "digest": [68, 174, 196, 204, 205, 237, 283, 305, 341, 395, 467, 469, 470, 475, 476, 477, 480, 481, 482, 483], "digest_con": [237, 483], "digest_s": [235, 237, 477], "digestmod": [235, 237, 477, 481, 483], "digicert": 341, "digicertsha2extendedvalidationserverca": 341, "digit": [39, 59, 64, 85, 100, 106, 109, 117, 141, 146, 158, 160, 173, 178, 183, 186, 193, 221, 225, 235, 244, 259, 266, 268, 288, 293, 319, 321, 326, 340, 341, 344, 345, 352, 362, 366, 369, 378, 387, 388, 394, 395, 398, 413, 424, 426, 435, 444, 449, 456, 462, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 479, 480, 481, 482, 483], "digitalocean": 105, "digitpart": [225, 435], "digits_r": 319, "digraph": 344, "dijkstra": 365, "dim": 177, "dima": 466, "dimens": [7, 176, 177, 275, 332, 344, 468, 476, 481, 483], "dimension": [7, 87, 203, 275, 299, 318, 344, 375, 384, 476, 478, 483], "dimitri": 483, "ding": [292, 482, 483], "dingyuan": 483, "dino": [472, 479, 482, 483], "dinsdal": 114, "dionn": 466, "diophantin": 481, "dir": [49, 68, 78, 80, 85, 94, 112, 114, 163, 184, 189, 210, 211, 223, 225, 266, 292, 293, 294, 296, 323, 344, 348, 358, 360, 369, 380, 389, 399, 422, 428, 445, 451, 456, 465, 468, 472, 473, 474, 475, 476, 483], "dir1": 216, "dir2": 216, "dir_fd": [142, 225, 231, 293, 332, 472, 473, 476, 483], "dir_or_fil": 189, "dircach": [466, 468], "dircmp": [68, 219, 462, 467, 477, 483], "direct": [7, 13, 28, 31, 33, 34, 42, 45, 46, 49, 54, 58, 59, 61, 63, 64, 67, 68, 72, 73, 75, 76, 85, 93, 94, 99, 100, 101, 102, 103, 110, 112, 115, 120, 123, 128, 132, 133, 139, 146, 149, 151, 158, 159, 160, 161, 163, 167, 169, 176, 181, 183, 186, 187, 190, 191, 194, 196, 201, 205, 206, 209, 212, 213, 218, 221, 225, 226, 232, 235, 242, 243, 245, 247, 251, 252, 253, 258, 259, 262, 266, 267, 268, 270, 271, 278, 280, 283, 292, 293, 295, 299, 302, 307, 308, 314, 319, 320, 324, 330, 335, 337, 338, 340, 341, 344, 348, 352, 358, 362, 364, 365, 366, 369, 374, 375, 376, 378, 380, 381, 384, 385, 388, 395, 400, 410, 413, 414, 417, 421, 425, 426, 427, 428, 429, 430, 431, 432, 434, 436, 443, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "directive_opt": 193, "directive_option_nam": 193, "director": [93, 147, 395], "directori": [33, 34, 51, 68, 73, 75, 79, 84, 85, 86, 89, 93, 95, 96, 102, 109, 112, 114, 118, 137, 151, 152, 163, 167, 169, 184, 189, 190, 193, 200, 210, 212, 213, 216, 219, 220, 223, 225, 230, 245, 247, 248, 250, 251, 252, 253, 271, 279, 283, 292, 296, 297, 302, 310, 311, 312, 313, 320, 324, 331, 334, 340, 341, 342, 348, 352, 354, 355, 357, 358, 360, 362, 375, 380, 384, 388, 395, 399, 403, 421, 422, 423, 425, 432, 443, 451, 455, 456, 461, 462, 463, 465, 466, 467, 469, 470, 471, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483, 484], "directorys": 93, "directorytestcas": 483, "dirent": 293, "direntri": [293, 474, 478, 479, 483], "direntrytyp": 483, "dirfd": 293, "diritta": 467, "dirlist": 375, "dirnam": [93, 223, 271, 293, 294, 296, 302, 362, 388, 400, 456, 480], "dirpath": [293, 296], "dirs_double_ev": 189, "dirs_exist_ok": [332, 481, 483], "dirs_select_ev": 189, "dirselectbox": 375, "dirselectdialog": 375, "dirsonsyspath": 362, "dirti": 106, "dirtre": 375, "dirtyp": 358, "dis": [68, 87, 156, 254, 255, 264, 300, 352, 479, 483], "disabl": [23, 28, 33, 34, 42, 63, 68, 73, 94, 96, 101, 102, 106, 112, 120, 144, 151, 164, 167, 177, 186, 190, 193, 201, 214, 218, 225, 226, 227, 242, 250, 255, 262, 267, 268, 269, 283, 288, 292, 293, 297, 299, 308, 314, 315, 319, 320, 328, 331, 333, 334, 335, 337, 339, 340, 341, 344, 352, 362, 376, 384, 386, 388, 395, 400, 405, 413, 425, 428, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "disable_check": [250, 483], "disable_existing_logg": [101, 102, 268], "disable_faulthandl": 362, "disable_gc": 362, "disable_interspersed_arg": [120, 292], "disable_nagle_algorithm": 469, "disabled_by_com": 167, "disablereflectionkey": [142, 405, 468, 469], "disablesev": 328, "disadvantag": [73, 76, 84, 85, 106, 132, 158, 186, 341, 464, 471], "disagr": 103, "disagre": [95, 378, 462], "disallow": [5, 33, 63, 94, 120, 122, 167, 181, 272, 293, 337, 340, 344, 423, 427, 461, 468, 474, 477, 480, 481, 483], "disambigu": [11, 39, 68, 183, 430, 435, 483], "disappear": [73, 75, 101, 139, 384, 464, 466, 483], "disassembl": [191, 264, 300, 362, 477, 480, 483], "disassoci": 293, "disc": 384, "discard": [9, 35, 49, 55, 60, 64, 66, 73, 94, 95, 139, 151, 157, 158, 161, 183, 186, 243, 258, 267, 268, 271, 283, 292, 337, 340, 344, 361, 376, 400, 411, 413, 416, 427, 428, 449, 455, 464, 467, 468, 469, 474, 477, 479, 481, 483], "discern": [103, 234], "disciplin": 208, "disclaim": [103, 288, 349, 426], "disco": 191, "disconnect": [305, 335, 337, 340, 405, 481, 483], "discontinu": [105, 366, 483], "discount": 481, "discourag": [95, 106, 139, 158, 181, 194, 225, 250, 288, 319, 334, 344, 353, 358, 362, 428, 464, 467, 483], "discours": [1, 483], "discov": [183, 196, 205, 244, 362, 388, 415, 463, 464, 465, 469, 475, 477, 483], "discover": [251, 312, 461, 477, 483], "discoveri": [68, 187, 193, 280, 335, 419, 475, 477, 478, 483], "discrep": 483, "discret": [43, 261, 338, 343, 481], "discuss": [33, 72, 73, 85, 95, 100, 102, 103, 106, 109, 110, 181, 190, 203, 208, 230, 247, 258, 268, 288, 293, 319, 330, 333, 341, 348, 376, 386, 395, 410, 419, 426, 427, 429, 430, 432, 435, 462, 463, 464, 467, 468, 469, 471, 473, 474, 477, 479, 482, 483], "disentangl": 95, "disguis": [319, 428], "dish": [94, 344], "disjoint": 344, "disjunct": [341, 431], "disk": [84, 95, 101, 109, 169, 184, 194, 200, 208, 213, 234, 243, 247, 258, 265, 267, 269, 271, 278, 281, 288, 293, 295, 298, 299, 322, 330, 332, 340, 348, 352, 358, 382, 405, 413, 422, 428, 465, 467, 468, 470, 476, 483], "disk0s2": 469, "disk_usag": [332, 476, 483], "dislik": 110, "dismiss": [103, 247, 384, 483], "dispar": 208, "dispatch": [68, 78, 84, 85, 87, 101, 102, 144, 155, 177, 197, 226, 245, 298, 308, 321, 388, 419, 471, 473, 475, 477, 481, 483], "dispatch_": 144, "dispatch_cal": 144, "dispatch_except": 144, "dispatch_lin": 144, "dispatch_return": 144, "dispatch_t": [172, 299, 476, 483], "display": [23, 33, 34, 42, 68, 87, 89, 94, 96, 98, 102, 109, 120, 139, 151, 152, 155, 157, 160, 177, 179, 185, 186, 191, 193, 200, 203, 214, 247, 255, 259, 266, 267, 271, 281, 288, 293, 297, 307, 311, 313, 319, 320, 321, 342, 344, 345, 346, 348, 352, 358, 364, 369, 375, 376, 378, 380, 381, 384, 388, 395, 399, 400, 403, 421, 426, 428, 435, 436, 443, 449, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "display_d": [126, 139], "display_failur": 382, "display_nam": [200, 203, 476], "display_top": 382, "displaycolumn": 376, "displayhook": [225, 352, 450, 463], "displaymatch": 319, "displayof": 372, "displaystyl": 483, "displaywidth": 155, "dispos": [73, 388, 399], "disposit": [196, 197, 203, 205, 248, 293, 333, 400, 407, 478], "disqualifi": 475, "disregard": [7, 33, 344], "disrupt": [132, 474, 483], "dissect": [106, 463, 464], "dissect_can_fram": 337, "dissent": 462, "dist": [251, 270, 275, 296, 384, 467, 475, 478, 481, 483], "dist_cub": 343, "dist_from_sun": 343, "distanc": [120, 155, 270, 275, 343, 369, 384, 473, 481, 483], "distb": [191, 477, 483], "distclean": [456, 483], "distinct": [33, 42, 45, 63, 85, 92, 106, 109, 141, 169, 181, 183, 186, 193, 226, 261, 268, 270, 292, 299, 308, 334, 340, 341, 344, 347, 352, 369, 386, 432, 435, 462, 464, 468, 475, 476, 479, 480, 482, 483], "distinguish": [39, 63, 68, 73, 96, 122, 161, 177, 187, 191, 193, 197, 225, 243, 255, 268, 275, 314, 341, 355, 376, 386, 400, 428, 430, 432, 461, 463, 464, 469, 476, 477, 483], "distort": 384, "distpath": 399, "distract": [92, 292, 483], "distribut": [31, 33, 66, 68, 71, 73, 75, 84, 85, 96, 186, 209, 230, 235, 250, 271, 275, 280, 283, 284, 302, 318, 340, 343, 355, 358, 369, 377, 388, 414, 421, 426, 456, 459, 461, 462, 463, 465, 467, 468, 470, 472, 475, 478, 479, 480, 481, 482, 483], "distributionfind": 251, "distributor": [425, 479, 483], "distro": [68, 483], "disturb": [299, 483], "distutil": [68, 71, 77, 111, 251, 463, 467, 468, 469, 473, 475, 481, 483, 484], "distutils2": 469, "distutils_debug": 483, "distutilsexecerror": 483, "distutilsplatformerror": 483, "ditch": 452, "ditto": 483, "div": [85, 122, 186, 240, 412, 431], "dive": 85, "diverg": [341, 464], "divert": [337, 483], "divid": [47, 84, 92, 106, 141, 167, 183, 186, 191, 193, 194, 225, 247, 275, 284, 308, 353, 375, 419, 435, 443, 468, 475, 476, 477, 481, 483], "divide_int": 186, "dividend": [15, 186], "divis": [64, 66, 68, 87, 102, 113, 183, 186, 213, 297, 302, 333, 428, 429, 430, 436, 443, 449, 465, 466, 468, 469, 473, 475, 482, 483, 484], "division_warn": [352, 475, 476], "divisionbyzero": [186, 466], "divisor": [15, 186, 449], "divmod": [47, 85, 183, 186, 225, 289, 344, 428, 430, 444, 450, 481, 483], "dixon": 200, "django": [102, 160, 297, 302, 389, 469, 476], "djb": 426, "djbdns": 223, "djgpp": 483, "dk": 235, "dklen": 235, "dl": [467, 468, 483], "dl_export": 465, "dl_import": 465, "dle": 178, "dlfcn": [476, 479, 483], "dlg": 281, "dlgclass": 375, "dll": [33, 57, 68, 77, 84, 176, 269, 293, 352, 369, 461, 467, 468, 472, 477, 481, 483], "dllcanunloadnow": 176, "dllexport": [77, 86], "dllgetclassobject": 176, "dllhandl": 352, "dllname": [269, 481], "dlls": [34, 68, 74, 118, 293, 462, 467, 481, 483], "dlltool": 481, "dlltype": 176, "dlopen": [142, 176, 293, 352, 456, 464, 467, 483], "dlsym": [142, 176], "dm": 359, "dmaxcol": 177, "dmaxrow": 177, "dmesg": 348, "dmincol": 177, "dminrow": 177, "dmitri": [235, 466, 478, 479, 483], "dmitrii": 483, "dml": [340, 483], "dn": [341, 398, 483], "dnd": [68, 254, 368, 369], "dnd_accept": 371, "dnd_commit": 371, "dnd_end": 371, "dnd_enter": 371, "dnd_leav": 371, "dnd_start": 371, "dndebug": 72, "dndhandler": 371, "dnf": 96, "dngettext": 230, "dnpgettext": 230, "dns": [68, 102, 128, 130, 158, 259, 269, 337, 341, 398, 478, 483], "do": [5, 7, 22, 23, 28, 33, 34, 36, 42, 43, 56, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 77, 78, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 120, 132, 137, 138, 139, 141, 151, 158, 159, 161, 163, 167, 169, 176, 177, 178, 179, 181, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 205, 207, 208, 213, 214, 225, 226, 228, 230, 243, 244, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 266, 267, 268, 269, 271, 275, 283, 292, 293, 295, 297, 299, 305, 308, 314, 319, 320, 322, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 364, 365, 366, 368, 374, 375, 376, 378, 380, 382, 384, 386, 388, 394, 395, 399, 400, 403, 406, 410, 411, 413, 414, 415, 417, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "do_": [85, 155, 245], "do_bar": [85, 155], "do_by": 155, "do_circl": 155, "do_clear": 144, "do_color": 155, "do_command": 177, "do_foo": [85, 155], "do_forward": 155, "do_get": 245, "do_glob": 440, "do_goto": 155, "do_handshak": [341, 477, 478], "do_handshake_on_connect": 341, "do_head": [155, 245], "do_help": [155, 483], "do_hom": 155, "do_left": 155, "do_loc": 440, "do_mkstack": 483, "do_my_adding_stuff": 289, "do_my_other_adding_stuff": 289, "do_nonloc": 440, "do_not_add": 332, "do_playback": 155, "do_posit": 155, "do_post": 245, "do_profiled_stuff": 104, "do_record": 155, "do_reset": 155, "do_right": 155, "do_setlocal": [266, 293], "do_shel": 155, "do_someth": [102, 151, 267, 341, 388, 430], "do_something_us": 402, "do_spam": 245, "do_stuff": 427, "do_undo": 155, "do_work": [284, 293], "dobb": 190, "doc": [1, 23, 58, 60, 75, 76, 79, 80, 93, 106, 126, 176, 194, 205, 223, 225, 242, 247, 251, 255, 262, 293, 296, 313, 340, 341, 352, 362, 367, 385, 394, 403, 405, 412, 452, 454, 456, 460, 461, 462, 464, 465, 467, 468, 469, 474, 475, 479, 480, 481, 483], "doc_head": 155, "doccgixmlrpcrequesthandl": [68, 256], "docclean": 483, "docfilecas": 193, "docfilesuit": [193, 467], "docfiletest": 483, "dock": [247, 483], "dockerfil": 483, "doclasscleanup": [388, 483], "docleanup": [388, 469, 483], "docmd": 335, "docs_url": 307, "docsbuild": 483, "docserv": 483, "docstest": 483, "docstr": [23, 27, 34, 45, 58, 60, 63, 66, 68, 75, 84, 87, 102, 122, 155, 160, 187, 222, 225, 226, 247, 255, 297, 313, 362, 378, 385, 386, 388, 427, 428, 435, 436, 440, 441, 451, 455, 462, 463, 464, 465, 466, 467, 468, 469, 473, 475, 477, 478, 479, 480, 481, 482, 483], "docstringdict": 384, "doctest": [68, 78, 84, 112, 156, 176, 187, 254, 362, 378, 381, 382, 388, 451, 463, 465, 467, 469, 471, 475, 476, 483], "doctestcas": 193, "doctestfailur": 193, "doctestfind": [68, 187, 466, 483], "doctestpars": [68, 187], "doctestrunn": [68, 187, 466], "doctestsuit": [193, 388, 465, 478, 483], "doctyp": [110, 240, 242, 314, 395, 410, 413, 475, 481, 483], "doctypenam": 314, "document": [1, 23, 24, 28, 42, 45, 51, 55, 58, 59, 61, 63, 64, 68, 71, 72, 73, 75, 76, 77, 79, 80, 85, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 128, 133, 137, 139, 144, 151, 155, 167, 169, 176, 177, 181, 183, 187, 190, 193, 194, 195, 196, 202, 203, 205, 207, 208, 213, 220, 221, 225, 226, 230, 235, 241, 243, 247, 248, 250, 251, 254, 255, 256, 259, 262, 266, 267, 268, 269, 271, 272, 273, 281, 282, 283, 290, 292, 293, 295, 297, 304, 307, 313, 314, 322, 330, 331, 335, 337, 338, 340, 341, 342, 344, 348, 352, 354, 358, 361, 362, 364, 365, 366, 369, 375, 376, 384, 385, 386, 394, 395, 399, 400, 403, 405, 411, 412, 414, 415, 416, 417, 419, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 445, 446, 456, 461, 462, 463, 464, 465, 466, 467, 470, 471, 472, 474, 475, 478, 479, 480, 482, 484], "document_nod": 410, "document_type_nod": 410, "documentel": [410, 411, 462], "documentfactori": 412, "documenthandl": [415, 416], "documenttyp": [68, 273], "docutil": [0, 468, 483], "docxmlrpcrequesthandl": 420, "docxmlrpcserv": [68, 256, 465, 467, 468, 470, 483], "dodd": [473, 483], "dodg": 466, "doe": [5, 9, 13, 22, 23, 25, 26, 27, 28, 31, 33, 34, 42, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 110, 115, 120, 133, 139, 146, 149, 151, 153, 157, 158, 161, 163, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 207, 208, 213, 220, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 299, 301, 302, 308, 309, 311, 314, 319, 322, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 356, 358, 362, 364, 365, 366, 368, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 440, 442, 443, 449, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "doerwald": 468, "does_esmtp": 335, "does_that_mean_anything_speci": 167, "doesn": [5, 7, 22, 23, 33, 34, 43, 56, 63, 72, 73, 76, 77, 79, 85, 92, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 112, 120, 132, 133, 135, 144, 151, 158, 169, 173, 176, 183, 184, 186, 193, 196, 200, 205, 213, 214, 225, 226, 243, 250, 251, 255, 258, 259, 266, 267, 268, 269, 292, 293, 297, 299, 302, 305, 314, 319, 322, 323, 328, 330, 332, 333, 334, 335, 337, 339, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 384, 385, 387, 388, 400, 405, 419, 423, 428, 430, 432, 441, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "dog": [94, 106, 160, 319, 440, 475, 478], "doggi": 319, "dogwood": 319, "doi": 103, "doing": [22, 27, 33, 36, 63, 84, 85, 92, 95, 96, 99, 101, 102, 106, 109, 133, 151, 158, 159, 169, 176, 186, 194, 216, 225, 235, 243, 250, 258, 265, 267, 269, 278, 279, 283, 292, 293, 295, 299, 305, 319, 328, 333, 338, 341, 342, 345, 348, 362, 365, 369, 384, 386, 388, 395, 413, 421, 428, 429, 464, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 483], "doit": 120, "dollarmessag": 102, "dolor": 149, "dom": [68, 254, 257, 273, 409, 415, 451, 463, 465, 467, 473, 479, 480, 481, 483], "dom1": 411, "dom2": 411, "dom3": 411, "domain": [32, 68, 98, 101, 145, 203, 208, 209, 212, 230, 235, 243, 244, 248, 266, 268, 269, 283, 287, 335, 337, 338, 341, 346, 347, 352, 382, 394, 398, 455, 465, 467, 474, 476, 477, 478, 479, 480, 483], "domain_initial_dot": 243, "domain_return_ok": 243, "domain_specifi": 243, "domainfilt": [68, 185, 479], "domainliber": 243, "domainrfc2965match": 243, "domainstrict": 243, "domainstrictnodot": 243, "domainstrictnondomain": 243, "dombrova": 483, "domenico": 474, "domeventstream": [68, 273, 473, 481, 483], "domexcept": [410, 411], "domimplement": [68, 273], "domin": [147, 243, 483], "domodulecleanup": [388, 483], "domreg": 483, "domstr": [410, 411], "domstring_size_err": 410, "domstringsizeerr": 410, "domtimestamp": 411, "don": [5, 9, 23, 28, 33, 34, 49, 58, 59, 63, 73, 75, 76, 79, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 120, 133, 137, 139, 144, 151, 152, 153, 159, 160, 163, 167, 169, 176, 179, 181, 183, 190, 191, 193, 200, 209, 216, 225, 226, 230, 242, 243, 250, 257, 258, 259, 262, 267, 268, 269, 283, 288, 292, 293, 295, 297, 299, 307, 308, 328, 330, 332, 335, 337, 340, 341, 344, 355, 365, 369, 376, 386, 388, 395, 399, 405, 413, 426, 427, 428, 430, 431, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 478, 479, 481, 482, 483], "donald": [160, 341, 469, 477], "donat": [103, 466], "done": [5, 7, 31, 33, 34, 36, 47, 49, 51, 54, 55, 58, 63, 64, 66, 72, 73, 75, 76, 84, 85, 92, 95, 96, 98, 99, 101, 102, 106, 109, 110, 120, 125, 126, 129, 133, 136, 139, 141, 151, 155, 158, 159, 166, 167, 173, 176, 177, 183, 184, 186, 191, 193, 196, 200, 204, 205, 208, 209, 216, 225, 232, 234, 235, 245, 247, 250, 255, 258, 266, 267, 268, 269, 278, 283, 288, 292, 293, 295, 299, 302, 308, 309, 314, 316, 319, 334, 338, 340, 341, 344, 345, 348, 352, 358, 359, 361, 362, 366, 375, 376, 384, 385, 386, 395, 399, 400, 408, 411, 412, 413, 414, 421, 428, 430, 432, 435, 436, 452, 461, 462, 463, 464, 465, 467, 468, 474, 475, 476, 477, 478, 479, 481, 483], "done_queu": 283, "donec": 149, "donegan": 483, "dong": [292, 483], "donghe": [472, 473, 474, 481, 482, 483], "doni": 483, "donnel": 464, "donnellan": 483, "donni": 140, "donotsepar": 331, "dont": 359, "dont_accept_blanklin": 193, "dont_accept_true_for_1": 193, "dont_inherit": [225, 477], "dont_write_bytecod": [34, 352, 450, 468, 475], "doodah": 304, "doom": [283, 467], "door": [110, 120, 342], "dorais": 311, "dorfman": 466, "dorian": 483, "dormant": 102, "dorollov": [269, 483], "doroschenko": 483, "dos": [34, 78, 177, 288, 292, 455, 462, 464, 475, 477, 483], "dose": 109, "doseq": 394, "dot": [23, 31, 45, 63, 64, 76, 78, 87, 93, 98, 101, 102, 106, 122, 193, 225, 243, 247, 250, 259, 261, 266, 267, 268, 271, 276, 288, 302, 313, 319, 323, 332, 337, 344, 352, 358, 360, 369, 377, 384, 388, 389, 420, 422, 423, 427, 428, 432, 434, 436, 440, 447, 455, 461, 468, 471, 472, 478, 483], "dotal": [106, 319], "dotless": [106, 319], "dotted_as_nam": 431, "dotted_nam": 431, "dotterbart": 291, "dotview": 89, "doubl": [5, 15, 18, 25, 35, 39, 58, 63, 64, 75, 76, 78, 85, 96, 102, 106, 121, 158, 160, 176, 177, 182, 189, 193, 209, 235, 247, 248, 262, 269, 275, 283, 293, 297, 319, 331, 344, 345, 347, 348, 359, 362, 389, 408, 417, 419, 427, 428, 430, 431, 435, 442, 444, 449, 461, 465, 466, 467, 468, 473, 474, 475, 476, 479, 480, 481, 483], "double_revers": 108, "double_star_pattern": [427, 431], "double_starred_kvpair": 431, "doublequot": [175, 483], "doubleslash": 377, "doubleslashequ": 377, "doublestar": 377, "doublestarequ": 377, "doublestuff": 244, "doublevar": 369, "doubli": [35, 63, 85, 469], "doubt": [63, 84, 92, 103, 167, 183, 467], "doubtless": [95, 463, 464, 465], "doug": [426, 483], "doupdat": [92, 177, 179], "dove": [101, 102], "dower": [474, 478, 479, 480, 481, 482], "down": [51, 68, 72, 76, 85, 95, 101, 102, 139, 151, 160, 177, 179, 191, 193, 212, 245, 247, 267, 275, 283, 293, 297, 308, 309, 319, 328, 333, 337, 338, 341, 352, 353, 371, 376, 384, 388, 394, 407, 452, 455, 462, 464, 465, 469, 474, 478, 479, 480, 481, 482, 483], "downcast": [5, 456], "downey": 318, "downgrad": [243, 483], "download": [75, 80, 85, 96, 102, 103, 296, 307, 375, 395, 399, 453, 461, 467, 468, 469, 475, 476, 480, 481, 483], "download_url": [307, 467], "downright": 167, "downsid": [259, 461, 476, 480], "downstream": [120, 267, 425, 483], "dozen": [468, 475, 483], "dp": [186, 483], "dpgettext": 230, "dpi": [479, 480, 483], "dpkg": 466, "dpy_build_cor": [456, 483], "dpy_build_core_builtin": 456, "dq": 468, "dr": [190, 223, 364, 475], "draft": [95, 109, 151, 271, 296, 410, 462, 463, 464, 465, 466, 467, 468, 469, 479, 480, 483], "drag": [369, 371, 375, 376, 384, 483], "dragonfli": 483, "dragonflybsd": [115, 337, 365, 483], "drain": [133, 136, 138, 341, 475, 483], "drake": [0, 462, 463, 464, 465, 467, 468], "drallensmith": 483, "draoui": [478, 483], "drastic": [7, 112], "draw": [68, 92, 103, 155, 177, 222, 247, 318, 376, 468, 483], "draw_doubl": 468, "drawabl": 468, "drawback": [252, 292, 480], "drawn": [103, 155, 177, 267, 293, 384, 483], "drbg_nopr_ctr_aes256": 337, "dri": [68, 284, 292, 458], "dric": [478, 481, 483], "drive": [231, 247, 292, 293, 294, 296, 358, 362, 369, 388, 422, 426, 461, 474, 476, 477, 478, 483], "driven": [78, 85, 169, 276, 369, 384, 388, 410, 412, 462, 475, 483], "driver": [177, 193, 212, 230, 293, 295, 337, 362, 405, 406, 416, 465, 483], "drmhze6epcv0fn_81bj": 326, "drop": [28, 63, 76, 84, 93, 94, 101, 109, 133, 160, 193, 212, 250, 261, 269, 283, 305, 321, 325, 341, 344, 348, 352, 364, 369, 371, 376, 388, 394, 462, 463, 464, 466, 467, 468, 470, 475, 477, 478, 483], "drop_whitespac": [364, 468], "dropdown": 376, "dropwhil": [95, 261], "drug": 318, "drug_effect": 343, "drum": 106, "drummer": 106, "drwx": 332, "drwxr": [89, 223], "dry_run": [332, 362, 483], "drzejewski": [476, 483], "ds": 483, "dsa": 475, "dsaencrypt": 475, "dsawithsha": 475, "dscp": [472, 483], "dsfsdf": 431, "dsiablereflectionkey": 405, "dsl": [477, 483], "dsn": 335, "dsp": 295, "dst": [52, 142, 176, 183, 293, 332, 340, 366, 476, 483], "dst_diff": 183, "dst_dir_fd": [142, 293], "dst_path": 142, "dst_time": 183, "dstdiff": 183, "dstend": 183, "dstend_1967_1986": 183, "dstend_1987_2006": 183, "dstend_2007": 183, "dstname": [183, 332], "dstoff": 183, "dstoffset": 183, "dston": 183, "dststart": 183, "dststart_1967_1986": 183, "dststart_1987_2006": 183, "dststart_2007": 183, "dsymutil": 483, "dt": [183, 209, 419, 425, 482], "dt1": 183, "dt2": 183, "dt3": 183, "dt_add": 425, "dt_unknown": 293, "dt_utc": 425, "dtd": [110, 240, 314, 395, 409, 414, 415, 416, 479, 480, 481, 483], "dtdhandler": [68, 273, 416], "dtdst": 183, "dtls": 341, "dtoa": [68, 456, 469, 483], "dtoff": 183, "dtrace": [68, 97, 456, 483], "dtrace_function_entri": 98, "dtrace_function_return": 98, "dtype": [284, 386], "dual": [126, 337, 426, 435, 483], "dualiti": 481, "dualstack_ipv6": 337, "duan": 483, "dubious": [213, 400, 483], "dublin": 413, "dubost": 483, "duck": [87, 386, 468, 477, 483], "due": [5, 23, 33, 45, 63, 66, 75, 76, 84, 93, 101, 110, 137, 139, 169, 176, 177, 183, 184, 190, 208, 221, 242, 247, 250, 258, 267, 268, 269, 271, 275, 283, 299, 314, 325, 341, 344, 348, 362, 365, 371, 386, 388, 422, 427, 428, 430, 431, 432, 435, 456, 461, 462, 463, 466, 468, 469, 470, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483], "duid": 483, "dumb": [68, 298, 359, 478, 479, 480, 481, 483], "dumbdbm": [184, 470], "dummi": [13, 68, 73, 102, 114, 164, 176, 190, 230, 258, 293, 358, 362, 365, 384, 479, 483], "dummy_thread": [465, 480, 482, 483], "dump": [34, 42, 68, 73, 94, 101, 102, 122, 142, 151, 172, 175, 185, 188, 262, 266, 269, 274, 284, 286, 293, 297, 299, 304, 308, 333, 340, 342, 381, 382, 413, 419, 446, 455, 456, 462, 463, 464, 465, 468, 469, 471, 476, 477, 478, 479, 482, 483], "dump_ref": 34, "dump_stat": 308, "dump_traceback": [214, 478, 483], "dump_traceback_lat": [214, 478, 483], "dumpbin": 176, "dumpleton": 483, "duncan": 468, "dunder": [181, 435, 481, 483], "dup": [160, 293, 337, 483], "dup2": [214, 293, 333, 473, 478, 480, 483], "dup3": 483, "dup_top": [473, 483], "dup_top_two": [473, 483], "dupe": [163, 482], "duplex": [283, 295], "duplic": [22, 68, 95, 103, 112, 163, 167, 169, 186, 190, 191, 196, 205, 208, 211, 215, 231, 255, 259, 267, 271, 293, 302, 337, 344, 362, 384, 386, 388, 422, 427, 428, 430, 431, 441, 442, 464, 466, 467, 468, 474, 475, 478, 480, 482, 483], "duplicatefreeenum": 68, "duplicateoptionerror": [167, 475, 483], "duplicatesectionerror": [167, 475, 483], "duprat": 473, "dupui": 477, "dupuy": 483, "duran": 483, "durat": [33, 102, 135, 139, 183, 271, 283, 308, 337, 338, 341, 344, 352, 361, 362, 365, 366, 388, 406, 469, 474, 475, 476, 478, 481, 483], "dure": [17, 22, 23, 28, 33, 34, 45, 51, 58, 63, 64, 68, 77, 85, 93, 94, 102, 133, 139, 151, 158, 167, 176, 177, 181, 183, 186, 191, 193, 201, 202, 203, 208, 211, 213, 218, 226, 235, 250, 251, 262, 267, 268, 269, 270, 271, 281, 288, 293, 299, 308, 313, 314, 319, 320, 323, 332, 333, 334, 335, 340, 341, 343, 344, 352, 353, 361, 362, 366, 376, 380, 382, 384, 385, 386, 388, 400, 413, 414, 415, 416, 422, 425, 427, 428, 430, 432, 435, 436, 443, 455, 456, 461, 462, 465, 466, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483], "dusing_apple_os_libffi": 483, "dusti": [479, 483], "dustin": [468, 483], "dutch": [365, 435], "duti": 475, "dv": [102, 362], "dvd": 295, "dvi": 141, "dwarf": [104, 343, 428], "dwayn": 468, "dwell": 73, "dwfileattribut": [293, 478], "dwflag": 348, "dwith_pymalloc_radix_tre": 483, "dword": 176, "dx": [261, 343], "dxob": 345, "dxp": 483, "dxpair": 483, "dy": 261, "dyck": 466, "dyer": 469, "dylan": [103, 465], "dyld": [462, 483], "dylib": [176, 483], "dynam": [11, 22, 25, 31, 42, 45, 63, 66, 68, 72, 73, 77, 79, 80, 84, 85, 101, 102, 118, 141, 182, 190, 203, 225, 226, 247, 250, 255, 293, 321, 335, 337, 340, 344, 352, 369, 376, 384, 423, 428, 430, 432, 436, 440, 456, 462, 464, 465, 467, 468, 475, 476, 477, 480, 481, 483], "dynamic_execution_profil": 483, "dynamicclassattribut": [385, 473, 477], "dynload": [352, 354, 456, 483], "dynload_": 462, "dynload_shlib": 483, "dysfunct": 475, "e000000000000p": 468, "e1": [431, 475], "e1000": 483, "e2": 431, "e2big": 212, "e3c8102868d28b5ff85fc35dda07329970d1a01e273c37481326fe0c861c8142": 235, "e52df05b496a": 477, "e9buter_en_python": 288, "ea": 153, "eacc": [212, 213, 215, 250, 476, 483], "eacceler": 223, "eaccess": 483, "each": [5, 7, 13, 22, 23, 28, 31, 33, 34, 37, 42, 45, 59, 61, 63, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 100, 101, 102, 106, 109, 110, 112, 117, 120, 132, 133, 138, 139, 141, 143, 149, 151, 152, 153, 155, 158, 159, 163, 166, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 202, 203, 204, 205, 208, 212, 214, 216, 218, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 255, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 281, 283, 284, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 309, 312, 313, 314, 318, 319, 320, 321, 322, 325, 329, 331, 332, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 346, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 405, 408, 410, 411, 413, 415, 417, 419, 420, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 442, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "eaddrinus": 212, "eaddrnotavail": 212, "eadv": 212, "eafnosupport": 212, "eafp": [87, 293], "eagain": [212, 213, 215, 293], "eager": [68, 359, 427, 474, 480, 483], "eager_start": 139, "eager_task_factori": [139, 474, 483], "eai_": 337, "ealreadi": [212, 213], "ear": 297, "earli": [5, 34, 75, 169, 255, 269, 292, 333, 341, 344, 365, 369, 382, 411, 422, 430, 432, 462, 466, 468, 475, 483], "earlier": [10, 33, 63, 64, 72, 84, 85, 92, 95, 96, 101, 102, 106, 115, 177, 183, 193, 230, 245, 247, 267, 269, 292, 293, 299, 319, 331, 340, 341, 348, 358, 369, 380, 383, 386, 388, 394, 400, 411, 415, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 480, 481, 482, 483], "earliest": [139, 183, 190, 366], "earliest_result": 139, "early_hint": [241, 482, 483], "earth": [94, 340, 343, 441], "earth_weight": 386, "eas": [63, 68, 330, 365, 388, 436, 462, 476, 478, 480, 483], "easi": [45, 63, 68, 73, 84, 85, 92, 99, 100, 102, 106, 120, 137, 151, 167, 169, 183, 186, 191, 193, 194, 204, 208, 226, 228, 268, 292, 293, 299, 318, 331, 337, 341, 344, 358, 364, 388, 411, 428, 430, 463, 464, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483, 484], "easier": [42, 76, 84, 87, 92, 95, 96, 100, 103, 106, 108, 115, 161, 169, 193, 206, 250, 252, 259, 269, 293, 308, 313, 319, 344, 353, 358, 362, 374, 388, 394, 434, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 483], "easiest": [75, 76, 79, 84, 85, 120, 186, 193, 243, 247, 292, 293], "easili": [7, 23, 42, 72, 73, 76, 78, 84, 85, 94, 99, 101, 102, 103, 106, 139, 151, 158, 167, 169, 176, 200, 225, 230, 255, 297, 319, 331, 344, 362, 388, 428, 435, 451, 461, 462, 465, 467, 471, 475, 476, 478, 479, 482, 483], "east": [94, 183, 366, 376, 384, 387, 440, 466], "east_asian_width": [387, 483], "eastern": [158, 183, 366, 479], "eastlak": 341, "easy_instal": [399, 474], "easydialog": 468, "eat": [102, 275, 483], "eaton": 483, "eax": 98, "eb6ec15daf9546254f0809": 235, "ebad": 212, "ebadf": [212, 328, 479, 482, 483], "ebadfd": 212, "ebadmsg": 212, "ebadr": 212, "ebadrqc": 212, "ebadslt": 212, "ebcdic": [158, 477], "ebfont": 212, "ebi": [467, 468, 471, 475], "ebk": 483, "ebnf": [427, 431], "ebusi": 212, "ebx": 98, "ec": [359, 483], "ecancel": 212, "ecc": [341, 472, 483], "ecdh": [341, 483], "ecdsa": [341, 475, 483], "echild": [212, 213], "echo": [68, 89, 92, 114, 130, 137, 141, 170, 177, 229, 247, 262, 282, 293, 299, 329, 331, 337, 348, 361, 383, 388, 430, 450, 468, 483], "echo_round": 386, "echocancel": 141, "echochar": 177, "echoclientprotocol": 133, "echofilt": 450, "echoserverprotocol": 133, "echrng": 212, "eckhardt": 475, "ecma": 262, "ecmascript": [262, 410], "ecn": [472, 483], "ecol": 378, "ecomm": 212, "econnabort": [212, 213], "econnrefus": [212, 213], "econnreset": [212, 213, 483], "econom": 318, "economi": 344, "ecosystem": 299, "ecu": 337, "ed": [42, 63, 73, 92, 167, 177, 193, 270, 293, 319, 332, 340, 472, 475, 482, 483], "eddi": [474, 481], "edeadlk": 212, "edeadlock": 212, "eden": 474, "edestaddrreq": 212, "edet": 483, "edg": [68, 176, 177, 193, 201, 225, 232, 362, 364, 384, 476, 477, 483], "edison": 483, "edit": [66, 68, 92, 95, 102, 103, 106, 109, 155, 167, 177, 190, 250, 251, 262, 271, 272, 293, 319, 320, 358, 368, 369, 376, 445, 455, 461, 462, 463, 465, 466, 468, 470, 475, 479, 480, 483], "editlin": [320, 456, 483], "editor": [68, 72, 106, 109, 250, 368, 435, 457, 462, 468, 477, 478, 479, 480, 481, 483], "editori": [426, 462], "editorwindow": 483, "editrc": [320, 483], "editwin": 92, "edness": 207, "edom": [15, 212], "edotdot": 212, "edquot": 212, "eds": 154, "edsger": 365, "edt": [183, 366, 476, 479], "edu": [80, 95, 395, 426, 464, 465, 483], "eduardo": 483, "educ": [250, 261, 384], "edward": [463, 464, 466, 467], "ee": [319, 344, 471], "ee8a": [398, 467], "ee8v4": 464, "eel": 446, "eest": 366, "eet": 366, "eexist": [212, 213, 293, 483], "ef": [146, 160, 261, 394, 417], "efanov": 483, "efault": 212, "efbig": 212, "efc_cloexec": 293, "efd_cloexec": [293, 483], "efd_nonblock": [293, 483], "efd_semaphor": [293, 483], "eff": 341, "eff_request_host": 483, "effbot": [467, 469], "effect": [9, 11, 14, 22, 23, 27, 33, 34, 45, 52, 58, 59, 63, 64, 68, 73, 75, 84, 85, 92, 93, 95, 99, 101, 102, 103, 106, 110, 115, 120, 132, 144, 159, 167, 169, 176, 177, 181, 183, 186, 187, 191, 193, 203, 208, 215, 218, 225, 226, 227, 243, 247, 250, 258, 261, 266, 267, 268, 269, 272, 283, 292, 293, 295, 297, 302, 308, 311, 314, 319, 322, 323, 324, 325, 328, 330, 331, 332, 334, 340, 341, 342, 343, 344, 345, 348, 352, 358, 362, 364, 365, 366, 376, 382, 384, 385, 386, 388, 389, 400, 405, 412, 420, 421, 422, 425, 427, 428, 430, 432, 435, 436, 442, 450, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "effective_id": [293, 476], "effici": [13, 22, 25, 33, 49, 60, 63, 64, 68, 92, 95, 99, 107, 109, 133, 151, 158, 183, 186, 191, 216, 219, 220, 226, 235, 251, 261, 283, 284, 293, 299, 307, 319, 328, 329, 341, 344, 347, 364, 365, 405, 413, 428, 464, 466, 468, 470, 474, 475, 476, 477, 478, 481, 482, 483], "efford": 95, "effort": [33, 79, 102, 106, 122, 226, 275, 307, 462, 464, 465, 466, 468, 469, 471, 475, 480, 483], "effron": 483, "efo": 103, "eg": [213, 243, 248, 293, 341, 427, 483], "egeberg": 473, "egg": [102, 103, 160, 175, 190, 193, 218, 225, 226, 251, 258, 296, 307, 319, 321, 330, 344, 348, 358, 381, 385, 386, 389, 390, 395, 413, 422, 432, 441, 443, 446, 449, 462, 483], "egg_info": 251, "eggi": 190, "egid": 293, "egor": 483, "egypt": 366, "eh": [226, 473], "ehlo": [335, 476], "ehlo_or_helo_if_need": 335, "ehlo_resp": 335, "ehopp": 395, "ehostdown": 212, "ehostunreach": 212, "ehresman": [467, 483], "eidrm": 212, "eiffel": 464, "eiffelmethod": 464, "eight": [78, 109, 177, 259, 355, 369, 435, 462, 465, 466, 481, 483], "eik": 483, "eilseq": 212, "einat": [472, 478, 479, 480, 481, 483], "einprogress": [84, 212, 213], "eintr": [23, 68, 212, 213, 283, 469, 483], "einval": [212, 293, 483], "eio": 212, "eisconn": [84, 212], "eisdir": [212, 213], "eisnam": 212, "eisuk": [473, 483], "either": [7, 11, 22, 23, 33, 42, 43, 45, 49, 55, 58, 59, 61, 63, 64, 67, 71, 72, 73, 76, 84, 85, 92, 93, 94, 95, 101, 102, 106, 109, 110, 117, 120, 133, 137, 139, 141, 144, 149, 151, 158, 169, 173, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 195, 196, 197, 199, 202, 205, 206, 207, 208, 209, 213, 215, 221, 225, 235, 242, 243, 245, 247, 248, 250, 252, 255, 257, 258, 259, 261, 262, 267, 268, 269, 270, 271, 272, 278, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 308, 309, 311, 314, 319, 322, 324, 325, 328, 329, 331, 332, 334, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 362, 365, 366, 369, 375, 376, 378, 381, 384, 386, 388, 394, 395, 399, 400, 403, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "eject": [94, 211], "ejectflag": 211, "el": [78, 359, 394, 413, 431], "el2hlt": 212, "el2nsync": 212, "el3hlt": 212, "el3rst": 212, "el_ni": 481, "elabor": [68, 106, 426, 435, 462, 465, 483], "eland": 466, "elaps": [177, 269, 283, 293, 308, 329, 337, 366, 388, 475, 483], "elbirt": 483, "eldon": 469, "elect": 475, "electron": [153, 341, 426], "eleg": [85, 167, 466, 475], "elem": [95, 147, 160, 225, 226, 261, 344, 413, 442, 467, 469, 473, 475], "elem1": [314, 467], "elem2": [314, 467], "element": [5, 7, 13, 33, 35, 42, 49, 54, 55, 59, 61, 63, 64, 68, 85, 102, 103, 106, 108, 109, 117, 120, 133, 139, 141, 151, 155, 160, 161, 176, 178, 181, 186, 190, 191, 193, 195, 196, 203, 205, 207, 209, 220, 225, 226, 228, 242, 245, 255, 261, 267, 272, 273, 275, 283, 292, 293, 304, 314, 318, 319, 322, 332, 335, 337, 343, 344, 345, 347, 348, 352, 366, 369, 375, 376, 378, 381, 384, 385, 386, 388, 394, 402, 408, 411, 412, 415, 416, 417, 419, 420, 425, 427, 428, 429, 430, 431, 440, 442, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 481, 482, 483], "element_cr": [376, 483], "element_factori": 413, "element_index": 345, "element_nam": 376, "element_nod": 410, "element_opt": 376, "elementari": [154, 177, 384], "elementdeclhandl": 314, "elementinclud": [413, 467], "elementnam": 376, "elementpath": [467, 480], "elementtre": [68, 254, 273, 409, 411, 451, 477, 479, 481, 482, 483], "elementum": 149, "elementwis": [462, 463], "eleph": 160, "elev": [461, 483], "eleven": 102, "eleventh": 102, "elf": 483, "elho": 476, "eli": [477, 479, 481, 483], "elibacc": 212, "elibbad": 212, "elibexec": 212, "elibmax": 212, "elibscn": 212, "elicit": 362, "elid": 288, "elif": [78, 85, 89, 92, 95, 102, 110, 122, 183, 190, 200, 228, 250, 289, 319, 340, 342, 344, 352, 358, 427, 428, 431, 432, 435, 441, 467, 476, 483], "elif_stmt": 431, "elig": [299, 430, 475], "elik": [473, 483], "elimin": [68, 93, 101, 186, 190, 250, 251, 271, 384, 428, 456, 466, 476, 481, 483], "eliminate_empty_basic_block": 483, "elink": [403, 467], "elisa": 475, "eliseev": 483, "elixir": 472, "elizabeth": 483, "elizondo": [474, 481], "elli": 483, "ellinghous": [397, 426], "ellington": 483, "elliot": [480, 483], "ellipsi": [16, 63, 68, 87, 122, 168, 193, 274, 299, 307, 377, 378, 385, 386, 431, 435, 450, 466, 470, 474, 481, 483], "ellipsistyp": [168, 385, 472, 483], "ellipt": [341, 476, 483], "elm": 319, "elnam": 314, "elnrng": 212, "elois": 108, "eloop": 212, "elp": 297, "els": [7, 22, 28, 35, 36, 41, 42, 53, 63, 64, 68, 72, 73, 75, 76, 78, 79, 84, 85, 88, 89, 95, 100, 102, 103, 106, 107, 110, 114, 122, 126, 136, 139, 151, 160, 166, 169, 173, 176, 183, 186, 190, 191, 193, 196, 200, 207, 226, 228, 230, 240, 242, 247, 248, 250, 261, 262, 267, 269, 271, 276, 283, 289, 291, 292, 293, 299, 309, 318, 319, 329, 332, 337, 340, 341, 342, 343, 344, 348, 352, 358, 362, 365, 378, 384, 385, 386, 389, 399, 400, 402, 407, 410, 422, 428, 430, 431, 432, 434, 435, 436, 443, 445, 455, 461, 462, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 482, 483], "else_block": 431, "elsewher": [106, 139, 157, 167, 272, 283, 324, 386, 394, 410, 427, 432, 435, 474, 477, 483], "elsiz": 42, "elson": 483, "elt": 122, "elvi": [478, 479, 480, 481, 482, 483], "elzen": 483, "em": [178, 319], "em64t": 355, "emac": [80, 86, 92, 109, 155, 177, 271, 331, 435, 468], "email": [68, 87, 101, 143, 146, 151, 235, 242, 243, 245, 251, 254, 268, 269, 271, 272, 285, 293, 319, 335, 341, 352, 366, 395, 426, 432, 451, 453, 464, 466, 467, 468, 469, 474, 483], "email6": 477, "email_address": 209, "emailaddress": 341, "emailmessag": [151, 194, 196, 197, 200, 201, 202, 205, 207, 208, 242, 395, 477, 479, 483], "emailpolici": [194, 197, 203, 208, 476, 478, 483], "emanuel": [479, 483], "emast": 483, "emax": [186, 476], "emb": [31, 33, 34, 66, 68, 72, 85, 163, 193, 246, 250, 369, 413, 464, 468, 469, 480, 481, 483], "emb_numarg": 72, "embed": [5, 7, 9, 33, 35, 45, 57, 61, 64, 68, 73, 74, 79, 92, 93, 100, 106, 109, 128, 135, 163, 177, 199, 202, 225, 259, 266, 280, 281, 293, 308, 344, 348, 366, 369, 375, 400, 415, 420, 421, 435, 451, 461, 463, 464, 467, 468, 469, 475, 477, 480, 481, 482, 483, 484], "embedd": [68, 244, 283, 458, 481, 483], "embmethod": 72, "embmodul": 72, "embodi": [85, 207, 410], "emelianov": 483, "emerg": [269, 462], "emfil": [212, 483], "emili": [481, 483], "emin": [186, 476], "emiss": [267, 362, 483], "emit": [27, 33, 34, 45, 58, 76, 96, 101, 102, 115, 132, 135, 139, 177, 183, 191, 213, 245, 261, 267, 269, 293, 299, 340, 348, 352, 362, 376, 381, 386, 388, 400, 411, 413, 417, 428, 430, 436, 455, 465, 468, 471, 474, 475, 477, 479, 480, 481, 482, 483], "emlink": 212, "emoji": [109, 475, 481, 483], "emp": 160, "emperor": 266, "emphas": [95, 193, 284, 427, 483], "emphasis": 344, "empir": 343, "employ": [139, 151, 283, 293, 412, 432, 476], "employe": [160, 386, 440, 483], "employeerecord": 160, "empt": 245, "empti": [5, 13, 17, 22, 24, 31, 33, 34, 45, 49, 55, 59, 73, 76, 84, 85, 95, 106, 120, 133, 134, 136, 138, 139, 144, 149, 151, 153, 155, 157, 158, 160, 167, 170, 181, 183, 184, 190, 191, 193, 196, 197, 203, 205, 207, 208, 209, 212, 213, 218, 223, 225, 226, 228, 230, 233, 234, 236, 242, 245, 250, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 288, 292, 293, 296, 297, 299, 309, 314, 316, 319, 325, 328, 329, 330, 331, 332, 333, 334, 337, 340, 341, 344, 347, 348, 352, 358, 359, 362, 364, 365, 369, 375, 376, 380, 382, 384, 385, 386, 387, 388, 394, 395, 400, 405, 408, 410, 411, 413, 419, 420, 422, 423, 427, 428, 430, 431, 432, 435, 436, 440, 442, 449, 455, 456, 461, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "empty_lines_in_valu": 167, "empty_namespac": 410, "empty_slot": 93, "emptylin": 155, "emscripten": [123, 151, 163, 166, 173, 210, 215, 223, 229, 233, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 310, 322, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 356, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "emscripten_vers": 352, "emsdk": 483, "emsgsiz": 212, "emt": 426, "emt19937ar": 426, "emu": 190, "emul": [24, 33, 68, 76, 79, 85, 93, 157, 159, 177, 181, 189, 193, 215, 258, 266, 271, 283, 292, 293, 302, 309, 320, 332, 333, 348, 352, 359, 464, 465, 468, 475, 476, 479, 481, 483], "emultihop": 212, "emx": 465, "en": [71, 95, 109, 110, 160, 230, 235, 240, 288, 395, 460, 461, 467, 475, 476, 483], "en_us": [183, 478, 483], "enabl": [11, 28, 34, 49, 63, 68, 75, 76, 92, 94, 96, 98, 106, 110, 112, 120, 126, 133, 139, 142, 144, 151, 152, 155, 167, 169, 176, 177, 186, 188, 193, 197, 213, 214, 225, 226, 227, 230, 242, 245, 247, 248, 250, 255, 258, 266, 268, 269, 283, 288, 293, 297, 299, 305, 308, 311, 314, 319, 320, 333, 334, 337, 340, 341, 344, 348, 352, 353, 354, 362, 367, 369, 371, 376, 380, 386, 388, 400, 412, 413, 414, 415, 420, 422, 427, 428, 429, 436, 455, 456, 461, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 475, 476, 478, 479, 480, 481, 482, 483], "enable_callback_traceback": 340, "enable_interspersed_arg": 292, "enable_load_extens": [142, 340, 456, 469, 472, 475, 483], "enable_shared_cach": [472, 473, 474, 483], "enable_smtputf8": 483, "enable_speci": 483, "enable_travers": 376, "enable_user_sit": 334, "enablecontrolflowguard": 483, "enabled_extens": 167, "enablereflectionkey": [142, 405, 468, 469], "enametoolong": 212, "enavail": 212, "enc": [121, 341], "enc_key": 235, "encapsul": [11, 84, 85, 88, 93, 100, 112, 114, 155, 202, 208, 248, 286, 305, 335, 352, 410, 414, 416, 419, 427, 432, 436, 466, 467, 468, 469, 477], "enclos": [73, 87, 106, 160, 177, 225, 242, 248, 255, 262, 288, 297, 319, 331, 362, 365, 386, 388, 410, 427, 429, 430, 434, 435, 436, 440, 449, 463, 464, 467, 473, 474, 475, 481, 483], "enclosur": 430, "encod": [5, 14, 16, 22, 23, 24, 26, 31, 33, 34, 45, 49, 58, 59, 66, 68, 71, 77, 84, 87, 92, 98, 101, 102, 106, 110, 120, 121, 126, 133, 136, 141, 143, 145, 146, 149, 150, 151, 153, 156, 167, 170, 175, 176, 177, 178, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 218, 223, 225, 230, 234, 235, 242, 244, 248, 250, 251, 252, 253, 255, 256, 258, 265, 266, 267, 268, 269, 270, 276, 285, 293, 295, 296, 297, 298, 299, 304, 307, 309, 314, 317, 330, 335, 337, 341, 344, 347, 348, 349, 352, 356, 358, 359, 360, 362, 369, 377, 378, 386, 395, 397, 407, 408, 411, 413, 415, 416, 417, 419, 420, 421, 422, 428, 432, 445, 446, 455, 461, 462, 463, 464, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "encode_7or8bit": 198, "encode_base64": [198, 206], "encode_basestring_ascii": 483, "encode_chunk": 242, "encode_func": 462, "encode_noop": 198, "encode_quopri": 198, "encode_rfc2231": 209, "encode_threshold": 469, "encodebyt": [143, 158, 482, 483], "encodedfil": 158, "encodedfiletest": 483, "encodeprior": 269, "encodestr": [317, 482, 483], "encoding_typ": 341, "encodingdecl": [314, 411, 413], "encodingmap": 483, "encodingnam": 455, "encodings_map": [276, 483], "encodingwarn": [34, 68, 213, 258, 455, 483], "encompass": 483, "encount": [5, 9, 55, 63, 106, 109, 120, 151, 153, 186, 193, 199, 205, 208, 212, 213, 228, 240, 244, 255, 267, 268, 272, 292, 297, 299, 311, 314, 319, 331, 332, 338, 340, 344, 348, 359, 376, 384, 386, 388, 400, 413, 415, 432, 456, 462, 465, 466, 467, 468, 474, 475, 476, 481, 483], "encourag": [33, 58, 73, 77, 292, 328, 329, 331, 353, 386, 405, 411, 415, 434, 456, 462, 463, 470, 481, 483], "encrypt": [158, 173, 233, 248, 268, 288, 305, 335, 339, 341, 422, 462, 464, 465, 469, 475, 476, 477, 483], "end": [5, 7, 9, 13, 18, 23, 24, 28, 31, 33, 34, 37, 39, 42, 56, 58, 60, 63, 64, 66, 68, 72, 73, 75, 78, 79, 80, 84, 89, 94, 95, 96, 100, 101, 102, 105, 106, 109, 116, 117, 120, 133, 138, 139, 146, 149, 151, 153, 155, 158, 159, 160, 163, 167, 169, 175, 176, 177, 178, 182, 183, 186, 190, 191, 193, 194, 196, 205, 207, 208, 209, 213, 215, 225, 226, 234, 235, 240, 242, 243, 245, 247, 248, 250, 255, 258, 262, 267, 268, 269, 270, 271, 278, 279, 282, 283, 284, 288, 292, 293, 295, 297, 301, 302, 305, 308, 309, 311, 314, 319, 320, 328, 330, 331, 332, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 362, 364, 366, 371, 376, 377, 378, 380, 381, 384, 388, 395, 400, 408, 410, 411, 413, 415, 416, 417, 421, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "end_async_for": [191, 481, 483], "end_col_offset": [122, 191, 431, 481, 483], "end_column": [13, 428], "end_docu": 412, "end_el": [314, 412], "end_fil": 384, "end_fin": [481, 483], "end_for": 191, "end_head": [245, 476], "end_lin": [13, 428], "end_lineno": [122, 191, 213, 381, 431, 472, 481, 483], "end_n": [413, 481, 483], "end_offset": [213, 381, 472, 483], "end_poli": 384, "end_send": [191, 474], "end_tim": [126, 139], "endcdata": 415, "endcdatasectionhandl": 314, "enddoctypedeclhandl": 314, "enddocu": 415, "enddtd": 415, "endel": [415, 462], "endelementhandl": 314, "endelementn": 415, "endhead": [242, 479], "endian": [4, 25, 31, 42, 64, 84, 107, 109, 141, 153, 158, 176, 230, 259, 295, 347, 349, 352, 398, 405, 452, 477, 483], "endidx": 155, "endif": [73, 240, 319, 456, 472, 473, 481, 482], "endless": [95, 261, 462, 464, 466, 467, 483], "endmark": [377, 378, 431], "endnamespacedeclhandl": 314, "endors": [426, 483], "endpo": 319, "endpoint": [133, 212, 242, 337, 384, 475, 483], "endprefixmap": 415, "endptr": 18, "endswith": [299, 344, 399, 462, 465, 467, 468, 478, 483], "endtim": [477, 483], "endtransf": 483, "endwin": [92, 177], "energet": 141, "energi": 141, "enetdown": 212, "enetreset": 212, "enetunreach": [212, 483], "enfil": 212, "enforc": [22, 94, 186, 196, 205, 225, 243, 293, 322, 342, 344, 384, 386, 410, 411, 413, 427, 430, 436, 455, 463, 464, 467, 470, 475, 476, 483], "engag": 352, "engin": [84, 95, 99, 106, 186, 266, 319, 340, 369, 376, 413, 415, 462, 464, 466, 468, 469, 478, 483], "english": [85, 102, 109, 292, 340, 364, 366, 384, 434, 435, 469, 470, 478, 483], "english_unit": 452, "enhanc": [68, 80, 87, 92, 95, 102, 103, 175, 226, 245, 268, 283, 341, 348, 362, 376, 384, 386, 426, 430, 435, 462, 463, 464, 466, 467, 470, 471, 475, 476, 477, 478, 483, 484], "enjoy": [103, 413, 474], "enlarg": [176, 483], "enoano": 212, "enobuf": [133, 212, 483], "enocsi": 212, "enodata": [212, 293], "enodev": 212, "enoent": [212, 213, 328, 476, 483], "enoexec": 212, "enokey": 483, "enolck": 212, "enolink": 212, "enomem": [212, 483], "enomsg": 212, "enonet": 212, "enopkg": 212, "enoprotoopt": 212, "enorm": 95, "enosi": [212, 483], "enospc": 212, "enosr": 212, "enostr": 212, "enotblk": 212, "enotcap": [212, 213, 483], "enotconn": [212, 477], "enotdir": [212, 213], "enotempti": 212, "enotnam": 212, "enotrecover": 212, "enotsock": 212, "enotsup": 212, "enotti": [212, 483], "enotuniq": 212, "enough": [5, 42, 45, 59, 63, 64, 84, 85, 92, 93, 99, 101, 102, 103, 158, 176, 183, 190, 199, 201, 247, 250, 261, 265, 270, 292, 293, 299, 308, 337, 339, 345, 348, 362, 364, 369, 385, 462, 463, 464, 465, 470, 476, 483], "enq": 178, "enqueu": [102, 269, 283, 483], "enqueue_sentinel": [102, 269], "enquiri": 178, "enrich": [72, 483], "enriqu": 483, "ensu": [33, 475], "ensur": [5, 33, 34, 42, 45, 49, 51, 58, 59, 63, 66, 68, 73, 76, 79, 84, 92, 99, 100, 101, 102, 103, 106, 120, 132, 133, 137, 158, 166, 169, 176, 181, 183, 186, 193, 196, 205, 226, 255, 262, 267, 269, 270, 278, 283, 292, 293, 299, 324, 337, 340, 341, 344, 348, 352, 361, 362, 364, 369, 382, 386, 388, 400, 405, 413, 419, 421, 422, 428, 430, 455, 456, 461, 462, 465, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ensure_app": 102, "ensure_ascii": [262, 478, 483], "ensure_directori": [399, 483], "ensure_dis": 483, "ensure_futur": [129, 139, 478, 479, 483], "ensure_valu": 292, "ensurepip": [68, 111, 142, 156, 192, 254, 399, 456, 472, 483], "ensurepiptest": 483, "ent": 240, "entail": [33, 34, 455], "enter": [33, 34, 68, 79, 84, 85, 86, 92, 95, 109, 135, 144, 151, 155, 157, 159, 169, 177, 189, 247, 258, 282, 292, 293, 297, 312, 325, 335, 340, 341, 344, 352, 359, 365, 369, 375, 384, 388, 400, 427, 428, 429, 441, 443, 452, 455, 464, 465, 467, 475, 476, 477, 480, 481, 483], "enter_async_context": [169, 473, 483], "enter_context": [169, 473, 483], "enter_result": 169, "enterab": [325, 476], "enterasynccontext": [388, 473, 483], "enterclasscontext": [388, 473, 483], "entercontext": [388, 473, 483], "entermodulecontext": [388, 473, 483], "enterpris": [303, 483], "enterprise_d": 386, "entertain": [93, 151], "enthought": [160, 461], "enthusiast": 103, "entir": [5, 42, 63, 73, 75, 84, 85, 92, 93, 99, 100, 106, 109, 112, 151, 169, 177, 184, 196, 200, 205, 207, 216, 230, 235, 242, 247, 258, 259, 261, 266, 267, 269, 270, 271, 278, 288, 292, 293, 295, 319, 322, 331, 332, 340, 341, 344, 345, 352, 355, 358, 364, 365, 369, 376, 384, 387, 388, 400, 405, 408, 410, 413, 416, 426, 427, 429, 432, 435, 436, 446, 455, 461, 463, 465, 466, 467, 468, 469, 471, 474, 476, 477, 480, 483], "entiti": [68, 87, 106, 110, 238, 240, 242, 254, 268, 273, 314, 395, 409, 410, 411, 412, 414, 415, 416, 417, 426, 465, 476, 479, 480, 481, 483], "entity_nod": 410, "entitydeclhandl": 314, "entitydef": 239, "entitynam": 314, "entityrefer": 411, "entityresolv": [68, 273, 416], "entrant": [267, 483], "entri": [5, 13, 22, 26, 27, 31, 33, 45, 49, 51, 58, 63, 68, 73, 75, 87, 89, 93, 94, 95, 98, 102, 109, 110, 120, 139, 144, 158, 160, 167, 169, 176, 177, 181, 184, 186, 191, 193, 195, 216, 225, 226, 230, 233, 236, 243, 247, 248, 250, 255, 261, 265, 268, 269, 270, 271, 272, 280, 281, 283, 284, 292, 293, 299, 302, 307, 308, 314, 316, 319, 321, 324, 330, 331, 333, 335, 339, 340, 341, 344, 352, 354, 358, 362, 365, 369, 375, 376, 378, 381, 384, 385, 400, 403, 405, 421, 422, 425, 429, 430, 452, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 478, 479, 480, 481, 483], "entropi": [293, 341, 479, 483], "entry_find": 236, "entry_func": 320, "entry_nam": 51, "entry_point": [251, 483], "entry_points_select": 251, "entryconfig": 369, "entryconfigur": 483, "entrypoint": [251, 340, 472, 474, 483], "entrythingi": 369, "enum": [36, 42, 68, 97, 120, 163, 182, 241, 254, 255, 262, 308, 311, 319, 333, 341, 344, 385, 428, 441, 476, 483], "enum_certif": [341, 477, 483], "enum_crl": [341, 477, 483], "enum_nam": 472, "enumcheck": [211, 473], "enumclass": [94, 483], "enumer": [13, 22, 23, 27, 68, 78, 93, 95, 108, 109, 182, 225, 226, 261, 283, 311, 344, 365, 382, 405, 422, 441, 442, 450, 452, 461, 473, 474, 477, 479, 483, 484], "enumkey": [142, 405], "enummeta": [211, 428, 473, 474, 483], "enumnam": 94, "enumtyp": [68, 211, 473], "enumvalu": [142, 405], "env": [84, 102, 109, 142, 167, 200, 293, 296, 344, 348, 395, 399, 421, 438, 448, 453, 455, 460, 461, 465, 466, 473, 481, 483], "env_chang": 483, "env_dir": 399, "env_ex": 399, "env_exec_cmd": 399, "env_nam": 399, "env_var": 362, "envar": 483, "envbuild": [68, 192, 477, 483], "envdir": 381, "envelop": [196, 201, 205, 207, 248, 271, 335, 483], "environ": [31, 33, 34, 42, 63, 66, 68, 84, 85, 87, 93, 101, 102, 109, 110, 111, 118, 151, 158, 160, 163, 176, 177, 182, 186, 210, 214, 225, 228, 230, 235, 245, 247, 251, 266, 268, 280, 292, 295, 297, 299, 306, 308, 309, 311, 313, 315, 325, 332, 337, 338, 344, 348, 352, 355, 358, 362, 366, 369, 380, 382, 388, 389, 395, 399, 400, 403, 405, 407, 410, 420, 428, 429, 432, 438, 448, 453, 455, 456, 457, 458, 459, 462, 463, 464, 465, 466, 468, 470, 471, 472, 474, 475, 476, 477, 480, 481, 482, 483], "environb": [293, 348, 475, 483], "environment": [293, 395, 455, 483], "environmenterror": [213, 450, 476], "environmentvarguard": [362, 468], "envvar": [266, 362, 395], "enxio": 212, "eo": 103, "eof": [66, 107, 126, 130, 133, 136, 137, 149, 155, 157, 168, 193, 213, 223, 225, 258, 270, 293, 309, 328, 331, 337, 340, 341, 359, 424, 455, 467, 472, 476, 483], "eof_receiv": [130, 133], "eoferror": [23, 24, 41, 121, 127, 149, 153, 157, 213, 223, 225, 234, 270, 274, 283, 299, 335, 359, 450, 470], "eol": [472, 483], "eoln": 482, "eopnotsupp": 212, "eot": [107, 178], "eoverflow": 212, "eownerdead": 212, "eperm": [212, 213, 476, 483], "epfnosupport": 212, "ephemer": 362, "epicuri": 200, "epilog": [68, 118, 205, 292, 467, 475], "epilogu": [196, 205], "epip": [212, 213, 333], "epiphani": 403, "epler": 463, "epoch": [209, 243, 248, 271, 288, 340, 358, 366, 419, 463, 483], "epol": [68, 329, 468, 477, 478, 482, 483], "epoll_cloexec": 328, "epoll_create1": 328, "epollerr": 328, "epollet": 328, "epollexclus": [328, 483], "epollhup": 328, "epollin": 328, "epollmsg": 328, "epolloneshot": 328, "epollout": 328, "epollpri": 328, "epollrdband": 328, "epollrdhup": [328, 483], "epollrdnorm": 328, "epollselector": [329, 480, 483], "epollwrband": 328, "epollwrnorm": 328, "eponym": 483, "eprefix": 456, "eproto": 212, "eprotonosupport": 212, "eprototyp": 212, "eprt": 223, "eps": 251, "epsilon": [275, 352, 468], "epsv": 223, "eptag": 483, "epydoc": 84, "eq": [95, 122, 181, 291, 386, 431, 483], "eq_bitwise_or": 431, "eq_default": 386, "eqequ": 377, "eqful": [212, 483], "equal": [5, 7, 25, 33, 34, 37, 42, 54, 59, 63, 64, 66, 68, 75, 85, 89, 94, 95, 102, 112, 120, 122, 132, 133, 141, 147, 149, 160, 170, 176, 177, 181, 183, 186, 190, 193, 195, 196, 202, 208, 216, 221, 225, 226, 228, 243, 259, 261, 266, 272, 275, 278, 289, 293, 295, 297, 308, 319, 331, 334, 337, 340, 341, 344, 346, 347, 352, 362, 364, 365, 376, 377, 378, 382, 384, 386, 387, 388, 400, 408, 410, 412, 413, 423, 427, 428, 430, 431, 432, 435, 436, 441, 450, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 479, 481, 482, 483], "equat": 481, "equidistribut": 318, "equiprob": 481, "equiv": 395, "equival": [5, 7, 9, 13, 22, 23, 24, 33, 42, 45, 47, 49, 54, 55, 58, 60, 61, 63, 64, 68, 73, 76, 78, 94, 95, 100, 106, 112, 115, 117, 120, 133, 137, 139, 149, 154, 158, 163, 167, 169, 176, 177, 178, 181, 183, 186, 190, 191, 196, 204, 205, 207, 225, 226, 228, 234, 235, 243, 244, 245, 247, 250, 251, 253, 255, 259, 261, 266, 267, 268, 269, 270, 271, 275, 283, 292, 293, 299, 301, 302, 308, 319, 321, 324, 329, 337, 338, 344, 345, 348, 352, 355, 358, 362, 365, 366, 369, 381, 384, 385, 386, 387, 388, 394, 403, 405, 410, 422, 427, 428, 430, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 482, 483], "er": 483, "era": [266, 467], "era_d_fmt": 266, "era_d_t_fmt": 266, "era_t_fmt": 266, "erad": 483, "erang": [18, 212], "eras": [85, 92, 102, 177, 344, 359], "erasechar": 177, "ercim": 426, "ere": 240, "eremchg": 212, "eremot": 212, "eremoteio": 212, "erestart": 212, "erf": [93, 275, 469, 475, 480, 483], "erfc": [275, 469, 475, 480, 483], "ergo": 483, "ergonom": 474, "erhard": 466, "eri": 343, "eric": [85, 92, 175, 177, 296, 324, 413, 442, 462, 463, 466, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "eric_idl": 481, "erick": 483, "ericsnowcurr": 474, "erik": [468, 473, 474, 480, 483], "eriksson": [478, 483], "erlend": [472, 473, 474, 483], "erof": 212, "erow": 378, "err": [92, 177, 213, 228, 269, 314, 348, 388, 419, 426, 443, 476], "err_lib_ssl": 483, "err_msg": [34, 352, 362], "err_traceback": 75, "err_typ": 75, "err_valu": 75, "errant": 483, "errata": [243, 262], "errcheck": 176, "errcod": [66, 419], "errmsg": 419, "errno": [15, 18, 23, 35, 51, 68, 73, 84, 118, 133, 142, 176, 188, 213, 215, 250, 254, 293, 314, 328, 333, 337, 341, 352, 362, 443, 468, 473, 476, 478, 480, 483], "erron": [176, 292, 384, 425, 462, 477, 478, 480, 482, 483], "error": [5, 7, 9, 13, 14, 17, 18, 22, 24, 25, 27, 28, 31, 32, 33, 34, 35, 36, 39, 41, 42, 45, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 74, 75, 76, 79, 84, 87, 89, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 115, 119, 120, 126, 132, 133, 137, 141, 142, 143, 144, 145, 146, 149, 151, 155, 157, 159, 163, 167, 169, 171, 175, 176, 177, 181, 183, 184, 188, 190, 193, 194, 196, 197, 201, 202, 203, 205, 207, 208, 209, 212, 213, 214, 216, 218, 225, 226, 228, 229, 234, 244, 245, 247, 248, 250, 252, 254, 256, 257, 258, 259, 262, 265, 266, 267, 268, 269, 270, 271, 273, 275, 278, 283, 285, 287, 288, 290, 293, 295, 296, 299, 302, 305, 308, 311, 319, 322, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 349, 352, 356, 359, 360, 362, 365, 369, 373, 376, 381, 384, 386, 388, 392, 394, 395, 397, 399, 400, 401, 403, 405, 406, 407, 408, 410, 412, 413, 414, 415, 416, 419, 420, 421, 422, 424, 427, 428, 429, 430, 431, 435, 436, 442, 445, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "error_access_deni": 483, "error_bad_netpath": 483, "error_bad_pathnam": 483, "error_bodi": 407, "error_callback": 283, "error_cod": 388, "error_content_typ": 245, "error_handl": [158, 414], "error_head": 407, "error_invalid_paramet": 348, "error_lead": 331, "error_messag": 296, "error_message_format": [245, 477], "error_network_access_deni": 483, "error_no_more_item": 483, "error_output": 407, "error_perm": 223, "error_po": 59, "error_proto": [223, 305, 476], "error_receiv": [130, 133], "error_repli": 223, "error_status": 407, "error_temp": 223, "error_traceback": 63, "error_typ": 63, "error_valu": 63, "errorbyteindex": 314, "errorcatchingargumentpars": 120, "errorcod": [212, 314], "errorcolumnnumb": 314, "errorhandl": [68, 273, 414, 416, 455, 468], "errorlevel": 358, "errorlinenumb": 314, "errorstr": 314, "errorstream": 407, "errortoken": [377, 474], "errtext": 362, "erupt": 464, "ervo": 106, "eryk": [109, 473, 483], "eryksun": 483, "es": [5, 85, 319, 344, 464, 468, 469, 470, 472, 474, 483], "esc": 178, "escal": 483, "escap": [16, 42, 49, 59, 68, 73, 78, 85, 92, 102, 106, 109, 120, 137, 158, 167, 175, 177, 178, 190, 208, 225, 231, 238, 247, 250, 258, 262, 288, 319, 321, 331, 344, 345, 348, 366, 384, 386, 394, 417, 419, 428, 435, 449, 462, 463, 466, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "escape4chm": 483, "escape_decod": 483, "escape_encod": 483, "escapechar": [175, 483], "escapedquot": 331, "eschew": 299, "eshutdown": [212, 213], "esmtp": 335, "esmtp_featur": 335, "esocktnosupport": 212, "esoter": [464, 467], "espeak": 102, "especi": [33, 63, 72, 73, 76, 84, 85, 99, 109, 167, 169, 183, 186, 193, 205, 247, 262, 268, 288, 293, 297, 308, 311, 313, 314, 333, 341, 342, 348, 352, 362, 384, 410, 427, 432, 434, 462, 464, 465, 468, 469, 470, 475, 476, 477, 478, 479, 481, 483], "esperanto": 158, "espip": 212, "esrch": [212, 213], "esrmnt": 212, "essay": 103, "essenc": 95, "essenti": [33, 73, 85, 93, 133, 167, 215, 225, 250, 268, 269, 288, 292, 293, 324, 330, 338, 343, 352, 388, 411, 422, 433, 462, 464, 469, 470, 476, 477, 482, 483], "est": [183, 366, 475, 479], "establish": [101, 193, 247, 248, 269, 283, 299, 302, 305, 319, 328, 335, 341, 359, 395, 405, 427, 428, 429, 469, 475, 483], "estal": 212, "estim": [49, 68, 186, 261, 288, 290, 318, 362, 428, 483], "estonian": 483, "estrpip": 212, "et": [5, 79, 102, 181, 337, 341, 376, 413, 464, 467, 469, 472, 483], "etag": 483, "etb": 178, "etc": [5, 34, 64, 79, 84, 85, 94, 95, 101, 102, 109, 110, 120, 133, 141, 146, 151, 155, 206, 225, 243, 244, 247, 252, 255, 259, 266, 267, 269, 272, 276, 281, 283, 292, 293, 296, 303, 307, 308, 310, 311, 319, 329, 334, 337, 340, 341, 358, 365, 366, 369, 375, 384, 386, 388, 394, 410, 422, 428, 431, 436, 451, 456, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483], "etcetera": 483, "etern": [106, 139], "eth_p_al": [337, 483], "ethan": [472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "ethernet": 337, "ethernet_32770": 337, "ethertype_": [337, 483], "ethertype_arp": 337, "ethertype_ip": 337, "ethertype_ipv6": 337, "ethertype_vlan": 337, "ethnomathemat": 384, "etim": 212, "etimedout": [212, 213, 468, 483], "etini": 186, "etoomanyref": 212, "etop": 186, "etre": [68, 254, 273, 409, 411, 451, 467, 469, 475, 479, 481, 482, 483], "etter": 387, "eturn": 297, "etx": 178, "etxtbsi": 212, "etyp": [376, 381, 472], "euc": [158, 195, 466], "euc_jis_2004": 158, "euc_jisx0213": 158, "euc_jp": 158, "euc_kr": 158, "euccn": 158, "eucgb2312": 158, "eucjis2004": 158, "eucjisx0213": 158, "eucjp": 158, "euckr": 158, "euclean": 212, "euclidean": [275, 481, 483], "eudora": 305, "eugen": [480, 483], "euid": 293, "euismod": 149, "eunatch": 212, "eunic": [481, 483], "eur": 483, "euresti": 481, "euro": [158, 469, 470], "europ": [158, 166, 366, 425, 469], "europe_berlin_pkl": 425, "europe_berlin_pkl_nc": 425, "european": [158, 469], "europython": 109, "euser": 212, "ev": [102, 341], "eval": [63, 85, 88, 112, 121, 122, 144, 157, 159, 213, 225, 255, 268, 297, 299, 307, 327, 344, 375, 381, 429, 431, 435, 436, 437, 440, 444, 450, 462, 466, 468, 470, 471, 472, 473, 474, 475, 483], "eval_fram": [33, 482], "eval_rul": 431, "eval_str": 255, "evalu": [13, 22, 33, 52, 56, 66, 68, 73, 85, 94, 95, 96, 113, 122, 144, 167, 225, 230, 261, 267, 268, 275, 283, 293, 297, 323, 324, 344, 352, 365, 369, 386, 394, 427, 428, 433, 435, 436, 446, 449, 456, 462, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 477, 481, 482, 483], "evan": [467, 482, 483], "even": [5, 9, 23, 26, 31, 33, 34, 42, 45, 58, 59, 63, 64, 73, 76, 84, 85, 93, 94, 95, 96, 100, 102, 103, 106, 109, 112, 120, 132, 139, 146, 151, 158, 161, 163, 167, 169, 176, 177, 181, 183, 186, 193, 194, 196, 199, 205, 206, 207, 208, 213, 214, 215, 218, 221, 225, 226, 235, 243, 247, 250, 251, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 275, 283, 292, 293, 297, 299, 307, 308, 314, 318, 319, 331, 332, 333, 334, 335, 337, 340, 341, 343, 344, 345, 347, 352, 353, 354, 358, 362, 364, 365, 366, 369, 376, 382, 384, 386, 387, 388, 395, 399, 400, 403, 405, 411, 415, 417, 419, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 482, 483], "event": [13, 22, 24, 27, 31, 33, 42, 58, 59, 66, 68, 73, 81, 92, 98, 101, 115, 121, 123, 124, 126, 129, 130, 132, 133, 135, 136, 137, 139, 142, 144, 164, 176, 177, 185, 189, 191, 222, 227, 254, 257, 267, 269, 274, 281, 283, 293, 308, 314, 315, 325, 328, 329, 333, 335, 341, 342, 352, 358, 362, 368, 371, 385, 388, 395, 410, 411, 412, 413, 414, 415, 416, 417, 426, 428, 430, 446, 452, 455, 461, 462, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "event_horizon": 472, "event_read": [329, 333], "event_set": 353, "event_writ": 329, "eventcod": 73, "eventfd": [293, 472, 483], "eventfd2": 472, "eventfd_read": 293, "eventfd_writ": 293, "eventlist": 328, "eventloop": [132, 483], "eventmap": 281, "eventmask": [328, 468], "eventtest": 474, "eventtyp": 483, "eventu": [5, 33, 73, 76, 79, 84, 106, 133, 139, 193, 232, 242, 247, 250, 267, 283, 293, 309, 395, 411, 419, 432, 435, 463, 464, 466, 467, 468, 469, 470, 474, 477, 479, 483], "ever": [73, 85, 93, 94, 177, 199, 201, 250, 261, 282, 283, 341, 348, 384, 386, 461, 464, 465, 467, 468, 469, 470, 477, 483], "everi": [33, 42, 49, 58, 73, 75, 77, 85, 93, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 132, 139, 146, 158, 167, 170, 176, 177, 183, 184, 186, 190, 191, 193, 194, 196, 205, 214, 225, 230, 243, 245, 247, 251, 255, 259, 261, 262, 267, 269, 278, 283, 292, 293, 295, 302, 314, 319, 332, 333, 334, 337, 338, 340, 344, 348, 356, 364, 365, 376, 384, 388, 395, 400, 407, 408, 410, 413, 419, 425, 427, 428, 432, 434, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "everybodi": [151, 244], "everyday": [93, 225], "everyon": [343, 477], "everyth": [63, 73, 76, 85, 92, 102, 103, 110, 120, 193, 208, 220, 225, 247, 268, 292, 293, 296, 299, 319, 332, 333, 337, 359, 369, 400, 419, 434, 435, 468, 470, 474, 476, 483], "everywher": [85, 362, 483], "evgeni": [474, 482, 483], "evict": 226, "evid": 478, "evil": [167, 469, 483], "evilzero": 483, "evolut": [462, 463], "evolv": [100, 257, 268, 432], "evp": 483, "ewe": [462, 476], "ewert": 476, "ewouldblock": [212, 213], "ewt": 467, "ex": [23, 34, 42, 102, 320, 337, 344, 419, 431, 455, 467, 474, 478, 479, 482, 483], "ex_2": 103, "ex_5": 103, "ex_6": 103, "ex_9": 103, "ex_cantcreat": 293, "ex_config": 293, "ex_dataerr": 293, "ex_ioerr": 293, "ex_nohost": 293, "ex_noinput": 293, "ex_noperm": 293, "ex_notfound": 293, "ex_nous": 293, "ex_ok": 293, "ex_oserr": 293, "ex_osfil": 293, "ex_protocol": 293, "ex_softwar": 293, "ex_tempfail": 293, "ex_unavail": 293, "ex_usag": 293, "exacerb": 483, "exact": [5, 7, 9, 11, 13, 24, 28, 39, 47, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 102, 103, 106, 109, 112, 120, 133, 147, 149, 152, 169, 176, 177, 183, 186, 191, 193, 196, 201, 203, 205, 207, 213, 221, 225, 228, 243, 245, 250, 255, 267, 268, 269, 270, 271, 275, 283, 290, 292, 293, 295, 299, 314, 319, 322, 328, 335, 337, 338, 343, 344, 345, 346, 347, 348, 352, 355, 361, 364, 365, 369, 378, 381, 386, 388, 389, 411, 413, 421, 422, 427, 430, 432, 435, 436, 444, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 483], "exact_typ": 378, "examin": [63, 68, 72, 85, 101, 109, 181, 187, 255, 293, 297, 308, 331, 332, 333, 335, 344, 352, 362, 410, 463, 465, 467, 468, 483], "exampl": [5, 7, 22, 23, 33, 34, 35, 42, 45, 51, 58, 61, 63, 64, 66, 68, 72, 73, 74, 75, 77, 84, 85, 92, 94, 95, 96, 99, 100, 101, 103, 104, 106, 109, 110, 112, 117, 119, 120, 122, 126, 128, 133, 134, 135, 136, 137, 138, 139, 141, 144, 149, 151, 158, 159, 160, 163, 170, 173, 175, 176, 177, 181, 182, 183, 184, 186, 187, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 280, 282, 283, 284, 288, 289, 293, 295, 296, 297, 299, 305, 307, 308, 311, 313, 314, 315, 318, 320, 321, 326, 329, 331, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 359, 362, 363, 364, 365, 366, 369, 375, 376, 378, 380, 382, 384, 385, 386, 387, 388, 394, 398, 400, 403, 407, 408, 410, 411, 412, 413, 415, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 443, 444, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "example1": 472, "example2": 472, "example3": 472, "example_barri": 138, "example_method": 100, "example_method_doc": 100, "example_nt": 483, "exampleclass": 389, "examplescreen": 384, "exampleservic": 420, "exampleturtl": 384, "examplexml": 413, "exc": [14, 23, 33, 47, 112, 122, 133, 139, 166, 169, 213, 381, 388, 390, 428, 436, 443, 468, 470, 472, 474, 476, 483], "exc_clear": [465, 470], "exc_detail": 169, "exc_info": [23, 33, 35, 73, 101, 102, 112, 144, 152, 191, 193, 267, 269, 332, 352, 358, 388, 405, 407, 427, 428, 450, 465, 467, 468, 470, 473, 478, 483], "exc_msg": 193, "exc_tb": [169, 333, 344], "exc_text": [102, 267, 269, 483], "exc_traceback": [112, 352, 362, 365, 381, 470, 473, 483], "exc_typ": [112, 169, 333, 344, 352, 362, 365, 381, 390, 428, 470, 473, 483], "exc_val": [333, 344], "exc_valu": [112, 352, 362, 365, 381, 428, 469, 470, 473, 483], "exceed": [5, 59, 139, 167, 186, 212, 213, 225, 269, 284, 293, 299, 307, 322, 344, 364, 365, 381, 410, 422, 465, 466, 468, 469, 479, 480, 483], "excel": [42, 109, 175, 193, 200, 384, 465, 466, 470], "excel_tab": 175, "except": [2, 5, 7, 9, 11, 13, 14, 17, 22, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 39, 41, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 74, 75, 76, 78, 79, 84, 87, 92, 93, 94, 95, 96, 99, 100, 103, 106, 109, 112, 114, 115, 117, 118, 122, 125, 126, 127, 129, 133, 134, 135, 137, 138, 139, 140, 141, 144, 146, 149, 150, 151, 152, 153, 157, 158, 159, 160, 161, 166, 167, 170, 171, 173, 175, 176, 177, 178, 181, 182, 183, 184, 186, 187, 188, 190, 191, 194, 195, 196, 199, 200, 201, 205, 206, 207, 208, 210, 212, 214, 215, 218, 223, 225, 226, 228, 229, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 254, 255, 256, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 278, 279, 281, 283, 286, 287, 288, 293, 295, 297, 299, 302, 304, 305, 308, 311, 314, 315, 316, 320, 322, 323, 325, 328, 329, 330, 331, 332, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 349, 352, 353, 357, 358, 361, 362, 363, 364, 365, 366, 367, 369, 375, 378, 379, 381, 382, 385, 386, 388, 389, 390, 393, 394, 395, 397, 399, 400, 401, 403, 405, 407, 408, 410, 411, 413, 414, 415, 416, 419, 420, 422, 423, 424, 426, 428, 429, 430, 431, 432, 434, 435, 436, 438, 439, 441, 445, 450, 452, 455, 456, 461, 462, 463, 464, 465, 466, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "except_block": 431, "except_star_block": 431, "excepthandl": 122, "excepthandler_ti": 431, "excepthook": [142, 152, 352, 362, 365, 450, 463, 472, 481, 482, 483], "exception1": 467, "exception2": 467, "exception_handl": [353, 483], "exception_hierarchi": 468, "exception_t": 473, "exceptiongroup": [23, 126, 139, 191, 213, 337, 381, 427, 443, 473, 474, 483], "exceptiont": 13, "excerpt": [152, 186, 481], "excess": [42, 85, 112, 133, 146, 176, 186, 242, 267, 321, 366, 427, 430, 483], "exchang": [68, 72, 164, 176, 212, 235, 278, 293, 341, 347, 358, 365, 468, 469, 475, 476, 483], "excinfo": 332, "excit": [93, 462, 464], "exclam": [271, 297, 345, 376, 377, 406, 435], "exclud": [5, 34, 59, 64, 100, 102, 106, 143, 163, 181, 183, 191, 193, 227, 235, 247, 271, 275, 279, 281, 293, 308, 314, 352, 358, 365, 366, 376, 382, 413, 421, 422, 426, 427, 428, 430, 442, 449, 455, 468, 469, 475, 476, 477, 478, 480, 481, 482, 483], "exclude_attr": 413, "exclude_empti": 193, "exclude_tag": 413, "excludevers": 461, "exclus": [42, 47, 63, 68, 106, 118, 149, 177, 186, 215, 258, 262, 269, 270, 271, 291, 292, 293, 319, 340, 343, 358, 380, 382, 403, 422, 426, 428, 430, 468, 476, 477, 478, 481, 482, 483], "exclusive_group": 120, "exclusive_upper_bound": 326, "excursus": [68, 448, 458], "excutor": 130, "exdev": [212, 293], "exe": [68, 86, 104, 106, 247, 269, 283, 293, 294, 332, 334, 348, 399, 422, 438, 446, 448, 456, 461, 464, 469, 475, 479, 480, 483], "exec": [33, 73, 84, 102, 112, 122, 142, 144, 157, 159, 193, 212, 213, 225, 227, 250, 293, 297, 308, 344, 348, 351, 352, 362, 369, 378, 380, 381, 382, 428, 429, 436, 437, 438, 440, 450, 456, 462, 463, 464, 466, 467, 470, 472, 477, 478, 483], "exec_": 102, "exec_bodi": 385, "exec_builtin_or_dynam": 483, "exec_funct": 483, "exec_modul": [45, 100, 250, 423, 432, 472, 474, 477, 478, 479, 483], "exec_prefix": [33, 34, 35, 283, 334, 352, 354, 380, 399, 450, 455, 456, 460, 474, 475], "execfil": [112, 465, 466, 470, 483], "execl": [292, 293], "execlp": 293, "execut": [13, 22, 23, 26, 27, 33, 34, 45, 49, 51, 53, 59, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 93, 95, 96, 102, 106, 109, 114, 115, 120, 128, 133, 135, 137, 139, 142, 144, 151, 155, 157, 158, 160, 163, 166, 169, 170, 176, 187, 191, 201, 213, 225, 226, 234, 245, 248, 250, 254, 255, 258, 266, 267, 268, 269, 272, 281, 283, 292, 293, 297, 299, 301, 303, 308, 309, 313, 315, 320, 322, 324, 325, 328, 330, 331, 332, 334, 337, 340, 342, 344, 346, 347, 348, 352, 354, 358, 362, 365, 366, 368, 369, 371, 375, 378, 380, 386, 388, 390, 395, 399, 400, 403, 405, 420, 421, 426, 427, 430, 431, 432, 436, 443, 450, 451, 453, 455, 456, 458, 459, 460, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "executemani": [340, 483], "executescript": [340, 483], "executionload": 250, "executionpolici": 399, "executor": [68, 102, 125, 126, 135, 164, 475, 478, 482, 483], "execv": [33, 257, 292, 293, 306, 476, 483], "execvp": [293, 348], "exemplar": 85, "exemplari": 426, "exemplifi": 268, "exempt": 469, "exercis": [73, 84, 101, 102, 103, 160, 187, 267, 292, 308, 362, 426, 456, 468, 483], "exfat": 483, "exfileselectbox": 375, "exful": 212, "exhaust": [5, 63, 95, 158, 160, 191, 225, 242, 261, 293, 342, 344, 362, 369, 386, 422, 427, 428, 430, 464, 466, 467, 468, 470, 478, 479, 483], "exhibit": [84, 247, 258, 293, 344], "exif": [249, 483], "exist": [5, 9, 22, 23, 25, 31, 33, 34, 39, 42, 55, 58, 59, 63, 64, 66, 67, 68, 72, 73, 76, 79, 84, 85, 93, 94, 95, 99, 101, 102, 106, 109, 110, 112, 115, 117, 120, 128, 136, 139, 144, 149, 151, 155, 158, 160, 161, 163, 167, 169, 176, 181, 183, 184, 189, 191, 193, 194, 196, 200, 205, 206, 208, 211, 212, 213, 215, 216, 218, 225, 226, 230, 234, 235, 236, 243, 244, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 267, 268, 269, 270, 271, 272, 276, 278, 281, 283, 284, 287, 288, 292, 293, 294, 295, 296, 297, 299, 302, 308, 313, 319, 320, 324, 330, 332, 333, 334, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 354, 355, 358, 360, 362, 366, 369, 372, 375, 376, 384, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 407, 410, 413, 419, 421, 422, 423, 425, 427, 428, 429, 430, 432, 435, 436, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "exist_ok": [293, 296, 478, 483], "existing_fil": 95, "existing_shm": 284, "exists_ok": 483, "exit": [23, 33, 34, 59, 66, 68, 72, 73, 84, 86, 89, 92, 95, 102, 114, 115, 118, 126, 132, 133, 135, 137, 138, 139, 140, 151, 155, 157, 166, 168, 169, 175, 177, 186, 188, 189, 191, 193, 200, 213, 214, 218, 228, 247, 248, 252, 267, 269, 283, 292, 293, 297, 308, 309, 311, 319, 328, 333, 334, 335, 337, 338, 340, 344, 348, 352, 353, 359, 362, 365, 378, 380, 384, 385, 386, 388, 389, 399, 400, 402, 403, 406, 407, 411, 420, 421, 422, 427, 428, 430, 438, 443, 448, 450, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 478, 479, 480, 481, 482, 483], "exit_cod": [142, 213], "exit_futur": 133, "exit_on_error": [68, 118, 483], "exit_success": 293, "exitcod": [34, 283, 293, 348, 362, 483], "exitfunc": [112, 462, 466, 470], "exitmsg": 157, "exitonclick": 384, "exitstack": [169, 473, 476, 480, 481, 483], "exot": [88, 100, 262, 464], "exp": [15, 154, 186, 225, 275, 318, 345, 468, 469, 476, 483], "exp2": [275, 473, 483], "expand": [33, 58, 63, 75, 94, 106, 109, 167, 186, 193, 230, 247, 255, 259, 261, 268, 283, 292, 314, 319, 344, 355, 364, 366, 369, 376, 394, 405, 410, 412, 413, 415, 420, 430, 461, 464, 465, 468, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expand_tab": 364, "expandenvironmentstr": [142, 405, 468], "expandnod": 412, "expandtab": [344, 364], "expandus": [167, 231, 243, 286, 294, 296, 320, 332, 348, 478, 481, 483], "expandvar": [231, 294, 348, 468, 483], "expans": [58, 220, 234, 247, 294, 308, 314, 348, 364, 409, 422, 466, 476, 477], "expat": [68, 254, 273, 304, 409, 413, 415, 456, 462, 463, 465, 467, 469, 475, 483], "expat_config": 483, "expat_extens": 462, "expat_vers": 409, "expaterror": [68, 273, 475], "expatpars": 483, "expatread": 483, "expect": [5, 9, 23, 28, 39, 45, 58, 63, 66, 68, 73, 75, 76, 77, 84, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 120, 127, 133, 134, 139, 151, 153, 158, 167, 169, 176, 177, 181, 186, 187, 190, 191, 193, 197, 203, 213, 221, 225, 230, 235, 242, 243, 245, 250, 251, 253, 255, 261, 262, 266, 267, 269, 271, 278, 283, 292, 293, 299, 302, 309, 312, 328, 330, 331, 333, 337, 340, 341, 343, 344, 348, 352, 354, 358, 359, 362, 366, 376, 378, 384, 385, 386, 389, 390, 394, 395, 397, 408, 413, 415, 416, 419, 425, 428, 429, 430, 431, 432, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expectation_fail": 241, "expected_cal": 390, "expectedfailur": [96, 362, 388, 471, 483], "expectedfailuretestcas": 388, "expens": [76, 85, 101, 181, 190, 226, 266, 289, 308, 332, 338, 341, 352, 432, 455, 466, 474, 476, 477, 479, 480, 481, 483], "expensive_func1": 101, "expensive_func2": 101, "expensive_mod": 386, "experi": [84, 94, 95, 101, 106, 176, 230, 293, 308, 369, 384, 388, 410, 461, 462, 463, 464, 468, 469, 471, 478, 481, 483], "experienc": 483, "experiment": [93, 247, 271, 369, 371, 410, 434, 456, 465, 470, 471, 473, 474, 475, 480, 481, 483], "experimental_isolated_subinterpret": [473, 483], "expert": [33, 34, 292, 455], "expir": [139, 212, 243, 244, 283, 325, 329, 333, 335, 337, 339, 348, 365, 366, 395, 476, 483], "expiri": [243, 483], "explain": [42, 45, 63, 73, 75, 76, 77, 85, 92, 95, 96, 99, 101, 102, 103, 106, 109, 110, 114, 151, 176, 193, 225, 235, 243, 245, 247, 255, 292, 297, 344, 369, 376, 388, 430, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "explan": [68, 106, 110, 167, 183, 190, 222, 245, 266, 271, 283, 293, 297, 301, 304, 319, 337, 344, 352, 366, 369, 395, 462, 463, 464, 465, 466, 467, 468, 475, 483], "explanatori": [77, 193, 314, 388, 483], "explicit": [7, 23, 28, 31, 33, 34, 45, 49, 51, 63, 66, 68, 73, 76, 85, 92, 94, 95, 100, 101, 102, 106, 112, 114, 120, 132, 133, 139, 151, 157, 167, 169, 170, 176, 179, 181, 183, 186, 188, 190, 196, 202, 205, 206, 208, 214, 218, 223, 225, 226, 230, 233, 243, 245, 250, 255, 258, 259, 262, 266, 267, 268, 269, 270, 271, 281, 283, 292, 293, 295, 297, 299, 311, 314, 324, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 353, 356, 358, 362, 365, 381, 384, 385, 386, 388, 395, 399, 400, 405, 410, 411, 412, 413, 414, 421, 423, 426, 427, 428, 429, 430, 432, 436, 440, 455, 456, 461, 462, 463, 464, 465, 467, 469, 470, 472, 474, 475, 478, 479, 480, 481, 482, 483, 484], "explod": [99, 259, 462, 464, 483], "exploit": [151, 245, 270, 293, 358, 428, 455, 477, 483], "explor": [101, 110, 167, 191, 240, 247, 293, 384, 399, 413, 428, 461, 468, 475, 483], "explos": [99, 413], "expm1": [275, 469, 475, 483], "expon": [25, 89, 186, 225, 318, 344, 345, 347, 352, 378, 435, 466, 468, 476, 481, 483], "exponent": 483, "exponentfloat": 435, "exponenti": [85, 186, 269, 344, 362, 409, 430, 465, 466, 468, 483], "export": [7, 23, 42, 43, 45, 48, 63, 68, 71, 72, 73, 77, 85, 110, 118, 299, 337, 340, 344, 352, 355, 378, 436, 456, 465, 469, 475, 476, 478, 479, 480, 481, 482, 483], "exportselect": 376, "exportsym": 483, "expos": [7, 33, 38, 43, 44, 45, 46, 55, 58, 61, 62, 63, 64, 72, 73, 76, 101, 110, 139, 176, 177, 181, 186, 215, 250, 252, 255, 259, 266, 267, 281, 283, 293, 299, 307, 330, 331, 335, 344, 345, 346, 348, 352, 380, 384, 385, 387, 405, 420, 422, 425, 428, 432, 465, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expositori": 193, "exposur": [173, 476], "expovari": [318, 474, 483], "expr": [95, 122, 144, 340, 388, 429, 430, 436, 462, 466, 470, 481, 482, 483], "expr1": [95, 430, 462], "expr2": [95, 430, 462], "expr3": [95, 430], "expr4": 430, "expr5": 430, "expr_context": 122, "expr_text": 483, "expr_ti": 431, "express": [5, 22, 47, 49, 54, 60, 66, 68, 73, 85, 87, 93, 102, 120, 122, 139, 144, 159, 161, 163, 167, 183, 186, 190, 191, 193, 213, 220, 225, 230, 247, 254, 255, 259, 261, 266, 268, 283, 293, 297, 308, 323, 333, 337, 340, 341, 344, 345, 347, 352, 353, 359, 362, 363, 366, 369, 378, 380, 385, 386, 387, 388, 400, 413, 419, 426, 427, 428, 429, 431, 432, 433, 435, 439, 442, 446, 447, 449, 451, 455, 462, 463, 464, 465, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "expression1": 436, "expression2": 436, "expression_list": [430, 436, 437], "expression_stmt": 436, "expression_without_invalid": 431, "exprn": [95, 462], "expung": 248, "exr": [206, 249], "ext": [101, 102, 158, 191, 200, 268, 276, 294, 297, 452, 465, 466, 475, 483], "ext_modul": [76, 462], "ext_suffix": [475, 477, 483], "extant": [196, 205, 483], "extend": [31, 33, 42, 45, 61, 63, 68, 73, 74, 75, 76, 79, 80, 84, 92, 94, 102, 106, 110, 118, 120, 121, 128, 133, 143, 155, 158, 160, 161, 167, 168, 169, 176, 177, 183, 190, 191, 192, 193, 196, 205, 207, 213, 225, 226, 230, 245, 247, 249, 258, 261, 262, 271, 275, 276, 278, 280, 282, 299, 302, 303, 308, 314, 320, 328, 332, 335, 337, 341, 344, 352, 358, 366, 376, 378, 388, 395, 410, 413, 420, 428, 429, 430, 432, 436, 441, 442, 444, 461, 463, 466, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "extend_path": 302, "extended_arg": [191, 483], "extended_arg_quick": 483, "extended_color_cont": 483, "extendedcontext": [186, 476], "extendedenvbuild": 399, "extendedinterpol": [167, 473, 475, 483], "extendedref": 402, "extendleft": 160, "extens": [5, 7, 11, 13, 23, 27, 34, 35, 42, 45, 50, 57, 61, 63, 66, 68, 72, 74, 77, 79, 84, 85, 87, 91, 92, 94, 97, 100, 105, 106, 139, 152, 167, 173, 176, 177, 181, 183, 184, 189, 190, 193, 194, 200, 203, 208, 218, 220, 235, 241, 242, 245, 246, 248, 250, 251, 254, 255, 262, 269, 271, 273, 276, 280, 288, 289, 292, 293, 297, 299, 305, 308, 312, 314, 319, 330, 331, 332, 333, 335, 337, 340, 341, 344, 352, 354, 355, 358, 362, 365, 368, 369, 375, 382, 384, 385, 386, 388, 395, 402, 405, 410, 411, 414, 415, 419, 421, 422, 428, 430, 432, 440, 445, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 482, 483], "extension_suffix": [250, 474], "extensionclass": 462, "extensionfileload": [250, 476, 477, 479], "extensions_map": 245, "extent": [133, 155, 235, 258, 278, 376, 384, 426, 471, 483], "extern": [13, 35, 51, 68, 73, 79, 84, 85, 93, 100, 102, 118, 121, 151, 158, 167, 176, 184, 197, 216, 247, 250, 255, 257, 267, 272, 293, 298, 311, 314, 338, 344, 347, 348, 358, 362, 365, 369, 384, 388, 408, 409, 410, 412, 413, 414, 415, 416, 422, 428, 430, 461, 468, 470, 471, 475, 478, 479, 480, 481, 482, 483], "external_attr": [422, 483], "external_resource_avail": 388, "externalclasherror": 271, "externalentityparsercr": 314, "externalentityrefhandl": 314, "extra": [9, 16, 28, 63, 64, 68, 76, 85, 92, 94, 96, 102, 110, 112, 120, 122, 132, 161, 170, 186, 191, 193, 196, 202, 203, 205, 208, 242, 247, 251, 267, 268, 271, 283, 292, 293, 332, 340, 341, 344, 347, 358, 359, 362, 376, 386, 413, 422, 428, 431, 452, 455, 456, 462, 465, 468, 469, 474, 475, 476, 479, 480, 481, 483], "extra_arg": [332, 475], "extra_cflag": 456, "extra_group": [348, 483], "extra_path": [479, 483], "extra_s": [28, 452], "extract": [56, 68, 72, 74, 75, 89, 94, 95, 99, 100, 119, 120, 177, 183, 190, 191, 193, 197, 200, 214, 225, 230, 242, 243, 251, 252, 255, 293, 297, 312, 313, 319, 330, 332, 335, 344, 352, 381, 394, 428, 461, 465, 466, 467, 468, 469, 472, 473, 474, 475, 477, 478, 479, 481, 482, 483], "extract_cooki": 243, "extract_dir": [142, 332], "extract_stack": [381, 483], "extract_tb": 381, "extract_vers": 422, "extractal": [358, 422, 467, 468, 478, 483], "extracted_list": 381, "extracterror": 358, "extractfil": [358, 483], "extraction_filt": 358, "extractor": 466, "extraglob": 193, "extralargefil": 483, "extran": [262, 308, 369, 483], "extrasact": [175, 483], "extrem": [13, 95, 100, 102, 109, 207, 262, 268, 293, 299, 318, 410, 422, 430, 483], "extsep": 293, "extslic": [122, 482, 483], "eye": [186, 190, 467, 474, 478, 481], "eyebal": [126, 481, 483], "ez": [108, 230], "ez_setup": 399, "ezeh": 473, "ezio": [109, 469, 475, 476, 477, 478], "f0": 344, "f0_f1f2": 344, "f0f1f2": 344, "f1": [120, 190, 216, 268, 283, 344, 427, 440, 483], "f100": 441, "f1f2": 344, "f1name": 190, "f2": [120, 190, 216, 283, 344, 427, 483], "f2name": 190, "f3": [102, 120], "f3nde": 475, "f4": [120, 464], "f5": [247, 462], "f5d": 464, "f5r": 464, "f5r8f": 464, "f6stal": 202, "f86e": [398, 467], "f9bf78b9a18ce6d46a0cd2b0b86df9da": 326, "f_add_seal": 215, "f_back": [255, 381, 428, 473, 483], "f_bavail": 293, "f_bfree": 293, "f_block": 293, "f_blockstack": 473, "f_bsize": 293, "f_builtin": [26, 255, 428, 473, 483], "f_code": [255, 381, 428, 465, 473, 483], "f_contigu": [255, 344], "f_dup2fd": [215, 473, 483], "f_dup2fd_cloexec": [215, 473, 483], "f_express": 435, "f_favail": 293, "f_ffree": 293, "f_file": 293, "f_flag": 293, "f_frame": 473, "f_frsize": 293, "f_fsid": [293, 483], "f_func": 483, "f_funcobj": 483, "f_gen": 473, "f_get_seal": 215, "f_getfd": 483, "f_getpath": [215, 483], "f_getpipe_sz": [215, 483], "f_global": [26, 255, 428, 473, 483], "f_iblock": 473, "f_in": [102, 234], "f_lasti": [26, 191, 255, 428, 465, 472, 473, 483], "f_lineno": [255, 428, 465, 472, 473, 479, 483], "f_local": [26, 255, 385, 428, 473, 483], "f_localsplus": 473, "f_lock": [293, 483], "f_namemax": 293, "f_ofd_getlk": [215, 482, 483], "f_ofd_setlk": [215, 482, 483], "f_ofd_setlkw": [215, 482, 483], "f_ok": [293, 332], "f_out": [102, 234], "f_restrict": 483, "f_seal_": 215, "f_setfd": 483, "f_setfl": 215, "f_setlkw": 215, "f_setpipe_sz": [215, 483], "f_stackdepth": 473, "f_state": [473, 483], "f_test": 293, "f_tlock": 293, "f_trace": [255, 352, 428, 473, 483], "f_trace_lin": [33, 352, 428, 473, 480, 483], "f_trace_opcod": [33, 352, 428, 473, 480, 483], "f_tstate": 477, "f_ulock": 293, "f_valuestack": 473, "f_wrlck": 215, "fa": [106, 319], "fab": 275, "fabian": 468, "fabrett": 200, "fabric": [478, 483], "faccessat": 293, "face": [33, 109, 149, 225, 247, 269, 302, 394, 425, 462, 468, 470, 476, 477, 478, 483], "facil": [7, 33, 92, 101, 142, 144, 155, 157, 177, 247, 264, 267, 269, 271, 293, 299, 337, 356, 358, 369, 384, 428, 461, 465, 483], "facilit": [23, 247, 268, 319, 320, 335, 400, 477, 480, 483], "facioni": 483, "fact": [33, 64, 73, 85, 95, 101, 106, 110, 167, 176, 186, 193, 206, 223, 225, 250, 279, 292, 299, 308, 344, 358, 369, 384, 386, 395, 421, 428, 430, 432, 434, 461, 462, 463, 468, 474, 476, 477, 478, 483], "facto": [177, 243, 252, 358, 394, 419], "factor": [109, 141, 161, 193, 235, 261, 292, 314, 344, 386, 388, 430, 431, 441, 464, 469, 476, 480, 482, 483], "factori": [63, 68, 87, 99, 120, 126, 128, 130, 133, 158, 169, 172, 176, 181, 189, 193, 203, 207, 208, 226, 250, 256, 267, 268, 269, 271, 275, 283, 292, 298, 332, 365, 369, 371, 386, 390, 407, 410, 413, 419, 420, 428, 464, 467, 468, 471, 474, 475, 476, 478, 480, 481, 482, 483], "facundo": [466, 468], "fahrenheit": [343, 481], "fail": [5, 7, 9, 11, 23, 24, 31, 33, 35, 41, 42, 45, 47, 56, 64, 68, 72, 73, 76, 79, 84, 85, 94, 102, 103, 106, 110, 120, 138, 139, 151, 153, 169, 176, 183, 190, 193, 209, 213, 215, 244, 245, 247, 249, 250, 255, 257, 261, 262, 266, 268, 270, 271, 272, 278, 283, 292, 293, 295, 297, 302, 307, 319, 322, 328, 330, 332, 333, 334, 335, 336, 337, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 382, 386, 388, 395, 405, 408, 413, 416, 419, 422, 425, 427, 428, 429, 431, 432, 436, 443, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 483], "fail_fast": [193, 477], "failed_depend": 241, "failfast": [96, 388, 469, 483], "failif": [112, 473, 474], "failifalmostequ": [112, 473, 474], "failifequ": [112, 473, 474], "failobj": [196, 205], "failunless": [112, 473, 474], "failunlessalmostequ": [112, 473, 474], "failunlessequ": [112, 473, 474], "failunlessrais": [112, 473, 474], "failur": [5, 7, 9, 11, 13, 22, 23, 24, 25, 28, 31, 33, 34, 35, 39, 42, 45, 47, 49, 51, 54, 55, 58, 59, 60, 64, 66, 68, 73, 96, 106, 133, 176, 177, 183, 187, 191, 193, 213, 243, 269, 278, 282, 283, 293, 302, 322, 332, 334, 337, 341, 344, 362, 366, 368, 423, 425, 426, 427, 430, 431, 436, 443, 463, 466, 468, 469, 471, 475, 477, 478, 479, 480, 481, 483], "failure_count": 193, "failureexcept": [193, 388], "fair": [63, 84, 92, 102, 109, 193, 204, 208, 281, 308, 330, 369, 388, 394, 410, 411, 456, 462, 464, 465, 467, 468, 479, 483], "faith": [93, 208, 345, 352], "fake": [84, 292, 428, 483], "fakenam": 483, "fakepath": 362, "fakeseq": 465, "fall": [10, 18, 22, 25, 39, 42, 63, 64, 84, 95, 101, 108, 161, 177, 181, 183, 186, 196, 205, 213, 225, 235, 268, 293, 295, 325, 341, 344, 345, 358, 394, 395, 425, 428, 432, 435, 448, 462, 464, 465, 467, 468, 469, 470, 474, 475, 477, 479, 480, 482, 483], "fallback": [35, 68, 126, 163, 168, 184, 217, 230, 299, 332, 352, 358, 362, 376, 406, 428, 430, 432, 474, 475, 481, 483], "fallback_charset": 209, "fallback_oper": 289, "falloc": 483, "fallthrough": [78, 483], "fals": [5, 6, 7, 22, 33, 34, 35, 47, 49, 58, 63, 64, 66, 73, 84, 85, 89, 92, 94, 95, 96, 99, 100, 101, 102, 107, 108, 109, 110, 114, 115, 116, 120, 122, 126, 129, 132, 133, 134, 135, 136, 138, 139, 143, 144, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 163, 166, 167, 168, 169, 170, 175, 176, 177, 179, 181, 183, 186, 188, 190, 191, 193, 196, 199, 200, 201, 203, 204, 205, 207, 208, 209, 210, 211, 213, 214, 215, 216, 218, 220, 225, 226, 227, 228, 230, 231, 232, 235, 236, 241, 242, 243, 245, 248, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 283, 284, 288, 291, 292, 293, 294, 295, 296, 297, 299, 303, 304, 307, 311, 312, 314, 316, 317, 319, 320, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 355, 358, 360, 362, 364, 365, 366, 369, 372, 373, 376, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 399, 400, 402, 403, 407, 413, 415, 417, 419, 420, 421, 422, 425, 427, 428, 430, 431, 435, 436, 440, 441, 442, 443, 444, 449, 450, 452, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "false_v": 467, "false_valu": 467, "falsey": 483, "famili": [5, 16, 33, 42, 54, 68, 95, 109, 126, 136, 142, 164, 200, 212, 235, 271, 283, 293, 298, 337, 338, 356, 362, 369, 372, 410, 455, 461, 465, 466, 467, 469, 476, 479, 480, 481, 483], "familiar": [76, 92, 95, 96, 99, 102, 106, 157, 194, 228, 293, 340, 432, 463, 464, 465, 468, 483], "fan": 73, "fanci": [85, 92, 102, 465, 469, 483], "fancier": [84, 120, 190, 466, 467, 469], "fanciest": 465, "fancyurlopen": [395, 483], "fanout": 235, "fantix": 483, "faq": [68, 78, 85, 86, 225, 235, 255, 290, 305, 344, 394, 429, 454, 467, 469, 477, 483], "far": [73, 76, 85, 106, 108, 169, 183, 186, 190, 235, 243, 258, 275, 283, 292, 293, 319, 331, 332, 338, 359, 366, 375, 388, 395, 434, 462, 463, 464, 465, 466, 468, 483], "farg": 226, "fasaraki": 483, "fashion": [139, 170, 234, 262, 283, 308, 319, 337, 381, 413, 427, 428, 430, 466, 469, 476, 477, 483], "fast": [39, 58, 64, 68, 94, 100, 141, 170, 184, 186, 191, 225, 234, 250, 255, 258, 261, 269, 299, 308, 332, 344, 369, 384, 386, 413, 428, 442, 462, 466, 467, 469, 475, 476, 477, 478, 479, 480, 482, 483], "fastcal": 483, "fastcgi": 407, "fastchildwatch": [132, 474, 483], "fastconnector": 386, "faster": [54, 63, 68, 84, 85, 93, 106, 139, 176, 177, 186, 207, 226, 234, 235, 247, 261, 283, 293, 308, 341, 344, 384, 426, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "fastest": [85, 234, 283, 319, 384, 451, 468, 475, 481], "fastpath": 483, "fastsearch": 483, "fat": [355, 405], "fat32": [293, 483], "fatal": [23, 33, 42, 59, 72, 73, 214, 341, 358, 388, 443, 469, 470, 476, 479, 483], "fatalerror": 415, "fault": [31, 68, 101, 176, 184, 185, 256, 292, 297, 322, 333, 366, 381, 467, 469, 476, 483], "faultcod": [419, 483], "faulthandl": [34, 68, 176, 185, 188, 254, 297, 333, 362, 381, 455, 483], "faulthandler_sigfp": 483, "faulthandler_suppress_crash_report": 483, "faultstr": 419, "favicon": 223, "favor": [103, 161, 225, 242, 288, 293, 344, 362, 386, 395, 466, 468, 470, 474, 475, 477, 478, 479, 481, 483], "favorit": [73, 109, 442], "favorite_mood": 94, "favour": [49, 54, 250, 255, 467, 476, 479, 480, 482, 483], "favourit": 101, "fb11063974": 483, "fb13453490": 483, "fb605b73": 337, "fb8919203": 483, "fbar": 292, "fbb": 436, "fblogg": 267, "fca": 483, "fcc": 477, "fcf": 483, "fchdir": [293, 478], "fchmod": [293, 468, 478, 483], "fchown": [293, 468, 478], "fci": 483, "fcicreat": [281, 483], "fcntl": [68, 142, 254, 337, 391, 464, 465, 466, 468, 483], "fcompar": 190, "fcopyfil": [332, 483], "fd": [23, 24, 84, 126, 130, 133, 142, 177, 215, 258, 282, 293, 309, 328, 329, 332, 333, 337, 361, 383, 384, 468, 483], "fd2": 293, "fd_cloexec": [215, 473], "fd_count": [362, 483], "fd_high": [293, 483], "fd_low": [293, 483], "fdata": 456, "fdatasync": [293, 478], "fdcba": 147, "fdel": [93, 225, 385], "fdescf": 483, "fdopen": [282, 293, 337, 428], "fds": [328, 337, 483], "fds_to_pass": 483, "fdset": 483, "fdst": 332, "fdwalk": 483, "fe": 103, "fe80": 259, "feanil": 480, "feasibl": [63, 73, 330, 477, 483], "feat": 337, "featur": [23, 33, 34, 49, 51, 54, 61, 63, 66, 68, 75, 79, 84, 85, 87, 92, 93, 94, 95, 96, 101, 102, 106, 109, 113, 120, 151, 152, 158, 167, 176, 177, 179, 180, 181, 183, 187, 193, 194, 208, 213, 226, 243, 247, 250, 257, 262, 267, 270, 283, 292, 293, 297, 299, 302, 319, 324, 332, 335, 340, 341, 344, 348, 352, 358, 362, 365, 369, 380, 384, 388, 395, 400, 410, 411, 414, 415, 416, 422, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 468, 470, 471, 473, 475, 476, 483, 484], "feature_external_g": [412, 414, 415], "feature_external_p": 415, "feature_namespac": 415, "feature_namespace_prefix": 415, "feature_string_intern": 415, "feature_valid": 415, "feature_vers": [122, 377, 481, 483], "featurecompon": 281, "featurenam": [113, 416], "feb": [89, 95, 183, 464], "februar": 183, "februari": [150, 183, 366, 435, 463, 474, 475, 483], "fed": [207, 235, 283, 314, 413, 467], "feder": 426, "federico": 483, "fedisableexcept": 483, "fedora": [96, 105, 223, 352, 456, 460, 472, 475, 482, 483], "fedoraproject": 460, "fedoseev": [472, 482, 483], "fee": [78, 225, 426], "feed": [94, 158, 177, 178, 207, 208, 235, 240, 283, 344, 407, 413, 416, 467, 475, 483], "feed_data": 483, "feed_eof": [136, 483], "feedback": [68, 230, 314, 384, 413, 426, 466], "feeder": [283, 386, 483], "feedpars": [68, 194, 199, 285, 466, 483], "feel": [189, 292, 376, 441, 464, 465, 468, 472], "feff": [102, 109, 158], "feli": 149, "felip": 483, "felisiak": 483, "felix": [103, 483], "fell": [319, 441, 451, 463, 464, 465], "felling": 464, "fellow": 288, "felt": [477, 481, 483], "femal": [102, 343], "fenner": 468, "fermat": 344, "fern": 469, "fetch": [31, 68, 93, 95, 110, 167, 175, 208, 248, 257, 281, 283, 293, 299, 307, 315, 333, 337, 340, 341, 395, 396, 414, 419, 452, 466, 475, 476, 483], "fetch_respons": 386, "fetchabl": 462, "fetchal": [160, 340, 467], "fetched_python_logo": 419, "fetchmail": 305, "fetchmani": 340, "fetchon": [93, 299, 340, 467, 475], "feugiat": 149, "feurzeig": 384, "few": [5, 33, 73, 85, 94, 95, 96, 100, 101, 102, 103, 106, 109, 120, 141, 155, 158, 167, 170, 173, 176, 177, 181, 183, 186, 190, 193, 200, 223, 230, 247, 269, 281, 283, 292, 299, 319, 334, 335, 337, 341, 344, 347, 353, 362, 369, 381, 388, 394, 395, 428, 434, 435, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "fewer": [106, 108, 247, 261, 319, 340, 376, 432, 465, 467, 470, 477, 479, 480, 481, 483], "ff": [178, 190, 225, 319, 347, 435], "ff00": 259, "ff02": 259, "ff9b": 259, "fffd": [14, 109, 158, 462, 483], "fffe": 158, "ffff": [99, 259, 462, 476, 483], "ffff_ffff": 479, "ffffff": [183, 384], "ffi": [479, 483], "ffi_conveni": 483, "ffi_prep_arg": 483, "ffi_type_": 483, "fflag": 328, "ffoo": 292, "fg": [177, 261, 344, 369, 376], "fgbg": 483, "fget": [93, 225, 385], "fh": 102, "fi": [218, 225], "fib": [226, 441, 450], "fib2": [441, 450], "fibo": 450, "fibonacci": [85, 226, 441, 449, 450, 473], "fichier": 109, "ficlon": [215, 483], "ficlonerang": [215, 483], "fiction": 413, "fictiv": 413, "fido": 440, "fie": 78, "fiefoo": 78, "fieka": [472, 483], "field": [2, 5, 13, 28, 31, 33, 34, 42, 54, 55, 58, 60, 61, 63, 64, 66, 68, 73, 75, 76, 84, 87, 93, 94, 100, 101, 118, 151, 153, 158, 160, 177, 183, 186, 191, 196, 199, 202, 203, 205, 208, 209, 213, 233, 234, 236, 242, 247, 259, 267, 268, 272, 281, 293, 314, 315, 316, 322, 325, 335, 337, 339, 340, 341, 342, 344, 345, 347, 348, 352, 356, 358, 361, 366, 369, 376, 378, 381, 394, 398, 400, 405, 411, 413, 422, 428, 435, 452, 455, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "field1": 469, "field2": 469, "field_nam": [160, 345], "field_size_limit": [100, 175, 467, 483], "field_specifi": 386, "fieldbackground": 376, "fieldnam": [122, 160, 175, 468, 471, 483], "fieldstorag": [151, 477, 478, 480, 483], "fieldvalu": 209, "fifo": [124, 134, 160, 283, 293, 296, 316, 329, 342, 358, 479, 480, 483], "fifotyp": 358, "fifth": [109, 177, 247, 344, 366, 483], "fifti": [390, 426], "fig": 244, "fight": [299, 475], "figur": [31, 73, 76, 92, 94, 95, 106, 109, 120, 186, 193, 292, 308, 337, 358, 462, 463, 464, 465, 466, 467, 468, 469, 476, 483], "file": [7, 16, 23, 25, 31, 32, 33, 34, 41, 45, 49, 51, 59, 63, 66, 68, 72, 73, 75, 76, 77, 78, 79, 81, 84, 86, 87, 89, 93, 94, 95, 96, 98, 100, 103, 106, 110, 112, 114, 115, 117, 118, 119, 121, 122, 125, 126, 130, 131, 132, 133, 137, 139, 141, 144, 146, 148, 150, 151, 152, 153, 155, 157, 158, 160, 163, 169, 174, 175, 176, 177, 178, 183, 184, 185, 186, 187, 188, 190, 191, 196, 200, 201, 204, 206, 207, 208, 212, 213, 215, 216, 217, 218, 219, 220, 223, 225, 228, 229, 230, 231, 234, 242, 243, 245, 248, 249, 252, 253, 255, 257, 258, 259, 262, 265, 266, 267, 269, 271, 272, 274, 276, 278, 279, 280, 281, 283, 286, 288, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 311, 312, 313, 314, 319, 321, 322, 324, 326, 328, 329, 330, 331, 333, 334, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 352, 355, 358, 359, 360, 361, 362, 363, 365, 366, 367, 368, 376, 377, 378, 380, 381, 382, 384, 386, 387, 388, 390, 391, 394, 395, 397, 399, 400, 401, 403, 404, 405, 406, 407, 411, 412, 413, 414, 416, 417, 419, 421, 423, 425, 426, 427, 429, 430, 431, 432, 435, 436, 440, 441, 442, 443, 445, 446, 448, 449, 450, 452, 455, 458, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 482, 483, 484], "file1": [190, 390, 469], "file1_or_file2": 190, "file2": [190, 390, 469], "file3": 390, "file_act": [293, 483], "file_attribute_": 293, "file_attribute_arch": [293, 342], "file_attribute_compress": 342, "file_attribute_devic": 342, "file_attribute_directori": 342, "file_attribute_encrypt": 342, "file_attribute_hidden": 342, "file_attribute_integrity_stream": 342, "file_attribute_no_scrub_data": 342, "file_attribute_norm": 342, "file_attribute_not_content_index": 342, "file_attribute_offlin": 342, "file_attribute_readon": 342, "file_attribute_reparse_point": [293, 342], "file_attribute_sparse_fil": 342, "file_attribute_system": 342, "file_attribute_temporari": 342, "file_attribute_virtu": 342, "file_cont": [234, 270], "file_count": 358, "file_digest": [235, 473, 483], "file_encod": 158, "file_handl": 390, "file_list": 95, "file_mtim": 190, "file_nam": [142, 405], "file_obj": [462, 465], "file_open": 395, "file_or_dir": 357, "file_or_path": 169, "file_path": 250, "file_rul": 431, "file_s": [422, 464], "file_util": [469, 483], "file_wrapp": [407, 483], "fileblock": 483, "filecmp": [68, 156, 190, 219, 254, 462, 483], "fileconfig": [101, 102, 268, 469, 477, 480, 483], "filecont": 242, "filecookiejar": [68, 256, 483], "filedescriptor": 293, "filedialog": [68, 368, 369], "fileencod": 435, "fileentri": 375, "fileexistserror": [23, 200, 212, 213, 225, 258, 293, 296, 311, 332, 358, 422, 450, 476, 477, 483], "filefind": [250, 302, 472, 473, 476, 483], "filehandl": [68, 101, 102, 110, 118, 256, 267, 268, 468, 483], "filehash": 251, "fileinput": [68, 156, 219, 225, 254, 293, 352, 467, 473, 475, 481, 483], "fileio": [33, 34, 120, 225, 258, 469, 477, 483], "fileitem": 151, "filelik": 407, "filelineno": 218, "fileload": [250, 476, 477], "filemod": [101, 102, 267, 342, 358, 476, 481, 483], "filen": 311, "filenam": [13, 23, 33, 34, 45, 59, 66, 68, 71, 77, 84, 85, 95, 98, 101, 102, 106, 112, 120, 122, 142, 144, 149, 151, 155, 157, 158, 159, 160, 163, 167, 169, 175, 176, 184, 189, 190, 193, 196, 197, 200, 201, 205, 213, 214, 218, 220, 223, 225, 230, 234, 243, 247, 250, 255, 265, 267, 268, 269, 270, 272, 276, 279, 281, 283, 286, 292, 293, 295, 296, 297, 299, 302, 308, 309, 311, 319, 320, 330, 331, 332, 336, 340, 348, 351, 352, 358, 362, 369, 375, 378, 381, 382, 384, 385, 388, 390, 393, 395, 400, 403, 405, 406, 407, 411, 412, 413, 414, 421, 422, 436, 438, 446, 451, 452, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "filename2": [23, 213], "filename_on": 357, "filename_or_fil": 411, "filename_or_stream": 414, "filename_pattern": 382, "filenameobject": 23, "filenameobject2": 23, "filenames": 452, "fileno": [24, 59, 84, 102, 142, 149, 188, 215, 218, 235, 242, 258, 278, 283, 293, 295, 328, 329, 333, 337, 338, 341, 359, 360, 361, 369, 464, 467, 477, 483], "filenotfound": 483, "filenotfounderror": [23, 120, 140, 169, 212, 213, 250, 253, 268, 286, 293, 296, 320, 443, 450, 476, 478, 483], "fileobj": [234, 235, 329, 333, 358, 476, 483], "fileobject": [167, 472], "files_double_ev": 189, "files_hash_person": 235, "files_select_ev": 189, "fileselectbox": 375, "fileselectdialog": 375, "fileset": 483, "filesystem": [5, 23, 33, 34, 59, 64, 66, 68, 87, 109, 120, 143, 167, 213, 215, 216, 250, 266, 271, 283, 293, 297, 302, 324, 332, 341, 352, 355, 358, 362, 388, 389, 399, 400, 421, 422, 455, 461, 463, 469, 474, 477, 480, 483], "filesystem_encod": [34, 59, 87, 293, 352, 474], "filesystem_error": [34, 59, 87, 293, 352, 474], "filetyp": [68, 118, 189, 336, 469, 477, 483], "fileutil": 483, "filewrapp": [407, 473, 481, 483], "filip": [473, 476, 477, 481, 483], "fill": [5, 7, 22, 33, 34, 42, 45, 47, 55, 60, 63, 64, 68, 75, 76, 85, 92, 95, 100, 102, 110, 117, 120, 138, 151, 176, 177, 183, 186, 193, 196, 201, 205, 222, 225, 245, 247, 250, 258, 261, 269, 293, 335, 337, 340, 341, 344, 345, 347, 348, 362, 364, 366, 369, 428, 430, 432, 452, 456, 462, 464, 465, 466, 467, 468, 474, 475, 476, 478, 479, 483], "fill_char": 64, "fill_gap": 384, "fillbyt": 344, "fillchar": 344, "fillcolor": 384, "fillstat": 384, "fillvalu": [261, 321, 468, 483], "film": [296, 386], "films_tot": 343, "filter": [34, 59, 68, 85, 95, 101, 112, 118, 119, 141, 160, 177, 185, 189, 190, 213, 216, 218, 220, 225, 261, 268, 312, 315, 328, 332, 337, 362, 388, 399, 421, 425, 430, 442, 450, 455, 456, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 474, 475, 479, 480, 481, 482, 483], "filter_arm": 270, "filter_armthumb": 270, "filter_command": 189, "filter_delta": 270, "filter_dir": [68, 187], "filter_func": 358, "filter_ia64": 270, "filter_lzma1": 270, "filter_lzma2": 270, "filter_mak": 102, "filter_powerpc": 270, "filter_sparc": 270, "filter_trac": 382, "filter_x86": 270, "filtered_data": 442, "filtererror": 358, "filterfals": [95, 112, 225, 261, 343], "filterfunc": [422, 477], "filternam": 358, "filterwarn": [400, 455, 463, 465, 483], "final": [28, 32, 34, 45, 49, 59, 61, 63, 68, 73, 74, 76, 84, 85, 94, 95, 96, 101, 102, 103, 106, 113, 115, 122, 126, 133, 135, 138, 139, 141, 144, 158, 176, 181, 186, 188, 190, 191, 193, 197, 203, 213, 235, 245, 250, 255, 261, 265, 271, 283, 292, 293, 296, 297, 299, 308, 311, 314, 315, 319, 332, 334, 338, 340, 341, 352, 353, 354, 358, 361, 362, 364, 365, 369, 376, 378, 381, 382, 384, 385, 386, 388, 399, 400, 402, 406, 414, 422, 428, 429, 430, 431, 432, 435, 436, 443, 446, 456, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 475, 476, 478, 479, 480, 481, 482, 484], "finalbodi": 122, "finalist": 235, "finalized_tasks_queu": 232, "finally_block": 431, "find": [1, 31, 33, 61, 63, 68, 72, 73, 75, 77, 84, 93, 94, 95, 96, 99, 101, 102, 103, 105, 106, 109, 112, 118, 120, 141, 147, 151, 158, 160, 177, 181, 183, 190, 191, 193, 195, 196, 197, 199, 205, 207, 213, 221, 225, 226, 230, 235, 247, 250, 251, 255, 266, 267, 273, 278, 292, 293, 299, 302, 313, 323, 337, 341, 343, 344, 348, 352, 354, 362, 363, 365, 367, 369, 386, 388, 394, 395, 410, 429, 430, 432, 434, 436, 441, 442, 455, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "find_and_load": 98, "find_class": [142, 299], "find_distribut": 251, "find_execut": 483, "find_executable_lin": 479, "find_funct": 483, "find_g": 147, "find_good_parse_start": 483, "find_gt": 147, "find_l": 147, "find_librari": [176, 479, 483], "find_library_fil": 483, "find_lin": 479, "find_lines_from_cod": 479, "find_load": [302, 423, 432, 472, 473, 474, 476, 477, 480, 483], "find_longest_match": [190, 483], "find_lt": 147, "find_modul": [352, 423, 432, 465, 472, 473, 474, 476, 477, 480, 483], "find_msvcrt": 176, "find_name_in_mro": 93, "find_python": 483, "find_recursionlimit": 462, "find_spec": [250, 302, 352, 423, 432, 472, 474, 477, 478, 480, 483], "find_str": 479, "find_unused_port": [362, 483], "find_user_password": [395, 483], "findal": [106, 160, 319, 413, 451, 477, 483], "findcal": 267, "finder": [31, 68, 87, 193, 250, 251, 270, 279, 302, 352, 433, 459, 461, 466, 468, 472, 474, 476, 477, 483], "findertool": 468, "findfactor": 141, "findfil": [362, 483], "findfirstfil": 478, "findfirstfilew": [293, 483], "findfit": 141, "findit": [106, 279, 319, 464, 483], "findlabel": 191, "findleak": 483, "findlinestart": [191, 483], "findmatch": 272, "findmax": 141, "findnextfil": 478, "findnextfilew": 293, "findsourc": 483, "findtestcas": [473, 474, 483], "findtext": [413, 483], "fine": [73, 78, 84, 85, 100, 102, 109, 110, 167, 176, 177, 193, 201, 225, 226, 243, 267, 292, 293, 318, 333, 341, 352, 369, 386, 395, 428, 461, 462, 463, 465, 467, 474, 483], "finer": [68, 74, 101, 267, 293, 474, 480, 481, 483, 484], "finger": [244, 470], "finish": [5, 34, 42, 61, 63, 72, 79, 84, 85, 102, 124, 125, 128, 135, 137, 138, 139, 144, 149, 155, 169, 213, 242, 267, 270, 283, 314, 316, 333, 338, 340, 341, 344, 348, 358, 362, 371, 388, 403, 411, 412, 413, 416, 419, 422, 427, 428, 452, 455, 467, 468, 475, 476, 478, 479, 482, 483], "finish_request": 338, "finit": [25, 84, 92, 95, 106, 186, 221, 261, 275, 352, 428, 483], "fink": 483, "finley": 319, "fioasync": 483, "fioclex": 483, "fionbio": 483, "fionclex": 483, "fionread": 483, "fiori": 468, "fip": [235, 341, 483], "fire": [76, 102, 120, 139, 333, 474, 483], "firebird": [474, 483], "firefox": [395, 403, 467, 474, 483], "firewal": [99, 247, 283, 463, 476], "first": [5, 13, 22, 23, 25, 27, 31, 33, 34, 37, 39, 41, 42, 45, 47, 49, 51, 54, 58, 59, 60, 61, 63, 64, 67, 72, 73, 75, 76, 77, 78, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 126, 132, 135, 139, 141, 144, 147, 151, 153, 155, 157, 158, 160, 167, 169, 176, 177, 178, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 205, 207, 208, 209, 211, 213, 214, 215, 218, 221, 225, 226, 228, 230, 235, 242, 243, 244, 247, 248, 255, 258, 259, 261, 265, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 283, 284, 287, 288, 291, 292, 293, 295, 297, 299, 301, 302, 307, 308, 313, 314, 319, 320, 324, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 354, 355, 356, 358, 359, 361, 362, 364, 366, 369, 375, 376, 377, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 400, 405, 407, 408, 410, 413, 414, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 446, 449, 452, 455, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "first_16": 176, "first_alt": 431, "first_appear": 340, "first_complet": [139, 166], "first_except": [139, 166], "first_lin": 191, "first_nam": [175, 319], "first_patch": 389, "first_peak": 382, "first_siz": 382, "first_sunday_on_or_aft": 183, "first_tru": 261, "first_us": 386, "first_week_day": 94, "firstchild": 410, "firstheaderlineiscontinuationdefect": 199, "firstit": 352, "firstkey": 184, "firstlin": [158, 188], "firstlineno": 13, "firstnam": [226, 340, 475], "firstofmonthd": 85, "firstweekday": 150, "fish": [110, 299, 389, 390, 399, 453, 477, 483], "fishi": 389, "fishshel": 483, "fit": [35, 73, 99, 120, 176, 177, 178, 186, 191, 193, 195, 215, 250, 259, 269, 292, 307, 308, 337, 347, 364, 369, 384, 388, 395, 400, 410, 421, 426, 465, 466, 469, 474, 475, 476, 477, 482, 483], "fitzroy": 465, "five": [102, 186, 269, 271, 292, 293, 319, 338, 340, 352, 394, 415, 462, 468, 476, 481, 483], "fix": [42, 55, 61, 63, 68, 77, 79, 84, 85, 92, 93, 95, 105, 106, 112, 120, 151, 159, 161, 176, 177, 182, 183, 186, 193, 201, 225, 243, 247, 259, 261, 283, 288, 293, 299, 314, 319, 340, 343, 345, 347, 348, 365, 372, 408, 413, 427, 455, 462, 464, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "fix_import": [299, 471], "fix_missing_loc": [122, 483], "fix_sentence_end": 364, "fix_urllib": 483, "fixcid": 483, "fixer": [68, 187, 483], "fixtur": [68, 187, 469], "fizz": 102, "fkeyword": 226, "fl": 468, "flag": [7, 9, 10, 13, 18, 24, 28, 33, 34, 43, 49, 50, 61, 63, 64, 66, 68, 72, 73, 75, 76, 99, 100, 101, 102, 109, 112, 114, 118, 126, 136, 138, 142, 144, 155, 158, 176, 177, 181, 183, 184, 186, 187, 188, 191, 196, 207, 208, 209, 211, 215, 225, 227, 243, 248, 257, 258, 266, 267, 268, 271, 276, 278, 281, 282, 283, 288, 293, 296, 301, 305, 307, 313, 314, 315, 328, 330, 332, 333, 334, 337, 338, 340, 341, 342, 344, 345, 348, 352, 361, 362, 363, 365, 366, 376, 383, 385, 386, 388, 394, 395, 400, 406, 408, 419, 420, 422, 425, 427, 428, 432, 450, 455, 458, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "flag_bit": [422, 483], "flag_list": 248, "flag_ref": 483, "flagboundari": [94, 211, 473], "flags_and_attribut": 142, "flagstaff": 95, "flagstr": 248, "flake8": 483, "flaki": 483, "flanagan": 483, "flash": [92, 177, 483], "flat": [190, 201, 204, 369, 376, 412], "flatten": [160, 196, 201, 202, 203, 205, 208, 261, 299, 344, 386, 442, 474, 477, 478, 482, 483], "flattened_data": 261, "flavor": [75, 193, 235, 261, 293, 342, 344, 427, 430, 456, 483], "flavour": [106, 109, 250, 296, 358, 467, 483], "flaw": [84, 464, 475, 483], "flawless": [467, 468], "flew": 443, "flexibl": [68, 73, 84, 93, 99, 101, 102, 106, 112, 133, 151, 169, 176, 190, 193, 196, 205, 208, 230, 268, 283, 292, 295, 299, 340, 344, 348, 358, 366, 386, 400, 411, 413, 428, 462, 463, 465, 467, 469, 470, 475, 478, 482, 484], "fli": [51, 68, 75, 186, 225, 246, 427, 439], "flicker": [92, 177, 483], "flight": 483, "flip": 483, "flist": 483, "float": [5, 16, 18, 41, 42, 47, 58, 63, 68, 76, 78, 84, 85, 87, 93, 94, 96, 112, 115, 120, 121, 126, 139, 141, 154, 160, 162, 167, 175, 176, 181, 183, 190, 193, 209, 213, 221, 223, 225, 226, 227, 233, 248, 250, 254, 261, 262, 266, 271, 274, 275, 283, 284, 289, 290, 292, 293, 299, 304, 308, 318, 319, 322, 328, 333, 337, 340, 341, 343, 345, 347, 352, 358, 365, 366, 376, 378, 379, 384, 385, 386, 387, 388, 408, 419, 427, 430, 436, 440, 442, 444, 449, 450, 451, 452, 456, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "float_array_1d": 386, "float_info": [87, 275, 344, 450, 468, 483], "float_repr_styl": [352, 450, 469], "floatabl": 292, "floatenum": 94, "floatingpointerror": [23, 213, 450], "floatnumb": [225, 430, 435], "floatoper": [186, 476], "floatvalu": 225, "flock": [142, 215, 271, 483], "flood": 483, "floor": [47, 87, 166, 183, 186, 193, 221, 225, 275, 289, 344, 384, 428, 430, 449, 464, 468, 481, 482, 483], "floordiv": [95, 122, 291, 431], "florent": [469, 475], "flori": 468, "florian": 483, "flour": 340, "flow": [68, 73, 95, 130, 133, 177, 178, 186, 348, 353, 359, 386, 427, 429, 430, 462, 464, 465, 467, 468, 478, 483], "flowcontrolmix": 483, "flowinfo": 337, "flp": 468, "flt": 221, "flt_radix": 352, "flt_round": 352, "flufl": 345, "fluri": 483, "flurri": [92, 462], "flush": [33, 101, 102, 107, 115, 126, 130, 133, 136, 149, 158, 160, 177, 214, 225, 245, 258, 267, 269, 270, 271, 278, 283, 293, 314, 322, 333, 337, 348, 352, 362, 399, 405, 413, 424, 476, 477, 479, 481, 483], "flush_head": [245, 476], "flush_level": 102, "flush_std_stream": 362, "flusher": 405, "flushinp": 177, "flushkey": 405, "flushlevel": [102, 269], "flushonclos": [269, 483], "flyweight": 93, "fm": 468, "fma": 186, "fmax": 483, "fmean": [318, 343, 481, 483], "fmod": [275, 430], "fmt": [101, 102, 183, 201, 259, 267, 295, 304, 362, 452, 468, 483], "fmt_binari": [304, 477], "fmt_spec": 191, "fmt_xml": [304, 477], "fmtparam": 175, "fn": [88, 102, 109, 166, 200, 267, 399, 407, 421, 422, 470, 478, 481], "fn_call": 98, "fname": [85, 109, 169, 190, 268, 382, 477], "fnctl": 483, "fnmatch": [68, 219, 231, 254, 296, 348, 382, 388, 483], "fnmatchcas": [220, 388, 483], "fno": [104, 456, 472, 483], "fnum": 102, "fnv": [456, 477], "fo": [103, 225, 228, 464], "fobj": [425, 438], "focal": 414, "focus": [81, 85, 100, 110, 183, 189, 208, 247, 358, 369, 376, 384, 394, 467, 469, 474, 475, 476, 477, 479, 483], "fogl": 483, "foil": 335, "fold": [20, 183, 201, 202, 203, 208, 250, 344, 346, 425, 426, 466, 467, 479, 480, 483], "fold_binari": 208, "folder": [248, 271, 399, 461, 483], "foldspac": 143, "foley": 103, "folk": [103, 452], "folkmani": [482, 483], "follow": [5, 7, 9, 23, 28, 33, 34, 39, 41, 42, 45, 55, 58, 61, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 85, 89, 91, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 122, 128, 132, 133, 135, 137, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 159, 161, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 204, 205, 207, 208, 209, 212, 213, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 235, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 278, 283, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 312, 314, 319, 320, 321, 322, 323, 325, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "follow_symlink": [142, 293, 296, 332, 472, 476, 483], "follow_wrap": [255, 478, 483], "followlink": [142, 293, 468], "font": [68, 102, 109, 167, 212, 247, 254, 364, 368, 369, 375, 376, 384, 472, 479, 480, 482, 483], "fontein": 483, "fontnam": 384, "fontpag": 483, "fontset": 375, "fontsiz": 384, "fonttyp": 384, "foo": [28, 78, 79, 85, 86, 87, 88, 89, 94, 101, 102, 104, 106, 110, 116, 120, 122, 151, 155, 167, 176, 193, 196, 200, 228, 243, 247, 250, 255, 262, 266, 267, 268, 272, 283, 288, 291, 292, 293, 294, 296, 297, 299, 302, 304, 308, 311, 319, 334, 340, 344, 358, 362, 385, 386, 388, 389, 390, 405, 407, 411, 412, 413, 422, 423, 427, 430, 432, 435, 436, 441, 462, 464, 465, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 483], "foo1": [283, 319], "foo2": [283, 319], "foo_bar": [120, 292, 390], "foo_const": 362, "foo_dealloc": [63, 481], "foo_inst": 85, "foo_new": 481, "foo_object": 63, "foo_on": 389, "foo_pars": 120, "foo_struct": [481, 482], "foo_test": [388, 480], "foo_travers": 482, "foo_two": 389, "foo_typ": 63, "foo_var": 85, "fooaction": 120, "foobar": [85, 120, 220, 225, 268, 292, 319, 344, 390, 483], "foobarbaz": 389, "foobl": [389, 390], "food": [73, 87, 103, 299, 446], "foofil": 102, "fool": [85, 462, 466], "foon": 120, "foonley": 120, "foord": [110, 469, 475], "foot": [319, 343, 451], "foot_size_femal": 343, "foot_size_mal": 343, "footer": [267, 341, 483], "footest": [388, 480], "footnot": 167, "footprint": [42, 92, 456, 476, 479, 481, 483], "fopen": [66, 190, 476], "for": [5, 7, 9, 11, 13, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 78, 79, 80, 84, 86, 87, 89, 91, 93, 94, 95, 98, 99, 100, 103, 104, 106, 107, 108, 110, 112, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 147, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 166, 167, 170, 173, 175, 176, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 240, 242, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 291, 293, 295, 296, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 359, 361, 363, 364, 365, 366, 367, 369, 371, 375, 376, 377, 380, 381, 382, 385, 387, 388, 389, 390, 394, 395, 397, 399, 402, 403, 405, 407, 408, 410, 411, 412, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 429, 431, 433, 434, 435, 436, 440, 442, 443, 444, 445, 446, 448, 450, 451, 452, 453, 455, 456, 457, 458, 459, 462, 463, 464, 470, 472, 473, 483, 484], "for_if_claus": 431, "for_it": [191, 483], "for_iter_rang": 483, "for_loop": 467, "for_stmt": [427, 431], "for_target": 431, "forbid": [103, 262, 299, 341, 344, 469, 483], "forbidden": [23, 42, 94, 110, 139, 241, 299, 344, 365, 468, 478, 483], "forbiddenbyt": [479, 483], "forc": [5, 33, 34, 63, 68, 73, 84, 85, 95, 99, 103, 133, 152, 159, 163, 177, 181, 183, 184, 186, 193, 235, 248, 258, 267, 282, 283, 288, 293, 308, 309, 311, 333, 345, 347, 348, 352, 362, 366, 428, 432, 455, 469, 474, 476, 477, 478, 479, 481, 482, 483], "force_quit": 102, "force_zip64": [422, 483], "forcibl": [225, 476, 477], "foreach": 98, "forego": [194, 426], "foreground": [92, 177, 247, 376, 452], "foreign": [68, 118, 167, 332, 340, 358, 483], "forest": 384, "forev": [139, 309, 328, 463, 464, 465, 466, 476, 483], "forewarn": 181, "forg": 167, "forgeot": [468, 469, 471, 475, 483], "forget": [33, 72, 73, 100, 102, 139, 186, 362, 376, 430, 431, 442, 466, 467, 468, 472, 474, 475, 481, 483], "forgiv": [87, 462, 483], "forgot": [431, 472, 474], "forgotten": [73, 109, 125], "fork": [51, 59, 68, 73, 84, 102, 140, 142, 166, 213, 227, 257, 278, 283, 293, 309, 328, 332, 338, 341, 348, 395, 465, 469, 474, 477, 480, 481, 483], "fork1": 483, "fork_exec": 483, "forkingmixin": [338, 476, 480, 483], "forkingtcpserv": 338, "forkingudpserv": 338, "forkingunixdatagramserv": [338, 483], "forkingunixstreamserv": [338, 483], "forkpti": [142, 293, 483], "forkserv": [68, 164, 474, 477, 483], "form": [5, 7, 23, 31, 33, 34, 37, 54, 55, 63, 68, 72, 73, 79, 84, 85, 92, 95, 99, 101, 102, 106, 109, 110, 120, 144, 151, 158, 161, 167, 169, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 196, 197, 200, 203, 205, 206, 208, 209, 213, 221, 225, 226, 228, 230, 242, 244, 245, 248, 251, 255, 257, 259, 261, 266, 267, 268, 269, 271, 273, 276, 283, 288, 293, 298, 302, 304, 305, 307, 319, 334, 337, 340, 341, 342, 344, 345, 346, 347, 352, 358, 362, 364, 365, 366, 368, 369, 376, 384, 387, 388, 394, 395, 398, 400, 405, 408, 410, 413, 419, 421, 425, 426, 427, 428, 429, 431, 432, 434, 435, 436, 439, 455, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "form01": 268, "form02": 268, "form03": 268, "form04": 268, "form05": 268, "form06": 268, "form07": 268, "form08": 268, "form09": 268, "formal": [68, 193, 225, 235, 292, 319, 344, 345, 394, 414, 421, 428, 429, 430, 434, 436, 462, 464, 471, 477, 478, 481, 482, 483], "format": [2, 5, 9, 10, 18, 23, 25, 31, 35, 41, 48, 49, 59, 63, 64, 68, 73, 75, 79, 84, 85, 87, 92, 93, 94, 103, 106, 109, 110, 112, 117, 118, 119, 120, 122, 133, 141, 142, 144, 145, 146, 151, 152, 153, 158, 164, 167, 169, 173, 175, 176, 183, 184, 186, 190, 191, 192, 193, 194, 196, 200, 201, 202, 203, 205, 207, 208, 209, 211, 212, 213, 214, 217, 221, 225, 228, 230, 234, 235, 243, 245, 248, 249, 250, 255, 259, 262, 265, 266, 267, 269, 270, 271, 272, 276, 281, 284, 292, 293, 295, 296, 297, 298, 302, 304, 307, 308, 314, 319, 320, 321, 330, 331, 332, 336, 337, 338, 340, 341, 348, 349, 352, 359, 362, 363, 366, 368, 369, 375, 376, 378, 381, 382, 384, 385, 388, 394, 395, 397, 400, 405, 413, 417, 422, 423, 427, 428, 430, 431, 434, 435, 442, 444, 445, 449, 450, 451, 455, 461, 462, 463, 464, 465, 466, 467, 473, 474, 475, 476, 477, 480, 481, 483, 484], "format_alon": [270, 483], "format_auto": 270, "format_cod": 18, "format_datetim": [203, 209, 476], "format_exc": 381, "format_except": [381, 472, 483], "format_exception_on": [193, 381, 472, 483], "format_field": 345, "format_fram": 483, "format_frame_summari": [381, 473, 483], "format_help": 120, "format_list": [381, 483], "format_map": [160, 344, 475, 478, 483], "format_message_ignore_insert": 483, "format_raw": 270, "format_spec": [49, 122, 221, 225, 345, 428, 435, 468, 483], "format_stack": [381, 483], "format_stack_entri": [144, 483], "format_str": [266, 345, 452, 467, 474, 478, 480, 483], "format_tb": [381, 382], "format_usag": [120, 483], "format_valu": [191, 479, 483], "format_xz": 270, "formataddr": [209, 476], "formatarg": 255, "formatargspec": [473, 478, 483], "formatargvalu": [255, 478], "formatd": [209, 466, 483], "formaterror": [176, 271], "formatexcept": [102, 267], "formatfoot": 267, "formathead": 267, "formatmessag": [23, 176, 213], "formatmessagew": 483, "formatmonth": 150, "formatmonthnam": [150, 483], "formatparagraph": 483, "formatstack": 267, "formatt": [64, 68, 118, 120, 268, 269, 292, 345, 465, 469, 472, 475, 477, 478, 480, 483], "formatted_err": 388, "formatted_lin": 381, "formattedvalu": [122, 483], "formatter_class": [68, 102, 118], "formatter_form01": 268, "formatter_simpleformatt": 101, "formattim": 267, "formatvalu": 255, "formatvararg": 255, "formatvarkw": 255, "formatwarn": [267, 400, 468, 483], "formatweekday": [150, 483], "formatyear": 150, "formatyearpag": 150, "formed": 416, "former": [23, 31, 63, 75, 85, 120, 144, 159, 161, 176, 177, 183, 186, 225, 244, 250, 255, 267, 275, 283, 288, 308, 322, 332, 340, 366, 369, 375, 384, 386, 428, 430, 432, 471, 474, 475, 476, 479, 480, 481, 482, 483], "formfe": [345, 364, 435], "formula": [183, 230, 344, 483], "fort": 7, "forth": [23, 85, 92, 106, 160, 293, 319, 328, 344, 428, 462, 464, 465, 467], "fortran": [7, 78, 87, 299, 340, 344, 444, 463, 466, 468], "fortun": [73, 76, 92, 151, 470], "forward": [64, 85, 93, 95, 106, 153, 155, 176, 177, 183, 191, 200, 226, 230, 253, 258, 267, 271, 289, 297, 340, 341, 344, 384, 386, 411, 427, 462, 463, 464, 466, 468, 471, 475, 480, 483], "forwardref": [386, 483], "forwardrefer": 483, "forwardx11": 167, "fos": 483, "foster": [473, 483], "found": [5, 17, 22, 31, 33, 42, 45, 49, 55, 58, 59, 61, 63, 64, 71, 72, 73, 77, 79, 93, 94, 95, 96, 98, 100, 101, 102, 106, 109, 110, 114, 120, 149, 151, 158, 163, 167, 170, 176, 177, 191, 193, 196, 197, 199, 203, 205, 207, 208, 211, 213, 215, 216, 225, 226, 228, 230, 233, 236, 241, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 261, 265, 266, 267, 268, 270, 271, 272, 276, 278, 279, 282, 283, 292, 293, 295, 297, 302, 314, 319, 322, 332, 333, 335, 337, 339, 340, 341, 344, 348, 352, 354, 355, 358, 359, 362, 369, 371, 376, 378, 385, 386, 387, 388, 389, 395, 400, 406, 407, 410, 412, 413, 414, 415, 419, 420, 423, 425, 427, 428, 429, 430, 432, 434, 435, 436, 441, 451, 452, 453, 461, 462, 463, 464, 465, 467, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "foundat": [69, 80, 95, 103, 169, 341, 369, 426, 461, 465, 466, 468, 476], "four": [31, 58, 64, 89, 92, 94, 106, 109, 120, 132, 158, 177, 190, 191, 207, 211, 242, 247, 255, 258, 259, 267, 268, 271, 278, 281, 292, 314, 318, 334, 337, 338, 344, 345, 347, 369, 376, 384, 389, 435, 441, 461, 468, 471, 475, 482, 483], "fourfold": 462, "fourth": [58, 95, 177, 194, 267, 307, 319, 366, 419, 464], "fourthought": 462, "foutfil": 292, "foxnew": 166, "fp": [49, 59, 66, 78, 95, 120, 151, 186, 188, 196, 200, 201, 204, 207, 223, 230, 242, 262, 276, 293, 304, 355, 360, 379, 382, 393, 395, 426, 466, 483], "fp1": 294, "fp2": 294, "fpathconf": [293, 483], "fpectl": [480, 483], "fpformat": 468, "fpic": [456, 483], "fprintf": [72, 73], "fpu": 483, "fqdn": 335, "fr": [150, 230, 271, 318, 435, 465, 480], "frac_digit": [266, 452], "fractalcurv": 384, "fraction": [68, 73, 109, 183, 186, 193, 225, 226, 254, 266, 275, 289, 290, 308, 318, 319, 340, 343, 344, 365, 366, 384, 430, 435, 444, 449, 464, 465, 466, 467, 469, 470, 471, 472, 478, 479, 481, 482, 483], "fragment": [95, 141, 314, 344, 394, 395, 412, 413, 467, 469, 475, 476, 483], "fragment1": 141, "fragment2": 141, "frame": [12, 13, 16, 19, 23, 29, 33, 35, 49, 53, 66, 68, 78, 84, 94, 96, 98, 104, 117, 139, 141, 142, 144, 171, 177, 185, 191, 213, 214, 247, 255, 267, 297, 333, 336, 337, 341, 344, 349, 352, 353, 369, 374, 375, 376, 381, 385, 400, 427, 429, 455, 463, 465, 466, 467, 469, 472, 474, 476, 477, 478, 480, 482, 483], "frame_dealloc": 483, "frame_gen": 381, "frame_lineno": 144, "frame_owned_by_cstack": 483, "frame_summari": 381, "frameinfo": [255, 473], "framemak": 177, "frameobject": [26, 472, 473, 483], "frameptr": 98, "framer": [117, 336, 349, 401], "framesummari": [68, 315, 478, 483], "frametyp": [26, 385, 483], "framework": [68, 84, 102, 123, 133, 155, 167, 170, 176, 187, 193, 222, 247, 334, 335, 341, 344, 352, 388, 395, 420, 428, 443, 456, 459, 464, 465, 468, 469, 470, 475, 477, 478, 480, 481, 482, 483, 484], "fran": [230, 476, 477, 478], "franc": 95, "francesco": 465, "francisco": [341, 396, 483], "francoi": 469, "francoton": 223, "franek": 474, "frank": [319, 483], "frankenstein": 364, "franklin": 469, "franz": [481, 483], "fraser": 465, "frechet": 469, "fred": [0, 102, 314, 369, 435, 462, 463, 464, 465, 467, 468, 479], "frede": 474, "fredrik": [0, 85, 95, 426, 462, 463, 464, 466, 467, 469, 471, 475], "free": [5, 7, 11, 13, 33, 34, 42, 59, 63, 64, 73, 75, 76, 78, 84, 85, 95, 128, 134, 158, 176, 190, 191, 225, 229, 230, 248, 255, 283, 284, 292, 293, 299, 303, 316, 332, 344, 351, 352, 362, 382, 385, 388, 410, 419, 420, 425, 426, 427, 428, 429, 430, 432, 436, 461, 463, 464, 465, 467, 468, 470, 475, 476, 477, 482, 483], "free_list": [468, 483], "free_tool_id": 353, "freeaddrinfo": 483, "freebsd": [68, 92, 115, 133, 212, 215, 278, 293, 295, 309, 322, 328, 337, 352, 362, 365, 366, 458, 467, 473, 477, 480, 482, 483], "freebsd8": 352, "freed": [7, 13, 22, 27, 33, 42, 45, 73, 75, 100, 102, 232, 283, 293, 329, 428, 463, 465, 467, 479, 483], "freedbsd": 483, "freedesktop": [303, 472, 476, 483], "freedesktop_os_releas": [303, 472, 483], "freedom": [413, 436], "freefunc": [13, 45, 63, 75], "freeli": [193, 344, 426], "freelist": [456, 473, 483], "freevar": [13, 483], "freez": [31, 81, 85, 226, 227, 247, 288, 453, 480, 483], "freeze_modul": 483, "freeze_support": 283, "freht": [469, 475, 483], "french": [106, 109, 366, 478, 480], "frenzi": 482, "frequenc": [102, 117, 366, 406, 415, 468], "frequent": [7, 68, 73, 75, 84, 85, 106, 109, 110, 164, 183, 190, 247, 266, 269, 283, 288, 292, 305, 388, 465, 466, 468, 469, 474, 481, 483], "fresh": [23, 63, 85, 95, 158, 169, 255, 283, 307, 324, 362, 385, 432, 461, 464, 465, 483], "freshfruit": 442, "freshmeat": 464, "frexp": 275, "fri": [150, 209, 475, 476, 483], "frid": 483, "friday": [94, 150, 211], "frie09": 319, "friedl": [106, 319], "friedrich": 483, "friend": [63, 73, 92, 102, 120, 190, 194, 292, 337, 344, 352, 388, 413, 425, 462, 466, 470, 477, 480, 482, 483], "friendlier": 483, "frm": 369, "frob": [228, 390], "frobbl": 120, "frobnic": [388, 402], "from": [5, 7, 9, 10, 11, 13, 22, 23, 24, 25, 26, 27, 28, 31, 34, 39, 41, 42, 43, 45, 46, 47, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 74, 75, 76, 77, 87, 88, 89, 91, 92, 94, 95, 99, 101, 103, 106, 107, 108, 109, 110, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 126, 128, 132, 133, 135, 136, 137, 138, 141, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 164, 167, 170, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 218, 220, 221, 222, 223, 225, 226, 230, 232, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 298, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 352, 353, 355, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 374, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 444, 449, 450, 451, 452, 453, 455, 456, 458, 462, 463, 464, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "from_": [196, 271, 376, 483], "from_addr": [335, 475], "from_address": 176, "from_buff": [176, 468, 483], "from_buffer_copi": [176, 468, 483], "from_builtin": [473, 478, 483], "from_byt": [39, 344, 483], "from_cal": [255, 472, 473, 478, 483], "from_celsius": 475, "from_dat": 94, "from_decim": [221, 475], "from_except": 381, "from_fahrenheit": 475, "from_fil": [413, 422, 425, 479, 483], "from_float": [186, 221, 444, 469, 471, 475, 483], "from_funct": [472, 473, 478, 483], "from_iter": [261, 468, 483], "from_kal": 483, "from_list": 381, "from_nam": 483, "from_param": [176, 483], "from_sampl": [343, 481], "from_start": 64, "from_str": 480, "from_traceback": [191, 477], "fromaddr": [84, 102, 268, 269, 335, 341], "fromag": 106, "frombuf": 358, "frombyt": [121, 337, 475, 482, 483], "fromdat": 190, "fromdesc": 190, "fromfd": [328, 337], "fromfil": [121, 190, 470], "fromfile_prefix_char": [68, 118, 474, 483], "fromfiled": 190, "fromhex": [146, 344, 444, 468, 473, 479, 480, 483], "fromisocalendar": [183, 481, 483], "fromisoformat": [183, 340, 473, 480, 483], "fromkey": [93, 160, 344, 385, 465, 473, 475, 483], "fromlin": 190, "fromlist": [31, 121, 191, 225, 250, 483], "fromnam": 223, "fromordin": [183, 480], "fromshar": [337, 480], "fromstr": [121, 413, 475, 482, 483], "fromstringlist": [413, 475], "fromtarfil": 358, "fromtimestamp": [20, 102, 183, 190, 340, 474, 480, 483], "fromunicod": 121, "fromutc": [183, 483], "front": [96, 106, 169, 201, 208, 247, 261, 302, 390, 400, 423, 428, 430, 455, 462, 465, 467, 469, 483], "frontend": 158, "frontier": 341, "frost": 474, "frozen": [31, 34, 68, 176, 181, 225, 250, 283, 302, 352, 382, 386, 428, 432, 455, 461, 465, 474, 477, 480, 483], "frozen_default": [386, 474, 483], "frozen_modul": [455, 483], "frozenimport": [250, 472, 473, 477, 483], "frozeninstanceerror": [181, 483], "frozenload": [472, 473], "frozenmain": 33, "frozenset": [55, 68, 87, 122, 182, 225, 254, 274, 299, 352, 386, 388, 402, 427, 428, 430, 450, 466, 467, 468, 473, 475, 482, 483], "frozent": 176, "fruit": [94, 307, 428, 442], "fs": [102, 166, 178, 293, 343, 483], "fs_is_case_insensit": 362, "fs_nonascii": 362, "fsanizit": 483, "fsdecod": [23, 87, 293, 352, 475, 479, 483], "fsencod": [87, 293, 296, 352, 362, 475, 479, 483], "fset": [93, 225, 385], "fspath": [87, 234, 293, 296, 479, 483], "fsrc": 332, "fstat": [293, 294, 342, 464, 476, 478, 483], "fstatat": 483, "fstatvf": [293, 464, 478], "fstrict": 456, "fstring": [431, 483], "fstring_convers": 431, "fstring_end": [377, 431, 474], "fstring_format_spec": 431, "fstring_full_format_spec": 431, "fstring_middl": [377, 431, 474], "fstring_replacement_field": 431, "fstring_start": [377, 431, 474], "fsum": [225, 275, 343, 444, 468, 483], "fsync": [293, 478, 483], "ftp": [68, 80, 110, 254, 256, 269, 286, 394, 395, 460, 462, 463, 468, 469, 476, 479, 480, 481, 482, 483], "ftp1": [223, 475], "ftp_open": 395, "ftp_tls": [68, 256, 469, 474, 475, 476, 482, 483], "ftpd": 223, "ftphandler": [68, 110, 256], "ftplib": [68, 142, 156, 158, 254, 256, 395, 463, 465, 468, 469, 475, 477, 478, 479, 480, 481, 483], "ftpmirror": 464, "ftps": 223, "ftpwrapper": [468, 483], "ftruncat": [84, 293, 478, 483], "fts3": 340, "fu": [196, 205, 483], "fuch": [476, 481, 483], "fudg": 244, "fugu": 223, "fuhrer": 483, "fulfil": [110, 241, 245, 463, 465, 475], "full": [11, 28, 33, 34, 63, 64, 68, 73, 76, 84, 93, 101, 102, 106, 108, 110, 134, 139, 157, 158, 161, 163, 167, 168, 173, 176, 181, 183, 186, 190, 191, 193, 197, 200, 201, 212, 213, 215, 243, 247, 251, 255, 259, 261, 267, 269, 275, 278, 280, 281, 283, 292, 293, 295, 297, 302, 314, 316, 319, 331, 332, 333, 335, 337, 338, 341, 344, 347, 348, 352, 358, 362, 366, 369, 384, 385, 388, 394, 395, 403, 411, 413, 419, 422, 427, 428, 429, 431, 432, 436, 446, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "full_ro": 255, "full_url": [110, 395, 477], "fullargspec": 255, "fullcircl": 384, "fuller": 463, "fulli": [7, 13, 27, 33, 34, 45, 61, 63, 71, 87, 102, 109, 112, 120, 134, 186, 193, 197, 203, 207, 208, 250, 255, 261, 268, 269, 283, 299, 333, 335, 337, 348, 352, 358, 388, 398, 400, 410, 413, 417, 423, 428, 432, 455, 461, 464, 469, 470, 474, 475, 476, 477, 478, 479, 481, 482, 483], "fullmatch": [319, 477, 483], "fullmodnam": 479, "fullnam": [163, 250, 252, 253, 302, 423, 465], "fullpath": [142, 360], "fullrandom": 318, "fulltext": [340, 475], "fullurl": [142, 395], "fullwidth": 186, "fully_trust": 358, "fully_trusted_filt": 358, "fulton": [462, 466, 479, 483], "fum": [78, 225], "fun": [84, 167, 226, 384, 386, 388, 473, 479], "fun_num": 226, "func": [27, 33, 34, 35, 44, 53, 59, 63, 66, 78, 85, 87, 88, 93, 95, 100, 120, 122, 126, 139, 140, 144, 160, 176, 177, 212, 226, 255, 261, 266, 267, 283, 292, 308, 314, 332, 340, 344, 352, 353, 362, 365, 367, 369, 380, 386, 388, 402, 420, 427, 429, 443, 466, 468, 470, 475, 476, 479, 481, 483], "func1": [85, 386], "func2": 85, "func3": 85, "func4": 85, "func_closur": [112, 470], "func_cod": 470, "func_default": 470, "func_descr_get": 93, "func_dict": 470, "func_doc": 470, "func_glob": 470, "func_nam": [466, 470], "func_point": 142, "func_spec": 176, "func_typ": [122, 431, 481], "func_type_com": 431, "func_type_rul": 431, "func_x": 470, "funcattr": 112, "funcdef": 427, "funcid": 483, "funcnam": [13, 72, 98, 144, 267, 427, 440], "funcobject": [93, 473, 483], "function": [2, 5, 9, 10, 11, 13, 16, 17, 22, 23, 24, 26, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 66, 67, 68, 71, 72, 74, 75, 76, 77, 78, 79, 80, 84, 87, 89, 92, 96, 98, 99, 101, 102, 109, 110, 112, 113, 114, 115, 117, 118, 124, 128, 132, 133, 135, 137, 138, 139, 140, 141, 142, 144, 146, 147, 149, 151, 152, 154, 155, 157, 158, 159, 161, 164, 166, 167, 170, 172, 173, 177, 178, 179, 181, 182, 183, 184, 186, 187, 189, 190, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 224, 225, 228, 230, 231, 234, 235, 236, 242, 243, 245, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 264, 265, 266, 269, 270, 272, 276, 278, 280, 281, 283, 287, 290, 292, 293, 295, 297, 298, 302, 304, 308, 309, 311, 312, 313, 314, 315, 320, 321, 322, 323, 324, 325, 328, 330, 331, 332, 333, 334, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 351, 352, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 367, 369, 371, 377, 378, 380, 381, 382, 386, 387, 389, 394, 395, 397, 399, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 420, 421, 422, 425, 429, 431, 432, 435, 436, 439, 440, 442, 443, 445, 446, 450, 451, 455, 456, 461, 464, 465, 469, 471, 472, 473, 474, 475, 477, 481, 482, 483, 484], "function_1": [78, 98], "function_2": [78, 98], "function_3": 98, "function_4": 98, "function_5": 98, "function__entri": 98, "function__return": 98, "function_def": 431, "function_def_raw": 431, "function_result": 160, "function_that_returns_a_future_object": 139, "functional_program": 95, "functiondef": [122, 483], "functionprofil": [308, 483], "functiontestcas": [388, 483], "functiontyp": [27, 122, 385, 472, 483], "functool": [68, 85, 87, 88, 93, 108, 112, 126, 129, 147, 160, 220, 224, 225, 251, 254, 255, 261, 344, 428, 467, 468, 469, 470, 471, 483], "fund": [452, 462, 467], "fundament": [33, 63, 68, 103, 118, 194, 259, 283, 292, 299, 307, 308, 340, 385, 432, 461, 462, 468, 474, 479, 483], "funk": [230, 462], "funki": [94, 167], "funni": [92, 141], "funny_fil": 216, "funtion": 483, "furkan": [474, 483], "furman": [472, 474, 476, 477, 478, 479, 480, 483], "furnish": 426, "furrer": 483, "furrfu": 464, "further": [7, 33, 41, 63, 68, 73, 75, 76, 79, 85, 95, 99, 101, 102, 109, 110, 119, 139, 144, 149, 151, 153, 158, 169, 173, 176, 181, 191, 193, 213, 218, 225, 228, 247, 261, 266, 267, 269, 270, 282, 283, 292, 293, 295, 297, 299, 319, 332, 333, 337, 338, 340, 341, 344, 352, 354, 366, 369, 381, 386, 410, 413, 415, 421, 425, 427, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 468, 469, 474, 476, 480, 481, 483], "furthermor": [33, 84, 120, 158, 191, 255, 268, 269, 271, 324, 344, 427, 461, 474, 477], "furthest": 103, "fusc": 149, "fuse": 186, "fut": [125, 129], "futil": 483, "futur": [22, 33, 61, 63, 68, 77, 84, 87, 100, 101, 106, 112, 114, 120, 122, 123, 125, 127, 130, 132, 133, 138, 139, 155, 159, 164, 165, 167, 183, 193, 197, 203, 205, 207, 208, 213, 225, 234, 245, 247, 250, 252, 254, 255, 257, 267, 268, 283, 292, 293, 308, 315, 319, 325, 328, 333, 337, 340, 341, 352, 353, 362, 365, 366, 385, 386, 388, 395, 400, 413, 428, 430, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 474, 476, 477, 481, 483, 484], "future_builtin": [68, 112], "future_stmt": 436, "future_to_url": 166, "futureit": 483, "futurewarn": [23, 213, 319, 400, 450, 465, 466, 469, 474, 480, 483], "fututr": 483, "fuzz": 483, "fvisibl": 483, "fwalk": [142, 293, 476, 480, 483], "fwrapv": 72, "fx": 481, "fxn": 400, "g1": [341, 384], "g2": 384, "g3805": 475, "g722": 117, "g771": 426, "g9gthfe1yluxy1zwplyk1": 235, "ga": 359, "gabe": 483, "gabriel": [469, 473, 483], "gadget": 483, "gaedk": 468, "gai_strerror": 337, "gaierror": [337, 483], "gaifax": [480, 483], "gailli": 426, "gain": [84, 102, 144, 167, 250, 258, 299, 352, 395, 432, 434, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "gale": [472, 474, 483], "galeon": [403, 474, 483], "galindo": [104, 472, 473, 474, 480, 481, 482, 483], "gallagh": 483, "gallahad": [160, 442, 471], "gallew": 462, "game": [93, 96, 120, 384, 467, 468], "game_selector": 96, "gamma": [275, 318, 469, 475], "gamma_funct": 475, "gammavari": [318, 483], "ganguli": [474, 483], "ganisin": 483, "ganssl": [473, 474, 480, 481, 482, 483], "gao": [474, 483], "gap": [183, 269, 271, 475, 483], "gar": [186, 296], "garbag": [42, 45, 50, 52, 63, 64, 67, 68, 73, 74, 75, 84, 85, 87, 95, 98, 102, 125, 139, 151, 159, 169, 170, 176, 179, 193, 213, 214, 254, 274, 283, 292, 293, 315, 337, 352, 360, 362, 388, 402, 411, 427, 428, 430, 452, 456, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "garbl": [102, 483], "garcia": [426, 473, 474, 483], "gareth": 483, "garlic": 340, "garshol": 462, "garvit": [480, 483], "gasc": 483, "gass": 466, "gateway": [68, 110, 151, 467, 484], "gateway_timeout": 241, "gather": [92, 120, 124, 134, 137, 139, 177, 293, 308, 337, 380, 388, 456, 473, 478, 480, 481, 483], "gather_t": 476, "gaul": [472, 483], "gauss": [318, 483], "gaussian": 475, "gautier": 483, "gave": [109, 388, 469, 475, 483], "gavin": 478, "gawain": [469, 475], "gay": [426, 469, 471, 472, 477, 479, 480, 483], "gaynor": [469, 472, 478, 483], "gb": [158, 341, 409, 483], "gb18030": [158, 466, 483], "gb2312": [158, 387, 466, 476], "gbk": [158, 466], "gc": [28, 45, 61, 63, 68, 73, 76, 78, 85, 87, 98, 100, 142, 254, 255, 315, 352, 362, 367, 382, 402, 411, 428, 452, 456, 462, 465, 467, 469, 474, 475, 483], "gc__done": 98, "gc__start": 98, "gc_collect": 362, "gc_debug": 483, "gc_ref": 227, "gcc": [33, 35, 63, 176, 303, 352, 448, 455, 456, 468, 469, 471, 472, 473, 477, 479, 483], "gcd": [221, 275, 478, 482, 483], "gced": 483, "gcm": 341, "gcov": 477, "gcp": 483, "gcvisitobjects_t": 28, "gdb": [68, 79, 85, 97, 469, 483], "gdb7": 483, "gdbinit": [79, 96, 469, 483], "gdbm": [84, 184, 456, 470, 483], "gdbm_compat": 483, "gdbm_count": 483, "gdi": 369, "gdppc": 413, "ge": [95, 291], "ge29873": 288, "gecko": 395, "gedai": 483, "gedam": 474, "gedmina": 109, "geert": [465, 478, 483], "gef": 103, "gehrck": 483, "gellekum": 463, "gen": [95, 255, 430, 464, 465, 475, 478, 483], "gen_clos": [255, 475], "gen_coro": 255, "gen_creat": [255, 475], "gen_data": 149, "gen_func": [385, 483], "gen_mov": 452, "gen_rid": 483, "gen_run": 255, "gen_start": [473, 483], "gen_suspend": [255, 475], "gen_uuid": 281, "gencoro": 161, "gendef": 481, "genellina": 469, "general": [7, 13, 23, 33, 37, 42, 51, 54, 63, 68, 72, 73, 76, 78, 84, 85, 91, 93, 94, 96, 100, 102, 103, 106, 109, 120, 126, 133, 139, 146, 151, 152, 158, 167, 169, 176, 177, 181, 183, 184, 186, 191, 203, 208, 224, 225, 226, 235, 242, 243, 244, 247, 250, 261, 266, 267, 268, 269, 270, 271, 273, 283, 288, 293, 299, 305, 307, 314, 319, 320, 325, 330, 335, 337, 341, 342, 344, 345, 347, 348, 352, 358, 364, 366, 369, 375, 381, 384, 386, 387, 394, 395, 405, 408, 411, 412, 413, 414, 415, 417, 425, 426, 427, 428, 430, 431, 434, 435, 436, 455, 461, 462, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "general_quest": 475, "generalis": 102, "generat": [16, 26, 31, 33, 49, 51, 58, 64, 66, 68, 71, 72, 73, 75, 77, 79, 85, 87, 98, 101, 102, 103, 109, 112, 113, 120, 122, 130, 134, 135, 137, 139, 141, 142, 144, 151, 155, 158, 161, 163, 166, 169, 173, 177, 181, 183, 187, 190, 191, 193, 194, 196, 203, 205, 208, 209, 213, 223, 225, 226, 227, 230, 235, 242, 244, 245, 248, 261, 267, 269, 271, 281, 283, 285, 293, 299, 304, 307, 311, 313, 314, 315, 318, 321, 323, 326, 331, 335, 340, 341, 346, 348, 352, 353, 358, 362, 366, 369, 376, 377, 378, 380, 381, 384, 385, 386, 388, 390, 394, 395, 398, 410, 413, 417, 419, 420, 421, 426, 427, 429, 431, 432, 434, 435, 436, 445, 455, 456, 461, 462, 463, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483, 484], "generate_int": [95, 464, 465], "generate_opcode_h": 483, "generate_re_casefix": 483, "generate_token": [378, 470, 474, 483], "generated_cas": 483, "generator": 464, "generator_express": 430, "generator_stop": [113, 213, 436, 478, 483], "generatorexit": [23, 95, 213, 428, 430, 450, 467, 468, 483], "generatorexp": 122, "generatorproxi": 283, "generatortyp": 385, "generic": [7, 16, 35, 49, 61, 62, 63, 68, 76, 85, 87, 99, 101, 112, 133, 144, 151, 158, 161, 167, 184, 187, 191, 193, 194, 200, 203, 226, 235, 250, 254, 255, 258, 268, 269, 281, 309, 319, 325, 330, 337, 362, 365, 378, 385, 394, 413, 429, 430, 431, 436, 458, 468, 472, 474, 475, 476, 477, 478, 479, 481, 483], "generic_alias_iter": 483, "generic_visit": 122, "genericalia": [62, 68, 385, 428, 430, 472, 482, 483], "genericaliasobject": 483, "genericbrows": 403, "genericpath": 294, "generous": 464, "genexp": [95, 431], "genexpr": 483, "genobject": [473, 483], "genop": 300, "genpag": 483, "genproto": 386, "genr": 93, "gensuitemodul": 468, "gent": 183, "gentl": [76, 93, 99, 120, 464], "gentler": 319, "genuin": [73, 193, 215, 469, 475], "geoff": [73, 483], "geograph": 183, "geometr": [384, 473], "geometri": [68, 368, 369, 374, 376, 483], "geometric_mean": [343, 481, 483], "georg": [93, 109, 261, 446, 467, 468, 469, 471, 472, 475, 476, 478, 479, 483], "georgi": [474, 483], "georgiou": 475, "gerald": 95, "gerber": 465, "gerg": 483, "gerhard": [340, 464, 467, 468, 469], "gerlach": [481, 483], "german": [109, 158, 266, 344, 384, 477, 483], "gersten": 483, "gertjan": 483, "gestalt": 190, "get": [5, 7, 17, 23, 26, 31, 33, 34, 39, 42, 45, 49, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 80, 88, 92, 93, 94, 95, 98, 100, 101, 102, 106, 109, 110, 117, 120, 128, 129, 133, 134, 136, 137, 139, 141, 144, 151, 158, 160, 161, 167, 169, 170, 176, 177, 181, 183, 184, 185, 186, 188, 189, 190, 193, 196, 200, 205, 206, 208, 209, 213, 216, 222, 225, 228, 230, 232, 233, 235, 241, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 265, 266, 267, 268, 269, 271, 279, 281, 283, 288, 289, 292, 293, 295, 297, 299, 302, 305, 308, 309, 313, 316, 318, 320, 322, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 348, 349, 352, 355, 358, 359, 362, 365, 366, 369, 375, 376, 381, 385, 386, 388, 390, 394, 395, 398, 399, 400, 401, 403, 407, 410, 411, 413, 414, 415, 416, 419, 420, 425, 427, 428, 430, 432, 438, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "get_ait": 191, "get_al": [196, 205, 209, 407, 483], "get_algorithm_impl": 483, "get_all_break": 144, "get_all_link": 466, "get_all_start_method": [283, 477, 483], "get_all_us": 169, "get_an_available_item": 365, "get_anext": 191, "get_annot": [88, 255, 472, 483], "get_app": 407, "get_archive_format": [332, 475], "get_arg": [386, 472, 473, 481, 482, 483], "get_asyncgen_hook": [352, 450, 483], "get_attribut": 362, "get_await": [191, 483], "get_begidx": [320, 483], "get_block": [293, 478, 483], "get_bodi": [200, 205, 207], "get_body_encod": 195, "get_boundari": [196, 205], "get_bpbynumb": 144, "get_break": 144, "get_buff": [130, 133, 408], "get_byt": [271, 475], "get_ca_cert": [341, 477, 483], "get_cache_token": [116, 477], "get_channel_bind": [341, 476], "get_charset": [196, 205], "get_child_watch": [132, 474, 483], "get_children": [351, 376], "get_ciph": [341, 479, 483], "get_clock_info": [366, 476, 483], "get_close_match": 190, "get_cod": [176, 250, 423, 477], "get_color": 474, "get_colour": 474, "get_complet": 320, "get_completer_delim": 320, "get_completion_typ": 320, "get_config_h_filenam": 355, "get_config_var": [72, 293, 355, 425, 469, 475, 477, 483], "get_connect": 169, "get_cont": [196, 197, 200, 205, 208], "get_content_charset": [196, 205], "get_content_disposit": [196, 205, 478], "get_content_maintyp": [196, 200, 205], "get_content_subtyp": [196, 205], "get_content_typ": [151, 196, 200, 205], "get_context": [126, 139, 166, 283, 474, 477, 483], "get_coro": [139, 481, 483], "get_coroutine_origin_tracking_depth": [352, 450, 480, 483], "get_coroutine_wrapp": [478, 480, 481, 483], "get_count": [227, 467], "get_curr": 483, "get_current_history_length": [320, 465], "get_dat": [133, 137, 271], "get_data": [250, 302, 395, 423, 468, 477, 483], "get_debug": [126, 130, 227, 478], "get_default": 120, "get_default_domain": 287, "get_default_schem": [355, 483], "get_default_typ": [196, 205], "get_default_verify_path": [341, 477], "get_defining_class": 100, "get_dialect": [175, 483], "get_disassembly_as_str": 362, "get_distutil_opt": 465, "get_docstr": [122, 483], "get_doctest": 193, "get_endidx": [320, 483], "get_endpoint": 390, "get_environ": 407, "get_errno": [142, 176, 468], "get_escdelay": [177, 482, 483], "get_ev": 353, "get_event_loop": [126, 130, 132, 474, 478, 479, 480, 483], "get_event_loop_polici": [126, 130, 132], "get_exampl": 193, "get_exception_handl": [126, 130, 478, 479, 483], "get_exec_path": 293, "get_extra_info": [130, 133, 136, 170, 481, 483], "get_field": 345, "get_fil": [271, 475], "get_file_break": 144, "get_filenam": [196, 200, 205, 250, 423, 477], "get_filt": 189, "get_flag": 271, "get_fold": 271, "get_fre": 351, "get_freeze_count": [227, 480], "get_from": 271, "get_frozen_object": 483, "get_full_url": [243, 395], "get_glob": 351, "get_grouped_opcod": 190, "get_handle_inherit": [293, 477], "get_head": [243, 386, 395], "get_history_item": [320, 465], "get_history_length": [320, 483], "get_host": [395, 477], "get_id": [115, 333, 351, 365, 366, 476], "get_identifi": [345, 351, 473, 483], "get_import": 302, "get_info": 271, "get_inherit": [293, 337, 477], "get_input": 85, "get_instruct": [191, 477, 483], "get_int_max_str_digit": [344, 352], "get_interpret": 421, "get_it": 191, "get_item_point": 7, "get_iter": 116, "get_key": [329, 483], "get_label": 271, "get_last_error": [142, 176, 468], "get_len": 191, "get_like_distro": 303, "get_line_buff": [320, 323], "get_lineno": 351, "get_load": [302, 474, 483], "get_loc": 351, "get_local_ev": 353, "get_lock": 283, "get_logg": 283, "get_loop": [126, 129, 135, 480, 483], "get_mag": [474, 477], "get_makefile_filenam": [72, 355], "get_map": 329, "get_matching_block": [190, 467, 483], "get_messag": 271, "get_method": [351, 395, 476], "get_mixed_type_key": 259, "get_module_st": 483, "get_nam": [139, 351, 481, 483], "get_namespac": 351, "get_native_id": [115, 365, 481, 483], "get_next_item": 386, "get_nod": 483, "get_nonloc": 351, "get_nonstandard_attr": 243, "get_nowait": [134, 283, 316], "get_obj": 283, "get_object": [142, 227, 472, 481, 483], "get_object_traceback": [382, 483], "get_opcod": 190, "get_operator_modul": 283, "get_opt": 292, "get_option_group": 292, "get_origin": [386, 481, 483], "get_origin_req_host": [243, 395, 477], "get_original_bas": [385, 428, 474, 483], "get_original_stdout": 362, "get_osfhandl": [142, 282], "get_output_charset": 195, "get_overload": [386, 473, 483], "get_pages": 362, "get_par": 464, "get_param": [196, 209, 483], "get_paramet": 351, "get_path": [355, 469, 475, 483], "get_path_nam": 355, "get_payload": [196, 200, 204, 206, 475, 483], "get_pep": 226, "get_phone_numb": 475, "get_pid": [130, 133], "get_pipe_transport": [130, 133], "get_plaform": 483, "get_platform": [355, 475, 483], "get_poli": 384, "get_posit": 408, "get_position_in_index": 386, "get_preferred_schem": [355, 473, 483], "get_profile_dict": 483, "get_protocol": [130, 133, 483], "get_proxy_response_head": [242, 483], "get_python_vers": [355, 475], "get_queu": 283, "get_readi": 232, "get_recsrc": 295, "get_recursion_avail": 483, "get_recursion_depth": 483, "get_refer": [63, 142, 227, 465, 472, 483], "get_referr": [142, 227, 382, 472, 483], "get_request": 338, "get_resource_read": [250, 252, 253, 480, 483], "get_returncod": [130, 133], "get_running_loop": [126, 129, 130, 133, 136, 139, 480, 483], "get_schem": 407, "get_scheme_nam": 355, "get_select": 189, "get_selector": [395, 477], "get_sequ": 271, "get_serv": 283, "get_server_certif": [341, 472, 476, 483], "get_shap": 386, "get_shapepoli": 384, "get_siz": 464, "get_socket": 359, "get_sourc": [250, 265, 423, 477, 483], "get_source_seg": [122, 481, 483], "get_specialization_stat": 483, "get_stack": [139, 144, 483], "get_start_method": [283, 477], "get_starttag_text": 240, "get_stat": [95, 227, 477, 483], "get_stats_profil": 308, "get_status": 481, "get_stderr": 407, "get_stdin": 407, "get_str": [271, 475, 483], "get_subdir": 271, "get_suffix": 474, "get_symbol": 351, "get_tabs": [177, 482, 483], "get_tag": [250, 474, 475], "get_task_factori": [126, 130, 478, 483], "get_temp_dir": 483, "get_terminal_s": [293, 332, 476, 483], "get_threshold": 227, "get_token": 331, "get_tool": 353, "get_traceback_limit": 382, "get_traced_memori": 382, "get_tracemalloc_memori": 382, "get_typ": [351, 395, 477], "get_type_hint": [87, 386, 473, 480, 482, 483], "get_type_of_self": 100, "get_unixfrom": [196, 205], "get_unpack_format": 332, "get_unstructur": 483, "get_usag": 292, "get_user_nam": 386, "get_valu": [345, 389], "get_vers": 292, "get_vis": 271, "get_vot": 475, "get_wch": [177, 476, 483], "get_write_buffer_limit": [130, 133, 478, 483], "get_write_buffer_s": [130, 133], "get_yield_from_it": [191, 483], "getabsfil": 483, "getacl": [248, 464], "getaddress": [209, 483], "getaddrinfo": [110, 126, 130, 142, 337, 426, 478, 479, 480, 483], "getallmatchinghead": 483, "getallocatedblock": [352, 450, 477], "getandroidapilevel": [352, 480, 483], "getannot": 248, "getarg": [468, 483], "getargspec": [255, 473, 477, 478, 479, 483], "getargvalu": [255, 478], "getasyncgenloc": [255, 474, 483], "getasyncgenst": [255, 474, 483], "getatim": 294, "getattr": [13, 78, 85, 87, 88, 93, 101, 102, 116, 126, 160, 176, 181, 191, 225, 255, 261, 283, 291, 292, 299, 345, 358, 385, 386, 427, 440, 450, 462, 475, 477, 480, 483], "getattr_hook": 93, "getattr_stat": [255, 386, 474, 475, 483], "getattrfunc": [57, 63, 75], "getattribut": [410, 412, 428], "getattributen": 410, "getattributenod": 410, "getattributenoden": 410, "getattrofunc": [57, 63, 75], "getauxv": 483, "getbas": 314, "getbegyx": 177, "getbkgd": 177, "getblock": [337, 480, 483], "getboolean": [167, 483], "getbuff": [258, 475, 483], "getbufferproc": [7, 57, 63, 476, 483], "getbytestream": 416, "getc": 463, "getcallarg": [255, 469, 478, 483], "getcanva": 384, "getcap": [272, 288], "getch": [86, 92, 177, 282], "getchannel": 464, "getcharacterstream": 416, "getcheckinterv": [465, 482, 483], "getchild": [267, 469], "getchildren": [267, 469, 475, 481, 482, 483], "getclasstre": 255, "getclosurevar": [255, 476], "getcod": [242, 395, 483], "getcodec": 483, "getcolumninfo": 281, "getcolumnnumb": 416, "getcom": [255, 313], "getcompnam": [117, 349, 401], "getcomptyp": [117, 349, 401], "getconf": 306, "getconfig": [340, 474, 483], "getconnect": 483, "getcontenthandl": 416, "getcontext": [186, 452, 466], "getcoroutineloc": [255, 478, 483], "getcoroutinest": [255, 478, 483], "getcount": [85, 291, 482], "getctim": 294, "getcurrentprocessid": 483, "getcurrenttim": 420, "getcwd": [112, 293, 294, 296, 362, 407, 451, 480, 483], "getcwdb": [293, 470, 481, 483], "getcwdu": [112, 465], "getdata": 420, "getdecim": 167, "getdecod": [109, 158], "getdefaultencod": [352, 450], "getdefaultlocal": [266, 455, 473, 474, 483], "getdefaulttimeout": 337, "getdlopenflag": [293, 352, 450, 464], "getdoc": [255, 428, 478, 481, 483], "getdomimplement": [410, 411], "getdoubl": 483, "getdtdhandl": 416, "getdxp": 483, "geteffectivelevel": 267, "getegid": [293, 483], "getelementsbytagnam": [410, 411, 462], "getelementsbytagnamen": 410, "getencod": [87, 92, 109, 158, 175, 177, 225, 258, 266, 416, 461, 473, 483], "getentityresolv": 416, "getentropi": [293, 478, 483], "getenv": [35, 293, 306], "getenvb": [293, 475], "geterrorhandl": 416, "geteuid": [293, 483], "getev": 412, "geteventcategori": 269, "geteventtyp": 269, "getexcept": 414, "getexitcodeprocess": 483, "getfamili": 467, "getfeatur": 416, "getfieldcount": 281, "getfil": [255, 483], "getfileinformationbyhandl": [293, 478], "getfilestodelet": 269, "getfilesystemencod": [34, 66, 87, 109, 120, 293, 352, 358, 421, 450, 479, 483], "getfilesystemencodeerror": [34, 87, 352, 450, 479], "getfirst": 151, "getfloat": 167, "getfmt": 295, "getfqdn": [335, 337, 483], "getfram": [482, 483], "getframeinfo": [255, 473, 483], "getframer": [117, 349, 401], "getfullargspec": [255, 313, 473, 477, 478, 479, 483], "getgeneratorloc": [255, 476], "getgeneratorst": [255, 475, 483], "getgid": [293, 483], "getgral": [233, 483], "getgrgid": [233, 479, 483], "getgrnam": [233, 348, 465, 483], "getgroup": [293, 483], "getgrouplist": [293, 476, 483], "gethandlerbynam": [267, 268, 483], "gethandlernam": [267, 483], "gethead": 242, "gethighlight": 483, "gethostbyaddr": [142, 293, 337, 483], "gethostbynam": [142, 337], "gethostbyname_ex": [337, 483], "gethostnam": [102, 107, 142, 293, 337, 483], "gethrvtim": 483, "getincrementaldecod": 158, "getincrementalencod": [158, 476], "getinfo": 422, "getinnerfram": [255, 473, 478, 483], "getinputcontext": 314, "getint": [167, 483], "getinteg": [281, 468], "getitem": [261, 291, 390, 464], "getiter": [469, 475, 481, 482, 483], "getiterfunc": [57, 63, 75], "getitim": [333, 468], "getkey": [92, 177, 483], "getlasterror": [23, 176, 483], "getlength": 416, "getlevelnam": [102, 267], "getlevelnamesmap": [267, 473, 483], "getlimit": [340, 473, 483], "getlin": [265, 382, 478, 483], "getlinenumb": 416, "getlist": [151, 478], "getloadavg": 293, "getlocal": [266, 473, 483], "getlogg": [101, 102, 125, 267, 388, 465, 469, 471, 482, 483], "getloggerclass": 267, "getlogin": [229, 293], "getlogrecordfactori": [102, 267], "getmandatoryreleas": 113, "getmark": [117, 349, 401], "getmaxyx": 177, "getmemb": [255, 358, 478, 483], "getmembers_stat": [255, 473, 483], "getmessag": [102, 267, 414], "getmessageid": 269, "getmodul": [255, 483], "getmodulehandl": 176, "getmodulehandlea": 176, "getmodulehandlew": 176, "getmoduleinfo": [468, 479, 483], "getmodulenam": [250, 255, 479], "getmous": 177, "getmro": 255, "getmtim": 294, "getnam": [153, 358, 365, 416, 472, 483], "getnamebyqnam": 416, "getnameinfo": [126, 130, 142, 337, 426, 480, 483], "getnchannel": [117, 349, 401], "getnfram": [117, 349, 401], "getnod": [398, 480, 483], "getobject": [63, 456, 481, 483], "getopt": [68, 89, 118, 190, 254, 292, 465, 469, 483], "getopterror": 228, "getoptionalreleas": 113, "getouterfram": [255, 473, 478, 483], "getoutput": [348, 483], "getpages": 322, "getparam": [117, 349, 401, 477], "getparyx": 177, "getpass": [68, 118, 173, 248, 254, 282, 293, 305, 359, 361, 468, 483], "getpasswarn": 229, "getpath": [35, 483], "getpathp": 483, "getpeerc": 483, "getpeercert": [133, 341, 468, 477, 483], "getpeernam": [133, 170, 337, 341], "getpen": 384, "getpgid": [293, 465], "getpgrp": [215, 293], "getpid": [101, 126, 283, 293, 483], "getpo": 240, "getppid": [283, 293, 483], "getpreferredencod": [120, 258, 266, 293, 348, 473, 474, 480, 483], "getprior": [293, 476], "getprocaddress": 86, "getprocesstim": 293, "getprofil": [352, 365, 450, 468, 472, 483], "getproperti": [281, 416, 483], "getpropertycount": 281, "getproto": 467, "getprotobynam": 337, "getproxi": [110, 395, 483], "getproxies_environ": 483, "getpublicid": 416, "getpwal": 310, "getpwnam": [173, 310, 348, 483], "getpwuid": [293, 310, 483], "getqnam": 416, "getqnamebynam": 416, "getquota": 248, "getquotaroot": 248, "getrandbit": [318, 466, 477, 483], "getrandom": [293, 478, 479, 483], "getread": [109, 158], "getrecursionlimit": [163, 213, 247, 352, 450, 462, 474, 483], "getrefcount": [87, 352, 450], "getreparsedeferralen": [314, 483], "getresgid": [293, 469, 483], "getrespons": [242, 478, 483], "getresuid": [293, 469, 483], "getrlimit": [322, 483], "getroot": [413, 467], "getrusag": [293, 322, 467, 483], "getsampl": 141, "getsampwidth": [117, 349, 401], "getscreen": 384, "getservbynam": [142, 337, 483], "getservbyport": [142, 337, 466, 483], "getset": [21, 63, 255], "getset_descriptor": 255, "getsetdescriptortyp": 385, "getshap": 384, "getsid": [293, 466], "getsign": [333, 483], "getsitepackag": [334, 469, 475], "getsiz": [153, 293, 294, 483], "getsizeof": [186, 352, 362, 382, 450, 468, 473, 483], "getsockaddrarg": 483, "getsocknam": [133, 136, 337, 341, 483], "getsockopt": [133, 337, 341, 469, 479], "getsourc": [255, 483], "getsourcefil": [255, 483], "getsourcelin": [255, 483], "getspal": 339, "getspnam": [339, 479, 483], "getstat": [158, 318], "getstatenam": 419, "getstatus": 477, "getstatusoutput": [348, 477, 483], "getstr": [92, 177, 281, 468, 483], "getsubject": 269, "getsummaryinform": 281, "getswitchinterv": [352, 450, 482, 483], "getsystemid": 416, "getsyx": 177, "gettarinfo": 358, "gettempdir": [360, 483], "gettempdirb": [360, 483], "gettempprefix": 360, "gettempprefixb": 360, "getter": [49, 50, 57, 68, 76, 93, 116, 167, 225, 226, 344, 365, 395, 468, 474, 477, 478, 483], "gettestcasenam": [388, 473, 474, 483], "gettext": [68, 89, 102, 246, 254, 266, 411, 435, 451, 462, 466, 473, 483], "gettimeofday": [183, 366, 483], "gettimeout": [337, 341], "gettotalrefcount": [456, 483], "gettrac": [352, 365, 450, 468, 472, 483], "getturtl": 384, "gettyp": [416, 467], "getuid": [293, 483], "getunicodeinterneds": [352, 474], "geturl": [68, 242, 394, 395, 483], "getus": [229, 248, 293, 305], "getuserbas": [334, 469, 475], "getusercfgdir": 483, "getusersitepackag": [334, 438, 469, 475], "getvalu": [78, 79, 85, 151, 169, 196, 234, 258, 262, 299, 308, 362, 389, 416, 421, 475, 478], "getvaluebyqnam": 416, "getvar": 483, "getversionex": [352, 483], "getvolumepathnam": 294, "getwch": [282, 468], "getweakref": 402, "getweakrefcount": 402, "getwelcom": [223, 288, 305], "getwin": 177, "getwindowrect": 176, "getwindowsvers": [352, 469, 479, 483], "getwrit": [109, 158], "getx": [93, 225], "getxattr": [142, 293, 476], "getyx": 177, "gfef": 103, "gg": 344, "gh": [181, 269, 284, 319, 348, 386, 456, 468, 472, 473, 474, 479, 480, 481, 482, 483], "ghi": [160, 176, 267, 331, 466], "ghost": 483, "gi_": 483, "gi_cod": [255, 468, 478, 483], "gi_fram": [255, 467, 483], "gi_run": 255, "gi_yieldfrom": [255, 478, 483], "giampaolo": [469, 474, 475, 476, 478, 480, 481, 483], "giant": 193, "gib": [109, 270, 306, 358, 362, 422, 462, 465, 467, 483], "gibson": 474, "gid": [142, 233, 293, 296, 310, 358, 468, 469, 476, 478, 483], "gid_t": 483, "gideon": 473, "gif": [196, 205, 206, 231, 249, 369, 384, 407, 467, 483], "gif87a": 475, "gigabyt": [109, 483], "gihwan": 483, "gil": [22, 23, 42, 45, 51, 59, 63, 68, 76, 84, 87, 100, 139, 166, 176, 188, 235, 250, 468, 469, 472, 475, 477, 479, 482, 483], "gilbert": 473, "gilfix": 465, "gill": 479, "gilstat": [33, 483], "gindi": [478, 483], "gio": 483, "giovanni": 483, "girdhar": [478, 479, 483], "girt": [482, 483], "gist": 102, "git": [80, 143, 348, 399, 477, 481, 483], "github": [1, 75, 80, 111, 248, 307, 388, 426, 474, 479, 480, 483], "gitignor": 483, "gitlab": 483, "giuca": 469, "giudiceandrea": 483, "give": [5, 7, 23, 42, 63, 64, 72, 73, 75, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 103, 106, 109, 117, 120, 141, 151, 153, 155, 158, 176, 177, 181, 183, 186, 190, 191, 193, 208, 213, 216, 225, 228, 230, 250, 258, 261, 268, 269, 275, 276, 278, 279, 283, 287, 292, 293, 297, 299, 307, 314, 319, 332, 333, 338, 341, 344, 345, 348, 352, 365, 366, 369, 376, 384, 386, 388, 394, 399, 403, 405, 410, 411, 415, 422, 426, 427, 428, 434, 435, 444, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 481, 482, 483], "given": [5, 7, 9, 13, 18, 22, 23, 27, 31, 33, 42, 43, 45, 49, 56, 58, 61, 63, 64, 66, 72, 73, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 110, 112, 115, 117, 120, 133, 135, 139, 144, 149, 153, 155, 157, 158, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 200, 202, 203, 205, 206, 208, 209, 211, 213, 216, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 288, 292, 293, 295, 297, 299, 301, 302, 308, 312, 313, 314, 319, 322, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 346, 347, 348, 352, 353, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 380, 381, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 403, 408, 410, 411, 412, 413, 414, 417, 420, 421, 422, 423, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "gl": 468, "glanc": [63, 102, 465], "glare": 480, "glaser": [481, 483], "glasner": 481, "gleen": 483, "glenn": 478, "glib": 466, "glibc": [257, 259, 293, 322, 473, 477, 481, 482, 483], "glingl": 384, "glitch": 247, "glob": [68, 102, 142, 144, 193, 219, 220, 254, 281, 294, 296, 297, 332, 348, 451, 468, 469, 473, 474, 475, 479, 483], "global": [23, 27, 31, 32, 34, 45, 51, 53, 63, 66, 68, 73, 76, 79, 85, 87, 94, 95, 96, 98, 110, 115, 120, 122, 132, 135, 140, 144, 151, 160, 166, 169, 176, 177, 182, 191, 193, 195, 218, 223, 225, 227, 230, 242, 247, 248, 250, 255, 259, 265, 269, 276, 283, 292, 293, 297, 298, 305, 308, 315, 320, 324, 334, 335, 337, 344, 345, 351, 352, 354, 355, 358, 359, 362, 365, 367, 369, 380, 384, 386, 388, 395, 400, 402, 413, 420, 427, 428, 429, 431, 432, 433, 435, 440, 441, 450, 455, 461, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "global_default": 337, "global_enum": [211, 473], "global_stmt": [431, 436], "globaln": [386, 483], "globalnam": 279, "globe": 183, "glossari": [109, 181, 483], "glossary_search": 483, "glow": 384, "glue": [72, 464, 466], "glws": 468, "glyph": [109, 208, 247], "gmach": 483, "gmail": [248, 483], "gmane": [288, 476, 483], "gmt": [68, 101, 183, 209, 245, 267, 341, 366], "gmtime": [101, 102, 150, 183, 209, 267, 271, 366, 464, 475, 476, 483], "gname": 358, "gnome": [230, 466, 476, 483], "gnome_sudoku": 96, "gnosi": 95, "gnu": [68, 72, 98, 228, 234, 246, 254, 266, 292, 293, 298, 330, 332, 358, 363, 426, 428, 435, 438, 447, 448, 455, 456, 460, 462, 465, 466, 468, 469, 474, 478, 480, 481, 483], "gnu32": 478, "gnu_format": 358, "gnu_getopt": [228, 465], "gnuf32": [474, 483], "gnusf": [474, 483], "gnutransl": [68, 246], "gnutype_longlink": 358, "gnutype_longnam": 358, "gnutype_spars": 358, "go": [33, 42, 73, 75, 76, 78, 79, 85, 92, 94, 95, 96, 101, 102, 106, 110, 115, 133, 139, 151, 177, 189, 193, 200, 247, 250, 313, 319, 340, 341, 348, 352, 355, 359, 365, 366, 380, 394, 395, 427, 446, 457, 462, 463, 464, 465, 467, 469, 470, 483], "goal": [63, 75, 95, 100, 103, 201, 225, 235, 320, 362, 413, 434, 463, 465, 467, 468, 475, 477, 478, 479], "god": 308, "goderbau": 476, "goe": [77, 93, 100, 106, 120, 133, 167, 169, 177, 178, 193, 230, 243, 247, 268, 275, 283, 292, 314, 352, 381, 386, 427, 464, 475, 476], "goergen": 474, "gogh": 160, "gohlk": 483, "going": [73, 75, 76, 79, 84, 93, 95, 96, 103, 106, 117, 137, 144, 151, 186, 196, 200, 279, 292, 293, 308, 334, 341, 358, 362, 365, 407, 413, 419, 428, 461, 462, 464, 468, 483], "goir": 467, "golang": 483, "gold": 456, "golden": [461, 477], "goldilock": 132, "goldschmidt": [472, 479, 480, 481, 482, 483], "golf": 440, "gollahon": 483, "golubev": 472, "gon": [384, 476], "gone": [85, 99, 110, 241, 462, 463, 465, 468, 470, 475, 481, 483], "gong": 483, "gonzalez": [479, 480], "good": [63, 75, 78, 79, 84, 85, 93, 94, 100, 101, 102, 103, 106, 109, 110, 120, 139, 151, 155, 167, 170, 176, 177, 183, 190, 193, 207, 225, 235, 250, 283, 292, 293, 295, 299, 307, 319, 341, 362, 364, 384, 386, 388, 411, 419, 426, 428, 462, 463, 465, 466, 468, 469, 473, 483], "good_cb": 386, "good_sig": 235, "goodby": [102, 140, 223, 299, 369, 443], "goodchild": 474, "goodfood": 103, "goodger": [103, 463, 464, 466], "goodi": 151, "goodwil": 426, "goofi": 465, "googl": [80, 83, 84, 101, 110, 403, 419, 467, 468, 469, 474, 476, 481, 483], "googlegroup": 307, "gopher": 394, "gopherlib": [468, 470], "gordon": [85, 107, 462, 465, 483], "gorgen": 483, "gorokhovski": [480, 483], "gossag": 472, "gosub": 319, "got": [73, 110, 126, 136, 138, 193, 267, 283, 335, 340, 386, 395, 430, 441, 449, 455, 467, 471, 474, 481, 483], "gotcha": 167, "goto": [34, 35, 68, 155, 384, 456, 471, 473, 475, 483], "gotten": [23, 151, 186, 283, 462, 483], "goulart": 483, "gov": [235, 243, 465], "govern": [85, 102, 181, 186, 194, 394, 419, 426, 475], "gpa": 440, "gpf": 462, "gpg": 467, "gpl": [271, 426, 464], "gpled": 464, "gprof": [456, 466], "gps": 483, "gr": [158, 467, 472, 473, 481, 483], "gr_gid": [233, 348, 465], "gr_mem": 233, "gr_name": [233, 465], "gr_passwd": 233, "grab": [85, 101, 102, 461, 483], "grace": [166, 319, 333, 365, 430, 469, 475, 480, 483], "grad": 384, "grade": [94, 108, 147, 225, 343, 344, 384, 465, 483], "gradelevel": 347, "gradian": 384, "gradual": [463, 464], "graduat": [440, 478, 481], "graem": 463, "graham": [109, 442, 468, 473, 483], "grail": [262, 340, 403, 442, 474, 483], "grain": [68, 84, 101, 102, 177, 193, 267, 293, 318, 352, 395, 428, 474, 483, 484], "grainger": [473, 483], "gram": [319, 431], "graminit": 472, "grammar": [66, 68, 95, 112, 157, 225, 264, 345, 377, 427, 431, 434, 435, 462, 463, 467, 470, 472, 474, 482, 483], "grammat": [431, 483], "grand": 413, "grandchild": 422, "grandchildren": [413, 483], "grant": [22, 61, 93, 106, 426, 462, 463, 467], "granular": [100, 102, 250, 293, 352, 483], "grape": 442, "graph": [68, 103, 182, 254, 268, 292, 299, 353, 384, 464, 477, 482, 483], "graphic": [68, 92, 109, 158, 173, 177, 222, 249, 254, 369, 375, 388, 403, 468, 483], "graphlib": [68, 182, 254, 483], "grasp": 411, "grass": [441, 472], "grave": 463, "gravi": 295, "gravida": 149, "gravit": [94, 384], "gray": 483, "gray25": 369, "gray50": 369, "graymap": 249, "great": [72, 94, 101, 191, 243, 319, 348, 462, 463, 464, 465, 467, 468, 469, 470, 474, 476, 478, 481, 483], "greater": [24, 33, 34, 39, 45, 56, 63, 64, 76, 92, 101, 102, 109, 115, 133, 139, 144, 146, 147, 177, 183, 186, 190, 196, 208, 209, 226, 230, 242, 248, 259, 267, 269, 293, 297, 322, 334, 335, 344, 352, 358, 362, 365, 376, 377, 382, 384, 388, 410, 428, 435, 436, 462, 464, 465, 466, 467, 478, 479, 480, 482, 483], "greaterequ": 377, "greatest": 221, "greedi": [68, 158, 319, 359], "greedili": 89, "greek": [109, 158], "greek8": 158, "green": [92, 94, 122, 160, 177, 211, 240, 318, 343, 384, 402, 441, 449, 452, 465, 466, 471, 472, 475, 479, 483], "green2": 376, "green3": 376, "green4": 376, "greenish": 177, "greenwich": [209, 366], "greet": [112, 305, 335, 340, 386, 478], "greet_al": 482, "greet_bad": 386, "greet_prop": 386, "greg": [84, 462, 464, 465, 466, 467, 476, 478, 481, 483], "gregg": 462, "gregor": 468, "gregori": [467, 468, 469, 471, 472, 473, 474, 477, 479, 480, 481, 483], "gregorian": [150, 183], "grene": 94, "grep": [98, 102, 104, 247, 348, 462, 483], "grew": [100, 471, 475], "grid": [369, 374, 376], "grid_squar": 481, "griffin": 483, "grigoryev": 483, "grin": 109, "gringauz": 472, "grip": 376, "gripe": 190, "grisbi": 468, "grisel": [481, 483], "grnd_nonblock": [293, 483], "grnd_random": 293, "grob": 390, "grok_environment_error": 483, "groner": 483, "groov": 369, "gross": [467, 483], "grossli": 426, "ground": 177, "group": [63, 68, 84, 89, 94, 99, 101, 102, 109, 118, 124, 142, 151, 158, 169, 178, 186, 187, 190, 191, 193, 203, 225, 233, 248, 251, 254, 259, 261, 266, 271, 281, 283, 288, 293, 296, 299, 314, 319, 332, 334, 337, 339, 341, 342, 343, 344, 345, 348, 353, 358, 365, 375, 376, 381, 382, 386, 394, 400, 405, 415, 419, 428, 430, 431, 434, 435, 443, 452, 461, 462, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "group1": [120, 319, 443], "group2": [120, 443], "group_mask": 467, "group_pattern": [288, 427, 431], "groupbi": [87, 95, 226, 261, 291, 466, 471, 483], "groupdict": [106, 319, 483], "grouper": 261, "groupindex": [319, 483], "groupinfo": 288, "grouping_opt": 345, "groupn": 319, "grouppattern": 288, "groupref_exist": 483, "grow": [55, 60, 85, 102, 193, 226, 269, 320, 376, 462, 466, 468, 469, 475, 483], "grown": [193, 328], "growth": [476, 483], "grp": [68, 254, 310, 339, 348, 391, 465, 482, 483], "grunt": 464, "gruszczi": [476, 477, 481, 483], "grzegorz": 483, "grzybowski": 483, "grzywacz": 483, "gs": 178, "gsd": 96, "gstate": 33, "gt": [95, 122, 238, 239, 240, 291, 417, 431, 475, 476], "gt_bitwise_or": 431, "gte": [122, 431], "gte_bitwise_or": 431, "gtk": [96, 466, 468], "gu": 483, "guarante": [7, 9, 11, 24, 33, 42, 54, 58, 59, 61, 63, 64, 67, 72, 73, 76, 85, 92, 95, 115, 122, 139, 176, 183, 186, 191, 193, 196, 205, 225, 226, 232, 235, 243, 250, 255, 258, 262, 276, 278, 283, 288, 292, 293, 299, 308, 324, 328, 331, 338, 344, 347, 348, 352, 362, 364, 365, 378, 386, 400, 405, 408, 413, 415, 425, 427, 428, 432, 461, 466, 467, 469, 471, 475, 476, 479, 480, 481, 482, 483], "guard": [63, 68, 100, 102, 122, 251, 313, 362, 365, 385, 386, 431, 432, 441, 481, 483], "guelton": 483, "guess": [84, 158, 167, 184, 193, 200, 206, 209, 245, 250, 255, 266, 276, 308, 395, 407, 434, 456, 465, 475, 483], "guess_all_extens": [276, 483], "guess_extens": [200, 276], "guess_schem": 407, "guess_typ": [200, 245, 276, 407, 483], "guesswork": 475, "guest": [160, 337, 483], "gui": [68, 83, 85, 95, 109, 247, 292, 340, 342, 352, 368, 369, 388, 439, 458, 468, 476, 483], "guid": [68, 70, 74, 80, 91, 92, 100, 109, 111, 183, 186, 190, 225, 251, 293, 295, 298, 399, 453, 456, 459, 460, 468, 469, 474, 475, 477, 483], "guidanc": [96, 105, 385, 469, 474, 483], "guidelin": [68, 75, 100, 164, 247, 362, 462, 463, 467, 483], "guido": [78, 80, 85, 87, 93, 103, 190, 279, 344, 386, 426, 442, 450, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "guil": 468, "guilherm": [468, 469, 471, 477, 479, 480, 483], "gullibl": 151, "gumbi": 369, "gunicorn": 68, "gunk": 304, "gunther": 413, "gunzip": 234, "guo": [481, 483], "gusi": 462, "gust": [465, 466, 467, 468, 469, 475, 476], "gustav": 251, "gustavo": [230, 464, 465, 466, 467, 483], "gut": [109, 151, 483], "gutteridg": 483, "guy": 84, "gvfs": [476, 483], "gvr": [462, 464, 465, 466, 469, 479], "gw": 483, "gxx": 261, "gz": [102, 218, 234, 276, 296, 332, 358, 399, 424, 426, 453, 460, 462, 467, 474, 475, 483], "gzip": [68, 80, 87, 102, 119, 149, 156, 158, 200, 218, 254, 276, 332, 358, 362, 409, 426, 451, 462, 465, 469, 471, 472, 477, 479, 483], "gzip_decod": 483, "gzipfil": [87, 234, 358, 469, 471, 472, 474, 475, 478, 482, 483], "gztar": [332, 475, 479, 483], "h00": 235, "h01": 235, "h1": [151, 235, 240, 242, 268, 420], "h10": 235, "h2": [235, 242, 268, 411], "h2pi": [479, 483], "h3": 242, "h4": 242, "h5": 483, "h_errno": 337, "h_len": 320, "haag": 480, "habit": [230, 271], "hack": [34, 84, 95, 100, 193, 331, 395, 455, 462, 463, 464, 483], "hackcheck": 483, "hacker": [151, 318], "hackeri": 79, "hackish": 467, "hackman": [479, 483], "hacl": [235, 474, 483], "had": [5, 22, 33, 42, 61, 72, 76, 85, 95, 102, 112, 120, 155, 158, 169, 170, 177, 183, 186, 191, 199, 243, 255, 283, 293, 297, 314, 328, 337, 341, 369, 380, 382, 388, 394, 410, 428, 432, 436, 441, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "hadn": [348, 483], "hagemeist": 483, "hagen": [469, 483], "hagino": 464, "hai": [472, 473], "haiku": 483, "hail": 102, "hairi": 292, "hakan": [473, 483], "halanta": 109, "half": [25, 92, 102, 133, 177, 183, 221, 226, 275, 295, 328, 347, 435, 469, 474, 479, 483], "halfdelay": [92, 177], "halfway": [275, 470], "hall": 483, "halt": [186, 212, 292, 296, 388, 477], "halv": [337, 466, 469], "ham": [102, 160, 170, 190, 225, 255, 279, 321, 430, 432, 441, 478], "hamcrest": 390, "hamish": 466, "hamlet": [160, 462], "hammer": [442, 462], "hammond": [269, 461, 462, 464, 465, 476, 483], "hamster": 190, "hamt": 483, "hamza": 483, "han": [441, 465, 472, 483], "hand": [63, 73, 75, 84, 85, 94, 95, 103, 106, 129, 176, 177, 181, 186, 196, 201, 206, 213, 225, 230, 247, 258, 269, 299, 305, 319, 338, 366, 369, 384, 386, 389, 427, 430, 434, 436, 451, 462, 463, 464, 465, 467, 468, 470, 471, 476, 481, 483], "hand01": 268, "hand02": 268, "hand03": 268, "hand04": 268, "hand05": 268, "hand06": 268, "hand07": 268, "hand08": 268, "hand09": 268, "hand2": 369, "hand_name_1": 268, "hand_name_2": 268, "handdraw": 384, "handi": [68, 85, 92, 93, 94, 106, 167, 176, 190, 292, 344, 368, 462, 466], "handier": 330, "handl": [7, 25, 31, 32, 33, 34, 35, 42, 49, 51, 56, 61, 63, 64, 66, 68, 73, 75, 76, 79, 85, 91, 92, 94, 95, 99, 100, 101, 106, 109, 112, 113, 115, 120, 122, 126, 132, 139, 142, 144, 146, 149, 151, 152, 157, 158, 167, 169, 170, 176, 177, 181, 183, 186, 187, 189, 190, 191, 193, 194, 196, 200, 201, 202, 203, 207, 208, 212, 213, 215, 225, 226, 230, 234, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 259, 262, 267, 268, 269, 270, 271, 278, 282, 283, 293, 295, 297, 298, 308, 309, 311, 319, 321, 328, 330, 331, 332, 333, 335, 337, 338, 341, 342, 344, 345, 348, 352, 353, 358, 362, 365, 366, 371, 375, 378, 386, 389, 390, 395, 400, 403, 404, 407, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 443, 452, 455, 461, 462, 463, 464, 466, 467, 470, 471, 472, 474, 475, 476, 479, 480, 481, 482, 483, 484], "handle_accept": 475, "handle_charref": 240, "handle_com": 240, "handle_data": 240, "handle_decl": 240, "handle_defect": 208, "handle_echo": 136, "handle_endtag": 240, "handle_entityref": 240, "handle_error": [338, 479, 483], "handle_expect_100": 245, "handle_list": 348, "handle_one_request": 245, "handle_pi": 240, "handle_read": 483, "handle_request": [102, 170, 333, 338, 407, 420, 469], "handle_stackframe_without_leak": 255, "handle_startendtag": 240, "handle_starttag": 240, "handle_timeout": [338, 468, 469], "handleerror": [101, 267, 269], "handlelogrecord": 102, "handlepoint": 411, "handler": [3, 23, 24, 28, 33, 34, 59, 61, 63, 64, 66, 67, 68, 73, 75, 76, 81, 87, 109, 115, 118, 120, 122, 125, 126, 130, 132, 135, 145, 151, 152, 167, 177, 185, 189, 191, 196, 197, 201, 202, 213, 225, 229, 240, 245, 254, 256, 258, 266, 273, 283, 292, 293, 297, 308, 314, 328, 329, 332, 337, 340, 344, 352, 356, 358, 362, 366, 368, 388, 393, 395, 403, 411, 412, 414, 416, 417, 420, 427, 428, 429, 455, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "handler_class": [245, 407], "handler_consolehandl": 101, "handler_hand01": 268, "handler_hand02": 268, "handler_hand03": 268, "handler_hand04": 268, "handler_hand05": 268, "handler_hand06": 268, "handler_hand07": 268, "handler_hand08": 268, "handler_hand09": 268, "handler_ord": 395, "handlernam": 314, "handleslid": 411, "handleslideshow": 411, "handleslideshowtitl": 411, "handleslidetitl": 411, "handletoc": 411, "handshak": [136, 341, 477, 478, 479, 480, 481, 483], "hang": [102, 110, 135, 283, 328, 333, 362, 465, 475, 483], "hangul": 483, "hangup": 333, "hanld": 483, "hanoi": 384, "hansen": [464, 482, 483], "hao": 477, "happen": [23, 25, 33, 59, 68, 73, 76, 84, 85, 92, 93, 95, 102, 103, 110, 115, 139, 157, 169, 176, 177, 181, 183, 190, 207, 225, 226, 247, 250, 255, 258, 266, 267, 268, 269, 292, 293, 295, 299, 314, 328, 334, 337, 341, 344, 345, 352, 353, 359, 361, 362, 365, 369, 381, 388, 395, 427, 428, 429, 430, 432, 435, 436, 443, 462, 464, 466, 467, 468, 469, 470, 474, 477, 478, 481, 482, 483], "happi": [94, 126, 465, 481, 483], "happili": 386, "happy_eyeballs_delay": [126, 136, 481, 483], "har": [102, 155, 388, 475, 477, 483], "harbor": [464, 465], "hard": [33, 42, 72, 73, 76, 92, 93, 95, 100, 102, 106, 163, 167, 175, 176, 177, 183, 184, 190, 193, 202, 225, 267, 268, 292, 293, 296, 297, 308, 319, 322, 330, 340, 341, 348, 358, 362, 375, 461, 462, 475, 477, 480, 481, 483], "hardcod": [57, 176, 257, 267, 269, 460, 477, 483], "hardcov": 160, "harden": [456, 483], "harder": [78, 85, 193, 292, 344, 474, 483], "hardlink": [163, 358, 482, 483], "hardlink_dup": [163, 482], "hardlink_to": [296, 472, 481, 483], "hardwar": [33, 109, 141, 177, 186, 293, 295, 322, 337, 348, 366, 405, 469, 478, 483], "hardwir": [93, 169, 308], "harel": 483, "harm": [167, 226, 292, 475, 483], "harmless": [45, 73, 193, 376, 426, 456, 483], "harmon": 483, "harmonic_mean": [343, 479, 483], "harold": [95, 345], "harradin": 483, "harri": 467, "harsh": 483, "hart": 275, "harvey": 483, "has": [5, 7, 9, 11, 13, 17, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 42, 43, 45, 46, 47, 49, 56, 58, 59, 61, 63, 64, 71, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 128, 129, 132, 133, 134, 137, 139, 141, 144, 149, 151, 153, 155, 157, 158, 159, 160, 161, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 196, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 212, 213, 214, 216, 218, 221, 225, 226, 228, 230, 232, 235, 242, 243, 244, 245, 247, 248, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 281, 283, 288, 292, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 311, 312, 313, 314, 318, 319, 320, 322, 324, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 402, 403, 405, 408, 410, 412, 413, 415, 416, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 444, 446, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "has_alpn": [341, 478], "has_been_cal": 390, "has_children": 351, "has_color": [92, 177], "has_data": [389, 395, 477], "has_dualstack_ipv6": [337, 481, 483], "has_ecdh": 341, "has_exec": [482, 483], "has_extended_color_support": [177, 472, 483], "has_extn": 335, "has_funct": 483, "has_head": [175, 243, 395, 483], "has_ic": 177, "has_il": 177, "has_internal_subset": 314, "has_ipv6": 337, "has_key": [112, 177, 462, 463, 464, 465, 470, 483], "has_loc": [250, 432], "has_never_check_common_nam": 341, "has_nonstandard_attr": 243, "has_npn": 341, "has_offset": 102, "has_opt": [167, 292], "has_sect": 167, "has_sni": [223, 242, 248, 288, 305, 335, 341, 395], "has_sslv2": 341, "has_sslv3": 341, "has_ticket": 341, "has_tlsv1": 341, "has_tlsv1_1": [341, 480], "has_tlsv1_2": 341, "has_tlsv1_3": 341, "hasarg": [191, 474], "hasattr": [49, 87, 93, 102, 110, 225, 226, 255, 283, 314, 320, 344, 352, 358, 367, 386, 388, 389, 413, 427, 428, 432, 450, 465, 468, 474, 475, 477, 480, 483], "hasattribut": 410, "hasattributen": 410, "haschildnod": 410, "hascompar": 191, "hasconst": 191, "hasexc": [191, 474], "hasfeatur": 410, "hasfre": 191, "hash": [22, 30, 33, 34, 49, 63, 64, 68, 75, 78, 84, 85, 87, 96, 146, 161, 163, 167, 174, 181, 184, 223, 225, 237, 250, 251, 270, 289, 298, 311, 337, 344, 352, 385, 398, 402, 426, 428, 430, 432, 435, 449, 450, 455, 456, 464, 465, 467, 468, 469, 472, 473, 475, 476, 479, 482, 483], "hash_a": 386, "hash_b": 386, "hash_bit": [30, 352], "hash_complex": 344, "hash_float": 344, "hash_fract": 344, "hash_info": [344, 352, 428, 450, 475, 477], "hash_nam": 235, "hash_random": [352, 483], "hash_se": [33, 34, 474], "hash_valu": 344, "hashabl": [22, 49, 63, 85, 87, 116, 161, 183, 190, 221, 225, 226, 232, 255, 259, 296, 318, 344, 386, 402, 428, 430, 465, 466, 468, 469, 473, 474, 476, 478, 482, 483], "hashablesequ": 474, "hashandl": 267, "hashcollis": 459, "hashfunc": [57, 63, 75], "hashlib": [33, 68, 84, 173, 174, 237, 254, 327, 340, 426, 456, 468, 469, 470, 483], "hashlib_help": 483, "hashopen": 330, "hashtabl": 483, "hashtable_s": 483, "hasjab": 191, "hasjrel": 191, "haskel": [95, 261, 441, 462, 465], "hasloc": 191, "hasn": [13, 79, 84, 85, 133, 135, 139, 190, 232, 297, 314, 334, 341, 356, 462, 463, 467, 468, 470, 478, 480, 483], "hasnam": 191, "hast": [88, 469, 471, 472, 476, 477, 481, 482, 483], "hasx": 474, "hat": [79, 80, 230, 426, 451], "hatch": [386, 469], "hatfield": [473, 483], "hatyp": 337, "haubenwalln": 483, "haumea": 343, "haunt": 344, "hauser": 462, "have": [5, 7, 11, 22, 23, 27, 28, 31, 33, 34, 42, 45, 47, 49, 58, 59, 60, 63, 64, 67, 72, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 129, 132, 137, 138, 139, 141, 143, 144, 149, 151, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 211, 213, 215, 218, 221, 225, 226, 230, 234, 235, 241, 242, 243, 244, 247, 248, 250, 251, 252, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 311, 312, 314, 319, 322, 323, 324, 325, 328, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 381, 382, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 405, 407, 408, 410, 411, 412, 413, 414, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 442, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "have_argu": [191, 474], "have_contextvar": [186, 456], "have_docstr": 362, "have_dynamic_load": 483, "have_expat_config_h": 483, "have_featur": 483, "have_gcc_asm_for_x64": 483, "have_libreadlin": 456, "have_linux_vm_sockets_h": 483, "have_long_long": 483, "have_perf_trampolin": 104, "have_pthread_stub": 483, "have_py_set_53bit_precis": [473, 483], "have_round": 483, "have_sockaddr_alg": 483, "have_symlink": 483, "have_thread": [186, 476], "haven": [33, 96, 106, 109, 139, 151, 186, 468, 469, 474, 483], "haydaman": 483, "hci_data_dir": 337, "hci_filt": 337, "hci_time_stamp": 337, "hcom": 336, "hda": 348, "hdf": 483, "hdf5": 483, "hdl": [394, 426], "hdlr": 267, "hdr": 288, "hdrs": [84, 393, 395], "he": [103, 158, 297, 319, 365, 435, 462, 479], "head": [33, 63, 102, 103, 106, 136, 150, 151, 155, 178, 200, 240, 241, 242, 245, 288, 294, 308, 318, 333, 334, 338, 341, 376, 384, 395, 413, 462, 464, 476, 483], "header": [3, 25, 28, 58, 63, 68, 73, 84, 101, 106, 117, 136, 142, 146, 151, 153, 155, 167, 169, 176, 190, 193, 194, 195, 196, 197, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 215, 230, 234, 242, 243, 244, 245, 247, 248, 250, 256, 267, 269, 271, 276, 282, 285, 288, 293, 297, 305, 311, 317, 335, 336, 337, 341, 349, 352, 355, 358, 362, 377, 381, 385, 393, 395, 397, 411, 419, 422, 427, 429, 452, 456, 461, 463, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "header_enc": 195, "header_encod": 195, "header_encode_lin": 195, "header_exist": 483, "header_factori": [203, 208, 476], "header_fetch_pars": 208, "header_item": [243, 395], "header_max_count": 208, "header_nam": [202, 395, 407], "header_offset": 422, "header_source_pars": 208, "header_store_pars": 208, "header_str": 288, "header_valu": 395, "headerdefect": [199, 203], "headererror": 358, "headernam": 197, "headerpars": [207, 476], "headerparseerror": [196, 199, 205], "headerregistri": [68, 194, 199, 200, 205, 208, 285, 483], "headerson": [207, 483], "headervalu": 197, "headlin": 464, "heaney": [477, 478], "heap": [16, 32, 35, 42, 50, 58, 68, 73, 75, 76, 182, 214, 254, 282, 322, 384, 452, 465, 466, 468, 469, 472, 473, 474, 481, 482, 483], "heapifi": [236, 318, 452, 483], "heapmin": 282, "heappop": [108, 236, 452, 465, 468], "heappush": [108, 236, 452, 465, 468], "heappushpop": [236, 468], "heapq": [68, 87, 108, 182, 225, 226, 254, 316, 318, 452, 465, 466, 467, 468, 483], "heapreplac": [236, 318], "heapsort": 236, "heaqp": 483, "hearn": 235, "heart": [465, 474], "heather": 319, "heathmor": 319, "heavi": [73, 110, 167, 469, 476, 480, 483], "heavili": [184, 250, 335, 427, 463, 479, 480], "heblikar": [480, 481, 483], "hebrew": [109, 158], "heck": 95, "hector": 466, "hedstrom": 468, "hee": 483, "heic": 483, "heif": 483, "height": [92, 177, 181, 247, 281, 293, 319, 343, 369, 376, 384, 386, 449, 467, 483], "height_femal": 343, "height_mal": 343, "heighten": 456, "heiko": 476, "heil": 483, "heim": [235, 426, 468, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483], "heissler": 481, "hel": 297, "held": [22, 31, 33, 42, 59, 84, 100, 167, 247, 258, 268, 269, 278, 283, 344, 352, 365, 388, 426, 428, 462, 467, 468, 469, 479, 483], "hell": 73, "heller": [467, 468, 469], "hellman": [341, 476], "hello": [68, 73, 75, 79, 85, 86, 96, 102, 112, 114, 121, 129, 133, 135, 136, 137, 139, 146, 151, 176, 184, 226, 230, 235, 240, 278, 283, 288, 291, 299, 301, 304, 337, 338, 340, 341, 344, 360, 362, 364, 365, 368, 378, 388, 389, 407, 435, 440, 442, 443, 446, 461, 475, 477, 478, 481, 482, 483], "hello_world": 126, "hello_world_app": 407, "hellohellohello": 86, "hellorequest": 341, "helloworld": [114, 435], "helm": 475, "helo": 335, "helo_resp": 335, "help": [23, 33, 45, 49, 58, 61, 66, 68, 75, 80, 84, 85, 86, 87, 89, 93, 94, 96, 101, 102, 103, 106, 108, 109, 110, 118, 122, 123, 150, 151, 152, 155, 158, 169, 176, 177, 187, 190, 191, 192, 193, 200, 222, 225, 226, 228, 230, 234, 235, 241, 244, 246, 250, 253, 255, 262, 281, 288, 293, 297, 308, 313, 335, 337, 340, 344, 352, 362, 366, 367, 368, 369, 375, 378, 380, 386, 394, 395, 398, 399, 405, 413, 421, 428, 432, 435, 448, 450, 451, 455, 456, 459, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "help_": 155, "help_bar": 155, "helpdialog": 483, "helper": [5, 33, 51, 68, 86, 93, 128, 164, 169, 176, 187, 196, 205, 218, 235, 250, 257, 258, 267, 299, 319, 332, 381, 384, 388, 395, 413, 467, 468, 476, 478, 479, 483], "helpformatt": [120, 292, 483], "helpsourc": 483, "helt": 483, "hemsley": 483, "henc": [33, 73, 102, 169, 191, 193, 247, 250, 253, 269, 283, 292, 301, 308, 322, 331, 344, 347, 348, 365, 400, 427, 428, 430, 466, 477, 480, 483], "henri": 483, "henriqu": 483, "henstridg": [230, 462, 469], "henzen": 235, "her": 103, "herald": 464, "herath": 476, "here": [5, 7, 23, 28, 33, 34, 42, 45, 51, 63, 72, 73, 75, 76, 84, 85, 89, 92, 93, 94, 95, 101, 102, 103, 106, 110, 112, 120, 129, 137, 141, 144, 151, 153, 155, 158, 167, 169, 170, 175, 176, 177, 181, 183, 186, 190, 191, 193, 196, 199, 200, 202, 205, 206, 207, 208, 209, 216, 221, 222, 225, 226, 230, 234, 235, 242, 245, 247, 248, 251, 255, 267, 268, 269, 270, 275, 283, 288, 292, 293, 297, 299, 305, 307, 314, 315, 319, 322, 329, 331, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 352, 358, 361, 362, 365, 366, 369, 384, 385, 386, 388, 390, 395, 400, 403, 408, 410, 411, 413, 423, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 455, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 475, 476, 478, 479, 480, 481, 482, 483], "hereaft": [101, 308, 355], "herebi": 426, "herein": 426, "hergenroed": 483, "herror": 337, "hertz": 406, "heterogen": [102, 344, 470, 483], "hetland": [464, 465], "hetting": [93, 95, 108, 427, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "heurist": [190, 197, 203, 225, 471, 475, 483], "hewlett": 462, "hex": [9, 64, 85, 94, 106, 109, 143, 146, 158, 176, 211, 225, 235, 341, 344, 345, 352, 369, 398, 428, 435, 444, 450, 452, 462, 463, 465, 467, 468, 470, 471, 472, 477, 478, 483], "hex_codec": [158, 477], "hex_decod": 477, "hexadecim": [64, 85, 96, 100, 106, 146, 158, 178, 235, 259, 292, 319, 344, 345, 347, 352, 435, 462, 466, 468, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483], "hexbin4": [482, 483], "hexdigest": [235, 237, 340, 467, 483], "hexdigit": [178, 281, 345, 435], "hexinteg": 435, "hexlifi": [146, 483], "hexrepl": 106, "hexstr": 146, "hexvers": [4, 80, 352, 450, 476], "hey": 362, "hfs": 84, "hg": [167, 296, 341, 465, 469, 475, 483], "hh": [158, 183, 248, 366, 435, 462, 483], "hhhh": [347, 462], "hhl": 84, "hhllhh": 215, "hhmm": [183, 248, 366], "hi": [102, 147, 176, 304, 344, 369, 386, 483], "hibern": 483, "hidden": [33, 85, 179, 191, 247, 297, 308, 338, 376, 384, 474, 476, 480, 481, 482, 483], "hide": [92, 96, 109, 179, 193, 194, 216, 247, 258, 292, 348, 362, 376, 384, 386, 400, 427, 461, 465, 469, 474, 475, 482, 483], "hide_cookie2": 243, "hideturtl": 384, "hidpi": 483, "hiem": 477, "hier": 245, "hierachi": 386, "hierarch": [68, 101, 245, 267, 268, 368, 369, 376, 394, 412, 413, 420, 432], "hierarchi": [45, 68, 85, 98, 101, 102, 103, 186, 213, 225, 250, 255, 267, 268, 290, 299, 302, 329, 333, 340, 369, 375, 376, 388, 410, 413, 428, 432, 436, 465, 467, 470, 483, 484], "hierarchy_request_err": 410, "hierarchyrequesterr": 410, "high": [32, 33, 38, 42, 60, 64, 68, 73, 74, 79, 84, 85, 96, 101, 102, 110, 128, 130, 133, 136, 137, 139, 149, 164, 177, 183, 186, 191, 194, 201, 226, 248, 259, 261, 266, 270, 283, 289, 293, 295, 299, 308, 309, 318, 319, 328, 329, 332, 333, 337, 340, 341, 343, 352, 353, 356, 358, 366, 403, 436, 464, 465, 466, 467, 468, 474, 475, 476, 477, 478, 480, 482, 483], "high_priority_class": 348, "higher": [31, 33, 56, 68, 95, 98, 101, 102, 103, 115, 146, 169, 177, 186, 191, 202, 204, 224, 225, 230, 242, 254, 258, 261, 267, 268, 269, 270, 279, 281, 282, 283, 288, 293, 299, 305, 309, 325, 332, 337, 340, 341, 352, 358, 359, 365, 382, 386, 395, 400, 413, 463, 464, 467, 468, 475, 476, 477, 480, 483], "highest": [34, 79, 93, 94, 101, 122, 133, 167, 267, 278, 299, 300, 328, 333, 340, 341, 344, 352, 366, 430, 468, 476, 483], "highest_protocol": [299, 465], "highlight": [68, 80, 92, 177, 190, 247, 388, 394, 457, 462, 469, 472, 473, 475, 483, 484], "highpag": 483, "hijack": 176, "hilbert": 384, "hill": 483, "hiller": 147, "hilliard": 483, "hillier": 483, "hilton": [472, 473, 474, 482, 483], "him": 462, "himanshu": 483, "hindl": 465, "hindranc": 84, "hint": [42, 68, 79, 87, 88, 96, 119, 158, 167, 202, 230, 241, 243, 246, 247, 258, 262, 344, 384, 385, 386, 427, 428, 436, 473, 479, 480, 483, 484], "hirokazu": [469, 476, 483], "hiroshima": 426, "his": [73, 84, 103, 230, 435, 462, 464, 468, 469, 477, 479, 483], "hisao": 465, "histfil": 320, "histor": [22, 41, 63, 73, 75, 95, 100, 103, 167, 177, 183, 213, 248, 271, 295, 366, 383, 414, 422, 436, 461, 469, 474, 477, 479, 483], "histori": [68, 80, 102, 109, 155, 183, 247, 271, 297, 334, 363, 365, 424, 445, 455, 477, 478, 479, 483], "historic_rainfal": 85, "history_get": 320, "history_truncate_fil": 320, "historyconsol": 320, "hit": [86, 92, 102, 144, 153, 176, 226, 247, 297, 341, 359, 369, 380, 467, 475, 483], "hit_except": 427, "hitchcock": 147, "hither": 443, "hive": 461, "hk": 476, "hkcu": 461, "hkey": 405, "hkey_": [68, 404], "hkey_classes_root": 405, "hkey_current_config": 405, "hkey_current_us": [34, 405, 461], "hkey_dyn_data": 405, "hkey_local_machin": [34, 405, 461], "hkey_performance_data": 405, "hkey_us": 405, "hklm": 461, "hkn": 459, "hks": 73, "hkscs": 158, "hline": 177, "hlinuxtnam": 462, "hlist": [375, 483], "hls": 162, "hls_to_rgb": 162, "hm": 176, "hmac": [68, 173, 174, 235, 254, 269, 283, 299, 326, 337, 464, 469, 481, 483], "hmac_upd": 483, "hmodul": 176, "ho": [228, 483], "hoc": 103, "hodgson": 465, "hoelzl": 483, "hoffmann": [474, 483], "hog": 362, "hohe": 483, "hoho": 483, "hold": [7, 9, 23, 27, 33, 45, 51, 55, 58, 60, 63, 66, 73, 85, 93, 100, 101, 102, 120, 124, 139, 167, 169, 170, 176, 183, 186, 191, 203, 215, 242, 245, 255, 257, 259, 268, 269, 271, 283, 292, 293, 302, 308, 319, 322, 325, 330, 337, 341, 344, 348, 352, 362, 365, 369, 381, 388, 405, 411, 413, 415, 426, 428, 432, 436, 462, 463, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "holden": [479, 483], "holder": [426, 469, 483], "hole": [151, 293, 331, 468, 469, 472, 483], "holger": 467, "holi": [262, 340, 345, 442], "hollywood": 340, "holman": [473, 483], "holmquist": 483, "holtermann": 483, "home": [33, 34, 68, 85, 86, 92, 96, 102, 103, 106, 151, 155, 167, 177, 214, 234, 247, 251, 271, 272, 293, 294, 296, 297, 306, 310, 314, 315, 320, 331, 334, 348, 354, 362, 369, 375, 384, 399, 434, 438, 453, 456, 461, 468, 474, 475, 476, 478, 481, 483], "home_dir": 167, "home_pag": 307, "homebrew": 106, "homedir": 483, "homedr": 294, "homepag": 307, "homepath": 294, "homer": 481, "homogen": [84, 344, 347, 408], "hong": [473, 481, 483], "honglin": 483, "hongweipeng": 483, "honor": [5, 115, 251, 297, 352, 358, 420, 468, 469, 479, 483], "honour": 483, "hood": [45, 101, 102, 106, 362, 467, 468, 475], "hook": [24, 31, 32, 34, 59, 66, 68, 87, 93, 98, 100, 115, 142, 155, 176, 188, 208, 216, 218, 225, 242, 254, 280, 302, 307, 308, 315, 331, 340, 344, 352, 363, 365, 382, 385, 399, 400, 423, 428, 430, 436, 438, 455, 456, 462, 464, 467, 469, 472, 473, 474, 476, 478, 479, 480, 482, 483, 484], "hook_compress": [218, 472], "hook_encod": [218, 479, 483], "hookcompress": 483, "hop": 407, "hope": [76, 99, 102, 103, 213, 329, 386, 461, 462, 463, 476, 477, 479, 481], "hopper": [482, 483], "horban": 479, "horch": 177, "horcicka": 468, "horev": 477, "horizont": [109, 177, 178, 375, 376, 384, 435], "horler": 468, "horner": 261, "horribl": 446, "hors": [468, 469], "horsen": 469, "hosmer": 483, "host": [33, 68, 84, 102, 107, 126, 136, 142, 158, 177, 178, 209, 212, 223, 242, 243, 245, 247, 248, 256, 257, 269, 271, 283, 286, 287, 288, 293, 294, 296, 305, 313, 319, 335, 337, 338, 341, 346, 347, 359, 362, 394, 395, 398, 407, 419, 456, 461, 462, 465, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483], "host4": 99, "host6": 99, "host_flag": 483, "hostflag": 483, "hostmask": [99, 259], "hostmast": 341, "hostnam": [102, 110, 136, 142, 151, 158, 184, 209, 223, 242, 248, 259, 269, 283, 288, 293, 305, 313, 335, 337, 341, 394, 395, 419, 449, 462, 465, 469, 474, 475, 476, 477, 480, 483], "hostname_checks_common_nam": [341, 480, 483], "hostrunn": 483, "hostv4": 483, "hostv6": 483, "hot": [85, 247, 308], "hotshot": 467, "hotspot": 465, "houglum": 483, "hour": [20, 85, 106, 126, 133, 139, 183, 209, 269, 271, 366, 422, 425, 435, 465, 479], "hourglass": 369, "hous": [319, 479], "housekeep": [138, 365], "houston": 268, "hover_delay": 483, "hovercraft": 446, "how": [5, 7, 11, 33, 42, 58, 61, 63, 64, 68, 71, 72, 73, 75, 76, 77, 92, 93, 95, 96, 99, 100, 101, 103, 106, 109, 110, 112, 117, 120, 132, 133, 137, 139, 141, 144, 149, 151, 155, 158, 163, 167, 176, 181, 183, 184, 186, 187, 189, 190, 194, 195, 200, 201, 202, 207, 218, 222, 225, 226, 230, 235, 242, 243, 244, 247, 250, 251, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 272, 278, 283, 288, 293, 298, 299, 308, 311, 319, 320, 321, 322, 331, 332, 333, 337, 338, 341, 344, 346, 348, 352, 358, 364, 365, 366, 368, 376, 380, 382, 386, 388, 394, 395, 399, 408, 410, 419, 421, 425, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "how_mani": 64, "howdi": 284, "howev": [5, 23, 24, 33, 34, 42, 45, 49, 63, 71, 72, 73, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 120, 128, 133, 135, 139, 151, 158, 161, 167, 169, 170, 176, 177, 181, 186, 190, 193, 194, 196, 199, 201, 203, 205, 206, 208, 209, 213, 225, 226, 230, 235, 243, 245, 247, 248, 250, 252, 255, 258, 259, 261, 267, 268, 269, 271, 272, 281, 283, 288, 292, 293, 299, 311, 319, 328, 331, 332, 333, 334, 337, 340, 341, 344, 345, 348, 352, 353, 354, 355, 358, 362, 364, 365, 366, 369, 376, 378, 381, 385, 386, 387, 388, 394, 397, 403, 405, 410, 411, 415, 416, 419, 422, 426, 428, 429, 430, 432, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "howmuch": 305, "howto": [68, 85, 92, 97, 106, 120, 340, 419, 462, 469, 470, 475, 483], "hoyt": [468, 478, 483], "hp": [83, 466, 483], "hpet": 131, "href": [200, 238, 240, 242, 413, 469], "hreftyp": 176, "hresult": 176, "hron": [473, 483], "hrs": 102, "hsiang": 483, "hstderror": 348, "hstdinput": 348, "hstdoutput": 348, "hstrerror": 337, "hsu": 483, "hsuan": [480, 483], "hsv": 162, "hsv_to_rgb": 162, "ht": [178, 343, 384], "ht_cached_key": 483, "htbin": 245, "htcpcp": 241, "htest": 483, "htm": [162, 183, 245, 464, 465, 466, 467, 468, 469, 470], "html": [1, 68, 71, 78, 79, 80, 95, 101, 103, 106, 110, 126, 136, 150, 151, 152, 158, 162, 190, 200, 205, 242, 243, 245, 247, 254, 261, 273, 293, 313, 340, 341, 369, 380, 394, 395, 396, 407, 411, 412, 413, 417, 419, 420, 424, 426, 428, 435, 452, 455, 456, 459, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 478, 480, 481, 482, 483, 484], "html2fo": 464, "html4": [239, 240, 483], "html5": [239, 476, 477, 483], "html_text": 200, "htmlcalendar": [150, 480], "htmldiff": [190, 466, 478, 483], "htmlentitydef": 470, "htmlhelp": 483, "htmlparseerror": 476, "htmlparser": [68, 273, 470, 472, 476, 477, 478, 482, 483], "htmlparsererror": [478, 483], "htmlview": 483, "hton": [107, 337, 472, 480, 483], "htonl": [107, 337], "http": [68, 80, 84, 101, 102, 103, 107, 110, 133, 142, 143, 150, 151, 156, 158, 166, 169, 183, 200, 208, 209, 240, 254, 256, 269, 313, 314, 327, 333, 337, 338, 341, 362, 382, 393, 394, 395, 396, 409, 413, 415, 418, 419, 420, 424, 426, 428, 432, 451, 452, 453, 454, 455, 459, 462, 464, 465, 466, 467, 468, 470, 474, 481, 483], "http2time": 483, "http_accept": 483, "http_cooki": 244, "http_error": [441, 472], "http_error_": 395, "http_error_30": 395, "http_error_301": 395, "http_error_302": 395, "http_error_303": 395, "http_error_307": 395, "http_error_308": 395, "http_error_401": 395, "http_error_404": 395, "http_error_407": 395, "http_error_auth_req": 395, "http_error_default": 395, "http_get": 478, "http_host": 407, "http_open": 395, "http_port": 242, "http_proxi": [110, 395, 483], "http_respons": 395, "http_version": 407, "http_version_not_support": 241, "httpbasicauthhandl": [68, 110, 256], "httpbasicpriorauthhandl": 483, "httpconnect": [68, 256, 419, 468, 469, 475, 477, 478, 479, 480, 483], "httpcookieprocessor": [68, 243, 256, 466], "httpd": [245, 276, 333, 407, 467], "httpdefaulterrorhandl": [110, 395], "httpdigestauthhandl": [68, 256], "httperror": [68, 226, 393, 395, 477, 483], "httperrorprocessor": [68, 110, 256], "httpexcept": 242, "httphandler": [68, 101, 102, 110, 118, 256, 268, 478, 483], "httplib": [462, 465, 466, 468, 469, 470, 483], "httpmessag": [68, 110, 245, 256], "httpmethod": [241, 483], "httpon": [244, 468, 483], "httpoxi": 483, "httppasswordmgr": [68, 110, 256, 483], "httppasswordmgrwithdefaultrealm": [110, 395], "httppasswordmgrwithpriorauth": [68, 256, 478, 483], "httpredirecthandl": [68, 110, 256], "httprespons": [68, 256, 395, 469, 476, 483], "https": [1, 68, 71, 75, 78, 79, 80, 81, 84, 85, 95, 101, 102, 103, 109, 110, 126, 136, 160, 162, 169, 183, 226, 235, 239, 240, 242, 243, 248, 251, 261, 269, 307, 313, 314, 318, 319, 326, 328, 340, 341, 352, 379, 387, 388, 394, 395, 399, 403, 407, 411, 413, 419, 424, 426, 435, 444, 445, 451, 454, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 480, 481, 483], "https_open": 395, "https_port": 242, "https_respons": 395, "httpsconnect": [242, 395, 468, 469, 475, 477, 480, 483], "httpserver": [245, 333, 407], "httpshandler": [68, 256, 475], "httpstatus": [241, 478, 482, 483], "huang": 483, "hubri": 103, "hudson": [463, 464, 465, 467, 483], "huge": [158, 258, 462, 477, 483], "hugh": 469, "hugo": [473, 474, 477, 482, 483], "hugunin": 434, "hukkinen": 473, "human": [75, 101, 102, 109, 117, 190, 191, 230, 243, 245, 267, 288, 299, 303, 333, 335, 342, 349, 352, 377, 387, 414, 430, 453, 464, 471, 476, 477, 483], "humbl": 292, "hundr": [59, 102, 193, 235], "hundredweight": 110, "hung": 328, "hunt": [33, 292, 483], "huntrleak": 483, "huntsvill": 95, "huon": 482, "hurd": [465, 483], "hurt": 466, "hussain": 483, "hv_guid_broadcast": 337, "hv_guid_children": 337, "hv_guid_loopback": 337, "hv_guid_par": 337, "hv_guid_wildcard": 337, "hv_guid_zero": 337, "hv_protocol_raw": 337, "hvsocket_address_flag_passthru": 337, "hvsocket_connect_timeout": 337, "hvsocket_connect_timeout_max": 337, "hvsocket_connected_suspend": 337, "hwnd": 176, "hybrid": [99, 183, 477], "hyde": 483, "hye": [466, 467], "hylton": [462, 463, 464, 465, 466, 467, 468, 469], "hynek": [472, 476, 477, 483], "hyper": [337, 483], "hyperbol": [68, 190, 290, 468], "hyperbola": 275, "hyperlink": [190, 483], "hyperpars": 483, "hypertext": [110, 240, 241, 273, 410], "hyphen": [71, 120, 158, 228, 292, 319, 364, 386, 398, 455, 461, 465, 483], "hypot": [160, 275, 481, 483], "hypotenus": 275, "hypothesi": [318, 483], "hypothet": [292, 337, 462], "hz": [158, 466, 476, 483], "hzgb": 158, "i1": [54, 190, 278, 419, 466], "i18n": [230, 345, 462, 469, 483], "i2": [54, 190, 278, 419, 466], "i386": [355, 460, 461, 478], "i4": 419, "i5": 308, "i586": [355, 475], "i686": 395, "i7": [481, 482], "i8": [419, 468], "i_dont_want_to_store_this_cooki": 243, "i_squar": 344, "ia": 176, "iac": 359, "iacob": [476, 483], "iadd": 291, "iain": 467, "ian": [95, 407, 473], "iana": [68, 182, 183, 241, 254, 259, 276, 314, 341, 411, 413, 482, 483], "iand": 291, "iarygin": [474, 483], "ib": 230, "ib3x8": 337, "ibm": [95, 158, 177, 186, 347, 422, 465, 467, 476, 483], "ibm037": 158, "ibm039": 158, "ibm1026": 158, "ibm1125": 158, "ibm1140": 158, "ibm273": 158, "ibm424": 158, "ibm437": 158, "ibm500": 158, "ibm775": 158, "ibm850": 158, "ibm852": 158, "ibm855": 158, "ibm857": 158, "ibm858": 158, "ibm860": 158, "ibm861": 158, "ibm862": 158, "ibm863": 158, "ibm864": 158, "ibm865": 158, "ibm866": 158, "ibm869": 158, "ic": [183, 347, 468], "icanon": 383, "icc": [469, 471, 483], "ice": [68, 284], "iceap": [403, 474, 483], "iceboy": 483, "iceland": [158, 467], "icglu": 468, "ichiro": 464, "icmp": 337, "icn": 483, "ico": [223, 483], "icon": [369, 373, 461, 464, 465, 483], "iconcat": 291, "icopen": 468, "icrlf": 483, "icrnl": 383, "icursor": 376, "id": [13, 22, 27, 33, 45, 61, 68, 78, 87, 95, 96, 98, 101, 102, 115, 117, 118, 122, 130, 133, 142, 153, 160, 177, 181, 193, 196, 197, 200, 203, 205, 209, 225, 230, 233, 240, 259, 267, 268, 269, 270, 271, 272, 281, 283, 288, 293, 299, 303, 305, 307, 310, 314, 319, 322, 328, 329, 334, 337, 340, 341, 342, 348, 349, 353, 356, 358, 365, 369, 376, 386, 388, 389, 390, 398, 401, 402, 413, 416, 428, 430, 431, 449, 450, 463, 464, 466, 467, 468, 473, 474, 480, 481, 482, 483], "id2obj": 402, "id_continu": 435, "id_dsa": 332, "id_lik": 303, "id_nubm": 93, "id_numb": 93, "id_refcount": 483, "id_rsa": 332, "id_start": 435, "idb": 483, "idcok": 177, "ide": [68, 80, 85, 87, 357, 386, 436, 451, 458, 461, 462, 464], "idea": [78, 79, 84, 85, 92, 93, 94, 100, 101, 102, 120, 183, 190, 193, 261, 266, 295, 307, 355, 376, 384, 428, 462, 464, 465, 466, 469, 470, 471, 475, 479, 483], "ideal": [33, 63, 95, 102, 109, 183, 352, 400, 466, 475], "idempot": [133, 167, 226, 474, 480, 483], "ident": [5, 9, 25, 46, 49, 64, 68, 73, 84, 85, 93, 94, 95, 99, 101, 102, 122, 142, 159, 181, 183, 186, 190, 193, 196, 201, 205, 207, 215, 216, 225, 230, 245, 255, 261, 267, 269, 271, 281, 283, 293, 305, 308, 319, 328, 332, 333, 337, 340, 341, 344, 347, 352, 356, 365, 366, 375, 378, 385, 389, 410, 413, 425, 428, 431, 441, 464, 465, 467, 468, 472, 475, 479, 480, 481, 483], "identchar": 155, "identif": [72, 137, 283, 346, 365, 483], "identifi": [13, 22, 23, 27, 33, 42, 61, 64, 68, 73, 75, 76, 77, 85, 87, 99, 101, 109, 110, 115, 120, 122, 153, 160, 176, 191, 193, 194, 196, 205, 212, 225, 230, 247, 248, 255, 259, 268, 269, 271, 281, 283, 288, 293, 297, 302, 308, 314, 315, 319, 320, 323, 328, 335, 337, 341, 344, 345, 346, 351, 352, 355, 362, 365, 368, 369, 386, 387, 388, 394, 395, 398, 405, 410, 413, 415, 416, 420, 426, 427, 428, 429, 432, 433, 436, 440, 443, 448, 461, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 481, 482, 483], "identify_column": 376, "identify_el": 376, "identify_region": 376, "identify_row": 376, "ideograph": 344, "idiom": [33, 73, 85, 103, 112, 114, 120, 193, 225, 283, 331, 341, 352, 386, 465, 470, 475, 476, 482, 483], "idiomat": [68, 112, 267, 315, 386, 483], "idiosyncrasi": [465, 483], "idiosyncrat": 369, "idl": [66, 68, 79, 80, 85, 87, 175, 176, 178, 229, 254, 334, 348, 368, 369, 384, 410, 411, 413, 459, 461, 464, 465, 484], "idle3": 85, "idle_intro": 459, "idle_priority_class": 348, "idle_test": 483, "idleconf": 483, "idlefork": 465, "idleib": 483, "idlelib": [68, 156, 368, 369, 465, 483], "idlerc": [247, 483], "idlestartup": [247, 483], "idlev": 483, "idlok": 177, "idn": [158, 341, 480, 483], "idna": [68, 145, 203, 387, 394, 465, 483], "ido": [482, 483], "idpattern": [345, 483], "idref": 314, "ids": [13, 22, 27, 61, 85, 230, 259, 268, 270, 283, 288, 293, 299, 303, 353, 365, 376, 466, 476, 483], "idstr": 209, "idtyp": 293, "ie": [110, 205, 218, 240, 243, 248, 278, 292, 395, 419, 478, 483], "ie9": 240, "iec": 352, "ieee": [25, 154, 186, 262, 275, 294, 337, 347, 362, 430, 444, 456, 466, 468, 471, 473, 475, 479, 480, 483], "ieee754": 344, "ierr": 23, "ietf": [126, 235, 259, 341, 347], "if": [1, 4, 5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 36, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 116, 117, 120, 122, 126, 129, 132, 133, 135, 136, 137, 138, 139, 141, 143, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 182, 184, 186, 188, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 287, 288, 289, 291, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 442, 443, 445, 448, 450, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "if_index": 337, "if_indextonam": [337, 481, 483], "if_nam": 337, "if_nameindex": [337, 481, 483], "if_nametoindex": [337, 481, 483], "if_stmt": [427, 431], "ifconfig": [348, 483], "ifdef": [34, 73, 456, 462, 483], "ifexp": 122, "iff": [68, 190, 193, 254, 350], "ific": 345, "ified_newdatatyp": 75, "ifilt": [112, 465], "ifilterfals": 112, "iflag": 361, "ifloordiv": 291, "ifnam": 337, "ifndef": [73, 483], "ifs": 122, "iglob": [231, 472, 478, 479, 483], "ignacio": 483, "ignor": [5, 18, 22, 23, 24, 33, 34, 35, 39, 47, 49, 59, 61, 63, 64, 66, 73, 76, 77, 101, 106, 109, 110, 115, 122, 133, 136, 137, 139, 144, 149, 151, 155, 158, 159, 163, 167, 169, 175, 176, 177, 181, 183, 186, 188, 190, 191, 193, 196, 199, 200, 208, 209, 213, 215, 216, 218, 223, 225, 226, 230, 242, 243, 247, 248, 249, 250, 251, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 283, 288, 293, 297, 299, 302, 304, 308, 314, 319, 320, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 354, 356, 358, 362, 364, 365, 366, 373, 376, 378, 380, 381, 382, 386, 388, 394, 395, 398, 400, 405, 410, 413, 415, 416, 421, 422, 425, 427, 428, 431, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ignorable_whitespac": 412, "ignorablewhitespac": 415, "ignore_cleanup_error": [360, 483], "ignore_dangling_symlink": [332, 475, 483], "ignore_discard": 243, "ignore_environ": [352, 475, 483], "ignore_error": [158, 332, 483], "ignore_except": 169, "ignore_exception_detail": [193, 469], "ignore_expir": 243, "ignore_pattern": [332, 468], "ignore_warn": 362, "ignore_zero": [358, 483], "ignorecas": [106, 319, 345, 483], "ignorechar": 143, "ignoredir": 380, "ignorefil": 483, "ignoremod": 380, "igo": 476, "igor": 483, "ih3": 467, "ihav": 288, "ihook": [462, 465, 468, 469], "ii": [73, 79, 160, 176, 341, 426, 427], "iid": [176, 376, 483], "iii": [73, 426], "iiihh": 452, "iinput": 465, "iis": [35, 407], "iis7": 407, "iiscgihandl": 407, "ijtaba": 483, "ik1hcnrpbib2libmw7z3axmi": 288, "il": [297, 341, 434], "iland": 483, "ile": 477, "ilia": 483, "ill": [186, 304, 475, 480, 483], "illeg": [23, 47, 95, 109, 158, 196, 205, 212, 213, 293, 314, 333, 341, 366, 376, 410, 422, 427, 428, 431, 435, 436, 463, 464, 466, 467, 469, 475, 480, 481], "illegalmontherror": 150, "illegalweekdayerror": 150, "illia": [473, 483], "illumo": 483, "illus": [428, 475], "illustr": [85, 100, 101, 102, 110, 120, 139, 169, 173, 183, 193, 208, 243, 250, 268, 331, 333, 340, 344, 348, 359, 369, 388, 395, 427, 430, 466, 476], "ilsch": 483, "ilshift": 291, "ilya": [475, 480, 483], "im": [44, 85, 92, 344], "im_a_teapot": [241, 482], "im_func": [112, 468], "im_self": 468, "im_us": 241, "ima": 141, "imag": [7, 15, 42, 68, 85, 87, 151, 154, 177, 198, 200, 206, 225, 226, 243, 249, 262, 289, 322, 336, 344, 345, 352, 368, 376, 384, 395, 406, 419, 428, 431, 475, 480, 483], "imagenam": 376, "imageop": 468, "imagespec": 376, "imagin": [73, 106, 114, 299, 384], "imaginari": [68, 154, 183, 225, 345, 352, 384, 427, 428, 430, 468, 469, 475], "imaginary_numb": 431, "imagnumb": 430, "imagpart": 440, "iman": 483, "imap": [80, 112, 194, 248, 283, 305, 394, 465, 466, 481, 483], "imap4": [68, 254, 256, 305, 475, 478, 479, 481, 482, 483], "imap4_port": 248, "imap4_ssl": [248, 476, 482, 483], "imap4_ssl_port": 248, "imap4_stream": [248, 482, 483], "imap4rev1": 248, "imap_it": 283, "imap_unord": [283, 483], "imap_unordered_it": 283, "imapiter": 283, "imaplib": [68, 106, 142, 194, 254, 256, 305, 464, 465, 466, 469, 471, 474, 479, 483], "imatmul": [291, 478], "imax": 7, "img": [200, 240], "img1": 376, "img2": 376, "img3": 376, "img_1074": 452, "img_1076": 452, "img_1077": 452, "img_data": 200, "imgfil": 468, "imghdr": [68, 254, 336, 350, 473, 474, 483], "imglib": 249, "imin": 7, "imit": [78, 308, 468], "immateri": 432, "immedi": [23, 24, 28, 31, 33, 45, 63, 66, 73, 79, 84, 85, 92, 93, 95, 103, 106, 115, 133, 135, 139, 141, 153, 155, 169, 176, 177, 184, 186, 191, 193, 205, 213, 214, 216, 218, 226, 232, 242, 247, 255, 258, 266, 267, 271, 282, 283, 293, 295, 297, 312, 314, 319, 331, 333, 337, 340, 341, 344, 345, 348, 352, 353, 359, 361, 365, 366, 369, 376, 384, 388, 395, 400, 406, 410, 413, 415, 416, 419, 420, 427, 428, 429, 430, 432, 455, 464, 465, 466, 468, 469, 474, 476, 477, 479, 480, 481, 482, 483], "immedok": 177, "immisch": 467, "immort": [6, 33, 34, 46, 52, 56, 87, 352, 465, 474, 481, 483], "immun": 483, "immut": [5, 9, 10, 28, 33, 35, 60, 63, 64, 68, 85, 87, 93, 100, 122, 161, 175, 176, 181, 183, 186, 208, 221, 225, 226, 255, 267, 291, 293, 296, 427, 430, 442, 449, 462, 465, 466, 467, 468, 469, 470, 474, 481, 482, 483], "immutableset": [465, 466], "imod": 291, "imp": [31, 68, 470, 472, 473, 475, 476, 477, 479, 483], "imp_hook": 474, "impact": [33, 68, 75, 167, 211, 250, 293, 307, 334, 340, 341, 347, 348, 362, 386, 483], "impair": 481, "impart": [68, 267], "impati": [103, 469], "imped": 483, "imper": 472, "imperfect": [343, 364], "impimport": [472, 473, 474, 483], "impl": [411, 483], "impl_detail": 362, "implaus": 483, "implement": [5, 9, 13, 23, 28, 31, 32, 33, 39, 42, 45, 49, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 85, 87, 88, 91, 92, 93, 94, 95, 96, 100, 101, 106, 108, 109, 110, 120, 128, 132, 133, 137, 139, 144, 151, 155, 157, 158, 161, 167, 170, 173, 176, 181, 183, 184, 186, 191, 193, 196, 203, 205, 207, 208, 212, 213, 214, 218, 220, 221, 223, 225, 226, 230, 234, 235, 237, 242, 243, 244, 245, 247, 248, 251, 252, 253, 255, 258, 259, 261, 266, 267, 268, 269, 271, 275, 280, 281, 282, 283, 285, 288, 290, 292, 293, 299, 302, 305, 307, 308, 309, 312, 314, 315, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 365, 366, 369, 374, 376, 378, 379, 381, 384, 385, 386, 388, 394, 395, 399, 400, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 422, 423, 425, 427, 429, 430, 432, 433, 435, 436, 441, 442, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 477, 478, 481, 482, 483, 484], "impli": [7, 31, 42, 58, 63, 102, 109, 112, 163, 181, 258, 292, 314, 320, 340, 341, 344, 415, 422, 426, 428, 430, 436, 455, 456, 461, 468, 477, 480, 481, 483], "implic": [250, 283, 299, 314, 394, 430, 483], "implicit": [23, 34, 59, 63, 68, 73, 85, 100, 102, 112, 114, 120, 133, 139, 167, 169, 181, 184, 188, 190, 223, 225, 248, 250, 255, 258, 268, 281, 295, 297, 314, 319, 324, 333, 335, 337, 340, 344, 345, 347, 348, 386, 400, 402, 412, 427, 428, 430, 432, 436, 440, 443, 455, 469, 470, 474, 475, 477, 478, 479, 480, 481, 483, 484], "implicit0": [255, 479, 483], "impload": [472, 473, 474, 483], "import": [7, 11, 23, 31, 33, 34, 42, 45, 59, 63, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 86, 87, 88, 89, 92, 93, 94, 95, 99, 100, 101, 102, 104, 106, 108, 109, 110, 112, 113, 115, 116, 118, 120, 121, 123, 125, 126, 131, 133, 134, 136, 137, 139, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 155, 160, 162, 163, 166, 167, 168, 169, 170, 172, 173, 175, 176, 181, 183, 184, 186, 187, 188, 190, 191, 193, 195, 196, 200, 202, 205, 207, 208, 209, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 231, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 257, 258, 261, 262, 264, 265, 266, 270, 271, 272, 275, 276, 278, 279, 280, 283, 284, 288, 292, 293, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 365, 366, 367, 368, 375, 376, 378, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 396, 398, 399, 400, 402, 406, 407, 408, 410, 411, 412, 413, 415, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 433, 435, 438, 440, 441, 442, 443, 444, 445, 446, 448, 451, 452, 453, 455, 456, 461, 462, 464, 469, 470, 471, 472, 474, 475, 478, 479, 480, 481, 482, 483, 484], "import__find__load__don": [98, 480], "import__find__load__start": [98, 480], "import_deprec": 483, "import_fresh_modul": [362, 483], "import_from": [191, 431], "import_from_as_nam": 431, "import_from_target": 431, "import_help": [68, 187, 254, 483], "import_importmodul": 472, "import_modul": [68, 85, 102, 225, 268, 280, 324, 362, 428, 432, 436, 469, 474, 476, 483], "import_nam": [191, 431], "import_spam": 73, "import_star": 483, "import_stmt": [431, 436], "import_tim": 34, "importbench": 483, "importdl": 462, "importerror": [23, 102, 213, 250, 268, 279, 283, 299, 302, 334, 341, 352, 362, 388, 410, 423, 432, 436, 450, 456, 463, 465, 468, 474, 476, 477, 479, 480, 482, 483], "importfrom": [122, 483], "importlib": [34, 68, 85, 87, 98, 102, 112, 225, 247, 254, 255, 268, 280, 302, 311, 324, 352, 362, 382, 385, 422, 423, 428, 433, 436, 450, 461, 471, 473, 475, 481, 483, 484], "importlib_bootstrap": 455, "importlib_bootstrap_extern": 455, "importlib_metadata": [251, 472, 482, 483], "importlib_resourc": [252, 480, 482, 483], "imports2": 112, "importtim": [34, 455, 480, 483], "importwarn": [23, 188, 213, 388, 400, 432, 450, 467, 472, 474, 479, 483], "impos": [42, 195, 262, 293, 299, 321, 322, 344, 386, 434, 455], "imposs": [23, 54, 63, 85, 101, 103, 158, 268, 283, 293, 312, 362, 365, 386, 388, 410, 422, 436, 462, 463, 464, 465, 466, 468, 469, 474, 478, 483], "impossible_hint": 96, "impract": 95, "imprecis": 103, "impress": 483, "improb": 158, "improp": [362, 394, 428, 462, 474, 477, 483], "improperconnectionst": 242, "improv": [23, 68, 73, 85, 93, 100, 102, 106, 120, 133, 139, 158, 167, 222, 234, 248, 250, 275, 299, 314, 341, 348, 376, 410, 426, 428, 430, 456, 470, 476, 478, 480, 481, 482, 483, 484], "impur": 226, "imputil": [462, 465, 469], "imreh": 483, "imsx": 319, "imul": [112, 291], "in": [1, 4, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 66, 68, 71, 74, 75, 76, 78, 80, 87, 89, 91, 92, 93, 94, 96, 98, 99, 103, 104, 105, 106, 107, 108, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 157, 159, 160, 161, 163, 164, 166, 167, 168, 170, 173, 175, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 293, 294, 295, 296, 297, 298, 299, 300, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 343, 345, 346, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 367, 368, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 385, 387, 388, 389, 390, 393, 394, 395, 396, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 455, 456, 458, 464, 465, 467, 468, 469, 471, 475, 476, 483, 484], "in6_addr": 337, "in_addr": 337, "in_bitwise_or": 431, "in_dict": 389, "in_dll": 176, "in_error": 107, "in_fd": [293, 483], "in_fil": 397, "in_json": 468, "in_rpc_cod": 483, "in_table_a1": 346, "in_table_b1": 346, "in_table_c11": 346, "in_table_c11_c12": 346, "in_table_c12": 346, "in_table_c21": 346, "in_table_c21_c22": 346, "in_table_c22": 346, "in_table_c3": 346, "in_table_c4": 346, "in_table_c5": 346, "in_table_c6": 346, "in_table_c7": 346, "in_table_c8": 346, "in_table_c9": 346, "in_table_d1": 346, "in_table_d2": 346, "in_test": 141, "in_transact": 340, "in_transit": 475, "inabl": [268, 293, 426], "inaccess": [293, 395, 428, 462, 465, 477, 483], "inaccur": [464, 466, 483], "inaccuraci": [466, 469], "inact": [132, 137, 441, 468, 483], "inada": [472, 473, 474, 478, 479, 480, 481, 482, 483], "inaddr_": 337, "inaddr_ani": 337, "inaddr_broadcast": 337, "inadequ": 465, "inadvert": [169, 255, 468, 477, 478, 483], "inappropri": [213, 338, 346, 428, 483], "inbox": [248, 271], "inc": [85, 341, 408, 426, 462, 468], "inc_path": 399, "incarn": 427, "incas": 483, "incept": 235, "inch": [177, 369], "incident": [85, 213, 251, 385, 426, 483], "inclhead": 153, "includ": [4, 5, 7, 9, 13, 22, 23, 26, 27, 28, 31, 32, 33, 34, 49, 53, 55, 56, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 79, 81, 84, 85, 86, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 133, 137, 139, 146, 152, 153, 155, 157, 158, 159, 161, 163, 167, 173, 176, 177, 178, 181, 183, 186, 190, 191, 193, 196, 200, 202, 203, 205, 206, 207, 208, 212, 213, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 262, 265, 266, 267, 268, 270, 271, 273, 275, 276, 278, 281, 283, 288, 289, 292, 293, 297, 299, 305, 307, 308, 309, 311, 312, 314, 319, 322, 323, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 413, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 451, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "include_attribut": 122, "include_debug": 461, "include_default": 204, "include_dev": 461, "include_dir": [456, 462], "include_doc": 461, "include_ex": 461, "include_extra": [386, 482, 483], "include_fil": 483, "include_hidden": [231, 483], "include_launch": 461, "include_lib": 461, "include_pip": 461, "include_queri": 407, "include_symbol": 461, "include_tcltk": 461, "include_test": 461, "include_tool": 461, "includepi": 475, "includesubdomain": 341, "inclus": [18, 34, 39, 42, 120, 160, 183, 212, 259, 265, 267, 270, 293, 308, 318, 319, 331, 343, 353, 382, 413, 426, 428, 430, 434, 436, 455, 469, 475, 480], "incom": [133, 213, 245, 262, 283, 338, 341, 412, 474, 475, 483], "incompar": 470, "incompat": [66, 80, 176, 184, 255, 259, 266, 267, 271, 288, 293, 299, 386, 436, 456, 462, 465, 467, 470, 474, 475, 476, 478, 480, 481, 482, 483], "incomplet": [31, 61, 64, 68, 79, 118, 146, 157, 158, 180, 183, 247, 261, 268, 314, 328, 358, 422, 465, 466, 469, 470, 474, 476, 477, 483], "incompleteread": 242, "incompletereaderror": [127, 136, 483], "inconsist": [63, 103, 190, 213, 292, 293, 337, 435, 463, 474, 479, 483], "inconveni": [85, 243, 255, 413], "incorpor": [73, 101, 106, 186, 267, 341, 394, 413, 426, 465, 467, 468, 469, 475, 481, 483], "incorrect": [13, 102, 106, 112, 157, 184, 193, 213, 225, 244, 247, 255, 267, 271, 292, 293, 348, 366, 386, 388, 390, 397, 411, 422, 428, 431, 463, 464, 465, 467, 470, 474, 475, 476, 477, 481, 482, 483], "incr_item": 35, "incrcount": 140, "increas": [5, 68, 76, 89, 94, 99, 101, 109, 120, 122, 158, 190, 191, 221, 247, 255, 259, 267, 270, 290, 293, 328, 340, 344, 352, 376, 382, 384, 388, 400, 412, 414, 428, 435, 456, 462, 464, 465, 468, 469, 476, 479, 480, 481, 482, 483], "incref": [35, 63, 483], "increment": [5, 33, 34, 42, 63, 68, 73, 76, 85, 94, 95, 102, 118, 119, 145, 186, 191, 207, 270, 283, 292, 293, 344, 365, 366, 369, 376, 386, 411, 413, 462, 464, 465, 466, 467, 469, 473, 475, 476, 483], "increment_lineno": [122, 483], "incrementaldecod": [14, 68, 145, 258, 467], "incrementalencod": [14, 68, 145, 467], "incrementalnewlinedecod": [258, 483], "incrementalpars": [68, 273], "incremented_item": 35, "incub": 261, "incur": [75, 186, 261, 426, 475], "inde": [42, 76, 137, 195, 341], "indefinit": [177, 183, 245, 261, 265, 269, 271, 333, 359, 469, 477, 478, 483], "indemn": 426, "indemnifi": 426, "indent": [68, 98, 106, 112, 120, 122, 167, 169, 193, 204, 213, 255, 262, 307, 321, 364, 367, 368, 375, 377, 378, 411, 413, 427, 431, 447, 462, 472, 474, 475, 476, 477, 482, 483], "indentationerror": [23, 68, 86, 213, 450, 462, 483], "indentedhelpformatt": 292, "indentlevel": 300, "independ": [2, 18, 22, 25, 33, 34, 45, 68, 73, 75, 84, 92, 94, 95, 100, 102, 160, 183, 186, 193, 201, 225, 226, 246, 261, 266, 267, 271, 343, 344, 352, 353, 354, 366, 369, 376, 378, 388, 399, 410, 413, 422, 430, 456, 462, 469, 476, 482, 483, 484], "indetermin": [186, 352, 376, 400, 408], "index": [7, 13, 34, 35, 38, 47, 54, 59, 60, 63, 64, 68, 79, 80, 84, 87, 94, 95, 99, 102, 106, 111, 115, 116, 121, 122, 141, 142, 144, 147, 151, 155, 160, 161, 176, 191, 192, 196, 205, 209, 211, 213, 225, 230, 233, 236, 242, 245, 254, 255, 261, 262, 268, 278, 281, 283, 284, 291, 293, 296, 299, 313, 314, 319, 320, 322, 337, 339, 340, 342, 344, 345, 352, 359, 361, 365, 366, 368, 376, 381, 382, 394, 405, 407, 410, 413, 422, 427, 428, 430, 436, 440, 442, 449, 453, 454, 459, 462, 464, 466, 468, 469, 470, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "index_pag": [245, 483], "index_size_err": 410, "index_str": 345, "indexerror": [23, 37, 38, 47, 60, 158, 160, 176, 196, 213, 236, 283, 299, 318, 319, 344, 345, 381, 389, 428, 430, 436, 442, 449, 450, 462, 475, 483], "indexof": [291, 482, 483], "indexsizeerr": 410, "indian": 384, "indic": [5, 7, 31, 32, 33, 41, 42, 49, 54, 56, 58, 59, 61, 63, 64, 68, 73, 75, 76, 84, 85, 99, 101, 102, 103, 106, 109, 110, 117, 120, 122, 137, 139, 151, 155, 157, 158, 167, 169, 173, 176, 177, 183, 186, 189, 191, 196, 202, 203, 205, 208, 209, 213, 223, 225, 226, 228, 234, 235, 241, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 266, 267, 268, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 303, 305, 307, 308, 311, 314, 318, 319, 328, 329, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 358, 361, 362, 365, 366, 369, 376, 377, 381, 386, 388, 394, 395, 399, 400, 405, 406, 408, 410, 413, 419, 422, 426, 427, 428, 430, 431, 432, 435, 436, 443, 449, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "indiffer": 462, "indifferenti": 235, "indirect": [28, 49, 58, 61, 64, 73, 85, 93, 176, 213, 250, 255, 293, 307, 314, 352, 426, 428, 429, 430, 432, 470, 477, 480, 481, 483], "indistinguish": [283, 308], "individu": [5, 13, 42, 45, 58, 61, 63, 92, 94, 99, 100, 101, 102, 106, 112, 117, 120, 158, 177, 184, 186, 190, 191, 193, 196, 203, 206, 230, 248, 249, 261, 267, 271, 281, 282, 283, 293, 313, 319, 332, 336, 344, 345, 353, 356, 358, 359, 364, 366, 369, 376, 384, 386, 388, 394, 400, 408, 413, 419, 420, 422, 426, 428, 432, 434, 436, 440, 455, 463, 466, 467, 469, 471, 476, 477, 482, 483], "induc": [308, 425], "industri": 426, "ineffect": [139, 477], "ineffici": [85, 258, 293, 353, 382, 474, 478, 483], "inequ": [109, 186, 195, 202, 388, 430, 468, 475], "inet": [107, 337, 483], "inet_aton": [337, 481, 482, 483], "inet_ntoa": 337, "inet_ntop": [337, 477], "inet_pton": [126, 259, 337, 477, 481, 482, 483], "inet_pton6_zon": 483, "inexact": [186, 293, 476], "inf": [25, 121, 154, 186, 225, 262, 275, 344, 345, 352, 468, 469, 473, 475, 478, 479, 483], "infd": [332, 481], "infer": [120, 161, 193, 225, 226, 268, 283, 302, 366, 381, 386, 479, 483], "infer_vari": 386, "infil": [120, 122, 140, 191, 262, 301, 331, 380, 452, 471, 475, 483], "infin": [25, 106, 186, 225, 262, 275, 345, 352, 466, 468, 475, 483], "infinit": [22, 27, 45, 61, 68, 85, 95, 106, 138, 158, 186, 248, 261, 283, 285, 293, 299, 319, 320, 352, 388, 428, 462, 466, 468, 476, 483], "infinite_recurs": 483, "infinite_stream": 386, "infinitesim": 283, "infix": 68, "infj": [154, 479, 483], "inflategethead": 483, "inflex": [477, 478], "influenc": [7, 299, 337, 455, 468, 483], "info": [20, 23, 63, 68, 73, 84, 93, 96, 101, 102, 120, 125, 137, 152, 158, 169, 183, 191, 225, 227, 230, 242, 243, 251, 255, 267, 268, 269, 271, 283, 288, 302, 303, 307, 332, 349, 358, 369, 373, 384, 386, 388, 395, 421, 422, 430, 452, 459, 463, 465, 467, 468, 469, 474, 475, 477, 481, 483], "info_fp": 102, "info_patchlevel": [473, 483], "infolist": 422, "inform": [5, 7, 11, 16, 23, 25, 28, 33, 34, 42, 45, 51, 58, 60, 63, 64, 66, 68, 72, 73, 75, 77, 80, 85, 86, 89, 93, 95, 96, 99, 101, 106, 109, 110, 112, 115, 118, 120, 123, 133, 144, 151, 152, 158, 163, 169, 176, 177, 181, 183, 186, 190, 191, 193, 195, 196, 197, 201, 203, 205, 207, 209, 213, 215, 216, 223, 225, 226, 228, 233, 235, 240, 242, 243, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 278, 283, 288, 292, 299, 302, 305, 307, 308, 311, 312, 313, 314, 319, 320, 321, 322, 328, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 347, 348, 352, 355, 358, 361, 362, 365, 366, 369, 375, 376, 380, 381, 382, 384, 386, 388, 394, 395, 399, 405, 407, 410, 411, 412, 413, 414, 415, 416, 422, 423, 425, 426, 427, 428, 429, 431, 432, 434, 435, 436, 443, 448, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "infrastructur": [102, 158, 341, 400, 468, 469, 477, 480, 483], "infrequ": [338, 483], "infring": 426, "ing": [64, 79, 106, 193, 243, 469, 473, 476, 480, 483], "ingebretson": 483, "inglesbi": 483, "ingredi": 340, "ingrid": 483, "inher": [120, 365, 413, 483], "inherit": [5, 28, 34, 61, 63, 68, 75, 76, 85, 93, 94, 100, 103, 116, 118, 120, 128, 139, 155, 158, 161, 169, 176, 177, 181, 183, 199, 213, 221, 222, 225, 234, 235, 247, 250, 255, 258, 259, 269, 271, 283, 292, 299, 328, 337, 338, 341, 342, 348, 362, 365, 369, 376, 378, 386, 410, 414, 415, 416, 427, 428, 430, 445, 461, 462, 465, 467, 468, 470, 474, 476, 478, 480, 481, 482, 483], "inhibit": [176, 250, 314], "ini": [68, 217, 331, 458, 475, 483], "init": [33, 45, 63, 68, 73, 86, 142, 176, 203, 250, 276, 293, 296, 308, 315, 363, 375, 386, 467, 468, 483], "init_builtin": 474, "init_by_array": 426, "init_color": [177, 472], "init_databas": [281, 483], "init_delay": 362, "init_frozen": 483, "init_genrand": 426, "init_glob": 324, "init_histori": 320, "init_key": 426, "init_lett": 467, "init_or_s": 176, "init_pair": [92, 177, 472], "init_python": 34, "init_sourc": 362, "initarg": [166, 283, 480], "initfp": 483, "initfunc": 31, "initfunc_nam": 71, "initgroup": [293, 469], "initi": [5, 13, 16, 18, 22, 23, 24, 27, 28, 31, 32, 35, 42, 49, 51, 58, 59, 60, 61, 63, 66, 68, 69, 71, 72, 74, 76, 79, 85, 86, 92, 93, 95, 100, 101, 102, 109, 114, 115, 120, 121, 135, 139, 141, 142, 146, 155, 158, 166, 167, 175, 176, 177, 181, 186, 189, 190, 191, 193, 195, 202, 203, 206, 213, 226, 230, 234, 235, 243, 247, 248, 250, 254, 258, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 280, 281, 283, 288, 292, 293, 299, 301, 305, 308, 314, 320, 321, 331, 334, 335, 337, 338, 340, 341, 344, 348, 352, 356, 359, 365, 366, 369, 376, 384, 385, 388, 395, 400, 413, 419, 425, 426, 427, 428, 431, 432, 435, 436, 450, 455, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 482, 483], "initial_byt": 258, "initial_ind": 364, "initial_response_ok": [335, 483], "initial_valu": [95, 258], "initialdata": 160, "initialdir": 189, "initialfil": 189, "initialis": [102, 243, 269, 324, 352, 428, 455, 477, 479, 483], "initialz": 483, "initleo": 86, "initleoc": 86, "initlog": 441, "initmodul": 33, "initmyappc": 86, "initproc": [57, 63, 75, 76], "initscr": [92, 177], "initsig": 33, "initspam": 77, "inittab_copi": 483, "initv": 293, "initvar": [181, 483], "inject": [102, 137, 267, 272, 331, 340, 348, 358, 455, 467, 472, 478, 483], "injectingfilt": 102, "inlin": [35, 52, 58, 60, 64, 68, 87, 167, 190, 191, 196, 197, 203, 205, 237, 308, 319, 379, 388, 456, 465, 467, 472, 473, 475, 479, 481, 483], "inline_comment_prefix": 167, "inlinefunctionexpans": 483, "inner": [160, 169, 191, 235, 237, 255, 319, 340, 344, 384, 386, 413, 427, 429, 466, 469, 475, 476, 483], "inner_s": 235, "inner_stack": 169, "inner_word": 319, "innermost": [169, 193, 314, 352, 386, 430, 477, 483], "innocu": [103, 465], "innodb": 167, "inod": [269, 293, 342, 483], "inoffens": 299, "inord": [95, 464, 465], "inplac": [218, 483], "inplace_": [473, 483], "inproduct": 386, "input": [5, 9, 34, 63, 64, 66, 68, 73, 75, 79, 84, 85, 92, 93, 95, 99, 101, 108, 109, 110, 112, 114, 118, 120, 133, 137, 141, 142, 143, 146, 149, 151, 155, 157, 158, 159, 160, 167, 169, 173, 176, 183, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 203, 207, 208, 209, 213, 218, 221, 222, 225, 229, 234, 235, 244, 245, 247, 254, 258, 261, 262, 264, 267, 269, 270, 271, 275, 283, 292, 293, 295, 297, 301, 302, 307, 309, 311, 314, 317, 319, 320, 322, 328, 331, 335, 337, 340, 341, 343, 344, 348, 352, 354, 359, 361, 362, 364, 366, 369, 375, 376, 377, 381, 383, 394, 395, 397, 407, 408, 411, 412, 413, 414, 415, 416, 417, 421, 427, 428, 429, 430, 431, 432, 434, 435, 441, 443, 450, 452, 455, 456, 462, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483], "input_charset": [195, 196], "input_codec": 195, "input_data": 343, "inputdata": 141, "inputfil": 413, "inputon": 375, "inputrc": [320, 483], "inputsourc": [68, 273, 414, 415, 417, 478, 483], "inputstream": [407, 483], "inquir": [376, 478], "inquiri": [28, 45, 57, 63, 75, 76, 388], "inrat": 141, "ins": [63, 94, 95, 462, 464, 465, 466, 483], "insch": 177, "inscrib": 384, "insdelln": 177, "insec": 364, "insecur": [235, 330, 340, 341, 467, 474, 475, 483], "insenit": 461, "insensit": [68, 106, 109, 158, 167, 196, 205, 244, 245, 250, 276, 319, 334, 340, 345, 346, 358, 362, 400, 455, 461, 466, 468, 480, 483, 484], "insert": [22, 31, 33, 34, 38, 60, 68, 72, 73, 80, 95, 109, 112, 120, 121, 146, 147, 151, 160, 161, 167, 177, 181, 190, 193, 208, 225, 226, 247, 250, 258, 267, 270, 281, 284, 292, 297, 299, 307, 320, 340, 344, 345, 347, 352, 376, 385, 400, 410, 413, 423, 428, 430, 432, 436, 442, 455, 460, 462, 465, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 483], "insert_com": 413, "insert_mod": 468, "insert_pi": 413, "insert_text": [320, 323], "insertbefor": [410, 462], "insertln": 177, "insid": [5, 7, 11, 33, 42, 63, 68, 76, 85, 92, 95, 100, 106, 113, 114, 135, 144, 169, 177, 186, 193, 196, 199, 205, 225, 226, 251, 252, 258, 262, 281, 283, 297, 299, 302, 319, 332, 333, 337, 345, 352, 358, 369, 375, 376, 384, 386, 388, 413, 420, 422, 423, 427, 428, 429, 430, 435, 449, 461, 463, 464, 465, 466, 467, 468, 470, 473, 474, 475, 477, 479, 480, 481, 483], "insight": 63, "insignific": [345, 483], "insist": [84, 309, 369], "insnstr": 177, "insofar": [271, 436], "insort": [147, 452, 483], "insort_left": [147, 483], "insort_right": 147, "inspect": [13, 22, 27, 33, 34, 66, 68, 73, 76, 87, 88, 102, 120, 122, 129, 139, 156, 161, 181, 193, 225, 235, 250, 251, 254, 259, 267, 271, 297, 302, 307, 313, 315, 332, 333, 334, 341, 344, 352, 358, 362, 371, 382, 386, 388, 389, 395, 422, 427, 428, 455, 462, 463, 464, 468, 469, 483], "inspectload": [250, 477, 478, 483], "inspector": 375, "inspir": [109, 167, 200, 261, 426, 427, 462, 463, 465, 468, 475, 476, 483], "insstr": 177, "inst": [49, 93, 436, 443], "inst_nam": 468, "instabl": 470, "instal": [31, 33, 34, 35, 42, 68, 72, 76, 79, 84, 85, 92, 96, 98, 102, 110, 111, 112, 132, 135, 144, 163, 184, 192, 212, 214, 230, 235, 247, 250, 251, 254, 261, 267, 269, 276, 311, 315, 320, 333, 334, 340, 341, 344, 348, 350, 352, 354, 361, 369, 375, 382, 384, 388, 395, 399, 400, 405, 421, 426, 432, 453, 455, 456, 458, 460, 463, 464, 465, 467, 468, 469, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "install_misc": [480, 483], "install_open": [110, 395], "install_pip": 399, "install_script": 399, "install_setuptool": 399, "install_signal_handl": [34, 472, 483], "install_sw": 460, "installallus": 461, "installdir": [451, 456], "installermast": 464, "installexecutesequ": 281, "installhandl": 388, "installlauncherallus": 461, "installuisequ": 281, "instanc": [6, 9, 13, 16, 20, 23, 25, 28, 31, 33, 39, 42, 43, 45, 47, 49, 53, 55, 58, 60, 61, 63, 64, 68, 71, 73, 75, 76, 78, 89, 92, 95, 96, 100, 101, 102, 103, 106, 108, 110, 117, 120, 128, 132, 133, 135, 136, 137, 139, 144, 149, 151, 153, 155, 157, 158, 159, 161, 167, 169, 172, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 199, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 216, 218, 221, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 261, 262, 267, 268, 269, 270, 271, 281, 283, 284, 285, 288, 292, 293, 296, 297, 298, 305, 307, 308, 312, 314, 318, 319, 321, 323, 325, 329, 330, 331, 332, 335, 337, 338, 340, 341, 347, 348, 352, 355, 358, 359, 362, 364, 365, 369, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 400, 403, 406, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 422, 423, 425, 427, 429, 430, 435, 436, 440, 443, 453, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "instancemethod": 96, "instant": [42, 68, 92, 185, 293, 384], "instanti": [23, 63, 76, 94, 100, 101, 102, 110, 132, 133, 139, 151, 153, 155, 160, 176, 177, 181, 183, 190, 194, 196, 203, 230, 242, 245, 248, 250, 267, 268, 269, 271, 283, 292, 296, 297, 299, 328, 329, 331, 335, 337, 338, 344, 362, 369, 376, 385, 386, 388, 389, 403, 408, 410, 411, 414, 416, 428, 436, 440, 443, 467, 468, 474, 475, 478, 480, 481, 482, 483], "instat": 376, "instead": [5, 7, 13, 17, 18, 22, 23, 28, 31, 33, 34, 42, 45, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 109, 110, 120, 123, 128, 133, 139, 146, 149, 151, 152, 157, 158, 159, 161, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 196, 197, 200, 201, 202, 203, 205, 207, 208, 209, 213, 225, 226, 228, 230, 234, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 261, 262, 266, 267, 269, 270, 271, 275, 283, 288, 292, 293, 297, 299, 302, 307, 308, 311, 312, 313, 314, 319, 320, 321, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 359, 362, 365, 369, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 410, 411, 412, 413, 415, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "institut": 426, "instr": [177, 191, 362, 456, 477, 483], "instream": 331, "instruct": [7, 13, 26, 68, 77, 84, 95, 96, 151, 186, 193, 240, 255, 264, 292, 293, 308, 314, 333, 340, 353, 388, 410, 413, 415, 428, 430, 455, 462, 467, 469, 473, 474, 475, 477, 481, 482, 483], "instruction_offset": 353, "instrument": [191, 226, 308, 456, 475, 479, 483], "instrumented_call_function_ex": 483, "insuffici": [31, 161, 186, 193, 212, 252, 283, 293, 479], "insufficient_storag": 241, "insul": 33, "insuper": 106, "int": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 79, 84, 87, 88, 89, 93, 94, 96, 98, 99, 100, 101, 102, 106, 112, 113, 114, 120, 121, 122, 127, 139, 140, 155, 160, 166, 167, 170, 176, 181, 183, 184, 186, 190, 193, 211, 213, 221, 223, 225, 226, 236, 240, 248, 254, 255, 258, 259, 261, 262, 267, 275, 281, 284, 289, 291, 292, 293, 295, 299, 304, 306, 316, 318, 319, 326, 328, 337, 340, 343, 345, 347, 351, 352, 353, 358, 366, 367, 378, 379, 382, 384, 385, 386, 388, 389, 398, 402, 405, 407, 410, 411, 412, 413, 419, 427, 428, 429, 430, 440, 441, 443, 446, 449, 450, 451, 455, 456, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "int2ap": 248, "int64": 284, "int64_t": 33, "int_array_2d": 386, "int_curr_symbol": 266, "int_field": 479, "int_frac_digit": 266, "int_info": [34, 344, 352, 450, 456, 471], "int_max": [18, 483], "int_max_str_digit": [34, 344, 352, 455, 483], "int_min": 483, "int_or_str": 386, "intabl": 483, "intact": [42, 102, 167, 183, 203, 205, 208, 218, 269, 466], "intarray5": 176, "intconversiondescriptor": 181, "integ": [5, 7, 9, 22, 23, 33, 34, 35, 39, 41, 42, 45, 47, 49, 56, 61, 63, 64, 66, 68, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 99, 102, 106, 109, 110, 115, 117, 120, 133, 138, 141, 149, 151, 158, 167, 173, 176, 177, 178, 183, 186, 193, 203, 212, 213, 215, 218, 221, 225, 233, 234, 243, 245, 248, 250, 254, 256, 258, 266, 267, 268, 269, 270, 275, 278, 281, 283, 288, 289, 292, 293, 299, 304, 305, 307, 308, 314, 318, 319, 320, 321, 322, 328, 329, 332, 337, 338, 339, 340, 341, 345, 347, 348, 349, 352, 353, 361, 362, 365, 366, 369, 376, 379, 384, 387, 394, 400, 405, 408, 410, 411, 413, 419, 422, 427, 428, 430, 436, 441, 443, 451, 455, 456, 462, 463, 465, 467, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "integr": [66, 68, 73, 87, 102, 115, 118, 186, 193, 221, 225, 247, 270, 275, 289, 319, 338, 340, 344, 347, 365, 369, 388, 390, 430, 457, 461, 462, 465, 466, 468, 470, 475, 476, 480, 481, 482, 483], "integrityerror": 340, "intel": [33, 86, 141, 295, 308, 347, 456, 459, 467, 469, 478, 479, 481, 482, 483], "intel64": [355, 483], "intellectu": 426, "intellig": [292, 295, 297], "intend": [23, 31, 33, 34, 42, 45, 61, 64, 72, 73, 75, 84, 95, 101, 102, 103, 106, 110, 115, 139, 151, 158, 169, 184, 191, 193, 201, 208, 213, 226, 244, 245, 247, 251, 255, 259, 267, 269, 270, 271, 275, 288, 293, 299, 302, 307, 334, 337, 341, 344, 345, 347, 348, 352, 353, 358, 365, 376, 380, 384, 386, 388, 394, 395, 400, 411, 422, 425, 427, 428, 430, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 477, 478, 479, 480, 481, 483], "intens": [87, 177, 270, 293, 476, 483], "intent": [23, 31, 72, 73, 102, 181, 183, 196, 205, 247, 288, 293, 348, 352, 386, 388, 389, 407, 419, 426, 427, 428, 465, 466, 468, 470, 476, 477, 483], "intenum": [68, 211, 241, 333, 337, 341, 344, 479, 483], "inter": [13, 190, 257, 260, 333, 386, 483], "interact": [23, 33, 34, 42, 59, 63, 66, 68, 72, 79, 84, 85, 87, 93, 102, 106, 115, 120, 122, 144, 155, 166, 177, 180, 186, 191, 193, 194, 207, 213, 214, 218, 225, 243, 247, 255, 257, 283, 284, 292, 293, 295, 297, 307, 308, 313, 315, 320, 323, 334, 341, 348, 352, 354, 358, 359, 369, 375, 376, 381, 384, 388, 395, 400, 413, 420, 422, 428, 431, 432, 434, 435, 436, 448, 455, 461, 464, 465, 466, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "interactive_rul": 431, "interactiveconsol": [157, 320], "interactiveinterpret": [157, 478, 483], "intercept": [42, 102, 139, 343, 352, 479, 483], "interchang": [30, 68, 102, 117, 153, 183, 184, 186, 213, 235, 267, 336, 344, 347, 369, 386, 428, 435, 462, 468, 475, 476], "interdum": 149, "interest": [22, 63, 68, 72, 73, 75, 77, 84, 85, 93, 94, 95, 101, 102, 106, 109, 120, 151, 153, 167, 183, 190, 193, 194, 200, 207, 215, 216, 247, 261, 267, 271, 273, 276, 292, 297, 308, 314, 319, 328, 353, 365, 386, 388, 400, 415, 428, 434, 436, 462, 463, 464, 465, 467, 469, 483], "interf": [186, 283, 353, 430, 477], "interfac": [5, 7, 28, 31, 32, 33, 43, 51, 57, 59, 63, 64, 66, 68, 72, 73, 75, 80, 84, 85, 92, 93, 95, 101, 102, 106, 109, 110, 118, 119, 120, 132, 133, 149, 153, 155, 158, 161, 167, 169, 170, 173, 176, 177, 180, 184, 185, 187, 189, 193, 194, 196, 197, 203, 204, 205, 206, 207, 212, 214, 215, 218, 222, 228, 230, 233, 234, 235, 242, 243, 245, 247, 250, 251, 252, 253, 254, 255, 256, 258, 261, 262, 264, 266, 267, 270, 271, 273, 276, 281, 283, 292, 295, 297, 299, 302, 304, 305, 308, 312, 314, 315, 325, 328, 330, 333, 335, 337, 338, 339, 340, 341, 344, 348, 352, 356, 361, 362, 363, 365, 366, 369, 375, 378, 381, 384, 394, 397, 398, 400, 403, 410, 411, 413, 414, 415, 417, 426, 428, 432, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 482, 483, 484], "interfaceerror": [340, 473, 483], "interfer": [101, 132, 167, 226, 266, 297, 483], "interior": [376, 384, 463, 464], "interleav": [102, 126, 136, 193, 283, 469, 475, 480, 481, 483], "interlin": 190, "intermedi": [7, 84, 87, 95, 186, 191, 206, 226, 250, 261, 275, 292, 293, 332, 341, 432, 467, 471, 475, 480, 483], "intermezzo": [68, 74], "intermitt": [478, 483], "intermix": [68, 118, 228, 480, 483], "intern": [7, 9, 10, 11, 13, 16, 22, 23, 31, 33, 34, 41, 42, 45, 55, 59, 61, 63, 64, 68, 73, 75, 76, 84, 92, 93, 95, 97, 101, 102, 106, 109, 110, 112, 118, 120, 128, 135, 136, 139, 149, 154, 155, 157, 158, 161, 167, 176, 181, 183, 184, 186, 191, 193, 199, 204, 207, 208, 213, 235, 243, 245, 247, 250, 255, 258, 265, 266, 267, 269, 270, 274, 276, 278, 283, 293, 297, 299, 302, 307, 308, 314, 322, 328, 331, 332, 333, 337, 340, 341, 346, 347, 348, 352, 358, 359, 362, 365, 366, 369, 375, 376, 381, 384, 386, 388, 395, 400, 410, 411, 413, 415, 419, 422, 423, 429, 430, 450, 456, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "internal_attr": 422, "internal_server_error": 241, "internald": [106, 248], "internaldate2tupl": 248, "internalerror": 340, "internalsubset": 410, "internation": [68, 89, 109, 145, 202, 246, 282, 335, 341, 346, 366, 435, 462, 465, 466, 478, 480, 483], "internet": [68, 99, 110, 194, 235, 240, 243, 247, 254, 272, 335, 337, 338, 341, 346, 362, 366, 394, 395, 426, 441, 461, 462, 463, 465, 472, 475, 477, 483], "internet_timeout": [362, 483], "interop": 483, "interoper": [68, 94, 102, 126, 141, 208, 245, 259, 285, 299, 318, 341, 344, 422, 428, 446, 471, 475, 477, 483], "interp": [33, 369, 483], "interpol": [68, 217, 343, 344, 430, 446, 475, 478, 479, 483], "interpolationdeptherror": 167, "interpolationerror": 167, "interpolationmissingoptionerror": [167, 483], "interpolationsyntaxerror": 167, "interpos": 104, "interposit": [456, 472, 483], "interpret": [5, 7, 13, 23, 24, 26, 27, 28, 31, 32, 34, 39, 42, 45, 47, 49, 51, 53, 58, 59, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 87, 93, 95, 96, 101, 102, 106, 109, 112, 115, 120, 122, 151, 152, 155, 163, 166, 167, 175, 176, 177, 180, 182, 183, 184, 186, 190, 191, 192, 193, 197, 203, 207, 209, 210, 213, 225, 227, 235, 245, 247, 248, 250, 251, 259, 261, 262, 266, 267, 268, 278, 281, 283, 292, 293, 297, 299, 307, 308, 309, 311, 313, 314, 315, 319, 320, 324, 328, 330, 331, 333, 334, 335, 337, 340, 342, 344, 347, 348, 352, 355, 356, 361, 362, 365, 366, 369, 375, 376, 381, 386, 388, 395, 399, 400, 402, 403, 406, 410, 413, 426, 427, 428, 429, 430, 432, 434, 435, 436, 442, 449, 455, 456, 461, 462, 463, 464, 465, 466, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483], "interpreter_requires_environ": 362, "interpreterid": 483, "interpreteridobject": 483, "interprocess": [68, 133, 254, 283, 337], "interrog": [102, 205], "interrupt": [23, 33, 68, 96, 102, 115, 119, 126, 139, 151, 177, 178, 186, 191, 212, 213, 247, 271, 283, 293, 328, 329, 333, 337, 338, 340, 348, 359, 365, 366, 388, 395, 406, 420, 426, 428, 441, 468, 469, 475, 478, 481, 482, 483], "interrupt_main": [115, 472, 483], "interrupt_read": 333, "interrupt_writ": 333, "interruptederror": [23, 212, 213, 225, 293, 328, 333, 337, 450, 476, 478, 483], "intersect": [160, 344, 384, 428, 465, 466, 468, 469, 483], "intersection_upd": [344, 465, 468], "interspers": [102, 225, 292], "interstiti": 477, "interv": [95, 101, 177, 183, 247, 269, 293, 308, 318, 333, 343, 352, 362, 365, 366, 376, 384, 466, 468, 475, 479, 481, 483], "interven": [73, 102, 190, 193, 204, 476], "intervent": [93, 369, 425], "intfield": 479, "intflag": [68, 211, 255, 319, 341, 344, 479, 483], "intfunc": [386, 474], "intmax_t": [64, 474, 483], "into": [5, 9, 13, 22, 23, 25, 26, 31, 33, 34, 41, 49, 55, 58, 59, 61, 63, 64, 68, 72, 73, 76, 79, 84, 85, 92, 93, 94, 99, 101, 106, 109, 112, 120, 133, 134, 137, 138, 139, 141, 144, 146, 149, 151, 153, 157, 158, 160, 163, 167, 169, 176, 177, 181, 183, 186, 187, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 209, 213, 214, 215, 222, 223, 225, 226, 230, 242, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 276, 278, 281, 282, 283, 284, 292, 293, 295, 297, 298, 299, 305, 307, 308, 309, 311, 312, 314, 319, 320, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 358, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 388, 394, 395, 397, 399, 400, 405, 408, 410, 411, 412, 413, 415, 417, 419, 421, 422, 427, 428, 430, 432, 435, 436, 452, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "intoler": 109, "intorstrsequ": 474, "intr": 177, "intr_flag": 483, "intra": 190, "intralin": 190, "intransact": 483, "intricaci": 292, "intrins": [167, 191, 299, 428, 471, 483], "intrinsic2": 191, "intrinsic_1_invalid": 191, "intrinsic_2_invalid": 191, "intrinsic_async_gen_wrap": 191, "intrinsic_import_star": 191, "intrinsic_list_to_tupl": 191, "intrinsic_paramspec": 191, "intrinsic_prep_reraise_star": 191, "intrinsic_print": 191, "intrinsic_set_function_type_param": 191, "intrinsic_stopiteration_error": 191, "intrinsic_subscript_gener": 191, "intrinsic_typealia": 191, "intrinsic_typevar": 191, "intrinsic_typevar_with_bound": 191, "intrinsic_typevar_with_constraint": 191, "intrinsic_typevartupl": 191, "intrinsic_unary_posit": 191, "intro": [155, 469], "introduc": [33, 34, 45, 73, 85, 95, 100, 101, 102, 103, 106, 139, 183, 213, 235, 243, 250, 251, 269, 271, 275, 283, 292, 299, 305, 308, 314, 341, 344, 347, 351, 352, 369, 375, 376, 384, 385, 386, 394, 414, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "introduct": [68, 76, 92, 95, 99, 120, 133, 185, 193, 259, 283, 337, 341, 462, 463, 464, 466, 477, 479, 483], "introductori": [109, 337, 384, 467], "introspect": [17, 68, 75, 85, 87, 93, 96, 170, 187, 191, 226, 250, 299, 315, 340, 369, 385, 389, 419, 420, 428, 432, 470, 472, 473, 474, 475, 476, 477, 478, 483], "intrud": 420, "inttyp": [279, 483], "intuit": [99, 100, 101, 103, 106, 151, 186, 190, 261, 375, 430, 462, 463, 464, 477], "intvar": [369, 483], "inu": 297, "inuse_attribute_err": 410, "inuseattributeerr": 410, "inv": [291, 478], "inv_bas": 225, "inv_cdf": [343, 483], "invalid": [23, 28, 34, 59, 61, 63, 64, 68, 73, 79, 85, 87, 89, 93, 94, 99, 100, 101, 106, 109, 110, 115, 118, 146, 157, 159, 160, 163, 176, 183, 186, 196, 199, 201, 203, 205, 208, 209, 211, 212, 213, 216, 226, 230, 234, 242, 244, 247, 250, 255, 258, 266, 268, 271, 275, 283, 292, 293, 295, 299, 309, 311, 319, 322, 328, 329, 333, 337, 340, 341, 344, 345, 348, 358, 362, 365, 366, 376, 378, 386, 388, 394, 400, 405, 410, 419, 425, 427, 428, 431, 436, 441, 443, 449, 455, 462, 468, 469, 470, 471, 472, 474, 476, 477, 478, 479, 480, 481, 482, 483], "invalid_": 431, "invalid_access_err": 410, "invalid_ann_assign_target": 431, "invalid_argu": 431, "invalid_as_pattern": 431, "invalid_assign": 431, "invalid_block": 431, "invalid_case_block": 431, "invalid_character_err": 410, "invalid_class_argument_pattern": 431, "invalid_class_def_raw": 431, "invalid_class_pattern": 431, "invalid_comprehens": 431, "invalid_conversion_charact": 431, "invalid_def_raw": 431, "invalid_default": 431, "invalid_del_stmt": 431, "invalid_dict_comprehens": 431, "invalid_double_starred_kvpair": 431, "invalid_double_type_com": 431, "invalid_elif_stmt": 431, "invalid_else_stmt": 431, "invalid_except_star_stmt_ind": 431, "invalid_except_stmt": 431, "invalid_except_stmt_ind": 431, "invalid_express": 431, "invalid_finally_stmt": 431, "invalid_for_stmt": 431, "invalid_for_target": 431, "invalid_group": 431, "invalid_if_stmt": 431, "invalid_import": 431, "invalid_import_from_target": 431, "invalid_kvpair": 431, "invalid_kwarg": 431, "invalid_kwd": 431, "invalid_lambda_kwd": 431, "invalid_lambda_paramet": 431, "invalid_lambda_parameters_help": 431, "invalid_lambda_star_etc": 431, "invalid_legacy_express": 431, "invalid_match_stmt": 431, "invalid_modification_err": 410, "invalid_named_express": 431, "invalid_paramet": 431, "invalid_parameters_help": 431, "invalid_replacement_field": 431, "invalid_star_etc": 431, "invalid_starred_express": 431, "invalid_state_err": 410, "invalid_try_stmt": 431, "invalid_while_stmt": 431, "invalid_with_item": 431, "invalid_with_stmt": 431, "invalid_with_stmt_ind": 431, "invalidaccesserr": 410, "invalidate_cach": [250, 423, 472, 476, 480, 483], "invalidation_mod": [163, 311, 480, 483], "invalidbase64charactersdefect": [196, 199], "invalidbase64lengthdefect": 199, "invalidbase64paddingdefect": [196, 199], "invalidcharactererr": 410, "invaliddatedefect": 199, "invalidfileexcept": [304, 483], "invalidheaderdefect": 483, "invalidheadererror": 483, "invalidmessageid": 483, "invalidmodificationerr": 410, "invalidoper": [186, 466, 468, 469, 476], "invalidstateerr": 410, "invalidstateerror": [127, 129, 139, 166, 483], "invalidtzpathwarn": [425, 483], "invalidurl": [242, 483], "invalu": [193, 319], "invari": [85, 94, 95, 186, 196, 299, 386, 430, 432, 483], "invent": [103, 158, 271, 365, 434, 465, 469], "inventor": 271, "inventori": [160, 181, 291], "inventoryitem": 181, "invers": [146, 183, 186, 201, 209, 211, 225, 244, 259, 275, 291, 299, 331, 340, 343, 344, 366, 430, 431, 468, 474, 481, 483], "invert": [34, 93, 94, 95, 122, 158, 186, 191, 211, 291, 428, 430, 431, 473, 483], "invest": 101, "investig": [101, 344], "invis": [92, 158, 177, 179, 384, 469, 471, 483], "invit": 477, "invmod": 344, "invoc": [23, 28, 56, 68, 73, 164, 169, 176, 274, 283, 308, 365, 381, 388, 415, 427, 428, 440, 455, 466, 475, 477, 481, 483], "invoic": 468, "invok": [5, 13, 23, 27, 31, 58, 59, 63, 64, 68, 75, 84, 85, 93, 95, 99, 102, 103, 106, 109, 120, 144, 151, 155, 167, 169, 176, 181, 183, 191, 193, 225, 226, 243, 245, 247, 255, 266, 267, 268, 283, 292, 293, 297, 299, 302, 308, 311, 313, 320, 324, 332, 335, 338, 340, 341, 344, 348, 352, 359, 362, 365, 369, 371, 376, 377, 380, 386, 388, 394, 402, 413, 414, 415, 416, 419, 420, 422, 423, 425, 427, 429, 432, 435, 437, 451, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 476, 477, 478, 480, 482, 483], "involuntari": 322, "involv": [28, 42, 45, 63, 73, 76, 100, 103, 167, 169, 177, 186, 193, 213, 226, 243, 283, 292, 299, 308, 332, 340, 341, 344, 347, 362, 381, 395, 412, 428, 430, 431, 432, 436, 462, 469, 477, 478, 480, 481, 483], "inward": 186, "inwood": 483, "io": [24, 33, 34, 68, 71, 79, 85, 87, 118, 123, 124, 125, 126, 136, 139, 149, 158, 164, 169, 187, 188, 190, 196, 213, 215, 218, 219, 225, 234, 235, 242, 245, 250, 251, 253, 254, 262, 270, 271, 288, 293, 296, 299, 308, 309, 338, 341, 344, 348, 352, 358, 360, 362, 378, 379, 389, 399, 407, 411, 421, 422, 425, 426, 428, 467, 468, 469, 470, 471, 472, 473, 477, 479, 482, 483, 484], "io_modul": 472, "io_reparse_tag_": 293, "io_reparse_tag_appexeclink": [342, 483], "io_reparse_tag_mount_point": 342, "io_reparse_tag_symlink": 342, "iobas": [188, 190, 213, 215, 258, 378, 481, 483], "iobench": 469, "iobind": 483, "iocp": [126, 483], "iocpproactor": 483, "ioctl": [68, 121, 142, 254, 295, 337, 391, 466, 468, 479, 483], "ioctl_vm_sockets_get_local_cid": 337, "ioerror": [153, 190, 213, 215, 218, 225, 230, 243, 255, 258, 282, 283, 295, 332, 333, 423, 450, 468, 469, 470, 476], "ior": 291, "ios": 304, "iossupport": 483, "iot": [303, 483], "iotuap": 303, "ip": [68, 80, 101, 102, 126, 147, 243, 245, 256, 267, 269, 337, 338, 341, 359, 362, 394, 395, 462, 468, 475, 476, 478, 479, 480, 481, 482, 483], "ip6": [259, 478], "ip_": [337, 483], "ip_add_source_membership": 337, "ip_address": [99, 142, 259, 337], "ip_bind_address_no_port": 483, "ip_block_sourc": 337, "ip_drop_source_membership": 337, "ip_hdrincl": 337, "ip_interfac": [99, 259, 483], "ip_network": [99, 259], "ip_pktinfo": [337, 483], "ip_recvto": [337, 472, 483], "ip_str": 337, "ip_unblock_sourc": 337, "ipaddr": 259, "ipaddress": [68, 97, 254, 256, 481, 483], "ipaddrlist": 337, "ipadi": 369, "ipadx": 369, "ipc": [68, 123, 130, 133, 257, 337], "ipconfig": 483, "ipd266": [464, 465], "ipnetwork": 483, "ipo": 141, "ipow": 291, "ippolito": [467, 468, 469, 471], "ipport_": 337, "ipproto_": 337, "ipproto_ah": 483, "ipproto_cbt": 483, "ipproto_dstopt": 483, "ipproto_egp": 483, "ipproto_esp": 483, "ipproto_frag": 483, "ipproto_ggp": 483, "ipproto_hopopt": 483, "ipproto_iclfxbm": 483, "ipproto_icmpv6": 483, "ipproto_idp": 483, "ipproto_igmp": 483, "ipproto_igp": 483, "ipproto_ip": 337, "ipproto_ipv4": 483, "ipproto_ipv6": 483, "ipproto_l2tp": 483, "ipproto_max": 483, "ipproto_mptcp": [337, 472, 483], "ipproto_nd": 483, "ipproto_non": 483, "ipproto_pgm": 483, "ipproto_pim": 483, "ipproto_pup": 483, "ipproto_rdp": 483, "ipproto_rout": 483, "ipproto_sctp": 483, "ipproto_st": 483, "ipproto_tcp": 337, "ipproto_udplit": [337, 483], "ips": [102, 483], "ipv": [99, 483], "ipv4": [68, 99, 107, 126, 245, 254, 256, 337, 341, 468, 476, 479, 480, 481, 482, 483], "ipv4_map": 259, "ipv4address": [99, 259, 474, 478, 483], "ipv4interfac": [99, 259, 483], "ipv4network": [99, 259, 474, 478, 480, 483], "ipv6": [68, 99, 126, 245, 254, 256, 337, 341, 362, 394, 456, 464, 468, 469, 471, 475, 476, 478, 481, 482, 483], "ipv6_": 337, "ipv6_en": 362, "ipv6address": [99, 259, 474, 478, 482, 483], "ipv6interfac": [99, 259, 483], "ipv6network": [99, 259, 474, 478, 480, 483], "ipv6typ": 483, "ipvfutur": 483, "ipython": [447, 468, 472], "ipz": 344, "ir": 158, "irepeat": 112, "irit": [472, 473, 474, 483], "irix": [68, 470, 483], "irmen": 480, "iron": 100, "ironlanguag": 483, "ironpython": [84, 87, 94, 303, 434, 468, 483], "ironpython3": 483, "irreconcil": 483, "irrefut": 68, "irregular": 464, "irrelev": [292, 469, 483], "irrevoc": 426, "irrit": 465, "irshift": 291, "irv": [247, 442], "is": [5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 89, 93, 94, 95, 96, 99, 100, 102, 103, 106, 107, 108, 109, 110, 112, 114, 115, 116, 117, 120, 122, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 146, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 449, 451, 452, 453, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "is_": [95, 291], "is_64bit": 303, "is_absolut": [296, 483], "is_act": [132, 232], "is_al": [283, 365, 468, 482, 483], "is_android": [362, 483], "is_annot": 351, "is_assign": 351, "is_async": [122, 312, 483], "is_attach": [205, 483], "is_authent": [395, 483], "is_bitwise_or": 431, "is_block": 243, "is_block_devic": [296, 481, 483], "is_canon": [186, 469], "is_cgi": 483, "is_char_devic": [296, 481, 483], "is_character_junk": 190, "is_check_support": 270, "is_client_error": 241, "is_clos": [126, 130, 133, 136, 478, 479, 480, 483], "is_dataclass": [181, 483], "is_dataclass_inst": 181, "is_declared_glob": [351, 469], "is_dir": [250, 253, 293, 296, 422, 479, 481, 483], "is_en": 214, "is_even": [95, 419], "is_expir": 243, "is_fifo": [296, 481, 483], "is_fil": [250, 252, 253, 293, 296, 422, 478, 481, 483], "is_fin": [28, 33, 227, 352, 450, 478, 481, 482, 483], "is_finit": 186, "is_fork_ctx": 483, "is_fre": 351, "is_frozen": 477, "is_glob": [259, 351, 474, 477, 483], "is_goal": 452, "is_hop_by_hop": 407, "is_image_fil": 467, "is_import": 351, "is_infinit": 186, "is_inform": 241, "is_integ": [221, 344, 483], "is_jump_target": 191, "is_junct": [293, 296, 474, 483], "is_jython": 362, "is_line_junk": 190, "is_linetouch": 177, "is_link_loc": 259, "is_loc": 351, "is_loopback": [259, 483], "is_moon_ful": 292, "is_mount": [296, 480, 481, 483], "is_multicast": [259, 483], "is_multipart": [196, 199, 205, 207, 483], "is_namespac": 351, "is_nan": 186, "is_nest": 351, "is_nonloc": [351, 483], "is_norm": [186, 387, 481, 483], "is_not": [95, 291], "is_not_allow": 243, "is_odd": 261, "is_op": [191, 482, 483], "is_optim": 351, "is_packag": [31, 250, 423, 473, 483], "is_paramet": 351, "is_parameter_ent": 314, "is_prim": 166, "is_priv": [259, 474, 483], "is_python_build": [355, 469], "is_qnan": 186, "is_read": [130, 133, 480, 483], "is_redirect": 241, "is_referenc": 351, "is_relative_to": [296, 483], "is_reserv": [259, 296, 483], "is_resourc": [250, 252, 253, 473, 474], "is_resource_en": 362, "is_run": [126, 130], "is_saf": [398, 480, 483], "is_serv": [126, 480, 483], "is_server_error": 241, "is_set": [138, 365, 472, 483], "is_sign": 186, "is_site_loc": 259, "is_skipped_lin": 144, "is_snan": 186, "is_socket": [296, 481, 483], "is_stack_trampoline_act": [352, 474, 483], "is_str": 386, "is_str_list": 386, "is_subnorm": 186, "is_success": [241, 483], "is_symlink": [293, 296, 481, 483], "is_tarfil": [358, 483], "is_term_res": 177, "is_trac": 382, "is_track": [28, 227, 469], "is_typeddict": [386, 472, 483], "is_unspecifi": 259, "is_unverifi": [395, 477], "is_valid": [345, 473, 483], "is_valid_fd": 483, "is_verbos": 469, "is_wintouch": 177, "is_zero": 186, "is_zipfil": [422, 469, 483], "isa": 483, "isaac": 319, "isab": [294, 296], "isabstract": [255, 468, 483], "isadirectoryerror": [23, 212, 213, 293, 450, 476, 483], "isal": [481, 482, 483], "isalnum": [85, 178, 319, 344], "isalpha": [178, 344], "isascii": [178, 344, 480, 483], "isasyncgen": 255, "isasyncgenfunct": [255, 483], "isatti": [59, 153, 225, 258, 293, 352, 446, 483], "isawait": [129, 161, 255, 389, 478, 483], "isbadstringptr": 483, "isbjunk": 477, "isblank": [178, 483], "isblk": 358, "isbn": [160, 369, 454], "isbpopular": 477, "isbuiltin": 255, "iscal": [112, 469, 470, 483], "ischr": 358, "isclass": [255, 428], "isclos": [154, 275, 444, 478, 483], "iscntrl": [178, 483], "iscod": 255, "iscoroutin": [129, 139, 255, 474, 478, 483], "iscoroutinefunct": [255, 389, 474, 478, 483], "isctrl": 178, "isdaemon": [365, 468, 472, 483], "isdatadescriptor": [255, 483], "isdecim": [344, 345], "isdev": 358, "isdevdr": [294, 483], "isdigit": [178, 326, 344], "isdir": [294, 296, 302, 358, 481, 483], "isdisjoint": [161, 344, 483], "isdown": 384, "isdst": [209, 474, 483], "isel": 413, "isen": [28, 227], "isenabledfor": [101, 102, 267, 469, 483], "isendwin": 177, "iseof": 377, "iserl": 154, "isfifo": 358, "isfil": [200, 294, 296, 358, 438, 475, 481, 483], "isfin": 314, "isfinit": [154, 275, 475, 483], "isfirstlin": 218, "isfram": 255, "isfunct": 255, "isfutur": [129, 483], "isgener": [255, 468], "isgeneratorfunct": [255, 468, 483], "isgetsetdescriptor": 255, "isgraph": 178, "ish": 483, "ishimoto": 477, "isident": 474, "isidentifi": [344, 483], "isindex": 151, "isinf": [154, 275, 344, 468, 483], "isinst": [63, 78, 85, 87, 88, 93, 94, 101, 102, 112, 116, 151, 161, 169, 181, 183, 211, 225, 250, 251, 255, 262, 289, 291, 299, 344, 385, 386, 388, 389, 390, 427, 428, 440, 450, 462, 465, 466, 468, 470, 472, 473, 474, 475, 479, 480, 483], "isinterruptionrequest": 102, "isjunct": [293, 294, 474, 483], "isjunk": 190, "iskeyword": [263, 344], "island": 483, "isleap": 150, "islic": [87, 95, 160, 225, 261, 467, 480, 483], "islink": [293, 294, 296, 481, 483], "islnk": 358, "islow": [178, 326, 344], "ismappingtyp": 112, "ismemberdescriptor": 255, "ismeta": 178, "ismethod": 255, "ismethoddescriptor": 255, "ismethodwrapp": [255, 473, 483], "ismo": 483, "ismodul": 255, "ismount": [294, 477, 481, 483], "isn": [7, 22, 23, 25, 31, 33, 61, 63, 73, 76, 79, 84, 85, 92, 93, 94, 99, 100, 102, 106, 109, 115, 120, 133, 139, 157, 158, 169, 183, 191, 193, 196, 202, 204, 205, 234, 243, 248, 255, 269, 293, 296, 302, 314, 319, 337, 338, 341, 342, 352, 355, 369, 378, 388, 394, 403, 405, 406, 419, 428, 436, 449, 462, 463, 464, 465, 466, 467, 468, 469, 475, 483], "isnan": [154, 275, 343, 344, 442, 468, 483], "isnontermin": 377, "isnot": [122, 431], "isnot_bitwise_or": 431, "isnumbertyp": 112, "isnumer": 344, "iso": [64, 150, 158, 183, 190, 195, 196, 202, 205, 239, 242, 266, 288, 314, 337, 340, 352, 366, 398, 407, 417, 419, 462, 466, 473, 475, 478, 479, 481, 483], "iso2022_jp": 158, "iso2022_jp_1": 158, "iso2022_jp_2": 158, "iso2022_jp_2004": [158, 483], "iso2022_jp_3": [158, 483], "iso2022_jp_ext": 158, "iso2022_kr": 158, "iso2022jp": 158, "iso2022kr": 158, "iso8601": [101, 419], "iso8859": 158, "iso8859_10": 158, "iso8859_11": 158, "iso8859_13": 158, "iso8859_14": 158, "iso8859_15": 158, "iso8859_16": 158, "iso8859_2": 158, "iso8859_3": 158, "iso8859_4": 158, "iso8859_5": 158, "iso8859_6": 158, "iso8859_7": 158, "iso8859_8": 158, "iso8859_9": 158, "iso_8859": 466, "iso_8859_1": 109, "isocalendar": [183, 481, 482, 483], "isocalendard": 183, "isoformat": [102, 183, 190, 340, 425, 465, 479, 480, 483], "isol": [32, 33, 63, 66, 68, 87, 95, 114, 122, 139, 193, 247, 352, 354, 362, 388, 399, 455, 461, 473, 474, 477, 479, 482, 483], "isolated_modul": 483, "isolated_subinterpret": 483, "isolatedasynciotestcas": [388, 473, 481, 483], "isolation_level": [68, 298, 483], "isomorph": 462, "isopars": 483, "isort": 85, "isoweekday": [94, 183, 211], "ispe": 361, "ispkg": 302, "isprint": [160, 178, 344, 478, 483], "ispunct": [178, 483], "isqrt": [261, 275, 481, 483], "isread": 307, "isrecurs": 307, "isreg": 358, "isreservedkey": 244, "isroutin": [255, 483], "isrun": 102, "issamenod": 410, "issequencetyp": 112, "isset": [365, 472, 483], "issoftkeyword": 263, "isspac": [178, 344], "isstdin": 218, "isstr": 279, "issu": [1, 7, 22, 32, 33, 34, 61, 66, 68, 76, 80, 93, 94, 96, 101, 102, 103, 109, 119, 120, 135, 155, 158, 176, 177, 181, 185, 186, 203, 213, 221, 225, 235, 242, 247, 248, 261, 262, 266, 267, 271, 272, 283, 292, 293, 296, 299, 311, 333, 335, 337, 341, 344, 348, 362, 384, 386, 388, 400, 412, 413, 421, 426, 455, 458, 462, 463, 464, 466, 467, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "issubclass": [61, 78, 87, 116, 161, 225, 344, 385, 386, 400, 428, 440, 450, 462, 468, 472, 480, 483], "issubset": [344, 465], "issue12524": 242, "issue22118": 483, "issue25782": 483, "issue26903": 483, "issue3770": 102, "issuer": 341, "issuperset": [344, 465, 483], "issym": 358, "ist": 297, "istermin": 377, "istext": 146, "istitl": 344, "istraceback": 255, "isub": 291, "isupp": [93, 178, 326, 344, 388], "isvis": 384, "isxdigit": 178, "isxyztk": 483, "isysroot": [482, 483], "it": [5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 112, 115, 117, 120, 122, 126, 129, 132, 133, 135, 137, 138, 139, 140, 141, 143, 144, 146, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 287, 288, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "it1": 261, "it2": 261, "ital": [150, 177, 372], "itali": 95, "italian": [299, 384], "itamar": [464, 474], "itanium": [462, 478], "itay": 483, "item": [5, 7, 14, 22, 23, 31, 33, 34, 35, 36, 37, 38, 49, 54, 60, 63, 64, 68, 73, 76, 79, 84, 87, 94, 95, 102, 106, 112, 120, 122, 134, 141, 147, 151, 157, 158, 160, 161, 167, 170, 171, 176, 181, 184, 189, 190, 191, 193, 196, 197, 200, 205, 209, 213, 225, 226, 233, 235, 236, 244, 247, 248, 250, 252, 253, 261, 262, 268, 269, 271, 275, 276, 279, 283, 288, 291, 293, 299, 302, 307, 308, 313, 316, 319, 320, 324, 332, 334, 337, 339, 340, 341, 344, 345, 347, 348, 352, 354, 359, 361, 362, 365, 368, 369, 375, 378, 381, 384, 385, 386, 394, 402, 405, 407, 408, 410, 412, 413, 416, 419, 422, 423, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 446, 449, 450, 452, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 480, 481, 483], "item1": 470, "item2": 470, "item_path": 467, "item_separ": 262, "itemconfigur": 483, "itemgett": [87, 108, 147, 261, 291, 466, 467, 478, 481, 483], "itemlist": 38, "itemnam": 450, "items": [7, 61, 121, 283, 337, 344, 483], "items_list": 440, "items_pattern": [427, 431], "itemsview": [161, 344, 386], "iter": [13, 16, 22, 28, 29, 33, 36, 49, 54, 55, 63, 64, 67, 68, 75, 78, 87, 93, 99, 106, 108, 112, 116, 121, 122, 133, 136, 139, 144, 149, 150, 151, 158, 160, 161, 166, 167, 169, 170, 175, 176, 181, 187, 191, 194, 195, 196, 197, 205, 213, 218, 220, 225, 226, 230, 231, 234, 235, 236, 242, 243, 250, 251, 252, 253, 255, 256, 258, 261, 262, 266, 267, 270, 271, 275, 283, 285, 288, 293, 297, 299, 300, 304, 308, 318, 319, 328, 337, 340, 343, 344, 347, 352, 362, 378, 385, 386, 389, 390, 394, 395, 407, 410, 413, 414, 415, 419, 425, 427, 431, 432, 436, 441, 442, 443, 445, 450, 462, 463, 464, 465, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "iter1": 468, "iter2": 468, "iter_attach": [200, 205, 483], "iter_child_nod": 122, "iter_except": 261, "iter_field": 122, "iter_import": [302, 476], "iter_index": 261, "iter_modul": [302, 476, 479, 483], "iter_part": [196, 205, 207], "iter_unpack": [347, 477], "itera": 95, "iterable1": 468, "iterat": 225, "iterb": 95, "iterdecod": 158, "iterdir": [250, 252, 253, 296, 422, 483], "iterdump": [340, 483], "iterencod": [158, 262], "iterfind": [413, 475], "iteritem": [112, 271, 464, 465, 466, 470, 483], "iterkey": [112, 271, 464, 465, 466, 468, 470, 483], "iterkeyref": 467, "itermonthd": [150, 480, 483], "itermonthday": [150, 483], "itermonthdays2": [150, 483], "itermonthdays3": [150, 480, 483], "itermonthdays4": [150, 480, 483], "iternextfunc": [57, 63, 75], "iterool": 261, "iterpars": [413, 477, 483], "itertext": [413, 469, 475, 483], "itertool": [68, 87, 112, 160, 224, 225, 226, 236, 247, 250, 254, 275, 279, 291, 318, 343, 465, 466, 467, 468, 469, 470, 471, 483], "itertools_import": 112, "itervalu": [112, 271, 464, 465, 466, 470, 483], "itervalueref": 467, "iterweekday": 150, "itimer_prof": 333, "itimer_r": 333, "itimer_virtu": 333, "itimererror": 333, "itm": 483, "itn": [261, 483], "ito": 483, "itojun": 464, "itruediv": 291, "its": [5, 7, 9, 11, 22, 23, 25, 28, 31, 33, 34, 39, 42, 43, 45, 47, 49, 55, 56, 58, 60, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 133, 135, 136, 137, 139, 144, 149, 151, 152, 154, 155, 158, 163, 166, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 191, 193, 194, 195, 196, 197, 199, 202, 203, 205, 206, 207, 208, 209, 213, 214, 218, 223, 225, 226, 228, 230, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 258, 261, 262, 265, 267, 268, 269, 271, 275, 276, 278, 279, 283, 292, 293, 295, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 322, 323, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 360, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 410, 411, 412, 413, 415, 416, 417, 419, 420, 421, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "itself": [33, 42, 45, 49, 51, 61, 63, 64, 67, 68, 72, 73, 75, 76, 85, 93, 94, 95, 96, 100, 101, 102, 103, 106, 110, 115, 119, 120, 133, 139, 144, 151, 155, 163, 176, 177, 178, 181, 183, 191, 193, 195, 197, 203, 205, 215, 225, 226, 243, 245, 247, 248, 250, 255, 257, 259, 261, 262, 267, 268, 269, 271, 281, 282, 283, 288, 292, 293, 299, 308, 314, 319, 331, 332, 337, 340, 341, 344, 345, 346, 348, 352, 355, 358, 359, 361, 362, 365, 376, 381, 384, 385, 386, 388, 394, 395, 397, 399, 400, 414, 415, 416, 419, 428, 429, 430, 432, 434, 435, 436, 443, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 480, 482, 483], "itw": 483, "iu": [85, 465], "ium": 449, "iv": 337, "ivan": [479, 480, 481, 483], "ivf": 456, "ixor": 291, "izbyshev": 483, "ize": 483, "izip": [112, 466], "izip_longest": 468, "j0": [456, 474, 483], "j1": [190, 460, 483], "j1939": [337, 483], "j2": 190, "j3": [478, 480, 483], "j8": 460, "j9": 483, "ja": 480, "jab": 483, "jabberwocki": 114, "jacek": [476, 479, 483], "jachim": 483, "jack": [318, 319, 344, 397, 426, 442, 446, 464, 465, 467, 471, 483], "jackdaw": 102, "jackson": [167, 477], "jacob": [468, 473, 474, 483], "jacqu": 469, "jail": 102, "jain": [473, 474, 483], "jairo": 483, "jaiswal": 483, "jake": [318, 469, 471, 481, 483], "jakob": 474, "jakub": [479, 483], "jam": 292, "jame": [230, 423, 426, 462, 465, 467, 469, 473, 474, 480, 483], "jami": 483, "jan": [95, 183, 341, 348, 405, 464, 469, 472, 473, 475, 478, 479, 480, 481, 482, 483], "jane": [106, 108], "janech": 483, "jansen": [397, 426, 464, 465, 478, 483], "janssen": 468, "jansson": 472, "januar": 183, "januari": [150, 153, 183, 318, 366, 426, 435, 463, 474, 483], "janzen": [481, 482], "japan": [183, 266], "japanes": [109, 158, 266, 466, 480], "jar": 466, "jaraco": 251, "jason": [463, 465, 468, 474, 477, 481, 482, 483], "jauhiainen": 476, "java": [63, 68, 78, 80, 84, 85, 95, 102, 106, 107, 116, 118, 225, 293, 344, 365, 410, 414, 415, 428, 434, 439, 441, 444, 462, 466, 467, 468, 470, 472, 475], "java_v": 303, "javascript": [1, 68, 167, 240, 244, 257, 262, 299, 441, 446, 472, 483], "jaw": [93, 147], "jay": [95, 463, 475, 483], "jcaesar": 451, "jcea": [468, 469, 470], "jean": [235, 426, 468, 469, 476], "jeanpierr": [478, 483], "jedi": 223, "jeff": [463, 465, 477, 479, 483], "jeffrey": [106, 319, 341, 468, 469, 472, 473, 475, 483], "jek": [482, 483], "jelk": 80, "jell": [472, 473, 474, 479, 480, 483], "jemalloc": 483, "jen": [464, 483], "jendrik": [482, 483], "jenkin": [223, 388], "jenvey": [469, 475], "jeong": 483, "jeremi": [462, 463, 464, 465, 466, 467, 468, 469, 483], "jeremiah": 483, "jeroen": [472, 479, 481, 482, 483], "jerri": 153, "jes": [468, 469, 476, 479, 480, 483], "jess": [468, 471, 478, 479, 480, 483], "jessi": 480, "jessica": [478, 483], "jeuner": 200, "jevnik": [478, 481, 483], "jewett": [95, 466, 468], "jfif": [249, 483], "jiajun": 483, "jim": [85, 95, 102, 308, 434, 462, 466, 468, 475, 479, 483], "jin": [472, 473, 474, 479, 480, 481, 482, 483], "jingchen": [473, 483], "jira": 468, "jiryu": [478, 479, 483], "jis": [158, 466], "jisx0213": [158, 466], "jit": [68, 474, 479, 483], "jitter": 483, "jiwon": [466, 476], "jkl": 160, "jloup": 426, "jn": 483, "joan": 479, "joannah": [481, 482, 483], "job": [84, 92, 101, 102, 106, 109, 120, 128, 159, 201, 207, 230, 283, 293, 299, 345, 348, 375, 395, 432, 462, 468, 475, 483], "jochem": 483, "joe": [110, 151, 234, 384, 395, 478, 481, 483], "joel": [109, 479, 483], "joffrey": 483, "jog": 475, "johab": [158, 466], "johann": [478, 483], "johansson": [469, 471], "john": [93, 108, 110, 160, 175, 190, 369, 413, 440, 441, 442, 463, 466, 467, 468, 469, 472, 473, 476, 479, 483], "johnni": [481, 482, 483], "johnson": [109, 467, 468, 483], "join": [64, 68, 77, 79, 85, 95, 102, 107, 114, 120, 134, 136, 151, 158, 160, 175, 186, 190, 200, 202, 203, 208, 225, 242, 243, 244, 247, 259, 268, 270, 279, 283, 284, 293, 294, 296, 302, 316, 319, 320, 321, 326, 331, 332, 335, 337, 338, 342, 344, 345, 362, 364, 365, 367, 385, 386, 394, 399, 407, 410, 411, 413, 422, 425, 441, 446, 449, 452, 462, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "join_thread": [283, 362, 483], "joinablequeu": [283, 478, 483], "joinedstr": [122, 483], "joiner": [158, 478, 483], "joinpath": [250, 252, 253, 296, 422, 483], "joint": [343, 426], "joke": [462, 483], "jon": [481, 482, 483], "jona": [477, 480, 483], "jonathan": [472, 476, 478, 481, 483], "jone": [369, 465, 467, 477, 478], "jong": 480, "joona": 464, "joongi": [472, 483], "jordan": [481, 483], "jordon": 482, "jos": [469, 483], "joseph": [476, 479, 483], "josephin": 84, "josh": [467, 468, 478, 479, 481, 482, 483], "joshua": [472, 478, 483], "josiah": [468, 476], "journal": 190, "joy": [287, 384], "jp": [158, 195, 426, 466], "jpeg": [200, 206, 249, 369, 446, 468, 483], "jpg": [200, 258, 294, 419, 452, 467], "jpic": 483, "jpython": 462, "jr": [0, 84, 463, 464, 465, 467, 468], "js": [352, 456], "js_output": 244, "json": [68, 101, 102, 120, 151, 156, 167, 251, 254, 258, 268, 269, 285, 298, 307, 347, 445, 451, 469, 471, 472, 475, 476, 477, 482, 483], "json_object": 483, "jsondecod": [262, 469, 479, 483], "jsondecodeerror": [120, 262, 478, 483], "jsonencod": [102, 262, 479, 483], "jst": 183, "jtc1": 352, "juan": [230, 469], "judici": [84, 181, 468], "juergen": 483, "juhana": 476, "juic": 344, "jukka": [109, 478], "jul": [95, 223, 464, 475], "juli": [95, 150, 190, 426, 435, 464, 465, 469, 483], "julian": [366, 477, 478, 483], "julien": [474, 480], "juliett": [481, 483], "jump": [102, 103, 191, 193, 247, 270, 297, 353, 384, 428, 441, 465, 467, 470, 473, 474, 479, 480, 483], "jump_absolut": [473, 483], "jump_backward": [191, 473, 483], "jump_backward_no_interrupt": [191, 473, 483], "jump_forward": [191, 483], "jump_if_false_or_pop": [473, 474, 483], "jump_if_not_eg_match": 483, "jump_if_not_exc_match": [473, 482, 483], "jump_if_true_or_pop": [473, 474, 483], "jump_no_interrupt": [191, 483], "jumpahead": 470, "jun": [95, 223, 366, 464], "junction": [293, 294, 296, 332, 474, 481, 483], "june": [95, 150, 408, 471, 480], "juni": 435, "junit": [388, 463, 483], "junk": [190, 283, 288, 348, 483], "jupit": [94, 343], "jupyt": 481, "jure": 483, "jussi": 95, "just": [9, 13, 28, 33, 39, 51, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 128, 129, 138, 139, 149, 151, 155, 157, 158, 159, 161, 167, 169, 176, 177, 179, 181, 183, 186, 190, 193, 194, 200, 201, 218, 225, 226, 230, 234, 235, 243, 247, 250, 252, 253, 261, 266, 267, 268, 269, 271, 281, 283, 292, 293, 297, 299, 308, 313, 314, 319, 320, 328, 330, 331, 333, 337, 338, 340, 341, 344, 345, 348, 352, 355, 358, 362, 364, 365, 369, 375, 376, 381, 384, 386, 388, 395, 399, 410, 413, 414, 415, 420, 421, 422, 423, 427, 428, 430, 432, 434, 436, 441, 452, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "justifi": [344, 369, 376, 468], "justin": [472, 476, 483], "justin39": 483, "justo": 149, "jvm": 468, "jwzthread": [423, 465], "jyrki": 477, "jython": [78, 84, 87, 94, 303, 362, 407, 434, 449, 455, 463, 466, 468, 474, 475, 477, 483], "k1": [103, 160, 402], "k2": [103, 160, 402], "k3": 103, "k_h": 343, "ka": [462, 463, 464, 467], "kaarl": 483, "kaartic": 483, "kabir": [473, 483], "kabrda": 483, "kabul": 183, "kabultz": 183, "kachayev": [477, 478, 483], "kadidd": 395, "kahan": 154, "kai": 483, "kaiser": [467, 483], "kaliszewski": 469, "kall": [389, 466, 483], "kalv": 483, "kamp": 462, "kan": [478, 483], "kang": [477, 483], "kani": 483, "kanji": 158, "kannada": 475, "kappa": 318, "kaptur": 483, "kapun": [482, 483], "karaba": [472, 473, 482, 483], "karaok": 450, "karatsuba": [186, 465], "karl": [477, 482, 483], "karlsen": [476, 483], "karthikeyan": 483, "kashin": [482, 483], "kasia": 483, "kasun": 476, "kate": 93, "kati": [477, 483], "kato": 483, "katriel": [472, 473, 474, 483], "katz": [422, 423], "kaushik": 483, "kawashima": 483, "kawasima": 473, "kaya": [482, 483], "kazakh": [158, 478], "kazakov": [478, 483], "kb": 483, "kb2533623": 481, "kbhit": [86, 282], "kc": 387, "kd": 387, "kde": 403, "kde_norm": 343, "kdedir": 403, "ke": [473, 483], "kea": 341, "keccak": [235, 473, 479, 483], "kee": 483, "keebler": 244, "keep": [31, 33, 39, 63, 73, 85, 94, 100, 102, 106, 108, 109, 120, 128, 139, 144, 151, 158, 160, 169, 176, 177, 179, 181, 186, 191, 193, 196, 211, 214, 226, 234, 243, 247, 252, 255, 258, 261, 271, 278, 292, 293, 299, 305, 307, 319, 338, 344, 348, 352, 362, 369, 388, 395, 410, 415, 427, 428, 432, 436, 463, 465, 466, 467, 468, 469, 475, 477, 480, 483], "keep_blank_valu": [151, 394], "keep_condit": 85, "keep_funct": 85, "keep_posit": 386, "keepend": [64, 158, 190, 200, 344], "keepflag": 211, "keer": 479, "keho": 473, "keio": 426, "keith": 464, "keller": [481, 483], "kelli": [465, 476, 477], "kelsey": 462, "kelvin": [106, 319], "kemenad": [473, 474, 482, 483], "ken": [109, 369, 472, 473, 474, 479, 480, 481, 482, 483], "kencrypt": 235, "kenneth": 453, "kennethreitz": 453, "kenni": [402, 477], "kent": [109, 341, 362, 388, 463, 467, 468], "kepler": 343, "kept": [23, 24, 33, 45, 59, 64, 85, 100, 102, 144, 167, 176, 184, 186, 195, 199, 208, 213, 214, 225, 243, 244, 247, 258, 261, 269, 271, 311, 312, 319, 334, 338, 341, 436, 462, 464, 469, 470, 474, 475, 476, 477, 482, 483], "kerl": 483, "kermani": 483, "kern": 269, "kernc": 483, "kernel": [68, 92, 115, 132, 257, 261, 278, 290, 293, 328, 332, 333, 337, 352, 355, 365, 462, 467, 472, 476, 477, 479, 481, 483], "kernel32": [176, 352, 483], "kevan": 483, "kevent": 68, "kevin": [465, 466, 468, 469, 474, 475, 483], "key": [5, 22, 33, 35, 40, 49, 54, 55, 63, 68, 78, 84, 85, 87, 92, 93, 94, 95, 96, 100, 101, 102, 112, 122, 142, 147, 151, 155, 157, 160, 161, 164, 167, 170, 174, 175, 177, 181, 183, 184, 186, 189, 191, 193, 196, 197, 201, 203, 205, 206, 212, 213, 223, 225, 226, 230, 236, 237, 244, 245, 248, 250, 251, 255, 259, 261, 262, 266, 267, 268, 270, 271, 272, 279, 282, 287, 288, 291, 293, 295, 297, 299, 304, 305, 307, 308, 312, 319, 320, 329, 330, 333, 334, 340, 344, 345, 346, 352, 355, 358, 362, 368, 369, 376, 384, 385, 386, 389, 390, 394, 395, 402, 405, 407, 413, 416, 417, 419, 421, 425, 427, 428, 430, 431, 432, 436, 440, 441, 442, 446, 452, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "key1": [167, 427, 482], "key2": [167, 427, 482], "key3": [167, 482], "key_": 177, "key_a1": 177, "key_a3": 177, "key_all_access": 405, "key_b2": 177, "key_backspac": 177, "key_beg": 177, "key_break": 177, "key_btab": 177, "key_c1": 177, "key_c3": 177, "key_cancel": 177, "key_catab": 177, "key_clear": 177, "key_clos": 177, "key_command": 177, "key_copi": 177, "key_creat": 177, "key_create_link": 405, "key_create_sub_key": 405, "key_ctab": 177, "key_dc": 177, "key_dl": 177, "key_down": 177, "key_eic": 177, "key_end": 177, "key_ent": 177, "key_enumerate_sub_key": 405, "key_eo": 177, "key_eol": 177, "key_execut": 405, "key_exit": 177, "key_f0": 177, "key_f1": 177, "key_f2": 177, "key_f3": 177, "key_f4": 177, "key_fil": [242, 395, 474, 483], "key_find": 177, "key_fn": 177, "key_func": 95, "key_help": 177, "key_hom": [92, 177], "key_ic": 177, "key_id": 299, "key_il": 177, "key_left": [92, 177], "key_length": 426, "key_ll": 177, "key_mark": 177, "key_max": 177, "key_messag": 177, "key_min": 177, "key_mous": 177, "key_mov": 177, "key_next": 177, "key_notifi": 405, "key_npag": 177, "key_open": 177, "key_opt": 177, "key_ppag": [92, 177], "key_previ": 177, "key_print": 177, "key_query_valu": 405, "key_read": 405, "key_redo": 177, "key_refer": 177, "key_refresh": 177, "key_replac": 177, "key_res": 177, "key_reset": 177, "key_restart": 177, "key_resum": 177, "key_right": 177, "key_sav": 177, "key_sbeg": 177, "key_scancel": 177, "key_scommand": 177, "key_scopi": 177, "key_screat": 177, "key_sdc": 177, "key_sdl": 177, "key_select": 177, "key_send": 177, "key_seol": 177, "key_separ": 262, "key_set_valu": 405, "key_sexit": 177, "key_sf": 177, "key_sfind": 177, "key_shelp": 177, "key_shom": 177, "key_sic": 177, "key_sleft": 177, "key_smessag": 177, "key_smov": 177, "key_snext": 177, "key_sopt": 177, "key_sprevi": 177, "key_sprint": 177, "key_sr": 177, "key_sredo": 177, "key_sreplac": 177, "key_sreset": 177, "key_sright": 177, "key_srsum": 177, "key_ssav": 177, "key_ssuspend": 177, "key_stab": 177, "key_sundo": 177, "key_suspend": 177, "key_typ": 382, "key_undo": 177, "key_up": [92, 177], "key_val": 466, "key_value_pattern": [427, 431], "key_without_valu": 167, "key_wow64_32key": 405, "key_wow64_64key": 405, "key_writ": 405, "keya": 167, "keyb": 167, "keybind": [92, 177, 247, 320], "keyboard": [68, 81, 86, 92, 96, 177, 247, 333, 348, 376, 384, 388, 441, 468, 483], "keyboardinterrupt": [23, 96, 101, 102, 115, 135, 139, 157, 213, 283, 316, 333, 388, 407, 420, 438, 443, 450, 467, 468, 469, 470, 479, 480, 481, 483], "keyc": 167, "keycap": 177, "keycod": [282, 369], "keyedarch": 483, "keyencod": 330, "keyerror": [14, 22, 23, 35, 55, 78, 85, 160, 167, 170, 184, 196, 197, 205, 211, 213, 233, 236, 243, 250, 261, 271, 296, 310, 328, 329, 330, 339, 344, 345, 355, 358, 385, 386, 387, 389, 390, 422, 425, 428, 432, 450, 452, 465, 466, 469, 476, 479, 481, 483], "keyfil": [223, 248, 269, 281, 305, 335, 341, 462, 474, 479, 483], "keyfunc": [225, 261], "keylist": [465, 466], "keylog": [341, 483], "keylog_filenam": 341, "keynam": 177, "keyout": 341, "keypad": [92, 177], "keypath": 281, "keypatternpair": 431, "keypress": [68, 92, 282, 468], "keyref": [402, 467], "keyset": 483, "keyspag": 483, "keystrok": [106, 155, 177, 333, 462, 469], "keysview": [161, 344, 386], "keysym": 369, "keysym_num": 369, "keyvaluepair": 431, "keywd": 73, "keywdarg": 73, "keywdarg_method": 73, "keywdarg_parrot": 73, "keywdargmodul": 73, "keyword": [5, 58, 63, 64, 66, 68, 74, 75, 76, 84, 87, 95, 100, 101, 102, 115, 120, 122, 135, 139, 149, 151, 158, 160, 167, 170, 176, 177, 183, 186, 189, 190, 191, 193, 196, 205, 206, 207, 208, 213, 218, 225, 226, 230, 235, 243, 245, 247, 251, 254, 255, 261, 262, 264, 266, 267, 268, 271, 278, 283, 288, 292, 293, 297, 299, 304, 307, 313, 315, 319, 321, 323, 325, 331, 332, 335, 337, 344, 345, 348, 352, 356, 358, 362, 364, 365, 369, 376, 384, 385, 386, 388, 389, 395, 399, 400, 403, 411, 413, 420, 422, 427, 428, 429, 430, 431, 433, 436, 442, 443, 445, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 480, 481, 482, 483], "keyword_item": 430, "keyword_on": 255, "keyword_pattern": [427, 431], "keyword_ti": 431, "keywordorstar": 431, "keywords_argu": 430, "keywrapp": 483, "kf": 431, "kfm": 403, "kfmclient": 403, "kfreebsd": 483, "kg": 94, "khan": 483, "kharosthi": 344, "khatri": [480, 483], "kholia": 477, "khurana": [478, 480, 483], "khy6h21km": 235, "kib": [42, 115, 136, 270, 293, 332, 365, 382, 481, 483], "kick": 102, "kieft": 483, "kiendl": 467, "kilburn": 483, "kill": [59, 84, 115, 130, 133, 137, 142, 166, 177, 247, 257, 283, 293, 333, 348, 362, 402, 407, 422, 468, 469, 470, 475, 480, 483], "kill_python": 362, "kill_thread": 102, "killchar": 177, "killen": 483, "killpg": [142, 293, 465, 483], "kilogram": [94, 386], "kilohertz": 481, "kim": [472, 483], "kimbrel": 483, "kind": [34, 63, 64, 68, 73, 76, 79, 85, 87, 99, 100, 102, 109, 120, 122, 133, 151, 176, 193, 250, 251, 255, 258, 281, 283, 293, 299, 301, 319, 328, 340, 341, 344, 346, 352, 365, 369, 386, 388, 395, 400, 413, 414, 415, 426, 427, 428, 430, 431, 432, 440, 441, 456, 461, 464, 465, 466, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "kindahl": 469, "king": [318, 319, 462, 481, 483], "kinoshita": 483, "kintscher": [472, 483], "kiril": 473, "kirpichev": [473, 483], "kit": [472, 483], "kite": 384, "kivi": 459, "kiwi": 442, "kl": 344, "klass": 267, "klausner": 473, "kleckner": 475, "klem": 395, "klist": 330, "klose": [469, 476, 479], "kloth": 483, "kluyver": [477, 478, 479, 483], "km": [94, 343], "kmac": 235, "knew": [103, 110, 470], "knight": [95, 109, 307, 426, 442, 446, 464, 465, 481], "knob": 348, "know": [31, 33, 59, 63, 73, 76, 77, 85, 93, 95, 99, 101, 102, 103, 106, 109, 110, 117, 120, 132, 139, 151, 161, 176, 178, 181, 190, 193, 195, 200, 201, 208, 243, 245, 250, 259, 266, 268, 269, 271, 272, 283, 292, 293, 330, 332, 337, 341, 344, 352, 369, 376, 382, 384, 395, 400, 405, 416, 419, 422, 425, 432, 434, 436, 443, 461, 462, 463, 464, 467, 468, 469, 474, 476, 477, 479, 483], "knowledg": [33, 92, 183, 194, 266, 330, 468], "known": [5, 9, 23, 33, 60, 61, 63, 64, 68, 75, 85, 94, 95, 106, 107, 110, 120, 151, 158, 167, 169, 176, 183, 186, 196, 197, 209, 235, 242, 247, 250, 251, 253, 266, 267, 268, 275, 276, 293, 299, 319, 320, 328, 337, 340, 341, 342, 344, 348, 352, 354, 355, 366, 369, 375, 376, 378, 384, 387, 399, 400, 410, 415, 416, 422, 425, 426, 430, 434, 435, 436, 456, 458, 465, 467, 469, 470, 471, 475, 477, 479, 480, 481, 483], "known_host": 332, "known_path": 334, "knownfil": 276, "knuth": [160, 186], "ko": [472, 479, 480, 483], "kocak": [482, 483], "koch": 384, "koep": 483, "koi8_r": 158, "koi8_t": [158, 478, 483], "koi8_u": 158, "kok": [477, 478, 483], "kolam": 384, "komodo": 85, "konieczni": 476, "konopko": 483, "konqueror": [403, 467, 483], "konstantin": [482, 483], "koo": 479, "koob": 483, "koray": 466, "korean": [158, 466, 480, 483], "koren": 483, "korenberg": [478, 479], "korn": 447, "korpela": 109, "kosata": 469, "koshiba": 483, "koubaa": 483, "kq_ev_add": 328, "kq_ev_clear": 328, "kq_ev_delet": 328, "kq_ev_dis": 328, "kq_ev_en": 328, "kq_ev_eof": 328, "kq_ev_error": 328, "kq_ev_flag1": 328, "kq_ev_oneshot": 328, "kq_ev_sysflag": 328, "kq_filter_aio": 328, "kq_filter_netdev": 328, "kq_filter_proc": 328, "kq_filter_read": 328, "kq_filter_sign": 328, "kq_filter_tim": 328, "kq_filter_vnod": 328, "kq_filter_writ": 328, "kq_note_attrib": 328, "kq_note_child": 328, "kq_note_delet": 328, "kq_note_exec": 328, "kq_note_exit": 328, "kq_note_extend": 328, "kq_note_fork": 328, "kq_note_link": 328, "kq_note_linkdown": 328, "kq_note_linkinv": 328, "kq_note_linkup": 328, "kq_note_lowat": 328, "kq_note_pctrlmask": 328, "kq_note_pdatamask": 328, "kq_note_renam": 328, "kq_note_revok": 328, "kq_note_track": 328, "kq_note_trackerr": 328, "kq_note_writ": 328, "kqueue": [68, 322, 329, 468, 478, 483], "kqueue_ev": 483, "kqueueselector": [131, 329, 483], "kr": [158, 466], "krah": [426, 469, 476, 479, 483], "krahl": 479, "krasnikov": 483, "krebber": [480, 483], "krekel": 467, "krell": 95, "krennwalln": [474, 483], "kreusada": 483, "kreutz": 468, "krier": [478, 481, 483], "kristj": [469, 475, 477], "kristol": 243, "krugler": 109, "krzysztof": 483, "ks_c": 158, "ks_x": 158, "ksc5601": 158, "ksdataformat_subtype_pcm": 401, "ksx1001": 158, "kt": 386, "kt_co": 386, "ktls": 483, "kuba": 469, "kubilay": [482, 483], "kuchl": [92, 95, 106, 109, 177, 462, 463, 464, 465, 466, 467, 468, 469, 477], "kuhn": 476, "kul": 483, "kulakov": [480, 483], "kulakovin": 473, "kulik": 483, "kuma": 483, "kumar": [473, 474, 483], "kumaran": [469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "kumaripaba": 483, "kung": 345, "kunstlev": 467, "kuprieiev": 483, "kuratomi": 477, "kurenkov": 483, "kurt": 467, "kushal": [478, 479, 483], "kuska": 483, "kuxjwb4lzsa": 261, "kvpair": 431, "kw": [5, 63, 176, 189, 197, 203, 205, 208, 262, 362, 372, 374, 375, 376, 389, 390, 400, 441, 462, 465, 468, 475], "kw_default": 122, "kw_name": [191, 473, 483], "kw_on": [181, 386, 472, 483], "kw_only1": 87, "kw_only2": 87, "kw_only_default": 386, "kwajalein": 425, "kwarg": [10, 58, 63, 68, 85, 87, 93, 101, 102, 112, 115, 120, 122, 126, 139, 140, 142, 158, 160, 166, 167, 170, 177, 186, 225, 250, 253, 255, 262, 267, 268, 283, 291, 292, 293, 299, 307, 308, 325, 344, 345, 358, 362, 364, 365, 385, 386, 388, 389, 390, 399, 402, 428, 431, 441, 468, 473, 476, 478, 479, 481, 483], "kwarg1": [95, 467], "kwarg2": [95, 467], "kwarg_or_double_star": 431, "kwarg_or_star": 431, "kwatra": [473, 483], "kwcount": 66, "kwd1": 441, "kwd2": 441, "kwd_attr": 122, "kwd_on": 441, "kwd_only_arg": 441, "kwd_pattern": 122, "kwdef": [66, 483], "kwdict": [10, 73], "kwds": [61, 63, 75, 76, 93, 137, 144, 169, 175, 203, 211, 225, 226, 255, 283, 297, 318, 345, 362, 380, 385, 388, 428, 431, 441, 467, 481, 483], "kweyword": 483, "kwlist": [73, 76, 190, 263], "kwname": [10, 58, 100], "kwonlyarg": [122, 255], "kwonlyargcount": [13, 142, 385, 483], "kwonlydefault": 255, "kws": [66, 225, 352], "kx": 341, "kyle": [469, 472, 479, 480, 481, 482, 483], "kyungmin": 483, "kz1048": [158, 478, 483], "kz_1048": 158, "l0x": 472, "l1": [68, 84, 158, 376], "l10": 158, "l10n": [230, 462], "l2": [84, 158, 376], "l3": 158, "l4": 158, "l5": 158, "l6": [158, 476], "l6988": 475, "l6hk": 476, "l7": 158, "l8": 158, "l9": 158, "l_outer": 283, "la": [267, 467, 473], "laan": 468, "lab": [336, 426, 440, 462, 464, 465], "laban": [469, 471], "label": [42, 68, 78, 94, 95, 158, 189, 191, 247, 271, 281, 292, 318, 331, 341, 345, 368, 369, 375, 386, 461, 464, 465, 475, 477, 480, 483], "labeledscal": 483, "labeledtupl": 474, "labelentri": 375, "labelfram": [375, 376], "laboratori": 426, "lacinia": 149, "lack": [45, 46, 85, 99, 213, 216, 247, 250, 283, 293, 335, 341, 347, 422, 429, 430, 461, 462, 463, 468, 470, 477, 478, 480, 483], "lacus": 149, "ladi": 483, "lag": 308, "lagerwal": 476, "lahey": 466, "lahfa": 483, "laid": 385, "laird": 84, "lakhara": 483, "lalo": 465, "lamb": [337, 441], "lambach": 468, "lambd": [318, 474, 483], "lambda": [68, 87, 102, 103, 108, 122, 126, 133, 144, 147, 160, 167, 181, 190, 226, 235, 255, 261, 283, 299, 318, 340, 344, 358, 364, 367, 385, 388, 389, 390, 399, 420, 427, 428, 431, 433, 435, 442, 445, 462, 463, 464, 466, 467, 468, 470, 471, 477, 478, 482, 483], "lambda_expr": 430, "lambda_kwd": 431, "lambda_param": 431, "lambda_param_maybe_default": 431, "lambda_param_no_default": 431, "lambda_param_with_default": 431, "lambda_paramet": 431, "lambda_slash_no_default": 431, "lambda_slash_with_default": 431, "lambda_star_etc": 431, "lambdatyp": 385, "lambdef": 431, "lambert": [465, 477], "lameiro": 95, "lana": 108, "lanc": [397, 426], "lancelot": [413, 442], "land": [177, 483], "landau": 478, "lander": [477, 480], "landmark": [354, 461, 479, 483], "landri": 483, "landscap": [384, 468], "landschoff": [475, 476, 483], "lang": [80, 84, 85, 101, 109, 230, 266, 340, 395, 454, 463, 464, 465, 467, 470], "lang1": 230, "lang2": 230, "lang3": 230, "langa": [98, 288, 475, 477, 478, 479, 480, 481, 482, 483], "langer": 481, "langinfo": 483, "langner": 479, "languag": [61, 64, 68, 72, 73, 74, 80, 84, 85, 87, 93, 94, 95, 100, 102, 106, 109, 110, 112, 122, 158, 167, 176, 180, 191, 196, 202, 205, 209, 217, 222, 225, 240, 246, 247, 250, 264, 266, 273, 281, 299, 307, 319, 340, 344, 345, 352, 355, 364, 369, 377, 379, 385, 386, 410, 411, 419, 428, 430, 434, 435, 436, 445, 457, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "language1": 230, "lannert": [462, 465], "lantern": 177, "laoreet": 149, "lapeyr": [481, 482, 483], "laptop": 465, "lar": [462, 465, 466, 467, 468, 469, 475, 476], "larch": 167, "larg": [5, 7, 55, 58, 59, 63, 68, 72, 84, 92, 93, 95, 99, 102, 106, 109, 110, 137, 158, 176, 177, 183, 184, 186, 190, 193, 212, 213, 222, 247, 248, 258, 259, 262, 275, 283, 288, 292, 293, 295, 299, 314, 333, 344, 345, 346, 347, 348, 352, 358, 382, 384, 388, 391, 410, 411, 413, 422, 425, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 481, 483], "large_sum": 382, "largefil": [362, 483], "larger": [25, 42, 49, 56, 76, 85, 92, 93, 101, 117, 133, 151, 176, 177, 183, 184, 186, 215, 225, 258, 259, 278, 284, 293, 319, 322, 340, 341, 344, 345, 362, 365, 422, 428, 430, 435, 461, 462, 464, 465, 467, 469, 470, 474, 475, 478, 479, 480, 481, 482, 483], "largest": [95, 100, 108, 167, 183, 186, 275, 322, 344, 352, 362, 462, 463, 464, 465, 466, 467, 468, 476, 483], "largezipfil": 422, "larri": [88, 469, 471, 472, 476, 477, 481, 482, 483], "larson": 483, "last": [9, 22, 23, 25, 26, 33, 34, 45, 59, 63, 67, 73, 76, 78, 84, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 114, 120, 125, 139, 144, 146, 151, 155, 158, 160, 161, 167, 169, 176, 177, 183, 184, 186, 188, 190, 191, 193, 196, 200, 203, 205, 209, 211, 213, 214, 215, 218, 221, 225, 234, 235, 245, 247, 248, 255, 259, 261, 262, 266, 267, 269, 270, 271, 275, 283, 284, 288, 291, 292, 293, 296, 297, 299, 301, 308, 314, 319, 320, 323, 328, 330, 331, 332, 337, 339, 340, 342, 344, 345, 347, 348, 352, 358, 365, 366, 369, 376, 378, 381, 382, 384, 386, 387, 388, 389, 390, 394, 395, 405, 406, 410, 413, 415, 422, 427, 428, 429, 430, 432, 435, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "last_accept": 283, "last_day": 307, "last_exc": [23, 352, 381, 474, 483], "last_login": 468, "last_month": 307, "last_nam": [167, 175, 319], "last_nod": 235, "last_traceback": [23, 297, 352, 428, 450, 474, 483], "last_typ": [23, 352, 450, 470, 474, 483], "last_valu": [23, 94, 211, 352, 381, 450, 474, 483], "last_week": 307, "lastaccess": 468, "lastchild": 410, "lastcmd": 155, "lasterror": [176, 468], "lastgroup": 319, "lasti": [191, 483], "lastindex": 319, "lastnam": [226, 340, 475, 481], "lastresort": [101, 267, 475], "lastrowid": [340, 479, 483], "lastupdatedordereddict": 160, "lat_long": 481, "late": [85, 92, 190, 462, 483], "latenc": [269, 293, 441, 469, 472, 479], "latent": 480, "later": [13, 22, 23, 24, 27, 33, 34, 42, 45, 61, 72, 73, 75, 76, 84, 92, 95, 96, 101, 102, 103, 106, 110, 120, 125, 138, 139, 141, 149, 151, 152, 155, 158, 167, 169, 176, 177, 183, 191, 196, 202, 205, 230, 235, 243, 247, 250, 255, 261, 265, 266, 267, 268, 270, 279, 283, 292, 293, 299, 319, 325, 328, 331, 333, 337, 340, 341, 352, 358, 362, 381, 386, 388, 395, 400, 421, 427, 428, 430, 432, 436, 455, 456, 461, 462, 463, 464, 465, 468, 469, 470, 473, 474, 475, 477, 478, 480, 482, 483], "latest": [71, 85, 151, 183, 186, 226, 247, 253, 399, 422, 461, 467, 469, 471, 474, 475, 476, 477, 479, 483], "latex": [106, 468, 482], "latex_latin1": 482, "latin": [16, 68, 106, 109, 120, 136, 158, 195, 223, 239, 319, 331, 340, 358, 387, 430, 464, 465, 468, 471, 475, 478, 479, 480, 482, 483], "latin1": [34, 136, 158, 299, 314, 467, 476, 479, 482, 483], "latin10": 158, "latin2": [158, 340], "latin3": 158, "latin4": 158, "latin5": 158, "latin6": 158, "latin7": 158, "latin8": 158, "latin9": 158, "latin_1": [158, 195, 483], "latitud": [85, 345], "latter": [5, 7, 23, 42, 73, 85, 106, 110, 120, 133, 144, 167, 183, 184, 196, 201, 205, 209, 215, 247, 250, 255, 259, 267, 268, 276, 292, 293, 299, 308, 332, 337, 340, 344, 347, 369, 375, 376, 384, 386, 388, 400, 427, 428, 429, 430, 431, 432, 436, 461, 465, 470, 475, 476, 477, 480, 482, 483], "lauder": [464, 465], "laugh": [409, 476, 483], "launch": [132, 186, 283, 293, 348, 352, 362, 403, 461, 462, 475, 476, 477, 481, 483], "launcher": [68, 399, 421, 448, 458, 459, 469, 476, 477, 479, 480, 483], "launcheron": 461, "launchpad": 468, "laura": 483, "laurent": 483, "lavi": 483, "law": [141, 235, 336, 343, 349, 366, 426, 467, 483], "lawrenc": [481, 482, 483], "lawrenz": 483, "lawson": 466, "lawsuit": 426, "lax": [244, 467, 483], "lay": [102, 215], "layer": [6, 9, 20, 25, 26, 32, 39, 56, 60, 61, 68, 75, 102, 305, 335, 337, 341, 347, 419, 455, 462, 465, 468, 481, 482, 483], "layout": [34, 42, 61, 63, 68, 76, 100, 101, 102, 158, 189, 213, 271, 341, 347, 355, 368, 369, 373, 398, 428, 432, 445, 461, 468, 474, 476, 477, 483], "layoutspec": 376, "layzel": 483, "lazar": 483, "lazarus": 227, "lazi": [68, 88, 95, 103, 135, 225, 280, 341, 344, 352, 359, 386, 405, 427, 436, 467, 472, 474, 478, 480, 483], "lazier": 283, "lazili": [62, 166, 216, 243, 261, 344, 386, 388, 389, 427, 429, 430, 472, 473, 477, 483], "lazy_import": 250, "lazy_load": 250, "lazy_typ": 250, "lazycach": [265, 478, 483], "lazyload": [250, 478, 479, 483], "lbl": 369, "lbrace": 377, "lbyl": 87, "lc": [270, 483], "lc_": 266, "lc_all": [230, 266, 362, 452, 455, 473, 480, 483], "lc_collat": 266, "lc_ctype": [34, 59, 87, 109, 266, 293, 344, 455, 479, 480, 483], "lc_letter": 434, "lc_messag": [230, 266], "lc_monetari": [266, 483], "lc_numer": [266, 344, 478, 479, 480, 483], "lc_time": [150, 266], "lc_type": [478, 483], "lcd": 475, "lchflag": [293, 468], "lchmod": [293, 296, 468, 483], "lchown": [293, 465], "lci": 341, "lcm": [275, 482, 483], "lcmapstringex": 483, "lcov": 477, "lcy1134": 341, "ld": [9, 72, 77, 176, 344, 456], "ld_library_path": [176, 479, 483], "ld_so_aix": 483, "ldconfig": [176, 483], "ldcxxshare": 469, "ldexp": [275, 318, 483], "ldflag": [72, 456, 465, 483], "ldflags_nodist": 456, "ldgettext": [473, 481], "ldj": 248, "ldl": 72, "ldngettext": [473, 481], "ldshare": [456, 483], "ldversion": 483, "le": [25, 95, 109, 158, 200, 291, 463, 471, 476], "leach": 413, "lead": [7, 18, 28, 39, 63, 64, 73, 75, 78, 85, 94, 99, 100, 101, 102, 106, 139, 150, 151, 155, 163, 167, 183, 186, 190, 193, 196, 199, 205, 208, 221, 225, 228, 243, 245, 247, 250, 255, 258, 259, 267, 269, 271, 275, 276, 283, 293, 297, 299, 308, 314, 318, 337, 344, 347, 352, 354, 356, 358, 359, 362, 364, 365, 366, 381, 388, 394, 395, 400, 410, 413, 422, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 465, 466, 467, 468, 470, 474, 476, 477, 479, 480, 481, 482, 483], "leader": [293, 331, 483], "leaf": [104, 235, 293, 377, 386, 483], "leaf_siz": [235, 483], "leak": [7, 33, 38, 45, 59, 60, 73, 100, 102, 225, 227, 283, 293, 348, 352, 382, 430, 462, 463, 469, 470, 475, 477, 478, 482, 483], "leakag": 483, "lean": 483, "leander": 469, "leandro": 95, "leap": [87, 101, 106, 183, 366], "leapday": 150, "learn": [71, 73, 75, 77, 79, 80, 84, 87, 92, 93, 95, 96, 103, 106, 109, 151, 176, 186, 193, 247, 275, 299, 331, 340, 369, 384, 411, 464, 465, 467, 468, 469, 475, 479, 480, 483], "learner": 384, "least": [5, 28, 34, 41, 49, 61, 63, 66, 72, 73, 76, 84, 85, 93, 99, 102, 103, 106, 109, 115, 120, 136, 149, 153, 158, 160, 176, 177, 183, 186, 190, 193, 194, 200, 203, 208, 215, 221, 226, 232, 234, 242, 248, 258, 261, 269, 270, 275, 292, 293, 308, 309, 318, 328, 332, 333, 335, 337, 341, 343, 344, 345, 347, 348, 352, 355, 359, 361, 362, 365, 366, 378, 380, 382, 386, 388, 389, 406, 422, 426, 427, 428, 430, 431, 434, 436, 461, 465, 468, 469, 470, 474, 476, 479, 480, 482, 483], "leav": [5, 23, 31, 60, 64, 66, 75, 76, 92, 95, 100, 102, 103, 109, 120, 138, 140, 167, 169, 177, 184, 186, 191, 193, 196, 205, 213, 226, 235, 243, 247, 250, 258, 269, 271, 275, 283, 292, 293, 340, 341, 358, 362, 365, 369, 384, 388, 405, 427, 432, 434, 436, 442, 456, 462, 464, 465, 466, 467, 468, 469, 476, 479, 483], "leaveok": [92, 177], "led": [100, 167, 293, 463, 476, 479, 483], "lee": [110, 466, 467, 469, 473, 475, 480, 483], "leender": 483, "leffler": 337, "left": [5, 15, 33, 34, 47, 63, 64, 72, 73, 75, 92, 95, 102, 103, 106, 109, 122, 141, 146, 149, 155, 157, 160, 167, 176, 177, 181, 183, 186, 190, 191, 193, 196, 212, 216, 225, 226, 228, 235, 247, 250, 267, 268, 269, 271, 281, 283, 292, 293, 295, 297, 302, 314, 319, 324, 331, 337, 340, 341, 344, 345, 348, 364, 365, 369, 375, 376, 384, 386, 387, 388, 395, 400, 411, 427, 428, 430, 432, 435, 436, 456, 461, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 478, 480, 481, 483], "left_list": 216, "left_on": 216, "left_volum": 295, "leftarrow": 247, "leftmost": [106, 147, 160, 190, 193, 226, 235, 319, 430, 466, 480, 481], "leftov": [191, 292], "leftright": 384, "leftshift": 377, "leftshiftequ": 377, "leg": 94, "legaci": [5, 23, 33, 58, 68, 75, 163, 164, 194, 196, 202, 205, 206, 209, 217, 235, 250, 255, 256, 270, 288, 292, 293, 332, 340, 341, 347, 352, 362, 388, 422, 432, 435, 455, 461, 469, 474, 475, 476, 477, 479, 481, 482, 483], "legacy_funct": [388, 475], "legacy_pars": 386, "legacy_transaction_control": 340, "legacy_windows_fs_encod": [33, 34, 59, 474], "legacy_windows_stdio": [33, 34, 474], "legacybase64testcas": 483, "legacyinterpol": [473, 474, 483], "legal": [11, 77, 92, 109, 225, 241, 247, 258, 297, 366, 369, 376, 420, 426, 430, 435, 463, 464, 465, 467, 468, 469, 483], "legal_char": 319, "legalchar": 478, "legend": 42, "lehmann": 466, "lehtinen": 476, "lehtosalo": 478, "leif": 468, "leitch": 483, "lekma": 469, "lel": 472, "lele": [480, 483], "lemburg": [109, 230, 340, 462, 463, 464, 465, 467], "len": [7, 8, 9, 22, 38, 40, 41, 49, 54, 55, 60, 68, 76, 85, 87, 93, 94, 96, 102, 106, 107, 109, 114, 141, 142, 147, 149, 151, 160, 161, 166, 170, 176, 188, 190, 191, 193, 211, 215, 225, 226, 230, 235, 236, 242, 247, 261, 269, 278, 283, 284, 288, 291, 292, 293, 296, 305, 318, 320, 335, 337, 340, 341, 343, 344, 347, 362, 382, 385, 389, 400, 407, 408, 410, 413, 427, 428, 435, 440, 441, 442, 443, 449, 450, 451, 462, 465, 466, 467, 468, 469, 470, 471, 473, 475, 476, 477, 478, 481, 483], "lend": [99, 464], "lenfunc": [57, 63], "length": [5, 7, 9, 22, 23, 24, 34, 35, 49, 54, 55, 56, 58, 59, 60, 63, 64, 68, 73, 75, 79, 85, 92, 93, 94, 95, 96, 98, 100, 102, 109, 110, 117, 120, 121, 141, 142, 146, 158, 174, 176, 177, 184, 186, 190, 191, 195, 196, 201, 202, 205, 207, 208, 215, 225, 242, 245, 248, 254, 259, 261, 262, 268, 269, 270, 271, 275, 278, 283, 292, 293, 308, 314, 319, 320, 328, 332, 335, 337, 340, 341, 345, 347, 352, 358, 361, 364, 365, 366, 376, 385, 386, 388, 393, 395, 400, 405, 408, 410, 415, 419, 422, 423, 424, 427, 428, 430, 435, 436, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "length_hint": [49, 291, 428, 477], "length_in_bit": 235, "length_requir": 241, "lengthi": [92, 95, 106, 261, 462, 463, 464, 465, 466, 475, 483], "lengthier": [462, 463], "lenient": 483, "lennart": [469, 483], "lenton": 468, "leo": [86, 149], "leoast": 122, "leon": [478, 483], "lesher": [469, 483], "lesli": [478, 483], "less": [24, 25, 33, 34, 39, 56, 59, 64, 73, 76, 78, 85, 100, 102, 103, 106, 108, 109, 112, 133, 139, 147, 149, 151, 153, 158, 177, 183, 186, 193, 196, 215, 226, 228, 234, 235, 244, 247, 251, 258, 259, 261, 267, 270, 278, 283, 293, 297, 299, 307, 308, 319, 332, 333, 337, 340, 341, 344, 345, 348, 352, 358, 362, 365, 366, 369, 375, 376, 377, 381, 386, 388, 395, 400, 410, 427, 428, 430, 436, 463, 464, 465, 466, 467, 468, 471, 474, 475, 477, 478, 479, 481, 482, 483], "less_than_10": 95, "lessequ": 377, "lesser": 483, "lesson": 103, "let": [23, 42, 66, 72, 73, 76, 79, 84, 85, 92, 93, 94, 95, 96, 101, 102, 103, 106, 109, 110, 120, 139, 155, 161, 167, 169, 176, 190, 200, 226, 230, 245, 251, 262, 266, 267, 268, 269, 292, 297, 307, 319, 330, 331, 340, 341, 369, 376, 384, 413, 430, 432, 461, 462, 464, 465, 466, 467, 468, 469, 471, 473, 474, 475, 477, 480, 483], "letter": [84, 92, 106, 109, 158, 177, 178, 186, 190, 193, 228, 266, 267, 292, 296, 297, 301, 319, 341, 344, 345, 364, 376, 387, 394, 395, 422, 430, 435, 442, 449, 462, 464, 466, 467, 468, 469, 470, 474, 476, 478, 479, 480, 483], "lev": 483, "levarag": 483, "level": [7, 13, 16, 22, 23, 31, 32, 33, 34, 42, 43, 59, 63, 68, 73, 74, 75, 79, 84, 85, 93, 94, 95, 96, 98, 100, 103, 109, 110, 115, 118, 120, 122, 125, 129, 133, 135, 136, 137, 139, 146, 149, 152, 158, 160, 163, 164, 167, 169, 170, 177, 180, 181, 183, 190, 191, 193, 194, 202, 204, 207, 212, 213, 223, 225, 226, 230, 234, 242, 243, 245, 247, 248, 250, 251, 255, 256, 258, 261, 268, 269, 270, 271, 279, 281, 282, 283, 285, 288, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 321, 322, 324, 329, 330, 331, 332, 333, 334, 335, 337, 340, 341, 347, 352, 354, 355, 356, 358, 359, 360, 362, 364, 365, 369, 375, 376, 381, 385, 388, 395, 399, 400, 403, 410, 411, 413, 415, 419, 422, 424, 425, 427, 428, 429, 430, 431, 432, 435, 436, 440, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "levelnam": [101, 102, 267, 268, 269, 283, 466, 469, 475], "levelno": [102, 267], "levenshtein": 483, "leverag": [139, 252, 283, 477, 482], "levinson": 468, "levitt": 477, "levkivskyi": [479, 480, 481, 483], "lewi": [472, 483], "lexer": 331, "lexic": [240, 255, 296, 331, 357, 378, 415, 428, 430, 434, 435, 480, 483], "lexicalhandl": [68, 273, 466, 472, 483], "lexicograph": [108, 261, 344, 430, 442, 467], "lexist": [294, 466, 481, 483], "lf": [66, 178, 208, 435, 483], "lfactor": 141, "lflag": 361, "lfs_cflag": 306, "lgamma": [275, 469, 475], "lgettext": [473, 481, 483], "lhl": 347, "lhs": 191, "li": [64, 411, 478, 480, 483], "liabil": [151, 426], "liabl": [283, 426], "liam": 483, "lib": [34, 35, 72, 77, 79, 84, 86, 89, 95, 96, 98, 112, 113, 116, 117, 120, 122, 123, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 147, 149, 150, 151, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 166, 167, 169, 171, 172, 173, 175, 176, 177, 178, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 216, 218, 220, 221, 223, 226, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 276, 279, 281, 283, 284, 286, 288, 289, 291, 292, 293, 294, 296, 297, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 316, 317, 318, 319, 321, 323, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 354, 355, 357, 358, 359, 360, 364, 365, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 430, 438, 450, 452, 453, 455, 456, 460, 461, 462, 463, 464, 465, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "lib1": [102, 456], "lib2": 102, "lib2to3": [68, 87, 187, 473, 474, 482, 483], "lib64": [296, 352, 354, 456, 482, 483], "lib_dir": 456, "lib_path": 399, "lib_pypi": 89, "libarch": 358, "libb2": [473, 483], "libbsd": 483, "libbz2": 176, "libc": [176, 257, 293, 303, 348, 456, 467, 483], "libc_ver": [303, 483], "libcrypt": [473, 483], "libcrypto": 483, "libcst": [112, 122, 482], "libcurs": 483, "libdest": 475, "libdir": [355, 460], "libdl": 483, "libedit": [320, 483], "liber": [146, 193], "liberti": 427, "libexpat": 483, "libffi": [68, 469, 473, 480, 483], "libgcc_": 483, "liblzma": [270, 473], "libm": [176, 456, 483], "libman": 483, "libmpdec": [68, 186, 456, 476, 483], "libnet": 483, "libnsl": [473, 483], "libpl": 483, "libpuzzl": 223, "libpython": [98, 456, 472, 473, 481, 483], "libpython2": 465, "libpython3": [98, 483], "libpython38": [481, 483], "libpythonmajor": [456, 472, 483], "librari": [7, 23, 33, 34, 42, 45, 51, 59, 63, 66, 68, 71, 72, 73, 74, 77, 79, 80, 84, 85, 91, 92, 95, 98, 100, 106, 107, 108, 109, 110, 118, 120, 123, 133, 139, 142, 163, 167, 169, 177, 178, 183, 184, 186, 187, 192, 193, 194, 203, 208, 212, 228, 230, 235, 243, 247, 251, 257, 266, 267, 269, 275, 282, 283, 287, 292, 293, 296, 299, 302, 308, 313, 314, 320, 328, 330, 331, 333, 334, 337, 340, 341, 344, 348, 352, 354, 355, 356, 358, 362, 365, 366, 369, 375, 378, 384, 386, 388, 390, 394, 399, 400, 410, 422, 425, 427, 428, 430, 432, 433, 434, 435, 436, 445, 454, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 484], "libraries_assembly_name_prefix": [282, 469], "library_dir": 167, "libraryload": 176, "librat": 483, "libray": 483, "libreadlin": [320, 483], "libregrtest": 483, "libressl": [480, 483], "librt": 483, "libsqlite3": 473, "libssl": 480, "libtclsam": 81, "libtirpc": 483, "libtksam": 81, "libtomcrypt": 483, "libtommath": 483, "libuuid": 483, "libwww": [243, 466], "libxcrypt": 483, "libz": 483, "licens": [86, 103, 123, 168, 247, 251, 271, 307, 352, 426, 448, 450, 453, 464, 481, 483], "license": 426, "licensor": 426, "licht": 483, "lidral": [482, 483], "lie": [183, 242, 250, 269, 283, 376, 386, 428, 436, 464, 465], "liechtenstein": 413, "lieu": [278, 426], "life": [68, 87, 105, 167, 226, 299, 340, 358, 368, 410, 422, 441, 461, 462, 468, 481, 483], "lifecycl": [469, 477], "lifespan": 255, "lifetim": [5, 42, 68, 73, 85, 158, 169, 293, 405, 430, 463, 476, 479, 480, 483], "lifo": [68, 124, 160, 316, 344, 388], "lifoqueu": [124, 134, 316, 344, 468, 483], "lift": [110, 353, 384, 474, 479, 480, 481], "ligatur": 158, "light": [115, 176, 177, 468, 469, 471, 483], "lightweight": [84, 216, 226, 340, 381, 399, 461, 462, 467, 468, 478, 479], "ligocki": 468, "like": [5, 7, 13, 23, 25, 28, 31, 33, 34, 42, 43, 45, 49, 51, 55, 56, 58, 60, 61, 63, 64, 66, 68, 73, 74, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 99, 100, 101, 103, 106, 109, 110, 112, 117, 120, 121, 126, 129, 133, 136, 139, 141, 144, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 163, 167, 169, 175, 176, 177, 181, 182, 183, 184, 186, 190, 191, 193, 196, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 213, 214, 215, 218, 225, 226, 228, 229, 230, 231, 233, 234, 235, 237, 242, 243, 244, 245, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 283, 292, 293, 294, 295, 296, 297, 299, 301, 304, 307, 308, 309, 310, 311, 313, 314, 319, 321, 324, 328, 330, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 349, 352, 353, 355, 358, 359, 360, 361, 362, 365, 366, 369, 375, 376, 378, 381, 382, 383, 384, 385, 386, 388, 390, 394, 395, 397, 400, 401, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "likelihood": [235, 343, 481], "likewis": [33, 55, 85, 94, 112, 120, 186, 190, 208, 209, 267, 271, 338, 384, 415, 434, 435, 475, 476, 483], "lima": 483, "limburg": 441, "limit": [7, 13, 23, 34, 35, 57, 59, 61, 63, 64, 68, 75, 85, 92, 94, 95, 98, 102, 106, 112, 119, 120, 132, 133, 136, 137, 139, 142, 149, 158, 163, 169, 173, 184, 186, 191, 201, 207, 208, 214, 215, 225, 226, 235, 247, 248, 254, 257, 261, 268, 270, 276, 282, 283, 285, 292, 293, 295, 299, 307, 308, 312, 314, 319, 321, 324, 330, 333, 334, 337, 340, 341, 343, 348, 352, 358, 362, 365, 375, 381, 382, 384, 391, 405, 407, 410, 413, 421, 426, 428, 429, 430, 432, 434, 435, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "limit_denomin": 221, "limit_sl_dest": [163, 482, 483], "limitoverrunerror": [127, 136, 483], "limor": 483, "lin": [472, 473, 483], "lin2adpcm": [141, 483], "lin2alaw": 141, "lin2lin": 141, "lin2ulaw": 141, "lindblad": 468, "lindenmay": 384, "line": [13, 23, 24, 26, 33, 34, 64, 66, 68, 72, 73, 76, 84, 85, 89, 92, 94, 95, 96, 98, 100, 101, 102, 103, 106, 109, 110, 112, 113, 118, 119, 122, 125, 136, 137, 142, 143, 144, 146, 149, 150, 151, 152, 155, 157, 158, 159, 160, 167, 169, 170, 175, 176, 177, 178, 183, 185, 186, 187, 188, 193, 195, 196, 199, 200, 201, 202, 204, 205, 207, 208, 213, 214, 218, 222, 223, 225, 228, 230, 234, 240, 242, 245, 247, 248, 250, 251, 254, 255, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 272, 278, 281, 282, 283, 288, 292, 296, 297, 299, 301, 302, 305, 307, 308, 312, 313, 314, 319, 321, 324, 331, 332, 334, 335, 340, 341, 344, 345, 347, 348, 352, 353, 354, 359, 362, 363, 364, 367, 369, 375, 377, 381, 382, 384, 386, 387, 396, 399, 400, 403, 407, 411, 413, 416, 420, 421, 426, 427, 428, 429, 430, 431, 432, 433, 434, 436, 440, 441, 442, 443, 446, 448, 449, 451, 452, 453, 455, 456, 458, 462, 463, 464, 465, 467, 468, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "line_buff": 258, "line_info": 483, "line_list": 95, "line_num": [175, 319, 467], "line_numb": 353, "line_start": 319, "linear": [85, 103, 132, 141, 161, 169, 190, 261, 328, 343, 344, 349, 384, 440, 465, 477, 481, 483], "linear_prob": 477, "linear_regress": [343, 472, 483], "linebreak": 64, "linecach": [68, 219, 254, 382, 483], "linecount": 151, "linefe": [146, 208, 331, 345, 435, 465], "linefmt": 267, "linejunk": 190, "linend": 175, "lineno": [23, 98, 122, 144, 167, 188, 191, 193, 213, 218, 255, 262, 265, 267, 286, 297, 299, 308, 312, 314, 319, 331, 362, 381, 382, 388, 400, 428, 431, 455, 472, 478, 479, 481, 483], "linesep": [201, 202, 203, 208, 225, 258, 293, 335, 348, 476, 483], "linespac": 372, "linet": 13, "lineterm": 190, "linetermin": [175, 483], "linetoolong": 242, "lingard": 469, "lingl": 468, "link": [34, 35, 63, 66, 68, 71, 73, 74, 77, 78, 79, 84, 85, 86, 87, 101, 102, 118, 142, 161, 163, 178, 183, 200, 212, 235, 240, 243, 245, 257, 259, 261, 266, 293, 296, 328, 332, 342, 348, 352, 354, 357, 358, 362, 369, 375, 376, 399, 403, 405, 413, 414, 426, 428, 432, 455, 456, 462, 464, 465, 466, 468, 469, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "link_to": [472, 473, 481, 483], "linkag": [35, 68, 74, 303], "linkcc": [79, 456], "linkcheck": 483, "linkedlist": 386, "linker": [68, 72, 77, 176, 458, 473, 483], "linkforshar": [72, 483], "linknam": 358, "linkoutsidedestinationerror": [358, 483], "linspac": 344, "lint": [407, 474, 483], "linter": [85, 122, 386], "linux": [33, 34, 51, 68, 71, 72, 80, 83, 84, 92, 93, 97, 98, 115, 118, 132, 176, 177, 186, 212, 214, 215, 230, 247, 257, 258, 269, 278, 283, 295, 306, 309, 322, 326, 328, 332, 333, 337, 342, 348, 352, 355, 358, 360, 362, 365, 366, 369, 383, 395, 448, 455, 456, 458, 461, 462, 463, 465, 466, 467, 468, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "linux2": [352, 476], "linux3": [352, 476], "linux_distribut": [478, 483], "linuxaudiodev": [295, 462, 465, 468], "linuxfr": 341, "linuxjourn": 467, "lion": 160, "lisa": [479, 481, 483], "lisandro": 471, "lisp": [78, 85, 95, 464], "lisp_list": 85, "lisper": 103, "list": [1, 2, 5, 7, 16, 23, 31, 33, 34, 35, 42, 49, 52, 54, 55, 57, 58, 59, 60, 63, 64, 66, 68, 73, 75, 76, 77, 79, 80, 84, 86, 87, 89, 92, 93, 94, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 121, 122, 128, 133, 136, 139, 144, 151, 155, 158, 160, 161, 163, 167, 169, 170, 171, 173, 175, 176, 177, 181, 182, 183, 184, 186, 187, 189, 190, 191, 193, 196, 197, 199, 200, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 216, 218, 220, 223, 225, 226, 227, 228, 230, 231, 233, 235, 236, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 271, 272, 274, 276, 278, 279, 280, 281, 282, 283, 284, 286, 287, 288, 291, 292, 293, 294, 295, 296, 297, 299, 302, 304, 305, 307, 308, 310, 311, 312, 314, 318, 319, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348, 351, 352, 355, 358, 359, 361, 362, 363, 364, 365, 366, 369, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 396, 400, 402, 403, 405, 407, 408, 410, 411, 413, 414, 415, 416, 419, 420, 421, 422, 423, 426, 428, 429, 431, 432, 433, 435, 436, 440, 443, 445, 446, 448, 450, 451, 453, 454, 455, 456, 457, 461, 463, 464, 465, 466, 467, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "list1": 85, "list2": 85, "list_all_object": [95, 466], "list_append": [191, 466], "list_append_pop": [481, 482], "list_attribut": [463, 464], "list_dialect": [175, 483], "list_directori": 245, "list_display": 430, "list_extend": [191, 483], "list_fold": 271, "list_id": 271, "list_nam": 271, "list_new": 483, "list_of_data": 133, "list_of_item": 299, "list_of_list": 261, "list_of_pair": 160, "list_opt": 297, "list_to_tupl": 483, "listbasedset": 161, "listbox": [68, 368, 376, 483], "listcomp": [95, 122, 431, 442], "listdir": [78, 93, 109, 142, 200, 213, 220, 230, 245, 293, 296, 332, 342, 399, 465, 466, 469, 470, 476, 480, 483], "listdriv": [142, 293, 474, 483], "listen": [68, 84, 107, 126, 164, 245, 268, 269, 288, 313, 329, 335, 337, 338, 341, 362, 384, 407, 419, 465, 468, 469, 477, 478, 483], "listener_configur": 102, "listener_process": 102, "listfunc": 380, "listiter": 385, "listmethod": [419, 420], "listmount": [142, 293, 474, 483], "listnotebook": 375, "listobject": 462, "listorset": [386, 427], "listproxi": [283, 483], "liststor": 96, "listvolum": [142, 293, 474, 483], "listwrapp": 78, "listxattr": [142, 293, 476], "lita": [479, 483], "liter": [9, 39, 64, 68, 78, 94, 106, 112, 113, 120, 157, 158, 159, 183, 186, 191, 193, 220, 221, 225, 230, 231, 248, 257, 262, 264, 267, 268, 270, 302, 307, 319, 331, 340, 344, 345, 348, 366, 369, 376, 378, 386, 388, 394, 400, 403, 413, 415, 428, 429, 431, 432, 433, 434, 441, 445, 449, 462, 464, 465, 467, 469, 470, 472, 474, 475, 477, 480, 481, 482, 483, 484], "literal_char": 435, "literal_ev": [122, 225, 468, 475, 480, 483], "literal_expr": 431, "literal_pattern": [427, 431], "literal_str": 386, "literal_text": 345, "literalinclud": 483, "literalstr": [386, 473, 483], "literatur": 103, "litig": 426, "littl": [25, 31, 64, 95, 101, 102, 103, 106, 107, 109, 141, 146, 153, 158, 176, 177, 178, 186, 190, 191, 193, 230, 243, 268, 283, 292, 295, 319, 333, 337, 344, 347, 352, 382, 384, 398, 405, 426, 441, 443, 452, 462, 463, 464, 468, 475, 476, 477, 483], "little2": 426, "little_ord": 344, "littleendianstructur": [176, 483], "littleendianunion": [176, 483], "liu": 483, "live": [28, 63, 67, 73, 84, 102, 151, 183, 207, 223, 247, 248, 250, 251, 253, 255, 283, 293, 299, 305, 340, 341, 358, 394, 400, 402, 410, 425, 428, 446, 461, 462, 463, 464, 470, 475, 483], "ljust": [337, 344, 446, 466, 476], "lk_": 282, "lk_lock": 282, "lk_nblck": 282, "lk_nbrlck": 282, "lk_rlck": 282, "lk_unlck": 282, "ll": [64, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 101, 102, 106, 107, 109, 110, 112, 179, 193, 200, 269, 272, 292, 297, 319, 331, 340, 341, 344, 369, 384, 413, 432, 434, 435, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 481, 482, 483], "llc": 467, "lld": [64, 456, 469], "llength": 465, "llh": 347, "llh0l": 347, "lli": [64, 384], "lll": [467, 483], "llong_max": 39, "llong_min": 39, "lloyd": 434, "lls": 73, "lltrace": 483, "llu": [64, 469], "llvm": [456, 479, 483], "llx": 384, "lm": [72, 344, 435], "lmtp": [335, 468, 476, 482, 483], "lmtp_port": 335, "lmza": 483, "ln": [186, 247, 468, 476, 483], "lname": 229, "lngettext": [473, 481], "lnktype": 358, "lno": 267, "lnotab_not": [352, 479], "lo": [109, 147, 344, 386, 435, 471], "load": [11, 31, 33, 34, 41, 45, 58, 59, 68, 72, 73, 77, 79, 84, 85, 86, 93, 94, 96, 100, 101, 102, 110, 118, 122, 142, 151, 155, 166, 167, 184, 187, 191, 193, 243, 244, 247, 250, 251, 253, 262, 267, 268, 274, 276, 279, 284, 293, 297, 299, 302, 304, 307, 308, 311, 314, 320, 330, 334, 340, 341, 344, 352, 354, 362, 366, 368, 369, 379, 382, 384, 385, 405, 410, 413, 414, 419, 420, 421, 423, 425, 427, 428, 431, 433, 436, 446, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "load_": 483, "load_assertion_error": [191, 482], "load_attr": [191, 472, 474, 483], "load_attr_method_with_dict": 483, "load_attr_modul": 483, "load_attr_slot": 483, "load_attr_split_key": 483, "load_attr_with_hint": 483, "load_build_class": 191, "load_cert_chain": [341, 395, 476], "load_classderef": [191, 474, 477], "load_classdict_or_deref": 483, "load_classdict_or_glob": 483, "load_closur": [191, 483], "load_compil": 474, "load_const": [191, 475, 477, 483], "load_default_cert": [341, 477, 483], "load_deref": 191, "load_dh_param": [341, 476, 483], "load_dynam": [474, 483], "load_extens": [142, 340, 469, 472, 474, 475, 483], "load_fast": [191, 477, 483], "load_fast__load_attr_instance_valu": 483, "load_fast_and_clear": [191, 474], "load_fast_check": [191, 474, 483], "load_from_dict_or_deref": [191, 474, 483], "load_from_dict_or_glob": [191, 474], "load_glob": [191, 481, 483], "load_global_builtin": 483, "load_global_modul": 483, "load_grammar": 483, "load_loc": [191, 474, 483], "load_method": [191, 474, 480, 483], "load_method_cach": 483, "load_method_class": 483, "load_method_modul": 483, "load_modul": [87, 250, 423, 432, 465, 472, 474, 477, 479, 483], "load_nam": [191, 475], "load_nul": 483, "load_packag": [474, 483], "load_package_test": [362, 483], "load_sourc": 474, "load_super_attr": [191, 474, 483], "load_test": [68, 187, 193, 362, 478, 483], "load_url": 166, "load_verify_loc": [341, 395, 477, 483], "load_widget": [169, 475], "loadabl": [33, 63, 100, 250, 307, 340, 456, 461, 483], "loadavg": 465, "loader": [31, 68, 87, 169, 176, 193, 250, 251, 252, 253, 265, 302, 362, 382, 385, 388, 413, 421, 423, 465, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "loader_detail": 250, "loader_st": [250, 483], "loaderror": 243, "loadfiledialog": 189, "loadkey": [142, 405], "loadlibrari": 176, "loadlibraryex": [86, 176, 481], "loadtestsfrom": 388, "loadtestsfrommodul": [362, 388, 473, 474, 478, 483], "loadtestsfromnam": [388, 469], "loadtestsfromtestcas": [388, 473, 483], "loadtk": 369, "loan": 261, "loc": 266, "loc_len": 475, "loc_start": 475, "local": [5, 13, 16, 18, 31, 32, 34, 35, 49, 53, 59, 66, 68, 73, 79, 84, 85, 87, 92, 95, 100, 101, 102, 103, 106, 108, 109, 120, 140, 144, 150, 151, 152, 157, 160, 164, 167, 170, 175, 176, 177, 183, 186, 190, 191, 192, 193, 200, 209, 213, 225, 226, 242, 245, 246, 247, 248, 250, 254, 255, 258, 259, 267, 269, 272, 278, 283, 288, 293, 294, 297, 299, 308, 313, 314, 315, 319, 320, 332, 334, 335, 337, 341, 344, 345, 348, 351, 352, 355, 362, 366, 379, 380, 381, 383, 386, 388, 395, 398, 405, 413, 414, 415, 416, 419, 422, 425, 427, 428, 429, 430, 432, 436, 438, 440, 441, 446, 448, 450, 451, 452, 453, 455, 456, 458, 459, 460, 462, 463, 464, 465, 467, 468, 469, 470, 471, 475, 476, 477, 481, 483, 484], "local0": 269, "local1": 269, "local2": 269, "local3": 269, "local4": 269, "local5": 269, "local6": 269, "local7": 269, "local_addr": [126, 133, 136], "local_clear": 63, "local_cr": [337, 483], "local_creds_persist": [337, 483], "local_fil": 483, "local_filenam": 395, "local_fin": 63, "local_host": 126, "local_hostnam": 335, "local_port": 126, "local_travers": 63, "local_var": 386, "localappdata": 461, "localcach": 461, "localcontext": [186, 344, 467, 468, 483], "localeconv": [266, 344, 452, 479, 480, 483], "localedir": 230, "localehtmlcalendar": [150, 473, 483], "localenam": 266, "localetextcalendar": [150, 473, 483], "localetim": 483, "localhost": [84, 102, 107, 110, 200, 242, 245, 247, 268, 269, 283, 305, 313, 329, 335, 338, 359, 395, 419, 420, 451, 483], "localitynam": 341, "localn": [386, 483], "localnam": [410, 415, 416, 483], "localobject": 63, "localsplus": 473, "localtim": [87, 101, 183, 203, 209, 248, 267, 366, 463, 464, 474, 476, 483], "localtime_r": 483, "localtimezon": 183, "locat": [5, 7, 33, 34, 58, 64, 68, 72, 77, 84, 85, 92, 93, 94, 98, 101, 102, 106, 110, 112, 141, 147, 158, 163, 167, 176, 177, 183, 191, 193, 225, 243, 247, 250, 251, 252, 253, 266, 268, 269, 273, 276, 283, 293, 297, 299, 302, 311, 312, 313, 314, 319, 320, 324, 332, 340, 341, 353, 354, 355, 362, 366, 375, 384, 386, 388, 394, 395, 399, 400, 410, 413, 414, 415, 422, 425, 426, 427, 428, 431, 432, 436, 453, 455, 461, 462, 464, 465, 466, 467, 468, 469, 472, 474, 475, 477, 479, 481, 483], "lock": [5, 31, 32, 51, 63, 68, 73, 76, 84, 87, 96, 100, 102, 115, 124, 142, 164, 166, 167, 169, 176, 212, 215, 226, 241, 258, 267, 269, 270, 271, 282, 283, 293, 305, 316, 322, 324, 330, 333, 338, 340, 342, 352, 362, 369, 386, 402, 428, 452, 462, 464, 466, 467, 468, 469, 470, 473, 474, 475, 478, 480, 481, 482, 483, 484], "lock_": 215, "lock_ex": 215, "lock_held": 474, "lock_nb": 215, "lock_sh": 215, "lock_test": 96, "lock_un": 215, "lockablefil": 464, "lockbox": 475, "lockdata": 215, "lockf": [142, 215, 271, 293, 464, 468, 476, 483], "lockstep": 462, "locktyp": 115, "loewi": 288, "log": [34, 59, 68, 93, 95, 97, 109, 118, 125, 126, 139, 147, 151, 152, 154, 164, 166, 169, 188, 193, 214, 223, 230, 236, 245, 254, 258, 275, 288, 293, 305, 327, 332, 335, 340, 341, 344, 348, 352, 356, 358, 362, 386, 388, 400, 420, 428, 445, 451, 461, 462, 463, 464, 466, 467, 468, 471, 472, 482, 483, 484], "log01": 268, "log02": 268, "log03": 268, "log04": 268, "log05": 268, "log06": 268, "log07": 268, "log1": 475, "log10": [154, 186, 275, 468], "log1p": [275, 468, 483], "log2": [275, 475, 476], "log_": 269, "log_alert": [269, 356], "log_auth": [269, 356], "log_authpriv": [269, 356], "log_button": 102, "log_con": 356, "log_crit": [269, 356], "log_cron": [269, 356], "log_daemon": [269, 356], "log_date_time_str": 245, "log_debug": [269, 356], "log_emerg": [269, 356], "log_err": [269, 356], "log_error": 245, "log_except": 407, "log_filenam": 102, "log_ftp": 269, "log_if_error": 102, "log_info": [269, 356], "log_kern": [269, 356], "log_level": 102, "log_listen": 102, "log_local0": [269, 356], "log_local1": 269, "log_local2": 269, "log_local3": 269, "log_local4": 269, "log_local5": 269, "log_local6": 269, "log_local7": [269, 356], "log_lpr": [269, 356], "log_mail": [269, 356], "log_mask": 356, "log_messag": [245, 483], "log_ndelay": 356, "log_new": [269, 356], "log_notic": [269, 356], "log_nowait": 356, "log_odelay": 356, "log_perror": 356, "log_pid": 356, "log_prefix": 472, "log_request": 245, "log_status": 386, "log_syslog": [269, 356], "log_to_stderr": [283, 483], "log_upto": 356, "log_us": [268, 269, 356], "log_uucp": [269, 356], "log_warn": [269, 356], "loganberri": 442, "logarithm": [68, 186, 290, 295, 465, 468, 471, 475, 476], "logasynciotask": 101, "logb": 186, "logconfig": 268, "logctx": 102, "logdir": [151, 152], "logfil": [102, 151], "loggedaccess": 93, "loggedageaccess": 93, "loggedvar": 386, "logger": [68, 118, 125, 169, 268, 269, 283, 332, 356, 386, 388, 465, 469, 471, 475, 476, 477, 478, 480, 481, 482, 483], "logger1": 102, "logger2": 102, "logger_log01": 268, "logger_nam": 102, "logger_pars": 268, "logger_root": [101, 268], "logger_simpleexampl": 101, "logger_thread": 102, "loggeradapt": [68, 118, 469, 483], "loggerwrit": 102, "logging_rotatingfile_exampl": 102, "loggingcontext": 102, "logic": [7, 68, 84, 85, 95, 100, 102, 114, 139, 161, 169, 177, 181, 191, 193, 207, 221, 232, 256, 267, 269, 270, 271, 281, 290, 293, 296, 302, 319, 344, 345, 356, 362, 369, 373, 377, 386, 388, 427, 436, 462, 465, 466, 468, 469, 474, 476, 480, 481, 483], "logical_and": 186, "logical_invert": 186, "logical_or": 186, "logical_xor": 186, "login": [102, 173, 223, 248, 286, 288, 293, 335, 339, 359, 395, 475, 483], "login_cram_md5": 248, "login_tti": [293, 483], "loglevel": 101, "logmultiprocess": 101, "lognam": [102, 229, 293], "lognormvari": 318, "logo": [240, 384, 426], "logopt": [142, 356], "logout": [248, 478, 481, 483], "logprocess": 101, "logrecord": [68, 101, 118, 269, 388, 465, 477, 483], "logrecordsocketreceiv": 102, "logrecordstreamhandl": 102, "logrequest": 420, "logrot": 269, "logtest7": 102, "logthread": 101, "logtyp": 269, "lollipop": 479, "lombardo": 483, "lone": [308, 335, 430, 483], "long": [4, 5, 6, 9, 18, 22, 23, 31, 33, 34, 35, 39, 41, 45, 58, 59, 60, 61, 63, 64, 66, 68, 73, 75, 84, 85, 95, 98, 100, 101, 102, 106, 107, 110, 112, 120, 121, 139, 143, 146, 167, 169, 176, 177, 190, 193, 202, 208, 212, 215, 223, 225, 226, 228, 242, 245, 247, 248, 258, 259, 261, 267, 268, 283, 292, 293, 299, 303, 305, 306, 307, 308, 319, 321, 328, 330, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 358, 362, 364, 365, 366, 369, 375, 376, 381, 395, 400, 405, 410, 411, 425, 427, 428, 430, 435, 455, 461, 462, 463, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "long_add": 483, "long_binget": 483, "long_descript": 258, "long_info": 469, "long_invert": 483, "long_max": [5, 18, 39, 483], "long_min": 39, "long_rshift": 483, "long_running_task": 139, "long_timeout": [362, 483], "longbyt": 435, "longbyteschar": 435, "longbytesitem": 435, "longer": [5, 7, 22, 23, 31, 34, 39, 45, 58, 59, 61, 63, 64, 67, 68, 71, 73, 85, 92, 94, 95, 100, 101, 105, 110, 117, 120, 126, 141, 158, 167, 176, 177, 190, 191, 199, 201, 208, 225, 226, 235, 242, 245, 248, 250, 251, 255, 259, 261, 265, 268, 269, 271, 283, 284, 292, 293, 307, 309, 311, 314, 319, 325, 328, 332, 337, 340, 341, 344, 347, 348, 352, 353, 358, 362, 364, 365, 366, 376, 381, 382, 383, 384, 386, 388, 399, 400, 410, 411, 412, 413, 414, 422, 428, 430, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 478, 479, 480, 481, 482, 483], "longest": [190, 259, 261, 435, 464, 467, 478], "longest_match_length": 320, "longhand": 259, "longintrepr": [473, 483], "longitud": [85, 345], "longlink": 358, "longlist": 297, "longmessag": [110, 245, 388, 469, 483], "longnam": [177, 358, 483], "longobject": 483, "longopt": 228, "longpathsen": 461, "longstand": [293, 474, 476, 483], "longstr": 435, "longstringchar": 435, "longstringitem": 435, "longval": 462, "look": [18, 28, 33, 42, 45, 49, 51, 63, 64, 72, 73, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 101, 102, 103, 105, 106, 109, 110, 112, 120, 139, 141, 151, 158, 167, 169, 176, 177, 180, 181, 183, 186, 189, 190, 191, 193, 196, 197, 199, 203, 205, 213, 225, 226, 230, 234, 243, 245, 247, 250, 251, 259, 265, 267, 268, 269, 271, 292, 293, 295, 302, 308, 313, 319, 324, 332, 338, 340, 344, 345, 348, 352, 354, 355, 362, 369, 376, 378, 381, 382, 385, 386, 387, 388, 389, 390, 395, 410, 413, 423, 425, 427, 428, 429, 430, 432, 435, 436, 443, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 476, 477, 479, 481, 483], "lookahead": [68, 319, 427, 431, 466], "lookalik": 465, "lookbehind": [319, 478, 483], "lookdict_str": 96, "lookup": [16, 17, 22, 31, 61, 63, 68, 77, 85, 94, 147, 158, 160, 181, 191, 195, 203, 213, 225, 226, 230, 245, 255, 259, 269, 287, 293, 344, 345, 351, 352, 369, 376, 381, 387, 425, 427, 432, 462, 464, 466, 467, 468, 474, 475, 476, 477, 479, 481, 482, 483], "lookup_error": [158, 465], "lookup_lin": 381, "lookup_nam": 386, "lookuperror": [14, 23, 64, 158, 170, 213, 344, 450, 477], "loongarch": [474, 483], "loongarch64": [474, 483], "loop": [45, 64, 66, 68, 73, 92, 95, 96, 101, 102, 106, 123, 124, 125, 126, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 157, 159, 176, 177, 184, 186, 189, 191, 196, 205, 218, 225, 232, 257, 261, 269, 283, 297, 308, 309, 319, 332, 333, 337, 338, 341, 344, 348, 352, 362, 365, 367, 369, 381, 384, 388, 412, 413, 420, 427, 428, 429, 430, 431, 435, 436, 440, 441, 456, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "loop_detect": 241, "loop_factori": [135, 474, 483], "loop_overhead": [481, 482], "loopback": [247, 259, 362, 483], "loopback_timeout": [362, 483], "loos": [243, 365, 483], "lope": 477, "loper": 466, "lord": 106, "lordmauv": 483, "lordthorsen": [479, 483], "lorem": 149, "lorentsen": [472, 480, 483], "lorenz": [468, 483], "lorenzo": [475, 477], "los_angel": [425, 482], "lose": [42, 94, 106, 167, 183, 186, 213, 243, 269, 271, 318, 319, 340, 348, 462, 469, 475, 483], "loss": [141, 186, 225, 243, 258, 271, 275, 366, 395, 421, 426, 430, 464, 466, 468, 475, 479, 480, 481, 483], "lossless": [68, 186, 190, 378, 428, 474, 475, 483], "lost": [73, 94, 101, 102, 109, 133, 177, 183, 186, 201, 226, 247, 262, 267, 269, 283, 308, 332, 333, 335, 338, 426, 427, 444, 462, 464, 475, 476, 477, 482, 483], "lot": [64, 68, 73, 75, 77, 79, 84, 85, 96, 101, 106, 109, 110, 151, 169, 170, 176, 184, 193, 200, 234, 245, 259, 283, 292, 304, 308, 330, 338, 348, 374, 382, 399, 462, 463, 464, 465, 466, 468, 469, 470, 477, 482, 483], "loud": 470, "louie": [479, 480, 483], "louisom": 483, "louko": 467, "loup": 426, "love": [73, 102, 147, 175, 244, 441, 471, 477], "lovett": 469, "low": [13, 16, 33, 38, 60, 63, 64, 68, 75, 84, 96, 101, 106, 109, 115, 129, 130, 133, 135, 136, 137, 139, 146, 167, 169, 177, 178, 191, 213, 225, 267, 281, 293, 308, 318, 319, 328, 329, 330, 333, 335, 337, 340, 341, 343, 344, 352, 356, 369, 386, 400, 413, 415, 428, 456, 464, 465, 467, 468, 469, 476, 478, 479, 481, 483], "lower": [33, 64, 68, 72, 84, 85, 87, 92, 96, 102, 103, 106, 122, 133, 139, 146, 155, 158, 160, 163, 167, 177, 178, 180, 186, 195, 196, 200, 202, 203, 205, 211, 225, 226, 236, 245, 267, 271, 283, 288, 293, 308, 319, 322, 325, 337, 340, 344, 352, 365, 366, 375, 377, 384, 386, 394, 395, 400, 428, 430, 436, 463, 465, 466, 467, 468, 469, 471, 475, 477, 482, 483], "lower_bound": [344, 430], "lower_cas": 483, "lowercas": [64, 106, 109, 155, 158, 167, 186, 196, 205, 235, 248, 259, 305, 319, 344, 352, 364, 435, 470, 483], "lowercase_with_underscor": 441, "lowercaseddict": 475, "lowerright": 176, "lowest": [34, 42, 101, 122, 186, 191, 221, 236, 278, 341, 344, 348, 365, 430, 462, 467, 479], "lowin": 483, "lownd": 468, "loys": 483, "lp": [102, 270, 473], "lp1": 471, "lp64_wp": 467, "lp_c_long": 176, "lpadesc": 176, "lpapplicationnam": 348, "lpar": [377, 378, 483], "lpattributelist": [348, 480], "lpcaption": 176, "lpcommandlin": 348, "lpcstr": 176, "lpcwstr": 176, "lpmodulenam": 176, "lpr": 269, "lprect": 176, "lprefix": 144, "lproxi": 283, "lpt1": 483, "lptdesc": 176, "lptext": 176, "lpthread": 72, "lpython3": [72, 481, 483], "lri": 177, "lrt": 456, "lru": [160, 226, 483], "lru_cach": [85, 160, 220, 226, 261, 475, 476, 478, 481, 483], "lrx": 177, "ls": [73, 89, 102, 137, 177, 331, 348, 358, 359, 478], "lsampl": 141, "lseek": [293, 467, 476], "lshift": [122, 291, 431], "lsprof": 308, "lsqb": 377, "lst": [161, 297], "lstat": [293, 294, 296, 342, 362, 474, 476, 481, 483], "lstrip": [344, 465, 483], "lsub": 248, "lt": [95, 122, 291, 344, 384, 417, 431, 435, 463, 475], "lt_bitwise_or": 431, "ltcl8": 473, "ltd": [80, 341, 426], "lte": [122, 431], "lte_bitwise_or": 431, "ltk8": 473, "ltkstub8": 473, "lto": [35, 456, 473, 483], "ltrace": 483, "lts": 480, "lu": [9, 344, 387, 435, 462, 477, 479, 480, 483], "lua": 452, "luca": [93, 235, 477, 478, 483], "lucasfilm": 80, "lucent": 426, "luciano": 483, "luck": 410, "lucki": [92, 176], "luckili": [73, 388], "luctus": 149, "ludov": 483, "lue": 475, "luethi": 483, "lum": 482, "lumberjack": [167, 307, 381], "lumberstack": 381, "lundh": [0, 85, 95, 426, 462, 463, 464, 466, 467, 469, 475], "lutil": 72, "lutz": 369, "lv": 471, "lvalu": [9, 292, 344], "lvl": 102, "lvlname": 102, "lwn": 476, "lwp": 96, "lwpcookiejar": [243, 483], "lx11": 73, "ly": 319, "lyapun": 477, "lynn": 467, "lynx": [243, 403, 466], "lysandro": [472, 474, 482, 483], "lzc": 270, "lzf": 270, "lzl": 483, "lzma": [68, 119, 149, 254, 332, 358, 362, 409, 422, 451, 472, 477, 483], "lzmacompressor": [270, 483], "lzmadecompressor": [270, 478, 483], "lzmaerror": 270, "lzmafil": [270, 477, 483], "m1": [93, 261, 347, 473], "m10": 366, "m2": [261, 464, 469, 473, 476], "m3": [94, 366, 473], "m4": [366, 456, 483], "m68k": 483, "m_": 78, "m_base": [45, 76], "m_clear": [45, 100, 482, 483], "m_doc": [45, 76], "m_expr": 430, "m_free": [45, 100, 482, 483], "m_method": [45, 483], "m_name": [35, 45, 76], "m_reload": 45, "m_size": [45, 76, 100, 482, 483], "m_slot": 45, "m_state": 483, "m_travers": [45, 100, 482, 483], "ma": [304, 472, 473, 483], "ma_fil": 96, "ma_lookup": 96, "ma_mask": 96, "ma_smallt": 96, "ma_tabl": 96, "ma_us": 96, "ma_version_tag": [474, 483], "maart": 435, "mac": [68, 225, 235, 274, 303, 332, 341, 376, 398, 456, 458, 470, 472, 474, 475, 477, 479, 480, 483], "mac1": 235, "mac2": 235, "mac_centeuro": [158, 483], "mac_cyril": 158, "mac_greek": 158, "mac_iceland": 158, "mac_key": 235, "mac_latin2": [158, 483], "mac_roman": 158, "mac_turkish": 158, "mac_ver": [303, 483], "macaddr": 483, "maccentraleurop": 158, "maccyril": 158, "macedonian": 158, "macerror": 468, "macf": 468, "macgreek": 158, "machalow": 474, "machdep": 483, "machin": [33, 51, 64, 73, 84, 87, 96, 101, 102, 133, 158, 177, 178, 183, 200, 212, 230, 243, 255, 260, 268, 269, 270, 272, 283, 284, 288, 293, 296, 303, 308, 313, 333, 335, 337, 340, 341, 347, 365, 420, 421, 428, 434, 456, 461, 462, 463, 464, 467, 468, 469, 471, 474, 475, 476, 480, 481, 483], "machineri": [23, 45, 63, 68, 73, 87, 93, 102, 158, 209, 225, 251, 255, 268, 280, 302, 341, 352, 385, 406, 423, 428, 432, 455, 461, 463, 464, 466, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "macholib": 483, "maciceland": 158, "maciej": [478, 483], "macintosh": [87, 158, 435, 462, 465], "macintyr": [465, 467], "maclatin2": 158, "macmillan": 462, "maco": [33, 34, 57, 68, 80, 81, 83, 84, 85, 98, 109, 111, 115, 118, 133, 176, 184, 215, 257, 269, 278, 283, 293, 304, 308, 309, 320, 328, 330, 332, 333, 334, 337, 340, 341, 342, 352, 355, 362, 365, 366, 368, 369, 373, 376, 383, 395, 403, 426, 439, 453, 455, 458, 459, 462, 463, 464, 465, 467, 468, 469, 472, 473, 474, 479, 480], "macostool": 468, "macosx": [355, 403, 459, 473, 474, 475, 483], "macosx_deployment_target": [293, 483], "macosxosascript": [403, 483], "macpath": [68, 481, 483], "macports_dir": 167, "macpython": [459, 464], "macresourc": 468, "macro": [4, 5, 6, 17, 23, 28, 33, 34, 35, 42, 43, 44, 45, 50, 55, 56, 59, 60, 63, 64, 68, 73, 76, 176, 286, 352, 362, 456, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "macrom": 459, "macroman": 158, "macturkish": 158, "macurl2path": 483, "macvim": 459, "made": [11, 31, 33, 43, 58, 59, 63, 66, 72, 85, 94, 101, 102, 103, 105, 106, 108, 112, 120, 133, 139, 158, 160, 167, 169, 176, 177, 183, 186, 191, 193, 196, 199, 200, 205, 208, 213, 230, 242, 247, 250, 255, 258, 267, 268, 269, 278, 281, 283, 293, 297, 299, 307, 308, 314, 320, 321, 322, 324, 328, 331, 332, 333, 334, 335, 337, 344, 348, 353, 358, 362, 365, 369, 382, 394, 400, 410, 413, 419, 420, 421, 425, 426, 427, 428, 436, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "madison": 483, "madler": 426, "madv_": 68, "madv_autosync": 278, "madv_cor": 278, "madv_dodump": 278, "madv_dofork": 278, "madv_dontdump": 278, "madv_dontfork": 278, "madv_dontne": 278, "madv_fre": 278, "madv_free_reus": 278, "madv_hugepag": 278, "madv_hwpoison": 278, "madv_merg": 278, "madv_nocor": 278, "madv_nohugepag": 278, "madv_norm": 278, "madv_nosync": 278, "madv_protect": 278, "madv_random": 278, "madv_remov": 278, "madv_sequenti": 278, "madv_soft_offlin": 278, "madv_unmerg": 278, "madv_willne": 278, "madvis": [278, 481, 483], "maecena": 149, "magenta": [92, 94, 177, 452], "maggi": [472, 481], "magic": [31, 68, 85, 87, 115, 167, 176, 187, 193, 200, 230, 250, 308, 341, 349, 365, 366, 386, 422, 425, 426, 462, 463, 465, 477, 478, 479, 480, 483], "magic_arithmet": 473, "magic_html_pars": 200, "magic_numb": [250, 474, 477], "magickmock": 483, "magicmock": [68, 187, 478, 483], "magicproxi": 483, "magicstack": [426, 483], "magiera": 474, "magna": 149, "magnifi": 466, "magnitud": [183, 186, 262, 275, 344, 345, 462, 476], "magnus": [464, 465], "mahler": 395, "mahn": 475, "mahon": 483, "maier": 483, "mail": [78, 80, 84, 95, 100, 102, 103, 105, 106, 194, 195, 196, 200, 202, 205, 217, 248, 269, 271, 272, 288, 293, 335, 341, 356, 388, 426, 452, 454, 462, 463, 464, 465, 466, 467, 468, 475, 478, 483], "mail_admin": 102, "mail_opt": [335, 478, 483], "mailbox": [68, 85, 194, 201, 248, 254, 285, 305, 467, 469, 479, 482, 483], "mailcap": [68, 254, 350, 472, 473, 474, 483], "maildir": [271, 467, 469, 483], "maildirmailbox": 85, "maildirmessag": [68, 285], "mailer": 209, "mailhost": [102, 268, 269], "mailman": [80, 464, 466, 473, 482, 483], "mailmanproxi": [473, 482, 483], "mailport": 102, "mailserv": 305, "mailto": [394, 426], "main": [23, 33, 34, 42, 45, 59, 63, 66, 68, 72, 73, 75, 76, 84, 85, 92, 93, 96, 100, 101, 102, 114, 115, 120, 123, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 151, 155, 157, 166, 167, 169, 170, 177, 185, 188, 190, 193, 194, 196, 199, 200, 201, 204, 205, 206, 208, 226, 228, 230, 240, 247, 250, 251, 252, 255, 267, 268, 271, 283, 288, 292, 293, 299, 309, 322, 324, 333, 334, 338, 340, 344, 347, 352, 354, 355, 356, 358, 362, 365, 369, 375, 376, 382, 384, 386, 388, 389, 390, 395, 399, 411, 413, 415, 419, 420, 421, 428, 429, 432, 450, 451, 452, 455, 458, 461, 464, 465, 467, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "main_in_temp_cwd": 382, "main_log": 84, "main_modul": 483, "main_pag": 96, "main_pid": 483, "main_thread": [365, 477], "maincc": 483, "mainfn": 421, "mainloop": [81, 247, 369, 376, 384, 483], "mainmenu": 483, "mainprocess": 283, "maint": 460, "maintain": [22, 33, 73, 84, 92, 94, 100, 102, 103, 108, 120, 147, 158, 167, 169, 176, 181, 186, 196, 207, 208, 213, 225, 248, 250, 251, 255, 266, 292, 307, 308, 325, 338, 347, 352, 355, 366, 375, 388, 400, 403, 412, 425, 430, 432, 434, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 476, 477, 478, 480, 481, 482, 483], "maintainer_email": [307, 483], "mainten": [68, 435, 461, 474, 475, 476, 477, 480, 481, 482, 483, 484], "mainthread": [102, 483], "maintyp": [196, 197, 200, 201, 203, 204, 205], "majek": 426, "majewski": 463, "majkowski": 426, "major": [33, 68, 77, 93, 94, 109, 110, 122, 167, 177, 183, 187, 194, 203, 206, 208, 230, 235, 243, 267, 292, 293, 303, 305, 313, 344, 352, 355, 358, 394, 461, 462, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 481, 482, 483], "majorvers": 354, "make": [5, 10, 11, 23, 33, 39, 45, 51, 59, 63, 64, 68, 72, 73, 75, 76, 84, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 108, 109, 110, 112, 113, 120, 133, 139, 141, 149, 151, 155, 157, 158, 160, 161, 163, 167, 169, 170, 176, 177, 179, 181, 183, 186, 190, 191, 193, 196, 197, 200, 205, 206, 209, 212, 213, 215, 218, 221, 222, 225, 226, 230, 234, 235, 242, 245, 247, 250, 252, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 275, 279, 281, 283, 288, 289, 292, 293, 295, 296, 297, 299, 302, 308, 312, 314, 322, 328, 329, 330, 331, 333, 334, 337, 338, 340, 341, 343, 344, 347, 352, 353, 355, 358, 362, 363, 364, 365, 369, 376, 378, 380, 381, 385, 386, 388, 394, 395, 398, 400, 403, 407, 411, 412, 413, 416, 421, 422, 426, 427, 428, 430, 432, 434, 435, 436, 456, 460, 461, 463, 464, 465, 466, 467, 468, 470, 471, 475, 476, 477, 480, 481, 482, 483, 484], "make_": 196, "make_altern": 205, "make_an_item_avail": 365, "make_another_request": 139, "make_arch": [142, 332, 469, 474, 475, 478, 481, 483], "make_bad_fd": 362, "make_box_of_str": 386, "make_cel": [191, 473, 483], "make_closur": [479, 483], "make_connect": [365, 419], "make_cooki": [243, 483], "make_dataclass": [181, 483], "make_encod": 483, "make_fil": [190, 478, 483], "make_funct": [191, 472, 479, 483], "make_head": [202, 476], "make_incrementor": 441, "make_legacy_pyc": [362, 483], "make_mix": 205, "make_msgid": [200, 209, 483], "make_new_us": 386, "make_opt": 292, "make_pars": [412, 414, 416, 462, 483], "make_pkg": 362, "make_rel": 205, "make_request": 139, "make_request_with_timeout": 139, "make_script": 362, "make_serv": [407, 467], "make_ssl_data": 483, "make_t": 190, "make_zip": 483, "make_zip_pkg": 362, "make_zip_script": 362, "makedev": [293, 465, 483], "makedict": 279, "makedir": [84, 293, 296, 474, 478, 480, 483], "makeel": 413, "makefil": [33, 68, 72, 73, 79, 231, 235, 258, 296, 337, 341, 355, 428, 458, 462, 463, 468, 469, 474, 476, 477, 478, 479, 483], "makelocalealia": 483, "makelogrecord": [102, 267, 269], "makemak": 343, "makepickl": [102, 269], "makerecord": [102, 267], "makesetup": [456, 473, 483], "makesocket": 269, "makesometh": 388, "makesomethingdb": 388, "makesuit": [473, 474, 483], "maketran": [160, 344, 471, 475, 478, 483], "makeunicodedata": 483, "makoto": [426, 483], "malaysia": 413, "malcolm": [98, 319, 469, 475, 479, 483], "male": 343, "maletski": 483, "malform": [88, 158, 186, 199, 225, 242, 258, 271, 466, 468, 475, 483], "malformedheaderdefect": 199, "malfunct": 426, "malici": [33, 109, 268, 299, 314, 348, 352, 358, 411, 412, 413, 414, 419, 420, 455, 468, 483], "mallard": 477, "malley": [426, 465], "malloc": [5, 7, 34, 42, 73, 78, 213, 282, 293, 424, 455, 462, 463, 465, 467, 477, 478, 479, 483], "malloc_debug": [42, 455], "malloc_stat": 34, "malm": 101, "malt": 477, "maltes": 158, "man": [92, 173, 271, 293, 313, 322, 328, 333, 337, 342, 366, 369, 375, 383, 469, 483], "man1": 483, "man7": 483, "manag": [5, 17, 28, 33, 42, 61, 63, 68, 74, 76, 87, 96, 101, 110, 120, 124, 128, 137, 139, 144, 151, 158, 164, 176, 184, 186, 191, 194, 203, 218, 225, 243, 244, 245, 247, 250, 252, 254, 267, 271, 278, 284, 285, 293, 295, 298, 299, 308, 315, 328, 329, 330, 337, 338, 341, 348, 352, 355, 358, 359, 360, 362, 365, 368, 374, 376, 384, 388, 390, 395, 403, 419, 421, 422, 426, 427, 434, 453, 459, 460, 461, 462, 465, 466, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "manage_cloud": 475, "managed_resourc": 169, "manager_own": 483, "manda": 318, "mandat": [196, 205, 248, 262, 319, 366, 479], "mandatori": [58, 76, 84, 225, 242, 248, 250, 268, 293, 342, 465, 476, 480, 482, 483], "mandatoryreleas": [113, 483], "mandeep": [480, 483], "mandelbrot": 85, "manfr": 446, "mangl": [85, 196, 225, 321, 430, 435, 436, 440, 477, 483], "mangle_from": 483, "mangle_from_": [196, 201, 208, 478], "manhattan_dist": 473, "manheaderlen": 201, "mani": [7, 13, 33, 34, 63, 64, 72, 73, 75, 76, 79, 84, 92, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 128, 133, 137, 139, 143, 158, 163, 167, 169, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 203, 208, 212, 225, 230, 235, 242, 243, 244, 247, 250, 259, 261, 265, 267, 275, 278, 283, 288, 292, 293, 295, 298, 299, 305, 307, 308, 314, 319, 325, 328, 330, 332, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 375, 380, 381, 384, 385, 386, 395, 403, 405, 406, 410, 415, 427, 428, 432, 434, 436, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "manifest": [225, 362, 469, 483], "manipul": [7, 13, 33, 34, 42, 45, 55, 68, 73, 76, 95, 99, 102, 144, 169, 176, 177, 183, 186, 194, 205, 207, 259, 269, 271, 283, 293, 308, 324, 331, 332, 334, 337, 342, 344, 352, 369, 375, 376, 394, 410, 413, 420, 425, 432, 455, 462, 465, 468, 476, 477, 479, 481, 482, 483], "manner": [56, 73, 85, 92, 101, 102, 167, 245, 268, 270, 292, 307, 311, 313, 319, 321, 348, 386, 388, 400, 415, 427, 428, 432, 456, 465, 467, 468, 483], "manoli": 472, "manpag": [176, 293, 337, 479, 483], "mant_dig": [352, 468], "mantissa": [318, 466, 468], "manual": [33, 45, 61, 68, 72, 73, 77, 79, 84, 85, 92, 93, 95, 100, 102, 109, 112, 120, 132, 133, 139, 164, 176, 177, 185, 193, 197, 206, 215, 225, 267, 271, 283, 292, 293, 302, 304, 313, 320, 328, 337, 340, 341, 344, 356, 358, 361, 365, 366, 368, 375, 386, 410, 413, 421, 424, 428, 434, 451, 456, 460, 461, 462, 463, 464, 465, 466, 468, 469, 470, 474, 476, 477, 478, 480, 481, 483], "manual_upd": 102, "manuel": [480, 481, 483], "manufactur": 281, "map": [16, 22, 32, 33, 34, 42, 49, 50, 59, 65, 66, 68, 75, 78, 79, 84, 85, 87, 93, 94, 95, 102, 103, 104, 109, 110, 112, 122, 155, 158, 160, 161, 166, 169, 170, 175, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 212, 213, 216, 217, 225, 226, 230, 236, 242, 245, 247, 254, 255, 259, 261, 267, 268, 269, 270, 271, 272, 273, 276, 278, 279, 280, 281, 283, 287, 288, 291, 292, 293, 295, 298, 299, 308, 312, 314, 318, 319, 321, 322, 329, 337, 340, 341, 343, 345, 346, 347, 348, 352, 362, 365, 366, 367, 376, 377, 384, 385, 386, 387, 394, 395, 402, 411, 413, 415, 416, 430, 431, 432, 436, 440, 441, 442, 444, 450, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483], "map01": 143, "map_": 68, "map_add": [191, 481], "map_aligned_sup": [278, 483], "map_anon": 278, "map_anonym": 278, "map_async": [283, 468, 476], "map_conc": [278, 483], "map_denywrit": 278, "map_execut": 278, "map_popul": [278, 483], "map_priv": 278, "map_shar": 278, "map_stack": [278, 483], "map_table_b2": 346, "map_table_b3": 346, "map_to_typ": 203, "maplogrecord": 269, "mapnam": 287, "mapping_pattern": [427, 431], "mappingproxi": 344, "mappingproxytyp": [22, 181, 225, 344, 385, 427, 472, 474, 476, 483], "mappingsubclass": 440, "mappingview": [161, 344, 386, 483], "mapprior": 269, "mapresult": 483, "mar": [93, 94, 95, 183, 343, 434, 441, 464, 468], "marangozov": [462, 463, 465], "marat": [480, 483], "marc": [109, 230, 340, 462, 463, 464, 465, 467, 476, 483], "marcel": [482, 483], "march": [150, 183, 344, 366, 384, 451, 462, 466, 477], "marcin": 475, "marco": 483, "marek": 426, "marg": 481, "mari": [93, 337, 441], "marian": [479, 483], "mariatta": [479, 483], "mario": [472, 480, 483], "marius": [109, 462], "mariusz": 483, "mark": [22, 23, 28, 34, 58, 61, 64, 75, 84, 93, 96, 98, 102, 106, 109, 112, 117, 120, 130, 133, 139, 144, 158, 166, 167, 177, 181, 190, 191, 193, 205, 230, 236, 240, 247, 255, 262, 269, 271, 297, 300, 305, 314, 328, 337, 340, 344, 348, 359, 362, 369, 380, 386, 388, 410, 415, 426, 428, 430, 431, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "markcoroutinefunct": [255, 474, 483], "markdown": [258, 472], "marker": [47, 98, 109, 117, 149, 158, 170, 191, 193, 225, 255, 258, 270, 297, 299, 340, 341, 377, 386, 400, 456, 476, 479, 480, 483], "market": 467, "markovitch": 462, "markowitz": 483, "markthisstringfortransl": 230, "markup": [68, 217, 254, 314, 410, 419, 468, 475, 476, 483], "markupbas": 470, "markus": [478, 483], "marshal": [32, 65, 68, 85, 142, 158, 254, 262, 269, 298, 379, 419, 465, 466, 469, 478, 483], "mart": 483, "marta": [474, 483], "martelli": [465, 468], "martijn": 483, "martin": [109, 230, 288, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 481, 483], "maru": 469, "maruch": 462, "masayuki": [480, 483], "mashal": 483, "mask": [63, 68, 176, 177, 256, 293, 322, 329, 332, 333, 337, 342, 353, 356, 369, 376, 405, 428, 466, 468, 475, 476, 482, 483], "maskpri": [142, 356], "masquerad": [247, 483], "mass": [84, 94, 183, 462], "massiv": [299, 466, 467, 478, 483], "mast": [482, 483], "master": [106, 109, 189, 193, 292, 293, 295, 299, 309, 319, 369, 370, 373, 374, 376, 384, 468, 483], "master_doc": 483, "master_open": [474, 483], "master_read": 309, "mat": [426, 469, 482, 483], "match": [5, 11, 22, 23, 33, 42, 45, 61, 63, 64, 68, 73, 78, 85, 92, 94, 95, 96, 101, 102, 109, 110, 118, 136, 139, 141, 144, 151, 155, 163, 167, 177, 183, 186, 190, 191, 193, 196, 197, 203, 204, 205, 208, 213, 216, 220, 225, 226, 228, 242, 243, 246, 247, 248, 251, 255, 261, 264, 267, 268, 270, 272, 283, 287, 288, 293, 296, 297, 302, 308, 311, 314, 318, 320, 323, 331, 332, 333, 337, 340, 341, 344, 345, 347, 348, 352, 358, 359, 362, 363, 366, 369, 375, 376, 378, 381, 382, 383, 385, 386, 388, 394, 395, 400, 403, 410, 411, 413, 415, 420, 425, 429, 430, 431, 433, 435, 443, 445, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "match_arg": [181, 386, 483], "match_cas": 122, "match_case_ti": 431, "match_class": [191, 473], "match_equ": 390, "match_foo": 390, "match_hostnam": [341, 472, 474, 475, 477, 478, 480, 483], "match_key": [191, 473], "match_map": 191, "match_sequ": 191, "match_stmt": [427, 431], "match_test": 382, "match_valu": 362, "match_wrong": 390, "matcha": [122, 483], "matchclass": [122, 483], "matcher": [362, 390], "matchfil": 483, "matchmap": [122, 483], "matchobj": 319, "matchor": [122, 483], "matchsequ": [122, 483], "matchsingleton": [122, 483], "matchstar": [122, 483], "matchvalu": [122, 483], "matej": [478, 483], "materi": [77, 95, 106, 177, 190, 234, 337, 341, 375, 426, 466, 469, 483], "math": [68, 87, 95, 154, 166, 186, 193, 212, 221, 225, 254, 261, 283, 289, 290, 318, 343, 344, 347, 352, 384, 426, 428, 430, 442, 444, 446, 451, 456, 465, 466, 468, 469, 471, 483], "mathemat": [47, 95, 106, 183, 186, 261, 275, 290, 344, 428, 430, 466, 468, 478, 483], "mathematisch": [33, 69, 426], "mathewson": 464, "mathia": 477, "mathieu": 483, "mathmodul": 84, "mathsclass": 283, "mathworld": 261, "matlab": 343, "matmul": [261, 291, 478, 483], "matmult": [122, 431], "matplotlib": 483, "matric": [261, 288, 463], "matrix": [47, 68, 85, 225, 261, 384, 426, 430, 442, 463, 481, 483], "matsumoto": [318, 426], "matt": [469, 477, 478, 483], "matter": [85, 93, 94, 102, 109, 163, 193, 208, 247, 250, 253, 266, 292, 293, 338, 340, 344, 352, 361, 376, 386, 388, 400, 428, 431, 461, 462, 464, 466, 467, 468, 469, 477, 483], "matthew": [200, 473, 477, 483], "matthia": [85, 469, 472, 474, 476, 479, 480, 481, 483], "matthieu": 483, "mattia": [471, 475], "mattip": 483, "matusiak": 483, "matveev": [472, 474, 481, 483], "maupin": 468, "maureira": 474, "mauro": 483, "max": [5, 87, 95, 108, 120, 141, 154, 160, 183, 186, 225, 226, 236, 243, 244, 261, 275, 318, 340, 341, 343, 344, 352, 400, 427, 430, 440, 450, 467, 469, 474, 475, 477, 481, 483], "max_10_exp": 352, "max_count": [203, 208], "max_delay": 362, "max_denomin": 221, "max_depth": 413, "max_digest_s": 235, "max_digit": 362, "max_emax": [186, 476], "max_ev": 328, "max_exp": [87, 352], "max_group_depth": [381, 483], "max_group_width": [381, 483], "max_interpolation_depth": 167, "max_key_s": 235, "max_length": [149, 270, 424, 478, 483], "max_lin": [364, 477], "max_line_length": [196, 205, 208, 476, 483], "max_mag": 186, "max_memus": 362, "max_num_field": [394, 483], "max_path": [68, 458, 479, 483], "max_prec": [186, 476], "max_prefixlen": 259, "max_py_ssize_t": 362, "max_siz": [360, 386], "max_struct_s": 483, "max_tasks_per_child": [166, 483], "max_wbit": 424, "max_work": [102, 126, 166, 475, 483], "maxag": 160, "maxarray": 321, "maxbyt": [102, 268, 269, 469], "maxbytecount": 369, "maxchar": 64, "maxconnect": 365, "maxcount": 64, "maxdata": 483, "maxdepth": 413, "maxdequ": 321, "maxdict": 321, "maxdiff": [388, 475], "maxdigit": [186, 352], "maxev": 328, "maxfd": 337, "maxfrozenset": 321, "maxheaderlen": [196, 201, 205, 477], "maxim": [141, 190, 191, 196, 235, 247, 362, 440, 481, 483], "maximov": 483, "maximum": [7, 25, 59, 64, 85, 93, 95, 101, 102, 106, 115, 139, 141, 151, 158, 163, 167, 176, 177, 186, 190, 195, 202, 203, 208, 213, 235, 247, 261, 262, 269, 270, 275, 278, 281, 283, 288, 293, 299, 305, 307, 319, 320, 321, 322, 329, 337, 339, 340, 341, 343, 348, 352, 358, 364, 365, 376, 378, 382, 384, 388, 394, 395, 413, 435, 455, 462, 464, 465, 467, 468, 469, 475, 476, 478, 479, 480, 483], "maximum_support": 341, "maximum_vers": [341, 472, 480, 483], "maxint": [112, 470], "maxitem": 386, "maxk": 483, "maxlen": [151, 160, 261, 386, 468, 469], "maxlength": [195, 283], "maxlevel": [163, 307, 321], "maxlin": [479, 480, 483], "maxlinelen": 202, "maxlist": 321, "maxlong": 321, "maxmem": 235, "maxoth": 321, "maxpp": 141, "maxrequest": 160, "maxset": 321, "maxsiz": [85, 93, 112, 134, 160, 220, 225, 226, 283, 303, 316, 344, 352, 362, 369, 428, 450, 470, 475, 481, 483], "maxsplit": [64, 106, 319, 344], "maxstr": 321, "maxtasksperchild": [283, 469, 483], "maxtri": 395, "maxtupl": 321, "maxunicod": [352, 450, 476], "maxval": 384, "maxvalu": 93, "maxwel": 483, "maxyear": [183, 483], "may": [5, 7, 9, 10, 11, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 43, 45, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 115, 117, 120, 122, 128, 132, 133, 138, 139, 141, 144, 146, 149, 150, 151, 155, 157, 158, 159, 161, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 215, 216, 218, 221, 223, 225, 226, 228, 230, 231, 233, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 282, 283, 287, 288, 289, 292, 293, 295, 297, 299, 301, 302, 305, 307, 311, 312, 313, 314, 319, 320, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "mayank": [478, 483], "mayb": [34, 73, 94, 95, 271, 400, 431, 434, 472], "maybe_dtrace_lin": 98, "maybe_sequence_pattern": [427, 431], "maybe_star_pattern": [427, 431], "mayfield": 483, "maystr": 477, "maze": 92, "mazin": 466, "mazur": 483, "mb": [469, 483], "mb_iconasterisk": 406, "mb_iconexclam": 406, "mb_iconhand": 406, "mb_iconquest": 406, "mb_ok": 406, "mbambo": 89, "mbcs": [16, 33, 34, 68, 145, 352, 455, 461, 464, 465, 475, 476, 479, 483], "mbox": [68, 196, 201, 285, 467, 483], "mboxmailbox": 85, "mboxmessag": [68, 205, 285], "mboxo": 271, "mbstowc": 34, "mbtn": 376, "mbuf": 322, "mc": [435, 483], "mca": 483, "mcafe": 86, "mcclure": 477, "mccormick": 483, "mccracken": 483, "mcculli": 483, "mcet": 483, "mcfluff": 319, "mcguir": [469, 471], "mcintyr": [467, 468], "mckellar": 478, "mckinnon": 483, "mclay": 464, "mclean": 483, "mcls": [93, 382], "mcmillan": [85, 107, 465], "mcnamara": [465, 467], "md": 258, "md2": 475, "md4": 475, "md5": [173, 235, 237, 248, 335, 340, 341, 398, 456, 467, 468, 469, 470, 474, 475, 477, 481, 482, 483], "md5sum": [340, 483], "mdc2": 475, "mdiff": 483, "mdt": 183, "me": [84, 103, 200, 226, 240, 288, 345, 362, 453, 461, 468, 473, 474], "me_hash": 96, "me_key": 96, "me_valu": 96, "meador": [469, 476, 483], "mean": [5, 7, 13, 22, 23, 27, 31, 33, 34, 42, 45, 59, 61, 63, 64, 66, 67, 73, 75, 76, 84, 93, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 115, 117, 120, 122, 133, 139, 141, 144, 151, 155, 158, 163, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 196, 202, 203, 205, 206, 207, 208, 209, 214, 215, 216, 218, 220, 225, 226, 228, 233, 234, 235, 242, 243, 244, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 281, 283, 288, 292, 293, 297, 299, 301, 307, 308, 311, 314, 318, 319, 321, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 361, 362, 365, 366, 369, 376, 381, 384, 385, 386, 388, 394, 395, 397, 400, 405, 410, 413, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "meaning": [63, 106, 193, 235, 250, 255, 259, 268, 271, 283, 293, 314, 319, 337, 341, 352, 382, 385, 395, 428, 434, 436, 470, 475, 477, 478, 483], "meaningless": [33, 109, 463, 464, 477, 483], "meant": [49, 61, 101, 102, 133, 139, 141, 158, 213, 230, 250, 308, 337, 362, 369, 386, 395, 422, 431, 461, 467, 468, 469, 472, 475, 476, 477, 478, 480, 481, 483], "meantim": [33, 483], "meanwhil": 386, "measur": [68, 92, 93, 133, 139, 141, 186, 190, 222, 226, 299, 308, 322, 334, 338, 366, 369, 372, 382, 441, 462, 465, 466, 467, 468, 469, 474, 476, 477, 480, 481, 482, 483], "mechan": [7, 11, 28, 33, 45, 61, 63, 73, 75, 79, 84, 85, 92, 93, 94, 101, 102, 106, 108, 139, 169, 176, 181, 193, 197, 203, 226, 243, 244, 245, 246, 248, 251, 259, 260, 266, 267, 268, 269, 271, 272, 292, 297, 299, 302, 314, 319, 322, 324, 333, 335, 337, 338, 341, 344, 352, 358, 365, 369, 375, 376, 385, 388, 395, 400, 423, 426, 428, 432, 435, 436, 462, 463, 464, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 481, 482, 483], "media": [110, 153, 281, 293, 319, 426], "median": [93, 318, 343, 451, 477, 483], "median_group": [343, 483], "median_high": 343, "median_low": 343, "medium": [55, 94, 178, 186, 426, 466, 467, 483], "meerkat": 464, "meet": [93, 95, 102, 140, 169, 186, 190, 193, 299, 344, 395, 426, 428, 462, 466], "mefistot": 482, "mega": 375, "megabyt": 151, "mehdi": 483, "mei": 435, "meier": 235, "meili": [481, 483], "melbourn": 366, "melero": 483, "melin": 477, "melotti": [109, 469, 475, 476, 477, 478], "mem": [7, 42, 43], "mem1": 340, "mem_0d": 483, "member": [5, 26, 31, 33, 34, 35, 45, 50, 56, 59, 61, 63, 68, 73, 75, 76, 112, 149, 163, 167, 176, 177, 181, 184, 191, 211, 213, 233, 234, 244, 245, 248, 268, 270, 293, 299, 311, 313, 315, 332, 337, 339, 340, 341, 342, 343, 344, 347, 352, 358, 362, 366, 378, 385, 386, 388, 389, 422, 427, 428, 430, 465, 466, 467, 468, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "member_delet": 93, "member_get": 93, "member_nam": [94, 472], "member_repr": 93, "member_set": 93, "member_sinc": 481, "memberdescriptortyp": [385, 483], "membernam": 483, "membership": [68, 92, 94, 99, 151, 178, 233, 293, 344, 428, 442, 466, 475, 483], "memberst_mtim": 464, "memcpi": [64, 473, 483], "memf": 456, "memfd": [293, 483], "memfd_creat": [215, 293, 481, 483], "memlen": 7, "memlevel": 424, "memlimit": 270, "memmov": [176, 468], "memo": [171, 299, 300, 431, 479, 483], "memoiz": [85, 139, 226, 463, 479, 483], "memorandum": 271, "memorecord": 299, "memori": [5, 7, 23, 28, 31, 32, 33, 34, 41, 43, 45, 47, 49, 55, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 85, 87, 93, 95, 96, 100, 101, 102, 106, 107, 108, 109, 115, 119, 132, 137, 151, 158, 176, 184, 185, 186, 207, 212, 213, 214, 225, 234, 235, 247, 250, 255, 258, 261, 269, 271, 278, 283, 284, 293, 299, 314, 322, 330, 332, 333, 337, 338, 340, 347, 348, 352, 358, 362, 365, 386, 389, 405, 406, 411, 413, 421, 422, 428, 435, 442, 455, 456, 462, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 479, 480, 481, 482, 483], "memorybio": [341, 478, 483], "memoryerror": [9, 23, 55, 60, 64, 122, 186, 213, 395, 450, 477, 483], "memoryhandl": [68, 101, 102, 118, 268, 483], "memoryobject": [476, 478], "memorysanit": 456, "memoryview": [5, 7, 16, 68, 87, 112, 145, 225, 254, 284, 299, 332, 337, 352, 386, 427, 428, 450, 470, 474, 475, 477, 478, 481, 483, 484], "memset": [49, 176, 483], "memus": 362, "mend": 483, "mendoza": [472, 473], "mental": 483, "mention": [73, 75, 76, 77, 95, 99, 102, 106, 109, 167, 176, 177, 191, 193, 214, 215, 225, 262, 267, 268, 271, 283, 292, 293, 331, 334, 338, 354, 362, 427, 428, 432, 434, 435, 436, 462, 470, 474, 476, 477, 480, 482, 483], "menu": [68, 92, 368, 369, 375, 384, 428, 461, 467, 471, 475, 479, 480, 481, 482, 483], "menubutton": 376, "menudef": 483, "menus": [68, 368, 369, 483], "merchant": 426, "merci": [102, 428], "mercuri": [94, 343, 475, 477, 483], "mere": [85, 169, 183, 193, 225, 284, 292, 333, 348, 352, 384, 426, 427, 470], "merejkowski": 483, "merg": [22, 68, 85, 87, 92, 93, 95, 101, 102, 103, 177, 183, 193, 213, 236, 267, 269, 282, 292, 293, 344, 380, 386, 426, 452, 456, 461, 462, 465, 468, 469, 474, 478, 483], "merge_consts_recurs": 483, "meridian": 366, "merri": 483, "mersenn": [68, 318, 465], "mertz": [95, 103], "merzouki": 481, "mesg_num": 305, "mesgnum": 305, "mess": [92, 120, 292, 464], "messag": [5, 23, 33, 34, 54, 59, 66, 68, 72, 73, 75, 76, 79, 84, 85, 89, 92, 95, 99, 106, 109, 110, 120, 126, 133, 136, 142, 144, 146, 151, 155, 157, 158, 163, 176, 177, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 206, 207, 208, 209, 212, 213, 228, 235, 242, 243, 245, 246, 247, 248, 250, 255, 259, 262, 267, 268, 269, 272, 279, 283, 285, 288, 292, 293, 297, 305, 311, 314, 319, 322, 331, 333, 335, 337, 338, 341, 342, 352, 356, 357, 358, 359, 362, 373, 375, 378, 381, 386, 388, 395, 399, 400, 413, 414, 415, 419, 421, 427, 429, 431, 436, 446, 449, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 482, 483], "message_bodi": 242, "message_factori": [207, 208, 479], "message_from_binary_fil": [200, 207, 208, 475], "message_from_byt": [207, 475], "message_from_fil": [204, 207], "message_from_str": [207, 476], "message_id": 288, "message_num": 248, "message_part": 248, "message_set": 248, "message_spec": 288, "messagebeep": [406, 479, 483], "messagebox": [68, 176, 189, 254, 368, 369, 483], "messageboxw": 176, "messageclass": 245, "messagedefect": 199, "messageerror": 199, "messagefil": 200, "messageidhead": 203, "messageparseerror": [199, 271], "messi": [95, 465, 469], "messier": [95, 106, 464, 465, 469], "met": [33, 63, 75, 93, 94, 95, 101, 190, 341, 426, 467, 481, 483], "meta": [60, 68, 87, 112, 122, 151, 177, 178, 220, 231, 250, 251, 292, 352, 395, 428, 464, 474, 476, 477, 479, 483], "meta_path": [34, 87, 142, 250, 251, 302, 352, 432, 436, 450, 461, 465, 476, 479, 483], "metabas": 407, "metacharact": [68, 272, 319, 348, 466], "metaclass": [61, 68, 87, 93, 94, 112, 116, 122, 176, 211, 225, 226, 255, 344, 385, 386, 427, 468, 470, 473, 474, 475, 477, 478, 479, 480, 481, 483], "metadata": [68, 84, 98, 110, 111, 181, 226, 230, 250, 254, 255, 280, 288, 293, 294, 311, 332, 342, 358, 386, 419, 422, 428, 432, 441, 453, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "metadata_encod": [422, 483], "metadatapathfind": 483, "metal": 93, "metalog": 223, "metamag": 103, "metapathfind": [87, 250, 251, 352, 472, 473, 476, 477, 480, 483], "metaphor": [73, 250, 252, 253, 375], "metaslash": 288, "metatyp": [63, 255], "metavar": [68, 102, 118, 200, 292, 399, 469, 474, 475, 483], "metavartypehelpformatt": 120, "metcalf": [473, 483], "meter": [94, 375], "meth": [21, 44, 63, 78, 85, 87, 112, 386, 463, 466, 473, 476], "meth_class": [58, 62, 465], "meth_coexist": [58, 466], "meth_fastcal": [58, 100, 480, 483], "meth_keyword": [58, 73, 100, 483], "meth_method": [58, 100, 482, 483], "meth_noarg": [35, 58, 76, 464, 465, 483], "meth_o": [58, 62, 464, 483], "meth_oldarg": [5, 464, 470], "meth_stat": [58, 465], "meth_vararg": [5, 58, 72, 73, 464, 483], "method": [5, 7, 10, 16, 21, 22, 23, 24, 25, 28, 33, 34, 39, 42, 45, 46, 49, 53, 54, 55, 56, 58, 61, 62, 63, 66, 68, 72, 74, 75, 80, 81, 86, 87, 92, 95, 97, 101, 102, 108, 109, 110, 112, 115, 116, 117, 118, 128, 131, 132, 133, 136, 137, 138, 139, 142, 144, 146, 147, 149, 151, 153, 155, 157, 158, 159, 161, 163, 164, 166, 167, 168, 170, 175, 176, 177, 179, 181, 183, 184, 186, 187, 190, 191, 193, 195, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 216, 218, 221, 222, 223, 225, 226, 227, 230, 234, 235, 237, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 267, 268, 269, 270, 271, 273, 276, 278, 279, 281, 291, 293, 295, 296, 297, 298, 299, 301, 302, 305, 307, 308, 311, 312, 313, 314, 315, 316, 318, 319, 321, 323, 325, 328, 329, 330, 331, 335, 338, 341, 343, 345, 347, 348, 349, 352, 358, 359, 360, 362, 364, 365, 369, 374, 375, 376, 378, 381, 382, 385, 386, 387, 388, 389, 394, 395, 397, 399, 402, 403, 405, 408, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 427, 429, 432, 433, 435, 436, 441, 442, 443, 444, 445, 447, 449, 451, 452, 455, 463, 464, 465, 468, 469, 471, 472, 473, 474, 475, 476, 477, 481, 483, 484], "method_": 173, "method_1": 78, "method_blowfish": 173, "method_cal": [389, 390], "method_crypt": [173, 479, 483], "method_descriptor": 466, "method_md5": 173, "method_nam": [78, 79], "method_not_allow": 241, "method_sha256": 173, "method_sha512": 173, "method_to_typeid": 283, "methodattr": 112, "methodcal": [87, 108, 291, 468, 478, 483], "methoddef": 483, "methoddescriptortyp": [385, 480, 483], "methodhelp": [419, 420], "methodnam": [78, 283, 388, 419, 440, 441], "methodrespons": 419, "methodsignatur": [419, 420], "methodtyp": [44, 93, 385, 483], "methodwrapp": 483, "methodwrappertyp": [255, 385, 473, 480, 483], "metl": 93, "metr": 183, "metric": [85, 372, 483], "metzen": 190, "mexico": 483, "meyer": [474, 476, 481, 482, 483], "mez": [474, 483], "meza": 483, "mezzo": 467, "mf": 270, "mf_bt2": 270, "mf_bt3": 270, "mf_bt4": 270, "mf_hc3": 270, "mf_hc4": 270, "mfc": 461, "mfd_": 293, "mfd_allow_s": 293, "mfd_cloexec": 293, "mfd_huge": 293, "mfd_huge_16gb": 293, "mfd_huge_16mb": 293, "mfd_huge_1gb": 293, "mfd_huge_1mb": 293, "mfd_huge_256mb": 293, "mfd_huge_2gb": 293, "mfd_huge_2mb": 293, "mfd_huge_32mb": 293, "mfd_huge_512kb": 293, "mfd_huge_512mb": 293, "mfd_huge_64kb": 293, "mfd_huge_8mb": 293, "mfd_huge_mask": 293, "mfd_huge_shift": 293, "mfd_hugetlb": 293, "mgr": 468, "mgr1": [467, 468], "mgr2": [467, 468], "mh": [68, 285, 467], "mh_profil": 271, "mh_sequenc": 271, "mhlib": 468, "mhmessag": [68, 285], "mi": [84, 149, 467, 481, 482, 483], "mib": [42, 235, 270, 283, 332, 473, 481, 483], "micha": [479, 483], "michael": [110, 441, 442, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 481, 482, 483], "michel": [103, 464, 465, 476, 477, 478, 479, 480, 481, 482, 483], "michlmayr": 468, "mick": [384, 462, 465, 467], "micka": 483, "micro": [76, 85, 352, 462, 469, 471, 480, 483], "microbenchmark": 483, "microoptim": 483, "microphon": 295, "micropython": [472, 483], "microsecond": [183, 322, 340, 366, 468, 483], "microsoft": [59, 68, 77, 86, 158, 167, 176, 254, 293, 350, 352, 398, 399, 407, 448, 456, 458, 464, 465, 467, 468, 473, 478, 483], "microsystem": [408, 426], "mid": [139, 483], "middl": [85, 92, 169, 199, 297, 318, 321, 364, 384, 416, 467, 469, 479, 483], "middleton": 463, "middlewar": 407, "midi": 236, "midnight": [183, 269, 468, 475, 478, 483], "midpoint": 343, "midst": 359, "midway": 76, "might": [7, 23, 33, 58, 63, 64, 73, 75, 76, 85, 92, 94, 95, 96, 100, 101, 102, 103, 105, 106, 109, 110, 132, 137, 139, 141, 144, 146, 158, 176, 179, 181, 183, 191, 193, 196, 205, 207, 209, 221, 234, 235, 243, 247, 253, 259, 266, 267, 268, 269, 271, 272, 278, 283, 284, 288, 292, 293, 295, 299, 302, 305, 307, 308, 319, 335, 337, 340, 341, 344, 352, 353, 355, 362, 365, 369, 384, 386, 394, 395, 400, 408, 413, 422, 428, 432, 434, 455, 461, 462, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 483], "migrat": [68, 91, 251, 252, 255, 386, 400, 410, 436, 467, 468, 471, 474, 476, 477, 483], "miguel": [473, 483], "mike": [95, 464, 466, 467, 468, 473, 483], "mikhail": 472, "miki": [469, 475], "milan": [478, 480, 483], "milauer": 477, "milchior": 483, "mile": 183, "mileag": [5, 335], "militari": 483, "mill": 435, "miller": [468, 477], "millimetr": 369, "million": [109, 343, 441], "millisecond": [101, 177, 183, 247, 267, 328, 376, 384, 406, 475, 479, 482, 483], "milman": [480, 483], "mime": [68, 87, 106, 143, 146, 151, 158, 196, 200, 202, 203, 204, 205, 207, 208, 245, 254, 272, 285, 352, 407, 432, 451, 464, 466, 469, 472, 475, 477, 478, 479, 480, 483], "mime_typ": 407, "mimeappl": 206, "mimeaudio": [198, 206, 483], "mimebas": 206, "mimeimag": [198, 199, 200, 206], "mimemessag": 206, "mimemultipart": 206, "mimenonmultipart": [199, 206, 483], "mimepart": [197, 205, 477], "mimetext": [198, 206, 478, 483], "mimetool": 468, "mimetyp": [68, 156, 197, 200, 254, 272, 285, 382, 407, 464, 468, 469, 479, 483], "mimeversionhead": 203, "mimewrit": 468, "mimic": [183, 255, 267, 347, 381, 384, 469, 471, 483], "mimifi": 468, "min": [5, 87, 95, 102, 106, 107, 108, 160, 166, 183, 186, 225, 226, 236, 261, 275, 316, 343, 344, 352, 367, 430, 440, 450, 467, 469, 477, 483], "min_10_exp": 352, "min_emin": [186, 476], "min_etini": 186, "min_exp": 352, "min_instrumented_opcod": 191, "min_mag": 186, "min_pseudo_opcod": 191, "min_vers": 362, "mind": [31, 85, 92, 100, 102, 106, 120, 176, 186, 200, 252, 269, 283, 292, 386, 395, 413, 432, 464, 466, 475], "mindom": 483, "minequ": 377, "mingliang": 483, "mingw": [481, 483], "mini": [167, 345, 435, 469, 471], "miniaefram": 468, "minidentd": 223, "minidom": [68, 254, 273, 409, 410, 412, 462, 463, 465, 479, 480, 481, 483], "minifieldstorag": [151, 483], "minilanguag": 331, "minim": [24, 45, 73, 76, 84, 92, 102, 141, 151, 186, 190, 193, 214, 235, 248, 250, 259, 292, 299, 305, 319, 324, 333, 337, 339, 340, 362, 364, 379, 395, 411, 456, 461, 462, 467, 479, 483], "minimal_hanoi": 384, "minimalist": 384, "minimis": 483, "minimum": [25, 34, 42, 64, 76, 93, 102, 111, 115, 133, 141, 176, 177, 186, 197, 257, 261, 275, 293, 328, 334, 341, 344, 352, 362, 365, 376, 383, 384, 386, 388, 456, 464, 465, 468, 475, 476, 477, 479, 480, 483], "minimum_support": 341, "minimum_vers": [341, 472, 480, 483], "minitab": 343, "minmax": 141, "minmin": 483, "minor": [33, 63, 66, 68, 77, 79, 84, 92, 102, 110, 122, 177, 203, 206, 293, 303, 313, 352, 355, 358, 415, 456, 461, 463, 464, 465, 466, 467, 469, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 483], "minorvers": 354, "minsiz": 93, "mintz": 483, "minus": [177, 186, 225, 275, 332, 344, 345, 347, 365, 377, 430, 436, 480, 483], "minut": [20, 109, 135, 183, 269, 293, 366, 422, 435, 456, 465, 480, 483], "minutia": 68, "minval": 384, "minvalu": 93, "minwidth": 376, "minyear": 183, "mip": 483, "mircea": 483, "miro": [473, 483], "mirror": [23, 110, 223, 267, 268, 269, 369, 377, 387, 415, 455, 466, 483], "mis": [247, 483], "misbehav": [139, 483], "misc": [0, 35, 80, 96, 223, 344, 376, 456, 462, 465, 466, 467, 468, 469, 470, 473, 475, 477, 483, 484], "misc_head": 155, "miscalcul": [358, 483], "miscellan": [68, 118, 119, 155, 164, 191, 217, 368, 458, 483, 484], "misconfigur": [101, 247, 483], "misctest": 344, "misctestcas": 362, "misdetect": 483, "misdirect": 483, "misdirected_request": 241, "mise": 318, "misfold": 483, "misform": 483, "mishandl": 483, "misimpl": 475, "misindent": 483, "misinterpret": 141, "mislabel": 483, "mislead": [75, 109, 152, 183, 395, 411, 464, 475, 483], "mismatch": [193, 213, 216, 267, 319, 334, 341, 413, 427, 463, 465, 467, 469, 478, 483], "misnam": [466, 475], "misnom": 31, "misord": 483, "misplac": 483, "misplacedenvelopeheaderdefect": 199, "misrepres": 426, "miss": [55, 106, 160, 170, 176, 181, 186, 196, 199, 205, 211, 226, 235, 247, 250, 251, 255, 261, 267, 276, 279, 292, 293, 337, 341, 343, 348, 352, 353, 362, 366, 367, 375, 380, 386, 394, 395, 425, 427, 428, 430, 431, 432, 441, 443, 462, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "missil": 475, "missing_c_docstr": 362, "missing_compiler_execut": [362, 483], "missing_ok": [296, 483], "missingheaderbodyseparatordefect": 199, "missingsectionheadererror": 167, "mission": 292, "mississ": 344, "mississippi": [160, 344], "misspel": [92, 93, 167, 483], "mist": 465, "mistak": [61, 73, 94, 103, 106, 120, 211, 213, 267, 271, 292, 344, 366, 369, 456, 466, 467, 469, 471, 474, 483], "mistaken": [85, 440, 462, 475, 477, 483], "mistyp": 435, "misunderstand": 483, "misus": [33, 45, 340, 464, 483], "mit": [95, 251, 307, 426, 483], "mitar": 483, "mitch": 84, "mitchel": [468, 473, 483], "mitig": [33, 68, 135, 244, 290, 344, 358, 471, 472, 474, 479, 480, 481, 482, 483], "mitpress": 95, "mix": [33, 42, 68, 102, 116, 167, 186, 204, 205, 206, 207, 218, 225, 228, 259, 275, 283, 293, 295, 309, 338, 344, 355, 362, 386, 394, 427, 428, 435, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 483], "mixabl": 295, "mixed_cas": 483, "mixer": 68, "mixerdev": 295, "mixin": [68, 94, 161, 169, 211, 256, 258, 395, 483], "mixtur": [63, 203, 431, 435, 478], "miyurusara": 483, "mjs": 483, "mkd": 223, "mkdir": [84, 142, 200, 293, 296, 422, 451, 473, 474, 476, 478, 483], "mkdtemp": [142, 293, 360, 362, 402, 474, 483], "mkfifo": [293, 476, 478, 483], "mkfifoat": 483, "mknod": [293, 465, 476, 478, 483], "mknodat": 483, "mksalt": [173, 476, 480, 483], "mkstemp": [142, 283, 360, 483], "mkstringprep": [346, 465], "mktemp": [327, 360, 395, 483], "mktime": [183, 209, 366, 475, 483], "mktime_tz": 209, "ml": [58, 95, 465], "ml_doc": [58, 75], "ml_flag": [58, 75], "ml_meth": [58, 75], "ml_name": [58, 75], "mlsd": [223, 476], "mm": [85, 183, 248, 278, 344, 366], "mmap": [42, 68, 142, 213, 254, 260, 462, 468, 473, 475, 478, 479, 483], "mmask_t": 483, "mmdf": [68, 285, 483], "mmdfmessag": [68, 285], "mmm": [120, 248], "mms": 394, "mn": [109, 435], "mnemon": [178, 268, 341, 376, 464], "mno": 104, "mnt": 355, "mo": [150, 183, 230, 319, 344, 465, 479, 481, 483], "mobil": 475, "mock": [68, 187, 254, 382, 388, 473, 476, 477, 481, 482, 483], "mock1": 389, "mock2": 389, "mock_add_spec": 389, "mock_backend": 390, "mock_bar": 390, "mock_cal": [389, 390, 483], "mock_class": 389, "mock_dat": 390, "mock_exit": 389, "mock_foo": [389, 390], "mock_frob": 390, "mock_funct": 389, "mock_inst": 390, "mock_method": [389, 390], "mock_open": [68, 187, 390, 477, 483], "mock_ord": 389, "mock_request": 389, "mock_respons": 390, "mock_spam": 390, "mock_stdout": 389, "mock_th": 389, "mockclass": 389, "mockclass1": [389, 390], "mockclass2": [389, 390], "mockiti": 389, "mocksomeclass": 390, "mod": [85, 102, 122, 225, 250, 279, 291, 380, 421, 431, 436, 468, 481, 483], "mod_nam": 324, "mod_spec": 483, "mod_ti": [431, 472, 483], "mod_wsgi": [283, 348], "modal": [189, 373], "mode": [5, 24, 33, 34, 35, 41, 42, 59, 64, 66, 68, 73, 84, 92, 101, 102, 106, 109, 112, 117, 120, 122, 125, 135, 142, 144, 149, 151, 158, 163, 167, 174, 176, 177, 178, 184, 188, 189, 190, 193, 200, 207, 213, 214, 218, 223, 225, 228, 234, 245, 247, 250, 251, 252, 253, 258, 266, 267, 269, 270, 271, 282, 288, 290, 292, 293, 295, 296, 297, 299, 301, 305, 309, 311, 318, 319, 320, 322, 323, 331, 332, 334, 335, 337, 340, 341, 342, 343, 344, 347, 348, 349, 351, 352, 354, 358, 360, 362, 376, 378, 382, 383, 384, 386, 388, 397, 401, 403, 413, 415, 421, 422, 424, 425, 428, 436, 446, 448, 455, 456, 461, 463, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "mode_fast": 270, "mode_norm": 270, "model": [42, 60, 68, 84, 85, 93, 169, 183, 186, 194, 196, 205, 225, 273, 283, 293, 318, 335, 341, 343, 365, 368, 384, 395, 410, 411, 412, 415, 427, 428, 429, 461, 462, 464, 465, 466, 467, 473, 474, 475, 477, 478, 479, 480, 481, 483, 484], "modelbas": 386, "modelmeta": 386, "moder": [85, 95, 106, 288, 292, 305, 319, 464, 465], "modern": [73, 139, 177, 178, 194, 235, 258, 332, 337, 358, 369, 406, 462, 466, 468, 469, 475, 476, 479, 480, 481, 482, 483], "modernis": 474, "modest": [186, 483], "modf": 275, "modif": [22, 27, 34, 61, 64, 66, 73, 94, 102, 103, 112, 169, 190, 216, 234, 245, 248, 250, 266, 269, 271, 278, 283, 292, 293, 324, 332, 334, 338, 342, 352, 358, 362, 376, 410, 413, 422, 426, 428, 461, 467, 469, 475, 476, 477, 478, 479, 481, 483], "modifi": [5, 9, 22, 23, 27, 33, 34, 61, 63, 64, 66, 68, 73, 76, 77, 79, 94, 95, 100, 101, 102, 103, 109, 110, 112, 120, 137, 139, 141, 158, 167, 173, 176, 177, 185, 186, 191, 193, 196, 197, 201, 203, 205, 208, 215, 216, 225, 245, 247, 255, 266, 267, 268, 269, 271, 281, 283, 284, 292, 293, 297, 299, 302, 307, 308, 314, 319, 321, 324, 328, 329, 330, 331, 332, 335, 337, 338, 340, 344, 345, 348, 352, 353, 355, 358, 362, 365, 369, 375, 376, 378, 381, 382, 384, 385, 388, 394, 395, 396, 397, 400, 405, 407, 410, 413, 416, 417, 420, 421, 423, 425, 426, 427, 428, 429, 432, 434, 435, 436, 455, 458, 462, 463, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 483], "modnam": [85, 440, 450, 467, 474, 479], "modul": [5, 7, 11, 16, 17, 23, 24, 31, 33, 34, 35, 41, 42, 58, 59, 61, 63, 65, 66, 68, 71, 72, 74, 75, 76, 77, 79, 81, 84, 87, 88, 89, 91, 92, 94, 96, 98, 101, 104, 105, 109, 110, 112, 114, 115, 117, 118, 120, 122, 125, 131, 138, 139, 141, 142, 144, 146, 149, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 167, 169, 170, 173, 174, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 233, 234, 235, 237, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 287, 288, 290, 291, 292, 293, 295, 296, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 345, 346, 347, 349, 350, 351, 352, 353, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 368, 371, 374, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 389, 390, 391, 392, 393, 394, 395, 396, 397, 399, 400, 402, 403, 404, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 434, 435, 436, 439, 440, 441, 442, 443, 445, 446, 448, 449, 451, 452, 453, 455, 456, 458, 470, 472, 473, 474, 476, 477, 481, 482, 483, 484], "modula": [78, 80, 274, 440], "modular": [68, 84, 101, 173, 225, 476, 481, 483], "module1": 462, "module2": 462, "module_api_vers": 45, "module_cleanup": 483, "module_def": 100, "module_dep": 483, "module_find": 302, "module_for_load": [472, 473, 474, 477, 483], "module_fre": 483, "module_from_spec": [250, 385, 474, 478, 483], "module_glob": [265, 400, 483], "module_logg": 102, "module_nam": [144, 250, 283, 362, 472, 480, 483], "module_or_nam": 302, "module_rel": 193, "module_repr": [432, 472, 473, 474, 477, 483], "module_search_path": [33, 34, 59, 473, 483], "module_search_paths_set": [33, 34, 59, 473, 483], "module_to_load": 477, "modulea": 432, "modulefind": [68, 254, 280, 483], "modulefindertest": 483, "moduleinfo": [302, 479], "modulenam": [11, 71, 73, 79, 85, 98, 450, 483], "modulenotfounderror": [23, 213, 250, 432, 479, 480, 483], "modules_cleanup": 362, "modules_setup": 362, "modulespec": [31, 45, 68, 87, 250, 302, 324, 352, 385, 432], "moduletyp": [45, 250, 252, 385, 428, 432, 465, 474, 478, 483], "modulex": 432, "moduley": 432, "modulez": 432, "modulo": [39, 102, 186, 213, 225, 291, 333, 344, 376, 428, 430, 446, 465, 469, 475, 481, 483], "modulus": [154, 289, 344, 352, 468, 475, 481], "modzelewski": 474, "moham": 483, "mohd": 483, "mohr": [480, 483], "moin": [80, 84, 459, 466], "mojam": 426, "mojibak": 483, "molesti": 149, "mollusk": 230, "moment": [85, 109, 183, 213, 283, 293, 432, 479, 483], "momentarili": [247, 271, 483], "mon": [106, 150, 183, 209, 211, 465], "mon_1": 266, "mon_10": 266, "mon_11": 266, "mon_12": 266, "mon_2": 266, "mon_3": 266, "mon_4": 266, "mon_5": 266, "mon_6": 266, "mon_7": 266, "mon_8": 266, "mon_9": 266, "mon_decimal_point": 266, "mon_group": 266, "mon_thousands_sep": 266, "monday": [94, 150, 183, 211, 266, 269, 366, 483], "monetari": [186, 266, 467, 480, 483], "money": [186, 348], "moneyfmt": 186, "monitor": [33, 68, 101, 102, 132, 137, 186, 254, 269, 308, 315, 329, 338, 352, 399, 466, 468, 479, 480, 483], "monkey": [120, 386, 389, 390, 474, 483], "mono": [117, 141, 295], "monochrom": 375, "monograph": 376, "monolingu": 230, "monomorphic_oper": 289, "monophon": 295, "monospac": [102, 247, 364], "monoton": [103, 131, 134, 169, 190, 325, 343, 366, 440, 465, 476, 478, 483], "monotonic_n": [366, 480, 483], "monsel": [481, 483], "monster": [167, 364], "mont": [68, 290], "montag": 183, "montagn": 477, "montanaro": [426, 462, 465, 466, 467, 468], "monterey": [269, 483], "month": [20, 85, 150, 183, 266, 366, 422, 435, 462, 463, 465, 469, 474, 483], "month_abbr": 150, "month_nam": [150, 435], "monthcalendar": 150, "monthdatescalendar": 150, "monthdays2calendar": 150, "monthdayscalendar": 150, "monthrang": 150, "monti": [73, 167, 193, 225, 262, 293, 296, 340, 343, 344, 358, 422, 439, 454, 466, 468, 475], "mood": 94, "moodi": [99, 476, 477, 478], "moolenaar": 435, "moon": [292, 386], "moon_weight": 386, "moor": [369, 464, 465, 468, 477, 478, 480, 483], "more": [5, 11, 13, 22, 23, 24, 25, 27, 33, 34, 42, 45, 49, 51, 56, 58, 60, 61, 63, 64, 66, 68, 71, 72, 73, 74, 76, 77, 79, 80, 84, 85, 86, 87, 93, 94, 95, 100, 101, 103, 109, 110, 112, 115, 120, 123, 133, 137, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 213, 215, 218, 220, 222, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 267, 268, 269, 270, 271, 275, 276, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 311, 312, 314, 318, 319, 321, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 381, 382, 386, 388, 390, 394, 395, 399, 400, 405, 406, 410, 411, 412, 413, 415, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 443, 448, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483], "moreau": 480, "morecolor": 94, "morehous": [481, 483], "moreov": [33, 34, 103, 225, 271, 384, 469, 470, 483], "morph": 293, "morr": [469, 471], "morrison": [153, 477], "morsel": [68, 256, 468, 478, 480, 483], "mortem": [193, 297, 352, 440, 474], "mosaic": [403, 474, 483], "mosh": [462, 463, 464, 466], "moss": 472, "most": [5, 7, 9, 23, 25, 31, 33, 34, 39, 42, 45, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 120, 125, 133, 136, 139, 141, 143, 144, 146, 149, 151, 153, 158, 160, 167, 169, 176, 177, 183, 184, 186, 188, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 207, 211, 213, 214, 215, 221, 225, 226, 230, 233, 234, 243, 247, 248, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 272, 275, 278, 283, 284, 292, 293, 295, 296, 297, 299, 302, 305, 307, 308, 314, 319, 321, 328, 329, 330, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 355, 356, 358, 362, 364, 365, 366, 369, 374, 375, 381, 382, 384, 386, 387, 388, 389, 390, 394, 395, 400, 403, 406, 408, 410, 411, 413, 414, 415, 416, 421, 422, 425, 427, 428, 429, 430, 432, 434, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "most_common": [160, 469], "most_recent_first": [382, 480, 483], "motejlek": 483, "motif": 375, "motion": [68, 177, 222, 371], "motiv": [34, 93, 358, 428, 430, 463, 465, 466, 476, 481, 483], "mount": [33, 293, 294, 296, 332, 469, 474, 477, 480, 483], "mountain": [183, 426], "mountifield": 483, "mous": [84, 92, 177, 348, 371, 376, 384, 462, 468, 483], "mouseinterv": 177, "mousemask": 177, "mousewheel": [247, 483], "mouzo": 469, "movabl": 399, "movap": 483, "move": [34, 84, 85, 91, 92, 93, 96, 99, 102, 110, 112, 120, 142, 155, 176, 177, 179, 181, 183, 196, 205, 206, 218, 247, 261, 269, 271, 278, 293, 297, 311, 332, 362, 366, 371, 375, 376, 384, 388, 394, 395, 413, 451, 462, 463, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "move_fil": 483, "move_first_element_to_last": 386, "move_to_end": [160, 475, 483], "moved_perman": [241, 466], "movement": [177, 384, 468, 475, 483], "moveov": 483, "moveto": [481, 483], "movetothread": 102, "movi": [93, 147, 340, 386, 473, 474], "moving_averag": 160, "movup": 483, "mozilla": [1, 110, 243, 341, 395, 403, 466, 483], "mozillacookiejar": [243, 483], "mp": [283, 465], "mp4": 468, "mp64": 483, "mp_ass_subscript": 63, "mp_context": [166, 283, 480, 483], "mp_film": 262, "mp_init": 483, "mp_length": 63, "mp_subscript": [63, 483], "mp_to_unsigned_bin_n": 483, "mp_unsigned_bin_s": 483, "mpdec": 456, "mpdecim": [476, 483], "mpeg": 272, "mpf": 432, "mpi": 483, "mplog": 102, "mptcp": [472, 483], "mptest": 102, "mpz": 466, "mro": [49, 61, 68, 85, 87, 103, 116, 181, 197, 344, 385, 480, 483], "mros": 103, "ms": [68, 98, 158, 176, 177, 254, 292, 293, 348, 375, 461, 462, 480, 483], "ms1361": 158, "ms932": 158, "ms936": 158, "ms949": 158, "ms950": 158, "ms_win64": 483, "ms_window": [23, 34], "msan": [456, 483], "msbuild": [461, 483], "msc": [35, 86, 483], "msd": 186, "msdn": [126, 293], "msec": [267, 367, 478], "msg": [23, 84, 102, 107, 122, 129, 139, 151, 169, 176, 190, 196, 197, 198, 200, 201, 202, 203, 204, 205, 207, 208, 209, 213, 228, 235, 237, 242, 250, 262, 266, 267, 269, 271, 283, 286, 319, 335, 337, 344, 359, 362, 381, 388, 393, 395, 408, 414, 450, 465, 466, 467, 475, 476, 477, 478, 479, 483], "msg297804": 483, "msg_": 337, "msg_flag": 337, "msgfile": 200, "msgfmt": [230, 469], "msgid": [102, 200, 209], "msglen": [107, 337], "msgno": 102, "msgnum": 248, "msi": [281, 467, 478, 480, 483], "msiclosehandl": 281, "msicolinfo_nam": 281, "msicolinfo_typ": 281, "msicreaterecord": 281, "msidatabasecommit": 281, "msidatabaseopenview": 281, "msidbopen_cr": 281, "msidbopen_createdirect": 281, "msidbopen_direct": 281, "msidbopen_patchfil": 281, "msidbopen_readon": 281, "msidbopen_transact": 281, "msie": [110, 244], "msierror": [281, 483], "msigetsummaryinform": 281, "msilib": [68, 254, 350, 467, 468, 473, 474, 483], "msimodify_assign": 281, "msimodify_delet": 281, "msimodify_insert": 281, "msimodify_insert_temporari": 281, "msimodify_merg": 281, "msimodify_refresh": 281, "msimodify_replac": 281, "msimodify_seek": 281, "msimodify_upd": 281, "msimodify_valid": 281, "msimodify_validate_delet": 281, "msimodify_validate_field": 281, "msimodify_validate_new": 281, "msiopendatabas": 281, "msirecordcleardata": 281, "msirecordgetfieldcount": 281, "msirecordsetinteg": 281, "msirecordsetstr": 281, "msirecordsetstream": 281, "msis": 483, "msisummaryinfogetproperti": 281, "msisummaryinfogetpropertycount": 281, "msisummaryinfopersist": 281, "msisummaryinfosetproperti": 281, "msiviewclos": 281, "msiviewexecut": 281, "msiviewfetch": 281, "msiviewgetcolumninfo": 281, "msiviewmodifi": 281, "msix": 461, "mskanji": 158, "msoft": 467, "msoxzw": 473, "mss": 483, "mst": 183, "msvc": [35, 63, 77, 86, 176, 466, 481, 483], "msvcrt": [68, 77, 86, 142, 176, 254, 404, 468, 469, 483], "mszip": 281, "mt": 426, "mt19937": 426, "mt2002": 426, "mt_interact": 359, "mtime": [216, 234, 250, 293, 358, 396, 481, 483], "mtime_n": 293, "mu": [318, 343, 481, 483], "mua": [271, 341, 480], "much": [23, 55, 61, 63, 67, 73, 75, 76, 78, 84, 85, 87, 92, 95, 102, 106, 109, 110, 120, 137, 151, 154, 158, 167, 176, 186, 193, 194, 203, 207, 255, 261, 269, 270, 271, 275, 283, 292, 293, 295, 299, 308, 319, 330, 337, 348, 355, 369, 376, 382, 384, 388, 410, 411, 419, 427, 432, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 481, 482, 483], "mueller": 483, "mul": [95, 112, 141, 186, 261, 275, 283, 291, 420], "mul_stereo": 141, "mullend": [462, 468], "muller": 469, "mult": [122, 431], "multi": [7, 16, 32, 33, 68, 71, 73, 84, 85, 86, 87, 94, 95, 100, 102, 106, 108, 109, 113, 118, 149, 186, 190, 191, 193, 226, 234, 247, 250, 267, 268, 270, 283, 316, 319, 322, 325, 331, 332, 340, 344, 365, 420, 422, 427, 435, 445, 455, 461, 462, 467, 469, 472, 474, 476, 477, 481, 483, 484], "multi_status": 241, "multiarch": 483, "multibyt": [92, 177, 208, 344, 476, 483], "multical": [68, 256, 420], "multicast": [259, 337, 362, 398, 483], "multichannel": 271, "multicontext": 160, "multidimension": [87, 344], "multifil": 468, "multihitlrucach": 160, "multihop": 212, "multilevel": [163, 483], "multilin": [106, 158, 167, 247, 319, 335, 388, 474, 475, 482, 483], "multiline_valu": 167, "multilingu": [230, 247, 483], "multiloopchildwatch": [132, 474, 483], "multimedia": [272, 295], "multimod": [343, 481], "multipag": 239, "multipart": [151, 194, 196, 197, 198, 199, 200, 201, 204, 205, 206, 207, 483], "multipartconversionerror": [199, 206], "multipartinvariantviolationdefect": [199, 207, 483], "multiphas": [482, 483], "multipl": [28, 31, 33, 34, 45, 47, 49, 63, 64, 68, 71, 73, 75, 76, 84, 87, 92, 94, 95, 96, 101, 103, 105, 106, 109, 110, 115, 116, 120, 121, 122, 124, 135, 137, 149, 151, 158, 160, 163, 167, 169, 177, 181, 183, 186, 187, 189, 193, 199, 205, 209, 213, 221, 225, 226, 228, 230, 231, 234, 235, 245, 247, 250, 251, 253, 255, 258, 261, 267, 268, 270, 271, 276, 278, 282, 283, 284, 292, 293, 297, 299, 302, 307, 314, 319, 320, 329, 330, 331, 335, 337, 338, 340, 341, 342, 343, 344, 347, 352, 353, 356, 358, 362, 365, 369, 375, 376, 377, 380, 384, 386, 388, 400, 413, 415, 419, 427, 428, 429, 430, 431, 432, 435, 436, 441, 444, 455, 456, 461, 462, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "multiple_char": 109, "multiple_choic": 241, "multiple_result": 283, "multiplex": [328, 329, 341, 477], "multiplexedpath": 483, "multipli": [47, 72, 76, 141, 176, 183, 186, 199, 261, 269, 308, 318, 345, 352, 419, 430, 462, 465, 466, 468, 475, 483], "multiplicand": 186, "multiprocess": [68, 84, 101, 107, 125, 126, 164, 166, 247, 254, 269, 316, 327, 341, 362, 365, 398, 407, 469, 470, 474, 483, 484], "multiprocessor": [84, 284, 303], "multiset": [160, 475], "multisort": 108, "multissltest": 483, "multitask": 369, "multithread": [68, 137, 139, 235, 266, 283, 348, 359, 407, 465, 474, 482, 483], "multiway": 95, "mung": [68, 363], "munmap": 42, "munro": 483, "murray": [469, 475, 477, 478, 479, 483], "musi": [395, 396], "music": [93, 160], "musl": 483, "must": [5, 7, 9, 11, 13, 17, 18, 22, 23, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 56, 58, 59, 60, 61, 63, 64, 66, 71, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 106, 110, 112, 115, 117, 120, 122, 132, 133, 139, 144, 146, 149, 151, 155, 158, 161, 167, 169, 173, 176, 177, 181, 183, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 213, 214, 218, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 291, 292, 293, 295, 297, 299, 301, 302, 304, 308, 314, 319, 320, 322, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 365, 366, 369, 371, 375, 376, 378, 380, 382, 384, 386, 388, 394, 395, 397, 400, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "mustexist": 189, "mutabl": [5, 27, 28, 33, 63, 68, 85, 87, 95, 100, 161, 171, 176, 181, 203, 211, 215, 225, 226, 255, 283, 291, 293, 297, 299, 330, 413, 424, 427, 430, 436, 440, 442, 449, 462, 465, 467, 468, 469, 470, 473, 474, 479, 482, 483], "mutablemap": [78, 87, 161, 167, 184, 330, 344, 386, 428, 468, 470, 476], "mutablesequ": [161, 344, 386, 470, 476, 478, 483], "mutableset": [161, 344, 386, 483], "mutablil": 483, "mutant": 292, "mutat": [5, 22, 63, 85, 100, 167, 181, 196, 226, 250, 258, 283, 330, 344, 386, 400, 464, 466, 477, 483], "mutate_flag": 215, "mutex": [84, 115, 124, 138, 340, 352, 483], "mutual": [5, 63, 68, 118, 262, 268, 271, 292, 319, 369, 380, 386, 403, 429, 483], "mv": [332, 476, 483], "mvaddstr": 92, "mvderwin": 177, "mview": 43, "mvwaddstr": 92, "mvwin": 177, "my": [63, 73, 78, 94, 95, 102, 103, 110, 151, 160, 193, 230, 248, 268, 296, 341, 344, 345, 362, 369, 446, 462, 464, 465, 466, 467, 474, 483], "my_abstract_classmethod": 116, "my_abstract_method": 116, "my_abstract_properti": 116, "my_abstract_staticmethod": 116, "my_app": 268, "my_arch": 332, "my_attribut": 299, "my_binary_fil": 296, "my_birthday": 183, "my_bytes_object": 85, "my_callback": [73, 75, 292], "my_databas": 181, "my_dealloc": [75, 100], "my_decor": [226, 467], "my_dict": 390, "my_dir": 167, "my_execut": 34, "my_filt": 270, "my_flag": 193, "my_funct": [112, 441], "my_gener": 169, "my_lock": 386, "my_logg": 102, "my_method": 100, "my_mock": 389, "my_module_with_doctest": 193, "my_nam": [114, 389], "my_namespac": 250, "my_obj_method": 62, "my_pictur": 167, "my_program": 34, "my_proj_dir": 475, "my_python_lib": 461, "my_script": 104, "my_set_callback": 73, "my_str": [85, 474], "my_struct": 100, "my_tarfil": 358, "my_text_fil": 296, "my_travers": [28, 100], "myabc": 116, "myaddr": 341, "myapp": [86, 102, 167, 235, 267, 369, 421, 478], "myapplic": 230, "myarchiv": [332, 452, 475], "myarg": 348, "myargumentpars": 120, "myattr": 203, "myattribut": 100, "mybyt": 207, "mycertfil": 341, "myclass": [299, 428, 440], "mycmd": 348, "mycod": 112, "mycontext": 169, "mycookiepolici": 243, "mycustom": 76, "mydata": [225, 365, 411, 452, 475], "mydict": [78, 85, 386, 466], "mydir": 78, "mydircmp": 216, "myemptyclass": 441, "myenum": 94, "myenv": 399, "myeventlooppolici": 132, "myextensionclass": 462, "myfavouriteshap": 384, "myfil": [149, 258, 293, 388, 422, 440, 443, 452], "myfilt": [102, 475], "myfoo": 289, "myfunc": [85, 102, 191, 319, 420], "myfunct": [73, 79, 169], "mygroup": [213, 341], "myhandl": [101, 102, 268], "myhtmlpars": 240, "myint": 473, "myintegr": 289, "myintenum": 211, "myiter": [116, 386], "mykey": 268, "mykeyfil": 341, "mylib": [267, 388], "mylink": 296, "mylist": [85, 181, 321, 475], "mylock": 473, "mylog": [230, 471, 475], "mylogg": [102, 267], "mymanag": 283, "mymessag": [196, 205], "mymock": 390, "mymod": 63, "mymodul": [57, 79, 101, 230, 389, 390, 400, 469, 475], "mymsg": [208, 477], "myobj_clear": 63, "myobj_dealloc": 63, "myobj_hash": 63, "myobj_new": 63, "myobj_repr": 63, "myobj_travers": 63, "myobject": [63, 75], "myobject_typ": 63, "myoption": 292, "myorgan": 341, "myothercontext": 186, "myoung": 483, "myownfunct": 176, "mypackag": 101, "mypath": 296, "mypi": [85, 386, 428, 473, 478, 479, 483], "mypickl": 299, "mypkg": [292, 388], "mypolici": [126, 476], "myprog": 422, "myprogram": 120, "myproject": [102, 388], "myprotocol": 133, "myreadlin": 79, "myrec": 107, "myrepr": 321, "myright": [248, 466], "myscript": [79, 297, 308, 438, 455], "myself": 462, "mysend": 107, "myserv": 341, "myshap": 384, "mysignatur": 255, "myskippedtestcas": 388, "mysocket": [107, 262], "mysql": [167, 223, 469], "mysqld": [167, 469], "mystat": 341, "mysteri": [23, 73, 151, 334, 477], "mystr": 63, "mystr_typ": 63, "mystruct": [176, 283], "mysubclass": 428, "mysum": 340, "mysuperwhammyfunct": 362, "mytag": 413, "mytcphandl": 338, "mytest": [389, 390], "mytestcas": 388, "mytestcase1": 362, "mytestcase2": 362, "myth": 75, "myturtl": 384, "mytyp": [75, 292, 473], "mytype_dealloc": 473, "myudphandl": 338, "myvar": 161, "myvisitor": 78, "myxml": 411, "myzip": 422, "n1": 259, "n1256": 352, "n2": 259, "n42": 292, "n7": 96, "n_": 230, "n_arg": 340, "n_col_offset": 483, "n_cs_preced": 266, "n_in_sequ": 60, "n_keyword_list": 431, "n_sep_by_spac": 266, "n_sign_posn": 266, "n_token": 377, "n_wait": [138, 365], "na": [186, 326, 463, 472, 473, 474, 481, 482, 483], "nadeem": [476, 477], "nadikud": 483, "nagl": [469, 483], "naitre": 483, "naiv": [33, 68, 103, 106, 182, 203, 209, 235, 290, 340, 476, 483], "najera": [481, 482, 483], "nak": 178, "nake": 483, "nal2l": 471, "nal3l": 471, "nam": 149, "namag": 247, "name": [5, 10, 11, 13, 14, 17, 19, 20, 23, 24, 26, 28, 29, 30, 31, 33, 34, 35, 42, 45, 49, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 87, 92, 95, 96, 98, 101, 102, 103, 108, 109, 110, 112, 114, 117, 118, 119, 122, 126, 128, 133, 134, 136, 139, 140, 142, 144, 145, 147, 149, 151, 152, 153, 155, 157, 160, 161, 163, 166, 167, 169, 170, 175, 176, 177, 178, 181, 183, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 200, 202, 203, 205, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 223, 225, 226, 228, 230, 231, 233, 234, 235, 237, 238, 239, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 265, 266, 267, 268, 269, 270, 271, 272, 276, 278, 279, 281, 282, 283, 284, 285, 287, 288, 291, 292, 294, 295, 296, 297, 299, 302, 303, 305, 307, 308, 310, 311, 312, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 349, 351, 353, 354, 355, 359, 360, 361, 362, 365, 366, 369, 372, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 431, 432, 433, 434, 435, 436, 440, 441, 442, 443, 446, 449, 450, 452, 453, 455, 456, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "name1": [427, 467], "name2": [427, 467], "name2codepoint": [239, 240], "name_in_zip": 362, "name_of_modul": 362, "name_or_attr": [427, 431], "name_or_ordin": 176, "namealias": [387, 435], "nameconst": [122, 474, 481, 483], "named_express": [427, 431], "named_flag": 211, "namedefaultpair": 431, "namedexpr": 122, "namedexpress": 483, "namedint": 85, "namednodemap": [68, 273], "namedsequ": 387, "namedtemporaryfil": [110, 200, 360, 468, 474, 483], "namedtoplo": 472, "namedtupl": [60, 68, 87, 94, 117, 147, 182, 288, 299, 302, 303, 319, 329, 336, 340, 344, 347, 349, 352, 382, 385, 386, 401, 442, 468, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "namedtuple_factori": 340, "nameerror": [23, 26, 68, 176, 213, 250, 429, 430, 436, 443, 449, 450, 462, 463, 464, 467, 474, 483], "namei": 191, "namelen": 483, "nameless": 483, "namelist": 422, "nameprep": [158, 346], "namer": [68, 269, 483], "namereplac": [109, 158, 225, 258, 478, 483], "namereplace_error": 158, "namesak": 471, "namespac": [33, 45, 61, 68, 73, 78, 79, 85, 87, 89, 93, 95, 101, 114, 118, 157, 160, 168, 181, 191, 193, 207, 222, 225, 226, 230, 247, 248, 250, 251, 255, 267, 268, 273, 283, 293, 297, 299, 302, 314, 324, 331, 337, 344, 351, 352, 353, 366, 382, 385, 386, 388, 389, 390, 398, 400, 410, 411, 412, 415, 416, 427, 429, 436, 437, 445, 450, 455, 462, 463, 464, 465, 467, 469, 470, 474, 475, 477, 478, 479, 480, 481, 483, 484], "namespace_dn": [398, 467], "namespace_err": 410, "namespace_oid": 398, "namespace_separ": 314, "namespace_url": 398, "namespace_x500": 398, "namespaceerr": 410, "namespaceload": [250, 477, 483], "namespaceuri": [410, 416], "nametofont": [372, 483], "nan": [25, 68, 85, 121, 154, 186, 225, 275, 285, 343, 344, 345, 352, 430, 442, 456, 466, 468, 469, 472, 473, 475, 476, 478, 479, 483], "nand": 464, "nanj": [154, 225, 479, 483], "nanjeky": [481, 482, 483], "nannynag": 357, "nano": 459, "nanosecond": [68, 293, 366, 405, 467, 476, 481, 482, 483], "nanoserv": 303, "nanosleep": [366, 473, 483], "naoki": [472, 473, 474, 478, 479, 480, 481, 482, 483], "napm": 177, "narg": [58, 68, 89, 100, 102, 118, 292, 309, 340, 399, 451, 469, 475, 483], "nargsf": 10, "narrat": 193, "narrow": [64, 319, 337, 344, 386, 456, 464, 472, 475, 476, 483], "nasm": 483, "nasty_eq_vs_dict": 96, "nat": [223, 337, 476], "natali": [469, 476, 477, 478], "nate": 483, "nathaniel": [478, 480, 483], "nation": [69, 426], "nativ": [7, 25, 33, 41, 64, 68, 109, 115, 145, 158, 169, 170, 176, 183, 184, 208, 213, 235, 258, 293, 330, 337, 340, 344, 352, 365, 368, 384, 422, 432, 461, 464, 469, 470, 475, 476, 477, 479, 480, 481, 482, 483], "native_id": [365, 481, 483], "native_thread_id": 483, "natp2": 471, "natur": [33, 94, 106, 109, 158, 176, 186, 193, 194, 230, 261, 275, 278, 308, 330, 337, 376, 403, 413, 430, 435, 462, 466, 468, 469, 470, 471, 475, 479, 480, 483], "naur": 434, "nav": [468, 483], "navarret": [478, 483], "navig": [7, 68, 92, 177, 313, 368, 375, 483], "nb": [319, 470], "nb_absolut": 63, "nb_add": [61, 63, 100], "nb_and": 63, "nb_bool": [63, 470], "nb_divmod": 63, "nb_float": 63, "nb_floor_divid": 63, "nb_index": [47, 63, 467], "nb_inplace_add": 63, "nb_inplace_and": 63, "nb_inplace_floor_divid": 63, "nb_inplace_lshift": 63, "nb_inplace_matrix_multipli": 63, "nb_inplace_multipli": 63, "nb_inplace_or": 63, "nb_inplace_pow": 63, "nb_inplace_remaind": 63, "nb_inplace_rshift": 63, "nb_inplace_subtract": 63, "nb_inplace_true_divid": 63, "nb_inplace_xor": 63, "nb_int": 63, "nb_invert": 63, "nb_long": 63, "nb_lshift": 63, "nb_matrix_multipli": 63, "nb_multipli": 63, "nb_negat": 63, "nb_nonzero": 470, "nb_or": 63, "nb_posit": 63, "nb_power": 63, "nb_remaind": 63, "nb_reserv": 63, "nb_rshift": 63, "nb_subtract": 63, "nb_true_divid": 63, "nb_xor": 63, "nbar": 120, "nbit": 259, "nbyte": [96, 126, 133, 142, 282, 284, 314, 326, 337, 344], "ncall": [308, 483], "nchannel": [117, 141, 295, 336, 349, 401], "ncmdshow": 348, "ncol": 177, "ncpl": 103, "ncs": 398, "ncsa": 395, "ncurs": [84, 92, 177, 462, 463, 466, 472, 481, 483], "ncurses6": 483, "ncurses_vers": [177, 481, 483], "ncursesw": [476, 483], "ncycl": 261, "nd": [109, 225, 247, 255, 319, 344, 435], "ndarray": 284, "ndata": [314, 415], "ndb": 483, "ndbm": [68, 298, 330, 428, 456, 481, 483], "nde": [344, 475], "ndebug": 456, "nder": 483, "ndetail": 193, "ndez": 469, "ndiff": [68, 193, 363, 463, 464], "ndiff_output": 190, "ndigit": [221, 225, 428, 444, 483], "ndim": [7, 344], "ndk": [479, 483], "ndstr": [471, 475], "ne": [95, 112, 291, 369], "neal": [288, 465, 467, 468], "near": [28, 101, 167, 184, 186, 190, 247, 267, 269, 275, 283, 293, 297, 428, 436, 464, 465, 467, 468, 469, 470, 474, 475, 478, 483], "nearbi": 483, "nearest": [64, 103, 183, 186, 221, 225, 275, 352, 429, 436, 470, 471, 483], "neat": [106, 169, 464, 469], "neaten": 483, "nec": 149, "necess": [201, 483], "necessari": [33, 49, 61, 63, 64, 72, 73, 76, 77, 84, 85, 93, 94, 95, 99, 100, 101, 102, 106, 112, 115, 120, 133, 139, 155, 158, 161, 167, 169, 177, 184, 186, 193, 194, 195, 196, 205, 206, 207, 208, 209, 213, 225, 226, 242, 243, 247, 248, 250, 261, 266, 267, 270, 271, 272, 275, 278, 283, 288, 292, 293, 299, 302, 308, 332, 335, 337, 340, 341, 344, 346, 347, 348, 353, 355, 356, 362, 364, 365, 374, 376, 384, 388, 405, 408, 410, 412, 415, 419, 422, 428, 429, 430, 431, 436, 461, 464, 465, 467, 468, 469, 471, 474, 476, 477, 478, 479, 481, 483], "necessarili": [13, 23, 61, 63, 72, 76, 85, 100, 115, 177, 186, 193, 196, 205, 251, 271, 275, 283, 293, 299, 319, 337, 340, 344, 352, 353, 366, 385, 410, 415, 425, 426, 436, 461, 465, 467, 468, 469, 483], "ned": [109, 469, 475, 477, 481, 482, 483], "need": [5, 7, 11, 13, 23, 26, 28, 31, 33, 34, 42, 45, 49, 51, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 132, 137, 138, 139, 141, 144, 149, 151, 153, 155, 157, 158, 161, 167, 169, 173, 176, 177, 179, 181, 183, 186, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 278, 281, 283, 288, 292, 293, 295, 299, 302, 305, 307, 308, 311, 314, 319, 320, 321, 322, 325, 326, 330, 331, 332, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 377, 378, 384, 385, 386, 388, 394, 395, 399, 400, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 428, 430, 431, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "need_special_resourc": 169, "needcurrentdirectoryforexepathw": [332, 474], "needforspe": 467, "needl": 483, "needless": 483, "needn": [33, 319, 347, 480], "needs_input": [149, 270], "nefari": 245, "neg": [186, 226, 261, 291], "negat": [7, 15, 22, 23, 31, 39, 42, 45, 47, 49, 54, 58, 60, 61, 63, 64, 66, 93, 94, 95, 100, 106, 115, 120, 133, 137, 146, 149, 153, 158, 160, 175, 176, 177, 178, 183, 186, 221, 225, 226, 258, 259, 261, 266, 270, 275, 278, 283, 293, 299, 308, 319, 320, 328, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 365, 366, 369, 384, 410, 427, 428, 430, 431, 436, 441, 442, 462, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "negative_sign": 266, "neglect": 405, "neglig": [39, 344, 426], "negoti": [68, 241, 341, 468, 476, 483], "neighbor": [235, 413, 464, 465], "neil": [462, 463, 464, 465, 467, 469, 475, 478, 479, 480, 481, 483], "neither": [33, 76, 95, 99, 103, 106, 133, 144, 158, 181, 186, 191, 193, 196, 205, 209, 242, 262, 270, 271, 283, 292, 293, 299, 319, 338, 340, 341, 344, 352, 376, 380, 386, 388, 403, 425, 426, 428, 430, 455, 474, 477, 479, 480, 483], "nel": 467, "nelem": 42, "nelement": 320, "nelson": 477, "nemec": 480, "nemu": 190, "neon": 211, "neophyt": 85, "nephew": 462, "neptun": [94, 343], "nest": [5, 13, 68, 73, 85, 87, 94, 95, 101, 106, 113, 139, 160, 169, 176, 181, 186, 190, 191, 193, 199, 213, 226, 255, 261, 262, 267, 271, 283, 297, 302, 307, 312, 314, 319, 344, 352, 365, 369, 376, 381, 386, 388, 413, 415, 427, 428, 429, 430, 435, 436, 441, 442, 455, 462, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 483, 484], "nested_scop": [113, 436, 463, 464], "nester": 483, "net": [68, 81, 84, 110, 183, 194, 235, 243, 256, 293, 319, 328, 424, 426, 434, 461, 462, 463, 464, 465, 466, 467, 468, 470, 476, 483], "net4": 99, "net6": 99, "net_loc": 394, "netbsd": [115, 293, 303, 337, 365, 366, 473, 480, 483], "netdb": 483, "netherland": 426, "netlib": 426, "netlink": 467, "netloc": [394, 469, 475], "netlog": 469, "netlogg": 469, "netmask": [99, 259, 478, 483], "netmaskvalueerror": [99, 259], "netrc": [68, 217, 223, 254, 288, 464, 477, 478, 483], "netrcparseerror": 286, "netscap": [177, 243, 271, 403, 463, 466, 468, 474, 483], "netstat": 483, "network": [68, 101, 107, 109, 110, 126, 133, 136, 141, 184, 212, 247, 249, 254, 256, 257, 269, 283, 288, 293, 299, 322, 328, 335, 337, 338, 341, 347, 355, 358, 362, 394, 395, 398, 405, 414, 420, 432, 463, 464, 465, 468, 476, 478, 480, 481, 483], "network_address": 259, "network_authentication_requir": 241, "netzer": 465, "neuburg": 473, "neufeld": 483, "neumaier": 474, "neumann": 428, "neut": 483, "neutral": [64, 73, 99, 477], "neval": 299, "neve": [235, 426, 479], "never": [5, 13, 22, 23, 27, 28, 33, 34, 42, 59, 60, 61, 63, 68, 73, 76, 85, 92, 95, 101, 102, 106, 110, 120, 128, 132, 133, 139, 141, 144, 151, 158, 163, 166, 167, 169, 170, 176, 177, 181, 183, 186, 190, 196, 199, 205, 226, 230, 242, 243, 245, 247, 250, 255, 259, 262, 265, 266, 267, 269, 278, 283, 292, 293, 297, 299, 314, 319, 322, 324, 328, 332, 334, 338, 340, 341, 344, 347, 348, 358, 359, 362, 365, 369, 385, 386, 394, 400, 403, 410, 413, 415, 422, 425, 427, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "never_call_m": 386, "never_eq": 362, "nevertheless": [76, 102, 103, 139, 158, 197, 292, 358, 413, 470], "new": [1, 5, 7, 9, 13, 17, 22, 23, 26, 27, 28, 31, 33, 37, 39, 42, 43, 45, 49, 50, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 79, 84, 85, 87, 92, 93, 94, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 126, 128, 129, 132, 133, 138, 139, 144, 149, 151, 153, 155, 157, 158, 160, 161, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 191, 193, 194, 195, 196, 200, 201, 205, 206, 207, 208, 209, 213, 214, 215, 216, 221, 225, 226, 234, 235, 236, 237, 242, 247, 248, 250, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 276, 278, 280, 281, 283, 284, 288, 293, 295, 297, 299, 301, 304, 307, 308, 309, 312, 314, 315, 319, 320, 322, 325, 328, 329, 332, 333, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 355, 358, 361, 362, 365, 366, 369, 375, 376, 380, 382, 384, 385, 386, 388, 389, 394, 395, 399, 403, 405, 410, 411, 412, 413, 415, 416, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 432, 434, 436, 440, 441, 442, 449, 451, 452, 455, 456, 461, 472, 473, 483, 484], "new_arch": 421, "new_attr": 464, "new_attribut": 389, "new_b": 299, "new_cal": 389, "new_child": [160, 477, 483], "new_class": [385, 476, 483], "new_con": 340, "new_cur": 340, "new_deadlin": 139, "new_diff": 318, "new_event_loop": [126, 130, 132, 135, 481], "new_exc": 213, "new_f": 109, "new_fd": 293, "new_featur": 112, "new_fram": 141, "new_game_model": 96, "new_h_len": 320, "new_i": 177, "new_items": 344, "new_l": 85, "new_limit": [175, 467], "new_local": 87, "new_mailbox": 248, "new_mock": [389, 390], "new_modul": 474, "new_nod": 122, "new_non_team_us": 386, "new_panel": 179, "new_path": 84, "new_prefix": 259, "new_pric": 221, "new_rank": 413, "new_read": 299, "new_refcnt": 472, "new_select": 343, "new_sig": 255, "new_siz": [42, 473], "new_str": 319, "new_struct": 468, "new_target": [169, 371], "new_tarinfo": 358, "new_tre": 122, "new_typ": 473, "new_type_com": 431, "new_val": 362, "new_valu": [22, 27, 362], "new_vector": 386, "new_x": 177, "new_york": 425, "newattr": [410, 464], "newbi": [103, 467, 469], "newchild": 410, "newchildren": 376, "newdatatyp": 75, "newdatatype_cal": 75, "newdatatype_dealloc": 75, "newdatatype_getattr": 75, "newdatatype_hash": 75, "newdatatype_repr": 75, "newdatatype_richcmp": 75, "newdatatype_setattr": 75, "newdatatype_str": 75, "newdatatypeobject": 75, "newdict": 85, "newdoc": 411, "newenumnam": 94, "newer": [71, 75, 96, 101, 117, 193, 243, 247, 257, 268, 269, 288, 293, 297, 299, 312, 314, 328, 340, 344, 366, 369, 386, 408, 422, 456, 461, 474, 477, 478, 479, 480, 481, 482, 483], "newest": 139, "newfil": 331, "newfontset": 375, "newfrag": 141, "newfunc": [57, 63, 75, 226], "newgrad": 108, "newgroup": 288, "newindex": 376, "newkey": [389, 390], "newkeyword": 226, "newl": 411, "newli": [5, 42, 59, 68, 73, 85, 101, 139, 157, 161, 181, 191, 232, 243, 258, 283, 293, 302, 332, 334, 337, 375, 376, 384, 410, 427, 428, 466, 468, 474, 476, 479, 480, 483], "newlin": [24, 68, 79, 87, 102, 106, 120, 122, 143, 146, 149, 157, 159, 175, 177, 190, 193, 196, 207, 218, 225, 234, 247, 250, 258, 265, 267, 269, 270, 271, 278, 288, 296, 299, 307, 314, 319, 331, 337, 338, 344, 348, 356, 360, 364, 366, 377, 378, 381, 382, 394, 400, 411, 419, 421, 422, 427, 431, 435, 437, 449, 451, 452, 455, 463, 466, 467, 468, 469, 470, 472, 473, 477, 479, 480, 481, 482, 483, 484], "newline_and_indent_ev": 483, "newloc": 475, "newmailbox": 248, "newnam": [279, 452], "newnew": 288, "newobj": [402, 483], "newobj_ex": 483, "neworsavedgameselector": 96, "newpad": [92, 177], "newpart": 9, "newpath": 279, "newpric": 160, "news": [103, 106, 184, 194, 226, 269, 288, 394, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 483, 484], "newschem": 375, "newscmprio": 375, "newsgroup": [80, 288, 466], "newsiz": [9, 28, 60, 278], "newsocket": 341, "newsread": 271, "newstat": 141, "newstream": 331, "newsyslog": 269, "newtab": 31, "newterm": 177, "newton": [244, 319], "newtyp": [68, 187, 479, 483], "newurl": 395, "newvalu": [389, 390], "newwidth": 141, "newwin": [92, 177], "next": [7, 23, 26, 33, 37, 42, 63, 64, 68, 72, 73, 75, 76, 85, 87, 92, 93, 94, 95, 99, 102, 103, 106, 109, 112, 114, 117, 139, 141, 144, 149, 151, 153, 155, 157, 159, 160, 167, 175, 176, 177, 186, 190, 191, 193, 194, 195, 196, 197, 205, 213, 218, 221, 225, 226, 230, 236, 242, 243, 247, 250, 253, 255, 261, 267, 269, 270, 271, 278, 282, 283, 288, 292, 293, 297, 307, 308, 314, 319, 320, 323, 325, 330, 331, 333, 337, 338, 340, 341, 344, 348, 353, 354, 358, 369, 375, 376, 384, 389, 395, 400, 413, 425, 427, 428, 429, 430, 432, 434, 436, 440, 442, 449, 450, 452, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 475, 476, 478, 480, 481, 482, 484], "next_block": 483, "next_control": 281, "next_i": 261, "next_index": 483, "next_minus": 186, "next_plus": 186, "next_server_avail": 318, "next_toward": 186, "nextaft": [275, 474, 482, 483], "nextfil": 218, "nextkey": 184, "nextsibl": 410, "nez": 483, "nfc": [108, 109, 387, 481], "nfd": [108, 109, 387], "nfkc": [109, 346, 387, 394, 435, 483], "nfkd": [109, 387], "nfl": 308, "nfoo2": 319, "nframe": [117, 336, 349, 382, 401, 455], "nfs": [212, 293, 483], "ng": 483, "ngalim": [482, 483], "ngettext": [230, 483], "nginx": 341, "ngot": 395, "ngroup": 483, "ngroups_max": 483, "nh": 341, "nholm": [472, 473, 481], "nhost": 341, "ni": [77, 307, 394, 446, 467], "ni_": 337, "nibh": 149, "nice": [103, 120, 140, 144, 151, 169, 176, 193, 225, 270, 293, 322, 335, 338, 344, 403, 428, 462, 475, 476], "nice_len": 270, "nicer": [319, 483], "niceti": 468, "nich": 92, "nichola": [109, 465, 472], "nick": [95, 99, 109, 324, 428, 464, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 480, 483], "nicknam": 167, "nicola": 483, "niehof": 476, "niel": 483, "niemey": [230, 464, 465, 466, 467], "nifti": 465, "nigetspamdata": 77, "night": 167, "nikhil": 479, "nikita": [473, 474, 483], "nikla": [472, 473, 483], "nikolaou": [472, 474, 482, 483], "nikolaus": [478, 483], "nikolay": [479, 483], "nil": [419, 465], "nim": 384, "nimstick": 384, "nina": 483, "nine": [109, 186, 355, 477, 483], "nine_year": 183, "ninth": 463, "nir": [469, 475, 476, 480, 483], "nirina": 469, "nis": [68, 233, 254, 350, 467, 473, 474, 483], "nishimura": [318, 426], "nist": [235, 465], "nistpub": 235, "nistspecialpublication800": 235, "nitem": [61, 63], "nitin": 483, "nitish": [480, 483], "nitpick_ignor": 483, "nix": 480, "nkeyboard": 420, "nl": [177, 178, 240, 337, 377, 378, 394, 426, 435, 468, 483], "nl1l": 471, "nl_langinfo": [34, 266, 464, 483], "nlargest": [87, 108, 225, 226, 236, 466, 467, 483], "nline": [177, 188], "nlocal": [13, 142, 385], "nlst": [223, 476], "nmh": 271, "nmro": 103, "nmsmallest": 483, "nmt": 483, "nn": 86, "nng": 102, "nngsockethandl": 102, "nngsocketlisten": 102, "nnn": [225, 240, 395], "nnnn": [478, 483], "nnnnnn": 348, "nntlib": 288, "nntp": [68, 194, 254, 350, 394, 466, 476, 482, 483], "nntp_implement": 288, "nntp_ssl": [288, 475, 482, 483], "nntp_version": 288, "nntpdataerror": 288, "nntperror": [288, 483], "nntplib": [68, 142, 194, 201, 254, 350, 462, 466, 469, 471, 473, 474, 475, 483], "nntppermanenterror": 288, "nntpprotocolerror": 288, "nntpreplyerror": 288, "nntps": 288, "nntptemporaryerror": 288, "no": [5, 7, 11, 13, 17, 18, 22, 23, 24, 26, 27, 31, 33, 34, 35, 37, 39, 41, 42, 45, 46, 49, 51, 53, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 100, 102, 103, 104, 105, 106, 108, 109, 110, 112, 115, 117, 120, 122, 126, 132, 133, 137, 138, 139, 141, 144, 146, 151, 153, 155, 158, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 201, 203, 205, 207, 208, 209, 212, 213, 214, 216, 218, 225, 226, 228, 230, 234, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 309, 311, 313, 314, 318, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 373, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 441, 443, 444, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "no_block": [11, 483], "no_bug": 73, "no_cach": 425, "no_cont": 241, "no_data_allowed_err": 410, "no_debug_rang": [34, 428, 455, 473], "no_ev": 353, "no_modification_allowed_err": 410, "no_proxi": [395, 483], "no_sit": [34, 352, 475], "no_strict_list_append": 462, "no_trac": 362, "no_type_check": [386, 473, 483], "no_type_check_decor": 386, "no_user_sit": [352, 475], "noah": 483, "noam": 483, "nobodi": [73, 151, 235, 245, 335, 483], "noboundaryinmultipartdefect": 199, "nocbreak": [92, 177], "nodataallowederr": 410, "noddi": 28, "node": [68, 232, 235, 259, 264, 273, 293, 294, 296, 303, 337, 341, 352, 376, 377, 398, 411, 412, 413, 415, 452, 456, 462, 465, 467, 468, 469, 472, 475, 479, 480, 481, 482, 483], "node_depth": 235, "node_group": 232, "node_offset": [235, 483], "node_or_str": 122, "nodefaultcurrentdirectoryinexepath": 332, "nodefaultroot": 483, "nodej": 257, "nodelay": [92, 177], "nodelist": [68, 273, 411, 428], "nodenam": [293, 303, 410], "noderawf": 456, "nodetransform": [122, 468, 483], "nodetyp": [410, 411], "nodevalu": 410, "nodevisitor": [122, 468, 481, 483], "nodist": 399, "noecho": [92, 177], "noexpr": 266, "nofar": 483, "noflag": [319, 483], "nofre": 475, "nois": [190, 292, 293, 343, 483], "noisi": [190, 292, 483], "noller": [468, 471], "nome": 95, "nomenclatur": 352, "nomial": 343, "nomin": [68, 122, 187, 483], "nomodificationallowederr": 410, "non": [5, 7, 9, 11, 13, 18, 22, 23, 25, 26, 28, 31, 34, 35, 36, 39, 42, 45, 49, 58, 59, 60, 61, 63, 64, 68, 71, 73, 75, 76, 84, 92, 93, 94, 95, 100, 101, 102, 103, 107, 109, 110, 115, 120, 125, 132, 133, 139, 143, 144, 149, 151, 155, 158, 167, 169, 175, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 215, 223, 225, 226, 228, 230, 233, 234, 235, 237, 242, 243, 245, 247, 248, 250, 252, 253, 257, 258, 259, 261, 265, 266, 268, 269, 273, 275, 276, 278, 283, 285, 288, 292, 293, 295, 296, 297, 298, 299, 302, 305, 308, 311, 314, 316, 319, 320, 322, 328, 331, 332, 333, 334, 335, 337, 338, 342, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 377, 385, 386, 388, 394, 395, 400, 403, 415, 419, 422, 425, 426, 427, 428, 429, 430, 432, 433, 435, 436, 440, 441, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "non_authoritative_inform": 241, "non_existent_fil": 348, "non_existing_attribut": 389, "non_nul": 442, "non_profiled_stuff": 104, "non_release_vers": 303, "nonadjust": 366, "nonam": [193, 422], "nonblock": [295, 483], "noncallablemagicmock": 389, "noncallablemock": [389, 483], "noncod": 101, "noncompli": 305, "nondeterminist": 337, "none": [3, 5, 16, 20, 23, 26, 31, 33, 34, 45, 55, 56, 58, 63, 64, 67, 68, 73, 80, 85, 87, 88, 89, 93, 95, 96, 101, 102, 103, 106, 107, 108, 110, 112, 113, 114, 116, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 141, 143, 144, 147, 149, 150, 151, 152, 155, 157, 158, 159, 160, 161, 163, 166, 167, 168, 169, 170, 172, 173, 175, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 216, 218, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 236, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 279, 281, 283, 284, 286, 287, 288, 291, 292, 293, 296, 297, 299, 300, 302, 304, 305, 307, 308, 311, 312, 314, 316, 318, 319, 320, 321, 323, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 343, 344, 345, 347, 348, 349, 352, 353, 355, 358, 359, 360, 362, 364, 365, 366, 367, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 430, 431, 432, 435, 436, 437, 441, 442, 443, 446, 450, 453, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "nonempti": [155, 191, 319, 344, 384, 403, 428], "nonemptyseq": 103, "nonetheless": 248, "nonetyp": [89, 168, 193, 226, 284, 319, 385, 386, 472, 473, 483], "nonexclus": 426, "nonexist": [166, 483], "nonexistentfil": 296, "noninfring": 426, "nonl": 177, "nonloc": [68, 85, 87, 122, 160, 225, 255, 261, 351, 427, 429, 431, 433, 435, 440, 441, 470, 479, 483], "nonlocal_stmt": [431, 436], "nonmemb": [211, 473, 483], "nonmultipart": [206, 483], "nonneg": [5, 149, 186, 270, 337, 384, 430, 436], "nonnorm": 483, "nonprint": [64, 344], "nonrandom": 149, "nonsens": [293, 477], "nonspac": [109, 435], "nonstandard": [340, 456, 467], "nontrivi": 483, "nonzero": [11, 23, 33, 59, 73, 106, 112, 115, 186, 191, 225, 269, 275, 278, 283, 311, 319, 352, 361, 365, 366, 428, 435, 438, 455, 468, 481], "nonzerodigit": 435, "noop": [248, 283, 305, 335, 483], "nooptionerror": [167, 469], "nop": [191, 359, 441, 483], "nope": [167, 441], "nopic": 384, "nopip": 399, "noptarg": 483, "noqiflush": 177, "nor": [23, 33, 34, 63, 75, 76, 84, 89, 94, 99, 103, 110, 133, 144, 158, 191, 242, 243, 270, 283, 292, 293, 297, 299, 302, 319, 330, 338, 340, 341, 344, 352, 353, 376, 380, 386, 388, 403, 425, 426, 428, 430, 455, 456, 474, 475, 477, 479, 480, 483], "noraw": 177, "nordic": 158, "nores": 384, "noreturn": [386, 483], "norm": [275, 483], "normal": [5, 20, 22, 23, 25, 31, 33, 34, 45, 49, 51, 56, 58, 63, 66, 72, 73, 75, 76, 85, 92, 93, 94, 101, 102, 106, 107, 108, 109, 110, 120, 139, 144, 146, 155, 158, 167, 169, 176, 177, 181, 183, 186, 190, 193, 195, 196, 200, 202, 205, 208, 209, 214, 218, 220, 221, 225, 226, 230, 234, 235, 242, 247, 248, 258, 266, 267, 268, 269, 275, 276, 282, 283, 288, 292, 293, 297, 299, 302, 308, 311, 314, 319, 320, 321, 324, 331, 333, 335, 337, 339, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 362, 364, 365, 366, 369, 372, 374, 376, 381, 384, 385, 386, 387, 388, 394, 395, 400, 410, 411, 414, 415, 416, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 461, 463, 468, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "normal_argu": 389, "normal_priority_class": 348, "normaldist": [68, 290, 481, 483], "normalis": [413, 483], "normalizationtest": 483, "normalize_encod": [472, 482, 483], "normalize_whitespac": 193, "normalizestr": 483, "normalvari": [84, 318, 483], "normat": 435, "normcas": [220, 294, 483], "normpath": [293, 294, 469, 483], "north": [94, 183, 376, 384, 469, 471, 483], "northampton": 110, "norvig": 318, "norwegian": [73, 158, 441], "norwitz": [288, 465, 467, 468], "nos": 465, "nose": 469, "nosectionerror": 167, "noshow": 102, "nosigint": [297, 475], "nostra": 467, "nosuchdb": 340, "nosuchfont": 102, "nosuchmailboxerror": 271, "not": [5, 7, 9, 11, 13, 17, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 39, 42, 43, 45, 46, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 87, 89, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 107, 108, 109, 110, 112, 114, 115, 117, 120, 122, 124, 125, 128, 129, 132, 133, 136, 137, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 310, 311, 312, 313, 314, 318, 319, 320, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 348, 349, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 448, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "not_": [95, 291], "not_a_child": 389, "not_a_test": 390, "not_accept": 241, "not_don": 166, "not_export": [362, 483], "not_extend": 241, "not_found": [241, 242, 483], "not_found_err": 410, "not_impl": 241, "not_modifi": 241, "not_non": 473, "not_submock": 389, "not_supported_err": 410, "not_test": 430, "notabl": [68, 100, 137, 191, 266, 283, 333, 340, 353, 400, 425, 463, 465, 466, 467, 468, 469, 471, 478, 479, 484], "notadirectoryerror": [23, 212, 213, 293, 450, 476, 483], "notaft": 341, "notar": 459, "notat": [68, 78, 87, 95, 99, 102, 103, 106, 109, 167, 186, 225, 259, 262, 278, 293, 299, 314, 337, 344, 345, 348, 363, 369, 389, 410, 413, 415, 427, 428, 430, 431, 433, 435, 440, 446, 455, 465, 466, 467, 470, 475, 481, 482, 483], "notation3": 483, "notation_nod": 410, "notationdecl": 415, "notationdeclhandl": 314, "notationnam": 314, "notbefor": 341, "notconnect": 242, "note": [5, 7, 23, 25, 28, 31, 33, 34, 42, 45, 46, 51, 54, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 120, 132, 137, 139, 141, 151, 157, 158, 161, 163, 167, 169, 176, 177, 178, 181, 183, 184, 190, 191, 193, 194, 196, 199, 200, 201, 204, 205, 208, 209, 213, 214, 215, 216, 220, 221, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 256, 257, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 278, 283, 284, 285, 287, 288, 290, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 309, 314, 319, 321, 322, 324, 328, 331, 332, 334, 335, 340, 344, 345, 347, 348, 352, 353, 354, 358, 359, 361, 362, 364, 365, 366, 368, 369, 378, 381, 384, 385, 386, 388, 394, 395, 400, 403, 405, 407, 410, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 427, 428, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 478, 479, 480, 481, 482, 483], "note_track": 328, "notebook": [68, 368, 375, 481, 483], "notebooktabchang": 376, "notemptyerror": 271, "notenoughresourceserror": 472, "notenoughscienceerror": 472, "notepad": 158, "noteq": [122, 431], "noteq_bitwise_or": 431, "notequ": 377, "notest": 422, "noteworthi": [271, 462, 463], "notfounderr": 410, "notgener": 386, "noth": [23, 33, 34, 42, 58, 64, 72, 73, 75, 101, 102, 103, 106, 110, 115, 132, 139, 154, 158, 169, 177, 181, 183, 190, 191, 193, 226, 247, 248, 266, 267, 268, 269, 271, 282, 283, 292, 299, 305, 319, 332, 333, 338, 340, 344, 346, 348, 359, 365, 369, 382, 386, 388, 399, 417, 426, 428, 430, 435, 436, 441, 455, 464, 465, 468, 469, 474, 477, 478, 481, 482, 483], "nothead": 103, "notic": [73, 76, 96, 100, 101, 102, 103, 106, 110, 112, 132, 133, 158, 167, 173, 184, 186, 202, 218, 250, 258, 269, 283, 332, 337, 340, 355, 362, 369, 384, 426, 428, 430, 461, 463, 465, 469, 475, 476, 480, 481, 483], "notif": [32, 67, 68, 329, 400, 405, 415, 462, 469, 474, 481, 483], "notifi": [22, 59, 101, 134, 138, 139, 247, 248, 283, 353, 365, 371, 483], "notify_al": [138, 365, 472, 483], "notify_by_email": 386, "notifyal": [365, 472, 483], "notimeout": 177, "notimpl": [49, 68, 94, 116, 168, 213, 226, 250, 289, 299, 385, 389, 430, 450, 469, 470, 472, 477, 482, 483], "notimplementederror": [23, 133, 168, 183, 200, 213, 226, 243, 250, 267, 283, 293, 296, 318, 341, 386, 405, 422, 450, 477, 479, 483], "notimplementedtyp": [168, 385, 472, 483], "notin": [122, 431], "notin_bitwise_or": 431, "notion": [58, 183, 186, 190, 193, 225, 299, 344, 376, 410, 414, 430, 434, 475], "notori": 93, "notrequir": [386, 473, 483], "notset": [101, 267, 268, 283], "notstandalonehandl": 314, "notsupportederr": 410, "notsupportederror": [340, 483], "nottingham": 452, "nottinghamfolk": 452, "notwithstand": [426, 462], "noun": [345, 483], "noutrefresh": [92, 177], "nov": [95, 183, 209, 223, 245, 341, 366, 464, 479], "nova": 453, "novel": [464, 465, 467], "novemb": [78, 150, 183, 435, 483], "novic": 292, "now": [10, 23, 28, 33, 34, 39, 42, 49, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 84, 85, 92, 93, 94, 101, 102, 103, 106, 107, 108, 109, 110, 115, 117, 120, 126, 132, 133, 137, 139, 140, 141, 146, 149, 151, 153, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 200, 202, 205, 212, 213, 214, 215, 216, 218, 221, 225, 226, 230, 234, 235, 242, 243, 244, 245, 248, 250, 251, 252, 255, 258, 259, 262, 266, 267, 268, 269, 270, 271, 275, 278, 282, 283, 284, 288, 292, 293, 295, 297, 299, 304, 305, 308, 309, 311, 313, 314, 319, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 359, 360, 365, 366, 377, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 411, 413, 419, 420, 422, 423, 427, 428, 430, 432, 435, 436, 441, 442, 449, 450, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "nowaday": 358, "nowak": 465, "nowrap": 150, "np": [284, 476], "np0": 471, "np22": 103, "npb": [158, 465], "npgettext": 230, "npj": 476, "npn": [341, 472, 483], "nport": 167, "nptl": 96, "npy_": 319, "npy_myfunc": 319, "npy_relaxed_strides_check": 483, "npython": 468, "nrp3": 471, "ns": [142, 293, 314, 382, 385, 398, 413, 473, 483], "nsec": 367, "nsecond": [258, 449], "nset": 471, "nsig": [333, 483], "nskeyedarchiv": [304, 481], "nskeyedunarchiv": 304, "nsmallest": [87, 108, 225, 226, 236, 466, 467], "nsmallnegint": 483, "nsmallposint": 483, "nss": 341, "nsson": [469, 475, 477], "nstype": 293, "nsubject": 102, "nswe": 376, "nsystem": 299, "nt": [68, 101, 110, 160, 269, 293, 303, 314, 315, 352, 399, 411, 413, 462, 475, 481, 483, 484], "nt4": 468, "nt_gnu_abi_tag": 98, "nt_gnu_build_id": 98, "nt_offset": 377, "nt_stapsdt": 98, "nt_user": [68, 315, 475], "nt_venv": [355, 473, 483], "nteventloghandl": [68, 101, 118, 268], "ntfs": [84, 483], "nth": [7, 261, 376], "nthree": 190, "nto": [102, 335], "ntoh": [107, 337, 472, 480, 483], "ntohl": [107, 337], "ntp": 366, "ntpath": [294, 480, 483], "ntr": 299, "ntransfercmd": 223, "ntree": 190, "ntsc": 477, "ntwo": 190, "nu": [158, 465], "nuanc": 354, "nubi": 468, "nubia": 108, "nuget": [68, 458, 480, 483], "nugetclidl": 461, "nuitka": [78, 85], "nul": [5, 63, 176, 177, 178, 237, 269, 284, 293, 296, 314, 347, 352, 419, 475, 476, 483], "nul_bug_demo": 284, "null": [2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 47, 49, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 72, 75, 76, 79, 93, 100, 102, 109, 122, 175, 176, 191, 225, 227, 243, 262, 272, 281, 284, 287, 293, 299, 318, 319, 337, 340, 341, 347, 348, 405, 408, 410, 411, 422, 431, 435, 436, 462, 466, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "null_ptr": 176, "nullcontext": [169, 472, 480, 483], "nullhandl": [68, 101, 118, 471], "nullifi": 483, "nullimport": [474, 476], "nullptr": 483, "nulltransl": [68, 246, 473], "nulti": 483, "num": [15, 102, 122, 158, 177, 186, 226, 230, 240, 248, 283, 292, 300, 341, 345, 386, 441, 442, 468, 469, 474, 481, 483], "num_act": 261, "num_address": [99, 259], "num_param": 340, "num_request": 102, "num_serv": 318, "num_str": [262, 379], "num_ticket": [341, 483], "numarg": 72, "numarray": 467, "numba": 74, "number": [5, 7, 9, 13, 22, 23, 25, 26, 28, 31, 32, 33, 39, 41, 42, 47, 50, 54, 55, 58, 59, 60, 64, 66, 68, 72, 73, 75, 76, 77, 79, 84, 87, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 106, 108, 109, 112, 115, 116, 117, 118, 120, 122, 126, 132, 133, 137, 138, 139, 141, 144, 146, 149, 151, 152, 154, 155, 158, 160, 163, 166, 167, 170, 173, 175, 176, 177, 183, 186, 190, 191, 193, 195, 196, 199, 202, 203, 205, 208, 211, 212, 213, 214, 215, 216, 218, 221, 225, 226, 230, 234, 235, 240, 242, 244, 245, 247, 248, 250, 251, 254, 255, 257, 258, 259, 261, 264, 266, 267, 269, 270, 271, 272, 274, 275, 276, 278, 281, 283, 285, 288, 290, 292, 295, 297, 299, 304, 305, 307, 308, 312, 313, 314, 315, 318, 319, 320, 321, 322, 324, 325, 326, 328, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 358, 359, 362, 364, 365, 366, 367, 369, 376, 377, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 400, 402, 403, 405, 406, 407, 408, 410, 413, 414, 416, 417, 419, 422, 425, 427, 430, 431, 432, 434, 435, 436, 441, 442, 443, 444, 445, 450, 451, 452, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "number_class": 186, "number_of_process": 283, "number_of_subs_mad": 319, "numberstest": [388, 477], "numer": [7, 41, 47, 63, 64, 68, 85, 95, 101, 102, 106, 109, 110, 144, 147, 154, 158, 177, 186, 191, 209, 212, 213, 221, 225, 233, 234, 238, 240, 242, 245, 261, 262, 266, 267, 275, 283, 289, 290, 293, 302, 308, 314, 319, 325, 331, 335, 337, 340, 341, 343, 344, 345, 352, 369, 376, 377, 384, 387, 388, 395, 413, 419, 422, 430, 449, 461, 463, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 481, 483], "numeric_level": 101, "numeric_own": [358, 478, 483], "numeric_typ": 344, "numfre": 468, "numinput": [384, 483], "numlin": 190, "numliter": 112, "nummessag": 305, "numpi": [2, 68, 85, 121, 225, 284, 299, 343, 444, 450, 453, 461, 467, 468, 473, 475, 476, 478, 483], "nunc": 149, "nurpmeso": 475, "nurseri": 483, "nvlpub": 235, "nw": 369, "nwfu0wseb0krcjhdep": 235, "nworld": 364, "nx": 319, "nxn": [95, 464, 465], "nyayapati": 483, "nyberg": 483, "nyman": 465, "nz": 243, "nzerodivisionerror": 102, "o0": [362, 483], "o1": [47, 49, 54, 78, 181], "o2": [47, 49, 54, 78, 181, 306, 402], "o3": [47, 72], "o_append": [282, 293], "o_async": 293, "o_binari": [33, 34, 282, 293], "o_cloexec": [293, 476, 483], "o_creat": 293, "o_direct": 293, "o_directori": 293, "o_dsync": 293, "o_evton": [293, 472, 483], "o_excl": [293, 360], "o_exlock": [215, 293, 467, 483], "o_fsync": [293, 472, 483], "o_ndelay": [107, 215, 293], "o_noatim": 293, "o_noctti": 293, "o_nofollow": 293, "o_nofollow_ani": [293, 472, 483], "o_noinherit": 293, "o_nonblock": [107, 293, 476, 478, 483], "o_path": [293, 477, 483], "o_random": 293, "o_rdon": [225, 282, 283, 293], "o_rdwr": [293, 333], "o_rsync": 293, "o_sequenti": 293, "o_shlock": [215, 293, 467, 483], "o_short_liv": 293, "o_symlink": [293, 472, 483], "o_sync": 293, "o_temporari": [293, 360], "o_text": [33, 282, 293], "o_tmpfil": [293, 360, 477, 483], "o_trunc": 293, "o_wron": [293, 333], "ob": [12, 19, 20, 29, 56, 67, 402, 473], "ob1": 483, "ob_bas": [57, 58, 76, 96, 483], "ob_digit": [96, 483], "ob_fval": 76, "ob_refcnt": [57, 63, 96, 472, 483], "ob_shash": [473, 474, 483], "ob_siz": [57, 58, 63, 96, 473, 483], "ob_typ": [57, 63, 76, 96, 473, 483], "oberkirch": [478, 480, 483], "obershelp": 190, "obey": [110, 331, 348, 365, 428, 468], "obj": [7, 9, 10, 23, 24, 26, 28, 33, 36, 39, 43, 45, 48, 49, 52, 63, 64, 75, 77, 78, 84, 85, 87, 93, 94, 95, 102, 112, 129, 139, 142, 158, 161, 176, 179, 181, 191, 193, 197, 208, 211, 213, 225, 227, 255, 259, 262, 278, 283, 291, 299, 321, 344, 345, 362, 382, 386, 388, 389, 402, 428, 431, 440, 441, 462, 463, 464, 465, 466, 467, 468, 472, 473, 478, 480, 481, 483], "obj1": [75, 466], "obj2": [75, 466], "obj_addr": 58, "obj_or_typ": 176, "obj_tot": 95, "obj_underlyingdatatypeptr": 75, "objdump": 176, "object": [5, 6, 7, 11, 13, 14, 16, 17, 20, 22, 25, 26, 28, 31, 32, 33, 34, 35, 37, 39, 41, 43, 45, 46, 47, 49, 53, 54, 55, 59, 61, 64, 66, 67, 68, 72, 73, 74, 76, 77, 78, 80, 87, 92, 95, 96, 103, 104, 106, 108, 109, 110, 115, 116, 117, 118, 119, 121, 125, 126, 129, 133, 136, 137, 138, 141, 142, 144, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 163, 164, 167, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 184, 187, 188, 189, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 209, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 229, 230, 231, 233, 234, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 261, 264, 269, 270, 271, 273, 274, 276, 278, 282, 285, 288, 290, 291, 292, 294, 297, 298, 302, 304, 305, 307, 308, 310, 313, 314, 315, 322, 323, 324, 329, 331, 332, 333, 335, 336, 337, 339, 341, 345, 347, 349, 351, 352, 355, 358, 360, 361, 362, 363, 364, 366, 369, 371, 374, 378, 380, 381, 382, 385, 386, 387, 388, 390, 394, 397, 399, 400, 401, 402, 404, 406, 407, 411, 412, 413, 414, 415, 417, 420, 421, 423, 424, 425, 426, 427, 429, 430, 432, 433, 436, 440, 441, 442, 446, 449, 450, 452, 455, 456, 459, 461, 462, 463, 464, 467, 470, 471, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "object_getattribut": 93, "object_hook": [262, 483], "object_list": 283, "object_new": 93, "object_or_typ": 225, "object_pairs_hook": [262, 469, 471], "object_parts_hook": 262, "object_to_patch": 362, "objectnam": 102, "objectwis": 462, "objimpl": 462, "objn": 466, "objobjargproc": [57, 63], "objobjproc": [57, 63], "objtyp": 93, "oblig": [353, 426, 462], "obmalloc": [42, 96, 463, 465, 467, 477, 482, 483], "obscur": [183, 193, 468, 477, 478, 480, 483], "observ": [13, 27, 85, 94, 102, 183, 208, 318, 343, 348, 382, 384, 394, 436, 464, 476, 483], "observed_diff": 318, "obsolesc": 305, "obsolet": [73, 92, 151, 213, 243, 262, 267, 314, 344, 366, 394, 400, 403, 408, 419, 462, 463, 464, 467, 469, 474, 475, 477, 478, 479, 483], "obstacl": [241, 483], "obtain": [7, 31, 64, 92, 99, 101, 103, 106, 137, 149, 151, 152, 153, 177, 183, 186, 190, 196, 197, 203, 205, 208, 215, 225, 235, 248, 258, 259, 261, 266, 267, 268, 269, 270, 278, 283, 292, 293, 308, 311, 313, 319, 337, 341, 344, 348, 366, 395, 399, 413, 414, 415, 426, 427, 430, 436, 461, 462, 464, 465, 467, 468, 475, 476, 477, 478, 479, 480, 483], "obtrus": 483, "obufcount": 295, "obuffre": 295, "obvious": [63, 73, 95, 101, 102, 103, 106, 167, 177, 186, 267, 292, 295, 299, 308, 323, 347, 348, 362, 379, 413, 461, 462, 466, 467, 479, 483], "ocaml": 95, "occas": [109, 110, 297, 313, 333, 347, 362, 467, 477], "occasion": [72, 84, 102, 120, 169, 177, 186, 190, 201, 205, 230, 247, 271, 292, 293, 365, 436, 462, 467, 468, 475, 483], "occupi": [73, 109, 117, 283, 322, 376, 477], "occur": [5, 7, 13, 17, 18, 22, 23, 31, 39, 42, 45, 49, 59, 63, 64, 66, 73, 75, 79, 85, 93, 95, 99, 101, 102, 109, 120, 122, 137, 139, 144, 151, 152, 157, 158, 167, 169, 170, 177, 181, 183, 186, 190, 191, 193, 203, 212, 213, 218, 228, 230, 247, 250, 255, 261, 267, 269, 270, 271, 288, 292, 293, 297, 299, 302, 311, 314, 319, 328, 332, 333, 335, 337, 344, 345, 348, 352, 353, 358, 362, 364, 365, 366, 369, 371, 376, 381, 384, 385, 386, 388, 395, 400, 403, 407, 410, 412, 413, 415, 419, 422, 427, 428, 429, 430, 432, 435, 436, 443, 452, 465, 467, 468, 469, 470, 472, 475, 476, 477, 480, 481, 482, 483], "occurr": [54, 64, 85, 106, 160, 167, 177, 186, 196, 205, 228, 271, 292, 319, 328, 344, 358, 400, 413, 428, 429, 430, 431, 434, 435, 436, 464, 466, 467, 470, 475, 483], "ocert": [428, 455], "ocfs2": 215, "ochoa": 483, "ocsp": [341, 477], "oct": [85, 95, 102, 183, 211, 223, 225, 341, 344, 345, 352, 367, 428, 450, 464, 468, 470, 483], "octagon": 384, "octal": [64, 85, 106, 112, 151, 184, 259, 292, 293, 319, 344, 345, 435, 462, 463, 465, 466, 468, 470, 472, 473, 474, 475, 480, 481, 482, 483], "octdigit": [345, 435], "octet": [99, 200, 206, 259, 305, 345, 394, 483], "octinteg": 435, "octob": [103, 150, 183, 462, 464, 465, 468, 474, 481, 482], "od": [160, 469, 472, 475, 483], "od1": [160, 469], "od2": [160, 469], "odd": [64, 92, 95, 153, 186, 235, 308, 348, 435, 441, 462, 465, 466, 467, 469, 483], "oddbal": 292, "odditi": 483, "odict": 483, "odictobject": [472, 483], "odm": 483, "odomet": 261, "odziej": [479, 483], "oe": 471, "oem": [158, 479, 483], "of": [1, 5, 6, 7, 9, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 87, 89, 91, 92, 96, 103, 105, 106, 108, 109, 110, 112, 113, 114, 115, 117, 118, 119, 120, 122, 123, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 147, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 170, 173, 175, 176, 177, 178, 179, 180, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 280, 281, 282, 284, 287, 288, 289, 290, 292, 295, 296, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 349, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 374, 375, 376, 377, 378, 379, 380, 381, 383, 385, 387, 388, 389, 394, 395, 397, 398, 402, 403, 405, 406, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 420, 421, 423, 425, 426, 427, 430, 431, 432, 433, 434, 436, 440, 441, 442, 443, 444, 446, 448, 449, 450, 451, 452, 455, 457, 458, 459, 463, 464, 465, 466, 467, 468, 471, 472, 473, 475, 476, 482, 483, 484], "ofey": [474, 483], "off": [68, 84, 92, 95, 101, 102, 106, 110, 112, 120, 155, 167, 176, 177, 183, 190, 191, 200, 208, 209, 216, 225, 232, 243, 247, 267, 268, 269, 290, 292, 301, 305, 308, 315, 331, 335, 344, 361, 362, 366, 376, 384, 388, 395, 420, 428, 432, 435, 436, 448, 455, 462, 463, 464, 465, 466, 467, 468, 470, 475, 477, 478, 479, 481, 482, 483], "off_t": 306, "offend": [429, 443, 463], "offer": [33, 63, 73, 84, 91, 92, 93, 94, 95, 99, 101, 102, 109, 157, 161, 186, 216, 225, 235, 258, 261, 267, 268, 269, 271, 283, 297, 319, 320, 324, 332, 337, 340, 344, 348, 354, 365, 366, 395, 405, 408, 416, 426, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 477, 481, 482, 483], "offic": [194, 426], "offici": [33, 103, 105, 158, 195, 209, 276, 295, 341, 369, 388, 411, 419, 428, 461, 462, 463, 464, 467, 469, 475, 476, 478, 480, 482, 483], "offlin": [288, 382, 461], "offload": 283, "offscreen": 376, "offset": [7, 10, 20, 22, 23, 26, 28, 58, 61, 63, 75, 76, 84, 93, 98, 122, 126, 141, 142, 153, 176, 183, 186, 191, 203, 209, 213, 215, 223, 235, 240, 255, 258, 271, 278, 283, 293, 306, 314, 337, 340, 347, 353, 358, 362, 366, 379, 381, 415, 422, 425, 428, 446, 455, 462, 467, 468, 472, 475, 476, 480, 483], "offset_data": 358, "offset_dst": 293, "offset_src": 293, "offsetof": [58, 76, 474], "offvalu": 369, "oflag": 361, "ofs": 176, "often": [11, 13, 33, 58, 64, 73, 75, 76, 84, 85, 92, 93, 95, 99, 102, 106, 109, 110, 120, 146, 151, 155, 176, 183, 184, 186, 190, 193, 194, 213, 225, 230, 233, 255, 267, 281, 292, 299, 308, 309, 311, 331, 337, 340, 341, 344, 346, 348, 354, 362, 365, 366, 369, 386, 395, 414, 428, 430, 434, 435, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 478, 481, 483], "og": [319, 362, 483], "ogam": 483, "ogr": 319, "ohioe": 84, "oid": [341, 398, 402, 483], "ois": [230, 476, 477, 478], "ok": [25, 73, 110, 177, 189, 193, 223, 241, 242, 243, 245, 248, 292, 335, 341, 373, 375, 386, 388, 407, 441, 466, 473, 474, 475, 483], "ok_command": 189, "ok_ev": 189, "okano": [482, 483], "okay": [33, 94, 120, 167, 266, 386], "okcancel": 373, "oksman": 483, "oktob": 435, "old": [5, 9, 13, 23, 42, 45, 58, 59, 60, 64, 68, 73, 85, 101, 103, 105, 106, 112, 120, 151, 160, 169, 176, 177, 187, 196, 205, 225, 226, 243, 248, 250, 262, 268, 269, 271, 276, 283, 292, 293, 297, 299, 304, 308, 330, 333, 340, 343, 344, 352, 358, 361, 362, 369, 381, 382, 384, 386, 410, 415, 427, 428, 430, 435, 436, 462, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "old_arch": 421, "old_binascii": 100, "old_factori": [102, 267], "old_level": 102, "old_method": 390, "old_nod": 122, "old_password": 167, "old_path": 84, "old_pric": 221, "old_snapshot": 382, "old_target": 371, "old_tarinfo": 358, "old_valu": 170, "old_width": 141, "oldattr": 410, "oldb": 386, "oldchild": 410, "olddict": 85, "older": [5, 33, 61, 63, 68, 73, 75, 78, 92, 96, 102, 119, 120, 164, 177, 186, 190, 202, 230, 235, 247, 251, 252, 268, 288, 293, 295, 297, 299, 314, 328, 340, 352, 354, 362, 369, 377, 386, 395, 415, 422, 430, 432, 462, 465, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "oldest": [139, 227, 269, 365, 382, 469, 475, 480, 481, 483], "oldmailbox": 248, "oldmask": 177, "oldmodul": 362, "oldnam": 279, "oldpackag": 467, "oldpars": [455, 482, 483], "oldpath": 279, "oldt": 386, "oldweirdtrio": 386, "oledl": [176, 468, 483], "oleg": [467, 474, 483], "oleksandr": [482, 483], "oliph": [467, 468, 469], "oliv": [462, 483], "oliva": 483, "olivedrab1": 376, "olivedrab2": 376, "oliveira": 483, "olivi": [481, 483], "olko": 483, "olsen": [84, 468, 469], "olson": [183, 483], "omar": [479, 480, 483], "omg": [410, 411], "omiss": [255, 314, 337, 483], "omit": [23, 60, 68, 75, 102, 104, 106, 117, 120, 153, 167, 176, 177, 183, 190, 193, 200, 201, 202, 204, 213, 225, 230, 234, 245, 247, 248, 252, 258, 259, 265, 266, 271, 276, 278, 283, 288, 292, 293, 297, 299, 305, 314, 319, 320, 328, 331, 332, 334, 335, 337, 340, 344, 345, 358, 365, 376, 381, 384, 386, 388, 400, 411, 413, 414, 421, 426, 427, 428, 430, 431, 435, 436, 455, 461, 465, 466, 467, 469, 470, 476, 477, 479, 480, 483], "omit_suffix": 362, "on": [1, 5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 39, 41, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 80, 85, 86, 89, 91, 92, 93, 94, 96, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 120, 122, 132, 133, 136, 137, 138, 139, 141, 144, 146, 153, 155, 157, 158, 161, 163, 164, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 209, 212, 213, 215, 220, 221, 224, 225, 228, 232, 233, 234, 235, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 289, 292, 293, 295, 296, 297, 298, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 334, 335, 338, 339, 340, 342, 344, 345, 346, 347, 352, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 368, 369, 371, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 398, 399, 400, 403, 405, 406, 407, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 442, 446, 448, 449, 451, 455, 456, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "on_cleanup": 388, "on_con_lost": 133, "on_delet": [33, 483], "on_error": [296, 386], "on_fals": 85, "on_mot": 371, "on_or_off": 193, "on_releas": 371, "on_success": 386, "on_tru": 85, "on_upd": 386, "onc": [5, 7, 13, 22, 23, 24, 28, 33, 34, 56, 59, 61, 63, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 100, 101, 102, 106, 109, 117, 120, 132, 133, 139, 149, 151, 155, 158, 159, 160, 163, 167, 169, 186, 190, 193, 196, 205, 218, 226, 230, 234, 235, 244, 245, 247, 250, 251, 255, 258, 261, 267, 268, 269, 270, 271, 283, 284, 288, 292, 293, 295, 299, 308, 314, 319, 320, 328, 329, 332, 333, 334, 337, 338, 340, 341, 344, 347, 353, 354, 358, 362, 365, 369, 382, 384, 386, 388, 389, 390, 395, 399, 400, 403, 410, 411, 413, 415, 416, 427, 428, 430, 431, 432, 436, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 470, 474, 475, 476, 478, 480, 481, 482, 483], "onceregistri": 483, "onclick": 384, "onder": [474, 483], "ondrag": 384, "ondrej": 465, "one": [5, 7, 9, 11, 13, 23, 24, 25, 28, 31, 33, 34, 42, 43, 45, 47, 49, 51, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 87, 89, 91, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 109, 110, 112, 115, 117, 119, 120, 122, 132, 133, 135, 137, 138, 139, 141, 144, 146, 151, 153, 155, 157, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 213, 215, 216, 218, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 311, 314, 318, 319, 320, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 405, 407, 408, 410, 411, 412, 413, 415, 419, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 443, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "one_way": 400, "onecmd": 155, "oneith": 461, "onelineexceptionformatt": 102, "oneof": 93, "onerror": [142, 293, 302, 332, 474, 480, 483], "onexc": [332, 474, 483], "ongo": [461, 480], "onion": 340, "onkey": 384, "onkeypress": 384, "onkeyreleas": 384, "onli": [5, 7, 9, 10, 13, 22, 23, 26, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 49, 51, 54, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 117, 120, 122, 132, 135, 137, 138, 139, 141, 143, 144, 146, 149, 151, 153, 155, 158, 160, 161, 163, 166, 167, 169, 170, 176, 177, 179, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 221, 225, 226, 227, 228, 230, 232, 234, 235, 242, 243, 244, 245, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 287, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 311, 312, 313, 314, 315, 318, 319, 320, 322, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 356, 358, 361, 362, 364, 365, 366, 368, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 403, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 445, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 482, 483, 484], "onlin": [313, 369, 384, 399, 414, 464, 468], "only_key": 425, "onlyexplicitinlin": 483, "onor": 441, "onreleas": 384, "onscreenclick": 384, "onstott": 483, "ont": 297, "ontim": 384, "onto": [169, 177, 191, 248, 299, 307, 331, 346, 384, 386, 388, 432, 462, 468, 474, 483], "ontosi": 419, "onvalu": 369, "onward": [95, 102, 186, 221, 255, 333, 340, 483], "oo": [60, 352, 362, 450, 455, 471, 478, 483], "ooi": 76, "ooo": [183, 435], "oop": [193, 443], "oor": 176, "op": [3, 10, 15, 27, 28, 33, 37, 39, 49, 63, 64, 75, 85, 122, 138, 177, 191, 230, 269, 283, 293, 319, 337, 340, 352, 365, 377, 378, 407, 465, 468, 472, 473, 474, 480, 483], "op1": 430, "op2": 430, "op_": 341, "op_al": 341, "op_cipher_server_prefer": [341, 476, 483], "op_enable_ktl": [341, 483], "op_enable_middlebox_compat": [341, 483], "op_ignore_unexpected_eof": [341, 472, 483], "op_legacy_server_connect": [341, 483], "op_no_compress": [341, 476, 483], "op_no_renegoti": [341, 483], "op_no_ssl": [341, 483], "op_no_sslv2": [341, 472, 475, 483], "op_no_sslv3": [341, 472, 483], "op_no_ticket": 341, "op_no_tl": 341, "op_no_tlsv1": [341, 472], "op_no_tlsv1_1": [341, 472], "op_no_tlsv1_2": [341, 472], "op_no_tlsv1_3": [341, 472, 483], "op_single_dh_us": [341, 483], "op_single_ecdh_us": [341, 483], "opaqu": [11, 13, 26, 33, 35, 39, 61, 63, 96, 116, 171, 258, 314, 329, 342, 408, 413, 463, 474, 475, 477, 480, 481, 482, 483], "oparg": [96, 191, 474, 483], "opcod": [33, 68, 190, 264, 299, 300, 352, 428, 465, 466, 468, 469, 472, 474, 477, 479, 480, 481, 482, 483], "opcodeinfo": 300, "open": [24, 33, 34, 41, 51, 66, 68, 73, 78, 84, 87, 92, 95, 101, 106, 109, 112, 117, 120, 126, 133, 136, 140, 142, 148, 149, 151, 155, 158, 160, 167, 169, 175, 177, 183, 184, 188, 189, 190, 200, 207, 208, 212, 213, 214, 215, 218, 219, 223, 225, 230, 234, 235, 240, 242, 243, 245, 247, 248, 249, 250, 253, 254, 255, 258, 265, 266, 267, 268, 269, 270, 271, 276, 278, 280, 281, 283, 288, 293, 294, 295, 296, 299, 301, 302, 305, 309, 313, 314, 320, 322, 326, 328, 330, 331, 333, 335, 336, 337, 340, 341, 342, 344, 348, 349, 352, 356, 358, 359, 360, 362, 365, 369, 375, 376, 378, 379, 381, 384, 386, 389, 390, 395, 397, 401, 403, 405, 407, 411, 413, 414, 416, 419, 421, 422, 425, 426, 427, 428, 435, 438, 440, 443, 446, 450, 451, 452, 455, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "open_binari": [252, 473, 474], "open_cod": [24, 258, 483], "open_connect": [124, 126, 133, 136, 478, 480, 483], "open_flag": 184, "open_ftp": 483, "open_func": 467, "open_help": 386, "open_item": 467, "open_mod": 142, "open_new": [403, 467], "open_new_tab": [403, 467], "open_osfhandl": [142, 282], "open_resourc": [250, 253], "open_sequence_pattern": [427, 431], "open_side_effect": 390, "open_text": [252, 473, 474], "open_unix_connect": [124, 136], "open_unknown": 395, "open_urlresourc": 362, "openat2": 483, "openbsd": [68, 115, 223, 278, 293, 337, 365, 366, 458, 478, 480, 483], "opendatabas": [281, 483], "opendir": [293, 483], "openerdirector": [68, 110, 256, 477], "openexr": [249, 478, 483], "openfp": [480, 482, 483], "opengraph": 483, "openhook": [218, 467, 483], "openkey": [142, 405], "openkeyex": 405, "openlog": [142, 356, 474, 483], "openmix": 295, "openmp": 483, "openprocess": 142, "openpti": [293, 309, 483], "opensourc": 426, "openssl": [68, 235, 237, 341, 362, 456, 458, 462, 467, 468, 469, 472, 474, 475, 477, 478, 479, 480, 482, 483], "openssl_add_all_algorithms_noconf": 483, "openssl_api_compat": 483, "openssl_cafil": 341, "openssl_cafile_env": 341, "openssl_capath": 341, "openssl_capath_env": 341, "openssl_no_tlsext": 341, "openssl_vers": [341, 469, 475], "openssl_version_info": [341, 469, 475], "openssl_version_numb": [341, 469, 475], "openssldir": 460, "opensus": 460, "openview": [281, 483], "openvm": 465, "openwrapp": [474, 483], "oper": [5, 7, 22, 23, 28, 33, 37, 41, 42, 47, 49, 54, 59, 63, 64, 66, 68, 72, 73, 75, 76, 77, 84, 87, 92, 93, 94, 101, 102, 103, 106, 109, 110, 112, 113, 118, 119, 122, 126, 133, 139, 141, 142, 144, 147, 151, 161, 166, 167, 169, 173, 176, 177, 183, 184, 186, 191, 194, 195, 196, 200, 201, 202, 205, 207, 208, 212, 213, 215, 216, 219, 220, 221, 224, 225, 227, 230, 242, 245, 247, 250, 251, 254, 255, 256, 257, 258, 261, 266, 267, 269, 270, 271, 275, 276, 283, 289, 295, 296, 299, 308, 309, 313, 314, 319, 320, 322, 328, 330, 331, 333, 335, 337, 340, 342, 345, 347, 348, 352, 353, 355, 358, 359, 361, 362, 365, 369, 376, 378, 384, 385, 386, 394, 395, 399, 400, 403, 404, 405, 410, 411, 413, 416, 419, 422, 425, 427, 428, 429, 431, 432, 433, 434, 436, 442, 443, 446, 449, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 474, 475, 476, 479, 480, 481, 483, 484], "opera": [160, 403, 467, 483], "operand": [63, 68, 89, 122, 158, 183, 191, 193, 213, 225, 267, 290, 344, 428, 430, 436, 443, 449, 464, 469, 470, 475, 476, 483], "operationalerror": [340, 483], "opid": 49, "opinion": [91, 462, 467], "opmap": 191, "opn": 430, "opnam": [85, 191, 362, 477], "opportun": [133, 139, 158, 325, 461, 483], "oppos": [76, 92, 106, 157, 201, 208, 247, 337, 395, 432, 468, 478, 483], "opposit": [95, 106, 109, 209, 259, 319, 384, 428, 462, 468, 470, 483], "ops": [33, 122, 341], "opt": [68, 72, 167, 190, 228, 250, 292, 299, 306, 338, 432, 450, 455, 456, 465, 468, 469, 474, 475, 477, 478, 480, 483], "opt_str": 292, "optcr": 167, "optic": 475, "optik": [465, 466, 467], "optim": [27, 34, 42, 58, 63, 66, 68, 76, 85, 96, 106, 128, 133, 139, 141, 158, 163, 177, 191, 211, 225, 235, 243, 250, 255, 265, 293, 299, 300, 308, 311, 337, 340, 352, 362, 365, 366, 422, 427, 428, 436, 456, 461, 462, 464, 465, 466, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "optim_args_from_interpreter_flag": 362, "optimi": 483, "optimis": [382, 428, 483], "optimization_level": [33, 34, 474], "optimize_cfg": 483, "optimized_bytecode_suffix": 250, "optimizedunicod": [472, 473, 474, 483], "optimizer_id": 353, "option": [5, 23, 33, 34, 42, 47, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 78, 88, 89, 92, 93, 94, 95, 96, 100, 101, 102, 106, 109, 110, 112, 115, 118, 119, 122, 126, 128, 135, 137, 139, 141, 146, 151, 152, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 185, 186, 187, 189, 190, 191, 195, 196, 197, 200, 201, 202, 204, 205, 206, 207, 209, 213, 214, 216, 218, 221, 223, 225, 226, 228, 230, 234, 235, 241, 242, 245, 248, 250, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 278, 281, 283, 288, 293, 295, 297, 299, 305, 307, 308, 309, 311, 312, 313, 314, 319, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 340, 341, 344, 345, 346, 347, 348, 352, 354, 355, 356, 359, 362, 364, 365, 366, 368, 370, 372, 373, 375, 378, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 403, 407, 411, 413, 414, 415, 417, 419, 420, 421, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 453, 458, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "option_class": 292, "option_list": 292, "option_str": 120, "optional_var": 122, "optionalreleas": 113, "optionconflicterror": 292, "optioncontain": 292, "optionerror": [120, 292], "optionflag": 193, "optiongroup": 292, "optionmenu": [375, 483], "optionpars": [120, 292, 465, 467], "optionvalu": 292, "optionvalueerror": [120, 292], "optionxform": 167, "optlen": [337, 479], "optlist": 228, "optnam": [337, 479], "optpars": [68, 89, 118, 254, 350, 466, 467, 469, 475, 479, 483], "optparse_pars": 292, "optval": 337, "opus": 483, "or": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 86, 87, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 103, 105, 106, 108, 109, 110, 112, 113, 115, 117, 118, 122, 123, 126, 128, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 146, 147, 149, 151, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 167, 168, 169, 170, 173, 175, 177, 178, 179, 181, 182, 184, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 445, 448, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "or_": [95, 291], "or_expr": [430, 435], "or_pattern": [427, 431], "or_test": 430, "oracl": [184, 340, 467, 476, 483], "oran": 483, "orang": [102, 160, 291, 384, 442, 471, 483], "orbit": 343, "orbital_period": 343, "orchestr": 102, "ord": [92, 109, 120, 122, 176, 178, 225, 340, 344, 389, 428, 430, 450, 462, 468], "order": [4, 7, 13, 28, 31, 33, 34, 43, 45, 58, 59, 63, 64, 68, 72, 73, 75, 76, 87, 92, 93, 94, 95, 97, 99, 100, 101, 102, 106, 108, 109, 110, 112, 116, 118, 120, 133, 139, 145, 147, 149, 151, 153, 155, 158, 160, 167, 169, 177, 178, 179, 183, 184, 186, 190, 191, 193, 196, 200, 202, 203, 205, 208, 213, 214, 218, 224, 225, 228, 230, 233, 236, 245, 247, 248, 250, 254, 255, 259, 261, 262, 266, 267, 269, 271, 275, 281, 283, 288, 293, 295, 299, 302, 303, 304, 307, 308, 309, 313, 314, 315, 316, 318, 319, 325, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 348, 352, 353, 358, 362, 364, 365, 366, 369, 376, 381, 382, 384, 385, 386, 388, 389, 394, 395, 400, 410, 411, 413, 415, 421, 422, 427, 428, 429, 431, 432, 433, 435, 440, 442, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "order_default": 386, "order_mock": 389, "order_mock_inst": 389, "ordered_attribut": 314, "ordereddict": [68, 87, 167, 175, 182, 255, 344, 386, 469, 471, 473, 475, 478, 479, 481, 482, 483], "orderedenum": 68, "orderedset": 161, "ordin": [64, 94, 109, 158, 176, 178, 183, 343, 344, 476, 478], "ordinari": [92, 101, 106, 151, 169, 193, 225, 234, 319, 330, 333, 340, 343, 358, 413, 432, 435, 436, 462, 476, 483], "ordinarili": [206, 331], "ore": [63, 178, 190, 193, 293, 319, 341, 369, 406], "oreillynet": 464, "orels": [122, 468], "oren": [465, 474, 476, 480, 483], "orendorff": [465, 468], "oreo": 244, "orest": 483, "org": [1, 57, 68, 75, 78, 79, 84, 87, 95, 102, 103, 107, 109, 110, 111, 126, 160, 166, 167, 169, 184, 223, 226, 235, 239, 240, 242, 243, 247, 248, 283, 288, 303, 307, 313, 314, 319, 328, 335, 337, 340, 341, 352, 355, 387, 394, 395, 396, 398, 403, 411, 413, 415, 419, 426, 428, 435, 444, 445, 451, 453, 454, 455, 458, 459, 460, 462, 463, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 478, 480, 481, 482, 483], "organ": [68, 84, 95, 100, 102, 106, 187, 193, 341, 426, 432, 465, 482, 483], "organis": [101, 102, 267], "organiz": [87, 341, 428], "organizationalunitnam": 341, "organizationnam": 341, "orgnam": 101, "orient": [7, 42, 68, 76, 85, 87, 93, 95, 109, 133, 155, 201, 222, 283, 308, 337, 344, 365, 366, 369, 376, 440, 463, 468, 475, 477], "orig": [23, 203, 396], "orig_argv": [33, 34, 352, 472, 483], "orig_key": 235, "origin": [5, 7, 9, 23, 33, 34, 42, 43, 60, 62, 63, 67, 73, 85, 92, 94, 96, 101, 103, 105, 106, 109, 112, 120, 141, 144, 149, 152, 158, 167, 169, 173, 176, 177, 181, 186, 190, 191, 193, 196, 197, 199, 200, 201, 202, 203, 205, 208, 213, 221, 225, 226, 230, 234, 243, 247, 250, 255, 261, 262, 266, 267, 269, 271, 275, 278, 283, 284, 292, 293, 297, 299, 308, 312, 319, 324, 328, 331, 332, 337, 340, 341, 344, 348, 352, 358, 362, 365, 366, 369, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 407, 408, 413, 415, 416, 417, 421, 422, 423, 425, 426, 427, 428, 430, 432, 434, 436, 440, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 483], "origin_req_host": [243, 395], "origin_serv": 407, "original_exc": 213, "original_list": 171, "original_valu": 362, "orignam": 483, "orm": 68, "ornar": 149, "orphan": [283, 483], "orr": [476, 477, 481, 482, 483], "orthogon": 102, "ortran": 43, "os": [23, 33, 34, 59, 64, 68, 73, 78, 85, 87, 92, 93, 95, 98, 101, 102, 109, 112, 115, 118, 120, 124, 125, 126, 132, 133, 137, 138, 139, 140, 142, 151, 160, 163, 164, 166, 167, 169, 170, 183, 187, 188, 189, 190, 193, 200, 208, 210, 212, 214, 215, 216, 219, 220, 225, 229, 230, 231, 234, 235, 243, 245, 247, 252, 254, 258, 266, 269, 272, 278, 282, 283, 286, 292, 299, 301, 302, 303, 306, 308, 309, 318, 320, 328, 329, 332, 333, 334, 335, 337, 340, 341, 342, 344, 352, 354, 355, 358, 360, 365, 366, 369, 380, 382, 388, 389, 395, 399, 400, 403, 407, 421, 422, 425, 428, 438, 443, 451, 452, 455, 456, 461, 462, 464, 465, 466, 467, 470, 483, 484], "os2": 475, "os2_hom": 475, "os_arch": 303, "os_environ": 407, "os_help": [68, 187, 254, 483], "os_nam": 303, "os_vers": 303, "osa": 464, "osaterminolog": 468, "osborn": 477, "oscura": 467, "ose": [84, 258, 337, 462, 480, 483], "oserror": [23, 109, 126, 130, 133, 153, 176, 183, 188, 213, 215, 218, 223, 225, 230, 234, 243, 245, 250, 255, 258, 278, 282, 283, 288, 293, 294, 295, 296, 303, 306, 322, 328, 332, 333, 335, 337, 341, 348, 358, 359, 362, 366, 393, 395, 405, 423, 427, 443, 450, 469, 472, 476, 477, 481, 483], "osf": 476, "oshmyan": 483, "osi": 307, "osinfo": 303, "osipov": 483, "ospe": 361, "oss": [68, 254, 348, 350, 465, 476, 483], "oss_audio_devic": 295, "oss_mixer_devic": 295, "ossaudiodev": [68, 254, 350, 465, 473, 474, 478, 483], "ossaudioerror": 295, "ossl": 483, "ostrowski": 483, "oststrom": 483, "osversioninfoex": 352, "osx": [84, 176, 477, 480, 483], "osx_framework_us": [68, 315], "ot": 483, "other": [5, 7, 9, 11, 13, 22, 23, 25, 27, 28, 33, 34, 35, 39, 42, 43, 45, 54, 55, 58, 59, 60, 61, 62, 63, 64, 66, 68, 72, 73, 74, 75, 77, 78, 84, 92, 93, 95, 100, 103, 106, 108, 109, 110, 112, 115, 118, 132, 133, 137, 141, 144, 146, 151, 152, 153, 158, 159, 161, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 207, 209, 211, 213, 215, 216, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 255, 256, 257, 258, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 278, 280, 283, 287, 288, 289, 293, 296, 297, 298, 302, 307, 308, 309, 313, 314, 315, 319, 321, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 348, 352, 354, 355, 356, 358, 359, 362, 365, 366, 369, 376, 378, 380, 382, 384, 385, 387, 388, 389, 390, 394, 395, 399, 400, 404, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 436, 440, 443, 446, 455, 456, 461, 464, 466, 467, 468, 471, 472, 474, 475, 476, 481, 482, 483, 484], "other_api": 362, "other_fract": 221, "other_fun": 386, "other_func": 122, "other_id_continu": 435, "other_id_start": 435, "other_obj": 75, "other_path": 296, "other_popen_kwarg": 348, "otherexcept": [122, 213], "othergui": 483, "othernam": [430, 462], "otherpython": 473, "otherstyl": 211, "othertestcas": 362, "othertypeiknowabout": 289, "otherwis": [5, 7, 11, 13, 22, 23, 27, 28, 31, 33, 34, 39, 42, 43, 45, 47, 49, 54, 58, 59, 61, 63, 64, 66, 73, 76, 79, 94, 95, 101, 102, 103, 106, 110, 112, 117, 120, 129, 133, 139, 141, 146, 149, 155, 157, 158, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 202, 205, 206, 208, 209, 214, 216, 218, 225, 226, 230, 234, 242, 243, 244, 245, 247, 250, 251, 252, 255, 257, 258, 259, 261, 262, 267, 268, 269, 271, 275, 276, 278, 283, 292, 293, 297, 299, 301, 302, 304, 305, 307, 311, 312, 314, 319, 321, 324, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 376, 378, 381, 382, 384, 387, 388, 394, 395, 400, 403, 406, 407, 411, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 442, 455, 456, 461, 463, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "otkidach": 465, "otten": 483, "ouch": 479, "oud": 483, "oudkerk": [468, 476, 477, 483], "ought": 476, "ouput": 483, "our": [31, 73, 76, 85, 93, 94, 102, 106, 109, 110, 134, 167, 169, 176, 196, 200, 205, 259, 292, 299, 319, 335, 338, 340, 341, 362, 386, 407, 422, 464, 467, 468, 483], "our_app_it": 235, "ourselv": [76, 94, 386, 483], "oussoren": [467, 468, 469, 475, 477, 481, 482], "ousterhout": 369, "out": [18, 23, 31, 34, 35, 39, 42, 56, 59, 60, 64, 68, 72, 73, 76, 85, 92, 94, 95, 96, 99, 101, 102, 103, 106, 109, 110, 120, 133, 134, 139, 141, 144, 149, 158, 161, 163, 167, 176, 177, 178, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 212, 213, 215, 226, 230, 235, 243, 247, 250, 251, 253, 258, 259, 261, 266, 267, 275, 283, 292, 293, 295, 297, 298, 300, 304, 308, 311, 313, 314, 319, 322, 328, 331, 333, 337, 338, 340, 341, 343, 345, 347, 348, 352, 358, 362, 365, 369, 381, 384, 385, 386, 388, 389, 390, 394, 399, 400, 407, 410, 413, 417, 419, 423, 425, 426, 427, 428, 429, 436, 441, 442, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 483], "out1": 270, "out2": 270, "out3": 270, "out4": 270, "out_fd": [293, 483], "out_fil": [397, 413, 483], "out_test": 141, "outbound": 107, "outcom": [159, 167, 388, 427, 483], "outdat": [96, 176, 250, 369, 468, 474, 475, 480, 483], "outer": [26, 85, 139, 169, 186, 191, 207, 226, 237, 255, 352, 427, 428, 429, 430, 435, 436, 470, 473, 474, 475, 476, 482, 483], "outer_stack": 169, "outermost": [255, 344, 365, 483], "outfd": [332, 481], "outfil": [85, 120, 140, 262, 292, 301, 380, 452, 471, 475, 483], "outfp": 201, "outgo": [133, 200, 337, 341, 474, 475, 476], "outlier": 343, "outlin": [49, 101, 102, 139, 167, 221, 244, 384, 428, 483], "outlinewidth": 384, "outliv": [11, 58, 427, 483], "outlook": 483, "outlookmailbox": 85, "output": [5, 9, 33, 34, 42, 59, 63, 64, 66, 68, 73, 75, 76, 79, 84, 89, 92, 95, 96, 101, 106, 109, 112, 114, 117, 120, 133, 137, 139, 141, 143, 144, 146, 148, 149, 151, 152, 155, 157, 158, 163, 167, 169, 176, 177, 183, 187, 190, 191, 193, 195, 200, 201, 202, 204, 208, 209, 212, 218, 219, 223, 225, 228, 234, 235, 242, 244, 245, 246, 248, 255, 258, 261, 262, 267, 269, 270, 275, 279, 283, 288, 292, 293, 295, 299, 300, 301, 302, 305, 307, 308, 309, 311, 313, 314, 317, 319, 321, 322, 325, 328, 331, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 357, 358, 359, 361, 362, 364, 366, 368, 378, 380, 381, 382, 384, 386, 388, 395, 397, 399, 400, 411, 413, 417, 421, 422, 428, 435, 436, 445, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "output_charset": [195, 196, 469, 473, 481], "output_codec": 195, "output_differ": 193, "output_dir": [358, 422], "output_fil": 308, "outputcheck": [68, 187, 466], "outputdata": 141, "outputdirectori": 461, "outputstr": 244, "outrat": 141, "outright": 195, "outset": 468, "outsid": [23, 59, 85, 93, 95, 101, 102, 106, 107, 132, 139, 158, 163, 170, 176, 177, 183, 186, 196, 199, 205, 208, 213, 245, 247, 252, 262, 299, 313, 314, 319, 325, 332, 337, 341, 344, 345, 347, 358, 362, 365, 366, 367, 376, 384, 386, 400, 413, 415, 422, 427, 428, 435, 440, 465, 466, 469, 472, 473, 474, 475, 479, 480, 481, 482, 483], "outsidedestinationerror": 358, "outsiz": 483, "outstand": [283, 426], "outstanding_bug": 483, "outward": 186, "outweigh": 85, "outwin": 483, "ov": 471, "over": [7, 13, 22, 23, 33, 42, 49, 61, 64, 68, 73, 74, 75, 84, 91, 92, 93, 94, 95, 101, 102, 106, 108, 109, 120, 133, 141, 144, 151, 152, 160, 161, 167, 170, 176, 177, 183, 184, 186, 190, 191, 193, 196, 201, 202, 204, 205, 218, 225, 226, 230, 243, 247, 248, 250, 252, 253, 258, 259, 261, 266, 267, 268, 269, 271, 276, 278, 283, 288, 293, 299, 305, 308, 314, 319, 322, 328, 329, 332, 335, 337, 340, 341, 344, 348, 352, 358, 362, 365, 369, 375, 376, 377, 378, 380, 384, 385, 386, 388, 397, 400, 410, 412, 413, 419, 422, 427, 428, 430, 432, 435, 440, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "overal": [183, 194, 268, 292, 308, 319, 345, 347, 382, 428, 444, 469, 477, 478], "overalloc": [186, 344, 481, 483], "overcom": [365, 475, 483], "overcommit": 322, "overdu": 139, "overeag": 483, "overfil": 483, "overflow": [5, 18, 23, 39, 42, 141, 176, 183, 186, 188, 212, 214, 275, 283, 352, 428, 456, 466, 468, 469, 474, 479, 480, 483], "overflow_except": 18, "overflowerror": [23, 25, 39, 47, 115, 157, 159, 183, 186, 193, 213, 225, 275, 304, 337, 340, 344, 365, 366, 428, 450, 464, 465, 468, 469, 471, 472, 476, 477, 483], "overflowwarn": 466, "overhaul": 483, "overhead": [33, 35, 75, 102, 132, 139, 252, 261, 270, 293, 308, 340, 342, 344, 352, 353, 367, 382, 384, 386, 428, 432, 462, 463, 464, 465, 467, 471, 473, 474, 475, 476, 479, 480, 481, 482, 483], "overkil": 292, "overlap": [61, 64, 92, 106, 161, 177, 190, 259, 261, 282, 292, 319, 343, 344, 384, 436, 463, 464, 483], "overlay": 177, "overload": [63, 226, 386, 395, 419, 428, 430, 463, 464, 473, 477, 483], "overly_gener": 427, "overread": 483, "overrid": [22, 33, 34, 49, 61, 63, 64, 66, 68, 85, 93, 101, 102, 103, 110, 116, 120, 132, 135, 136, 144, 155, 157, 161, 167, 171, 175, 176, 181, 183, 189, 193, 196, 202, 203, 205, 208, 209, 213, 218, 225, 226, 230, 243, 244, 245, 248, 250, 255, 258, 267, 269, 272, 283, 287, 292, 293, 299, 311, 314, 315, 319, 331, 334, 337, 338, 344, 345, 348, 352, 354, 362, 365, 376, 384, 386, 388, 395, 413, 417, 422, 428, 429, 430, 432, 440, 455, 456, 461, 462, 465, 468, 469, 470, 471, 476, 477, 479, 480, 481, 483], "overridden": [34, 85, 93, 94, 102, 103, 120, 144, 155, 161, 167, 183, 208, 225, 230, 243, 244, 245, 250, 255, 267, 269, 292, 293, 297, 307, 313, 324, 338, 340, 341, 344, 348, 352, 358, 365, 376, 386, 388, 395, 399, 400, 428, 430, 432, 443, 455, 468, 469, 476, 477, 481, 482, 483], "overrod": [462, 483], "overrul": 337, "overrun": [464, 469, 483], "oversight": [469, 476, 478, 480, 483], "overstrik": 372, "overview": [68, 74, 99, 109, 259, 280, 288, 292, 307, 308, 315, 461, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 478, 480], "overwhelm": 292, "overwrit": [73, 101, 102, 112, 149, 163, 177, 181, 196, 200, 205, 258, 267, 269, 270, 293, 320, 330, 344, 358, 395, 421, 422, 427, 428, 441, 461, 465, 468, 469, 471, 474, 475, 476, 477, 483], "overwritten": [42, 102, 243, 269, 271, 308, 332, 352, 386, 427, 469, 476, 483], "owen": 426, "own": [5, 7, 9, 22, 23, 26, 28, 33, 45, 59, 61, 63, 64, 68, 72, 73, 76, 77, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 109, 110, 112, 118, 120, 133, 137, 139, 151, 167, 169, 181, 186, 193, 196, 200, 203, 205, 207, 225, 230, 243, 247, 250, 255, 267, 268, 269, 271, 283, 292, 293, 297, 299, 308, 319, 321, 326, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 358, 362, 364, 365, 369, 384, 388, 394, 395, 399, 403, 410, 413, 415, 420, 426, 428, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 480, 482, 483], "own_gil": 483, "owned_file_handl": 102, "owner": [73, 93, 96, 98, 102, 181, 212, 283, 293, 296, 332, 342, 358, 426, 428, 452, 479, 483], "ownership": [35, 68, 100, 102, 136, 257, 283, 365, 426, 468, 476, 483], "oxer": 483, "oz": 480, "p0": 261, "p1": [176, 261, 284, 348, 427, 466, 473, 478], "p2": [106, 176, 261, 284, 348, 427, 441, 466, 472, 473, 478], "p21": 103, "p22": 103, "p3": 427, "p_all": 293, "p_cs_preced": 266, "p_detach": 293, "p_n": 261, "p_nowait": [293, 348], "p_nowaito": 293, "p_overlay": 293, "p_pgid": 293, "p_pid": 293, "p_pidfd": [293, 482, 483], "p_sep_by_spac": 266, "p_sign_posn": 266, "p_unicod": 64, "p_wait": [293, 348], "paalasma": 464, "pablo": [104, 469, 472, 473, 474, 478, 480, 481, 482, 483], "pace": [463, 468], "pach": 483, "pacif": [183, 425], "pack": [16, 68, 102, 141, 176, 215, 225, 234, 247, 259, 268, 269, 271, 293, 303, 337, 344, 347, 369, 374, 376, 408, 421, 428, 442, 452, 467, 469, 473, 475, 483], "pack_array": 408, "pack_bool": 408, "pack_byt": 408, "pack_doubl": 408, "pack_enum": 408, "pack_farray": 408, "pack_float": 408, "pack_fopaqu": 408, "pack_fstr": 408, "pack_hyp": 408, "pack_int": 408, "pack_into": [225, 347, 467, 483], "pack_item": 408, "pack_list": 408, "pack_opaqu": 408, "pack_str": 408, "pack_typ": 408, "pack_uhyp": 408, "pack_uint": 408, "packag": [31, 33, 34, 63, 64, 68, 70, 74, 77, 79, 80, 84, 85, 87, 93, 96, 101, 102, 111, 112, 114, 151, 160, 173, 176, 183, 192, 193, 194, 196, 197, 199, 200, 202, 203, 204, 205, 206, 207, 208, 210, 212, 225, 230, 242, 247, 250, 253, 254, 255, 261, 267, 268, 269, 276, 279, 280, 281, 283, 307, 312, 313, 324, 330, 334, 335, 340, 341, 352, 354, 355, 362, 369, 375, 380, 384, 385, 386, 388, 389, 390, 392, 399, 400, 411, 414, 421, 422, 423, 425, 433, 436, 438, 445, 453, 454, 455, 456, 458, 459, 460, 462, 464, 466, 469, 470, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "package_distribut": 251, "package_nam": 461, "package_test": 388, "package_url": 307, "packagemetadata": [251, 483], "packagenotfounderror": 483, "packagepath": [251, 481], "packages_distribut": [251, 472, 483], "packaging_tutorial_gnu_hello": 460, "packard": 462, "packed_ip": 337, "packer": [68, 368], "packet": [133, 141, 259, 269, 337, 338, 419, 469, 483], "packet_": 337, "packet_broadcast": 337, "packet_host": 337, "packet_multicast": 337, "packet_otherhost": 337, "packet_outgo": 337, "packmail": 462, "pad": [64, 68, 84, 122, 143, 146, 153, 177, 183, 186, 196, 199, 225, 234, 235, 259, 284, 337, 344, 345, 347, 349, 366, 369, 376, 395, 408, 462, 465, 468, 469, 475, 479, 483], "padded_sign": 261, "padi": 369, "padx": 369, "pag": 184, "page": [64, 68, 84, 87, 92, 95, 101, 102, 103, 110, 115, 120, 133, 136, 158, 166, 169, 173, 177, 190, 215, 247, 251, 254, 266, 268, 269, 271, 278, 284, 293, 304, 313, 314, 322, 328, 333, 337, 340, 342, 347, 350, 356, 361, 362, 365, 366, 369, 375, 383, 384, 395, 403, 413, 420, 422, 426, 434, 440, 451, 453, 455, 461, 462, 464, 466, 467, 468, 469, 475, 476, 479, 480, 481, 483], "pagedown": 247, "pagefil": 278, "pager": [313, 483], "pages": 278, "pageup": 247, "pagin": 313, "paid": 462, "pain": [106, 266, 462, 467, 483], "paint": [92, 177, 384, 464], "pair": [5, 7, 22, 28, 33, 64, 68, 73, 75, 85, 92, 94, 95, 99, 106, 109, 120, 126, 133, 136, 141, 144, 151, 160, 167, 177, 181, 184, 186, 190, 191, 193, 196, 197, 202, 209, 213, 221, 228, 230, 244, 255, 259, 261, 262, 268, 271, 275, 283, 288, 292, 293, 297, 299, 309, 322, 332, 337, 338, 340, 341, 344, 348, 355, 358, 359, 361, 363, 365, 369, 375, 376, 384, 385, 386, 389, 394, 395, 402, 410, 413, 416, 417, 427, 428, 430, 435, 436, 441, 442, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 479, 483], "pair_cont": [177, 472], "pair_numb": 177, "pairwis": [261, 384, 472, 483], "pal": 476, "palard": [474, 480], "palat": 102, "palin": 441, "palivoda": [473, 479, 481, 483], "palkovski": 465, "palmo": 158, "palomar": 230, "palumbo": 483, "pam": [106, 483], "pan": [240, 483], "panama": 413, "panda": 461, "pane": [247, 375, 376, 483], "paneconfigur": 483, "panedwindow": [375, 376, 483], "panel": [68, 83, 118, 177, 254, 406, 463, 483], "panelpars": 468, "panic": [269, 465], "pankovych": [472, 483], "panter": [478, 479, 483], "panther": 473, "panton": 94, "panzenb": 477, "pao": 345, "paolini": 483, "paper": [103, 109, 120, 337, 384, 465, 483], "papert": 384, "par": 483, "para": 413, "paradigm": [77, 95], "paradox": [85, 465], "paragraph": [101, 139, 197, 247, 262, 292, 293, 341, 344, 364, 413, 420, 426, 428, 462, 465, 483], "parallel": [68, 84, 87, 95, 100, 102, 124, 129, 134, 137, 163, 169, 207, 225, 232, 235, 261, 283, 352, 384, 388, 403, 413, 443, 455, 462, 469, 475, 476, 477, 478, 482, 483], "param": [102, 139, 151, 196, 197, 203, 205, 209, 242, 255, 281, 293, 305, 340, 388, 394, 395, 399, 419, 420, 431, 469, 475, 482, 483], "param1": 427, "param2": 427, "param_maybe_default": 431, "param_no_default": 431, "param_no_default_star_annot": 431, "param_star_annot": 431, "param_with_default": 431, "paramet": [5, 7, 9, 11, 17, 22, 23, 28, 32, 34, 37, 45, 49, 56, 58, 61, 63, 64, 66, 67, 68, 74, 75, 79, 84, 87, 93, 94, 95, 101, 106, 109, 112, 115, 117, 118, 120, 137, 139, 141, 144, 149, 151, 158, 163, 167, 169, 170, 175, 177, 183, 184, 186, 190, 191, 193, 196, 197, 199, 201, 203, 205, 206, 208, 209, 213, 214, 215, 216, 218, 220, 225, 226, 228, 230, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 305, 307, 311, 312, 314, 315, 319, 320, 322, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 348, 351, 352, 356, 358, 359, 362, 365, 366, 368, 375, 380, 381, 382, 384, 388, 394, 395, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 417, 419, 420, 422, 425, 428, 429, 430, 431, 432, 433, 436, 445, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 482, 483], "parameter": [87, 177, 193, 340, 344, 385, 386, 428, 472, 482, 483], "parameter_list": [427, 430], "parameter_list_no_poson": 427, "parameter_list_stararg": 427, "parameteris": [102, 386, 473], "parameterizedmimehead": 203, "parameterkind": 483, "parameterless": 328, "paramflag": 176, "paramount": 186, "paramspec": [122, 191, 344, 386, 427, 431, 472, 474, 483], "paramspecarg": [386, 472, 483], "paramspeckwarg": [386, 472, 483], "paramspecvari": 386, "paramstyl": 340, "paranoid": 76, "parcel": [369, 376], "pardir": [216, 293], "paren": [85, 112, 122, 175, 247, 431, 467, 483], "parenmatch": 483, "parent": [59, 61, 63, 68, 85, 99, 101, 102, 103, 114, 118, 133, 160, 177, 189, 225, 248, 250, 253, 255, 267, 278, 281, 283, 293, 296, 302, 305, 309, 312, 314, 333, 337, 338, 340, 341, 348, 352, 369, 371, 373, 376, 385, 389, 395, 410, 413, 421, 428, 432, 440, 464, 465, 466, 467, 468, 472, 474, 476, 477, 479, 480, 483], "parent_conn": 283, "parent_modul": 250, "parent_nam": 250, "parent_pars": 120, "parent_process": [283, 483], "parentclass": 428, "parenth_form": 430, "parenthes": [5, 63, 68, 73, 79, 85, 95, 102, 106, 157, 191, 225, 248, 250, 266, 308, 319, 344, 399, 427, 428, 429, 431, 434, 435, 436, 442, 449, 462, 466, 467, 468, 469, 472, 474, 478, 480, 481, 483], "parenthesi": [106, 112, 122, 247, 427, 431, 466, 483], "parenthesis": [344, 483], "parentnod": 410, "pareto": 318, "paretovari": [318, 483], "parg": 72, "pari": [95, 106, 425, 449], "pariti": 483, "park": 319, "parnassus": 463, "paroz": [478, 483], "parrot": [73, 225, 242, 307, 441, 468], "pars": [34, 59, 64, 65, 66, 68, 73, 79, 84, 85, 99, 102, 106, 110, 112, 118, 122, 133, 136, 151, 155, 157, 159, 167, 183, 193, 194, 196, 199, 200, 201, 203, 205, 206, 207, 208, 209, 217, 222, 225, 228, 230, 240, 242, 243, 244, 245, 248, 250, 254, 256, 259, 262, 264, 268, 269, 271, 273, 276, 286, 293, 304, 308, 314, 340, 344, 345, 348, 355, 366, 377, 378, 382, 392, 395, 396, 399, 400, 410, 411, 412, 414, 415, 416, 417, 419, 420, 430, 431, 435, 436, 443, 446, 450, 455, 462, 463, 464, 465, 466, 467, 468, 474, 476, 477, 478, 479, 483, 484], "parsabl": [112, 476, 482, 483], "parse_and_bind": [320, 323, 483], "parse_arg": [68, 89, 102, 118, 160, 190, 200, 228, 292, 309, 399, 451, 465, 469, 475], "parse_argv": [33, 34, 35, 483], "parse_colnam": [340, 483], "parse_config_h": 355, "parse_const": 262, "parse_decltyp": 340, "parse_envlist": 483, "parse_float": [262, 379], "parse_head": [151, 242, 245, 483], "parse_int": 262, "parse_intermixed_arg": [120, 480, 483], "parse_known_arg": [120, 483], "parse_known_intermixed_arg": 120, "parse_makefil": 483, "parse_message_id": 483, "parse_multipart": [151, 472, 479, 480, 481, 482, 483], "parse_q": [151, 394, 468, 472, 479, 480, 481, 482, 483], "parse_qsl": [151, 394, 468, 472, 479, 480, 481, 482, 483], "parseabl": [102, 303, 331], "parseaddr": [209, 483], "parsebyt": 207, "parsed": 209, "parsedate_to_datetim": [209, 476], "parsedate_tz": [209, 483], "parseent": 483, "parseerror": [409, 413, 469, 475, 483], "parsefil": 314, "parseflag": 248, "parser": [33, 34, 68, 73, 79, 89, 95, 102, 106, 109, 112, 118, 122, 157, 159, 160, 175, 190, 193, 194, 196, 199, 200, 201, 203, 205, 206, 208, 213, 217, 228, 238, 254, 262, 268, 273, 285, 297, 304, 309, 319, 331, 344, 395, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 431, 435, 436, 441, 443, 447, 451, 455, 456, 462, 463, 465, 466, 467, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "parser_a": 120, "parser_b": 120, "parser_bar": 120, "parser_class": 120, "parser_debug": [33, 34, 474], "parser_foo": 120, "parser_inst": 167, "parser_interfac": [472, 483], "parser_l": 475, "parser_list": [414, 483], "parser_m": 475, "parserbas": [472, 483], "parsercr": 314, "parsererror": 483, "parseresult": [394, 469, 475, 483], "parseresultbyt": [394, 475, 483], "parsermodul": 483, "parsestr": [200, 207, 411, 412, 414, 462, 478, 483], "parsetok": 483, "parsetupl": 64, "parsingerror": [167, 473, 474, 483], "parso": [112, 122, 482], "part": [7, 9, 13, 18, 23, 25, 33, 34, 39, 58, 60, 61, 63, 64, 66, 72, 73, 75, 85, 92, 94, 95, 96, 99, 100, 102, 103, 106, 109, 110, 112, 128, 151, 154, 157, 158, 159, 161, 167, 169, 176, 177, 183, 184, 186, 191, 193, 194, 196, 197, 200, 201, 202, 203, 204, 205, 206, 208, 209, 213, 225, 230, 235, 245, 247, 248, 250, 251, 258, 259, 266, 267, 268, 269, 270, 275, 276, 281, 282, 283, 293, 296, 299, 302, 307, 308, 314, 319, 323, 331, 334, 337, 338, 340, 341, 344, 345, 346, 352, 355, 362, 365, 366, 369, 375, 381, 384, 385, 386, 388, 394, 399, 403, 410, 411, 413, 419, 426, 427, 428, 429, 430, 432, 435, 436, 449, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "part_info": 201, "part_numb": 160, "partfil": 200, "parti": [7, 31, 33, 84, 85, 102, 112, 128, 132, 133, 138, 158, 169, 176, 181, 183, 184, 225, 235, 250, 251, 283, 293, 299, 302, 330, 334, 340, 341, 352, 355, 365, 369, 380, 386, 399, 400, 425, 426, 428, 461, 462, 463, 465, 466, 468, 469, 471, 474, 475, 476, 477, 479, 481, 482, 483], "partial": [24, 34, 68, 88, 95, 109, 110, 118, 126, 127, 129, 136, 177, 181, 197, 206, 207, 224, 225, 248, 255, 269, 270, 275, 284, 322, 324, 337, 338, 344, 348, 358, 413, 427, 462, 465, 466, 468, 469, 470, 471, 476, 477, 478, 479, 480, 481, 483, 484], "partial_appl": 95, "partial_cont": 241, "partialmethod": [226, 344, 477, 481, 483], "particip": [63, 75, 76, 183, 243, 250, 299, 319, 462, 464, 467, 469], "particular": [13, 33, 45, 59, 63, 64, 66, 68, 72, 73, 75, 78, 85, 93, 95, 99, 100, 101, 103, 106, 109, 110, 115, 120, 139, 151, 158, 161, 167, 169, 176, 177, 183, 193, 203, 208, 213, 243, 247, 248, 251, 255, 259, 262, 267, 268, 269, 271, 275, 276, 283, 288, 292, 293, 297, 299, 302, 308, 319, 322, 328, 332, 333, 334, 335, 337, 338, 341, 342, 344, 345, 347, 348, 352, 353, 355, 362, 364, 365, 369, 375, 376, 381, 386, 388, 394, 395, 400, 410, 411, 413, 420, 426, 427, 428, 430, 431, 432, 434, 436, 446, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "partit": [261, 332, 337, 344, 467, 478, 481, 483], "partnership": 426, "partnum": 160, "pascal": [78, 80, 85, 95, 347, 440, 441, 442, 465, 469], "pascual": 483, "pasechnik": 483, "pass": [5, 7, 9, 11, 13, 17, 22, 23, 27, 28, 33, 34, 42, 43, 45, 47, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 87, 88, 92, 93, 94, 99, 100, 101, 103, 106, 108, 109, 110, 112, 116, 118, 120, 122, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 155, 157, 158, 160, 163, 167, 169, 170, 173, 177, 178, 181, 183, 190, 191, 193, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 218, 225, 226, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 311, 314, 319, 320, 321, 322, 323, 325, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 351, 352, 353, 355, 358, 359, 362, 364, 365, 366, 367, 369, 375, 376, 378, 380, 381, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 402, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 433, 435, 443, 445, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "pass_": 305, "pass_fd": [348, 481, 483], "pass_stmt": 436, "passion": 442, "passiv": [223, 255, 461, 463, 479, 480, 481, 482], "passlib": 173, "passphras": 326, "passwd": [175, 223, 296, 310, 361, 388, 395, 466, 467, 468], "passwd_mgr": 395, "password": [102, 110, 173, 223, 229, 233, 235, 248, 269, 283, 286, 288, 293, 305, 310, 326, 335, 339, 341, 359, 361, 394, 395, 419, 422, 467, 468, 469, 476, 477, 478, 479, 483], "password_mgr": [110, 395], "past": [102, 120, 183, 193, 216, 247, 255, 293, 299, 314, 345, 348, 366, 407, 475, 477, 478, 481, 482, 483], "pasv": [223, 483], "pat": [106, 189, 220, 478], "patch": [1, 57, 68, 80, 84, 89, 92, 106, 120, 177, 187, 241, 242, 288, 344, 362, 386, 460, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 479, 481, 482, 483], "patchcheck": [468, 483], "patched_foo": 389, "patcher": [68, 187, 390, 483], "patcher1": 389, "patcher2": 389, "patchlevel": [4, 303, 483], "patel": 480, "patent": 426, "path": [5, 23, 24, 31, 32, 33, 35, 39, 59, 64, 68, 72, 73, 76, 84, 85, 87, 93, 95, 96, 98, 100, 101, 102, 109, 111, 114, 119, 120, 126, 136, 139, 142, 144, 148, 149, 151, 163, 167, 169, 176, 184, 190, 193, 200, 210, 213, 215, 219, 220, 223, 225, 230, 231, 234, 242, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 258, 265, 266, 267, 268, 269, 270, 271, 276, 279, 280, 281, 283, 286, 288, 292, 293, 296, 297, 302, 308, 311, 312, 313, 315, 320, 324, 327, 330, 331, 332, 334, 335, 337, 340, 341, 342, 348, 352, 356, 358, 360, 362, 366, 369, 384, 386, 388, 389, 394, 395, 399, 400, 403, 405, 407, 413, 416, 419, 420, 421, 423, 425, 428, 433, 436, 438, 450, 452, 453, 455, 456, 458, 460, 462, 464, 465, 466, 467, 468, 469, 471, 473, 475, 476, 477, 478, 480, 482, 483], "path1": 294, "path2": 294, "path_convert": 483, "path_find": 250, "path_hook": [31, 87, 142, 250, 302, 352, 432, 436, 450, 465, 476, 477, 483], "path_importer_cach": [31, 250, 302, 352, 432, 450, 465, 473, 474, 476, 477, 478, 480, 483], "path_info": 407, "path_item": 302, "path_max": 483, "path_mtim": [250, 476], "path_nam": 324, "path_return_ok": 243, "path_stat": [250, 476], "path_transl": 407, "pathbrows": 483, "pathconf": [293, 476], "pathconf_nam": 293, "pathconfig_warn": [33, 34, 474], "pathdistribut": [251, 483], "pathentryfind": [87, 250, 423, 432, 472, 473, 476, 477, 480], "pathext": [86, 332, 399, 461, 474, 477, 483], "pathfind": [250, 432, 472, 473, 477, 480, 483], "pathfix": 483, "pathlib": [68, 120, 142, 163, 219, 231, 250, 251, 252, 253, 254, 293, 294, 416, 422, 483], "pathlik": [59, 64, 87, 163, 225, 252, 293, 294, 296, 344, 389, 425, 479, 483], "pathnam": [31, 84, 142, 151, 176, 220, 223, 231, 267, 269, 279, 281, 293, 294, 331, 342, 352, 358, 369, 375, 397, 422, 423, 428, 432, 455, 475, 478, 483], "pathname2url": 395, "patholog": [85, 483], "pathscript": 483, "pathseg": [253, 296], "pathsep": [34, 293, 334, 380, 403, 425, 455, 456], "pathway": [475, 483], "patienc": 283, "patil": 483, "patrascu": [479, 483], "patrick": [468, 472, 483], "pattern": [42, 63, 68, 76, 85, 93, 109, 142, 144, 163, 169, 178, 189, 190, 191, 220, 222, 226, 231, 247, 248, 261, 264, 267, 275, 281, 283, 288, 292, 293, 296, 297, 308, 319, 332, 344, 345, 362, 369, 371, 382, 386, 388, 390, 429, 430, 431, 435, 441, 456, 461, 463, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "pattern_1": 472, "pattern_2": 472, "pattern_3": 472, "pattern_argu": 427, "pattern_capture_target": 431, "pattern_ti": 431, "paugh": [478, 483], "paul": [84, 103, 314, 461, 462, 463, 464, 465, 467, 468, 469, 473, 474, 476, 477, 478, 480, 481, 482, 483], "paulius": 483, "paulo": [476, 483], "paus": [92, 95, 133, 137, 177, 295, 297, 333, 430, 466, 467, 483], "pause_read": [130, 133, 480, 483], "pause_writ": [130, 133], "pavliuk": [482, 483], "pawn": 109, "pax": [332, 358, 468, 481, 483], "pax_format": [358, 468], "pax_head": 358, "pay": [100, 102, 106, 193, 461, 474, 477], "paygrad": 160, "payload": [158, 194, 196, 197, 198, 199, 200, 201, 204, 205, 206, 207, 242, 251, 469, 483], "payment": [110, 261], "payment_requir": 241, "pb": [102, 270], "pbkdf2": [235, 472], "pbkdf2_hmac": [235, 469, 472, 474, 477, 483], "pbkdf2_hmac_fast": 483, "pbm": [206, 249], "pbzip2": 476, "pc": [158, 177, 274, 406, 422, 435, 456, 461, 468, 473, 483], "pcall": 308, "pcbuild": [362, 461, 468, 483], "pcm": [295, 401], "pctp": 466, "pd": 384, "pdb": [68, 85, 114, 142, 144, 156, 185, 193, 214, 225, 254, 352, 381, 382, 455, 461, 465, 467, 468, 471, 473, 483], "pdbrc": [297, 473, 475, 479, 482, 483], "pdf": [80, 101, 109, 235, 318, 343, 352, 481, 483], "pdict": 151, "pdq": 395, "pdt": [183, 425, 482], "peac": 384, "peach": 190, "peak": [68, 141, 185, 467, 482], "pear": [291, 442, 451, 471], "pearson": [343, 472, 483], "peculiar": [42, 255], "pedagog": 103, "pedant": 483, "pedro": 468, "pedroni": [103, 465, 467], "peek": [149, 160, 234, 258, 270, 402, 475, 483], "peeknamedpip": 483, "peel": 200, "peephol": [34, 466, 467, 475, 480, 483], "peer": [107, 133, 212, 213, 288, 328, 341, 483], "peercert": 133, "peernam": [133, 136], "peeter": 479, "peg": [112, 431, 472, 473, 474, 482, 483], "pegen": 483, "peix": [472, 483], "peksag": [472, 477, 478, 479, 480, 481, 483], "pellentesqu": 149, "pelleti": 464, "pem": [341, 460, 477, 483], "pem_cert_str": 341, "pem_cert_to_der_cert": 341, "pen": [68, 222], "penalti": [102, 181, 216, 462, 475], "pencolor": 384, "pend": [13, 22, 23, 27, 33, 39, 75, 112, 133, 139, 166, 258, 271, 281, 305, 328, 333, 340, 341, 430, 475, 477, 479, 482, 483], "pendict": 384, "pendingdeprecationwarn": [23, 112, 188, 213, 388, 400, 450, 465, 468, 469, 478, 479, 480, 481, 482, 483], "pendown": 384, "penelop": 200, "penguin": [230, 427], "penros": [384, 483], "pensiz": 384, "penstat": 384, "penteado": 483, "pentium": 466, "penultim": 85, "penup": 384, "peopl": [93, 95, 99, 103, 109, 177, 186, 190, 193, 230, 235, 292, 413, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 476, 479, 481, 483], "pep": [10, 13, 23, 26, 30, 31, 33, 34, 35, 45, 49, 57, 59, 62, 63, 64, 66, 68, 71, 73, 75, 78, 80, 85, 86, 87, 88, 95, 105, 108, 109, 112, 113, 116, 117, 122, 126, 129, 141, 142, 151, 152, 153, 154, 158, 160, 161, 163, 166, 169, 170, 173, 175, 181, 191, 200, 210, 213, 221, 225, 226, 227, 247, 249, 250, 251, 255, 258, 265, 266, 267, 272, 275, 281, 287, 288, 289, 293, 295, 296, 299, 301, 302, 311, 322, 324, 326, 328, 329, 332, 333, 334, 336, 337, 339, 340, 341, 344, 345, 348, 349, 352, 353, 358, 359, 362, 366, 378, 385, 386, 397, 399, 402, 407, 408, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 441, 450, 455, 456, 457, 461, 462, 482, 483, 484], "pep3118": 483, "pep425": 483, "pep495": 183, "pep8": 483, "pepe": 200, "pepper": 340, "per": [7, 13, 22, 23, 31, 35, 45, 49, 63, 64, 68, 73, 84, 85, 102, 117, 120, 132, 133, 141, 144, 146, 158, 177, 181, 183, 186, 191, 196, 197, 203, 205, 208, 209, 226, 242, 250, 251, 267, 271, 281, 283, 288, 293, 295, 305, 307, 308, 315, 319, 329, 334, 337, 338, 340, 341, 344, 352, 362, 365, 366, 367, 369, 376, 380, 382, 388, 419, 422, 427, 428, 432, 436, 455, 461, 465, 466, 467, 469, 470, 471, 472, 476, 477, 478, 480, 481, 483, 484], "percal": 308, "perceiv": 271, "percent": [68, 84, 343, 345, 377, 394, 426, 461, 468, 470, 475, 483], "percentag": [308, 345, 446, 468, 483], "percentequ": 377, "percentil": [343, 481], "percentstyl": 483, "perceptu": 413, "percol": 483, "pereira": [480, 483], "perez": 483, "perf": [32, 34, 65, 68, 97, 352, 455, 474, 483], "perf_count": [308, 366, 367, 476, 481, 483], "perf_counter_n": [366, 367, 480, 483], "perf_profil": 34, "perfect": [33, 95, 151, 196, 243, 247, 292, 341, 343, 430, 461, 483], "perform": [18, 23, 28, 33, 39, 42, 59, 60, 63, 64, 68, 72, 75, 84, 92, 95, 101, 102, 109, 112, 118, 120, 133, 139, 158, 161, 163, 167, 169, 177, 181, 183, 186, 191, 193, 199, 206, 209, 211, 215, 220, 225, 226, 227, 242, 243, 245, 247, 248, 249, 250, 252, 259, 261, 262, 266, 267, 268, 269, 272, 283, 288, 293, 298, 305, 308, 314, 319, 321, 331, 332, 333, 334, 336, 337, 338, 340, 341, 344, 348, 352, 353, 355, 365, 366, 371, 378, 384, 386, 388, 394, 395, 399, 405, 415, 419, 420, 426, 428, 430, 432, 435, 436, 455, 458, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "perform_oper": 169, "perhap": [33, 63, 72, 73, 76, 79, 84, 94, 100, 101, 102, 106, 110, 120, 151, 177, 181, 193, 218, 243, 266, 268, 283, 293, 299, 334, 337, 394, 411, 428, 430, 431, 462, 463, 464, 466, 467, 468, 472, 474, 481, 483], "peril": [103, 444], "perimet": 225, "period": [33, 85, 94, 101, 151, 177, 183, 186, 220, 226, 267, 269, 283, 294, 302, 323, 337, 338, 341, 343, 364, 376, 420, 430, 435, 461, 462, 465, 466, 467, 468, 469, 474, 475, 483], "period_squar": 343, "perl": [87, 95, 106, 108, 243, 319, 439, 444, 452, 462, 466, 467, 483], "perm": [94, 223, 261, 275, 435, 473, 480, 481, 483], "perman": [73, 110, 248, 395, 452, 461, 478, 482, 483], "permanent_redirect": 241, "permiss": [63, 84, 85, 87, 101, 102, 110, 163, 212, 213, 216, 248, 257, 293, 311, 332, 333, 337, 340, 342, 355, 358, 360, 395, 397, 405, 426, 461, 469, 480, 483], "permissionerror": [23, 212, 213, 250, 293, 322, 339, 360, 362, 450, 476, 479, 483], "permit": [11, 27, 59, 73, 99, 186, 212, 221, 225, 245, 255, 257, 259, 262, 265, 271, 283, 293, 299, 308, 319, 344, 348, 354, 410, 419, 426, 430, 431, 435, 436, 455, 467, 468, 474, 476, 477, 478, 481, 483], "permitscontrol": 328, "permut": [95, 261, 318, 435, 462, 468, 471, 481, 483], "pernici": 478, "perpendicular": 384, "perpetu": [426, 477], "perrin": [466, 472], "perror": 213, "persist": [68, 184, 241, 245, 247, 254, 268, 269, 274, 281, 320, 426, 475, 477, 483], "persistent_id": [299, 483], "persistent_load": [299, 483], "perslist": 462, "person": [68, 93, 95, 174, 225, 247, 340, 341, 343, 355, 426, 461, 462, 464, 468], "person_s": 235, "persona": 462, "perspect": [250, 253], "pertain": [33, 63, 73, 293, 352, 375, 426, 470, 483], "pertin": [267, 325], "pertoir": 109, "perturb": 173, "pessimist": 483, "pet": 384, "petazzoni": [472, 483], "pete": 93, "peter": [93, 99, 114, 230, 318, 367, 462, 463, 464, 465, 466, 467, 468, 473, 476, 477, 478, 479, 482, 483], "peterson": [109, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481], "petr": [472, 473, 474, 478, 480, 481, 482, 483], "petri": [476, 483], "petrisor": 483, "petrosyan": 468, "petrov": 483, "petten": 467, "petter": [472, 481, 483], "pew": 200, "pf": [292, 376], "pf_can": [337, 476], "pf_divert": 337, "pf_packet": 337, "pf_rds": [337, 476], "pf_system": [337, 476], "pformat": [307, 477, 483], "pfs": 483, "pfunc": [61, 72], "pg": 293, "pgen": [481, 483], "pgen2": 483, "pgen3": 483, "pgettext": [230, 481, 483], "pgid": [142, 293], "pginstrument": 483, "pgm": [206, 249, 369], "pgn": 337, "pgo": [35, 362, 456, 468, 479, 482, 483], "pgrp": 293, "pha": 341, "phan": [235, 483], "phane": [479, 480, 483], "pharetra": 149, "phase": [16, 32, 33, 68, 71, 73, 100, 138, 154, 227, 250, 341, 376, 431, 432, 436, 468, 472, 475, 476, 483], "phaseit": 84, "phi": [154, 275], "phil": [422, 423, 468, 483], "philbrick": 73, "philip": [469, 474, 475, 479, 483], "philipp": [235, 426, 467, 472, 483], "phillip": [467, 468, 471, 475, 479, 483], "philosoph": 428, "philosophi": [186, 196, 470], "phoenix": 95, "phone": [446, 475], "phonebook": [68, 363], "phonelist": 475, "phonenumb": 475, "phoni": 483, "photofil": 452, "photoimag": [369, 376, 481, 483], "php": [223, 419, 462, 464], "phpaudit": 223, "phpbench": 223, "phrase": [114, 241, 242, 248, 272, 292, 395, 430, 434, 435, 465, 468, 476, 478, 483], "physic": [7, 68, 92, 177, 193, 247, 252, 278, 281, 337, 344, 377, 378, 384, 405, 432, 467, 480], "physicist": 319, "pi": [93, 154, 176, 177, 186, 221, 275, 297, 318, 384, 413, 442, 444, 446, 451, 475, 476, 481], "pi_factori": 413, "pick": [76, 85, 102, 110, 141, 160, 245, 251, 292, 297, 382, 388, 421, 462, 467, 483], "pickl": [63, 68, 76, 84, 101, 102, 142, 156, 158, 160, 166, 171, 176, 182, 183, 186, 226, 254, 262, 264, 267, 268, 269, 274, 283, 284, 298, 327, 330, 347, 379, 386, 389, 446, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 480, 483, 484], "picklabl": [94, 166, 255, 283, 299, 478, 483], "pickle2db": 465, "pickle_by_enum_nam": 94, "pickle_c": 172, "pickleabl": [100, 269, 483], "picklebuff": [299, 483], "picklebufobject": [472, 483], "pickleerror": 299, "pickler": [172, 299, 300, 471, 476, 481, 483], "picklestr": [299, 300], "pickletest": 483, "pickletool": [68, 156, 254, 264, 299, 382, 468, 483], "picklingerror": 299, "picnam": 384, "pictur": [73, 167, 200, 464, 466], "pid": [51, 98, 126, 132, 137, 142, 167, 278, 283, 293, 299, 309, 322, 337, 348, 362, 467, 469, 482, 483], "pid_appnam": 281, "pid_author": 281, "pid_charcount": 281, "pid_codepag": 281, "pid_com": 281, "pid_create_dtm": 281, "pid_keyword": 281, "pid_lastauthor": 281, "pid_lastprint": 281, "pid_lastsave_dtm": 281, "pid_pagecount": 281, "pid_revnumb": 281, "pid_secur": 281, "pid_subject": 281, "pid_templ": 281, "pid_titl": 281, "pid_wordcount": 281, "pidfd": [132, 333, 483], "pidfd_nonblock": [293, 474, 483], "pidfd_open": [293, 474, 482, 483], "pidfd_send_sign": [333, 482, 483], "pidfdchildwatch": [132, 474, 482, 483], "pie": [275, 340], "piec": [72, 87, 95, 106, 133, 141, 146, 151, 169, 179, 190, 191, 193, 202, 243, 270, 292, 341, 358, 369, 386, 414, 429, 435, 464, 467, 477, 482, 483], "pier": [464, 465], "pierci": 483, "pierr": [480, 481, 483], "pieter": 483, "pietraszek": 469, "pietri": 483, "pil": [2, 68, 85, 344], "pile": 483, "pillai": [469, 475], "pillow": [369, 450], "pimp": 468, "pin": 483, "pinard": 230, "pincast": 223, "pinchuk": 473, "pineappl": 190, "ping": [223, 462, 463, 464, 467], "pink": [94, 384], "piotr": 469, "pip": [68, 76, 114, 192, 251, 254, 261, 399, 421, 445, 455, 461, 472, 474, 483], "pip3": 477, "pip_us": 483, "pipe": [68, 87, 102, 106, 107, 125, 126, 130, 131, 133, 137, 164, 190, 208, 212, 213, 215, 254, 258, 293, 328, 329, 332, 333, 342, 348, 350, 352, 358, 362, 399, 455, 466, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "pipe2": [293, 476], "pipe_buf": [328, 475, 483], "pipe_clos": 133, "pipe_connection_lost": [130, 133], "pipe_data_receiv": [130, 133, 483], "pipe_max_s": 362, "pipe_mod": 142, "pipefil": 301, "pipelin": [68, 164, 254, 350, 462, 483], "pipenam": 283, "pipepag": 483, "piper": 106, "pipermail": [78, 103, 454, 463, 465], "pipes": [348, 483], "pipx": [210, 469, 477], "piraeus": 477, "pirat": 93, "pis": 413, "pitch": 483, "pitfal": [68, 106, 119, 473, 483], "pitrou": [468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "pixel": [160, 369, 372, 376, 384, 483], "pixmap": [249, 375], "pixmapwrapp": 468, "pkcs": [235, 341, 477, 483], "pkcs_7_asn": 341, "pkey": 22, "pkg": [31, 250, 302, 421, 436, 455, 456, 460, 462, 463, 467, 469, 472, 473, 474, 481, 483], "pkg_add": 460, "pkg_dir": 362, "pkg_directori": 474, "pkg_name": [279, 362, 382], "pkg_prog_pkg_config": 483, "pkg_resourc": [251, 252, 474, 483], "pkgutil": [68, 254, 280, 467, 468, 472, 473, 474, 476, 479, 480, 483], "pki": 460, "pkttype": 337, "pkzip": [422, 423, 462], "pl": 304, "place": [13, 22, 23, 27, 33, 34, 38, 42, 45, 47, 52, 54, 58, 60, 61, 63, 64, 68, 73, 75, 76, 77, 79, 84, 87, 93, 94, 95, 100, 101, 102, 108, 110, 112, 120, 139, 151, 152, 158, 160, 167, 168, 169, 176, 177, 181, 183, 186, 189, 190, 191, 193, 196, 205, 208, 218, 224, 225, 226, 230, 232, 243, 247, 250, 258, 262, 267, 268, 269, 271, 275, 278, 283, 293, 296, 297, 299, 302, 308, 311, 314, 318, 319, 321, 324, 338, 340, 341, 344, 345, 348, 364, 369, 375, 376, 380, 384, 385, 386, 388, 389, 390, 395, 397, 399, 413, 421, 422, 426, 427, 428, 430, 432, 436, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 475, 476, 478, 479, 480, 481, 483], "placebo": 318, "placehold": [68, 93, 102, 191, 230, 236, 267, 269, 298, 321, 345, 358, 364, 394, 399, 405, 436, 452, 467, 473, 474, 475, 477, 480, 483], "placeholderdict": 475, "placement": [73, 146, 369, 413, 474, 483], "placer": 369, "placerat": 149, "plagu": [68, 477], "plain": [73, 85, 94, 102, 110, 151, 152, 160, 173, 183, 196, 197, 200, 204, 205, 206, 213, 242, 255, 267, 293, 335, 341, 342, 346, 376, 386, 395, 407, 421, 422, 426, 427, 435, 464, 470, 475, 477, 478, 479, 483], "plaintext": [173, 248, 476], "plan": [49, 133, 299, 384, 386, 403, 462, 466, 467, 468, 469, 470, 475, 477, 483], "plane": [247, 275, 472, 483], "planet": [68, 343, 467], "planet_and_moon": 384, "plase": 319, "plast": 261, "plastic": 93, "plat": [33, 461, 479, 483], "platbas": 475, "platform": [5, 9, 25, 33, 34, 35, 42, 51, 59, 61, 64, 68, 72, 73, 75, 76, 84, 85, 102, 115, 118, 133, 156, 158, 163, 173, 176, 183, 186, 189, 193, 208, 212, 213, 219, 225, 235, 247, 250, 251, 254, 257, 258, 266, 269, 271, 275, 282, 283, 292, 293, 307, 308, 309, 322, 323, 326, 328, 329, 333, 337, 338, 340, 341, 342, 347, 348, 352, 354, 355, 358, 362, 365, 366, 368, 369, 378, 388, 399, 403, 406, 407, 425, 430, 435, 450, 455, 456, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "platform_tag": 483, "platform_triplet": 483, "platform_vers": [352, 479, 483], "platformtoolset": 483, "platinclud": [355, 475], "platlib": [355, 475, 483], "platlibdir": [34, 352, 354, 455, 456, 482, 483], "platstdlib": [355, 475], "play": [31, 76, 96, 103, 176, 186, 295, 318, 341, 384, 388, 406, 428, 440, 470, 483], "playback": [155, 295], "player": [295, 319, 345, 384], "playground": 384, "playlist": 474, "playsound": [406, 479, 483], "plch": [482, 483], "pleas": [1, 24, 33, 71, 100, 101, 102, 105, 106, 110, 120, 128, 137, 151, 167, 176, 223, 230, 242, 248, 250, 267, 268, 269, 288, 293, 305, 314, 319, 322, 332, 335, 337, 340, 341, 348, 352, 358, 361, 384, 400, 407, 413, 428, 430, 434, 441, 443, 457, 461, 462, 463, 465, 467, 470, 474, 476, 477, 478, 479, 480, 481, 482, 483], "pleasant": [84, 462, 463, 467], "please_add": 332, "plenti": 73, "plist": [68, 217, 254, 272, 459, 468, 477, 480, 481, 483], "plist_str": 468, "plistlib": [68, 217, 254, 479, 480, 482, 483], "plmrptoy": 319, "plock": 293, "plone": 475, "plot": [94, 466], "plug": [331, 483], "pluggabl": [475, 477, 479], "plugin": 479, "plugin1": 479, "plugin2": 479, "pluginbas": 479, "plumag": [35, 73, 441], "plummer": 483, "plural": [102, 230, 469, 480, 483], "plus": [59, 63, 75, 84, 103, 120, 176, 177, 178, 186, 190, 194, 208, 283, 292, 293, 305, 331, 342, 344, 352, 362, 364, 365, 377, 394, 411, 430, 434, 435, 461, 464, 465, 466, 467, 474, 476, 477, 483], "plusequ": 377, "plutil": 483, "pluto": 343, "pm": [183, 193, 266, 297, 352, 366], "pmincol": 177, "pminrow": 177, "pmodul": [72, 73, 483], "pname": 72, "pnext": 176, "png": [200, 206, 240, 249, 369, 376], "pngfile": 200, "po": [89, 230, 469, 473], "poefsrosr": 319, "pofsros": 319, "point": [5, 7, 16, 17, 22, 23, 31, 33, 34, 39, 41, 42, 43, 45, 47, 55, 58, 60, 63, 64, 66, 68, 73, 77, 79, 84, 85, 87, 92, 93, 95, 100, 101, 102, 103, 106, 109, 115, 116, 126, 133, 137, 138, 139, 141, 144, 153, 158, 160, 162, 163, 167, 169, 170, 176, 177, 181, 183, 189, 190, 193, 196, 200, 202, 203, 205, 206, 209, 213, 221, 225, 232, 235, 247, 250, 261, 262, 266, 267, 268, 269, 271, 274, 275, 278, 280, 281, 283, 290, 292, 293, 294, 296, 297, 299, 302, 308, 319, 322, 328, 331, 332, 333, 337, 340, 341, 343, 344, 345, 346, 347, 352, 354, 355, 358, 362, 365, 366, 369, 372, 376, 378, 381, 384, 386, 388, 395, 399, 403, 408, 411, 412, 413, 414, 421, 423, 425, 427, 428, 429, 430, 432, 436, 441, 442, 443, 444, 449, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "point2d": [122, 386], "point3d": [122, 160, 386], "point_1": 473, "point_2": 473, "point_array": 176, "pointel": 483, "pointer": [5, 7, 9, 11, 13, 17, 18, 23, 31, 33, 39, 42, 43, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 68, 72, 75, 76, 78, 79, 85, 87, 96, 100, 104, 117, 118, 142, 177, 179, 242, 278, 283, 293, 299, 303, 308, 349, 352, 430, 440, 464, 466, 467, 468, 469, 474, 475, 477, 479, 480, 483], "pointfloat": 435, "pointless": [102, 483], "poison": 483, "poke": 292, "poker": [319, 384], "polaco": 483, "polar": [154, 468, 483], "poli": [384, 462], "poliak": 477, "polic": 319, "polici": [42, 68, 80, 102, 123, 131, 135, 194, 196, 200, 201, 203, 205, 206, 207, 213, 225, 243, 285, 293, 335, 338, 341, 456, 461, 463, 466, 469, 474, 477, 478, 479, 483], "policy100": 208, "policy80": 208, "polish": [465, 483], "polit": [183, 462], "poll": [68, 84, 132, 137, 283, 293, 329, 333, 338, 341, 342, 348, 466, 468, 475, 476, 478, 482, 483], "poll_interv": 338, "poller": 483, "pollerr": 328, "pollhup": 328, "pollin": 328, "pollnval": 328, "pollobj": 468, "pollout": 328, "pollpri": 328, "pollrdhup": [328, 483], "pollselector": [131, 329, 480], "pollut": 483, "polo": [468, 469, 471, 477, 479, 480, 483], "poly1": 384, "poly1305": [341, 479, 483], "poly2": 384, "polygon": 384, "polymorph": [76, 87, 417], "polynomi": [146, 261], "polynomial_deriv": 261, "polynomial_ev": 261, "polynomial_from_root": 261, "polzin": 462, "pomran": 468, "poni": 386, "pool": [68, 73, 84, 124, 126, 130, 164, 166, 223, 261, 284, 293, 318, 463, 465, 468, 469, 475, 476, 477, 479, 483], "pool_sema": 365, "poolexecutor": 483, "poolwork": 283, "poor": [102, 149, 305, 308, 319, 463, 464, 483], "pop": [33, 35, 80, 84, 85, 102, 121, 160, 161, 186, 191, 194, 203, 236, 271, 293, 305, 331, 344, 375, 376, 384, 388, 399, 428, 435, 442, 452, 464, 465, 466, 467, 468, 475, 477, 478, 483], "pop3": [68, 254, 256, 476, 477, 478, 482, 483], "pop3_port": 305, "pop3_ssl": [305, 475, 482, 483], "pop3_ssl_port": 305, "pop_al": 169, "pop_block": [191, 473], "pop_doc": 35, "pop_except": 191, "pop_except_and_rerais": 483, "pop_fin": [481, 483], "pop_jump_backward_if_": 473, "pop_jump_backward_if_fals": 483, "pop_jump_backward_if_non": 483, "pop_jump_backward_if_not_non": 483, "pop_jump_backward_if_tru": 483, "pop_jump_forward_if_": 473, "pop_jump_forward_if_fals": 483, "pop_jump_forward_if_non": 483, "pop_jump_forward_if_not_non": 483, "pop_jump_forward_if_tru": 483, "pop_jump_if_fals": [191, 473, 475, 483], "pop_jump_if_non": [191, 483], "pop_jump_if_not_non": [191, 483], "pop_jump_if_tru": [191, 473, 483], "pop_sourc": 331, "pop_task": 236, "pop_top": [191, 483], "popa": [477, 478, 483], "popcount": 426, "popd": 460, "pope": [472, 483], "popen": [68, 102, 126, 133, 137, 142, 151, 164, 208, 248, 293, 301, 306, 328, 337, 360, 362, 399, 428, 466, 468, 476, 477, 479, 480, 481, 483], "popen2": [68, 164, 466, 468], "popen3": [68, 164], "popen4": 348, "popen_spawn_win32": 483, "popitem": [160, 161, 167, 261, 271, 288, 344, 428, 463, 465, 469, 483], "popleft": [160, 316, 442, 452, 466], "poplib": [68, 142, 156, 194, 254, 256, 451, 466, 474, 476, 479, 483], "popul": [28, 35, 45, 68, 101, 102, 120, 122, 183, 191, 207, 250, 267, 284, 299, 318, 324, 343, 385, 400, 411, 413, 428, 432, 461, 465, 472, 473, 479, 483], "popular": [73, 93, 102, 190, 193, 226, 248, 271, 347, 380, 434, 461, 475, 476, 481], "popup": [247, 362, 483], "popup_menu": 467, "popupmenu": 375, "poq": 477, "port": [68, 91, 92, 102, 105, 107, 110, 126, 136, 142, 167, 223, 242, 243, 245, 247, 248, 257, 268, 269, 283, 288, 293, 305, 313, 333, 335, 337, 338, 340, 341, 342, 359, 362, 394, 395, 407, 419, 420, 463, 464, 483, 484], "port_specifi": 243, "portabl": [65, 73, 80, 81, 102, 109, 131, 176, 177, 215, 216, 219, 249, 250, 266, 278, 293, 299, 303, 306, 337, 342, 358, 366, 403, 421, 448, 461, 462, 465, 471, 476, 480, 481, 483], "portal": 460, "porter": [482, 483], "portion": [63, 87, 92, 95, 99, 106, 128, 141, 179, 183, 186, 203, 209, 226, 235, 267, 268, 269, 337, 342, 376, 388, 394, 410, 416, 419, 420, 426, 432, 462, 475, 476, 478, 483], "portugues": [158, 483], "pos": [22, 60, 117, 141, 153, 186, 255, 262, 278, 291, 293, 300, 319, 320, 349, 376, 384, 401, 465, 469, 478], "pos1": 441, "pos2": 441, "pos_on": 441, "pos_only_arg": 441, "pos_or_kwd": 441, "pose": [462, 466], "posit": [5, 7, 13, 23, 25, 47, 58, 60, 61, 63, 64, 68, 73, 76, 84, 85, 87, 89, 92, 94, 95, 100, 102, 106, 108, 109, 115, 117, 120, 133, 136, 138, 139, 144, 149, 153, 155, 158, 160, 163, 175, 176, 177, 181, 183, 186, 190, 191, 193, 213, 215, 221, 222, 225, 226, 234, 235, 247, 252, 255, 258, 259, 261, 266, 267, 270, 275, 278, 282, 283, 293, 299, 311, 314, 320, 321, 325, 328, 332, 337, 340, 341, 344, 345, 347, 348, 349, 352, 358, 362, 363, 365, 366, 369, 376, 378, 381, 382, 385, 386, 388, 394, 399, 408, 410, 413, 415, 421, 422, 427, 430, 431, 442, 445, 449, 462, 465, 466, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "positional_argu": 430, "positional_item": 430, "positional_on": 255, "positional_only_passed_as_keyword": 483, "positional_or_keyword": [87, 255], "positional_pattern": [427, 431], "positive_sign": 266, "positon": 483, "posix": [23, 34, 68, 102, 107, 111, 115, 133, 137, 150, 166, 176, 183, 209, 213, 254, 257, 266, 283, 284, 286, 292, 293, 294, 296, 301, 309, 316, 322, 328, 331, 332, 337, 338, 348, 352, 355, 358, 360, 365, 366, 391, 399, 421, 425, 426, 455, 456, 462, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 480, 481, 483], "posix_fadv_dontne": 293, "posix_fadv_noreus": 293, "posix_fadv_norm": 293, "posix_fadv_random": 293, "posix_fadv_sequenti": 293, "posix_fadv_willne": 293, "posix_fadvis": [293, 476, 478, 483], "posix_falloc": [293, 476, 478, 483], "posix_hom": [68, 315, 475], "posix_prefix": [68, 315, 475, 483], "posix_spawn": [68, 142, 164, 293, 481, 483], "posix_spawn_clos": 293, "posix_spawn_dup2": 293, "posix_spawn_file_actions_addclos": 293, "posix_spawn_file_actions_adddup2": 293, "posix_spawn_file_actions_addopen": 293, "posix_spawn_open": 293, "posix_spawn_resetid": 293, "posix_spawn_setpgroup": 293, "posix_spawn_setschedparam": 293, "posix_spawn_setschedul": 293, "posix_spawn_setsid": 293, "posix_spawn_setsid_np": 293, "posix_spawn_setsigdef": 293, "posix_spawn_setsigmask": 293, "posix_spawnp": [293, 483], "posix_us": [68, 315, 475, 483], "posix_venv": [355, 473, 483], "posixfil": [464, 468], "posixly_correct": 228, "posixmodul": 483, "posixpath": [251, 253, 294, 296, 483], "posixpathtest": 483, "posixrul": 425, "posixuidgidtest": 483, "posonly1": 87, "posonly2": 87, "posonlyarg": [122, 483], "posonlyargcount": [13, 142, 385, 481, 483], "possess": [319, 344, 405, 473, 483], "possibl": [5, 7, 13, 22, 23, 27, 31, 33, 34, 39, 42, 47, 49, 58, 61, 63, 64, 66, 68, 71, 72, 73, 76, 78, 79, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 112, 115, 117, 120, 132, 139, 141, 149, 151, 158, 159, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 206, 208, 213, 218, 222, 225, 226, 232, 235, 242, 245, 247, 250, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 304, 308, 309, 311, 312, 314, 319, 320, 323, 328, 331, 332, 333, 337, 340, 341, 344, 345, 346, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 382, 385, 386, 388, 394, 395, 400, 403, 405, 406, 413, 415, 416, 419, 421, 422, 423, 426, 427, 428, 430, 431, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "post": [68, 94, 95, 101, 102, 103, 110, 143, 151, 176, 193, 194, 241, 242, 245, 269, 288, 295, 297, 315, 341, 352, 369, 394, 395, 399, 420, 440, 456, 462, 464, 468, 474, 475, 476, 479, 480, 481, 483], "post_f": 464, "post_handshake_auth": [242, 341, 479, 480, 481, 483], "post_mortem": [193, 297, 468], "post_pars": 483, "post_setup": 399, "postalcod": 341, "postcmd": 155, "postcommand": 376, "postcondit": 464, "poster": 288, "posterior": 343, "posterior_femal": 343, "posterior_mal": 343, "posteriori": 343, "postfil": 141, "postgresql": [340, 467], "postloop": 155, "posto": 223, "postpon": [68, 113, 177, 250, 386, 427, 428, 473, 483], "pot": [478, 483], "potenti": [33, 34, 63, 85, 95, 100, 102, 103, 167, 173, 183, 223, 225, 248, 250, 253, 255, 261, 267, 268, 269, 283, 293, 299, 305, 338, 341, 344, 352, 364, 385, 386, 388, 394, 421, 428, 432, 455, 461, 463, 464, 468, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "potential_err": 107, "potential_read": 107, "potential_writ": 107, "potlmrpi": 319, "pott": [479, 481, 483], "potuit": 103, "pound": [177, 190], "pour": 200, "pow": [47, 85, 89, 122, 166, 169, 225, 261, 275, 283, 289, 291, 344, 420, 428, 430, 431, 450, 464, 473, 475, 481, 483], "pow3": 283, "powel": [154, 483], "power": [68, 85, 89, 93, 94, 141, 167, 173, 176, 186, 225, 235, 261, 290, 292, 293, 297, 299, 319, 337, 344, 353, 358, 384, 413, 426, 427, 431, 433, 449, 465, 466, 468, 469, 470, 475, 476, 481, 483], "power8": 483, "powerpc": [295, 466, 467, 468, 483], "powerset": 261, "powershel": [399, 461, 481, 483], "powersofthre": 211, "powersort": 483, "poynton": 162, "pp": [93, 297, 307, 318, 481, 483], "pp165": 154, "ppc": [355, 468, 475], "ppc64": [355, 483], "ppc64le": 483, "ppercas": 387, "ppm": [206, 249, 369, 375], "ppos": 22, "pprint": [68, 93, 147, 182, 190, 254, 297, 299, 341, 452, 463, 471, 475, 483], "ppt": [196, 205], "pq": [236, 319], "pr": [308, 462, 483], "practic": [42, 63, 68, 74, 76, 84, 92, 95, 99, 101, 102, 103, 110, 120, 174, 177, 178, 186, 193, 194, 199, 223, 225, 235, 242, 248, 251, 252, 255, 283, 288, 305, 335, 340, 341, 344, 358, 365, 366, 369, 386, 394, 411, 425, 426, 428, 430, 463, 464, 465, 470, 475, 477, 480, 483], "pradeep": 473, "prado": 472, "pradyun": 474, "pragma": [176, 483], "pragmat": 109, "pranav": 474, "pranskevichus": [478, 479, 480, 481, 482, 483], "prc": 466, "prcal": 150, "pre": [34, 35, 73, 101, 102, 106, 111, 186, 191, 203, 208, 226, 245, 250, 261, 268, 292, 324, 331, 338, 340, 352, 353, 358, 381, 386, 387, 395, 399, 427, 455, 456, 461, 462, 465, 466, 467, 469, 474, 475, 477, 478, 479, 480, 482, 483], "pre6": 483, "pre_f": 464, "pread": [293, 476, 478, 480, 483], "preadv": [293, 480, 483], "prealloc": 42, "preambl": [196, 200, 205, 300, 483], "prebuilt": 461, "prec": [186, 452, 466, 467, 468], "precal": [473, 474, 483], "precall_funct": 483, "precall_funt": 483, "precall_method": 483, "precall_method_descriptor_fast_with_keyword": 483, "precari": 428, "precaut": 102, "preced": [68, 93, 101, 102, 103, 106, 153, 167, 178, 183, 190, 191, 193, 194, 202, 207, 225, 226, 247, 255, 266, 267, 268, 276, 303, 308, 319, 334, 337, 340, 344, 345, 347, 348, 352, 353, 366, 369, 376, 384, 400, 410, 413, 419, 420, 422, 427, 428, 429, 431, 433, 434, 435, 436, 455, 456, 461, 463, 464, 476, 480, 483], "precis": [9, 13, 18, 25, 45, 64, 68, 72, 101, 183, 213, 225, 230, 259, 262, 268, 269, 275, 283, 290, 293, 308, 313, 328, 329, 337, 340, 344, 345, 347, 352, 366, 376, 386, 395, 408, 427, 428, 430, 434, 435, 444, 452, 462, 466, 467, 468, 469, 475, 476, 477, 479, 480, 481, 482, 483], "preclud": [58, 344, 481], "precmd": 155, "precompil": [66, 324, 344, 455, 483], "precompos": 430, "precomput": [68, 147, 483], "precondit": [110, 341, 343, 464, 475], "precondition_fail": 241, "precondition_requir": 241, "preconfig": [34, 481], "preconfigur": 34, "precursor": 269, "pred": 399, "predat": [178, 190, 283, 394], "predecessor": [232, 465, 475], "predeclar": 73, "predefin": [73, 85, 101, 106, 112, 155, 158, 176, 177, 247, 267, 281, 345, 369, 403, 405, 428, 483], "predetermin": 269, "predic": [93, 95, 138, 255, 261, 364, 365, 413, 465, 468, 475, 480, 483], "predict": [141, 225, 258, 352, 413, 428, 455, 461, 475, 482, 483], "predicted_dist": 343, "predictor": 226, "preexec_fn": [348, 466, 481, 483], "prefabr": 176, "prefer": [5, 22, 23, 28, 31, 34, 43, 49, 61, 63, 68, 85, 94, 95, 102, 110, 120, 126, 139, 161, 167, 177, 183, 186, 202, 205, 213, 225, 250, 255, 258, 261, 266, 267, 271, 283, 292, 293, 299, 313, 332, 340, 341, 343, 348, 352, 355, 362, 364, 365, 366, 368, 376, 384, 385, 386, 403, 405, 416, 421, 426, 432, 456, 461, 467, 469, 474, 475, 476, 478, 479, 480, 481, 483], "preferencelist": [200, 205], "preferenti": 483, "prefil": 141, "prefix": [33, 34, 35, 47, 58, 61, 63, 64, 68, 73, 99, 106, 118, 155, 159, 163, 167, 173, 176, 177, 186, 190, 191, 203, 213, 228, 230, 235, 243, 245, 247, 256, 268, 269, 282, 293, 297, 302, 312, 314, 315, 319, 332, 334, 344, 345, 347, 352, 354, 360, 362, 364, 369, 375, 376, 380, 388, 399, 400, 410, 413, 415, 419, 423, 427, 431, 435, 436, 440, 449, 450, 455, 456, 460, 461, 465, 468, 469, 474, 475, 476, 478, 479, 481, 483], "prefix_char": [68, 118], "prefixlen": 259, "prefixlen_diff": 259, "pregener": [469, 478, 479, 483], "prehead": 483, "preiniti": [32, 42, 59, 68, 266], "prejudic": 186, "preliminari": [463, 480, 483], "preload": [283, 456, 483], "preloop": 155, "prematur": [73, 101, 242, 271, 470, 483], "premium": 160, "prep_reraise_star": [473, 483], "prepackag": 93, "prepar": [23, 59, 66, 68, 102, 109, 110, 157, 183, 191, 225, 230, 232, 235, 244, 269, 293, 299, 337, 346, 348, 352, 362, 384, 385, 388, 395, 413, 414, 417, 422, 426, 468, 470, 477, 478, 480, 482, 483], "preparatori": 267, "prepare_class": [385, 476], "prepare_input_sourc": 417, "prepare_ssl": 483, "prepareprotocol": [68, 298, 483], "prepend": [33, 34, 93, 102, 158, 163, 178, 202, 226, 261, 269, 271, 288, 292, 301, 312, 331, 332, 352, 356, 364, 413, 421, 455, 461, 474, 483], "prepend_prefix": 163, "prependdir": [163, 482, 483], "prependpath": [461, 473], "preprocess": [167, 175, 394], "preprocessor": [23, 42, 57, 68, 331, 458, 462, 469, 483], "prereleas": [57, 483], "prerequisit": [68, 427, 470, 483], "prerog": 101, "prescod": [462, 463, 464, 467], "prescript": 103, "presenc": [33, 63, 73, 75, 112, 158, 161, 186, 191, 218, 243, 250, 292, 308, 341, 348, 352, 378, 386, 388, 427, 428, 430, 464, 465, 470, 472, 479, 480, 481, 482, 483], "present": [7, 22, 31, 34, 39, 45, 49, 63, 68, 73, 74, 77, 79, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 115, 120, 146, 151, 152, 153, 155, 158, 161, 167, 176, 177, 181, 184, 186, 190, 191, 193, 196, 197, 205, 215, 221, 225, 226, 235, 243, 245, 247, 250, 251, 255, 259, 262, 267, 268, 269, 271, 276, 278, 288, 292, 293, 297, 299, 307, 308, 313, 314, 319, 322, 331, 335, 337, 341, 343, 344, 345, 352, 358, 359, 362, 364, 365, 366, 367, 369, 371, 375, 376, 378, 381, 384, 386, 388, 394, 395, 410, 413, 415, 419, 421, 423, 427, 428, 430, 432, 435, 436, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "preserv": [27, 33, 42, 68, 73, 84, 85, 95, 102, 103, 112, 120, 167, 183, 186, 190, 193, 196, 201, 203, 205, 208, 213, 255, 261, 262, 268, 269, 292, 293, 297, 299, 331, 332, 340, 344, 358, 362, 368, 385, 386, 388, 411, 413, 427, 428, 430, 435, 461, 462, 463, 464, 465, 467, 468, 469, 475, 476, 477, 478, 480, 481, 482, 483], "preset": [270, 297, 358, 483], "preset_default": 270, "preset_extrem": 270, "presiz": 483, "press": [23, 92, 102, 126, 154, 177, 247, 282, 297, 323, 369, 375, 376, 384, 388, 422, 469, 475, 483], "preston": [426, 480], "presult": 36, "presum": [63, 101, 161, 183, 271, 283, 347, 348, 394, 430, 464, 469, 470, 483], "pretend": [73, 107, 177, 428, 464, 481], "pretend_serv": 110, "pretium": 149, "pretti": [68, 76, 92, 103, 109, 122, 167, 185, 190, 250, 255, 262, 269, 292, 297, 307, 308, 378, 411, 413, 419, 430, 462, 463, 464, 467, 468, 470, 482, 483], "pretty_nam": 303, "prettyprint": [68, 182, 477, 483], "prev": [177, 376], "prev_fram": 483, "prev_h_len": 320, "prev_instr": 483, "prevail": [430, 483], "prevent": [13, 22, 23, 27, 33, 42, 58, 61, 73, 75, 76, 84, 85, 92, 93, 100, 101, 102, 109, 110, 139, 158, 167, 169, 170, 176, 181, 186, 190, 193, 206, 225, 226, 247, 250, 259, 262, 268, 269, 271, 272, 276, 283, 288, 292, 293, 305, 311, 335, 337, 341, 348, 352, 353, 358, 362, 369, 381, 384, 386, 388, 400, 422, 428, 430, 432, 455, 461, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "preview": [200, 257, 483], "preview2": 483, "previous": [5, 7, 9, 11, 13, 17, 22, 23, 26, 27, 28, 33, 42, 47, 58, 59, 61, 63, 64, 72, 73, 75, 76, 79, 84, 85, 92, 95, 101, 102, 103, 106, 109, 120, 132, 133, 139, 144, 149, 151, 158, 167, 169, 170, 173, 176, 177, 183, 186, 190, 191, 193, 207, 208, 213, 214, 216, 221, 226, 230, 242, 245, 247, 250, 253, 255, 258, 259, 261, 265, 267, 269, 270, 271, 276, 278, 282, 283, 284, 292, 293, 297, 299, 311, 314, 319, 329, 330, 331, 333, 335, 337, 340, 341, 344, 347, 352, 355, 356, 358, 362, 364, 365, 366, 375, 376, 380, 382, 384, 385, 386, 388, 394, 395, 400, 405, 410, 413, 420, 422, 423, 426, 427, 428, 429, 432, 436, 446, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "previouss": 410, "pri": 356, "price": [100, 160, 221, 319, 412, 449, 466, 467, 478, 481, 483], "primari": [13, 68, 76, 85, 93, 94, 108, 157, 169, 193, 194, 196, 205, 206, 218, 261, 267, 276, 281, 293, 299, 308, 334, 337, 340, 341, 352, 378, 419, 425, 431, 432, 433, 436, 452, 462, 463, 465, 466, 468, 469, 470, 475, 476, 477, 483], "primarili": [61, 85, 99, 101, 139, 141, 158, 183, 194, 206, 226, 252, 255, 267, 299, 304, 344, 348, 352, 386, 388, 400, 411, 427, 429, 461, 463, 464, 466, 468, 469, 476, 478, 480, 482, 483], "primary_except": 470, "prime": [85, 166, 193, 208, 225, 261, 283, 352, 366, 441, 451, 475, 479, 481, 483], "prime256v1": [341, 483], "primer": 68, "primit": [68, 75, 84, 85, 115, 123, 124, 136, 164, 176, 177, 187, 258, 299, 308, 319, 328, 329, 333, 341, 365, 452, 472, 476, 477, 480, 483], "princ": 474, "princip": [85, 243, 341, 471, 475], "principl": [73, 85, 103, 186, 476], "print": [13, 22, 27, 32, 33, 34, 42, 49, 59, 63, 68, 72, 73, 75, 76, 78, 79, 84, 85, 86, 87, 88, 89, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 113, 114, 115, 118, 122, 123, 125, 126, 129, 133, 134, 135, 136, 137, 138, 139, 140, 144, 146, 151, 155, 157, 159, 160, 163, 166, 167, 169, 170, 172, 175, 176, 177, 181, 183, 184, 186, 188, 190, 191, 193, 196, 200, 201, 204, 205, 211, 213, 214, 216, 220, 225, 226, 228, 230, 232, 235, 240, 242, 244, 245, 247, 248, 250, 251, 255, 258, 262, 267, 269, 271, 278, 279, 282, 283, 288, 293, 296, 297, 299, 301, 304, 305, 307, 308, 309, 313, 314, 316, 318, 319, 320, 321, 322, 325, 329, 331, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 348, 352, 355, 357, 358, 359, 360, 362, 364, 365, 367, 369, 375, 376, 378, 380, 381, 382, 384, 386, 388, 389, 395, 397, 399, 400, 402, 405, 407, 408, 411, 412, 413, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "print_ab": 386, "print_assign": 95, "print_cal": 308, "print_calle": 308, "print_capit": 386, "print_cont": 369, "print_diff_fil": 216, "print_directori": 151, "print_environ": 151, "print_environ_usag": 151, "print_error": [79, 475], "print_escap": 483, "print_exc": [102, 367, 381, 483], "print_except": [267, 269, 381, 472, 483], "print_expr": 483, "print_form": 151, "print_funct": [112, 113, 436, 468], "print_help": [120, 292], "print_http_head": 136, "print_it": 369, "print_last": 381, "print_mro": 103, "print_some_tim": 325, "print_stack": [139, 267, 381, 478, 483], "print_stat": 308, "print_tb": [214, 381, 478], "print_tim": 325, "print_usag": [120, 292], "print_user_nam": 114, "print_vers": 292, "print_warn": 362, "printabl": [64, 146, 158, 177, 178, 195, 196, 197, 198, 202, 203, 208, 225, 282, 317, 344, 345, 346, 428, 463, 470, 475], "printabletyp": 468, "printdir": 422, "printdocu": 92, "printer": [68, 106, 247, 369, 378, 405], "printf": [9, 64, 68, 72, 73, 98, 176, 245, 267, 430, 446, 449, 460, 467, 473, 483], "printnameoffset": 483, "printout": [308, 483], "prio_darwin_bg": [293, 483], "prio_darwin_nonui": [293, 483], "prio_darwin_process": [293, 483], "prio_darwin_thread": [293, 483], "prio_pgrp": 293, "prio_process": 293, "prio_us": 293, "prion": 475, "prior": [13, 22, 27, 33, 45, 59, 85, 93, 101, 102, 186, 225, 226, 245, 251, 255, 267, 314, 329, 332, 337, 340, 341, 343, 344, 348, 352, 356, 358, 362, 365, 386, 388, 413, 422, 426, 427, 428, 430, 432, 435, 436, 474, 477, 478, 479, 480, 481, 483], "prior_femal": 343, "prior_mal": 343, "priori": [250, 253], "priorit": 483, "prioriti": [34, 68, 93, 108, 124, 142, 167, 236, 250, 262, 269, 293, 299, 316, 322, 325, 328, 341, 344, 348, 356, 365, 375, 428, 430, 464, 465, 468, 475, 476, 477, 479, 481, 483], "prioritizeditem": [236, 316], "priority_numb": [134, 316], "priorityqu": 465, "priorityqueu": [124, 134, 316, 344, 468, 483], "privaci": [85, 341], "privat": [13, 32, 33, 42, 43, 57, 68, 85, 93, 94, 95, 176, 181, 190, 223, 225, 247, 248, 250, 259, 278, 283, 299, 305, 335, 341, 346, 348, 362, 386, 430, 435, 436, 440, 461, 463, 464, 465, 468, 474, 475, 476, 477, 478, 479, 481, 483], "private_nam": 93, "privatekey": 483, "privileg": [151, 288, 293, 337, 339, 342, 366, 405, 476, 479, 483], "prize": 103, "prlimit": [142, 322, 477, 483], "prmonth": [150, 483], "prng": 341, "pro": 319, "proactor": [478, 483], "proactor_ev": 131, "proactoreventloop": [126, 131, 132, 137, 473, 481, 483], "proactorloopctrlc": 483, "proactorsockettransport": 483, "prob_dist": 475, "probabilist": 308, "probabl": [31, 33, 56, 73, 75, 79, 85, 92, 99, 102, 106, 158, 159, 176, 183, 193, 200, 213, 230, 283, 293, 297, 308, 318, 335, 337, 338, 340, 341, 343, 352, 355, 384, 395, 405, 406, 415, 434, 456, 462, 463, 464, 465, 467, 468, 470, 475, 476, 483], "probe": [68, 98, 477, 483], "probenam": 98, "probl": 288, "problem": [23, 25, 33, 59, 63, 68, 73, 76, 84, 85, 92, 93, 95, 96, 100, 101, 102, 103, 109, 141, 152, 158, 159, 167, 169, 183, 186, 190, 193, 196, 199, 203, 205, 207, 230, 245, 247, 250, 261, 262, 266, 267, 268, 283, 292, 293, 299, 308, 314, 333, 337, 340, 344, 347, 358, 362, 364, 386, 395, 410, 413, 427, 435, 443, 444, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 480, 481, 483], "problemat": [61, 167, 268, 283, 466, 471, 475, 480, 483], "proc": [137, 240, 293, 348, 479, 483], "procedur": [42, 72, 80, 95, 103, 121, 151, 158, 176, 225, 308, 335, 346, 362, 384, 418, 419, 436, 441, 463, 464, 467, 475], "proceed": [72, 76, 110, 186, 195, 205, 261, 271, 283, 293, 308, 341, 365, 427, 430, 483], "process": [5, 7, 23, 32, 34, 39, 45, 51, 58, 59, 63, 66, 68, 72, 73, 75, 77, 78, 79, 84, 92, 95, 96, 98, 99, 101, 106, 107, 109, 110, 112, 114, 115, 120, 126, 130, 133, 134, 137, 145, 149, 150, 151, 155, 158, 164, 166, 169, 175, 176, 177, 183, 186, 193, 200, 201, 203, 212, 213, 214, 218, 225, 226, 228, 230, 232, 235, 240, 241, 245, 247, 248, 250, 254, 255, 257, 260, 261, 266, 267, 268, 269, 270, 271, 278, 280, 284, 292, 293, 295, 296, 299, 308, 309, 314, 315, 316, 319, 322, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 342, 344, 346, 347, 348, 352, 354, 356, 358, 359, 362, 364, 365, 366, 367, 369, 371, 378, 380, 381, 384, 385, 386, 394, 395, 399, 400, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 425, 427, 428, 430, 432, 435, 436, 455, 456, 461, 463, 464, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "process_block": 225, "process_client_connect": 365, "process_exit": [130, 133, 483], "process_fil": 169, "process_group": [348, 483], "process_id": [142, 337], "process_messag": [478, 479], "process_request": [102, 338], "process_server_connect": 365, "process_tim": [308, 366, 367, 476, 481, 483], "process_time_n": [366, 480, 483], "process_token": 357, "processerror": 283, "processing_instruct": 412, "processing_instruction_nod": [410, 411], "processinginstruct": [68, 273, 413, 415, 467], "processinginstructionhandl": 314, "processlookuperror": [23, 212, 213, 322, 450, 476], "processnam": [102, 267, 283], "processor": [25, 35, 73, 93, 109, 283, 288, 292, 295, 303, 314, 322, 337, 395, 415, 428, 462, 466, 467, 481, 482, 483], "processpoolexcutor": 483, "processpoolexecutor": [68, 84, 125, 126, 164, 283, 365, 475, 478, 480, 481, 482, 483], "procf": [293, 483], "procid": 102, "procthread": 461, "procur": 426, "prod": [261, 275, 481, 483], "produc": [5, 7, 22, 23, 25, 34, 39, 59, 63, 76, 77, 84, 85, 92, 95, 101, 102, 106, 109, 120, 139, 149, 151, 158, 161, 163, 167, 176, 177, 183, 186, 187, 190, 193, 194, 196, 197, 201, 202, 203, 205, 208, 213, 214, 225, 228, 230, 234, 235, 248, 258, 261, 262, 267, 270, 276, 283, 288, 293, 299, 302, 305, 308, 313, 318, 319, 321, 341, 343, 344, 347, 348, 352, 358, 365, 377, 378, 380, 384, 394, 397, 406, 411, 412, 414, 415, 416, 421, 422, 428, 430, 432, 435, 449, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "product": [7, 68, 80, 84, 95, 101, 125, 186, 193, 225, 236, 245, 247, 261, 269, 275, 318, 344, 352, 384, 388, 389, 421, 426, 430, 435, 440, 450, 459, 462, 463, 467, 468, 469, 471, 476, 479, 481, 483], "product_typ": [352, 469], "productcod": 281, "productionclass": [389, 390], "productnam": 281, "productvers": 281, "profdata": [456, 483], "profession": [461, 471], "professor": 319, "profici": 411, "profil": [13, 32, 34, 51, 68, 85, 96, 104, 156, 158, 185, 333, 341, 346, 352, 354, 365, 369, 405, 438, 451, 455, 456, 459, 463, 464, 466, 467, 468, 470, 472, 473, 474, 479, 481, 483], "profile_m": 96, "profile_task": [456, 482, 483], "profilefunc": 352, "profiler_id": 353, "profit": 426, "proftpd": [223, 475], "prog": [68, 89, 102, 118, 292, 319, 399, 451, 475], "program": [5, 31, 33, 34, 42, 45, 66, 68, 72, 73, 77, 84, 86, 89, 93, 94, 95, 97, 101, 102, 106, 110, 112, 118, 120, 125, 133, 135, 137, 146, 151, 155, 157, 158, 159, 160, 164, 167, 168, 169, 176, 183, 186, 193, 200, 201, 203, 208, 213, 214, 216, 222, 224, 225, 226, 227, 228, 234, 246, 247, 248, 250, 254, 255, 267, 269, 271, 272, 276, 282, 292, 293, 296, 297, 299, 307, 308, 309, 311, 313, 314, 319, 322, 328, 330, 333, 337, 338, 340, 341, 347, 348, 352, 353, 354, 362, 365, 368, 375, 376, 380, 381, 384, 386, 388, 394, 395, 400, 403, 405, 410, 411, 419, 421, 422, 426, 427, 428, 430, 433, 434, 435, 436, 440, 452, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 483], "program_nam": [33, 34], "programacion": [468, 470], "programfil": 461, "programm": [7, 63, 73, 77, 80, 85, 92, 93, 101, 103, 177, 181, 183, 186, 193, 194, 266, 271, 283, 292, 293, 295, 337, 340, 344, 347, 352, 369, 375, 384, 390, 400, 405, 427, 436, 463, 464, 466, 467, 468, 475, 483], "programmat": [68, 72, 167, 169, 185, 208, 266, 268, 280, 292, 299, 309, 320, 352, 378, 395, 469, 476, 477, 483], "programmingerror": [340, 473, 474, 483], "programnam": 120, "programprioritytest": 483, "progress": [84, 106, 151, 193, 212, 283, 293, 331, 340, 341, 358, 375, 376, 399, 400, 461, 462, 464, 469, 483], "progress_handl": 340, "progressbar": [68, 368], "prohibit": [132, 193, 258, 262, 341, 430, 480, 481, 482, 483], "proj": [388, 483], "project": [70, 75, 76, 77, 84, 86, 91, 102, 112, 151, 167, 183, 193, 223, 230, 235, 250, 251, 261, 292, 307, 314, 386, 388, 399, 421, 422, 425, 426, 434, 456, 459, 461, 462, 465, 468, 469, 470, 473, 474, 475, 476, 477, 479, 482, 483], "project_bas": 483, "project_directori": 388, "project_info": 307, "project_nam": 475, "project_url": 307, "projectbas": 475, "prolept": [150, 183], "prolog": 483, "prologu": 411, "promin": [426, 470, 483], "promis": [73, 94, 255, 475, 483], "promiscu": 337, "promot": [194, 426, 468, 483], "prompt": [34, 66, 79, 85, 112, 120, 142, 155, 157, 166, 173, 176, 189, 191, 193, 200, 207, 225, 229, 247, 248, 283, 297, 313, 319, 320, 335, 341, 344, 348, 352, 361, 365, 381, 384, 395, 399, 432, 436, 441, 444, 449, 455, 461, 465, 468, 472, 475, 477, 479, 480, 481, 482, 483], "prompt_last_lin": 483, "prompt_user_passwd": 395, "prone": [76, 103, 151, 183, 193, 299, 308, 344, 474, 478, 483], "pronounc": 475, "proof": [85, 95, 203, 283, 462, 481, 483], "prop": [93, 461, 474, 483], "propag": [23, 33, 36, 95, 101, 102, 125, 139, 157, 170, 213, 250, 267, 268, 283, 297, 302, 325, 332, 333, 340, 344, 348, 352, 366, 381, 388, 395, 427, 428, 430, 432, 443, 465, 467, 479, 483], "prope": 483, "proper": [5, 23, 33, 34, 45, 49, 59, 63, 72, 73, 75, 76, 85, 96, 100, 102, 106, 137, 169, 170, 177, 190, 191, 202, 203, 207, 209, 213, 230, 235, 245, 247, 250, 266, 283, 293, 308, 314, 332, 335, 337, 341, 344, 347, 348, 352, 358, 362, 365, 369, 376, 386, 388, 394, 395, 410, 413, 415, 427, 428, 430, 461, 462, 463, 464, 465, 469, 470, 474, 476, 477, 478, 479, 480, 481, 483], "proper_slic": 430, "properti": [16, 58, 63, 68, 87, 94, 95, 99, 101, 103, 106, 116, 122, 158, 160, 170, 176, 177, 181, 186, 193, 195, 196, 203, 205, 208, 211, 221, 225, 226, 230, 235, 241, 251, 255, 257, 259, 262, 266, 271, 281, 283, 304, 331, 335, 341, 344, 346, 347, 352, 365, 378, 382, 384, 385, 386, 387, 388, 389, 395, 402, 405, 410, 411, 414, 415, 416, 426, 427, 428, 435, 436, 450, 461, 462, 464, 465, 466, 467, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "property_declaration_handl": 415, "property_descr_get": 483, "property_descr_set": 483, "property_dom_nod": 415, "property_lexical_handl": 415, "property_xml_str": 415, "propertymock": [389, 483], "propertynam": 416, "proplist": 435, "proport": [141, 167, 318, 343, 483], "propos": [80, 87, 103, 153, 175, 226, 267, 341, 344, 348, 410, 427, 430, 432, 435, 436, 462, 463, 465, 466, 467, 468, 469, 475, 479, 481, 483], "proprietari": 92, "prose": 193, "prospero": 394, "prot": 278, "prot_c": 223, "prot_p": 223, "prot_read": 278, "prot_writ": 278, "protect": [23, 33, 73, 75, 76, 102, 139, 167, 176, 177, 181, 223, 230, 235, 248, 258, 270, 278, 283, 307, 314, 324, 331, 338, 342, 358, 400, 421, 428, 455, 464, 467, 474, 478, 483], "proto": [126, 136, 300, 337, 386, 395], "protocol": [2, 8, 9, 23, 28, 32, 47, 49, 54, 55, 58, 61, 63, 66, 68, 74, 79, 84, 87, 93, 94, 95, 99, 102, 109, 110, 121, 126, 130, 137, 141, 142, 146, 151, 158, 161, 169, 176, 183, 184, 187, 194, 203, 209, 212, 217, 225, 235, 241, 242, 243, 245, 248, 250, 251, 253, 254, 255, 258, 260, 267, 268, 269, 271, 283, 288, 293, 295, 299, 300, 305, 328, 329, 330, 335, 337, 338, 340, 341, 344, 346, 347, 358, 359, 362, 365, 369, 386, 395, 405, 407, 416, 419, 420, 423, 427, 428, 430, 435, 456, 462, 464, 465, 467, 468, 469, 471, 472, 473, 475, 477, 480, 482, 483, 484], "protocol_": 341, "protocol_factori": [126, 133], "protocol_sslv2": 472, "protocol_sslv23": [223, 341, 472, 483], "protocol_sslv3": [341, 472, 483], "protocol_tl": [341, 472, 483], "protocol_tls_cli": [341, 472, 483], "protocol_tls_serv": [341, 472, 483], "protocol_tlsv1": [341, 472], "protocol_tlsv1_1": [341, 472, 477], "protocol_tlsv1_2": [341, 472, 477, 483], "protocol_vers": [245, 248], "protocolerror": [68, 256], "protocolnam": [142, 337], "prototyp": [66, 68, 118, 155, 186, 340, 462, 467, 469, 483], "prouser": 386, "prouserid": 386, "provabl": [68, 461, 483], "prove": [63, 95, 103, 176, 261, 341, 427, 465, 470, 471], "proven": [95, 193, 384, 465], "provid": [5, 7, 11, 23, 25, 28, 31, 33, 34, 42, 43, 45, 47, 49, 51, 54, 58, 61, 63, 64, 66, 68, 72, 74, 75, 79, 84, 85, 91, 92, 93, 94, 95, 96, 98, 99, 100, 102, 103, 106, 108, 109, 110, 115, 117, 120, 124, 133, 137, 139, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 215, 216, 218, 220, 221, 224, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 288, 290, 292, 293, 295, 298, 302, 304, 305, 307, 308, 311, 312, 314, 315, 319, 320, 321, 322, 323, 324, 326, 328, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 430, 432, 435, 436, 440, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "provinc": 341, "provis": [101, 302, 341, 426, 430], "provision": [32, 68, 87, 197, 203, 205, 208, 251, 352, 477, 478, 479, 480, 481, 483], "provok": 42, "proxi": [61, 67, 68, 164, 167, 170, 187, 213, 225, 226, 242, 248, 257, 344, 385, 388, 395, 402, 410, 419, 426, 428, 463, 468, 474, 475, 476, 478, 479, 481, 483], "proxiedtransport": 419, "proxy_auth_handl": 395, "proxy_authentication_requir": 241, "proxy_bypass_environ": 483, "proxy_handl": 395, "proxy_head": 419, "proxy_support": 110, "proxyauth": 248, "proxybasicauthhandl": [68, 256], "proxydigestauthhandl": [68, 256], "proxyhandl": [68, 110, 256, 483], "proxytyp": [283, 402, 483], "prs": 483, "prune": [293, 483], "prweek": 483, "pryear": [150, 483], "pryor": 467, "ps": [297, 308, 348, 399], "ps1": [66, 157, 337, 352, 399, 438, 450, 455, 481, 483], "ps2": [66, 157, 352, 438, 450, 455, 483], "pseudo": [66, 94, 120, 176, 181, 191, 196, 274, 286, 293, 302, 309, 322, 326, 344, 352, 432, 464, 465, 468, 474, 479, 483], "pseudorandom": [235, 318], "pseudotermin": 309, "psf": [68, 80, 296], "pslaee": 319, "psm": 337, "psm_21467_46075": 284, "psm_6572_12221": 284, "psm_6572_7512": 284, "pst": [183, 425, 482], "pstat": [156, 308, 451, 463, 467, 483], "pstdev": [343, 483], "psuedo": 483, "psycopg": 476, "pt": 176, "pt154": 158, "ptag": 483, "ptcp154": 158, "pth": [302, 334, 352, 354, 455, 462, 479, 483], "pthread": [33, 115, 352, 365, 456, 475, 483], "pthread_": 483, "pthread_atfork": 33, "pthread_cond_timedwait": 483, "pthread_condattr_setclock": 483, "pthread_exit": 483, "pthread_getcpuclockid": [366, 480, 483], "pthread_kil": [142, 293, 333, 476], "pthread_mutex_lock": 483, "pthread_scope_system": 483, "pthread_sigmask": [333, 476], "pti": [68, 142, 254, 293, 341, 391, 474, 483], "ptp": 366, "ptr": [7, 18, 34, 42, 142, 176, 259, 466, 478], "ptr_to_char_star": 96, "ptr_to_python_str": 96, "ptrace": [293, 483], "ptraceback": 23, "ptrdiff_t": [64, 474, 483], "ptype": [18, 23, 303, 483], "pu": 384, "pub": [102, 124, 223, 332, 460], "pub0": 102, "pubid": 413, "public": [17, 26, 28, 33, 34, 55, 63, 68, 84, 93, 103, 107, 110, 155, 175, 176, 190, 204, 222, 223, 235, 240, 243, 250, 251, 255, 264, 282, 283, 292, 314, 331, 337, 341, 352, 358, 362, 364, 386, 387, 388, 395, 408, 410, 413, 416, 426, 435, 436, 440, 462, 463, 465, 466, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "public_id": 415, "public_key": 223, "public_nam": 93, "publicdomain": 235, "publicid": [314, 410, 415], "publish": [73, 102, 106, 186, 190, 192, 340, 362, 420, 426, 461, 463, 469, 475, 482, 483], "pula": 483, "pull": [68, 73, 183, 186, 273, 328, 384, 412, 425, 462, 466, 469, 477, 480, 483], "pulldom": [68, 254, 273, 409, 473, 481, 483], "pulliainen": 477, "puls": 102, "pulvinar": 149, "pumpkin": 340, "pun": 483, "punch": 483, "punctuat": [106, 109, 331, 345, 435, 479], "punctuation_char": [331, 479, 483], "punycod": [71, 158, 465, 483], "puppi": 190, "purcel": 463, "pure": [68, 74, 84, 85, 95, 100, 102, 105, 169, 176, 183, 186, 223, 230, 235, 261, 296, 308, 333, 352, 355, 356, 362, 427, 428, 442, 455, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 481, 483], "pureftpd": 223, "purelib": [355, 399, 475], "purepath": [251, 293, 296, 472, 473, 474, 482, 483], "pureposixpath": [296, 483], "purewindowspath": [296, 483], "purg": 319, "purifi": [78, 456], "puriti": [95, 394], "purl": 413, "purpl": [92, 94, 102, 211], "purplish": 177, "purpos": [5, 7, 17, 31, 33, 42, 63, 68, 72, 73, 75, 85, 93, 94, 101, 102, 106, 110, 114, 128, 158, 167, 169, 170, 173, 176, 177, 181, 183, 186, 190, 193, 196, 202, 205, 206, 213, 226, 230, 235, 245, 250, 253, 255, 261, 268, 283, 292, 293, 295, 299, 307, 308, 323, 325, 334, 337, 340, 341, 347, 352, 358, 365, 369, 376, 384, 385, 386, 388, 394, 400, 407, 410, 413, 414, 421, 425, 426, 427, 429, 430, 431, 432, 435, 440, 455, 456, 461, 462, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "purus": 149, "push": [102, 157, 160, 169, 177, 179, 186, 191, 282, 283, 314, 331, 365, 413, 435, 436, 441, 462, 468, 476, 483], "push_async_callback": [169, 481], "push_async_exit": 169, "push_exc_info": [191, 473], "push_nul": [191, 473, 483], "push_sourc": 331, "push_token": 331, "pushback": 331, "pushbutton": 281, "pushd": 460, "pussycat": 200, "put": [34, 49, 58, 68, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 100, 102, 106, 134, 138, 151, 158, 167, 176, 191, 193, 201, 203, 208, 215, 230, 232, 241, 242, 247, 250, 268, 281, 283, 295, 299, 300, 316, 333, 334, 335, 337, 341, 344, 355, 364, 365, 369, 395, 425, 432, 441, 449, 461, 463, 464, 465, 466, 467, 468, 469, 475, 478, 483], "put_nowait": [102, 134, 269, 283, 316], "putch": 282, "putchar": 177, "putcmd": 483, "putenv": [142, 293, 306, 482, 483], "puthead": 242, "putlin": [142, 288, 305, 483], "putp": 177, "putrequest": [242, 483], "putwch": [282, 468], "putwin": 177, "puzzl": [96, 467], "pvalu": [22, 23, 72], "pvarianc": [343, 483], "pvm": 84, "pvs": 483, "pw_dir": 310, "pw_geco": 310, "pw_gid": 310, "pw_name": 310, "pw_passwd": 310, "pw_shell": 310, "pw_uid": [310, 348], "pwd": [68, 173, 223, 229, 233, 254, 293, 294, 339, 348, 391, 422, 465, 482, 483], "pwrite": [293, 476, 478, 480], "pwritev": [293, 480, 483], "px": [94, 275], "py": [34, 35, 51, 68, 73, 76, 79, 85, 86, 87, 89, 94, 95, 98, 101, 102, 103, 104, 109, 111, 112, 113, 116, 117, 120, 122, 125, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 147, 149, 150, 151, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 166, 167, 169, 171, 172, 173, 175, 176, 178, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 197, 198, 199, 201, 202, 203, 204, 205, 207, 208, 209, 211, 214, 216, 218, 220, 221, 223, 226, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 276, 279, 281, 284, 286, 288, 289, 291, 292, 293, 294, 296, 297, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 321, 323, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 354, 355, 357, 358, 359, 360, 362, 364, 365, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 388, 389, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 430, 432, 438, 448, 449, 450, 451, 452, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "py2": [453, 475, 483], "py2app": [85, 459], "py2ex": [85, 283, 483], "py3": [112, 453, 471, 475, 483], "py32": 475, "py3c": 91, "py3k": [33, 87, 352, 355, 470], "py3kwarn": 468, "py_": [58, 61, 461, 483], "py_ab": 35, "py_addpendingcal": [33, 57, 469, 482, 483], "py_address_in_rang": 483, "py_adjust_erange1": [473, 483], "py_adjust_erange2": [473, 483], "py_allow_recurs": [472, 483], "py_always_inlin": [35, 483], "py_atexit": [57, 59], "py_audit_read": [58, 474], "py_audithookfunct": 59, "py_begin_allow_thread": [5, 33, 57, 73], "py_big_endian": 25, "py_block_thread": [33, 57], "py_bt": 483, "py_buff": [5, 7, 43, 57, 63, 468, 473, 476, 483], "py_build_cor": [474, 483], "py_build_core_builtin": 456, "py_build_core_modul": [456, 483], "py_buildvalu": [5, 10, 35, 57, 59, 60, 68, 73, 86, 467, 472, 481, 483], "py_builtin_module_cflag": 456, "py_bytesmain": [57, 66, 104, 481], "py_byteswarningflag": [33, 474, 480], "py_call_trampolin": 483, "py_cflag": [456, 483], "py_cflags_nodist": [456, 483], "py_charmask": 35, "py_cleanup_support": 5, "py_clear": [52, 63, 73, 75, 76, 466, 474, 483], "py_cmp_func": 176, "py_code_event_cr": 13, "py_code_event_destroy": 13, "py_coderesourc": 474, "py_coerce_c_local": 456, "py_compil": [68, 85, 156, 163, 254, 264, 469, 474, 475, 477, 483], "py_compilestr": [57, 66, 472], "py_compilestringexflag": 66, "py_compilestringflag": 66, "py_compilestringobject": 66, "py_complex": [5, 15, 73], "py_core_cflag": 456, "py_core_ldflag": 456, "py_cppflag": 456, "py_create_mod": 483, "py_debug": [34, 35, 362, 456, 472, 481, 483], "py_debugflag": [33, 474], "py_decodelocal": [33, 34, 57, 59, 64, 72, 73, 478, 480, 483], "py_decref": [13, 22, 23, 28, 35, 36, 45, 52, 57, 63, 72, 73, 75, 76, 79, 87, 100, 472, 474, 481, 483], "py_deprec": [35, 481, 483], "py_dontwritebytecodeflag": [33, 474], "py_dtsf_add_dot_0": 18, "py_dtsf_alt": 18, "py_dtsf_sign": 18, "py_dtst_finit": 18, "py_dtst_infinit": 18, "py_dtst_nan": 18, "py_ellipsi": [56, 431], "py_emscripten_signal_handl": 483, "py_emscriptensignalbuff": 483, "py_enable_shar": 355, "py_encodelocal": [33, 57, 59, 64, 478, 480, 483], "py_end_allow_recurs": [472, 483], "py_end_allow_thread": [33, 57, 73, 481, 483], "py_endinterpret": [33, 57, 100, 483], "py_enterrecursivecal": [10, 23, 57, 482, 483], "py_eq": [49, 63, 64, 75], "py_eval_input": [66, 79, 431], "py_exit": [57, 59, 479, 483], "py_exitstatusexcept": [34, 481], "py_exported_symbol": 456, "py_fals": [6, 63, 64, 75, 431, 483], "py_fatalerror": [33, 35, 42, 57, 59, 64, 482, 483], "py_fdisinteract": 59, "py_fil": 358, "py_file_input": [66, 431, 472], "py_filesystemdefaultencod": [57, 474, 483], "py_filesystemdefaultencodeerror": [57, 474, 483], "py_fin": [33, 34, 57, 469, 483], "py_finalizeex": [33, 35, 57, 59, 72, 100, 479, 483], "py_force_doubl": [473, 483], "py_frozen": 474, "py_frozenflag": [33, 474], "py_frozenmain": [472, 483], "py_func_type_input": 431, "py_g": [49, 63, 64, 75], "py_genericalia": [57, 62, 483], "py_genericaliastyp": [57, 62, 483], "py_getargcargv": [32, 68, 483], "py_getbuildinfo": [33, 57, 467], "py_getcompil": [33, 57], "py_getcopyright": [33, 57], "py_getenv": 35, "py_getexecprefix": [33, 35, 57, 472, 474, 483], "py_getpath": [33, 35, 57, 472, 474, 483], "py_getplatform": [33, 57], "py_getprefix": [33, 35, 57, 472, 474, 483], "py_getprogramfullpath": [33, 35, 57, 472, 474, 481, 483], "py_getprogramnam": [33, 57, 472, 474, 481, 483], "py_getpythonhom": [33, 57, 472, 474, 483], "py_getrecursionlimit": 57, "py_getvers": [33, 57], "py_gt": [49, 63, 64, 75], "py_hasfilesystemdefaultencod": [57, 474], "py_hash_t": [30, 49, 63, 75, 475], "py_hashrandomizationflag": [33, 474], "py_have_native_tl": 483, "py_huge_v": 18, "py_i": [57, 58, 472, 483], "py_ignoreenvironmentflag": [33, 474, 480, 483], "py_imported_symbol": 456, "py_incref": [23, 35, 52, 57, 67, 73, 75, 76, 86, 87, 472, 473, 474, 481, 483], "py_infin": 483, "py_initi": [24, 31, 33, 34, 35, 57, 59, 72, 73, 86, 461, 472, 475, 480, 482, 483], "py_initializeex": [33, 57, 100, 483], "py_initializefromconfig": [33, 34, 42, 354, 474, 481, 483], "py_inspectflag": [33, 474], "py_interactiveflag": [33, 474], "py_intptr_t": 57, "py_is_infin": [473, 483], "py_is_nan": 466, "py_is_typ": [58, 483], "py_isalnum": 469, "py_isalpha": 469, "py_isdigit": 469, "py_isfals": [57, 58, 472, 483], "py_isiniti": [33, 35, 57], "py_islow": 469, "py_isnon": [57, 58, 472, 483], "py_isolatedflag": [33, 474], "py_isspac": 469, "py_istru": [57, 58, 472, 483], "py_isupp": 469, "py_isxdigit": 469, "py_l": [49, 63, 64, 75], "py_ldflag": 456, "py_ldflags_nodist": 456, "py_leaverecursivecal": [10, 23, 57, 482, 483], "py_legacywindowsfsencodingflag": [33, 474, 483], "py_legacywindowsstdioflag": [33, 474], "py_limited_api": [33, 56, 57, 59, 61, 472, 473, 475, 480, 482, 483], "py_loc": 467, "py_local_aggress": 467, "py_local_inlin": 467, "py_long_long": 479, "py_lt": [49, 63, 64, 75], "py_main": [34, 57, 66, 461, 480, 483], "py_major_vers": [4, 113], "py_makependingcal": 57, "py_marshal_vers": [41, 473, 483], "py_max": 35, "py_member_s": 35, "py_memcpi": 483, "py_micro_vers": [4, 113], "py_min": 35, "py_minor_vers": [4, 66, 113, 481], "py_mod_cr": 45, "py_mod_exec": [45, 482, 483], "py_mod_multiple_interpret": [33, 45, 483], "py_mod_multiple_interpreters_not_support": 45, "py_mod_multiple_interpreters_support": 45, "py_mod_per_interpreter_gil_support": [45, 483], "py_modul": 462, "py_n": [49, 63, 64, 75], "py_nb_add": 61, "py_newinterpret": [33, 57, 100, 483], "py_newinterpreterfromconfig": [33, 474, 483], "py_newref": [52, 57, 60, 76, 87, 472, 483], "py_no_inlin": [35, 483], "py_no_nan": [473, 483], "py_non": [3, 23, 27, 33, 46, 47, 56, 67, 73, 86, 431], "py_nositeflag": [33, 474], "py_notimpl": [49, 63, 64, 75, 463], "py_nousersitedirectori": [33, 474], "py_object": [176, 467, 483], "py_oldfunct": [35, 481], "py_opencodehookfunct": 24, "py_optimizeflag": [33, 474], "py_overflow": [473, 483], "py_preiniti": [34, 42, 59, 474, 481], "py_preinitializefromarg": [34, 481], "py_preinitializefrombytesarg": [34, 481], "py_print_raw": [24, 49], "py_py3kwarningflag": 468, "py_python": 461, "py_python3": 461, "py_quietflag": [33, 474], "py_readon": [58, 75, 474], "py_ref_debug": [34, 456], "py_refcnt": [52, 58, 76, 468, 472, 483], "py_relative_offset": [58, 474], "py_release_level": [4, 113], "py_release_seri": [4, 113], "py_reprent": [23, 57], "py_reprleav": [23, 57], "py_resourc": 474, "py_resum": 353, "py_return": 353, "py_return_fals": [6, 466], "py_return_non": [35, 46, 73, 466], "py_return_notimpl": 49, "py_return_richcompar": [63, 480, 483], "py_return_tru": [6, 466], "py_runmain": [32, 68, 481, 483], "py_safe_downcast": 456, "py_set_erange_if_overflow": [473, 483], "py_set_errno_on_math_error": [473, 483], "py_set_refcnt": [52, 472, 483], "py_set_s": [58, 473, 483], "py_set_typ": [58, 473, 483], "py_setpath": [33, 57, 354, 461, 473, 481, 483], "py_setprogramnam": [33, 34, 35, 57, 72, 73, 461, 473, 483], "py_setpythonhom": [33, 34, 57, 473, 483], "py_setrecursionlimit": 57, "py_setref": [52, 76, 474, 483], "py_setstandardstreamencod": [33, 34, 473, 477, 483], "py_single_input": [66, 431], "py_siz": [58, 468, 473, 483], "py_size_max": 483, "py_sourc": 474, "py_spammodule_h": 73, "py_sq_length": 61, "py_sqlite_enable_load_extens": 483, "py_ssize_t": [3, 5, 7, 8, 9, 10, 13, 18, 22, 23, 28, 34, 35, 38, 39, 40, 41, 43, 45, 47, 48, 49, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 73, 75, 100, 176, 352, 428, 467, 468, 473, 481, 483], "py_ssize_t_clean": [5, 35, 59, 72, 73, 76, 467, 472, 481, 483], "py_ssize_t_max": [35, 47, 56, 483], "py_ssize_t_min": [47, 56], "py_start": 353, "py_stat": 456, "py_stdlib_mod": 483, "py_stdmodule_cflag": [456, 483], "py_stringifi": 35, "py_symtablestr": [472, 483], "py_symtablestringobject": [472, 483], "py_t_bool": 58, "py_t_byt": 58, "py_t_char": 58, "py_t_doubl": [58, 75, 474], "py_t_float": 58, "py_t_int": [58, 75, 76, 474], "py_t_long": 58, "py_t_longlong": 58, "py_t_object_ex": [58, 76, 474], "py_t_pyssizet": 58, "py_t_short": 58, "py_t_str": 58, "py_t_string_inplac": 58, "py_t_ubyt": 58, "py_t_uint": 58, "py_t_ulong": 58, "py_t_ulonglong": 58, "py_t_ushort": 58, "py_throw": [353, 483], "py_todo": 475, "py_tolow": [266, 469], "py_toupp": 469, "py_tp_bas": [61, 63], "py_tp_dealloc": 61, "py_tp_doc": 61, "py_tp_fin": 483, "py_tp_getset": 483, "py_tp_memb": [58, 61, 483], "py_tp_travers": 100, "py_tpflags_base_exc_subclass": 63, "py_tpflags_basetyp": [63, 76], "py_tpflags_bytes_subclass": 63, "py_tpflags_checktyp": 463, "py_tpflags_default": [63, 76], "py_tpflags_dict_subclass": 63, "py_tpflags_disallow_instanti": [63, 100, 472, 474, 483], "py_tpflags_gc": 464, "py_tpflags_have_am_send": 483, "py_tpflags_have_fin": [63, 474, 481], "py_tpflags_have_gc": [28, 61, 63, 76, 100, 464, 473, 483], "py_tpflags_have_stackless_extens": 63, "py_tpflags_have_vectorcal": [10, 63, 474, 483], "py_tpflags_have_version_tag": [468, 483], "py_tpflags_heaptyp": [61, 63, 100, 472, 482], "py_tpflags_immutabletyp": [63, 100, 472, 473, 474, 483], "py_tpflags_items_at_end": [49, 61, 63, 474, 483], "py_tpflags_list_subclass": 63, "py_tpflags_long_subclass": 63, "py_tpflags_managed_dict": [58, 61, 63, 474, 483], "py_tpflags_managed_weakref": [58, 61, 63, 75, 474, 483], "py_tpflags_map": [63, 191, 427, 483], "py_tpflags_method_descriptor": [10, 63, 483], "py_tpflags_readi": 63, "py_tpflags_sequ": [63, 191, 427, 483], "py_tpflags_tuple_subclass": 63, "py_tpflags_type_subclass": 63, "py_tpflags_unicode_subclass": 63, "py_tpflags_valid_version_tag": [63, 483], "py_trace_ref": [34, 35, 63, 456, 472, 481, 482, 483], "py_tracefunc": 33, "py_trashcan_begin": [473, 482, 483], "py_trashcan_begin_condit": [482, 483], "py_trashcan_end": [473, 482, 483], "py_trashcan_safe_begin": [473, 482, 483], "py_trashcan_safe_end": [473, 482, 483], "py_tru": [6, 63, 64, 75, 431, 483], "py_tss_needs_init": 33, "py_tss_t": [33, 480], "py_typ": [49, 58, 61, 63, 75, 76, 100, 468, 473, 481, 482, 483], "py_ucs1": [64, 476], "py_ucs2": [64, 476], "py_ucs4": [57, 64, 476], "py_uhash_t": 30, "py_uintptr_t": 57, "py_unblock_thread": [33, 57], "py_unbufferedstdioflag": [33, 474], "py_unicod": [5, 64, 121, 472, 473, 474, 476, 482, 483], "py_unicode_copi": [473, 476, 482, 483], "py_unicode_fil": [473, 476, 482, 483], "py_unicode_is_high_surrog": 64, "py_unicode_is_low_surrog": 64, "py_unicode_is_surrog": 64, "py_unicode_isalnum": 64, "py_unicode_isalpha": 64, "py_unicode_isdecim": [64, 475], "py_unicode_isdigit": 64, "py_unicode_islinebreak": 64, "py_unicode_islow": 64, "py_unicode_isnumer": 64, "py_unicode_isprint": 64, "py_unicode_isspac": [64, 483], "py_unicode_istitl": 64, "py_unicode_isupp": 64, "py_unicode_join_surrog": 64, "py_unicode_match": [476, 482, 483], "py_unicode_str": [472, 483], "py_unicode_strcat": [472, 476], "py_unicode_strchr": [472, 476], "py_unicode_strcmp": [472, 476], "py_unicode_strcpi": [472, 476], "py_unicode_strlen": [472, 476], "py_unicode_strncmp": [472, 476], "py_unicode_strncpi": [472, 476], "py_unicode_strrchr": [472, 476], "py_unicode_todecim": 64, "py_unicode_todigit": 64, "py_unicode_tolow": [64, 475], "py_unicode_tonumer": 64, "py_unicode_totitl": 64, "py_unicode_toupp": 64, "py_unicode_wid": 474, "py_unind": 483, "py_unreach": [35, 480, 483], "py_unus": [35, 58, 76, 483], "py_unwind": [353, 483], "py_useclassexceptionsflag": 483, "py_utf8mod": [57, 474, 483], "py_va_copi": 475, "py_vabuildvalu": [5, 57], "py_vectorcall_arguments_offset": [10, 57, 474, 483], "py_verboseflag": [33, 474], "py_vers": [4, 33, 57, 100, 176, 473, 475, 483], "py_version_hex": [4, 57, 100, 472, 473, 481, 482, 483], "py_version_nodot": 475, "py_version_short": 475, "py_visit": [28, 63, 76, 100, 482], "py_warn": 362, "py_xdecref": [35, 45, 52, 63, 72, 73, 76, 473, 481, 483], "py_xincref": [52, 73, 473, 481, 483], "py_xnewref": [52, 57, 472, 483], "py_xsetref": [52, 76, 474, 483], "py_yield": 353, "pyaiter_check": [36, 57, 483], "pyanyset_check": 55, "pyanyset_checkexact": 55, "pyapi_data": [456, 465, 483], "pyapi_func": [35, 456, 465, 481, 483], "pyarena": [472, 483], "pyarena_addpyobject": [472, 483], "pyarena_fre": [472, 483], "pyarena_malloc": [472, 483], "pyarena_new": [472, 483], "pyarg_": 23, "pyarg_noarg": 465, "pyarg_pars": [5, 57, 469, 475, 483], "pyarg_parsetupl": [5, 7, 48, 57, 58, 72, 73, 75, 77, 100, 430, 462, 464, 465, 467, 468, 472, 474, 476, 481, 483], "pyarg_parsetupleandkeyword": [5, 57, 58, 73, 75, 76, 466, 479, 483], "pyarg_unpacktupl": [5, 57, 58, 464, 483], "pyarg_validatekeywordargu": [5, 57, 483], "pyarg_vapars": [5, 57, 483], "pyarg_vaparsetupleandkeyword": [5, 57, 466, 483], "pyasciiobject": [64, 476], "pyast_compil": [467, 472, 483], "pyast_compileex": [472, 483], "pyast_compileobject": [472, 483], "pyast_fromnodeobject": 483, "pyast_valid": [472, 483], "pyasyncgen_clearfreelist": [482, 483], "pyasyncgenobject": 483, "pyasyncmethod": [61, 63, 75, 483], "pyatom": 483, "pybabel": [89, 230], "pybaseobject_typ": [57, 63], "pybench": [467, 483], "pyblake2": 235, "pybool_check": 6, "pybool_fromlong": [6, 57], "pybool_typ": [6, 57, 483], "pybsddb": [330, 465, 468, 469, 470], "pybuf_": 483, "pybuf_any_contigu": 7, "pybuf_c_contigu": [7, 468], "pybuf_contig": 7, "pybuf_contig_ro": 7, "pybuf_f_contigu": [7, 468], "pybuf_format": 7, "pybuf_ful": 7, "pybuf_full_ro": 7, "pybuf_indirect": 7, "pybuf_lock": 468, "pybuf_max_ndim": 7, "pybuf_nd": 7, "pybuf_read": 43, "pybuf_record": 7, "pybuf_records_ro": 7, "pybuf_simpl": 7, "pybuf_strid": 7, "pybuf_strided_ro": 7, "pybuf_writ": [7, 43, 468], "pybuff": 483, "pybuffer_fillcontiguousstrid": [7, 57, 473], "pybuffer_fillinfo": [7, 57, 63, 473, 483], "pybuffer_fromcontigu": [7, 57, 473, 483], "pybuffer_getpoint": [7, 57, 473, 483], "pybuffer_iscontigu": [7, 57, 473, 483], "pybuffer_releas": [5, 7, 48, 57, 63, 468, 473, 483], "pybuffer_sizefromformat": [7, 57, 473, 483], "pybuffer_tocontigu": [7, 57, 473, 483], "pybufferproc": [5, 61, 63, 75], "pybuilddir": [34, 483], "pybytearray_as_str": 8, "pybytearray_asstr": [8, 57], "pybytearray_check": 8, "pybytearray_checkexact": 8, "pybytearray_concat": [8, 57], "pybytearray_fini": [481, 483], "pybytearray_fromobject": [8, 57, 468], "pybytearray_fromstringands": [8, 57, 468], "pybytearray_get_s": 8, "pybytearray_init": [481, 483], "pybytearray_res": [8, 57], "pybytearray_s": [8, 57], "pybytearray_typ": [8, 57], "pybytearrayiter_typ": 57, "pybytearrayobject": [5, 8], "pybytes_as_str": [9, 431], "pybytes_asstr": [9, 57, 472], "pybytes_asstringands": [9, 57, 79], "pybytes_check": [9, 79, 468], "pybytes_checkexact": 9, "pybytes_concat": [9, 57, 483], "pybytes_concatanddel": [9, 57], "pybytes_decodeescap": [57, 483], "pybytes_fromformat": [9, 57, 483], "pybytes_fromformatv": [9, 57], "pybytes_fromobject": [9, 57], "pybytes_fromstr": [9, 42, 57], "pybytes_fromstringands": [9, 57, 468], "pybytes_get_s": 9, "pybytes_repr": [57, 483], "pybytes_s": [9, 57, 79], "pybytes_typ": [9, 57, 483], "pybytesiter_typ": 57, "pybytesobject": [5, 9, 13, 64, 468, 473, 474, 483], "pyc": [31, 33, 34, 68, 86, 87, 163, 250, 274, 281, 299, 311, 332, 344, 352, 362, 382, 422, 423, 428, 432, 450, 455, 456, 461, 463, 465, 466, 468, 469, 473, 474, 477, 478, 482, 483, 484], "pyc_compil": 483, "pycach": [252, 352], "pycache_prefix": [34, 163, 352, 450, 455, 481, 483], "pycallable_check": [10, 57, 72, 73], "pycalliter_check": 37, "pycalliter_new": [37, 57], "pycalliter_typ": [37, 57], "pycapsul": [11, 73, 469, 471, 472, 475, 483], "pycapsule_checkexact": 11, "pycapsule_destructor": [11, 57], "pycapsule_get": 11, "pycapsule_getcontext": [11, 57], "pycapsule_getdestructor": [11, 57], "pycapsule_getnam": [11, 57], "pycapsule_getpoint": [11, 57, 469], "pycapsule_import": [11, 57, 73, 483], "pycapsule_isvalid": [11, 57, 469], "pycapsule_new": [11, 57, 73], "pycapsule_setcontext": [11, 57], "pycapsule_setdestructor": [11, 57], "pycapsule_setnam": [11, 57], "pycapsule_setpoint": [11, 57], "pycapsule_typ": 57, "pycarraytype_new": 483, "pycell_check": 12, "pycell_get": 12, "pycell_new": 12, "pycell_set": [12, 472, 483], "pycell_typ": 12, "pycellobject": 12, "pycf_": 225, "pycf_allow_top_level_await": [122, 225, 481, 482, 483], "pycf_only_ast": [66, 122, 467, 481, 483], "pycf_type_com": 122, "pycfunct": [35, 44, 57, 58, 73, 75, 76, 100, 466, 483], "pycfunction_cal": [57, 483], "pycfunction_checkexact": 483, "pycfunction_clearfreelist": [482, 483], "pycfunction_getflag": 57, "pycfunction_getfunct": 57, "pycfunction_getself": 57, "pycfunction_new": [57, 58, 483], "pycfunction_newex": [57, 58, 483], "pycfunction_typ": 57, "pycfunctionwithkeyword": [57, 58], "pycharm": [85, 479], "pycheck": 467, "pycinvalidationmod": [163, 311], "pyclassmethod_typ": 93, "pyclassmethoddescr_typ": 57, "pyclbr": [68, 156, 254, 264, 483], "pycmethod": [58, 61, 100, 473, 482, 483], "pycmethod_check": 483, "pycmethod_checkexact": 483, "pycmethod_new": [57, 58, 483], "pycmpwrapper_typ": [482, 483], "pycobject": [469, 471, 475], "pycobject_asvoidptr": 469, "pycode_addr2lin": [13, 465, 472, 473, 479], "pycode_addr2loc": [13, 473, 483], "pycode_addwatch": [13, 474, 483], "pycode_check": 13, "pycode_clearwatch": [13, 474, 483], "pycode_getcellvar": [13, 473, 483], "pycode_getcod": [13, 473, 483], "pycode_getextra": 13, "pycode_getfirstfre": 13, "pycode_getfreevar": [13, 473, 483], "pycode_getnumfre": 13, "pycode_getvarnam": [13, 473, 483], "pycode_new": [13, 469, 473, 474, 481, 483], "pycode_newempti": [13, 469], "pycode_newwithposonlyarg": [13, 473, 474, 481, 483], "pycode_setextra": 13, "pycode_typ": 13, "pycode_watchcallback": 13, "pycodec_backslashreplaceerror": [14, 57], "pycodec_decod": [14, 57, 474], "pycodec_encod": [14, 57, 474], "pycodec_ignoreerror": [14, 57], "pycodec_incrementaldecod": [14, 57], "pycodec_incrementalencod": [14, 57], "pycodec_knownencod": [14, 57], "pycodec_lookuperror": [14, 57], "pycodec_namereplaceerror": [14, 57, 478], "pycodec_regist": [14, 57], "pycodec_registererror": [14, 57], "pycodec_replaceerror": [14, 57], "pycodec_streamread": [14, 57], "pycodec_streamwrit": [14, 57], "pycodec_stricterror": [14, 57], "pycodec_unregist": [14, 57, 472, 483], "pycodec_xmlcharrefreplaceerror": [14, 57], "pycodeev": 13, "pycodeobject": [13, 26, 473, 483], "pycompactunicodeobject": [64, 476], "pycompile_opcodestackeffectwithjump": 483, "pycompileerror": [311, 483], "pycompilerflag": [66, 481], "pycomplex_asccomplex": [15, 468], "pycomplex_check": 15, "pycomplex_checkexact": 15, "pycomplex_fromccomplex": 15, "pycomplex_fromdoubl": [15, 57], "pycomplex_imagasdoubl": [15, 57], "pycomplex_realasdoubl": [15, 57], "pycomplex_typ": [15, 57], "pycomplexobject": 15, "pycon": [92, 105, 109, 341, 467], "pyconfig": [32, 33, 35, 59, 66, 68, 87, 293, 352, 354, 355, 456, 469, 472, 473, 474, 481, 482, 483], "pyconfig_clear": [34, 481, 483], "pyconfig_initisolatedconfig": [34, 481], "pyconfig_initpythonconfig": [34, 481], "pyconfig_read": [34, 59, 87, 293, 352, 473, 481, 483], "pyconfig_setargv": [34, 481], "pyconfig_setbytesargv": [34, 481], "pyconfig_setbytesstr": [34, 59, 481], "pyconfig_setstr": [34, 481], "pyconfig_setwidestringlist": [34, 483], "pycontext": 17, "pycontext_checkexact": 17, "pycontext_clearfreelist": [482, 483], "pycontext_copi": 17, "pycontext_copycurr": 17, "pycontext_ent": 17, "pycontext_exit": 17, "pycontext_new": 17, "pycontext_typ": 17, "pycontexttoken": 17, "pycontexttoken_checkexact": 17, "pycontexttoken_typ": 17, "pycontextvar": [17, 483], "pycontextvar_checkexact": 17, "pycontextvar_get": 17, "pycontextvar_new": 17, "pycontextvar_reset": 17, "pycontextvar_set": 17, "pycontextvar_typ": 17, "pycore_": 483, "pycore_bitutil": 483, "pycore_bytes_method": 483, "pycore_coreconfig": 483, "pycore_dtoa": 483, "pycore_fram": 483, "pycore_gc": 482, "pycore_pyst": [481, 483], "pycoro_checkexact": 19, "pycoro_new": 19, "pycoro_typ": 19, "pycoroobject": 19, "pyctyp": [266, 472, 483], "pyd": [68, 71, 84, 269, 354, 423, 467, 475, 478, 481, 483], "pydate_check": 20, "pydate_checkexact": 20, "pydate_fromd": 20, "pydate_fromtimestamp": [20, 483], "pydatetime_": 483, "pydatetime_check": 20, "pydatetime_checkexact": 20, "pydatetime_d": 20, "pydatetime_date_get_fold": 20, "pydatetime_date_get_hour": 20, "pydatetime_date_get_microsecond": 20, "pydatetime_date_get_minut": 20, "pydatetime_date_get_second": 20, "pydatetime_date_get_tzinfo": [20, 472, 483], "pydatetime_datetim": 20, "pydatetime_datetimetyp": 20, "pydatetime_datetyp": 20, "pydatetime_delta": 20, "pydatetime_delta_get_day": 20, "pydatetime_delta_get_microsecond": 20, "pydatetime_delta_get_second": 20, "pydatetime_deltatyp": 20, "pydatetime_fromdateandtim": 20, "pydatetime_fromdateandtimeandfold": [20, 483], "pydatetime_fromtimestamp": 20, "pydatetime_get_day": 20, "pydatetime_get_month": 20, "pydatetime_get_year": 20, "pydatetime_import": 20, "pydatetime_isocalendardatetyp": 483, "pydatetime_tim": 20, "pydatetime_time_get_fold": 20, "pydatetime_time_get_hour": 20, "pydatetime_time_get_microsecond": 20, "pydatetime_time_get_minut": 20, "pydatetime_time_get_second": 20, "pydatetime_time_get_tzinfo": [20, 472, 483], "pydatetime_timetyp": 20, "pydatetime_timezone_utc": [20, 480], "pydatetime_tzinfotyp": 20, "pydatetimeapi": 20, "pydebug": [35, 96, 352, 456, 465, 472, 477, 483], "pydelta_check": 20, "pydelta_checkexact": 20, "pydelta_fromdsu": 20, "pydescr_isdata": [21, 483], "pydescr_newclassmethod": [21, 57], "pydescr_newgetset": [21, 57], "pydescr_newmemb": [21, 57], "pydescr_newmethod": [21, 57, 483], "pydescr_newwrapp": 21, "pydict_addwatch": [22, 474], "pydict_check": [16, 22], "pydict_checkexact": 22, "pydict_clear": [22, 57], "pydict_clearfreelist": [482, 483], "pydict_clearwatch": 22, "pydict_contain": [22, 57, 466], "pydict_copi": [22, 57], "pydict_delitem": [22, 57], "pydict_delitemstr": [22, 57], "pydict_event_ad": 22, "pydict_event_clear": 22, "pydict_event_clon": 22, "pydict_event_dealloc": 22, "pydict_event_delet": 22, "pydict_event_modifi": 22, "pydict_getitem": [22, 57, 73, 472, 483], "pydict_getitemstr": [22, 57, 73, 96], "pydict_getitemwitherror": [22, 57, 483], "pydict_item": [22, 57], "pydict_key": [22, 57], "pydict_merg": [22, 57], "pydict_mergefromseq2": [22, 57], "pydict_new": [22, 57], "pydict_next": [22, 57], "pydict_s": [22, 57], "pydict_setdefault": [22, 483], "pydict_setitem": [22, 57, 63, 73, 483], "pydict_setitemstr": [22, 57, 483], "pydict_typ": [22, 57], "pydict_unwatch": 22, "pydict_upd": [22, 57], "pydict_valu": [22, 57], "pydict_watch": [22, 474], "pydict_watchcallback": 22, "pydict_watchev": 22, "pydictitems_typ": 57, "pydictiteritem_typ": 57, "pydictiterkey_typ": 57, "pydictitervalue_typ": 57, "pydictkeys_typ": 57, "pydictobject": [22, 55, 96, 474, 483], "pydictproxy_new": [22, 57], "pydictproxy_typ": 57, "pydictreviteritem_typ": 57, "pydictreviterkey_typ": 57, "pydictrevitervalue_typ": 57, "pydictvalues_typ": 57, "pydll": [176, 483], "pydoc": [63, 68, 76, 84, 156, 187, 225, 254, 420, 463, 464, 465, 466, 469, 471, 478, 483], "pydoc3": 475, "pydoc_str": [35, 58, 63, 76, 483], "pydoc_strvar": [35, 45, 100, 456, 483], "pydoc_strvar_shar": 483, "pydoc_var": 483, "pyellipsis_typ": 57, "pyenum_typ": 57, "pyenv": 483, "pyerr_": 73, "pyerr_badargu": [23, 57], "pyerr_badinternalcal": [23, 57], "pyerr_checksign": [23, 57, 474, 483], "pyerr_clear": [23, 35, 57, 73, 477], "pyerr_display": [57, 472, 474, 483], "pyerr_displayexcept": [23, 57, 474, 483], "pyerr_exceptionmatch": [23, 35, 57], "pyerr_fetch": [23, 57, 63, 75, 474, 477, 483], "pyerr_format": [23, 57, 75, 469, 478, 483], "pyerr_formatv": [23, 57, 478, 483], "pyerr_getexcinfo": [23, 57, 473, 483], "pyerr_gethandledexcept": [23, 57, 473, 483], "pyerr_getraisedexcept": [23, 57, 474, 483], "pyerr_givenexceptionmatch": [23, 57], "pyerr_newexcept": [23, 57, 73, 467, 469, 475], "pyerr_newexceptionwithdoc": [23, 57, 469, 475], "pyerr_nomemori": [23, 42, 57, 73], "pyerr_normalizeexcept": [23, 57, 474, 483], "pyerr_occur": [11, 22, 23, 25, 35, 36, 39, 41, 49, 57, 64, 72, 73, 431, 483], "pyerr_print": [23, 57, 68, 72, 73, 483], "pyerr_printex": [23, 57, 483], "pyerr_programtext": 57, "pyerr_resourcewarn": [23, 57, 479, 483], "pyerr_restor": [23, 57, 63, 75, 474, 483], "pyerr_set": 23, "pyerr_setexcfromwindowserr": [23, 57], "pyerr_setexcfromwindowserrwithfilenam": [23, 57, 483], "pyerr_setexcfromwindowserrwithfilenameobject": [23, 57], "pyerr_setexcfromwindowserrwithunicodefilenam": 483, "pyerr_setexcinfo": [23, 57, 473, 483], "pyerr_setfromerrno": [23, 57, 73], "pyerr_setfromerrnowithfilenam": [23, 57, 483], "pyerr_setfromerrnowithfilenameobject": [23, 57], "pyerr_setfromerrnowithunicodefilenam": 483, "pyerr_setfromwindowserr": [23, 57], "pyerr_setfromwindowserrwithfilenam": [23, 57, 483], "pyerr_setfromwindowserrwithunicodefilenam": 483, "pyerr_sethandledexcept": [23, 57, 473, 483], "pyerr_setimporterror": [23, 57, 477, 479], "pyerr_setimporterrorsubclass": [23, 57, 479], "pyerr_setinterrupt": [23, 57], "pyerr_setinterruptex": [23, 57, 472], "pyerr_setnon": [23, 57], "pyerr_setobject": [23, 57, 73, 474, 483], "pyerr_setraisedexcept": [23, 57, 474, 483], "pyerr_setstr": [23, 35, 57, 73, 75, 76, 100, 469, 474, 483], "pyerr_syntaxloc": [23, 57], "pyerr_syntaxlocationex": [23, 57, 483], "pyerr_syntaxlocationobject": [23, 483], "pyerr_warn": 467, "pyerr_warnex": [23, 57, 400, 467], "pyerr_warnexplicit": [23, 57, 483], "pyerr_warnexplicitobject": 23, "pyerr_warnformat": [23, 57], "pyerr_writeunrais": [13, 22, 23, 27, 57, 75, 483], "pyerror": 483, "pyeval_": 483, "pyeval_acquirelock": [33, 57, 475, 481, 483], "pyeval_acquirethread": [33, 57, 481, 483], "pyeval_callfunct": [57, 482, 483], "pyeval_callmethod": [57, 482, 483], "pyeval_callobject": [469, 475, 482, 483], "pyeval_callobjectwithkeyword": [57, 482, 483], "pyeval_evalcod": [57, 66, 104, 472, 483], "pyeval_evalcodeex": [57, 66, 483], "pyeval_evalfram": [57, 66], "pyeval_evalframeex": [57, 66, 96, 477, 483], "pyeval_getbuiltin": [53, 57], "pyeval_getcallstat": 483, "pyeval_getfram": [26, 33, 53, 57, 483], "pyeval_getfuncdesc": [53, 57], "pyeval_getfuncnam": [53, 57], "pyeval_getglob": [53, 57], "pyeval_getloc": [53, 57], "pyeval_initthread": [33, 57, 475, 482, 483], "pyeval_mergecompilerflag": 66, "pyeval_reinitthread": [481, 483], "pyeval_releaselock": [33, 57, 475], "pyeval_releasethread": [33, 57], "pyeval_restorethread": [33, 57, 475, 481, 483], "pyeval_savethread": [33, 57, 475], "pyeval_setprofil": [33, 464, 483], "pyeval_setprofileallthread": [33, 474, 483], "pyeval_settrac": [33, 464, 483], "pyeval_settraceallthread": [33, 474, 483], "pyeval_threadsiniti": [33, 57, 466, 482, 483], "pyexc_": 23, "pyexc_arithmeticerror": [23, 57], "pyexc_assertionerror": [23, 57], "pyexc_attributeerror": [23, 57, 75, 76], "pyexc_baseexcept": [23, 57], "pyexc_baseexceptiongroup": 57, "pyexc_blockingioerror": [23, 57], "pyexc_brokenpipeerror": [23, 57], "pyexc_buffererror": [23, 57], "pyexc_byteswarn": [23, 57], "pyexc_childprocesserror": [23, 57], "pyexc_connectionabortederror": [23, 57], "pyexc_connectionerror": [23, 57], "pyexc_connectionrefusederror": [23, 57], "pyexc_connectionreseterror": [23, 57], "pyexc_deprecationwarn": [23, 57], "pyexc_encodingwarn": 57, "pyexc_environmenterror": [23, 57], "pyexc_eoferror": [23, 57], "pyexc_except": [23, 57], "pyexc_fileexistserror": [23, 57], "pyexc_filenotfounderror": [23, 57], "pyexc_floatingpointerror": [23, 57], "pyexc_futurewarn": [23, 57], "pyexc_generatorexit": [23, 57], "pyexc_importerror": [23, 57, 100], "pyexc_importwarn": [23, 57], "pyexc_indentationerror": [23, 57], "pyexc_indexerror": [23, 57], "pyexc_interruptederror": [23, 57], "pyexc_ioerror": [23, 57], "pyexc_isadirectoryerror": [23, 57], "pyexc_keyboardinterrupt": [23, 57], "pyexc_keyerror": [23, 35, 57], "pyexc_lookuperror": [23, 57], "pyexc_memoryerror": [23, 57], "pyexc_modulenotfounderror": [23, 57], "pyexc_nameerror": [23, 57], "pyexc_notadirectoryerror": [23, 57], "pyexc_notimplementederror": [23, 57], "pyexc_oserror": [23, 57, 73], "pyexc_overflowerror": [23, 57], "pyexc_pendingdeprecationwarn": [23, 57], "pyexc_permissionerror": [23, 57], "pyexc_processlookuperror": [23, 57], "pyexc_recursionerror": [23, 57, 478], "pyexc_recursionerrorinst": [479, 480, 483], "pyexc_referenceerror": [23, 57], "pyexc_resourcewarn": [23, 57], "pyexc_runtimeerror": [23, 57, 75], "pyexc_runtimewarn": [23, 57], "pyexc_stopasynciter": [23, 57], "pyexc_stopiter": [23, 57], "pyexc_syntaxerror": [23, 57, 431], "pyexc_syntaxwarn": [23, 57], "pyexc_systemerror": [23, 57], "pyexc_systemexit": [23, 57], "pyexc_taberror": [23, 57], "pyexc_timeouterror": [23, 57], "pyexc_typeerror": [23, 57, 73, 75, 76], "pyexc_unboundlocalerror": [23, 57], "pyexc_unicodedecodeerror": [23, 57], "pyexc_unicodeencodeerror": [23, 57], "pyexc_unicodeerror": [23, 57], "pyexc_unicodetranslateerror": [23, 57], "pyexc_unicodewarn": [23, 57], "pyexc_userwarn": [23, 57], "pyexc_valueerror": [23, 57, 73, 469], "pyexc_warn": [23, 57], "pyexc_windowserror": [23, 57], "pyexc_zerodivisionerror": [23, 57, 73], "pyexception_getarg": [23, 57, 474, 483], "pyexception_getcaus": [23, 57], "pyexception_getcontext": [23, 57], "pyexception_gettraceback": [23, 57], "pyexception_setarg": [23, 57, 474, 483], "pyexception_setcaus": [23, 57], "pyexception_setcontext": [23, 57], "pyexception_settraceback": [23, 57, 483], "pyexceptionclass_nam": [57, 481, 483], "pyexpat": [314, 409, 426, 456, 462, 465, 467, 468, 469, 483], "pyexpat_capi": 483, "pyexpatn": 483, "pyfailmalloc": 477, "pyfile_decusecount": 468, "pyfile_fromfd": [24, 57], "pyfile_getlin": [24, 57], "pyfile_incusecount": 468, "pyfile_setopencodehook": [24, 258, 483], "pyfile_writeobject": [24, 49, 57], "pyfile_writestr": [24, 57], "pyfilter_typ": 57, "pyflak": [85, 483], "pyfloat": 25, "pyfloat_as_doubl": 25, "pyfloat_asdoubl": [25, 57, 481], "pyfloat_check": 25, "pyfloat_checkexact": 25, "pyfloat_clearfreelist": [482, 483], "pyfloat_fromdoubl": [25, 57], "pyfloat_fromstr": [25, 57], "pyfloat_getinfo": [25, 57, 468], "pyfloat_getmax": [25, 57, 468], "pyfloat_getmin": [25, 57, 468], "pyfloat_pack2": [25, 473, 483], "pyfloat_pack4": [25, 473, 483], "pyfloat_pack8": [25, 473, 483], "pyfloat_typ": [25, 57], "pyfloat_unpack2": [25, 473, 483], "pyfloat_unpack4": [25, 473, 483], "pyfloat_unpack8": [25, 473, 483], "pyfloatobject": [25, 76], "pyfp": [472, 482, 483], "pyfpe_end_protect": [482, 483], "pyfpe_start_protect": [482, 483], "pyframe_blockpop": 473, "pyframe_blocksetup": 473, "pyframe_check": [26, 473, 483], "pyframe_clearfreelist": [482, 483], "pyframe_extendstack": [482, 483], "pyframe_fasttolocalswitherror": [473, 483], "pyframe_getback": [26, 473, 482, 483], "pyframe_getbuiltin": [26, 473, 483], "pyframe_getcod": [26, 57, 473, 482, 483], "pyframe_getgener": [26, 473, 483], "pyframe_getglob": [26, 473, 483], "pyframe_getlasti": [26, 473, 483], "pyframe_getlinenumb": [13, 26, 57, 469, 472, 473, 479, 482], "pyframe_getloc": [26, 473, 483], "pyframe_getvar": [26, 474, 483], "pyframe_getvarstr": [26, 474, 483], "pyframe_localstofast": [473, 483], "pyframe_new": 483, "pyframe_typ": [26, 473, 483], "pyframeobject": [19, 26, 29, 33, 53, 57, 66, 96, 473, 477, 483], "pyfrozenset_check": 55, "pyfrozenset_checkexact": 55, "pyfrozenset_new": [55, 57, 467], "pyfrozenset_typ": [55, 57], "pyfunction_addwatch": 27, "pyfunction_check": 27, "pyfunction_clearwatch": 27, "pyfunction_event_cr": 27, "pyfunction_event_destroy": 27, "pyfunction_event_modify_cod": 27, "pyfunction_event_modify_default": 27, "pyfunction_event_modify_kwdefault": 27, "pyfunction_getannot": [27, 483], "pyfunction_getclosur": 27, "pyfunction_getcod": 27, "pyfunction_getdefault": 27, "pyfunction_getglob": 27, "pyfunction_getmodul": 27, "pyfunction_new": 27, "pyfunction_newwithqualnam": 27, "pyfunction_setannot": 27, "pyfunction_setclosur": 27, "pyfunction_setdefault": 27, "pyfunction_setvectorcal": [27, 474, 483], "pyfunction_typ": [27, 483], "pyfunction_watchcallback": 27, "pyfunction_watchev": 27, "pyfunctionobject": [27, 474, 483], "pyfunctyp": 176, "pyfuture_fromast": [472, 483], "pyfuture_fromastobject": [472, 483], "pygam": 80, "pygc_collect": [28, 57, 482, 483], "pygc_dis": [28, 57, 472, 483], "pygc_en": [28, 57, 472, 483], "pygc_head": [481, 482, 483], "pygc_head_s": 464, "pygc_isen": [28, 57, 472, 483], "pygen": 483, "pygen_check": 29, "pygen_checkexact": 29, "pygen_error": 36, "pygen_needsfin": [482, 483], "pygen_new": 29, "pygen_newwithqualnam": 29, "pygen_next": 36, "pygen_return": 36, "pygen_typ": 29, "pygenobject": 29, "pygetopt": 483, "pygetsetdef": [21, 57, 58, 63, 75, 76, 100, 255, 385, 480, 483], "pygetsetdescr_typ": 57, "pygettext": [230, 478, 483], "pygilst": 33, "pygilstate_": 33, "pygilstate_check": 33, "pygilstate_ensur": [33, 57, 481, 483], "pygilstate_getthisthreadst": [33, 57, 483], "pygilstate_releas": [33, 57, 483], "pygilstate_st": [33, 57], "pygram": 483, "pygtk": 467, "pyhamcrest": 390, "pyhash": [32, 65, 68, 426, 456, 483], "pyhash_funcdef": 30, "pyhash_getfuncdef": 30, "pyheaptype_get_memb": [473, 483], "pyhkey": [142, 405], "pyhon": [440, 450], "pyi": [472, 473, 482, 483], "pyimport_addmodul": [31, 57, 73], "pyimport_addmoduleobject": [31, 57], "pyimport_appendinittab": [31, 33, 34, 45, 57, 72, 73, 483], "pyimport_cleanup": 482, "pyimport_execcodemodul": [31, 57], "pyimport_execcodemoduleex": [31, 57], "pyimport_execcodemoduleobject": [31, 57, 483], "pyimport_execcodemodulewithpathnam": [31, 57], "pyimport_extendinittab": [31, 33, 34, 483], "pyimport_frozenmodul": [31, 34, 176, 483], "pyimport_getimport": [31, 57, 483], "pyimport_getmagicnumb": [31, 57, 476], "pyimport_getmagictag": [31, 57], "pyimport_getmodul": [31, 57, 480, 483], "pyimport_getmoduledict": [31, 57, 483], "pyimport_import": [31, 57, 72, 468], "pyimport_importfrozenmodul": [31, 57, 483], "pyimport_importfrozenmoduleobject": [31, 57, 483], "pyimport_importmodul": [31, 57, 73, 79, 463, 468, 470, 472, 474, 483], "pyimport_importmoduleex": [31, 476], "pyimport_importmodulelevel": [31, 57, 476], "pyimport_importmodulelevelobject": [31, 57], "pyimport_importmodulenoblock": [31, 57, 468, 470, 474, 476, 483], "pyimport_inittab": [73, 483], "pyimport_reinitlock": 483, "pyimport_reloadmodul": [31, 57, 483], "pyindex_check": [47, 57, 482, 483], "pyinit": [35, 71], "pyinit_": [35, 71, 456, 483], "pyinit_cli": 73, "pyinit_custom": 76, "pyinit_custom2": 76, "pyinit_custom3": 76, "pyinit_custom4": 76, "pyinit_emb": 72, "pyinit_foo": 86, "pyinit_keywdarg": 73, "pyinit_modulenam": [45, 71], "pyinit_nam": 73, "pyinit_spam": [35, 73], "pyinit_sublist": 76, "pyinitfrozenextens": 33, "pyinitu_": 71, "pyinstal": [85, 283, 459], "pyinstancemethod_check": 44, "pyinstancemethod_funct": 44, "pyinstancemethod_get_funct": 44, "pyinstancemethod_new": 44, "pyinstancemethod_typ": 44, "pyinterpreterconfig": [33, 474, 483], "pyinterpreterconfig_default_gil": [33, 483], "pyinterpreterconfig_own_gil": [33, 474, 483], "pyinterpreterconfig_shared_gil": [33, 483], "pyinterpreterst": [33, 34, 57, 63, 472, 481, 482, 483], "pyinterpreterstate_clear": [33, 57, 142], "pyinterpreterstate_delet": [33, 57], "pyinterpreterstate_get": [33, 57, 482, 483], "pyinterpreterstate_getdict": [33, 57, 483], "pyinterpreterstate_getid": [33, 57, 480], "pyinterpreterstate_head": [33, 464], "pyinterpreterstate_main": [33, 483], "pyinterpreterstate_new": [33, 57, 142, 483], "pyinterpreterstate_next": [33, 464], "pyinterpreterstate_threadhead": [33, 464], "pyiter_check": [36, 57, 63, 483], "pyiter_next": [36, 57, 63], "pyiter_send": [36, 57, 63, 472, 483], "pylauncher_allow_instal": [461, 483], "pylauncher_always_instal": 461, "pylauncher_debug": 461, "pylauncher_dryrun": 461, "pylauncher_no_search_path": 461, "pylib": 467, "pylifecycl": 483, "pylinetable_initaddressrang": 483, "pylint": 85, "pylist_append": [38, 57, 483], "pylist_astupl": [38, 57], "pylist_check": [35, 38, 79], "pylist_checkexact": 38, "pylist_clearfreelist": [482, 483], "pylist_get_item": [38, 57], "pylist_get_s": 38, "pylist_getitem": [35, 38, 57, 73, 79, 483], "pylist_getslic": [38, 57], "pylist_insert": [38, 57], "pylist_new": [2, 35, 38, 57], "pylist_revers": [38, 57], "pylist_s": [35, 38, 57, 79, 467], "pylist_set_item": [38, 472, 483], "pylist_setitem": [35, 38, 57, 73], "pylist_setslic": [38, 57], "pylist_sort": [38, 57], "pylist_typ": [38, 57, 76], "pylistiter_typ": 57, "pylistobject": [22, 38, 54, 76], "pylistreviter_typ": 57, "pyload": [475, 477], "pylong": [39, 471, 483], "pylong_": 474, "pylong_a": 39, "pylong_asdoubl": [39, 57, 483], "pylong_aslong": [22, 35, 39, 57, 72, 481], "pylong_aslongandoverflow": [39, 57, 469, 475], "pylong_aslonglong": [39, 57], "pylong_aslonglongandoverflow": [39, 57, 469, 475], "pylong_aspid": 483, "pylong_assize_t": [39, 57], "pylong_asssize_t": [39, 57], "pylong_asunsignedlong": [39, 57], "pylong_asunsignedlonglong": [39, 57, 471], "pylong_asunsignedlonglongmask": [39, 57, 483], "pylong_asunsignedlongmask": [39, 57], "pylong_asvoidptr": [39, 57], "pylong_bas": 483, "pylong_bits_in_digit": [456, 473, 483], "pylong_check": [35, 39, 63], "pylong_checkexact": 39, "pylong_fromdoubl": [39, 57, 482, 483], "pylong_fromlong": [22, 35, 39, 45, 57, 72, 73, 75, 76, 483], "pylong_fromlonglong": [39, 57, 483], "pylong_fromsize_t": [39, 57, 483], "pylong_fromssize_t": [35, 39, 57], "pylong_fromstr": [39, 57, 483], "pylong_fromunicod": [472, 483], "pylong_fromunicodeobject": [39, 472], "pylong_fromunsignedlong": [39, 57, 483], "pylong_fromunsignedlonglong": [39, 57, 483], "pylong_fromvoidptr": [39, 57], "pylong_getinfo": 57, "pylong_typ": [39, 57, 483], "pylongobject": [39, 57, 96, 474, 483], "pylongrangeiter_typ": 57, "pylongvalu": 483, "pylookup": 160, "pymain_parse_cmdline_impl": 483, "pymain_run_python": [104, 483], "pymalloc": [32, 34, 68, 352, 455, 456, 463, 468, 469, 475, 477, 479, 481, 483, 484], "pymalloc_debug": [42, 455, 483], "pymap": 79, "pymap_typ": 57, "pymapping_": 35, "pymapping_check": [40, 57, 63], "pymapping_delitem": 40, "pymapping_delitemstr": 40, "pymapping_getitemstr": [40, 57], "pymapping_haskey": [40, 57], "pymapping_haskeystr": [40, 57], "pymapping_item": [40, 57, 480, 483], "pymapping_key": [22, 40, 57, 480, 483], "pymapping_length": [40, 57], "pymapping_s": [40, 57, 63, 483], "pymapping_setitemstr": [40, 57, 483], "pymapping_valu": [40, 57, 480, 483], "pymappingmethod": [61, 63, 75], "pymarshal_readlastobjectfromfil": 41, "pymarshal_readlongfromfil": 41, "pymarshal_readobjectfromfil": 41, "pymarshal_readobjectfromstr": [41, 473, 483], "pymarshal_readshortfromfil": 41, "pymarshal_writelongtofil": [41, 473, 483], "pymarshal_writeobjecttofil": [41, 473, 483], "pymarshal_writeobjecttostr": [41, 473, 483], "pymem": [462, 467], "pymem_": 467, "pymem_allocator_debug": 34, "pymem_allocator_default": 34, "pymem_allocator_malloc": 34, "pymem_allocator_malloc_debug": 34, "pymem_allocator_not_set": 34, "pymem_allocator_pymalloc": 34, "pymem_allocator_pymalloc_debug": 34, "pymem_buffer_overflow": 483, "pymem_calloc": [42, 57, 478, 483], "pymem_cleanbyt": 42, "pymem_deadbyt": 42, "pymem_debug_serialno": [42, 483], "pymem_del": [42, 463], "pymem_domain_mem": [42, 455, 479, 483], "pymem_domain_obj": [42, 455, 479], "pymem_domain_raw": [42, 455], "pymem_forbiddenbyt": 42, "pymem_fre": [5, 18, 34, 42, 57, 59, 64, 465, 467, 483], "pymem_getalloc": [33, 42], "pymem_malloc": [42, 57, 64, 66, 465, 467, 477, 479, 483], "pymem_new": [42, 64, 463], "pymem_rawcalloc": [33, 42, 478, 483], "pymem_rawfre": [33, 42, 59, 72, 73], "pymem_rawmalloc": [33, 34, 42, 66, 477, 483], "pymem_rawrealloc": [33, 42, 66, 477], "pymem_realloc": [42, 57, 66, 465, 467, 477], "pymem_res": 42, "pymem_setalloc": [33, 34, 42, 474], "pymem_setupdebughook": [33, 42, 188, 479, 483], "pymemalloc": [42, 478], "pymemallocatordomain": 42, "pymemallocatorex": [42, 478], "pymember_get": 470, "pymember_geton": [57, 58, 93, 474], "pymember_set": 470, "pymember_seton": [57, 58, 474], "pymemberdef": [21, 57, 58, 61, 63, 75, 76, 93, 255, 385, 469, 474, 480, 483], "pymemberdescr_typ": 57, "pymemcompat": 465, "pymemoryview_check": 43, "pymemoryview_frombuff": [7, 43, 57, 473, 483], "pymemoryview_frommemori": [43, 57, 476], "pymemoryview_fromobject": [43, 57], "pymemoryview_get_bas": 43, "pymemoryview_get_buff": 43, "pymemoryview_getcontigu": [43, 57], "pymemoryview_typ": 57, "pymemoryviewobject": [476, 478], "pymethod_check": 44, "pymethod_clearfreelist": [482, 483], "pymethod_funct": 44, "pymethod_get_funct": 44, "pymethod_get_self": 44, "pymethod_new": 44, "pymethod_self": 44, "pymethod_typ": [44, 93], "pymethoddef": [21, 35, 45, 57, 58, 62, 63, 72, 73, 75, 76, 100, 465, 483], "pymethoddescr_typ": 57, "pymodinit_func": [35, 73, 76, 456, 465, 483], "pymodule_": 45, "pymodule_addfunct": [45, 57], "pymodule_addintconst": [45, 57, 462], "pymodule_addintmacro": [45, 468], "pymodule_addobject": [45, 57, 73, 76, 462, 472, 483], "pymodule_addobjectref": [45, 57, 76, 472, 483], "pymodule_addstringconst": [45, 57, 462], "pymodule_addstringmacro": [45, 468], "pymodule_addtyp": [45, 57, 482, 483], "pymodule_check": 45, "pymodule_checkexact": 45, "pymodule_cr": [3, 33, 35, 45, 72, 73, 76], "pymodule_create2": [45, 57], "pymodule_execdef": [45, 57, 478], "pymodule_fromdefandspec": [33, 45, 478], "pymodule_fromdefandspec2": [45, 57, 478], "pymodule_getdef": [45, 57], "pymodule_getdict": [45, 57], "pymodule_getfilenam": [45, 57, 474], "pymodule_getfilenameobject": [45, 57, 474], "pymodule_getnam": [45, 57], "pymodule_getnameobject": [45, 57], "pymodule_getst": [33, 45, 57, 61, 100, 482, 483], "pymodule_getwarningsmodul": 472, "pymodule_new": [45, 57], "pymodule_newobject": [45, 57], "pymodule_setdocstr": [45, 57], "pymodule_typ": [45, 57], "pymoduledef": [35, 45, 57, 61, 71, 72, 73, 76, 100, 482, 483], "pymoduledef_bas": [45, 57], "pymoduledef_head_init": [35, 45, 72, 73, 76], "pymoduledef_init": [45, 57], "pymoduledef_slot": 45, "pymoduledef_typ": 57, "pymp": 283, "pynch": [473, 483], "pynng": 68, "pynoargsfunct": [482, 483], "pynode_addchild": 481, "pynode_compil": [472, 482], "pynone_check": 46, "pynullimporter_typ": [482, 483], "pynumber_": 35, "pynumber_absolut": [47, 57], "pynumber_add": [35, 47, 57], "pynumber_and": [47, 55, 57], "pynumber_asssize_t": [47, 57], "pynumber_check": [47, 57, 481], "pynumber_coerc": 470, "pynumber_coerceex": 470, "pynumber_divmod": [47, 57], "pynumber_float": [47, 57, 481], "pynumber_floordivid": [47, 57], "pynumber_index": [47, 57, 79, 467, 472, 483], "pynumber_inplaceadd": [47, 57], "pynumber_inplaceand": [47, 55, 57], "pynumber_inplacefloordivid": [47, 57], "pynumber_inplacelshift": [47, 57], "pynumber_inplacematrixmultipli": [47, 57, 478], "pynumber_inplacemultipli": [47, 57], "pynumber_inplaceor": [47, 55, 57], "pynumber_inplacepow": [47, 57], "pynumber_inplaceremaind": [47, 57], "pynumber_inplacershift": [47, 57], "pynumber_inplacesubtract": [47, 55, 57], "pynumber_inplacetruedivid": [47, 57], "pynumber_inplacexor": [47, 55, 57], "pynumber_int": 471, "pynumber_invert": [47, 57], "pynumber_long": [47, 57, 471, 481], "pynumber_lshift": [47, 57], "pynumber_matrixmultipli": [47, 57, 478], "pynumber_multipli": [47, 57], "pynumber_neg": [47, 57], "pynumber_or": [47, 55, 57], "pynumber_posit": [47, 57], "pynumber_pow": [47, 57], "pynumber_remaind": [47, 57], "pynumber_rshift": [47, 57], "pynumber_subtract": [47, 55, 57], "pynumber_tobas": [47, 57, 483], "pynumber_truedivid": [47, 57], "pynumber_xor": [47, 55, 57], "pynumbermethod": [61, 63, 75, 464, 467], "pyo": [68, 163, 250, 382, 465, 468, 469, 477, 483], "pyobj_fromptr": 142, "pyobjc": 459, "pyobject": [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 96, 98, 100, 176, 319, 362, 464, 467, 468, 472, 473, 480, 481, 483], "pyobject_": [35, 45, 63, 467], "pyobject_as_gc": 464, "pyobject_ascharbuff": [48, 57, 483], "pyobject_ascii": [49, 57], "pyobject_asfiledescriptor": [24, 57], "pyobject_asreadbuff": [48, 57, 483], "pyobject_aswritebuff": [48, 57, 483], "pyobject_byt": [49, 57], "pyobject_cal": [10, 57, 63, 73, 482, 483], "pyobject_callfunct": [10, 57, 467, 481], "pyobject_callfunctionobjarg": [10, 57, 483], "pyobject_callmethod": [10, 39, 55, 57, 79, 472, 474], "pyobject_callmethodnoarg": [10, 483], "pyobject_callmethodobjarg": [10, 57, 483], "pyobject_callmethodonearg": [10, 483], "pyobject_callnoarg": [10, 57, 75, 482, 483], "pyobject_callobject": [10, 57, 72, 73, 79], "pyobject_calloc": [42, 57, 478, 483], "pyobject_callonearg": [10, 482, 483], "pyobject_checkbuff": [7, 57, 473, 482, 483], "pyobject_checkreadbuff": [48, 57, 483], "pyobject_clearweakref": [57, 63, 67, 75, 474], "pyobject_copydata": [7, 57, 473], "pyobject_del": [3, 42, 63, 465], "pyobject_delattr": 49, "pyobject_delattrstr": 49, "pyobject_delitem": [40, 49, 57, 63, 465], "pyobject_delitemstr": [57, 465], "pyobject_dir": [49, 57], "pyobject_fastcalldict": 483, "pyobject_format": [49, 57, 191], "pyobject_fre": [42, 57, 63, 465, 467, 479, 483], "pyobject_from_gc": 464, "pyobject_gc_del": [28, 57, 63, 100, 464, 481, 483], "pyobject_gc_fini": 464, "pyobject_gc_init": 464, "pyobject_gc_isfin": [28, 57, 482, 483], "pyobject_gc_istrack": [28, 57, 482, 483], "pyobject_gc_new": [28, 63, 100, 464, 481], "pyobject_gc_newvar": [28, 63, 100, 464, 481], "pyobject_gc_res": [28, 483], "pyobject_gc_track": [28, 57, 464, 483], "pyobject_gc_untrack": [28, 57, 63, 75, 76, 100, 464, 473, 483], "pyobject_genericgetattr": [49, 57, 63, 93], "pyobject_genericgetdict": [49, 57, 63, 483], "pyobject_genericsetattr": [49, 57, 63], "pyobject_genericsetdict": [49, 57], "pyobject_get_weakrefs_listptr": [482, 483], "pyobject_getait": [49, 57, 483], "pyobject_getarenaalloc": [33, 42], "pyobject_getattr": [49, 57, 61, 63], "pyobject_getattrstr": [49, 57, 72, 73, 79, 473], "pyobject_getbuff": [7, 48, 57, 63, 468, 473, 483], "pyobject_getit": [36, 49, 55, 57, 63], "pyobject_getitem": [22, 35, 40, 49, 57, 63], "pyobject_getitemdata": [49, 474], "pyobject_gettypedata": [49, 57, 61, 474, 483], "pyobject_hasattr": [49, 57], "pyobject_hasattrstr": [49, 57, 483], "pyobject_hash": [49, 55, 57, 63, 473, 474], "pyobject_hashnotimpl": [49, 57, 63, 468], "pyobject_head": [58, 63, 76, 470], "pyobject_head_init": [58, 63, 474], "pyobject_init": [3, 57, 481, 482, 483], "pyobject_init_var": [481, 482, 483], "pyobject_initvar": [3, 57, 483], "pyobject_is_gc": [28, 63, 75, 482, 483], "pyobject_isinst": [49, 57, 63, 478, 483], "pyobject_issubclass": [49, 57, 61, 478, 483], "pyobject_istru": [49, 55, 57, 483], "pyobject_length": [35, 49, 57], "pyobject_lengthhint": [49, 477], "pyobject_malloc": [42, 57, 96, 465, 467, 477, 479, 483], "pyobject_new": [3, 28, 42, 63, 68, 465, 481, 482, 483], "pyobject_new_var": [482, 483], "pyobject_newvar": [3, 28, 42, 63, 100, 465, 481, 482, 483], "pyobject_not": [49, 57, 483], "pyobject_print": [49, 55, 73, 483], "pyobject_realloc": [42, 57, 465, 467, 483], "pyobject_repr": [49, 55, 57, 63, 64, 477, 478, 483], "pyobject_richcompar": [49, 57, 63, 75], "pyobject_richcomparebool": [49, 55, 57, 75, 483], "pyobject_s": [49, 57, 63, 483], "pyobject_selfit": 57, "pyobject_setarenaalloc": [33, 42], "pyobject_setattr": [49, 57, 63, 483], "pyobject_setattrstr": [49, 57, 79, 483], "pyobject_setitem": [35, 40, 49, 57, 63, 467, 483], "pyobject_str": [49, 57, 63, 64, 477], "pyobject_typ": [49, 57], "pyobject_typecheck": [49, 75, 483], "pyobject_var_head": [58, 63, 75], "pyobject_vectorcal": [10, 57, 104, 474, 483], "pyobject_vectorcalldict": 10, "pyobject_vectorcallmethod": [10, 57, 474, 483], "pyobjectarenaalloc": 42, "pyodid": [257, 473, 483], "pyos_afterfork": [57, 59, 474, 480, 483], "pyos_afterfork_child": [33, 57, 59, 293, 474, 480, 481, 483], "pyos_afterfork_par": [57, 59, 293, 480, 483], "pyos_ascii_atof": [466, 469, 471], "pyos_ascii_formatd": 466, "pyos_ascii_strtod": [466, 469, 471], "pyos_beforefork": [57, 59, 293, 480, 483], "pyos_checkstack": [23, 57, 59, 483], "pyos_double_to_str": [18, 57], "pyos_fspath": [57, 59, 479, 483], "pyos_getsig": [57, 59, 462], "pyos_initinterrupt": [472, 483], "pyos_inputhook": [57, 66, 474, 483], "pyos_interruptoccur": [57, 483], "pyos_mystricmp": [57, 483], "pyos_mystrnicmp": [57, 483], "pyos_readlin": 483, "pyos_readlinefunctionpoint": [66, 79, 472, 474, 477, 483], "pyos_setsig": [57, 59, 462, 483], "pyos_sighandler_t": [57, 59], "pyos_snprintf": [18, 57, 464], "pyos_stdioreadlin": 483, "pyos_stricmp": [18, 468], "pyos_string_to_doubl": [18, 57, 469, 471], "pyos_strnicmp": [18, 468], "pyos_strtol": [18, 57], "pyos_strtoul": [18, 57], "pyos_vsnprintf": [18, 57, 464], "pyoxid": 85, "pypa": [307, 399], "pypackag": 467, "pypars": 483, "pyparser_": 483, "pyparser_addtoken": 481, "pyparser_astfromfil": [467, 472, 483], "pyparser_astfromfilenam": [472, 483], "pyparser_astfromfileobject": [472, 483], "pyparser_astfromstr": [467, 472, 483], "pyparser_astfromstringobject": [472, 483], "pyparser_simpleparsefileflag": [472, 482], "pyparser_simpleparsestringfilenam": 483, "pyparser_simpleparsestringflag": [472, 482], "pyparser_simpleparsestringflagsfilenam": [472, 482], "pypegen": 483, "pypegen_first_item": 431, "pypegen_last_item": 431, "pyperform": [473, 483], "pypi": [78, 89, 101, 151, 188, 303, 307, 341, 352, 389, 399, 409, 425, 434, 449, 454, 465, 467, 469, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483], "pypirc": 483, "pyport": [462, 483], "pypreconfig": [32, 33, 42, 59, 68, 474, 481], "pypreconfig_initisolatedconfig": [34, 481], "pypreconfig_initpythonconfig": [34, 481], "pyproj": 483, "pyproject": [76, 379, 483], "pyproperty_typ": [21, 57, 93], "pypy3": 186, "pypycload": [475, 477], "pyqt": [85, 459], "pyqt5": 102, "pyqt6": 102, "pyqtsign": 102, "pyqtslot": 102, "pyramid": 302, "pyrange_new": [464, 467], "pyrange_typ": [57, 467], "pyrangeiter_typ": 57, "pyre": 85, "pyreversed_typ": 57, "pyrex": 79, "pyrun_": 483, "pyrun_anyfil": 66, "pyrun_anyfileex": 66, "pyrun_anyfileexflag": 66, "pyrun_anyfileflag": 66, "pyrun_fil": 66, "pyrun_fileex": 66, "pyrun_fileexflag": 66, "pyrun_fileflag": 66, "pyrun_interactiveloop": [66, 79], "pyrun_interactiveloopflag": 66, "pyrun_interactiveon": [66, 483], "pyrun_interactiveoneflag": 66, "pyrun_simplefil": [66, 72], "pyrun_simplefileex": 66, "pyrun_simplefileexflag": [66, 483], "pyrun_simplestr": [33, 34, 66, 72, 79, 86, 468], "pyrun_simplestringflag": 66, "pyrun_str": [66, 79, 483], "pyrun_stringflag": 66, "pyruntimest": 483, "pyscannerobject": 483, "pyscript": 257, "pysendresult": [36, 63], "pyseqiter_check": 37, "pyseqiter_new": [37, 57], "pyseqiter_typ": [37, 57], "pysequence_": 35, "pysequence_check": [54, 57, 63], "pysequence_concat": [54, 57, 63], "pysequence_contain": [54, 57, 63], "pysequence_count": [54, 57], "pysequence_delitem": [54, 57, 483], "pysequence_delslic": [54, 57, 63], "pysequence_fast": [54, 57], "pysequence_fast_get_item": 54, "pysequence_fast_get_s": 54, "pysequence_fast_item": 54, "pysequence_getitem": [35, 54, 57, 60, 63, 79, 483], "pysequence_getslic": [54, 57, 63], "pysequence_in": 57, "pysequence_index": [54, 57], "pysequence_inplaceconcat": [54, 57, 63], "pysequence_inplacerepeat": [54, 57, 63], "pysequence_item": 54, "pysequence_length": [35, 54, 57, 79], "pysequence_list": [54, 57], "pysequence_repeat": [54, 57, 63], "pysequence_s": [54, 57, 63, 483], "pysequence_setitem": [35, 38, 54, 57, 63, 483], "pysequence_setslic": [54, 57, 63], "pysequence_tupl": [54, 57, 483], "pysequencemethod": [61, 63, 75], "pyseri": 84, "pyset_add": [55, 57, 467], "pyset_check": 55, "pyset_checkexact": [55, 472, 483], "pyset_clear": [55, 57], "pyset_clearfreelist": [482, 483], "pyset_contain": [55, 57, 467], "pyset_discard": [55, 57, 467], "pyset_get_s": 55, "pyset_new": [55, 57, 467], "pyset_pop": [55, 57], "pyset_s": [55, 57, 467], "pyset_typ": [55, 57], "pysetiter_typ": 57, "pysetobject": 55, "pyshar": 475, "pyshel": [160, 186, 247, 319, 479, 480, 481, 483], "pyshellext": 483, "pysid": 459, "pyside2": 102, "pyside6": 102, "pysignal_setwakeupfd": [23, 468], "pyslice_adjustindic": [56, 57, 474, 480, 483], "pyslice_check": 56, "pyslice_getindic": [56, 57], "pyslice_getindicesex": [56, 57, 474, 480, 483], "pyslice_new": [56, 57], "pyslice_typ": [56, 57], "pyslice_unpack": [56, 57, 474, 480, 483], "pysliceobject": 56, "pysortwrapper_typ": [482, 483], "pyspam_api": 73, "pyspam_api_point": 73, "pyspam_system": 73, "pyspam_system_num": 73, "pyspam_system_proto": 73, "pyspam_system_return": 73, "pysqlit": [340, 467, 469, 475], "pysqlite_row_key": 35, "pysqlite_row_method": 35, "pyst_getscop": [472, 483], "pystack": 483, "pystackv": 483, "pystat": [456, 483], "pystate_addmodul": [45, 57, 483], "pystate_findmodul": [45, 57], "pystate_removemodul": [45, 57], "pystaticmethod_typ": 93, "pystatus": [32, 33, 68, 474, 481], "pystatus_error": [34, 481], "pystatus_except": [34, 474, 481], "pystatus_exit": [34, 481], "pystatus_iserror": [34, 481], "pystatus_isexit": [34, 481], "pystatus_nomemori": [34, 481], "pystatus_ok": [34, 481], "pyston": [465, 466, 467, 470, 483], "pystrhex": [473, 483], "pystring_fromformat": 469, "pystring_fromformatv": 469, "pystring_new": 465, "pystringobject": 468, "pystructsequ": 483, "pystructsequence_desc": [57, 60, 480, 483], "pystructsequence_field": [57, 60, 480, 483], "pystructsequence_get_item": 60, "pystructsequence_getitem": [57, 60], "pystructsequence_inittyp": [60, 477], "pystructsequence_inittype2": [60, 477], "pystructsequence_new": [57, 60], "pystructsequence_newtyp": [57, 60, 483], "pystructsequence_set_item": 60, "pystructsequence_setitem": [57, 60], "pystructsequence_unnamedfield": [57, 60, 482, 483], "pysuper_typ": 57, "pysymtable_build": [472, 483], "pysymtable_buildobject": [472, 483], "pysymtable_fre": [472, 483], "pysys_addaudithook": [59, 142, 352], "pysys_addwarnopt": [33, 57, 59, 473, 480, 483], "pysys_addwarnoptionunicod": [57, 59, 473, 480, 483], "pysys_addxopt": [33, 57, 59, 473, 483], "pysys_audit": [59, 98, 142, 352, 483], "pysys_formatstderr": [57, 59], "pysys_formatstdout": [57, 59], "pysys_getobject": [34, 57, 59, 100, 473], "pysys_getxopt": [57, 59], "pysys_haswarnopt": [57, 473, 483], "pysys_resetwarnopt": [33, 57, 59, 474, 483], "pysys_setargv": [33, 57, 468, 469, 473, 483], "pysys_setargvex": [33, 57, 468, 469, 473, 475, 483], "pysys_setobject": [57, 59], "pysys_setpath": [57, 59, 473, 483], "pysys_writestderr": [57, 59], "pysys_writestdout": [57, 59], "pytest": [251, 388], "pyth": [341, 480], "pythagorean": 275, "pythn": [341, 480], "python": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 75, 76, 77, 87, 89, 90, 94, 98, 99, 101, 102, 106, 107, 108, 110, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 182, 183, 184, 185, 186, 187, 189, 190, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 265, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 298, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 313, 314, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 331, 332, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 356, 357, 359, 360, 361, 363, 364, 365, 366, 368, 370, 371, 372, 373, 374, 375, 376, 379, 381, 382, 383, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 439, 441, 442, 443, 444, 446, 447, 453, 454, 455, 457], "python18035": 98, "python2": [79, 96, 111, 112, 344, 355, 421, 461, 463, 468, 477, 483], "python26": 468, "python273": 483, "python3": [34, 57, 72, 89, 96, 98, 102, 111, 112, 200, 208, 296, 334, 344, 354, 355, 382, 399, 421, 438, 448, 453, 455, 456, 460, 461, 469, 472, 474, 475, 477, 479, 481, 482, 483], "python311": 354, "python312": [451, 452], "python32": 475, "python33": 332, "python35": [399, 453], "python36": 479, "python37": 461, "python38": 481, "python39": 57, "python3_d": 483, "python3x": 483, "python_api_vers": [45, 465], "python_branch": [303, 483], "python_build": [303, 483], "python_compil": 303, "python_coroutin": 483, "python_dir": 167, "python_dom": 410, "python_for_gen": 483, "python_for_regen": [474, 483], "python_histori": [320, 334, 447], "python_implement": 303, "python_is_optim": 362, "python_logo": 419, "python_revis": [303, 483], "python_tzpath_context": 483, "python_vers": 303, "python_version_tupl": 303, "pythonapi": [176, 467], "pythonasynciodebug": [125, 126, 188, 455, 483], "pythonbook": 80, "pythonbreakpoint": [225, 352, 455, 480], "pythonc": 462, "pythoncap": 473, "pythoncap_compat": 473, "pythoncaseok": [225, 455, 463, 482, 483], "pythoncoerceclocal": [34, 293, 455, 456, 480, 483], "pythoncor": [461, 473, 483], "pythondebug": [33, 34, 455, 456], "pythondecoratorlibrari": 466, "pythondevmod": [34, 188, 455, 480], "pythondoc": [313, 483], "pythondontwritebytecod": [33, 34, 85, 352, 455, 468], "pythondotorg": 483, "pythondumpref": [34, 63, 455, 456, 481, 483], "pythondumprefsfil": [455, 483], "pythonexecut": [34, 455], "pythonfaulthandl": [34, 188, 214, 455, 476], "pythonfil": 72, "pythonhashse": [33, 34, 428, 455, 476, 483], "pythonhom": [33, 34, 35, 354, 362, 455, 461, 474, 479], "pythonhost": 341, "pythonhttpsverifi": 469, "pythoninfo": 483, "pythoninspect": [33, 34, 455, 465], "pythonintmaxstrdigit": [34, 344, 352, 455, 483], "pythonioencod": [33, 34, 293, 352, 455, 468, 477, 483], "pythonista": 103, "pythonlab": [426, 462, 464], "pythonlegacywindowsfsencod": [33, 34, 352, 455, 479], "pythonlegacywindowsstdio": [33, 34, 352, 455, 479], "pythonmac": 459, "pythonmalloc": [42, 68, 188, 455, 456, 483], "pythonmallocstat": [34, 42, 455, 483], "pythonnn": 86, "pythonnodebugrang": [34, 428, 455, 473], "pythonnousersit": [33, 34, 334, 455, 468], "pythonoldpars": [482, 483], "pythonoptim": [33, 34, 455], "pythonpath": [33, 34, 35, 71, 86, 151, 352, 354, 362, 432, 450, 455, 459, 461, 477, 483], "pythonpath_env": 34, "pythonperfsupport": [34, 104, 455, 474], "pythonplatlibdir": [34, 354, 455, 483], "pythonprofileimporttim": [34, 455, 480, 483], "pythonpycacheprefix": [34, 352, 455, 481, 483], "pythonrc": 438, "pythonregrtest_unicode_guard": 483, "pythonrun": [79, 467, 483], "pythonsafepath": [34, 327, 352, 455, 473, 483], "pythonshowalloccount": 469, "pythonshowrefcount": 469, "pythonsoftwarefound": 461, "pythonstartup": [247, 320, 334, 352, 438, 455, 477, 483], "pythontest": 483, "pythonthreaddebug": [472, 473, 483], "pythontracemalloc": [34, 382, 455, 483], "pythontzpath": 425, "pythonunbuff": [33, 34, 352, 455, 483], "pythonuserbas": [334, 455, 468], "pythonusersit": 362, "pythonutf8": [34, 293, 352, 455, 461, 480, 483], "pythonverbos": [33, 34, 455], "pythonvers": 35, "pythonw": [247, 283, 334, 352, 459, 461, 464, 479, 480, 483], "pythonwarn": [34, 188, 400, 455, 469, 475, 480, 483], "pythonwarndefaultencod": [258, 455, 472, 483], "pythonwin": [85, 176, 461, 462], "pythonx": [35, 72, 334, 344, 352, 399, 483], "pythonx86": 461, "pythonxi": [77, 461, 481], "pythread": 33, "pythread_acquire_lock": [57, 483], "pythread_acquire_lock_tim": [57, 483], "pythread_allocate_lock": 57, "pythread_create_key": [33, 57, 474, 483], "pythread_delete_key": [33, 57, 474], "pythread_delete_key_valu": [33, 57, 474], "pythread_exit_thread": [57, 483], "pythread_free_lock": 57, "pythread_get_key_valu": [33, 57, 474], "pythread_get_stacks": 57, "pythread_get_thread_id": [57, 480, 483], "pythread_get_thread_native_id": [57, 483], "pythread_getinfo": 57, "pythread_init_thread": 57, "pythread_reinittl": [33, 57, 474], "pythread_release_lock": [57, 483], "pythread_set_key_valu": [33, 57, 474, 477], "pythread_set_stacks": 57, "pythread_start_new_thread": [57, 480, 483], "pythread_tss_alloc": [33, 57, 474], "pythread_tss_cr": [33, 57], "pythread_tss_delet": [33, 57, 474], "pythread_tss_fre": [33, 57, 474], "pythread_tss_get": [33, 57, 474], "pythread_tss_is_cr": [33, 57], "pythread_tss_set": [33, 57, 474], "pythreadframegett": [482, 483], "pythreadst": [33, 57, 472, 473, 474, 477, 482, 483], "pythreadstate_clear": [33, 57, 483], "pythreadstate_delet": [33, 57, 483], "pythreadstate_deletecurr": [33, 482, 483], "pythreadstate_entertrac": [33, 473, 483], "pythreadstate_get": [33, 57, 483], "pythreadstate_getdict": [33, 57, 483], "pythreadstate_getfram": [26, 33, 53, 57, 473, 482, 483], "pythreadstate_getid": [33, 57, 482, 483], "pythreadstate_getinterpret": [33, 57, 482, 483], "pythreadstate_leavetrac": [33, 473, 483], "pythreadstate_new": [33, 57, 483], "pythreadstate_next": [33, 464], "pythreadstate_setasyncexc": [33, 57, 480, 483], "pythreadstate_swap": [33, 57], "pytim": [472, 483], "pytime_check": 20, "pytime_checkexact": 20, "pytime_fromtim": 20, "pytime_fromtimeandfold": 20, "pytimezone_fromoffset": [20, 480], "pytimezone_fromoffsetandnam": [20, 480], "pytrace_c_cal": 33, "pytrace_c_except": 33, "pytrace_c_return": 33, "pytrace_cal": 33, "pytrace_except": 33, "pytrace_lin": 33, "pytrace_opcod": 33, "pytrace_return": 33, "pytraceback_her": [57, 483], "pytraceback_print": [57, 479, 483], "pytraceback_typ": 57, "pytracebackobject": 466, "pytracemalloc_track": [42, 480], "pytracemalloc_untrack": [42, 480], "pytrash_unwind_level": [482, 483], "pytuple_check": [60, 79], "pytuple_checkexact": 60, "pytuple_clearfreelist": [482, 483], "pytuple_get_item": 60, "pytuple_get_s": 60, "pytuple_getitem": [57, 60, 73, 79], "pytuple_getslic": [57, 60], "pytuple_new": [35, 57, 60, 72], "pytuple_pack": [57, 60, 79, 466], "pytuple_s": [57, 60, 79], "pytuple_set_item": [60, 472, 483], "pytuple_setitem": [35, 55, 57, 60, 72, 73], "pytuple_typ": [57, 60], "pytupleiter_typ": 57, "pytupleobject": [13, 54, 59, 60, 62], "pytyp": [85, 479], "pytype_": 63, "pytype_addwatch": [61, 474], "pytype_check": [61, 73, 483], "pytype_checkexact": [61, 483], "pytype_clearcach": [57, 61], "pytype_clearwatch": 61, "pytype_from": [61, 474, 483], "pytype_frommetaclass": [57, 61, 63, 474, 483], "pytype_frommoduleandspec": [57, 61, 63, 100, 472, 474, 482, 483], "pytype_fromspec": [28, 45, 57, 58, 61, 63, 76, 100, 474, 481, 482, 483], "pytype_fromspecwithbas": [28, 57, 61, 63, 472, 474, 483], "pytype_genericalloc": [57, 61, 63, 481], "pytype_genericnew": [57, 61, 63, 76], "pytype_getdict": [61, 63, 483], "pytype_getflag": [57, 61, 483], "pytype_getmodul": [57, 61, 100, 482, 483], "pytype_getmodulebydef": [61, 100, 473, 483], "pytype_getmodulest": [57, 61, 100, 482, 483], "pytype_getnam": [57, 61, 473, 483], "pytype_getqualnam": [57, 61, 473, 483], "pytype_getslot": [57, 61, 472, 477, 483], "pytype_gettypedatas": [49, 57, 474], "pytype_hasfeatur": [61, 63, 483], "pytype_is_gc": 61, "pytype_issubtyp": [57, 61], "pytype_modifi": [57, 61, 63, 483], "pytype_readi": [28, 45, 57, 61, 63, 75, 76, 100, 473, 483], "pytype_slot": [57, 58, 61], "pytype_spec": [49, 57, 61, 63, 100, 474, 483], "pytype_typ": [57, 61, 63, 474, 483], "pytype_watch": [61, 474, 483], "pytype_watchcallback": 61, "pytypeobject": [3, 6, 8, 9, 12, 13, 15, 17, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 35, 37, 38, 39, 44, 45, 46, 49, 50, 55, 56, 57, 58, 60, 61, 62, 64, 68, 75, 76, 100, 463, 473, 474, 478, 481, 482, 483], "pytypereadi": 93, "pytz": 183, "pytzinfo_check": 20, "pytzinfo_checkexact": 20, "pyunicod": [64, 483], "pyunicode_1byte_data": [64, 476], "pyunicode_1byte_kind": [64, 476], "pyunicode_2byte_data": [64, 476], "pyunicode_2byte_kind": [64, 476], "pyunicode_4byte_data": [64, 476], "pyunicode_4byte_kind": [64, 476], "pyunicode_append": 57, "pyunicode_appendanddel": 57, "pyunicode_as_data": [473, 474, 476, 483], "pyunicode_as_unicod": [473, 474, 476, 483], "pyunicode_asasciistr": [57, 64, 476], "pyunicode_ascharmapstr": [57, 64], "pyunicode_asdecodedobject": [57, 474, 479, 483], "pyunicode_asdecodedunicod": [57, 474, 479, 483], "pyunicode_asencodedobject": [57, 474, 476, 479, 483], "pyunicode_asencodedstr": [57, 64, 483], "pyunicode_asencodedunicod": [57, 474, 479, 483], "pyunicode_aslatin1str": [57, 64, 476], "pyunicode_asmbcsstr": [57, 64, 476], "pyunicode_asrawunicodeescapestr": [57, 64, 476], "pyunicode_asucs4": [57, 64, 476], "pyunicode_asucs4copi": [57, 64, 472, 476], "pyunicode_asunicod": [473, 474, 476, 482, 483], "pyunicode_asunicodeands": [473, 474, 476, 482, 483], "pyunicode_asunicodecopi": [472, 476, 483], "pyunicode_asunicodeescapestr": [57, 64, 476], "pyunicode_asutf16str": [57, 64], "pyunicode_asutf32str": [57, 64], "pyunicode_asutf8": [64, 476, 480, 483], "pyunicode_asutf8ands": [57, 64, 472, 480, 483], "pyunicode_asutf8str": [57, 64, 476], "pyunicode_aswidechar": [57, 64, 483], "pyunicode_aswidecharstr": [57, 64, 472, 476, 480, 483], "pyunicode_buildencodingmap": [57, 483], "pyunicode_check": [64, 76], "pyunicode_check_intern": [473, 483], "pyunicode_checkexact": 64, "pyunicode_clearfreelist": [482, 483], "pyunicode_compar": [57, 64, 472, 476], "pyunicode_comparewithasciistr": [57, 64, 475, 483], "pyunicode_concat": [57, 64, 476], "pyunicode_contain": [57, 64], "pyunicode_copycharact": [64, 472, 473, 476, 483], "pyunicode_count": [57, 64], "pyunicode_data": [64, 476, 483], "pyunicode_decod": [57, 64, 483], "pyunicode_decodeascii": [57, 64], "pyunicode_decodecharmap": [57, 64], "pyunicode_decodecodepagest": 57, "pyunicode_decodefsdefault": [57, 64, 72, 483], "pyunicode_decodefsdefaultands": [57, 59, 64], "pyunicode_decodelatin1": [57, 64], "pyunicode_decodelocal": [57, 64], "pyunicode_decodelocaleands": [57, 59, 64, 480], "pyunicode_decodembc": [57, 64], "pyunicode_decodembcsst": [57, 64], "pyunicode_decoderawunicodeescap": [57, 64], "pyunicode_decodeunicodeescap": [57, 64], "pyunicode_decodeutf16": [57, 64], "pyunicode_decodeutf16st": [57, 64], "pyunicode_decodeutf32": [57, 64], "pyunicode_decodeutf32st": [57, 64], "pyunicode_decodeutf7": [57, 64], "pyunicode_decodeutf7st": [57, 64], "pyunicode_decodeutf8": [57, 64], "pyunicode_decodeutf8st": [57, 64, 483], "pyunicode_encod": [473, 476, 483], "pyunicode_encodeascii": [473, 476], "pyunicode_encodecharmap": [473, 476, 483], "pyunicode_encodecodepag": [57, 64, 476, 483], "pyunicode_encodedecim": [473, 476, 483], "pyunicode_encodefsdefault": [57, 59, 64, 483], "pyunicode_encodelatin1": [473, 476, 483], "pyunicode_encodelocal": [57, 59, 64, 480, 483], "pyunicode_encodembc": [476, 483], "pyunicode_encoderawunicodeescap": [473, 476, 483], "pyunicode_encodeunicodeescap": [473, 476, 483], "pyunicode_encodeutf16": [473, 476, 483], "pyunicode_encodeutf32": [473, 476, 483], "pyunicode_encodeutf7": [473, 476, 483], "pyunicode_encodeutf8": [473, 476, 483], "pyunicode_fil": [64, 473, 476, 483], "pyunicode_find": [57, 64], "pyunicode_findchar": [57, 64, 472, 476, 480, 483], "pyunicode_format": [57, 64], "pyunicode_fromencodedobject": [57, 64], "pyunicode_fromformat": [23, 57, 64, 75, 76, 472, 474, 476, 477, 478, 483], "pyunicode_fromformatv": [57, 59, 64, 474, 483], "pyunicode_fromkindanddata": [64, 476], "pyunicode_fromobject": [57, 64], "pyunicode_fromordin": 57, "pyunicode_fromstr": [22, 35, 57, 64, 72, 76], "pyunicode_fromstringands": [57, 64, 472, 483], "pyunicode_fromunicod": [472, 473, 474, 476, 482, 483], "pyunicode_fromwidechar": [57, 64, 476], "pyunicode_fsconvert": [5, 57, 64, 479, 483], "pyunicode_fsdecod": [57, 64, 474, 479, 483], "pyunicode_get_data_s": [473, 474, 476, 483], "pyunicode_get_length": [64, 472, 476], "pyunicode_get_s": [473, 474, 476, 483], "pyunicode_getdefaultencod": 57, "pyunicode_getlength": [57, 64, 472, 476], "pyunicode_getmax": [472, 476, 483], "pyunicode_gets": [473, 474, 476], "pyunicode_internfromstr": [57, 64], "pyunicode_internimmort": [472, 473, 474, 483], "pyunicode_interninplac": [57, 64, 472, 483], "pyunicode_is_compact": 473, "pyunicode_is_readi": 473, "pyunicode_isidentifi": [57, 64, 483], "pyunicode_join": [57, 64, 476], "pyunicode_kind": [64, 476], "pyunicode_max_char_valu": [64, 476], "pyunicode_new": [64, 472, 476], "pyunicode_partit": 57, "pyunicode_read": [64, 476], "pyunicode_read_char": [64, 476], "pyunicode_readchar": [57, 64, 476], "pyunicode_readi": [64, 473, 474, 476], "pyunicode_replac": [57, 64], "pyunicode_res": 57, "pyunicode_richcompar": [57, 64], "pyunicode_rpartit": 57, "pyunicode_rsplit": 57, "pyunicode_split": [57, 64], "pyunicode_splitlin": [57, 64], "pyunicode_substr": [57, 64, 472, 476], "pyunicode_tailmatch": [57, 64, 472, 476, 482], "pyunicode_transformdecimaltoascii": [473, 476, 483], "pyunicode_transl": [57, 64], "pyunicode_translatecharmap": [473, 476, 483], "pyunicode_typ": [57, 63, 64], "pyunicode_wchar_kind": [64, 473, 474, 476], "pyunicode_writ": [64, 476], "pyunicode_writechar": [57, 64, 476], "pyunicode_wstr_length": [473, 482, 483], "pyunicodedecodeerror_cr": [23, 57], "pyunicodedecodeerror_getencod": [23, 57], "pyunicodedecodeerror_getend": [23, 57], "pyunicodedecodeerror_getobject": [23, 57], "pyunicodedecodeerror_getreason": [23, 57], "pyunicodedecodeerror_getstart": [23, 57], "pyunicodedecodeerror_setend": [23, 57], "pyunicodedecodeerror_setreason": [23, 57], "pyunicodedecodeerror_setstart": [23, 57], "pyunicodeencodeerror_cr": 483, "pyunicodeencodeerror_getencod": [23, 57], "pyunicodeencodeerror_getend": [23, 57], "pyunicodeencodeerror_getobject": [23, 57], "pyunicodeencodeerror_getreason": [23, 57], "pyunicodeencodeerror_getstart": [23, 57], "pyunicodeencodeerror_setend": [23, 57], "pyunicodeencodeerror_setreason": [23, 57], "pyunicodeencodeerror_setstart": [23, 57], "pyunicodeiter_typ": 57, "pyunicodeobject": [24, 63, 64, 96, 472, 473], "pyunicodetranslateerror_cr": 483, "pyunicodetranslateerror_getend": [23, 57], "pyunicodetranslateerror_getobject": [23, 57], "pyunicodetranslateerror_getreason": [23, 57], "pyunicodetranslateerror_getstart": [23, 57], "pyunicodetranslateerror_setend": [23, 57], "pyunicodetranslateerror_setreason": [23, 57], "pyunicodetranslateerror_setstart": [23, 57], "pyunicodeucs2_decodeutf8": 96, "pyunicodeucs2_decodeutf8st": 96, "pyunicodeucs2_fromstr": 96, "pyunicodeucs2_fromstringands": 96, "pyunit": [362, 463], "pyunstabl": 57, "pyunstable_": 474, "pyunstable_code_getextra": [13, 474], "pyunstable_code_new": [13, 474], "pyunstable_code_newwithposonlyarg": [13, 474], "pyunstable_code_setextra": [13, 474], "pyunstable_eval_requestcodeextraindex": [13, 474], "pyunstable_exc_prepreraisestar": [23, 483], "pyunstable_gc_visitobject": 28, "pyunstable_interpreterframe_getcod": [26, 483], "pyunstable_interpreterframe_getlasti": [26, 483], "pyunstable_interpreterframe_getlin": [26, 483], "pyunstable_long_compactvalu": [39, 474, 483], "pyunstable_long_iscompact": [39, 474, 483], "pyunstable_object_gc_newwithextradata": [28, 483], "pyunstable_perfmapstate_fini": [51, 483], "pyunstable_perfmapstate_init": [51, 483], "pyunstable_type_assignversiontag": [61, 483], "pyunstable_visitobject": 483, "pyunstable_writeperfmapentri": [51, 483], "pyvarobject": [3, 28, 50, 57, 58, 68, 362, 473], "pyvarobject_head_init": [58, 63, 75, 76, 483], "pyvectorcall_cal": [10, 57, 63, 474, 483], "pyvectorcall_funct": [10, 483], "pyvectorcall_narg": [10, 57, 474, 483], "pyvenv": [34, 334, 354, 399, 461, 476, 477, 479, 481, 483], "pyvideo": 454, "pyw": [247, 438, 461, 464, 483], "pyweakref_": 63, "pyweakref_check": 67, "pyweakref_checkproxi": 67, "pyweakref_checkref": 67, "pyweakref_get_object": [67, 473, 483], "pyweakref_getobject": [57, 67], "pyweakref_newproxi": [57, 67], "pyweakref_newref": [5, 57, 67, 483], "pyweakrefer": [57, 473, 483], "pywidestringlist": [32, 68, 481], "pywidestringlist_append": [34, 481], "pywidestringlist_insert": [34, 481], "pywin32": [68, 85, 458, 483], "pywrapper_new": [21, 57], "pywrapperdescr_typ": 57, "pyxml": [68, 463], "pyyaml": [251, 469, 471], "pyz": [421, 478, 483], "pyzip_typ": 57, "pyzipfil": [68, 119, 477], "pyzmq": 102, "pyzw": [421, 483], "q0": 261, "q1": 261, "qa1067": 459, "qabxcd": 190, "qapplic": 102, "qe": 464, "qemu": [348, 481, 483], "qfont": 102, "qfoutfil": 292, "qh": 102, "qh6xq": 347, "qhand": 268, "qiflush": 177, "qmail": 271, "qmark": 340, "qname": [68, 273, 410, 415, 416], "qname_aware_attr": 413, "qname_aware_tag": 413, "qnan": 186, "qobject": 102, "qop": 483, "qp": 195, "qplaintextedit": 102, "qpop": 305, "qpushbutton": 102, "qq": 163, "qqh": 347, "qqh6x": 347, "qr": 190, "qs": [84, 394], "qscan": 223, "qseen": 190, "qsize": [134, 283, 316], "qsort": 176, "qt": [68, 459], "qt6": 102, "qtc": 223, "qtcore": 102, "qtgui": 102, "qthandler": 102, "qthread": 102, "qthreadnam": 102, "qti": 467, "qtwidget": 102, "quack": [102, 468], "quad": [337, 464, 483], "quadrant": 275, "quadrat": [85, 161, 190, 211, 314, 344, 409, 469, 472, 483], "quadro": 117, "quadrupl": 483, "qualcomm": [337, 483], "qualif": [455, 477], "qualifi": [61, 68, 87, 93, 191, 193, 197, 250, 255, 268, 269, 299, 335, 337, 344, 348, 386, 388, 398, 400, 413, 416, 423, 428, 432, 436, 455, 461, 467, 473, 478, 481, 483, 484], "qualifiednam": 410, "qualit": 369, "qualiti": [117, 193, 293, 295, 305, 428, 475, 483], "qualnam": [13, 19, 27, 29, 94, 101, 197, 211, 268, 483], "quantifi": [106, 261, 314, 319, 473, 483], "quantil": [318, 343, 481, 483], "quantiti": [93, 186, 275, 293, 319, 341, 465, 469, 475], "quantity_on_hand": 181, "quantiz": [186, 476, 483], "quantum": 293, "quartil": [318, 343, 481], "quartz": 102, "quay": 483, "que": 102, "queen": [95, 318, 319, 464, 465], "quentel": [480, 483], "quentin": [480, 483], "queri": [32, 50, 68, 84, 95, 102, 106, 109, 118, 133, 136, 151, 158, 169, 205, 219, 230, 245, 250, 251, 255, 281, 298, 305, 328, 358, 362, 369, 375, 376, 386, 394, 395, 405, 410, 419, 432, 455, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "query_count": 473, "query_field": 471, "query_opt": 376, "query_str": [407, 473], "query_us": 473, "queryinfokey": [142, 405], "querykey": 405, "queryreflectionkey": [142, 405, 468, 469], "queryvalu": [142, 405, 483], "queryvalueex": [405, 483], "quest": [345, 442], "questhead": 369, "question": [58, 73, 79, 85, 94, 95, 101, 102, 106, 109, 141, 158, 193, 194, 235, 266, 292, 340, 369, 373, 406, 442, 462, 464, 465, 467, 480, 482, 483], "queu": [33, 155, 177, 269, 295, 337, 361, 468], "queue": [68, 84, 101, 102, 107, 108, 123, 136, 160, 164, 177, 182, 212, 232, 254, 268, 269, 293, 318, 322, 325, 328, 337, 338, 344, 359, 361, 365, 369, 413, 445, 452, 462, 465, 466, 467, 468, 470, 475, 478, 481, 482, 483], "queue_factori": 268, "queue_handl": 102, "queue_manag": 483, "queueempti": 134, "queueful": 134, "queuehandl": [68, 101, 118, 483], "queuelisten": [68, 118, 478, 483], "queuemanag": 283, "qui": [103, 149], "quick": [33, 50, 68, 75, 84, 85, 95, 102, 106, 110, 118, 190, 216, 217, 218, 222, 267, 269, 290, 319, 333, 352, 369, 375, 388, 463, 464, 465, 466, 467, 468, 470, 471, 474, 475, 477, 483], "quick_ratio": 190, "quicken": [191, 483], "quickest": 251, "quickstart": 476, "quicktim": 464, "quiet": [33, 34, 89, 96, 163, 186, 190, 275, 292, 311, 352, 362, 397, 461, 466, 469, 472, 474, 475, 478, 483], "quinlan": [465, 466, 469, 475], "quirk": [92, 344, 434, 472, 477, 483], "quit": [7, 72, 73, 76, 84, 92, 95, 96, 101, 102, 103, 106, 120, 144, 168, 169, 176, 177, 189, 200, 223, 247, 258, 269, 283, 288, 292, 297, 305, 309, 335, 340, 341, 369, 430, 432, 434, 441, 448, 450, 451, 462, 463, 464, 465, 467, 476, 477, 483], "quixot": 465, "quo": 231, "quopri": [68, 146, 156, 158, 254, 285], "quopri_codec": 158, "quot": [5, 68, 79, 84, 85, 87, 96, 106, 109, 126, 137, 146, 158, 175, 176, 195, 196, 197, 198, 202, 203, 205, 208, 209, 235, 238, 247, 248, 256, 262, 297, 317, 319, 331, 340, 344, 345, 348, 360, 364, 384, 386, 395, 413, 417, 426, 427, 431, 434, 435, 446, 449, 451, 461, 462, 465, 467, 474, 475, 476, 480, 483], "quota": [102, 212, 248], "quotat": [158, 348, 468, 483], "quote_": 175, "quote_al": 175, "quote_from_byt": [394, 483], "quote_minim": 175, "quote_non": 175, "quote_nonnumer": 175, "quote_notnul": [175, 474, 483], "quote_plus": [394, 475], "quote_str": [175, 474, 483], "quote_via": [394, 478, 483], "quoteattr": 417, "quotechar": [175, 483], "quoted_print": 158, "quotedprint": 158, "quotetab": [146, 158, 317], "quotient": [183, 186, 275, 308, 430, 449], "quux": 358, "qvboxlayout": 102, "qwarn": 469, "qwertyuiop": 100, "qwidget": 102, "qx": 275, "r1": [190, 242, 384, 394], "r12": 98, "r13": 483, "r14": 483, "r2": [190, 242, 384, 394], "r5rs": 468, "r6": 483, "r_luxury_yacht": 400, "r_ok": 293, "rab": 102, "rabbit": 449, "rabic": 387, "race": [33, 87, 140, 186, 226, 250, 293, 327, 337, 360, 402, 474, 475, 476, 482, 483], "rad": [109, 465], "radian": [186, 275, 384, 465, 481, 483], "radic": 466, "radio": [281, 375, 483], "radiobutton": [281, 375, 376, 483], "radiobuttongroup": 281, "radiogroup": 281, "radislav": 483, "radius": [94, 155, 275, 340, 384], "radix": [39, 186, 225, 266, 352, 435, 483], "radixchar": 266, "radu": 483, "rafik": [478, 483], "ragusa": 474, "rahtz": 473, "rainfal": 85, "rais": [5, 7, 9, 13, 22, 24, 25, 26, 28, 32, 33, 34, 37, 39, 45, 47, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 73, 75, 76, 78, 92, 93, 94, 95, 99, 102, 103, 107, 109, 110, 112, 114, 115, 120, 122, 125, 132, 133, 135, 137, 138, 139, 141, 144, 146, 147, 149, 151, 153, 157, 158, 159, 160, 163, 167, 169, 170, 173, 175, 176, 177, 181, 183, 184, 186, 191, 193, 194, 196, 197, 199, 200, 202, 203, 205, 206, 208, 209, 213, 215, 218, 221, 225, 226, 228, 230, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 278, 281, 282, 283, 287, 288, 291, 293, 295, 296, 297, 299, 302, 304, 305, 307, 311, 314, 319, 322, 323, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 365, 366, 369, 378, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 413, 414, 415, 416, 419, 422, 423, 425, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 442, 443, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "raise_error_known_loc": 431, "raise_indentation_error": 431, "raise_on_defect": [208, 476], "raise_on_error": 193, "raise_sign": [115, 333, 483], "raise_stmt": [431, 436], "raise_syntax_error": 431, "raise_syntax_error_invalid_target": 431, "raise_syntax_error_known_loc": 431, "raise_syntax_error_known_rang": 431, "raise_syntax_error_on_next_token": 431, "raise_syntax_error_starting_from": 431, "raise_vararg": 191, "raiseexcept": [101, 102, 267, 269, 475], "raj": [478, 483], "ralf": [467, 468], "ralph": 468, "ram": [109, 186, 467, 483], "ramachandran": 473, "ramalho": 483, "ramaswami": 483, "rambl": 95, "ramchandra": [479, 483], "ramnani": 477, "ramvikram": 474, "ran": [160, 193, 348, 388, 468, 469, 474, 483], "rand": [176, 341, 343], "rand_add": [341, 483], "rand_byt": [341, 474, 476, 483], "rand_egd": [341, 472, 483], "rand_list": 95, "rand_pseudo_byt": [472, 474, 476, 483], "rand_status": [341, 483], "randal": [85, 108], "randbelow": [326, 483], "randbit": 326, "randbyt": [318, 482, 483], "randel": 483, "randint": [318, 475, 483], "random": [33, 34, 35, 68, 73, 84, 85, 87, 92, 95, 102, 109, 118, 134, 149, 158, 173, 174, 176, 193, 218, 226, 247, 254, 257, 261, 283, 290, 292, 308, 319, 326, 327, 328, 341, 343, 358, 362, 384, 388, 398, 410, 424, 426, 428, 451, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 476, 477, 478, 481, 483], "random_combin": 318, "random_combination_with_replac": 318, "random_permut": 318, "random_product": 318, "randrang": [84, 318, 451, 466, 472, 474, 475, 483], "randse": 469, "rang": [5, 7, 18, 23, 25, 39, 59, 64, 68, 72, 73, 76, 84, 85, 87, 92, 93, 94, 95, 96, 99, 102, 104, 106, 109, 110, 112, 120, 126, 134, 138, 139, 141, 144, 149, 158, 166, 167, 169, 176, 177, 178, 183, 186, 190, 191, 193, 212, 213, 225, 226, 235, 236, 241, 244, 248, 254, 255, 259, 261, 262, 278, 283, 284, 288, 293, 295, 297, 299, 304, 305, 308, 315, 316, 318, 319, 322, 326, 333, 335, 337, 340, 341, 343, 345, 347, 352, 353, 365, 366, 367, 369, 375, 378, 381, 382, 384, 386, 388, 394, 406, 410, 419, 425, 427, 428, 429, 430, 432, 434, 435, 436, 440, 442, 443, 445, 446, 449, 450, 451, 452, 455, 459, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "range_iter": 483, "rank": [291, 343, 413, 474], "ranlib": 483, "raphael": 235, "rapid": [193, 308, 481, 483], "rare": [63, 84, 103, 133, 177, 181, 193, 199, 213, 235, 243, 247, 267, 292, 330, 333, 337, 344, 358, 410, 463, 464, 467, 468, 474, 476, 483], "rarer": 467, "rarg": 292, "rarrow": 377, "raseliarison": 469, "rast": [206, 249], "raster": 249, "rat": 230, "ratcliff": 190, "rate": [84, 117, 141, 289, 295, 308, 343, 349, 396, 479, 483], "ratecv": [141, 483], "rath": [478, 483], "rather": [5, 7, 22, 23, 33, 41, 45, 49, 55, 58, 61, 64, 72, 73, 75, 76, 84, 94, 96, 100, 101, 102, 103, 120, 137, 149, 151, 155, 158, 163, 169, 176, 177, 181, 183, 186, 191, 208, 209, 213, 225, 226, 235, 243, 247, 248, 255, 258, 261, 267, 268, 269, 270, 271, 275, 283, 292, 293, 295, 302, 312, 313, 314, 319, 324, 331, 332, 334, 335, 337, 340, 341, 344, 345, 348, 352, 355, 358, 362, 365, 366, 369, 375, 376, 378, 384, 386, 388, 394, 395, 399, 400, 410, 413, 419, 422, 423, 425, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 463, 464, 465, 466, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ratio": [149, 190, 221, 275, 343, 384, 476, 483], "ration": [183, 186, 221, 289, 344, 428, 468, 469, 470, 475, 483], "rational": [213, 235, 293, 328, 329, 333, 337, 358, 366, 428, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "ratnadeep": [480, 483], "raw": [5, 7, 16, 32, 63, 68, 101, 106, 118, 120, 151, 167, 176, 177, 191, 193, 196, 197, 205, 206, 207, 225, 230, 255, 270, 283, 288, 293, 299, 329, 331, 337, 338, 344, 363, 366, 369, 381, 383, 395, 398, 415, 427, 435, 449, 463, 465, 467, 468, 470, 473, 474, 476, 478, 483], "raw_data": 442, "raw_data_manag": [197, 208], "raw_decod": [262, 483], "raw_input": [112, 157, 470], "raw_shm": 284, "raw_unicode_escap": 158, "rawarray": 283, "rawconfigpars": [68, 217, 268, 469, 473, 477, 483], "rawdata": 244, "rawdescriptionhelpformatt": 120, "rawio": 483, "rawiobas": [225, 258, 468, 476, 478, 483], "rawparam": 196, "rawpen": 384, "rawtexthelpformatt": 120, "rawturtl": [68, 222, 474, 483], "rawvalu": 283, "rax": 98, "ray": [475, 477, 483], "raymond": [92, 93, 95, 108, 177, 347, 427, 462, 463, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "raymondhetting": 475, "raynor": 466, "rb": [66, 84, 87, 102, 117, 126, 149, 160, 200, 208, 218, 225, 234, 235, 250, 252, 253, 258, 270, 288, 299, 302, 344, 360, 378, 379, 386, 397, 401, 407, 419, 422, 435, 446, 452, 462, 465, 472, 476, 483], "rbp": 98, "rbpb15s": 235, "rbrace": [377, 431], "rc": [102, 106, 176, 208, 296, 348, 355, 362, 399, 411], "rc1": 483, "rc2": 483, "rc4": [341, 483], "rc_bad_venv_cfg": 461, "rc_create_process": 461, "rc_instal": 461, "rc_internal_error": 461, "rc_no_commandlin": 461, "rc_no_python": 461, "rc_no_venv_cfg": 461, "rcn": [80, 93], "rcomplet": 483, "rcpt": 335, "rcpt_option": 335, "rcvall_": 337, "rcvall_off": 337, "rcvall_on": 337, "rd": [102, 341, 344], "rdigkeiten": 475, "rdivmod": 483, "rdmurray": 477, "rdn": 341, "rdns": 341, "rds": [476, 483], "rds_": 337, "rdstest": 483, "re": [7, 33, 42, 45, 63, 68, 72, 73, 75, 76, 77, 84, 85, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 109, 139, 144, 145, 155, 160, 163, 167, 169, 176, 177, 183, 186, 187, 190, 191, 193, 196, 201, 205, 207, 211, 220, 243, 247, 248, 250, 254, 258, 259, 266, 267, 268, 269, 271, 278, 279, 283, 288, 292, 293, 295, 297, 308, 314, 315, 338, 341, 344, 345, 348, 352, 353, 363, 364, 365, 369, 377, 378, 384, 386, 394, 395, 400, 407, 413, 415, 419, 427, 428, 429, 432, 434, 435, 436, 441, 451, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 481, 483], "reach": [23, 24, 66, 73, 75, 84, 85, 95, 102, 105, 106, 110, 137, 144, 149, 153, 159, 225, 242, 261, 267, 270, 293, 297, 313, 314, 328, 331, 337, 338, 340, 344, 348, 365, 381, 395, 413, 415, 427, 428, 430, 432, 436, 461, 462, 463, 464, 465, 467, 468, 469, 475, 477, 478, 480, 481, 483], "reachabl": [33, 193, 259, 292, 293, 296, 386, 428, 482, 483], "reacquir": [33, 176, 365], "react": [63, 92, 272, 369, 462, 468], "reaction": [462, 463], "read": [5, 7, 22, 23, 24, 25, 31, 33, 34, 41, 42, 43, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 79, 85, 86, 87, 92, 93, 94, 95, 96, 101, 102, 103, 106, 107, 110, 112, 117, 119, 120, 126, 136, 137, 140, 143, 146, 148, 149, 151, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 170, 175, 176, 177, 181, 183, 184, 189, 190, 191, 193, 194, 200, 203, 204, 207, 208, 212, 213, 215, 216, 218, 223, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 253, 254, 255, 258, 262, 265, 267, 268, 271, 276, 278, 280, 281, 282, 283, 288, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 308, 309, 312, 313, 314, 319, 320, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 347, 348, 352, 355, 358, 359, 360, 365, 366, 369, 376, 378, 380, 381, 382, 384, 385, 389, 390, 394, 395, 396, 397, 399, 400, 407, 410, 413, 414, 415, 416, 417, 419, 421, 422, 425, 426, 427, 428, 430, 432, 435, 438, 440, 446, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "read1": [149, 234, 258, 483], "read_": 359, "read_al": 359, "read_binari": [252, 473, 474, 483], "read_boundmethod": [481, 482], "read_builtin": [481, 482], "read_byt": [250, 252, 253, 278, 296, 422, 478, 483], "read_classvar_from_class": [481, 482], "read_classvar_from_inst": [481, 482], "read_data": [389, 390, 446, 483], "read_dequ": [481, 482], "read_dict": [167, 475, 480, 481, 482, 483], "read_eag": 359, "read_environ": [407, 475], "read_ev": 413, "read_fil": [167, 268, 474], "read_glob": [481, 482], "read_histori": 320, "read_history_fil": 320, "read_init_fil": [320, 323, 483], "read_instancevar": [481, 482], "read_instancevar_slot": [481, 482], "read_lazi": 359, "read_list": [481, 482], "read_loc": [481, 482], "read_mime_typ": [276, 483], "read_multi": 483, "read_namedtupl": [481, 482], "read_nonloc": [481, 482], "read_restrict": [58, 474], "read_sb_data": 359, "read_som": 359, "read_str": [167, 475, 478], "read_strdict": [481, 482], "read_text": [250, 251, 252, 253, 258, 296, 422, 473, 474, 478, 483], "read_token": 331, "read_until": 359, "read_var": 483, "read_very_eag": 359, "read_very_lazi": 359, "read_windows_registri": 276, "readabl": [5, 85, 92, 101, 102, 103, 106, 117, 120, 133, 149, 151, 155, 160, 167, 176, 190, 191, 205, 230, 243, 245, 258, 267, 268, 283, 288, 293, 299, 303, 304, 307, 310, 319, 333, 338, 342, 344, 347, 348, 349, 369, 377, 414, 426, 435, 455, 463, 464, 466, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "readal": [258, 472, 477, 483], "readcd": 468, "readconsol": 483, "readdir": [293, 478], "readelf": [98, 483], "reader": [91, 99, 103, 106, 109, 126, 136, 149, 158, 160, 170, 175, 196, 200, 202, 205, 225, 242, 250, 253, 258, 271, 272, 283, 288, 292, 299, 333, 337, 347, 387, 399, 410, 413, 414, 415, 416, 417, 428, 434, 455, 465, 467, 470, 472, 478, 483], "readermod": 288, "readerror": [358, 483], "readexact": [136, 479, 483], "readfil": 483, "readfp": [167, 276, 469, 473, 474, 483], "readfram": [117, 349, 401], "readfunc": 157, "readi": [33, 64, 80, 92, 101, 102, 132, 133, 136, 144, 170, 176, 186, 190, 242, 245, 258, 269, 283, 328, 329, 337, 341, 366, 381, 416, 417, 462, 465, 475, 476, 478, 483], "readili": [102, 283, 359, 477, 483], "readinto": [7, 149, 242, 258, 299, 468, 476, 478, 483], "readinto1": [258, 478], "readlin": [24, 34, 66, 68, 79, 84, 95, 100, 109, 126, 136, 137, 140, 143, 151, 155, 158, 170, 188, 190, 204, 207, 213, 218, 223, 225, 248, 254, 258, 268, 278, 293, 296, 297, 299, 315, 331, 338, 363, 369, 378, 382, 389, 395, 399, 421, 422, 428, 438, 440, 443, 446, 447, 448, 455, 456, 462, 463, 464, 465, 467, 468, 469, 475, 477, 480, 483], "readlink": [293, 296, 476, 481, 482, 483], "readm": [188, 223, 247, 258, 296, 456, 460, 461, 462, 475, 479, 480, 483], "readmodul": [312, 472, 483], "readmodule_ex": [312, 472, 483], "readon": [2, 43, 58, 68, 248, 332, 340, 344, 376, 410, 411, 468, 474, 483], "readplist": [468, 477, 480, 483], "readplistfrombyt": [477, 480, 483], "readplistfromstr": 468, "readrc": [297, 479, 483], "readthedoc": [71, 251, 407, 467], "readtransport": [126, 133, 480, 483], "readuntil": [136, 478, 479, 483], "readv": [293, 476, 478, 480, 483], "readwrit": 483, "ready_to_read": 107, "ready_to_writ": 107, "reak": 297, "real": [15, 47, 59, 68, 72, 76, 85, 87, 93, 102, 103, 110, 144, 153, 154, 157, 169, 176, 191, 193, 200, 205, 213, 225, 226, 248, 250, 262, 288, 289, 293, 308, 319, 322, 324, 331, 333, 334, 340, 341, 343, 344, 345, 352, 353, 354, 366, 369, 388, 389, 390, 413, 427, 431, 435, 440, 461, 467, 468, 469, 474, 475, 476, 479, 483], "real_max_memus": 362, "real_numb": 431, "real_person": 413, "real_quick_ratio": 190, "real_valu": 244, "realis": 462, "realist": [84, 348, 411, 466, 467], "realiti": [73, 183, 292, 337, 395, 427], "realiz": [79, 208, 297, 467, 468, 483], "realli": [49, 63, 72, 75, 77, 85, 92, 95, 102, 103, 106, 109, 183, 191, 200, 203, 205, 271, 283, 288, 293, 328, 344, 352, 365, 366, 384, 387, 413, 428, 435, 436, 441, 462, 463, 464, 465, 466, 467, 470, 474, 479, 483], "realloc": [9, 42, 54, 73, 177, 466, 479, 483], "realm": [110, 208, 395, 483], "realnam": [209, 483], "realpart": 440, "realpath": [293, 294, 296, 461, 472, 481, 483], "realtim": 348, "realtime_priority_class": 348, "ream": 468, "reap": [132, 483], "reap_children": 362, "reap_thread": 362, "rearrag": 483, "rearrang": [452, 462, 465, 467, 469, 482, 483], "reason": [22, 23, 33, 42, 46, 47, 49, 51, 63, 73, 76, 84, 85, 92, 94, 95, 101, 102, 103, 106, 109, 110, 115, 139, 141, 151, 155, 177, 181, 183, 186, 191, 193, 194, 196, 213, 216, 230, 241, 242, 245, 247, 248, 250, 267, 268, 269, 270, 271, 292, 293, 299, 305, 308, 314, 332, 334, 337, 341, 344, 352, 358, 359, 362, 364, 365, 366, 369, 384, 386, 388, 393, 395, 425, 426, 427, 428, 432, 464, 465, 467, 470, 475, 476, 477, 478, 483], "reassembl": 133, "reassign": [10, 42, 63, 76, 307, 348, 386, 402, 474, 481, 483], "reassoci": 293, "reassur": 77, "reattach": 376, "reattempt": 332, "rebas": 483, "rebind": [85, 227, 436, 466, 483], "reboot": [283, 296, 477], "rebound": [250, 429, 436], "rebuild": [73, 163, 475, 483], "rebuilt": [276, 476, 478, 483], "rec": [96, 314, 411, 413], "rec_len": 475, "recal": [102, 247], "recalc": 93, "recalcul": [93, 267, 425], "recap": 93, "recast": [261, 475], "reccontrol": 295, "receiv": [5, 23, 33, 45, 49, 67, 68, 72, 73, 76, 84, 95, 101, 110, 115, 120, 126, 132, 133, 136, 138, 151, 155, 158, 167, 176, 190, 213, 225, 235, 242, 243, 244, 245, 247, 248, 259, 267, 268, 269, 283, 288, 295, 299, 305, 309, 314, 322, 329, 332, 333, 335, 337, 338, 341, 348, 353, 359, 365, 376, 381, 388, 395, 400, 410, 411, 413, 414, 415, 420, 426, 427, 429, 430, 462, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "recent": [73, 76, 84, 85, 89, 93, 94, 95, 96, 99, 100, 102, 103, 109, 114, 120, 125, 132, 144, 151, 160, 167, 169, 176, 186, 188, 193, 211, 214, 225, 226, 234, 247, 248, 255, 259, 267, 269, 283, 284, 293, 295, 296, 297, 299, 307, 314, 319, 335, 337, 340, 341, 344, 345, 347, 348, 352, 362, 375, 381, 382, 384, 387, 388, 389, 390, 394, 400, 422, 427, 428, 429, 430, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "recept": [126, 133, 136], "reciev": 191, "recip": [68, 85, 94, 102, 110, 147, 160, 182, 190, 200, 224, 250, 275, 290, 293, 298, 315, 330, 344, 352, 413, 454, 474, 475, 483], "recipi": [133, 200, 208, 209, 335, 338, 426], "reciproc": 343, "recit": 106, "reclaim": [73, 75, 250, 386], "reclam": 63, "recod": 5, "recogn": [68, 73, 85, 93, 99, 103, 106, 120, 155, 158, 167, 177, 187, 191, 196, 203, 218, 228, 235, 249, 250, 262, 266, 276, 282, 292, 293, 297, 299, 319, 331, 336, 345, 362, 366, 369, 377, 386, 394, 395, 416, 435, 436, 461, 462, 470, 475, 476, 477, 478, 483], "recognis": [213, 268, 302, 331, 340, 428, 483], "recognit": 276, "recogniz": [42, 161, 186, 483], "recombin": [141, 476], "recommend": [5, 33, 42, 45, 63, 64, 68, 72, 73, 75, 76, 85, 91, 94, 95, 101, 108, 109, 120, 132, 133, 139, 158, 167, 173, 176, 181, 183, 186, 193, 196, 225, 230, 235, 242, 245, 247, 248, 250, 255, 262, 267, 275, 288, 293, 295, 299, 308, 314, 319, 324, 331, 332, 337, 338, 340, 341, 348, 352, 358, 365, 366, 369, 384, 386, 388, 394, 410, 411, 415, 416, 422, 425, 428, 432, 435, 456, 461, 462, 464, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "recompil": [72, 79, 163, 250, 462, 465, 469, 475, 478, 479], "recomput": [101, 328, 329, 333, 366, 477, 483], "reconfigur": [225, 258, 480, 483], "reconnect": [242, 478, 483], "reconstitut": [267, 299], "reconstruct": [258, 299, 307, 378, 407, 483], "reconstructor": 299, "record": [31, 61, 68, 75, 78, 92, 93, 94, 95, 101, 102, 104, 109, 155, 160, 163, 176, 177, 178, 184, 185, 186, 197, 203, 212, 251, 255, 259, 267, 269, 271, 279, 292, 293, 295, 299, 308, 309, 340, 342, 344, 347, 362, 384, 385, 386, 388, 389, 400, 422, 432, 440, 445, 462, 465, 466, 467, 468, 469, 475, 476, 477, 478, 481, 483], "record_attr_dict": 269, "record_factori": [102, 267], "record_foo_seen": 292, "record_numb": 475, "record_original_stdout": 362, "records_ro": 255, "recount": 186, "recov": [158, 190, 221, 352, 397, 415, 469, 474, 475], "recover": [212, 415], "recoveri": [201, 248, 395, 431], "recreat": [94, 158, 190, 298, 337, 394, 399, 428, 476, 480, 483], "rect": [154, 176, 468], "rectangl": [73, 92, 177, 181], "rectangular": [92, 154, 384], "recur": 376, "recurs": [22, 27, 32, 33, 61, 68, 73, 85, 95, 112, 142, 151, 163, 167, 170, 181, 190, 191, 193, 196, 200, 205, 213, 216, 226, 231, 250, 252, 262, 283, 293, 296, 297, 299, 302, 307, 308, 313, 321, 330, 332, 342, 352, 358, 365, 384, 386, 388, 395, 412, 413, 422, 428, 429, 432, 436, 440, 462, 463, 464, 465, 466, 468, 474, 475, 477, 478, 479, 480, 481, 483], "recursinginfinitelyerror": 483, "recursion_crit": 483, "recursion_depth": [473, 482, 483], "recursion_limit": [472, 473, 483], "recursion_remain": 473, "recursion_rit": 472, "recursionerror": [23, 122, 213, 262, 299, 307, 352, 443, 478, 479, 483], "recursive_funct": 96, "recursive_repr": [23, 321, 475, 483], "recv": [102, 107, 126, 283, 327, 329, 333, 337, 338, 341, 362, 369, 469, 478, 483], "recv_byt": 283, "recv_bytes_into": 283, "recv_fd": [337, 482], "recv_into": [126, 337, 341, 467, 469, 483], "recv_json": 102, "recv_timeout": 102, "recvfd": 483, "recvfrom": [126, 337, 369, 478, 483], "recvfrom_into": [126, 337, 467, 469], "recvmsg": [337, 476, 478], "recvmsg_into": [337, 476], "recycl": [115, 365, 483], "red": [79, 80, 92, 94, 101, 102, 106, 108, 147, 150, 160, 177, 211, 230, 240, 261, 318, 343, 344, 369, 376, 384, 402, 426, 441, 449, 452, 465, 466, 471, 472, 473, 474, 479, 483], "redact": 475, "reddi": [473, 480, 483], "redefin": [85, 144, 161, 250, 338, 428, 465, 468, 483], "redefinit": [250, 428, 483], "redemo": 483, "redesign": [468, 469, 477], "redhat": 483, "redic": 5, "redirect": [7, 63, 68, 86, 101, 102, 110, 133, 137, 169, 242, 243, 245, 250, 267, 333, 348, 352, 395, 399, 455, 458, 462, 477, 478, 479, 480, 483], "redirect_request": 395, "redirect_stderr": [169, 478, 483], "redirect_stdout": [169, 477, 478], "redirector": [399, 480, 483], "redisplay": [177, 320, 465], "redistribut": [426, 483], "redistributor": [355, 469], "redo": [177, 247, 483], "redraw": 92, "redrawln": 177, "redrawn": [92, 177, 384], "redrawwin": 177, "reduc": [42, 56, 75, 85, 95, 103, 108, 112, 133, 177, 183, 186, 226, 235, 247, 261, 293, 299, 308, 328, 341, 344, 362, 365, 413, 421, 435, 456, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "reduce_someclass": 299, "reducer_overrid": [299, 481, 483], "reduct": [39, 68, 172, 298, 344, 474, 476, 483], "reductionist": 106, "redund": [73, 270, 319, 344, 386, 424, 436, 464, 469, 483], "ree": 483, "reedi": [109, 465, 472, 473, 478, 479, 480, 481, 482, 483], "reenabl": 469, "reenter": 369, "reentranc": [68, 118, 169, 316, 483], "reentrant": [68, 258, 315, 316, 365, 477, 483], "rees": 483, "ref": [5, 34, 35, 63, 67, 78, 177, 402, 455, 456, 463, 469, 472, 477, 481, 483], "ref_api": 362, "refactor": [87, 95, 112, 388, 466, 477, 478, 479, 480, 483], "refactoringtool": 483, "refchild": 410, "refcnt": [52, 472], "refcount": [9, 33, 63, 100, 352, 362, 467, 483], "refcount_test": 362, "refer": [0, 5, 7, 9, 11, 12, 13, 17, 19, 22, 23, 24, 26, 27, 28, 29, 31, 33, 34, 35, 36, 39, 42, 45, 49, 50, 54, 55, 58, 59, 60, 64, 66, 67, 68, 71, 72, 74, 76, 77, 78, 84, 87, 93, 99, 100, 101, 102, 106, 110, 115, 118, 120, 129, 133, 136, 137, 139, 141, 142, 144, 158, 164, 167, 170, 177, 183, 185, 191, 205, 212, 213, 215, 222, 225, 226, 227, 228, 230, 233, 235, 239, 240, 243, 245, 247, 250, 251, 253, 255, 258, 259, 262, 267, 268, 269, 271, 273, 278, 288, 293, 297, 298, 299, 302, 307, 313, 314, 319, 321, 324, 329, 332, 333, 334, 337, 344, 345, 347, 352, 356, 361, 362, 365, 366, 368, 375, 376, 377, 381, 385, 386, 388, 394, 395, 400, 402, 405, 410, 411, 415, 417, 421, 422, 425, 427, 428, 429, 433, 434, 435, 436, 440, 441, 445, 449, 450, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "referenc": [5, 7, 13, 60, 63, 67, 73, 75, 85, 101, 106, 120, 139, 167, 179, 191, 225, 226, 247, 255, 283, 293, 299, 319, 344, 351, 402, 410, 428, 461, 463, 464, 465, 468, 469, 470, 476, 477, 483], "referenceerror": [23, 213, 402, 450, 463, 464], "referencetyp": [402, 483], "referendum": 446, "referenti": [299, 483], "refin": [85, 480, 483], "refleak": [362, 474, 483], "reflect": [26, 32, 65, 68, 85, 102, 117, 120, 177, 183, 193, 215, 225, 226, 247, 250, 255, 284, 292, 293, 308, 320, 337, 340, 341, 344, 347, 352, 369, 384, 385, 386, 405, 411, 421, 427, 428, 429, 455, 468, 474, 475, 476, 478, 481, 482, 483], "reflex": 430, "reflink": [215, 293], "refold": [201, 208, 476], "refold_head": 208, "refold_sourc": [201, 208, 476], "reformat": [247, 271, 292, 465, 483], "refresh": [92, 160, 177, 288, 369, 376, 467, 482, 483], "refus": [25, 103, 212, 213, 272, 288, 330, 335, 337, 341, 358, 422, 472, 483], "reg_binari": [405, 483], "reg_dword": 405, "reg_dword_big_endian": 405, "reg_dword_little_endian": 405, "reg_expand_sz": 405, "reg_full_resource_descriptor": 405, "reg_link": 405, "reg_multi_sz": [405, 483], "reg_non": 405, "reg_qword": [405, 479, 483], "reg_qword_little_endian": 405, "reg_resource_list": 405, "reg_resource_requirements_list": 405, "reg_sz": 405, "regard": [63, 100, 101, 169, 205, 226, 235, 269, 293, 340, 344, 348, 353, 383, 410, 413, 426, 461, 483], "regardless": [9, 24, 33, 34, 41, 59, 64, 94, 120, 139, 169, 177, 183, 186, 208, 220, 247, 250, 258, 261, 262, 302, 314, 333, 334, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 376, 384, 388, 400, 403, 412, 425, 430, 432, 435, 455, 461, 474, 475, 476, 477, 478, 480, 483], "regebro": [469, 483], "regen": [68, 456, 483], "regener": [201, 311, 432, 456, 469, 474, 478, 479, 483], "regex": [106, 163, 220, 266, 302, 319, 359, 388, 463, 467, 468, 475, 477, 480, 483], "regexflag": [211, 319, 473, 480, 483], "regexp": [362, 475, 483], "region": [177, 247, 278, 282, 293, 319, 369, 376, 384, 440, 468, 471, 483], "regist": [13, 22, 27, 33, 34, 59, 61, 63, 68, 73, 76, 84, 85, 87, 109, 110, 116, 120, 126, 128, 132, 133, 136, 140, 158, 161, 167, 169, 193, 197, 203, 208, 214, 225, 226, 250, 258, 267, 276, 283, 289, 293, 298, 299, 302, 314, 315, 320, 328, 329, 332, 333, 337, 341, 344, 352, 362, 369, 376, 384, 386, 388, 395, 400, 402, 403, 406, 410, 413, 415, 420, 421, 427, 428, 430, 432, 461, 462, 463, 465, 466, 468, 469, 472, 473, 474, 475, 476, 477, 478, 480, 481, 483], "register_adapt": 340, "register_archive_format": [332, 475], "register_at_fork": [59, 293, 480, 483], "register_callback": [353, 483], "register_convert": 340, "register_defect": 208, "register_dialect": 175, "register_error": [158, 225, 258, 344, 465], "register_funct": [419, 420, 480, 483], "register_inst": 420, "register_introspection_funct": 420, "register_multicall_funct": [419, 420], "register_namespac": [413, 469, 475], "register_optionflag": 193, "register_shap": 384, "register_unpack_format": 332, "registerdomimplement": 410, "registerresult": 388, "registr": [33, 59, 161, 169, 293, 299, 329, 395, 405, 420, 468, 483], "registri": [14, 23, 34, 64, 68, 158, 167, 175, 195, 197, 203, 226, 250, 259, 269, 276, 299, 303, 341, 352, 354, 386, 395, 400, 404, 406, 413, 458, 462, 468, 469, 479, 482, 483], "regloadkey": 405, "regress": [68, 78, 85, 187, 193, 254, 262, 343, 469, 477, 478, 481, 483], "regrtest": [96, 362, 382, 465, 469, 483], "regsub": 467, "regtyp": 358, "regular": [7, 11, 33, 34, 42, 63, 68, 76, 84, 85, 87, 93, 95, 96, 102, 108, 120, 133, 160, 161, 163, 167, 169, 176, 181, 186, 193, 200, 220, 225, 226, 234, 243, 247, 254, 255, 266, 268, 293, 299, 308, 311, 328, 333, 335, 337, 341, 342, 343, 344, 345, 352, 358, 359, 362, 363, 384, 386, 388, 395, 400, 428, 429, 430, 435, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "regular_funct": 225, "rei": 466, "reid": [469, 475], "reifschneid": [463, 465, 466, 467, 469], "reign": 266, "reilli": [106, 319, 367, 454, 464, 478, 483], "reimplement": [76, 388, 464, 477, 478, 479, 480, 483], "reimport": 483, "reinartz": 483, "reingold": [150, 183], "reinhardt": 464, "reiniti": [63, 483], "reinitialis": 432, "reinsert": [362, 376, 469, 471], "reinstal": [42, 461], "reinstat": [267, 483], "reinterpret_cast": 483, "reintroduc": [435, 483], "reitz": 453, "rejeb": 466, "reject": [7, 99, 103, 106, 167, 243, 248, 275, 318, 358, 435, 436, 462, 469, 477, 479, 483], "rejoin": 208, "rekey": 341, "rel_tol": [154, 275, 478], "relat": [2, 33, 42, 45, 63, 68, 79, 84, 85, 93, 95, 96, 101, 102, 103, 106, 108, 109, 112, 113, 133, 139, 153, 158, 167, 169, 177, 181, 183, 190, 191, 193, 194, 196, 200, 205, 207, 208, 209, 211, 213, 215, 217, 225, 228, 235, 241, 245, 255, 257, 259, 261, 265, 266, 267, 269, 270, 271, 278, 280, 281, 283, 290, 293, 296, 298, 299, 302, 308, 314, 315, 319, 320, 324, 325, 331, 332, 333, 337, 340, 341, 343, 344, 345, 348, 352, 354, 358, 362, 366, 369, 375, 376, 380, 384, 385, 388, 394, 399, 400, 405, 407, 412, 413, 415, 421, 422, 425, 428, 430, 431, 433, 435, 436, 450, 455, 461, 462, 463, 464, 465, 466, 469, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "relationship": [68, 93, 133, 161, 183, 193, 343, 344, 352, 369, 380, 410, 426, 428, 467, 483], "relative_modul": 436, "relative_to": [296, 474, 483], "relativecr": [102, 267], "relax": [95, 183, 244, 475, 482, 483], "relay": [480, 483], "releas": [5, 7, 9, 28, 34, 35, 36, 42, 45, 57, 58, 61, 63, 64, 68, 72, 73, 75, 76, 77, 80, 84, 85, 93, 96, 102, 103, 110, 115, 132, 135, 138, 139, 147, 169, 176, 177, 191, 215, 234, 235, 236, 255, 267, 271, 283, 284, 293, 299, 303, 314, 333, 337, 340, 344, 352, 362, 365, 369, 371, 382, 384, 386, 400, 413, 422, 426, 428, 436, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 484], "release_db_connect": 169, "release_lock": [470, 474], "release_resourc": 169, "release_special_resourc": 169, "release_url": 307, "releasebufferproc": [57, 63, 483], "releaselevel": [352, 469, 471], "relev": [63, 73, 75, 84, 85, 92, 95, 96, 99, 101, 102, 122, 167, 186, 193, 194, 208, 215, 242, 245, 251, 262, 267, 268, 269, 288, 292, 293, 302, 341, 344, 348, 355, 356, 362, 388, 414, 423, 425, 461, 462, 464, 466, 474, 476, 477, 478, 479, 482, 483], "reli": [13, 51, 73, 76, 85, 93, 94, 100, 102, 133, 151, 161, 181, 183, 225, 250, 255, 267, 276, 283, 292, 293, 299, 302, 330, 332, 352, 362, 364, 365, 366, 386, 388, 427, 428, 429, 432, 461, 462, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "reliabl": [59, 124, 132, 133, 139, 158, 161, 186, 251, 283, 333, 348, 403, 415, 427, 432, 461, 465, 469, 475, 476, 477, 478, 479, 480, 483], "reliable_datagram_socket": 476, "relianc": 483, "relicens": 466, "relief": [369, 376], "relink": 79, "relinquish": [169, 293, 365, 366], "reload": [31, 85, 94, 112, 243, 247, 250, 352, 362, 382, 432, 450, 465, 470, 474, 477, 480, 483], "reloc": [54, 468, 483], "relpath": [294, 296, 468, 474, 483], "remahl": 468, "remain": [5, 13, 33, 42, 63, 73, 76, 85, 94, 95, 102, 106, 120, 139, 153, 161, 169, 176, 177, 183, 186, 190, 191, 193, 194, 202, 203, 205, 208, 209, 213, 218, 225, 226, 247, 248, 250, 268, 271, 275, 283, 292, 293, 295, 297, 299, 312, 322, 324, 333, 337, 340, 344, 345, 348, 352, 362, 364, 365, 376, 384, 385, 386, 388, 394, 400, 426, 427, 428, 432, 435, 436, 442, 455, 456, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "remaind": [47, 75, 106, 155, 183, 186, 208, 268, 275, 292, 319, 366, 369, 430, 449, 468, 480, 483], "remainder_near": 186, "remap": 471, "remark": [271, 384, 462, 466, 483], "rembermer2buy": 103, "rembrandt": 160, "remedi": 481, "rememb": [73, 85, 92, 95, 101, 102, 106, 159, 193, 225, 247, 261, 283, 319, 340, 362, 369, 376, 395, 402, 410, 412, 436, 441, 461, 462, 463, 467, 468, 469, 471, 475, 476], "remember2buy": 103, "remi": 483, "remind": [85, 344, 441, 470, 483], "remot": [68, 96, 101, 102, 121, 126, 133, 164, 170, 212, 242, 245, 248, 266, 267, 268, 269, 337, 341, 355, 359, 375, 395, 403, 405, 414, 418, 419, 464, 475, 478, 479, 480, 481, 482, 483], "remote_addr": [126, 133], "remote_command": 331, "remote_host": 126, "remote_port": 126, "remotedisconnect": [242, 478, 483], "remoteerror": 283, "remotesign": 399, "remov": [5, 10, 22, 24, 26, 28, 31, 34, 35, 45, 49, 55, 63, 64, 66, 68, 73, 75, 76, 80, 84, 93, 94, 95, 101, 102, 103, 106, 110, 112, 120, 121, 132, 135, 137, 139, 142, 144, 149, 151, 155, 157, 158, 160, 161, 163, 167, 169, 177, 179, 183, 186, 191, 193, 194, 196, 200, 203, 205, 207, 208, 212, 213, 218, 225, 226, 234, 235, 236, 242, 243, 247, 248, 250, 251, 252, 255, 259, 262, 266, 267, 269, 271, 275, 281, 283, 292, 293, 296, 297, 299, 304, 305, 308, 313, 314, 319, 320, 325, 328, 329, 331, 332, 333, 334, 335, 340, 341, 344, 345, 352, 358, 359, 360, 362, 364, 376, 377, 382, 384, 385, 386, 388, 394, 395, 400, 402, 403, 405, 410, 412, 413, 421, 422, 423, 425, 426, 428, 430, 432, 436, 442, 449, 451, 452, 455, 456, 458, 462, 463, 464, 465, 466, 470, 472, 473, 474, 475, 476, 477, 483, 484], "remove_child_handl": 132, "remove_done_callback": [129, 139, 483], "remove_expon": 186, "remove_flag": 271, "remove_fold": 271, "remove_gray_shad": 87, "remove_head": [395, 477], "remove_histori": 320, "remove_history_item": 320, "remove_label": 271, "remove_mem_hook": 483, "remove_modul": 483, "remove_opt": [167, 292], "remove_pyc": 281, "remove_read": [126, 130], "remove_readon": 332, "remove_sect": 167, "remove_sequ": 271, "remove_signal_handl": [126, 130, 131], "remove_task": 236, "remove_thi": 319, "remove_var_callback": 483, "remove_writ": [126, 130], "removeattribut": 410, "removeattributen": 410, "removeattributenod": [410, 483], "removechild": [410, 462], "removedinsphinx40warn": 483, "removedir": [84, 293], "removefil": 483, "removefilt": [101, 267], "removehandl": [101, 102, 267, 388, 469], "removenameditem": 410, "removeprefix": [344, 482, 483], "removeresult": 388, "removesuffix": [344, 482, 483], "removexattr": [142, 293, 476], "renam": [13, 42, 58, 63, 76, 84, 102, 112, 142, 160, 213, 223, 247, 248, 252, 269, 271, 293, 296, 311, 328, 332, 342, 381, 388, 421, 452, 462, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 478, 479, 483], "renaud": [476, 483], "render": [102, 109, 189, 201, 338, 376, 381, 411, 428, 461, 465, 468, 469, 481, 483], "render_goodby": 170, "rendezv": [293, 475], "rendit": 177, "renegoti": [341, 469], "renew": 475, "renumb": [94, 248], "reobj": 220, "reopen": [101, 269, 299, 340, 359, 469, 479, 483], "reopenifneed": [269, 479], "reoprt": 319, "reorder": [85, 94, 413, 483], "reorder_attribut": 413, "reorgan": [184, 194, 463, 468, 471, 479, 481, 483], "reorganis": 462, "reorpt": 319, "repack": 345, "repaint": 177, "repair": [429, 461, 483], "repars": [293, 314, 413, 481, 483], "reparse_data_buff": 483, "repeat": [33, 54, 58, 63, 68, 79, 95, 103, 110, 112, 120, 155, 161, 176, 177, 183, 190, 197, 214, 225, 235, 247, 261, 266, 276, 283, 285, 292, 295, 297, 302, 308, 318, 319, 337, 340, 341, 344, 345, 347, 365, 367, 380, 381, 384, 386, 388, 395, 405, 406, 427, 428, 443, 455, 464, 465, 466, 468, 469, 475, 476, 477, 478, 479, 483], "repeat_on": 279, "repeatfunc": 261, "repertoir": [314, 335, 375, 468], "repetit": [106, 120, 149, 235, 261, 270, 275, 319, 344, 381, 388, 400, 428, 430, 434, 464, 483], "repl": [34, 114, 123, 191, 319, 352, 455, 472, 481, 483], "replac": [22, 24, 31, 33, 34, 42, 56, 59, 60, 61, 63, 64, 68, 71, 73, 84, 85, 89, 92, 93, 94, 95, 100, 102, 103, 109, 112, 120, 132, 139, 151, 157, 158, 164, 173, 176, 177, 179, 181, 183, 190, 191, 193, 196, 197, 202, 205, 206, 209, 211, 213, 214, 218, 225, 229, 235, 250, 251, 252, 255, 258, 266, 267, 268, 271, 272, 276, 279, 283, 292, 293, 296, 297, 307, 308, 315, 318, 319, 320, 321, 331, 332, 333, 340, 341, 344, 345, 352, 358, 362, 364, 365, 366, 368, 369, 371, 375, 376, 378, 382, 384, 385, 386, 387, 388, 394, 395, 399, 400, 410, 413, 415, 417, 421, 422, 425, 428, 430, 433, 435, 436, 449, 451, 455, 456, 461, 462, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "replace_error": 158, "replace_head": [196, 205], "replace_history_entri": 320, "replace_history_item": 320, "replace_path": 279, "replace_paths_in_cod": 483, "replace_whitespac": 364, "replacechild": 410, "replacement_field": 435, "replacepackag": 279, "replay": 389, "repli": [183, 203, 245, 271, 283, 288, 335, 338, 395, 441, 483], "replic": [85, 95, 208, 283, 461, 466, 469, 483], "replstr": 64, "repo": 483, "report": [1, 7, 22, 33, 45, 61, 72, 73, 85, 99, 101, 104, 105, 106, 109, 120, 133, 151, 152, 166, 176, 177, 190, 191, 193, 196, 203, 205, 213, 216, 225, 233, 255, 259, 279, 283, 292, 293, 308, 314, 319, 328, 329, 333, 339, 341, 342, 344, 352, 362, 369, 380, 386, 388, 395, 400, 413, 415, 431, 453, 455, 461, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 479, 481, 483], "report_": 193, "report_cdiff": [193, 466], "report_failur": 193, "report_full_closur": 216, "report_ndiff": [193, 466], "report_only_first_failur": 193, "report_partial_closur": 216, "report_start": 193, "report_success": 193, "report_udiff": [193, 466], "report_unexpected_except": 193, "reporthook": 395, "reporting_flag": 193, "reposit": [158, 258], "repositori": [68, 96, 250, 425, 460, 462, 463, 467, 469, 483, 484], "repr": [18, 23, 24, 49, 63, 64, 68, 75, 94, 96, 102, 108, 109, 112, 139, 176, 181, 182, 183, 191, 193, 211, 225, 242, 247, 254, 283, 314, 329, 337, 344, 345, 352, 362, 364, 378, 381, 385, 386, 389, 390, 425, 427, 428, 435, 436, 444, 446, 450, 452, 462, 463, 465, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483], "repr1": 321, "repr_textiowrapp": 321, "repr_typ": 321, "reprenum": [211, 473], "repres": [5, 6, 7, 9, 11, 13, 17, 20, 22, 25, 33, 39, 42, 45, 47, 55, 58, 60, 63, 64, 66, 68, 73, 77, 84, 85, 92, 94, 95, 96, 99, 102, 103, 106, 109, 110, 120, 133, 139, 144, 146, 151, 153, 158, 167, 176, 177, 183, 186, 191, 194, 197, 199, 201, 203, 205, 206, 208, 209, 213, 215, 221, 225, 242, 243, 244, 248, 250, 251, 252, 253, 255, 258, 259, 262, 266, 267, 268, 270, 271, 272, 275, 276, 281, 282, 283, 285, 288, 292, 293, 299, 304, 305, 307, 308, 314, 319, 321, 322, 325, 328, 332, 333, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 358, 359, 362, 365, 366, 369, 375, 376, 377, 381, 384, 386, 388, 397, 400, 405, 410, 411, 412, 413, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 430, 432, 435, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "represent": [5, 7, 9, 23, 25, 26, 39, 41, 49, 58, 59, 63, 64, 68, 75, 76, 85, 96, 101, 109, 120, 121, 146, 158, 160, 167, 176, 177, 178, 182, 183, 186, 191, 196, 197, 201, 204, 205, 207, 212, 225, 242, 244, 245, 248, 250, 253, 259, 262, 266, 267, 271, 272, 275, 281, 283, 290, 293, 299, 307, 314, 321, 330, 337, 340, 344, 345, 346, 347, 352, 362, 366, 377, 381, 384, 386, 388, 408, 410, 413, 426, 428, 432, 445, 462, 466, 467, 468, 469, 471, 474, 475, 477, 478, 479, 481, 482, 483, 484], "reprfunc": [57, 63, 75], "reprlib": [23, 68, 182, 254, 452, 470, 483], "reprnam": 183, "reproduc": [68, 85, 110, 201, 234, 290, 348, 362, 395, 417, 426, 456, 475, 480, 481, 483], "reproduct": 426, "republ": 426, "req": [84, 110, 341, 389, 395, 475], "request": [2, 5, 23, 31, 33, 42, 43, 45, 49, 61, 63, 68, 76, 84, 85, 94, 95, 99, 100, 102, 109, 110, 120, 133, 139, 142, 151, 158, 160, 166, 169, 176, 177, 186, 197, 208, 212, 213, 215, 223, 225, 226, 230, 234, 241, 242, 243, 244, 245, 247, 248, 250, 254, 255, 256, 258, 271, 283, 288, 292, 293, 295, 299, 305, 307, 309, 314, 316, 322, 328, 331, 333, 334, 341, 344, 348, 352, 362, 366, 376, 384, 389, 392, 394, 396, 399, 405, 407, 410, 416, 417, 419, 420, 423, 428, 432, 436, 441, 451, 453, 461, 462, 463, 465, 466, 467, 468, 469, 472, 475, 476, 477, 478, 480, 481, 482, 483], "request_count": 160, "request_entity_too_larg": 241, "request_header_fields_too_larg": 241, "request_host": 395, "request_method": [110, 395, 407, 483], "request_queue_s": 338, "request_r": [396, 483], "request_text": 420, "request_timeout": 241, "request_uri": 407, "request_uri_too_long": 241, "request_vers": 245, "requestb": 395, "requested_range_not_satisfi": 241, "requestedexecutionlevel": 483, "requesthandl": 420, "requesthandlerclass": [245, 338, 407], "requestinterrupt": 102, "requestlin": 245, "requestr": 396, "requir": [5, 7, 23, 28, 33, 35, 42, 45, 51, 58, 59, 63, 64, 68, 71, 72, 73, 75, 76, 79, 84, 85, 89, 92, 93, 94, 95, 100, 101, 102, 106, 108, 109, 110, 112, 115, 118, 132, 138, 139, 149, 157, 158, 161, 167, 169, 170, 177, 181, 183, 184, 186, 189, 191, 193, 194, 195, 196, 200, 201, 202, 203, 207, 208, 212, 213, 221, 226, 228, 234, 235, 243, 245, 247, 248, 250, 252, 253, 255, 257, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 280, 281, 283, 288, 292, 293, 295, 299, 301, 305, 307, 308, 314, 319, 322, 328, 330, 332, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 356, 358, 361, 362, 365, 366, 369, 375, 376, 378, 381, 384, 385, 386, 387, 388, 394, 395, 397, 399, 405, 410, 413, 414, 415, 416, 417, 419, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 441, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "require_": 483, "require_int": 466, "required_on": 362, "requires_android_level": 483, "requires_bz2": 362, "requires_dist": 307, "requires_docstr": 362, "requires_fork": 483, "requires_freebsd_vers": 362, "requires_gzip": 362, "requires_hashdigest": 483, "requires_ieee_754": 362, "requires_limited_api": 362, "requires_linux_vers": 362, "requires_lzma": 362, "requires_mac_vers": 362, "requires_multiprocessing_queu": 483, "requires_python": [251, 307], "requires_resourc": 362, "requires_subprocess": 483, "requires_zlib": [362, 483], "requot": [196, 205], "rer": 483, "rerais": [23, 169, 191, 283, 344, 353, 427, 428, 483], "rerum": 103, "rerun": [432, 470, 483], "res": [34, 42, 45, 79, 103, 106, 139, 242, 283, 319, 337, 340, 483], "resampl": 343, "rescan": [158, 302], "reschedul": 139, "rescu": 213, "research": [69, 95, 426, 483], "reselect": 483, "resembl": [76, 94, 177, 225, 243, 293, 297, 331, 455, 464, 468, 469, 481, 483], "resent": [203, 209, 271, 335], "resent_cc": 209, "resent_to": 209, "resequenc": 475, "reserv": [28, 49, 61, 68, 94, 255, 259, 299, 314, 319, 322, 333, 339, 344, 365, 405, 410, 419, 422, 426, 428, 436, 443, 455, 463, 468, 470, 475, 480, 481, 483], "reserved_futur": 398, "reserved_keyword": 431, "reserved_microsoft": 398, "reserved_nc": 398, "reset": [17, 33, 59, 85, 94, 95, 110, 138, 144, 155, 157, 158, 160, 170, 177, 186, 190, 206, 212, 213, 214, 218, 240, 245, 247, 250, 267, 283, 293, 295, 301, 326, 328, 333, 337, 341, 344, 356, 358, 362, 365, 366, 375, 380, 384, 388, 400, 408, 412, 413, 416, 425, 427, 435, 464, 468, 475, 476, 477, 478, 483], "reset_cont": 241, "reset_mock": [389, 479, 483], "reset_peak": [382, 482], "reset_prog_mod": 177, "reset_shell_mod": 177, "reset_tzpath": 425, "resetbuff": 157, "resetid": [293, 483], "resetlocal": [266, 473, 474, 483], "resetopt": 375, "resetscreen": 384, "resetti": 177, "resetwarn": [400, 475], "reshap": 261, "reshuffl": 318, "resid": [102, 200, 230, 271, 293, 313, 322, 342, 432, 462, 483], "resign": 92, "resili": 483, "resist": [106, 235, 332, 463, 469, 476, 483], "resiz": [5, 9, 28, 42, 54, 56, 60, 64, 176, 177, 258, 278, 333, 344, 369, 375, 376, 384, 388, 478, 480, 483], "resize_term": 177, "resizemod": 384, "resizeterm": 177, "resolut": [63, 68, 75, 76, 85, 87, 93, 97, 100, 116, 118, 183, 214, 216, 225, 226, 232, 234, 245, 255, 293, 294, 295, 299, 308, 337, 344, 366, 427, 428, 432, 440, 465, 467, 476, 477, 478, 479, 481, 482, 483], "resolv": [34, 68, 75, 85, 101, 102, 120, 128, 139, 167, 176, 183, 191, 193, 250, 251, 252, 255, 259, 267, 268, 292, 293, 296, 302, 308, 314, 332, 337, 348, 352, 385, 386, 388, 411, 412, 413, 415, 416, 417, 429, 455, 461, 464, 476, 477, 478, 479, 480, 481, 483], "resolve_attr": 291, "resolve_bas": [385, 428, 480, 483], "resolve_beneath": 483, "resolve_dotted_attribut": 466, "resolve_nam": [250, 302, 482, 483], "resolveent": [415, 416], "resort": [101, 184, 266, 267, 464], "resourc": [7, 23, 33, 63, 68, 84, 85, 91, 100, 110, 119, 120, 132, 133, 135, 138, 142, 169, 193, 212, 213, 226, 242, 248, 250, 251, 254, 257, 267, 280, 283, 293, 299, 302, 329, 332, 337, 341, 344, 352, 362, 365, 369, 376, 382, 388, 391, 394, 395, 398, 400, 405, 413, 416, 419, 428, 432, 455, 465, 467, 468, 469, 473, 475, 476, 479, 482, 483], "resource_nam": 362, "resource_path": [250, 253], "resource_shar": 483, "resource_track": 483, "resourcedeni": 362, "resourcehandl": 483, "resourceload": [250, 480, 483], "resourcemanag": 169, "resourceread": [250, 252, 253, 474, 480, 483], "resourcewarn": [23, 68, 125, 187, 213, 227, 293, 348, 362, 388, 400, 450, 475, 479, 483], "resp": [158, 266, 288, 307, 478], "respect": [5, 7, 22, 23, 31, 33, 34, 39, 47, 49, 64, 72, 73, 75, 76, 85, 93, 94, 101, 102, 103, 106, 108, 112, 120, 132, 135, 139, 141, 149, 151, 158, 163, 167, 176, 177, 183, 186, 191, 193, 194, 196, 208, 215, 225, 230, 243, 245, 250, 253, 258, 262, 267, 268, 269, 270, 275, 278, 283, 293, 299, 308, 309, 322, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 358, 365, 366, 375, 376, 384, 386, 388, 397, 411, 426, 428, 430, 432, 436, 455, 456, 462, 464, 466, 468, 470, 474, 475, 476, 477, 479, 480, 481, 482, 483], "respect_handler_level": [102, 269, 478, 483], "respond": [110, 242, 245, 247, 269, 313, 337, 341, 352, 369, 407, 419, 420, 469, 483], "respons": [5, 23, 33, 34, 45, 61, 63, 64, 68, 73, 76, 79, 93, 94, 95, 101, 102, 109, 110, 133, 135, 137, 155, 169, 177, 179, 183, 191, 196, 242, 243, 245, 248, 250, 254, 256, 266, 267, 288, 305, 314, 325, 335, 337, 338, 340, 341, 343, 347, 348, 358, 386, 388, 390, 393, 412, 419, 420, 421, 425, 426, 428, 430, 432, 441, 451, 461, 462, 465, 468, 469, 473, 475, 476, 477, 478, 480, 481, 483], "responseerror": 483, "responsenotreadi": 242, "ressembl": 200, "rest": [9, 64, 77, 85, 95, 100, 101, 102, 103, 106, 112, 120, 122, 128, 151, 161, 177, 186, 193, 213, 223, 226, 247, 267, 276, 292, 293, 302, 319, 323, 344, 362, 376, 378, 419, 427, 428, 431, 435, 436, 441, 462, 464, 465, 467, 468, 469, 470, 472, 474, 476, 477, 480, 482, 483], "restart": [33, 102, 177, 212, 247, 268, 297, 333, 361, 366, 468, 469, 478, 480, 481, 483], "restart_cmd": 102, "restart_ev": 353, "restat": 308, "restkey": 175, "reston": 426, "restor": [13, 17, 22, 23, 27, 33, 63, 75, 92, 102, 132, 158, 169, 170, 171, 177, 186, 190, 191, 243, 247, 255, 258, 266, 292, 299, 301, 319, 320, 324, 340, 348, 352, 358, 361, 362, 365, 376, 383, 384, 388, 400, 405, 428, 462, 464, 465, 467, 468, 474, 477, 480, 482, 483], "restore_env": 483, "restore_sign": 348, "restrict": [7, 33, 42, 58, 68, 73, 75, 76, 93, 100, 102, 106, 115, 120, 158, 176, 177, 183, 186, 190, 205, 223, 225, 230, 235, 247, 256, 257, 262, 283, 293, 298, 308, 312, 319, 337, 340, 341, 344, 345, 346, 348, 353, 354, 356, 365, 366, 386, 410, 413, 419, 420, 426, 427, 428, 430, 431, 435, 436, 455, 461, 463, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "restricted_load": 299, "restrictedunpickl": 299, "restructur": [307, 462, 463, 468, 483], "restructuredtext": [0, 68, 80, 103, 193, 483], "restval": 175, "restyp": [176, 467], "result": [5, 7, 9, 13, 23, 26, 31, 33, 34, 39, 42, 45, 47, 49, 53, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 84, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 104, 106, 109, 117, 120, 122, 123, 125, 126, 129, 133, 135, 137, 138, 139, 141, 142, 144, 146, 151, 152, 158, 159, 160, 163, 166, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 196, 197, 199, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 256, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 311, 318, 319, 321, 322, 324, 328, 331, 332, 333, 335, 337, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 390, 395, 397, 400, 403, 405, 410, 411, 413, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 441, 443, 446, 450, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "resultclass": 388, "resulttokenwithmetadata": 431, "resulttyp": 483, "resum": [33, 95, 133, 139, 169, 177, 178, 191, 255, 283, 293, 297, 299, 314, 353, 361, 365, 427, 428, 430, 464, 465, 466, 467, 473, 483], "resume_read": [130, 133, 480, 483], "resume_writ": [130, 133], "resumpt": [293, 353, 479, 483], "resund": 101, "resurrect": [13, 22, 27, 352, 362, 365, 428, 475, 482, 483], "resynchron": [109, 476], "ret": 407, "retain": [73, 120, 167, 169, 177, 186, 190, 196, 205, 208, 213, 247, 250, 255, 261, 267, 271, 293, 331, 340, 341, 384, 394, 419, 426, 428, 430, 435, 476, 477, 479, 481, 483], "retcod": 348, "retir": [463, 483], "retr": [223, 305], "retrain": 470, "retrbinari": 223, "retri": [68, 106, 110, 213, 269, 293, 328, 329, 333, 337, 341, 348, 373, 395, 429, 441, 464, 465, 469, 473, 483], "retriev": [5, 11, 23, 33, 39, 45, 49, 54, 56, 61, 63, 68, 72, 73, 75, 84, 85, 92, 93, 95, 106, 110, 139, 151, 166, 167, 171, 176, 177, 181, 184, 189, 196, 203, 207, 208, 225, 226, 234, 241, 242, 243, 247, 248, 258, 265, 266, 268, 271, 283, 293, 299, 302, 304, 305, 315, 319, 322, 328, 330, 332, 340, 344, 345, 352, 365, 382, 386, 395, 405, 413, 427, 428, 430, 436, 455, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 480, 481, 482, 483], "retriv": 483, "retrlin": 223, "retryabl": 293, "retrycancel": 373, "retryfactor": 269, "retrymax": 269, "retrystart": 269, "return": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 78, 79, 84, 86, 87, 92, 94, 95, 96, 98, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 114, 115, 116, 117, 118, 120, 122, 125, 126, 130, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 172, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 225, 226, 227, 228, 230, 231, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 287, 288, 289, 291, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 443, 446, 449, 450, 451, 452, 455, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "return_annot": 255, "return_const": [191, 474, 483], "return_except": [134, 139, 483], "return_gener": [191, 473, 483], "return_ok": 243, "return_self": 386, "return_stmt": [431, 436], "return_typ": 431, "return_valu": [68, 144, 187, 191, 390, 475, 477, 479, 483], "return_when": [139, 166], "returncod": [132, 133, 137, 348, 478, 481, 483], "returnfram": 144, "returns_egg": 386, "returntyp": 386, "retval": [297, 353, 463], "reunion": 200, "reus": [73, 76, 80, 128, 138, 158, 166, 169, 176, 184, 193, 214, 226, 250, 292, 293, 319, 337, 338, 341, 347, 358, 362, 364, 365, 427, 432, 435, 467, 474, 475, 477, 479, 480, 481, 482, 483], "reusabl": [68, 114, 315, 386, 477], "reuse_address": [126, 136, 473, 479, 480, 481, 482, 483], "reuse_port": [126, 136, 337], "reuseaddr": 483, "reuseport": 483, "rev": 440, "revamp": [469, 475], "reveal": [93, 96, 183, 386, 468, 475, 483], "reveal_typ": [386, 473, 483], "revel": 472, "revenu": 426, "revers": [34, 38, 68, 73, 80, 92, 93, 95, 108, 109, 121, 141, 158, 160, 161, 169, 177, 181, 183, 186, 191, 211, 214, 225, 236, 255, 259, 261, 283, 289, 293, 308, 314, 319, 331, 340, 344, 378, 382, 385, 386, 388, 394, 428, 440, 442, 450, 462, 465, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483, 484], "reverse_ord": 308, "reverse_point": [259, 478, 483], "revert": [102, 170, 242, 243, 324, 358, 362, 455, 469, 476, 479, 483], "review": [110, 169, 235, 340, 465, 470, 479, 481, 483], "revis": [33, 68, 109, 110, 347, 408, 426, 462, 467, 468, 471, 479, 480, 483], "revisit": [347, 483], "revoc": [341, 477, 483], "revok": 328, "revolv": 193, "rewind": [117, 258, 349, 401], "reword": 483, "rework": [68, 213, 288, 463, 464, 465, 467, 469, 475, 479, 483, 484], "rewrap": [201, 226], "rewrit": [100, 200, 218, 293, 378, 462, 465, 467, 469, 470, 478, 481, 483], "rewrite_prefix": 413, "rewritenam": 122, "rewritten": [42, 135, 193, 194, 235, 283, 436, 462, 463, 464, 465, 468, 469, 471, 475, 476, 477, 479, 480, 481, 483], "rewrot": [462, 465, 483], "rexec": 465, "rexx": 466, "reykjavik": 467, "reynold": 319, "rezinski": 84, "rf": [85, 331, 435, 483], "rfactor": 141, "rfc": [68, 101, 102, 106, 110, 126, 143, 146, 158, 175, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 207, 208, 209, 223, 230, 235, 237, 241, 242, 243, 244, 245, 248, 254, 256, 259, 262, 266, 269, 271, 272, 288, 305, 317, 327, 335, 337, 341, 346, 347, 359, 366, 393, 394, 395, 407, 408, 419, 451, 462, 464, 466, 467, 468, 469, 472, 475, 476, 478, 479, 480, 481, 482, 483], "rfc2047": 483, "rfc2087": 248, "rfc2109": 243, "rfc2109_as_netscap": 243, "rfc2231": 483, "rfc2822": [464, 483], "rfc2965": 243, "rfc4122": 483, "rfc5424": 68, "rfc6555": 126, "rfc8018": 235, "rfc822": [196, 197, 204, 205, 206, 207, 248, 464, 466], "rfc_4122": 398, "rfcomm": 483, "rfcs": [151, 158, 194, 196, 201, 202, 203, 205, 208, 209, 305, 465, 478, 483], "rfile": [245, 338], "rfind": [102, 278, 344, 468, 475, 476, 478, 483], "rfs": 212, "rg": 466, "rgb": [92, 94, 162, 177, 206, 249, 292, 369, 384, 449, 477, 483], "rgb_to_hl": [162, 483], "rgb_to_hsv": 162, "rgb_to_yiq": 162, "rgba": 449, "rgbimg": 468, "rgen": [466, 483], "rgensen": 483, "rgid": 293, "rglob": [142, 296, 473, 474, 483], "rgs": 297, "rh": 102, "rhapsodi": 483, "rhat": 467, "rhel": [473, 480, 483], "rhel7": 473, "rhel8": 483, "rhode": [482, 483], "rhoncus": 149, "rhs": [191, 476], "rhythm": 464, "ric": [109, 473, 476, 477, 481, 483], "rica": 413, "riccardo": 483, "ricciardi": 465, "rich": [63, 64, 68, 75, 112, 160, 197, 225, 226, 291, 369, 375, 419, 428, 430, 432, 470, 475, 480, 482, 483, 484], "richard": [465, 467, 468, 476, 477, 483], "richcmpfunc": [57, 63, 75], "richer": 479, "richest": 200, "richi": 465, "richter": 468, "rick": 483, "rid": [77, 463, 483], "ridg": 369, "ridicul": 193, "right": [7, 15, 42, 47, 64, 68, 72, 73, 85, 92, 95, 102, 103, 106, 109, 112, 122, 141, 144, 146, 151, 155, 158, 160, 169, 176, 177, 183, 186, 190, 191, 193, 196, 213, 216, 225, 226, 235, 247, 248, 255, 275, 288, 289, 292, 293, 295, 299, 302, 308, 314, 319, 330, 337, 341, 344, 345, 364, 369, 374, 375, 376, 384, 388, 389, 400, 403, 404, 411, 425, 426, 427, 428, 430, 431, 435, 436, 452, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 477, 479, 480, 481, 483], "right_list": 216, "right_on": 216, "right_volum": 295, "rightarrow": 247, "rightmost": [35, 147, 158, 160, 177, 186, 261, 293, 344, 430, 466], "rightshift": 377, "rightshiftequ": 377, "rigo": [466, 467, 468, 483], "rigor": 95, "rigour": 483, "riku": 468, "rindex": [344, 469, 475, 476], "ring": [340, 464, 467, 468, 469], "rip": 465, "ripemd160": 475, "risc": [107, 483], "risco": [463, 470], "riscv": 483, "risk": [5, 42, 43, 73, 85, 95, 103, 213, 268, 271, 283, 292, 299, 362, 384, 413, 421, 426, 468, 475, 480, 481, 483], "riski": [76, 193, 483], "risus": 149, "riti": 477, "ritrovai": 467, "rittau": [472, 473], "ritual": 462, "ritvanen": 483, "rivera": 483, "rizvi": 483, "rjsmin": 483, "rjust": [344, 446, 466, 476], "rk1048": 158, "rkl": 344, "rl_attempted_completion_funct": 320, "rl_complet": 320, "rl_completer_word_break_charact": 320, "rl_completion_display_matches_hook": 320, "rl_completion_match": 320, "rl_completion_typ": 320, "rl_insert_text": 320, "rl_line_buff": 320, "rl_parse_and_bind": 320, "rl_pre_input_hook": 320, "rl_read_init_fil": 320, "rl_redisplay": 320, "rl_startup_hook": 320, "rlcomplet": [68, 114, 254, 320, 334, 363, 467, 468, 483], "rldecode_hqx": 473, "rlecode_hqx": [473, 482, 483], "rledecode_hqx": [482, 483], "rlim_cur": 322, "rlim_infin": 322, "rlimit_a": 322, "rlimit_cor": [322, 362], "rlimit_cpu": [322, 483], "rlimit_data": 322, "rlimit_fs": [322, 483], "rlimit_kqueu": [322, 483], "rlimit_memlock": 322, "rlimit_msgqueu": [322, 477], "rlimit_nic": [322, 477], "rlimit_nofil": 322, "rlimit_nproc": 322, "rlimit_npt": [322, 477], "rlimit_ofil": 322, "rlimit_rss": 322, "rlimit_rtprio": [322, 477], "rlimit_rttim": [322, 477], "rlimit_sbs": [322, 477], "rlimit_sigpend": [322, 477], "rlimit_stack": 322, "rlimit_swap": [322, 477], "rlimit_vmem": 322, "rlist": 328, "rlock": [68, 164, 169, 283, 468, 472, 475, 478, 483], "rm": [85, 89, 296, 331, 483], "rm5epjai72qck3rgbpw3vpnfzy5ozothi": 235, "rmail": 271, "rmd": 223, "rmdir": [84, 142, 293, 296, 362, 476], "rmff": 153, "rmode": 384, "rms": 141, "rmtree": [68, 84, 142, 219, 293, 296, 362, 402, 473, 474, 476, 480, 481, 483], "rn": [108, 481], "rng": 337, "rnopen": 330, "ro": [58, 85, 340], "roach": [446, 479, 481, 483], "road": [93, 244], "roadblock": 100, "roast": 200, "robert": [465, 467, 468, 469, 478, 480, 483], "roberto": 483, "robin": [293, 413, 442, 481, 483], "robla": 483, "robot": [68, 254, 256, 384, 392, 462, 483], "robotfilepars": [396, 479, 483], "robotpars": [68, 254, 256, 392, 462, 470, 483], "robotstxt": 396, "robust": [76, 139, 151, 184, 255, 308, 333, 469, 475, 477, 478, 483], "roc": 466, "rocco": 483, "rock": [85, 109, 120], "rocket": 472, "rocket_launch": 243, "rocki": [244, 468], "roddi": 469, "rodman": 483, "rodol": [475, 476, 481], "rodola": [469, 474, 475, 478, 480, 481, 483], "rodolfo": 475, "rodrigu": 483, "roger": [471, 482, 483], "roja": 481, "role": [158, 341, 413, 470, 475, 481, 483], "rolf": [479, 483], "roll": [160, 183, 269, 340, 362, 388, 440, 467, 468, 483], "rollback": [340, 467, 468, 473, 483], "rollov": [269, 360, 477, 483], "roman": [109, 372, 387, 465, 483], "roman8": [466, 483], "romanc": 147, "romberg": 464, "rome": 95, "ron": 475, "ronach": [468, 469, 471, 475, 476, 477], "ronald": [319, 467, 468, 469, 475, 477, 481, 482], "ronni": 479, "roolz": [196, 205], "room": [42, 55, 343, 434, 446, 470, 483], "root": [63, 93, 96, 101, 102, 111, 112, 141, 142, 160, 176, 186, 201, 205, 206, 207, 210, 235, 247, 248, 252, 261, 267, 268, 275, 283, 293, 294, 296, 302, 304, 314, 332, 339, 341, 342, 348, 352, 358, 362, 366, 369, 371, 372, 375, 376, 388, 410, 413, 415, 421, 422, 423, 428, 452, 455, 456, 462, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 481, 482, 483], "root_dir": [142, 231, 332, 472, 474, 483], "rootfd": 293, "rootlogg": 102, "rose": [155, 261, 479, 483], "roseman": [369, 472, 482, 483], "rosemari": 94, "rosen": 308, "rosenberg": [478, 482, 483], "rosenstein": 473, "rosett": [384, 483], "rosetta": 483, "roshan": 474, "roskind": [85, 308], "ross": [319, 469, 471, 476, 482, 483], "rossi": 483, "rossum": [78, 80, 85, 87, 103, 423, 426, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "rot": [160, 464, 483], "rot13": [158, 477, 483], "rot_13": [156, 158], "rot_four": [473, 481, 483], "rot_n": [473, 483], "rot_thre": [473, 483], "rot_two": [473, 483], "rotat": [68, 101, 160, 186, 269, 384, 466, 468, 469, 483], "rotatingfilehandl": [68, 101, 102, 118, 268, 466, 468, 469], "rotatinghandl": 483, "rotation_filenam": 269, "rotor": [465, 466], "rouault": [479, 483], "rougeth": 483, "rough": [85, 93, 102, 109, 202, 226, 243, 252, 261, 275, 281, 283, 292, 293, 302, 344, 362, 365, 385, 428, 436, 462, 468, 469, 480, 482, 483], "rouhani": 483, "roulett": 318, "roumen": 483, "round": [5, 63, 64, 68, 103, 149, 173, 183, 190, 193, 221, 225, 243, 261, 275, 289, 290, 293, 318, 343, 344, 345, 347, 352, 378, 384, 386, 388, 428, 430, 442, 444, 449, 450, 451, 452, 462, 464, 466, 467, 468, 469, 470, 471, 476, 477, 480, 481, 483], "round_05up": 186, "round_ceil": [186, 466], "round_danc": 384, "round_down": [186, 466], "round_floor": [186, 483], "round_half_down": 186, "round_half_even": [186, 466, 483], "round_half_up": 186, "round_up": 186, "round_up_to_power_2": 483, "roundoff": 430, "roundrobin": [160, 261], "roundup": 68, "rout": [95, 110, 212, 385, 452, 464, 465, 469, 477, 483], "routeabl": 477, "router": [99, 259, 337], "routin": [25, 33, 41, 63, 72, 73, 75, 86, 93, 96, 109, 141, 173, 177, 184, 195, 215, 250, 258, 266, 281, 293, 308, 341, 356, 366, 465, 466, 480, 483], "rovner": 467, "row": [35, 68, 73, 85, 175, 225, 261, 298, 369, 376, 378, 384, 435, 442, 467, 471, 475, 478, 479, 483], "row1": 340, "row2": 340, "row_factori": 340, "rowcount": [340, 483], "rowid": 340, "roy": [469, 483], "royalti": 426, "rp": 396, "rpar": [377, 378], "rpartit": [250, 344, 467, 469, 475, 483], "rpath": [456, 460, 472, 483], "rpc": [68, 80, 247, 254, 256, 262, 274, 418, 426, 464, 465, 466, 467, 468, 469, 479, 483], "rpc2": [420, 467], "rpc_path": [420, 467], "rpcrt4": 483, "rpm": [79, 462, 465], "rpmbuild": 483, "rpop": 305, "rrate": 396, "rrggbb": 369, "rrrgggbbb": 369, "rrrrggggbbbb": 369, "rs": [177, 178], "rsa": [235, 341, 472, 483], "rsampl": 141, "rseen": 190, "rset": [305, 335, 483], "rshift": [122, 291, 431], "rsock": [126, 133, 136], "rsplit": [344, 466, 469, 475, 483], "rsqb": 377, "rss": [80, 464], "rss10": 467, "rst": [188, 296, 456, 460, 480, 483], "rstenau": [469, 483], "rstlint": [474, 483], "rstrip": [85, 133, 136, 137, 188, 247, 284, 344, 451, 465, 483], "rstripextens": 483, "rsync": 394, "rsyslog": 269, "rt": [149, 225, 234, 270, 362, 384, 483], "rte": 483, "rtld_": [352, 483], "rtld_deepbind": [293, 476], "rtld_global": [176, 293, 352, 476, 481, 483], "rtld_lazi": [293, 352, 476], "rtld_local": [176, 293, 476, 481, 483], "rtld_nodelet": [293, 476], "rtld_noload": [293, 476], "rtld_now": [176, 293, 476], "rtos": [472, 483], "rtsp": 394, "rtsps": [394, 483], "rtspu": 394, "ru": [85, 218, 465], "ru_idrss": 322, "ru_inblock": 322, "ru_isrss": 322, "ru_ixrss": 322, "ru_majflt": 322, "ru_maxrss": 322, "ru_minflt": 322, "ru_msgrcv": 322, "ru_msgsnd": 322, "ru_nivcsw": 322, "ru_nsign": 322, "ru_nswap": 322, "ru_nvcsw": 322, "ru_oublock": 322, "ru_stim": 322, "ru_utim": 322, "rubi": [95, 343, 452], "rudiment": 109, "rudimentari": 478, "ruff": 483, "rui": 472, "ruid": 293, "rule": [23, 28, 33, 61, 63, 68, 85, 93, 94, 95, 100, 102, 103, 106, 109, 120, 151, 161, 176, 178, 181, 183, 186, 190, 194, 196, 202, 203, 205, 207, 208, 209, 221, 222, 225, 243, 244, 247, 259, 266, 275, 292, 319, 345, 347, 348, 365, 366, 375, 386, 394, 400, 411, 415, 427, 428, 429, 430, 431, 432, 434, 435, 436, 462, 463, 465, 467, 468, 469, 470, 474, 475, 476, 483], "rule_nam": 431, "ruler": 155, "rume": [479, 483], "run": [4, 23, 28, 33, 34, 42, 45, 51, 59, 63, 64, 68, 72, 73, 76, 77, 79, 81, 84, 85, 86, 89, 92, 93, 95, 96, 100, 101, 106, 107, 109, 112, 115, 120, 122, 123, 124, 125, 126, 129, 132, 133, 134, 135, 136, 137, 138, 144, 151, 152, 157, 163, 166, 167, 169, 170, 173, 176, 177, 181, 186, 187, 193, 200, 203, 208, 213, 214, 226, 228, 230, 235, 236, 242, 243, 244, 245, 250, 251, 255, 261, 266, 267, 268, 269, 271, 279, 283, 288, 292, 293, 296, 297, 308, 313, 314, 320, 322, 323, 324, 325, 331, 332, 333, 334, 337, 338, 340, 341, 344, 347, 348, 352, 353, 354, 355, 356, 362, 364, 365, 366, 368, 369, 376, 380, 382, 384, 386, 389, 390, 399, 400, 403, 405, 407, 413, 420, 421, 427, 428, 429, 430, 431, 432, 435, 440, 443, 451, 452, 453, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "run_cgi": 483, "run_command": [34, 142, 455], "run_coroutine_threadsaf": [124, 125, 139, 472, 478, 479, 483], "run_dialog": 96, "run_docstring_exampl": 193, "run_doctest": [382, 483], "run_fil": [142, 455], "run_filenam": 34, "run_forev": [126, 130, 483], "run_glob": 382, "run_in_executor": [125, 126, 130, 139, 482, 483], "run_in_subinterp": 362, "run_interactivehook": [142, 352], "run_mod": 104, "run_modul": [34, 142, 324, 455, 483], "run_nam": 324, "run_onc": 407, "run_path": [324, 455, 469, 483], "run_python_until_end": [362, 483], "run_queri": [386, 473], "run_script": 279, "run_setup": 483, "run_startup": [142, 455], "run_stdin": [142, 455], "run_swallowed_dialog": 96, "run_test": 483, "run_unittest": 483, "run_until_complet": [126, 130, 478, 479, 481, 483], "run_user_cod": 381, "run_with_local": 362, "run_with_tz": 362, "runaway": 462, "runcal": [144, 297, 308, 481], "runcod": 157, "runctx": [144, 308, 380], "runev": [144, 297], "runfunc": [380, 481], "runmainfromimport": 483, "runnabl": [102, 483], "runner": [68, 102, 123, 124, 193, 388, 400, 466, 469, 473, 483], "runni": 441, "runpi": [68, 114, 156, 254, 280, 382, 455, 467, 468, 469, 471, 472, 477, 483], "runsourc": [157, 340], "runtest": [193, 388], "runtest_mp": 483, "runtim": [13, 24, 27, 33, 35, 42, 51, 52, 59, 66, 68, 73, 75, 76, 77, 85, 87, 88, 96, 100, 101, 109, 113, 140, 142, 163, 167, 176, 182, 188, 191, 213, 225, 250, 254, 257, 268, 269, 292, 293, 311, 314, 340, 344, 348, 352, 354, 369, 382, 386, 400, 404, 409, 411, 421, 424, 427, 428, 429, 432, 436, 440, 455, 456, 461, 463, 465, 469, 470, 472, 474, 476, 477, 478, 479, 482, 483], "runtime_check": [386, 472, 474, 481, 483], "runtimeerror": [23, 95, 107, 115, 121, 126, 127, 132, 137, 138, 139, 140, 166, 169, 170, 213, 218, 225, 258, 261, 268, 283, 293, 296, 319, 335, 344, 348, 352, 356, 362, 365, 386, 406, 422, 428, 430, 436, 443, 450, 465, 466, 467, 469, 474, 476, 478, 479, 480, 481, 483], "runtimeexcept": 483, "runtimewarn": [23, 45, 125, 126, 213, 337, 352, 388, 400, 450, 475, 481, 483], "rupprecht": 483, "rusag": 483, "rusage_": 322, "rusage_both": 322, "rusage_children": 322, "rusage_self": 322, "rusage_thread": 322, "ruscii": 158, "rush": [426, 462], "ruslan": 483, "russ": 462, "russel": 466, "russian": [109, 158], "russo": 483, "rust": 441, "rutrum": 149, "rv": [18, 35, 215], "rvalu": 344, "rw": [89, 94, 102, 223, 295, 332, 340, 348, 475, 478, 479, 480], "rwald": [465, 466, 467, 481], "rwf_append": [293, 483], "rwf_dsync": 293, "rwf_hipri": 293, "rwf_nowait": 293, "rwf_sync": 293, "rwx": [94, 332], "rwxr": [89, 332], "rwxrwxrwx": [342, 476], "rx": [163, 319], "rx_addr": 337, "ry": [480, 483], "ryan": [469, 476, 477, 479, 480, 483], "rykoff": 481, "ryosuk": 483, "rzenichstra": 109, "rzenichstrass": 109, "s1": [18, 109, 161, 190, 266, 337, 465], "s150": 102, "s2": [18, 109, 161, 190, 266, 337, 465], "s390x": 483, "s92p": 464, "s_enfmt": [293, 342], "s_i": 141, "s_iexec": [293, 342], "s_ifblk": [293, 342], "s_ifchr": [293, 342, 483], "s_ifdir": 342, "s_ifdoor": [342, 477, 483], "s_ififo": [293, 342], "s_iflnk": [342, 481], "s_ifmt": 342, "s_ifport": [342, 477, 483], "s_ifreg": [293, 342], "s_ifsock": 342, "s_ifwht": [342, 477, 483], "s_imod": 342, "s_in": 234, "s_iread": [293, 342], "s_irgrp": [293, 342], "s_iroth": [293, 342], "s_irusr": [293, 342, 358], "s_irwxg": [293, 342], "s_irwxo": [293, 342], "s_irwxu": [293, 342], "s_is": 342, "s_isblk": 342, "s_ischr": 342, "s_isdir": [293, 342], "s_isdoor": [342, 483], "s_isfifo": 342, "s_isgid": [293, 342], "s_islnk": 342, "s_isport": [342, 483], "s_isreg": 342, "s_issock": 342, "s_isuid": [293, 342], "s_isvtx": [293, 342], "s_iswht": [342, 483], "s_iwgrp": [293, 342, 358], "s_iwoth": [293, 342, 358], "s_iwrit": [293, 332, 342], "s_iwusr": [293, 342, 358], "s_ixgrp": [293, 342, 358], "s_ixoth": [293, 342, 358], "s_ixusr": [293, 342, 358], "s_jis": 158, "s_jisx0213": 158, "s_out": 234, "s_server": 362, "sa": [109, 150, 183, 337], "sa_onstack": 483, "sabella": [479, 480, 481, 483], "sabl": 475, "sad": [94, 470, 483], "sadruddin": 466, "sae": 337, "safari": 403, "safe": [5, 22, 23, 33, 34, 42, 45, 49, 51, 56, 59, 63, 64, 68, 72, 73, 75, 76, 85, 96, 102, 125, 129, 130, 132, 133, 134, 137, 138, 139, 143, 151, 160, 169, 176, 177, 181, 193, 214, 235, 247, 250, 258, 266, 267, 268, 270, 271, 283, 293, 299, 312, 324, 325, 328, 330, 331, 332, 334, 337, 340, 341, 348, 362, 365, 386, 394, 398, 400, 415, 461, 462, 463, 465, 468, 469, 474, 475, 476, 480, 481, 483], "safe_builtin": 299, "safe_path": [33, 34, 352, 473], "safe_substitut": [345, 452, 466], "safechildwatch": [132, 474, 483], "safeconfigpars": [473, 474, 475, 483], "safeguard": 464, "safer": [100, 193, 299, 465, 466, 474, 483], "saferepr": 307, "safest": [92, 176, 271, 483], "safethread": 84, "safeti": [33, 68, 73, 94, 118, 139, 200, 255, 283, 292, 324, 340, 469, 471, 475, 483], "safetransport": [419, 483], "safeuuid": [398, 483], "saha": [479, 483], "sai_servic": 483, "said": [85, 92, 93, 167, 283, 427, 428, 435, 449, 463, 464, 479, 483], "saihadhav": 483, "saimadhav": [480, 481, 483], "sajip": [101, 102, 465, 466, 468, 469, 471, 475, 476, 477, 478, 479, 480, 481, 482], "sake": [92, 102, 128, 205, 293, 331, 432, 465, 483], "sakki": [261, 469], "salad": 344, "salari": [225, 344, 440], "sale": [471, 475], "sales_item": 412, "salesl": 475, "salgado": [472, 473, 478, 481, 482, 483], "salient": 475, "salli": 476, "salmela": 95, "salt": [173, 235, 326, 428, 455, 475, 476, 483], "salt1": 235, "salt2": 235, "salt_siz": 235, "salut": 200, "sam": [81, 294, 426, 462, 473, 483], "same": [5, 6, 7, 9, 13, 18, 20, 22, 23, 25, 26, 27, 28, 33, 34, 39, 41, 42, 45, 46, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 92, 93, 94, 95, 96, 100, 101, 103, 106, 109, 110, 112, 115, 120, 122, 132, 133, 135, 137, 138, 139, 141, 144, 151, 157, 158, 163, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 201, 202, 203, 205, 207, 208, 209, 213, 215, 216, 218, 220, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 288, 289, 292, 293, 295, 296, 297, 299, 305, 307, 308, 309, 312, 313, 314, 319, 320, 321, 322, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 378, 381, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 403, 405, 410, 413, 415, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 482, 483], "same_fil": 216, "same_quantum": 186, "samefil": [294, 296, 477, 478, 483], "samefileerror": [332, 477, 483], "sameopenfil": 294, "sameorigin": 341, "samesit": [244, 483], "samestat": [294, 296, 477], "sami": 483, "samodya": 473, "samp": 465, "sampl": [73, 75, 84, 93, 94, 95, 102, 104, 106, 117, 141, 155, 175, 176, 193, 247, 279, 295, 299, 307, 308, 318, 319, 336, 343, 349, 358, 367, 376, 395, 401, 413, 427, 441, 451, 461, 463, 464, 465, 468, 469, 473, 475, 477, 479, 480, 481, 483], "sample_config": [167, 469], "sample_nam": 389, "sampleproject": 307, "sampler": 295, "samples": 117, "sampletest": 388, "sampletestcas": 388, "sampling_r": 336, "sampmodul": 465, "sampwidth": [117, 336, 349, 401], "samson": 483, "samstag": 183, "samuel": [103, 235, 337, 426, 465, 467, 479, 482, 483], "samwys": 478, "san": [341, 396], "sanad": 483, "sand": 319, "sandbox": [257, 324, 352, 483], "sander": 483, "sanderson": [481, 483], "sandler": 475, "sandov": [479, 480, 483], "sandro": 476, "sane": [63, 177, 183, 319, 483], "sanit": [200, 456, 483], "saniti": [64, 456, 477, 483], "sanjay": 483, "santa": 426, "santoso": 483, "sanyam": [480, 483], "sape": 442, "sapien": 149, "sapin": 483, "sapphir": 483, "saratoga": 426, "sarcast": 464, "sarnowski": 483, "sas": 343, "sat": [102, 150, 183, 341, 343], "satisfact": 341, "satisfactorili": 73, "satisfi": [73, 110, 181, 221, 234, 255, 258, 268, 275, 365, 428, 432, 475], "satur": 475, "saturday": [94, 150, 183, 211], "saturn": [94, 343], "saus": 225, "sausag": [160, 225, 344], "sauthoff": 472, "savag": 459, "savannah": 483, "save": [13, 22, 23, 27, 33, 42, 63, 68, 72, 73, 75, 85, 93, 94, 95, 100, 101, 102, 106, 120, 139, 149, 151, 152, 155, 167, 169, 177, 183, 200, 209, 226, 243, 247, 261, 266, 269, 270, 271, 292, 293, 299, 308, 313, 319, 320, 334, 340, 352, 362, 365, 366, 368, 369, 381, 384, 400, 405, 419, 425, 427, 428, 464, 466, 467, 468, 469, 470, 471, 474, 475, 477, 480, 482, 483], "save_env": 483, "save_histori": 320, "savea": 189, "savecount": 140, "saved_at": 96, "saved_gam": 96, "saved_game_model": 96, "saved_st": 96, "savedcwd": [96, 362], "savefiledialog": 189, "savekey": [142, 405], "savesign": 362, "savetti": 177, "saw": 73, "saw_foo": 292, "sawyer": 483, "sax": [68, 254, 273, 409, 410, 411, 412, 451, 462, 463, 472, 479, 480, 481, 483], "sax2": [68, 254, 273, 409, 411, 415], "sax2dom": 412, "sax2lib": 415, "saxexcept": [68, 273], "saxnotrecognizedexcept": [414, 416], "saxnotsupportedexcept": [414, 416], "saxparseexcept": [414, 415], "saxutil": [68, 254, 273, 414], "say": [72, 73, 75, 77, 85, 93, 99, 102, 103, 106, 109, 133, 139, 183, 193, 202, 226, 230, 243, 247, 251, 266, 267, 268, 269, 271, 283, 348, 355, 395, 413, 421, 428, 432, 434, 446, 463, 464, 465, 467, 468, 469, 473, 475, 477, 483], "say_aft": 139, "say_hello": 378, "sayan": 483, "sb": [336, 359], "sbardella": 483, "sbin": [84, 176, 319], "sblondon": 472, "sc22": 352, "sc_iov_max": [293, 337], "sc_minsigstksz": [293, 483], "scala": 472, "scalabl": [328, 462], "scalar": [7, 141, 196, 199, 226, 384, 386, 483], "scale": [132, 318, 328, 343, 376, 386, 462, 465, 468, 479, 480, 483], "scaleb": 186, "scalet": 483, "scaletest": 483, "scan": [18, 85, 93, 95, 101, 106, 158, 177, 193, 228, 230, 245, 293, 319, 328, 369, 386, 428, 429, 455, 464, 465, 467, 469, 475, 478, 483], "scandir": [68, 142, 231, 293, 296, 479, 480, 481, 483], "scandir_path": 293, "scandiriteratortyp": 483, "scanf": [68, 363], "scanner": [319, 357, 378, 477, 483], "scanstr": 483, "scardin": 476, "scare": 103, "scari": 483, "scarlet_pimpernel": 96, "scatter": [337, 464, 465, 469], "scelerisqu": 149, "scenario": [51, 101, 102, 186, 267, 268, 320, 388, 395, 432, 456, 477, 479, 483], "scene": [176, 384, 461], "scgi": 407, "schaaf": [475, 476], "sched": [68, 164, 254, 468, 483], "sched_": 483, "sched_batch": 293, "sched_fifo": 293, "sched_get_priority_max": [293, 476], "sched_get_priority_min": [293, 476], "sched_getaffin": [283, 293, 476, 483], "sched_getparam": [293, 476], "sched_getschedul": [293, 476], "sched_idl": 293, "sched_oth": 293, "sched_param": 293, "sched_prior": 293, "sched_reset_on_fork": 293, "sched_rr": 293, "sched_rr_get_interv": [293, 476], "sched_setaffin": [293, 476, 483], "sched_setparam": [293, 476], "sched_setschedul": [293, 476], "sched_sporad": 293, "sched_yield": [293, 476, 483], "schedul": [33, 68, 80, 84, 108, 115, 118, 125, 126, 164, 252, 255, 322, 333, 352, 366, 376, 430, 464, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 482, 483], "schedulenau": 475, "schema": [68, 93, 118, 281, 340, 469, 483], "scheme": [7, 31, 63, 68, 75, 78, 95, 102, 110, 136, 141, 158, 176, 247, 269, 271, 315, 334, 340, 352, 358, 375, 394, 395, 399, 407, 428, 455, 462, 463, 465, 468, 469, 474, 475, 476, 477, 478, 483], "schemenau": [462, 463, 464, 465, 467, 469, 478, 481], "schevchenko": [472, 483], "schiller": 341, "schlawack": [472, 476, 477, 483], "schmidt": 462, "schmitt": 468, "schneider": [462, 483], "schnell": 468, "schnider": 483, "schoentgen": 483, "school": [186, 347, 465], "schoolbook": 186, "schott": 483, "schouten": 483, "schroeder": [467, 483], "schulenklopp": 483, "schuppeni": 468, "schw": 483, "schwab": 483, "schwager": 483, "schwarschild_black_hol": 472, "schwartz": [85, 108, 468], "schwartzian": 108, "schwarzschild_black_hol": 472, "schwertberg": 463, "sci": 426, "scienc": [95, 106, 365, 478], "scientif": [186, 345, 454, 461, 468], "scientist": 365, "scintilla": 85, "scipi": [343, 444, 451, 454, 461], "scissor": 120, "scm": 303, "scm_": 337, "scm_creds2": [337, 483], "scm_right": 337, "scoket": 107, "scol": 378, "scoop": 470, "scope": [68, 78, 85, 87, 94, 99, 101, 102, 103, 113, 144, 160, 191, 225, 255, 259, 297, 307, 314, 320, 331, 337, 341, 351, 352, 369, 386, 399, 411, 413, 415, 427, 428, 430, 432, 436, 445, 450, 462, 468, 470, 474, 475, 476, 479, 480, 481, 482, 483, 484], "scope_id": [259, 337, 482, 483], "scope_test": 440, "scopeid": 483, "score": [147, 190, 340, 343, 452], "scott": [109, 465, 467, 481, 483], "scram": 476, "scraper": 462, "scratch": [102, 128, 189, 201, 206, 207, 341, 399, 410, 476, 477, 483], "screen": [68, 85, 92, 95, 98, 109, 155, 177, 179, 222, 247, 320, 348, 369, 375, 376, 378, 462, 464, 465, 468, 475, 478, 482, 483], "screennam": [369, 375], "screenshot": 469, "screensiz": 384, "scrict_mod": 483, "script": [33, 34, 35, 66, 68, 72, 73, 75, 79, 85, 87, 98, 101, 102, 103, 104, 110, 112, 120, 152, 163, 169, 188, 191, 193, 213, 222, 228, 230, 240, 244, 245, 250, 251, 267, 279, 292, 297, 308, 309, 311, 313, 324, 330, 334, 340, 352, 354, 355, 362, 369, 376, 378, 386, 388, 395, 399, 403, 420, 421, 429, 432, 434, 435, 436, 443, 450, 453, 455, 456, 458, 460, 462, 463, 464, 465, 466, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "script_basenam": 362, "script_dir": 362, "script_from_exampl": 193, "script_help": [68, 187, 254, 483], "script_nam": [362, 407], "scriptfil": 84, "scriptnam": 102, "scriptsinstal": 483, "scroll": [92, 155, 177, 247, 369, 374, 376, 483], "scrollabl": [68, 247, 368, 375], "scrollbar": [247, 369, 374, 376, 384, 483], "scrollcommand": [369, 376], "scrolledcanva": 384, "scrolledlist": 483, "scrolledtext": [68, 254, 368, 369], "scrollok": 177, "scrub": 245, "scrypt": [235, 479, 483], "sd": 102, "sdata": 102, "sdeedfish": 106, "sdev": 84, "sdid": 102, "sdist": [462, 463, 467, 469, 479, 480, 483], "sdk": [257, 456, 482, 483], "sdkdir": 456, "sdks": 483, "sdt": 98, "se": [85, 243, 359, 369], "se_restore_privileg": 405, "sea_green": 94, "seabra": 483, "seal": [215, 389, 475, 480, 483], "seal_ballot": 475, "seamless": 93, "sean": [463, 465, 466, 467, 469, 483], "search": [23, 31, 33, 34, 35, 59, 64, 68, 75, 84, 85, 93, 100, 101, 109, 141, 147, 151, 158, 160, 163, 176, 193, 196, 216, 225, 230, 248, 250, 254, 265, 266, 267, 268, 270, 278, 279, 280, 288, 293, 297, 299, 302, 308, 311, 312, 313, 331, 332, 334, 340, 344, 348, 352, 355, 363, 368, 369, 371, 375, 384, 388, 395, 396, 403, 410, 412, 413, 415, 420, 422, 423, 425, 427, 428, 429, 430, 433, 450, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 479, 480, 481, 482, 483], "search_criterion": 248, "search_error": 474, "search_funct": [14, 158], "search_paths_first": 483, "search_stud": 114, "searchabl": [432, 483], "searchdialogbas": 483, "searchengin": 483, "season": 225, "sebackupprivileg": 405, "sebastian": [472, 473, 483], "sec": [106, 366, 367, 478, 483], "seccomp": 483, "sechrest": 337, "secker": 469, "second": [5, 20, 22, 23, 33, 58, 64, 67, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 112, 115, 117, 129, 134, 135, 136, 138, 139, 141, 151, 158, 167, 169, 176, 177, 183, 186, 190, 191, 193, 195, 200, 203, 208, 209, 211, 213, 214, 215, 218, 221, 225, 228, 230, 235, 242, 243, 247, 248, 250, 255, 258, 267, 268, 269, 271, 272, 275, 276, 282, 283, 284, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 318, 319, 322, 325, 328, 329, 331, 332, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 355, 358, 359, 361, 362, 365, 366, 376, 378, 384, 386, 388, 389, 394, 395, 396, 407, 413, 419, 422, 428, 430, 431, 432, 435, 436, 442, 446, 449, 456, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 478, 479, 480, 481, 483], "second_16": 176, "second_alt": 431, "second_patch": 389, "second_peak": 382, "second_s": 382, "secondari": [108, 247, 261, 308, 352, 469, 470, 483], "secondaryexcept": 470, "secp": 483, "secreatesymboliclinkprivileg": 293, "secreci": [341, 483], "secret": [33, 68, 133, 174, 235, 254, 283, 292, 293, 305, 318, 327, 341, 426, 455, 462, 483], "secret_key": 235, "sectcr": 167, "section": [7, 17, 34, 42, 51, 55, 58, 63, 64, 71, 72, 73, 75, 76, 77, 85, 92, 93, 95, 99, 100, 101, 102, 103, 106, 109, 110, 114, 120, 122, 132, 133, 137, 139, 151, 155, 158, 160, 167, 169, 176, 181, 184, 186, 193, 194, 202, 203, 212, 221, 230, 235, 241, 242, 243, 247, 248, 258, 261, 262, 267, 268, 271, 292, 293, 299, 305, 307, 308, 314, 319, 321, 328, 332, 337, 340, 341, 344, 347, 348, 352, 358, 365, 369, 384, 388, 394, 395, 410, 411, 413, 415, 416, 419, 422, 426, 427, 428, 429, 430, 432, 435, 436, 451, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "section1": 167, "section2": 167, "section3": 167, "section_nam": 167, "section_proxi": 167, "sectionnam": 483, "sector": 140, "secur": [30, 68, 85, 102, 118, 164, 176, 223, 235, 242, 243, 244, 248, 256, 269, 270, 272, 283, 288, 293, 299, 305, 314, 326, 331, 334, 335, 337, 344, 352, 358, 395, 405, 411, 412, 413, 414, 419, 420, 458, 462, 463, 464, 465, 467, 468, 475, 476, 479, 484], "secure_protocol": [243, 483], "security_attribut": 405, "security_level": [341, 483], "sed": [190, 483], "see": [5, 7, 11, 23, 26, 31, 33, 34, 42, 45, 47, 58, 59, 61, 62, 63, 64, 66, 71, 72, 73, 75, 76, 77, 79, 80, 84, 85, 87, 92, 93, 94, 95, 96, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 120, 132, 133, 137, 139, 141, 144, 151, 155, 158, 161, 163, 167, 168, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 230, 233, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 272, 275, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 311, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 380, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "see_oth": 241, "seealso": 235, "seed": [30, 33, 34, 87, 293, 318, 341, 343, 352, 426, 455, 469, 475, 482, 483], "seed_bit": [30, 352], "seeder": 318, "seek": [79, 84, 85, 109, 117, 149, 153, 175, 212, 215, 218, 258, 278, 293, 299, 340, 358, 360, 362, 422, 424, 446, 462, 468, 471, 483], "seek_": 258, "seek_cur": [215, 258, 278, 293, 340, 467, 471], "seek_data": [258, 293, 476], "seek_end": [215, 258, 278, 293, 340, 467, 471], "seek_hol": [258, 293, 476], "seek_set": [215, 258, 278, 293, 340, 467, 471], "seekabl": [117, 149, 258, 401, 422, 468, 483], "seem": [73, 76, 79, 95, 101, 106, 120, 193, 216, 271, 279, 293, 308, 340, 430, 432, 462, 463, 464, 465, 467, 483], "seen": [73, 75, 84, 85, 94, 95, 102, 155, 191, 230, 235, 255, 261, 269, 271, 292, 305, 331, 353, 369, 400, 413, 415, 455, 465, 468, 471, 474, 477, 480, 483], "segev": [480, 483], "segfault": [177, 466, 467, 479, 480, 483], "segment": [42, 48, 176, 184, 193, 214, 215, 220, 253, 283, 293, 333, 366, 394, 399, 467, 469, 475, 476, 483], "segreg": 476, "segv": 483, "sehensw": 475, "seifert": 483, "seilnacht": 469, "seipp": [482, 483], "sekera": 483, "sektion": 328, "sel": [329, 333], "seldom": 348, "select": [7, 33, 59, 64, 66, 68, 84, 93, 94, 96, 101, 106, 107, 109, 120, 138, 141, 160, 169, 176, 177, 213, 225, 230, 246, 247, 248, 251, 254, 260, 261, 266, 268, 270, 281, 283, 288, 293, 299, 308, 311, 313, 318, 329, 333, 335, 337, 338, 340, 343, 344, 345, 347, 348, 364, 365, 366, 368, 369, 371, 375, 376, 384, 386, 390, 403, 413, 417, 427, 428, 429, 430, 432, 456, 461, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 478, 479, 480, 481, 482, 483], "selected_alpn_protocol": [341, 478], "selected_npn_protocol": [341, 472], "selection_add": [376, 483], "selection_el": 483, "selection_from": [481, 483], "selection_get": 376, "selection_pres": [481, 483], "selection_rang": [481, 483], "selection_remov": [376, 483], "selection_set": [376, 481, 483], "selection_to": [481, 483], "selection_toggl": [376, 483], "selectmod": 376, "selector": [68, 95, 125, 126, 131, 254, 260, 261, 328, 333, 338, 341, 361, 368, 395, 469, 471, 480, 483], "selector_ev": 483, "selectoreventloop": [126, 131, 132, 137, 473, 483], "selectorkey": 329, "selectorloop": 483, "selectselector": [126, 131, 329], "self": [5, 10, 22, 28, 44, 52, 58, 61, 63, 68, 72, 73, 75, 76, 79, 84, 87, 93, 94, 95, 96, 98, 100, 102, 104, 107, 108, 116, 120, 122, 126, 132, 133, 142, 144, 148, 155, 160, 161, 169, 172, 176, 181, 183, 186, 191, 203, 205, 211, 213, 216, 221, 223, 225, 226, 227, 230, 232, 240, 242, 243, 248, 250, 253, 255, 259, 262, 274, 283, 288, 289, 292, 293, 296, 297, 299, 305, 318, 320, 321, 333, 335, 337, 338, 340, 344, 345, 358, 359, 362, 369, 375, 381, 382, 384, 385, 386, 388, 389, 390, 395, 399, 402, 410, 413, 417, 419, 420, 421, 427, 428, 432, 440, 441, 446, 451, 452, 455, 462, 463, 464, 465, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 482, 483], "self_test": 84, "selfsigned_pythontestdotnet": 483, "selftest": 455, "selik": [481, 483], "selinux": 483, "selivanov": [472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sell": [426, 467], "selm": 84, "selma": 95, "selva": 467, "sem": 138, "sem_clockwait": [473, 483], "sem_getvalu": [283, 483], "sem_open": 483, "sem_timedwait": [283, 483], "sem_wait": 96, "semant": [5, 7, 11, 13, 27, 57, 63, 64, 94, 101, 102, 133, 139, 161, 186, 193, 196, 202, 205, 207, 208, 225, 248, 250, 252, 255, 259, 267, 268, 269, 271, 283, 292, 293, 295, 299, 311, 316, 319, 330, 331, 332, 337, 342, 352, 365, 366, 386, 394, 405, 423, 425, 427, 428, 429, 430, 432, 436, 455, 456, 462, 464, 465, 467, 468, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "semaphor": [68, 84, 98, 115, 124, 164, 212, 283, 293, 352, 362, 452, 468, 475, 476, 481, 482, 483], "semaphore_not": 475, "semaphore_track": 483, "semi": [283, 292, 377, 483], "semicircl": 384, "semicolon": [5, 33, 76, 106, 297, 340, 427, 436, 455, 461], "seminumer": 186, "semlock": 483, "semper": 149, "semyon": 483, "send": [7, 68, 79, 84, 92, 95, 101, 106, 107, 110, 126, 128, 133, 136, 137, 141, 142, 151, 152, 158, 161, 169, 177, 191, 194, 200, 201, 212, 223, 230, 242, 244, 245, 247, 248, 257, 267, 268, 269, 278, 283, 288, 293, 299, 305, 316, 329, 333, 335, 337, 338, 341, 348, 356, 361, 362, 369, 384, 386, 395, 419, 428, 430, 452, 462, 465, 466, 467, 469, 473, 474, 475, 476, 478, 479, 480, 482, 483], "send_byt": 283, "send_error": [245, 477, 483], "send_ev": 369, "send_fd": [337, 482, 483], "send_head": 245, "send_http": 169, "send_json": 102, "send_messag": [200, 208, 335, 475, 478, 483], "send_post_request": 344, "send_respons": 245, "send_response_on": 245, "send_sign": [130, 133, 137, 348, 468, 483], "send_timeout": 102, "sendal": [126, 337, 338, 341, 478, 483], "sendcmd": [142, 223], "sender": [84, 102, 200, 203, 208, 271, 335], "sendfil": [126, 127, 130, 133, 293, 332, 337, 341, 407, 476, 478, 480, 483], "sendfilenotavailableerror": [126, 127], "sendfunc": 63, "sendmail": [84, 102, 106, 201, 208, 319, 335, 451, 475, 478], "sendmsg": [142, 337, 474, 476, 478, 483], "sendmsg_afalg": [337, 479], "sendto": [126, 130, 133, 142, 337, 338, 478, 483], "sendtyp": 386, "sens": [75, 85, 94, 99, 101, 102, 103, 112, 120, 183, 186, 190, 205, 206, 226, 247, 259, 271, 283, 292, 293, 308, 333, 338, 340, 344, 352, 384, 394, 403, 426, 428, 432, 461, 470, 475, 477, 478, 480, 483], "sensibl": [110, 120, 167, 183, 235, 255, 292, 365, 394, 430, 466, 469, 479, 480, 483], "sensit": [33, 167, 220, 248, 269, 276, 352, 386, 388, 400, 455, 463, 465, 466, 467, 468, 474, 477, 483], "sent": [23, 68, 92, 95, 101, 103, 107, 109, 110, 133, 137, 169, 177, 200, 235, 242, 244, 245, 247, 248, 259, 267, 268, 269, 283, 288, 293, 297, 305, 322, 333, 335, 337, 338, 340, 341, 348, 366, 386, 395, 419, 420, 426, 461, 462, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sentenc": [95, 226, 319, 364, 464, 465, 468, 483], "senthil": [469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "sentinel": [31, 37, 58, 68, 73, 75, 76, 85, 102, 181, 187, 225, 269, 283, 390, 464, 476, 480, 483], "seo": [466, 476], "sep": [64, 85, 95, 146, 183, 186, 225, 231, 244, 247, 253, 293, 296, 341, 344, 345, 358, 407, 427, 441, 464, 467, 468, 469, 470, 473, 483], "separ": [23, 33, 34, 55, 59, 63, 64, 68, 77, 79, 84, 85, 92, 94, 96, 100, 101, 102, 103, 106, 109, 112, 120, 127, 132, 136, 139, 146, 151, 155, 158, 167, 169, 175, 176, 177, 178, 183, 186, 190, 193, 196, 201, 202, 205, 208, 213, 220, 225, 226, 230, 245, 247, 248, 250, 252, 253, 258, 259, 262, 266, 267, 268, 269, 270, 271, 276, 283, 288, 292, 293, 297, 302, 303, 307, 313, 314, 319, 324, 331, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 358, 361, 362, 364, 365, 368, 369, 380, 386, 388, 394, 395, 400, 403, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 452, 455, 456, 461, 462, 464, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "septemb": [150, 435, 462, 467, 476, 478], "seq": [37, 64, 85, 103, 160, 191, 220, 225, 261, 291, 318, 326, 344, 462, 466, 473, 475], "seq1": [95, 291, 462], "seq2": [22, 95, 291, 462], "seq_index": 261, "seq_typ": 388, "seqdict": 465, "seqnum": 452, "sequenc": [5, 7, 16, 22, 32, 33, 35, 37, 39, 42, 49, 50, 54, 56, 59, 64, 66, 68, 75, 78, 79, 84, 87, 92, 94, 95, 100, 102, 103, 106, 109, 112, 120, 122, 139, 145, 157, 158, 159, 161, 163, 164, 175, 176, 177, 189, 190, 191, 193, 196, 202, 205, 206, 209, 212, 213, 218, 225, 230, 236, 238, 243, 250, 254, 255, 258, 259, 261, 262, 266, 268, 270, 271, 275, 276, 281, 283, 284, 292, 293, 299, 301, 302, 307, 312, 314, 318, 319, 321, 325, 332, 337, 340, 341, 343, 345, 358, 359, 362, 363, 366, 369, 376, 378, 381, 382, 384, 386, 387, 388, 394, 395, 400, 405, 410, 413, 414, 419, 425, 430, 434, 435, 436, 440, 441, 445, 449, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "sequence1": [95, 462], "sequence2": [95, 462], "sequence3": 95, "sequence_of_numb": [226, 481], "sequence_pattern": [427, 431], "sequenceinclud": [112, 469, 470], "sequencemanag": 483, "sequencematch": [68, 363, 463, 467, 468, 477, 483], "sequencen": [95, 462], "sequenti": [84, 102, 125, 163, 218, 235, 283, 299, 308, 344, 362, 428, 452, 483], "serbian": 158, "serenityo": 483, "serg": 483, "sergey": [472, 473, 482, 483], "serhiy": [109, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "seri": [7, 33, 61, 95, 106, 112, 120, 155, 176, 186, 191, 225, 235, 292, 314, 337, 344, 355, 365, 375, 386, 394, 430, 441, 449, 450, 464, 466, 467, 468, 469, 477, 480], "serial": [33, 41, 42, 68, 102, 167, 182, 194, 196, 197, 201, 203, 205, 206, 207, 208, 262, 267, 269, 283, 284, 299, 304, 330, 333, 335, 340, 347, 352, 413, 446, 462, 468, 469, 471, 473, 475, 476, 477, 482, 483], "serialis": [102, 158, 324, 413, 483], "serializ": [244, 262], "serialno": 483, "serialnum": 347, "serialnumb": 341, "serious": [101, 103, 193, 213, 235, 267], "serna": 476, "serp": 483, "serra": 483, "serv": [5, 73, 76, 101, 102, 133, 136, 186, 193, 202, 203, 225, 226, 245, 250, 253, 261, 268, 283, 293, 299, 313, 333, 340, 341, 369, 384, 386, 407, 413, 420, 432, 435, 466, 470, 475, 476, 478, 480, 483], "serve_cli": 483, "serve_forev": [126, 133, 136, 170, 245, 283, 333, 338, 407, 419, 420, 467, 468, 476, 480, 483], "serve_until_quit": 483, "serve_until_stop": 102, "server": [68, 84, 85, 92, 95, 101, 107, 110, 136, 151, 156, 167, 170, 176, 192, 194, 200, 208, 223, 226, 235, 241, 242, 243, 244, 247, 248, 254, 256, 257, 259, 267, 268, 269, 283, 288, 293, 294, 296, 305, 313, 318, 327, 328, 329, 333, 335, 337, 340, 352, 355, 356, 359, 362, 365, 369, 382, 386, 393, 395, 407, 418, 426, 451, 452, 461, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 481, 482, 483, 484], "server_activ": [338, 420, 468], "server_address": [245, 338, 407], "server_auth": [341, 477], "server_bind": [338, 420, 468], "server_class": [245, 407], "server_clos": [338, 407, 480, 483], "server_document": 420, "server_hostnam": [126, 136, 341, 475, 480, 483], "server_log": [95, 467], "server_nam": [245, 407, 420], "server_name_callback": 341, "server_port": [245, 407], "server_sid": [126, 341], "server_softwar": 407, "server_thread": 338, "server_titl": 420, "server_vers": 245, "serveraliveinterv": 167, "serverhandl": 483, "serverhtmldoc": 483, "servernam": 283, "serverproto": 483, "serverproxi": [68, 256, 420, 478, 481, 483], "serversocket": 107, "serverstandard": 303, "serverthread": 483, "servic": [102, 110, 225, 230, 255, 262, 267, 269, 282, 283, 293, 303, 314, 315, 321, 328, 335, 337, 338, 341, 344, 358, 366, 409, 419, 426, 428, 455, 461, 462, 466, 469, 472, 473, 476, 480, 481, 482, 483], "service_act": [338, 476], "service_complet": 318, "service_dur": 318, "service_id": 337, "service_pack": [352, 469], "service_pack_major": [352, 469], "service_pack_minor": [352, 469], "service_unavail": 241, "servicenam": [142, 337], "servo": 106, "serwi": [471, 483], "session": [68, 85, 93, 101, 102, 126, 155, 169, 193, 213, 242, 243, 283, 293, 297, 305, 309, 320, 329, 335, 352, 395, 436, 450, 455, 461, 466, 474, 476, 477, 479, 481, 483], "session_id": 296, "session_reus": 341, "session_stat": 341, "set": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 27, 28, 31, 33, 34, 39, 41, 42, 45, 49, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 81, 84, 85, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 122, 129, 133, 135, 136, 137, 138, 139, 144, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 182, 183, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 215, 222, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 248, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 274, 276, 278, 279, 280, 281, 282, 283, 288, 292, 293, 295, 297, 299, 301, 305, 307, 308, 311, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 345, 346, 348, 349, 352, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 368, 374, 375, 376, 377, 380, 382, 383, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 401, 402, 403, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 429, 431, 432, 435, 436, 440, 445, 448, 450, 452, 455, 456, 458, 462, 463, 464, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "set_1": 461, "set_add": 191, "set_aft": 129, "set_al": [35, 226], "set_allowed_domain": 243, "set_alpn_protocol": [242, 341, 395, 478], "set_app": 407, "set_asyncgen_hook": [352, 430, 450, 483], "set_asyncgen_hooks_fin": [142, 352], "set_asyncgen_hooks_firstit": [142, 352], "set_attr": 358, "set_author": [340, 473, 483], "set_auto_histori": [320, 479, 483], "set_block": [293, 478, 483], "set_blocked_domain": 243, "set_boundari": [196, 199, 205], "set_break": 144, "set_callback": 73, "set_charset": 196, "set_child_watch": [131, 132, 474, 483], "set_children": 376, "set_ciph": 341, "set_complet": [320, 323], "set_completer_delim": [320, 483], "set_completion_display_matches_hook": 320, "set_conflict_handl": 292, "set_cont": [196, 197, 198, 200, 205, 207, 208, 483], "set_continu": 144, "set_cooki": 243, "set_cookie_if_ok": 243, "set_coroutine_origin_tracking_depth": [255, 352, 450, 480, 483], "set_coroutine_wrapp": [478, 480, 481, 483], "set_curr": 281, "set_dat": 271, "set_data": 250, "set_dead": 226, "set_debug": [125, 126, 130, 227, 478], "set_debuglevel": [223, 242, 288, 305, 335, 359, 478], "set_default": [120, 292, 483], "set_default_executor": [126, 130, 473, 481, 483], "set_default_typ": [196, 205], "set_default_verify_path": [341, 477, 483], "set_display": 430, "set_ecdh_curv": [341, 476, 483], "set_errno": [142, 176, 468], "set_escdelay": [177, 482, 483], "set_ev": 353, "set_event_loop": [126, 130, 131, 132, 135, 481, 483], "set_event_loop_polici": [126, 130, 132], "set_except": [125, 129, 139, 142, 166, 176, 479, 483], "set_exception_handl": [126, 130], "set_execut": [283, 483], "set_filt": 189, "set_flag": 271, "set_forkserver_preload": [283, 483], "set_from": 271, "set_handle_inherit": [293, 348, 477], "set_history_length": 320, "set_info": 271, "set_inherit": [293, 328, 337, 477, 483], "set_int_max_str_digit": [344, 352, 362, 483], "set_label": 271, "set_last_error": [142, 176, 468], "set_lineno": 465, "set_liter": 112, "set_load": [474, 477, 483], "set_loader_wrapp": [472, 473], "set_loc": 330, "set_local_ev": [353, 483], "set_memlimit": 362, "set_merg": 483, "set_nam": [93, 126, 139, 481, 483], "set_next": 144, "set_nomemori": 483, "set_nonstandard_attr": 243, "set_npn_protocol": [341, 472, 476], "set_ok": 243, "set_option_negotiation_callback": 359, "set_output_charset": [473, 481], "set_packag": [474, 477, 483], "set_package_wrapp": [472, 473], "set_panel_userptr": 483, "set_param": [196, 205, 477], "set_pasv": [223, 463], "set_payload": [196, 206, 483], "set_polici": 243, "set_posit": 408, "set_pre_input_hook": 320, "set_progress_handl": [340, 483], "set_protocol": [130, 133, 483], "set_proxi": [395, 419, 477], "set_quit": 144, "set_recsrc": 295, "set_result": [129, 133, 139, 166, 483], "set_return": 144, "set_running_loop": 483, "set_running_or_notify_cancel": 166, "set_sampl": 483, "set_select": 189, "set_seq": 190, "set_seq1": 190, "set_seq2": 190, "set_sequ": 271, "set_server_document": 420, "set_server_nam": 420, "set_server_titl": 420, "set_servername_callback": [341, 477], "set_siz": 464, "set_spec": 483, "set_start_method": [283, 474, 477], "set_startup_hook": 320, "set_stat": 226, "set_step": 144, "set_subdir": 271, "set_symmetric_differ": 483, "set_sys_last_var": 23, "set_tabs": [177, 482, 483], "set_task_factori": [126, 130, 139, 478, 483], "set_termin": 483, "set_threshold": 227, "set_trac": [144, 193, 225, 297, 352, 455, 480, 483], "set_trace_callback": [340, 476, 483], "set_transport": 483, "set_tunnel": [242, 419, 475, 483], "set_typ": 196, "set_unittest_reportflag": 193, "set_unixfrom": [196, 205], "set_until": 144, "set_upd": [191, 483], "set_url": 396, "set_usag": 292, "set_userptr": 179, "set_valu": 102, "set_vis": 271, "set_wakeup_fd": [23, 333, 468, 478, 480, 483], "set_write_buffer_limit": [130, 133], "setacl": [248, 464], "setannot": 248, "setattr": [85, 87, 93, 120, 181, 225, 250, 292, 402, 440, 450, 462, 483], "setattrfunc": [57, 63, 75], "setattribut": 410, "setattributen": 410, "setattributenod": 410, "setattributenoden": 410, "setattrofunc": [57, 63, 75], "setbas": 314, "setblock": [107, 293, 329, 337, 341, 483], "setbytestream": 416, "setcbreak": [383, 483], "setcchar": 483, "setcharacterstream": 416, "setcheckinterv": [465, 482, 483], "setcomp": [122, 431], "setcomptyp": [117, 349, 401], "setconfig": [340, 474, 483], "setcontenthandl": [416, 462], "setcontext": 186, "setdaemon": [365, 468, 472, 483], "setdefault": [22, 78, 160, 161, 184, 244, 344, 407, 428, 462, 465, 475, 476, 483], "setdefaultencod": 462, "setdefaulttimeout": [110, 337], "setdlopenflag": [293, 352, 450, 464, 476], "setdocumentloc": 415, "setdtdhandl": 416, "setegid": 293, "seten": 102, "setencod": 416, "setentityresolv": 416, "setenv": [482, 483], "seterrorhandl": 416, "seterrormod": 362, "seteuid": 293, "setfeatur": [412, 414, 416], "setfilesystemencod": 475, "setfirstweekday": 150, "setfixeds": 102, "setfmt": 295, "setfont": 102, "setformatt": [101, 102, 267, 269], "setframer": [117, 349, 401], "setgid": [293, 358], "setgroup": [293, 348, 483], "seth": [384, 483], "sethead": 384, "sethostnam": [142, 337, 476], "seti": 384, "setinputs": 340, "setinteg": 281, "setitem": [291, 390], "setitim": [333, 468, 483], "setlasterror": 176, "setlevel": [101, 102, 125, 267, 283, 465, 483], "setlimit": [340, 473, 483], "setlocal": [87, 258, 266, 416, 452, 473, 478, 483], "setloggerclass": [102, 267], "setlogmask": [142, 356], "setlogrecordfactori": [102, 267], "setmark": 117, "setmaxconn": 395, "setmod": 282, "setn": [293, 483], "setnam": [365, 472, 483], "setnchannel": [117, 349, 401], "setnfram": [117, 349, 401], "setobject": 483, "setobjectnam": 102, "setopencodehook": [24, 142], "setoutputs": 340, "setparam": [117, 349, 401], "setparamentitypars": 314, "setparamet": 295, "setpassword": 422, "setpgid": [293, 348], "setpgroup": [293, 483], "setpgrp": 293, "setpo": [117, 349, 384, 401], "setposit": 384, "setprior": [293, 476, 483], "setprofil": [33, 142, 283, 352, 365, 450, 464, 472, 483], "setprofile_all_thread": [365, 474, 483], "setproperti": [281, 415, 416], "setpublicid": 416, "setquota": 248, "setr": 483, "setrac": 483, "setraw": [383, 483], "setreadon": 102, "setrecsrc": 295, "setrecursionlimit": [247, 299, 352, 450, 462, 474, 483], "setregid": [293, 348], "setreparsedeferralen": [314, 413, 483], "setresgid": [293, 469], "setresuid": [293, 469], "setreuid": [293, 348], "setrlimit": [142, 322, 362, 483], "setsampwidth": [117, 349, 401, 477], "setscrreg": 177, "setsid": [293, 348, 483], "setsigdef": [293, 483], "setsigmask": [293, 483], "setsockopt": [337, 341, 469, 479], "setsockopt_str": 102, "setstat": [158, 318, 483], "setstr": 281, "setstream": [269, 281, 480, 483], "setstylehint": 102, "setswitchinterv": [33, 84, 352, 362, 450, 475, 482, 483], "setsystemid": 416, "setsyx": 177, "settabl": [208, 247, 400, 462, 464, 483], "settarget": [269, 483], "setter": [49, 50, 57, 68, 76, 93, 116, 225, 226, 344, 365, 389, 395, 468, 477, 483], "settiltangl": [384, 473, 474, 483], "settimeofday": 366, "settimeout": [337, 341, 395, 465, 483], "settl": [318, 468], "settrac": [33, 142, 144, 283, 352, 365, 450, 464, 472, 483], "settrace_all_thread": [365, 474, 483], "setuid": [293, 358], "setundobuff": 384, "setup": [42, 68, 73, 76, 79, 92, 102, 110, 169, 193, 247, 296, 338, 341, 355, 362, 367, 384, 388, 389, 390, 453, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 473, 474, 475, 476, 479, 481, 483], "setup_annot": [191, 479], "setup_async_with": 473, "setup_cleanup": 191, "setup_environ": 407, "setup_except": [481, 483], "setup_fin": [191, 473, 483], "setup_keyword": [251, 465], "setup_loop": [481, 483], "setup_python": 399, "setup_script": 399, "setup_testing_default": 407, "setup_with": [191, 473], "setupclass": [68, 187, 469, 481, 483], "setupmodul": [68, 187, 469, 481, 483], "setupterm": 177, "setuptool": [68, 74, 76, 77, 251, 302, 307, 355, 399, 453, 461, 469, 472, 474, 477, 479, 483], "setvalu": [142, 405, 483], "setvalueex": [405, 483], "setworldcoordin": 384, "setx": [93, 225, 384, 461], "setxattr": [142, 293, 476, 483], "seven": [186, 244, 390, 475, 483], "seventh": 358, "sever": [7, 28, 33, 42, 66, 72, 73, 75, 77, 84, 85, 93, 94, 95, 96, 100, 101, 102, 106, 108, 109, 110, 112, 120, 135, 137, 157, 158, 161, 167, 176, 177, 183, 184, 186, 191, 193, 199, 212, 225, 241, 247, 250, 255, 259, 267, 268, 269, 271, 273, 281, 283, 287, 292, 293, 295, 299, 307, 308, 311, 319, 321, 329, 333, 335, 337, 338, 340, 341, 342, 344, 347, 348, 358, 365, 369, 375, 376, 378, 380, 381, 384, 386, 387, 388, 395, 400, 403, 405, 406, 415, 419, 425, 427, 428, 432, 434, 436, 449, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "sewel": 483, "seymour": 384, "sf": 468, "sf_append": [293, 342], "sf_archiv": [293, 342], "sf_immut": [293, 342], "sf_mnowait": 293, "sf_nocach": [293, 483], "sf_nodiskio": 293, "sf_nounlink": [293, 342], "sf_snapshot": [293, 342], "sf_sync": 293, "sftp": 394, "sgha": 483, "sgi": 249, "sgid": 293, "sgml": [240, 273, 417, 468], "sgmlop": 462, "sh": [68, 84, 102, 164, 301, 309, 331, 456, 462, 483], "sha": [173, 235, 398, 467, 468, 472, 475, 476, 479, 483], "sha1": [235, 456, 467, 469, 474, 475, 483], "sha2": [235, 341, 474, 482, 483], "sha224": [235, 467, 469, 475], "sha256": [235, 251, 337, 341, 456, 467, 469, 475, 483], "sha3": [235, 456, 473, 474, 482, 483], "sha384": [235, 341, 467, 469, 475], "sha3_224": [235, 479], "sha3_256": [235, 479, 483], "sha3_384": [235, 479], "sha3_512": [235, 479, 483], "sha512": [235, 456, 467, 469, 475, 483], "shachnev": 483, "shadow": [68, 85, 86, 173, 233, 254, 255, 310, 350, 358, 450, 467, 477, 482, 483], "shah": 483, "shahaf": [473, 478, 483], "shake": [68, 174, 456, 473, 479, 482, 483], "shake_128": [235, 479], "shake_256": [235, 479], "shall": [58, 103, 299, 329, 415, 426, 461, 475], "shallow": [17, 33, 68, 160, 170, 181, 182, 193, 216, 244, 254, 255, 299, 344, 358, 385, 442, 483], "shalt": [345, 475], "shane": 483, "shannon": [472, 473, 474, 476, 480, 481, 482, 483], "shantanu": [473, 474, 483], "shape": [2, 63, 68, 94, 222, 225, 284, 318, 344, 386, 468, 472, 473, 476, 483], "shapelist": 384, "shapenam": 384, "shapes": 384, "shapetransform": 384, "sharablelist": 483, "sharafutdinov": [480, 483], "share": [5, 7, 33, 35, 41, 42, 45, 58, 63, 64, 68, 71, 73, 76, 77, 79, 84, 94, 98, 100, 102, 104, 107, 115, 118, 120, 133, 138, 164, 181, 183, 186, 212, 215, 226, 230, 235, 259, 261, 266, 267, 278, 284, 292, 293, 294, 296, 299, 311, 322, 326, 330, 337, 338, 340, 342, 344, 345, 352, 354, 358, 365, 366, 369, 375, 388, 426, 427, 428, 430, 432, 440, 455, 456, 461, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 483, 484], "share_mod": 142, "shareabl": 483, "shareablelist": [284, 483], "shared": 223, "shared_ciph": [341, 478, 483], "shared_link": 261, "shared_memori": [68, 164, 254, 352, 481, 483], "sharedarraybuff": 483, "sharedctyp": [68, 164, 478, 483], "sharedinstal": 483, "sharedmemori": [283, 284, 483], "sharedmemorymanag": [284, 483], "sharedmemoryserv": 481, "sharepoint": [231, 422, 483], "sharma": 483, "sharp": [84, 158], "sharper": [479, 480, 483], "shasha": 318, "shashwat": 475, "shaulov": 483, "shawley": 483, "shawn": 468, "she": 167, "shea": 483, "shear": 384, "shearfactor": 384, "shebang": [68, 167, 399, 421, 448, 458, 460, 476, 479, 483], "shed": 167, "sheesh": 464, "sheet": [150, 384, 386, 483], "sheila": 102, "shelf": [330, 344, 475, 477], "shell": [35, 68, 73, 76, 79, 80, 85, 86, 87, 92, 95, 102, 111, 124, 126, 130, 137, 151, 155, 164, 167, 177, 193, 220, 222, 231, 254, 255, 262, 272, 284, 288, 292, 293, 294, 309, 313, 340, 350, 352, 354, 362, 368, 369, 384, 388, 399, 400, 405, 438, 439, 447, 448, 449, 450, 451, 453, 455, 456, 459, 460, 461, 462, 464, 466, 469, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "shellexecut": [293, 483], "shelv": [68, 84, 184, 254, 274, 298, 299, 327, 344, 462, 465, 475, 483], "shepherd": [462, 465], "shi": [472, 473], "shield": [68, 124, 481, 483], "shift": [47, 68, 177, 178, 183, 186, 191, 247, 283, 293, 376, 428, 433, 462, 464, 466, 468, 469, 473, 476, 483], "shift_expr": [430, 431], "shift_ji": 158, "shift_jis_2004": 158, "shift_jisx0213": 158, "shift_path_info": 407, "shiftji": 158, "shiftjis2004": 158, "shiftjisx0213": 158, "shik": [466, 467], "shim": 483, "shimizukawa": 483, "shin": 483, "shinya": [482, 483], "ship": [132, 184, 250, 253, 369, 388, 421, 461, 462, 465, 469, 471, 475, 477, 478, 482, 483], "shipman": 483, "shkop": [472, 483], "shl": 475, "shlex": [68, 114, 126, 137, 167, 222, 254, 297, 348, 474, 482, 483], "shlib_suffix": 477, "shlwapi": 483, "shm": [284, 483], "shm_a": 284, "shm_b": 284, "shoe": 106, "shop": [441, 454], "shopkeep": 441, "short": [5, 7, 41, 42, 58, 63, 73, 75, 84, 94, 95, 96, 100, 102, 103, 106, 107, 120, 121, 159, 176, 177, 193, 228, 245, 259, 267, 271, 283, 292, 293, 314, 331, 344, 347, 348, 352, 362, 366, 369, 384, 386, 388, 411, 413, 421, 434, 442, 455, 461, 462, 464, 465, 467, 469, 475, 476, 477, 479, 480, 482, 483], "short_array": 176, "short_empty_el": [413, 417, 477], "short_timeout": [362, 483], "short_titl": 120, "shortbyt": 435, "shortbyteschar": 435, "shortbytesitem": 435, "shortcom": [271, 465], "shortcut": [61, 68, 103, 193, 235, 247, 298, 321, 344, 358, 385, 428, 461, 466, 468, 480, 483], "shortdescript": [388, 483], "shorten": [184, 321, 364, 475, 476, 477, 482, 483], "shorter": [106, 202, 225, 235, 261, 292, 347, 430, 462, 463, 466, 468, 469, 474, 475, 483], "shortest": [95, 195, 225, 261, 462, 467, 469, 470, 471, 475], "shorthand": [23, 85, 99, 120, 191, 193, 259, 302, 337, 364, 369, 381, 386, 400, 427, 443, 465, 466, 477], "shortmessag": [110, 245], "shortopt": 228, "shortstr": 435, "shortstringchar": 435, "shortstringitem": 435, "shot": [68, 119, 169, 328, 480], "should": [5, 7, 10, 11, 13, 22, 23, 25, 27, 28, 31, 33, 34, 35, 37, 42, 45, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 94, 95, 96, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 128, 132, 133, 135, 137, 139, 141, 143, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 215, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 287, 288, 289, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 314, 319, 320, 321, 322, 324, 325, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 358, 359, 362, 364, 365, 366, 369, 371, 374, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 406, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "shouldflush": 269, "shouldn": [51, 64, 76, 100, 106, 133, 272, 302, 352, 388, 395, 463, 464, 466, 467, 468, 471, 479, 483], "shouldstop": [96, 388], "show": [33, 34, 68, 72, 73, 76, 85, 89, 92, 93, 94, 95, 98, 100, 101, 102, 103, 109, 110, 120, 139, 151, 152, 155, 158, 160, 169, 176, 179, 186, 189, 190, 193, 202, 213, 216, 225, 226, 235, 242, 243, 247, 248, 250, 261, 262, 267, 278, 283, 292, 293, 299, 307, 308, 321, 332, 334, 337, 340, 341, 343, 344, 345, 358, 369, 373, 375, 376, 378, 380, 381, 384, 388, 399, 400, 419, 420, 421, 431, 435, 442, 451, 452, 453, 455, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 477, 478, 479, 481, 482, 483], "show_alloc_count": [34, 479, 482, 483], "show_bug": 483, "show_cach": [191, 483], "show_chor": 94, "show_cmd": [142, 293], "show_cod": [191, 475, 477], "show_flag_valu": 211, "show_miss": 380, "show_ref_count": 34, "show_track_count": [479, 483], "showalloccount": [455, 479, 482, 483], "showcas": 133, "showerror": 373, "showinfo": 373, "shown": [23, 42, 73, 77, 92, 94, 96, 100, 101, 102, 103, 108, 110, 120, 169, 181, 186, 190, 191, 193, 203, 214, 247, 267, 268, 292, 297, 308, 313, 319, 325, 348, 366, 375, 376, 381, 384, 388, 394, 400, 428, 461, 468, 478, 479, 480, 481, 482, 483], "showparti": 272, "showrefcount": [34, 455, 456, 477, 483], "showroom": 475, "showsyntaxerror": 157, "showtop": 483, "showtraceback": [157, 478, 483], "showturtl": 384, "showwarn": [373, 400, 468, 483], "showwindow": 348, "shrank": 483, "shrink": [60, 184, 466, 483], "shrt": 344, "shrunk": [463, 483], "shtml": 469, "shttp": 394, "shtull": 464, "shuffl": [84, 318, 319, 473, 475, 482, 483], "shut": [51, 72, 102, 245, 328, 333, 337, 338, 352, 384, 407, 452, 455, 465, 469, 478, 482, 483], "shut_rd": 337, "shut_rdwr": [337, 341, 483], "shut_wr": 337, "shutdown": [42, 87, 100, 102, 107, 135, 136, 166, 212, 213, 227, 248, 267, 269, 283, 284, 333, 337, 338, 341, 365, 402, 405, 428, 430, 455, 468, 475, 477, 478, 480, 482, 483], "shutdown_asyncgen": [126, 130, 352, 430, 479, 483], "shutdown_default_executor": [126, 135, 482, 483], "shutdown_timeout": [283, 483], "shutil": [68, 84, 102, 110, 119, 142, 166, 219, 225, 234, 254, 293, 296, 348, 358, 362, 402, 451, 465, 468, 469, 472, 480, 482, 483], "si": [73, 178, 348], "si_band": [333, 483], "si_cod": [293, 333, 482, 483], "si_errno": 333, "si_pid": [293, 333], "si_signo": [293, 333], "si_status": [293, 333], "si_uid": [293, 333], "sibl": [7, 85, 112, 120, 225, 376, 410], "sicp": 95, "siddharth": 483, "side": [7, 14, 22, 33, 52, 60, 68, 73, 75, 84, 85, 95, 102, 106, 109, 110, 133, 151, 160, 169, 177, 181, 187, 190, 191, 196, 226, 242, 243, 250, 266, 267, 269, 283, 288, 293, 299, 302, 311, 318, 323, 324, 330, 337, 338, 344, 348, 352, 362, 369, 376, 386, 388, 389, 413, 425, 427, 430, 432, 436, 442, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "side_effect": [68, 187, 479, 483], "side_modul": 483, "sidebar": 483, "sidestep": 466, "sidh": 467, "sidney": 483, "siev": 261, "sig": [80, 100, 109, 111, 126, 142, 158, 235, 255, 293, 333, 378, 459, 462, 463, 465, 469, 478], "sig_block": 333, "sig_dfl": [23, 115, 333, 348, 483], "sig_ign": [23, 115, 333, 348, 483], "sig_setmask": 333, "sig_unblock": 333, "sigabrt": [188, 214, 293, 333, 455, 476, 483], "sigact": [59, 483], "sigalrm": [333, 483], "sigaltstack": [214, 483], "sigbreak": 333, "sigbus": [188, 214, 333, 455, 476], "sigchld": [132, 293, 333], "sigcld": 333, "sigcont": [293, 333], "sigdef": 293, "sigfillset": 483, "sigfp": [188, 214, 333, 455, 476, 483], "sight": [73, 141], "sighup": [333, 483], "sigil": [188, 214, 333, 455, 476], "siginfo": 333, "siginfo_t": [293, 333, 483], "sigint": [23, 68, 115, 135, 283, 297, 316, 333, 348, 388, 472, 475, 481, 483], "siginterrupt": [333, 468, 476, 483], "sigiot": 483, "sigkil": [133, 137, 283, 293, 333, 348, 360, 466, 480, 483], "sigma": [318, 343, 481], "sigmask": 333, "sign": [1, 49, 64, 68, 75, 85, 106, 121, 141, 154, 158, 167, 176, 177, 183, 186, 196, 201, 209, 221, 225, 228, 235, 266, 268, 269, 272, 275, 283, 292, 293, 295, 297, 299, 319, 336, 344, 345, 347, 365, 366, 394, 413, 428, 430, 435, 459, 461, 463, 464, 466, 467, 468, 469, 474, 475, 477, 479, 481, 483], "signal": [32, 33, 34, 49, 59, 63, 68, 92, 95, 100, 102, 106, 115, 126, 130, 132, 133, 135, 137, 141, 142, 166, 176, 177, 185, 187, 191, 193, 213, 242, 254, 257, 258, 260, 261, 267, 268, 275, 283, 290, 292, 293, 297, 299, 309, 319, 322, 328, 329, 331, 337, 340, 341, 345, 348, 352, 362, 365, 366, 371, 381, 386, 395, 413, 415, 419, 430, 432, 455, 462, 463, 464, 465, 466, 467, 468, 469, 472, 475, 479, 481, 483], "signaldict": 483, "signalnum": [142, 333], "signam": [126, 333], "signatur": [13, 17, 45, 58, 63, 68, 71, 85, 93, 94, 100, 101, 102, 122, 139, 145, 159, 160, 161, 169, 181, 183, 213, 216, 225, 226, 235, 247, 267, 268, 292, 299, 313, 315, 332, 340, 341, 348, 352, 381, 384, 385, 386, 389, 394, 413, 415, 419, 424, 428, 430, 440, 468, 471, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "signed_numb": [427, 431], "signed_real_numb": 431, "signer": 235, "signifi": [94, 181, 245, 340, 344, 428, 435, 474], "signific": [5, 41, 85, 95, 99, 102, 106, 109, 132, 133, 158, 169, 178, 186, 193, 197, 258, 259, 261, 269, 275, 293, 299, 308, 341, 344, 345, 352, 365, 388, 411, 428, 432, 434, 435, 444, 455, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "significand": [345, 352], "signoff": 305, "signum": [23, 84, 115, 126, 214, 293, 333, 483], "sigpend": [333, 476], "sigpip": [68, 348], "sigprocmask": 333, "sigprof": 333, "sigquit": [333, 348], "sigrtmax": 483, "sigrtmin": 483, "sigsegv": [188, 214, 333, 455, 476, 483], "sigset": [333, 483], "sigset_t": 483, "sigsgv": 483, "sigstkflt": [333, 483], "sigstksz": 483, "sigstop": 333, "sigterm": [68, 133, 137, 283, 333, 348, 468, 483], "sigtimedwait": [333, 476, 478, 483], "sigusr1": 333, "sigusr2": 333, "sigvtalrm": 333, "sigwait": [333, 476], "sigwaitinfo": [333, 476, 478, 483], "sigwinch": [177, 333, 483], "sigxcpu": 322, "sigxfsz": 348, "sigxfz": 348, "sijin": 476, "sila": 483, "sile": 473, "silenc": [59, 120, 225, 323, 332, 397, 469, 475, 477, 482, 483], "silent": [5, 22, 49, 56, 59, 66, 101, 102, 109, 115, 133, 169, 186, 218, 248, 267, 269, 271, 278, 283, 284, 293, 295, 297, 307, 308, 330, 332, 334, 340, 348, 365, 394, 425, 436, 455, 461, 462, 466, 467, 469, 470, 474, 475, 477, 478, 480, 481, 482, 483], "silentghost": [478, 479, 483], "silicon": [68, 459, 483], "silli": [176, 292], "sillier": 292, "silva": 483, "sim": 472, "similar": [5, 7, 9, 13, 22, 23, 26, 28, 31, 33, 45, 49, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 79, 84, 85, 93, 94, 95, 96, 100, 101, 102, 106, 109, 110, 112, 120, 133, 137, 139, 146, 151, 157, 158, 163, 167, 169, 170, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 195, 196, 205, 207, 213, 220, 225, 226, 228, 230, 233, 235, 242, 243, 245, 247, 250, 251, 252, 255, 258, 259, 261, 266, 268, 270, 271, 276, 282, 283, 292, 293, 297, 299, 301, 302, 305, 308, 313, 319, 321, 331, 332, 335, 337, 338, 339, 340, 341, 344, 347, 348, 352, 355, 358, 364, 365, 366, 369, 375, 381, 382, 384, 386, 388, 394, 408, 410, 411, 413, 414, 417, 419, 422, 425, 427, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "simionato": [103, 465], "simon": [465, 483], "simon04": 483, "simpkin": 476, "simpl": [7, 33, 43, 63, 64, 67, 68, 73, 75, 84, 85, 92, 94, 95, 99, 100, 101, 102, 103, 109, 110, 113, 115, 120, 122, 138, 141, 151, 155, 158, 161, 167, 169, 170, 173, 174, 176, 181, 183, 184, 187, 189, 190, 194, 196, 200, 205, 207, 208, 209, 226, 230, 234, 242, 244, 248, 255, 262, 267, 268, 269, 271, 278, 283, 289, 292, 293, 295, 297, 299, 304, 307, 308, 319, 324, 329, 331, 333, 335, 337, 340, 343, 344, 345, 347, 358, 359, 362, 365, 369, 378, 380, 381, 384, 385, 386, 388, 394, 395, 399, 400, 406, 407, 408, 410, 411, 413, 414, 419, 420, 422, 427, 430, 431, 436, 440, 446, 455, 461, 462, 463, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 481, 482, 483, 484], "simple_app": 407, "simple_enum": 483, "simple_exampl": [101, 102], "simple_logging_config": 101, "simple_logging_modul": 101, "simple_serv": [68, 256, 467, 479, 483], "simple_stmt": [427, 431], "simplecooki": [244, 483], "simpledialog": [68, 368, 369, 483], "simpleexampl": [101, 102], "simpleexpr": 429, "simplefilt": [362, 400, 468, 469, 473, 483], "simpleformatt": 101, "simplehandl": [407, 462], "simplehttp": 245, "simplehttprequesthandl": [245, 333, 480, 483], "simplehttpserv": [470, 483], "simpleinstal": 461, "simpleinstalldescript": 461, "simplejson": [468, 469], "simplenamespac": [68, 160, 307, 385, 399, 482, 483], "simpleparamspec": 427, "simplepath": 483, "simplequeu": [68, 164, 269, 283, 344, 480, 482, 483], "simpler": [5, 63, 68, 92, 102, 106, 120, 151, 225, 235, 283, 319, 344, 369, 411, 413, 415, 432, 461, 462, 463, 464, 465, 467, 469, 476, 477, 480, 483, 484], "simpleserv": 483, "simplest": [33, 63, 72, 73, 76, 95, 99, 100, 101, 106, 110, 120, 158, 169, 186, 193, 200, 299, 319, 341, 365, 386, 388, 428, 430, 455, 462, 464, 465], "simpletypevar": 427, "simpletypevartupl": 427, "simplexmlrpcdispatch": [480, 483], "simplexmlrpcrequesthandl": [420, 466, 469], "simplexmlrpcserv": [68, 256, 419, 464, 466, 467, 468, 469, 470], "simpli": [7, 63, 72, 73, 75, 76, 79, 84, 85, 95, 99, 102, 103, 106, 109, 120, 139, 152, 155, 158, 167, 176, 177, 183, 186, 193, 225, 230, 250, 255, 262, 267, 268, 269, 272, 283, 292, 293, 297, 299, 304, 314, 319, 324, 325, 333, 335, 340, 342, 345, 348, 352, 353, 365, 385, 386, 388, 395, 400, 403, 410, 411, 419, 421, 432, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 478, 483], "simplic": [64, 75, 262, 340, 344, 462, 464, 483], "simplif": [215, 483], "simplifi": [28, 33, 42, 66, 93, 95, 106, 110, 124, 128, 135, 158, 169, 183, 197, 201, 216, 226, 250, 255, 283, 319, 337, 338, 375, 376, 378, 410, 427, 435, 461, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483], "simplist": 102, "simpson": 481, "simsalabim": 475, "simul": [23, 68, 92, 93, 102, 115, 126, 133, 136, 177, 234, 299, 318, 333, 343, 347, 363, 384, 463, 464, 477], "simultan": [33, 63, 102, 137, 138, 149, 186, 247, 258, 261, 271, 281, 330, 338, 340, 362, 365, 375, 436, 461, 468, 478, 481, 483], "sin": [122, 154, 186, 275, 428, 465], "sin6_flowinfo": 337, "sin6_scope_id": 337, "sinc": [5, 7, 13, 22, 23, 28, 33, 34, 45, 46, 49, 54, 58, 59, 61, 63, 64, 68, 72, 73, 75, 76, 78, 79, 84, 85, 92, 93, 94, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 133, 144, 146, 149, 151, 157, 161, 167, 169, 173, 176, 177, 181, 183, 186, 190, 193, 194, 196, 199, 201, 203, 205, 207, 208, 209, 218, 222, 225, 226, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 258, 262, 266, 267, 268, 269, 271, 272, 278, 283, 288, 292, 293, 295, 297, 307, 308, 314, 319, 328, 330, 332, 335, 337, 338, 339, 340, 341, 344, 345, 347, 352, 355, 358, 362, 364, 365, 366, 369, 376, 378, 380, 381, 382, 386, 388, 395, 400, 405, 410, 411, 412, 414, 415, 419, 421, 422, 427, 428, 430, 432, 434, 435, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sinclair": 478, "sine": [186, 275], "sinfo": 267, "singapor": 413, "singaravelan": 483, "singh": [480, 483], "singl": [5, 7, 9, 16, 22, 23, 25, 31, 33, 39, 48, 51, 58, 59, 61, 63, 64, 66, 67, 68, 71, 73, 76, 79, 85, 87, 92, 94, 95, 96, 99, 100, 103, 106, 108, 109, 110, 120, 122, 144, 146, 151, 157, 158, 159, 163, 166, 167, 176, 177, 178, 181, 183, 186, 189, 190, 191, 193, 195, 196, 202, 203, 207, 208, 213, 218, 220, 223, 225, 226, 230, 234, 235, 242, 243, 247, 248, 250, 251, 253, 255, 258, 259, 261, 265, 267, 268, 269, 270, 271, 275, 278, 281, 283, 284, 288, 292, 293, 297, 299, 302, 305, 307, 308, 314, 315, 318, 319, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 362, 364, 366, 369, 371, 376, 378, 380, 381, 386, 388, 394, 395, 400, 408, 410, 413, 415, 417, 419, 421, 422, 427, 428, 430, 431, 432, 434, 435, 436, 441, 444, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "single_char": 109, "single_subscript_attribute_target": 431, "single_target": 431, "singleaddresshead": 203, "singledispatch": [87, 226, 473, 477, 480, 483], "singledispatchmethod": [226, 481, 483], "singleton": [16, 20, 33, 45, 46, 49, 56, 58, 63, 73, 85, 87, 94, 102, 122, 183, 274, 299, 344, 389, 419, 427, 428, 430, 441, 442, 456, 463, 473, 479, 480, 483], "singleus": 169, "singular": [230, 483], "sinh": [154, 275], "sinpi": 483, "sio": 85, "sio_keepalive_v": 337, "sio_loopback_fast_path": [337, 479, 483], "sio_rcval": 337, "sionneau": [478, 479], "sip": [79, 394], "siphash": [426, 477, 483], "siphash13": [456, 473, 483], "siphash24": [68, 456, 473, 483], "sir": [413, 441, 471, 481], "siregar": [482, 483], "sit": [149, 375, 417], "site": [33, 34, 68, 85, 95, 96, 109, 110, 156, 167, 225, 243, 244, 250, 251, 254, 259, 267, 293, 302, 315, 335, 352, 354, 355, 358, 395, 399, 400, 414, 430, 432, 438, 450, 453, 455, 456, 461, 462, 467, 469, 470, 476, 477, 478, 483, 484], "site_import": [33, 34, 474], "site_map": [396, 483], "sitecustom": [68, 315, 354, 438, 469, 477, 483], "sitedir": 334, "sitemap": 396, "situat": [7, 42, 61, 63, 73, 75, 85, 94, 95, 100, 101, 102, 103, 110, 120, 151, 158, 169, 181, 191, 207, 213, 230, 235, 250, 253, 258, 267, 271, 283, 292, 335, 348, 362, 365, 397, 400, 410, 428, 464, 469, 470, 474, 477, 478, 479, 483], "sivaraam": 483, "six": [102, 108, 183, 225, 226, 299, 318, 319, 340, 376, 394, 422, 468, 475, 477, 480, 481, 483], "sixth": [299, 464, 481], "sixtofour": 259, "sizabl": [463, 464], "size": [3, 5, 7, 9, 18, 28, 31, 34, 39, 41, 42, 43, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 68, 73, 75, 76, 92, 93, 94, 96, 98, 100, 101, 102, 109, 115, 117, 118, 120, 133, 137, 141, 142, 144, 145, 149, 151, 153, 158, 161, 163, 173, 174, 177, 184, 185, 186, 190, 191, 215, 216, 219, 223, 225, 226, 242, 245, 247, 248, 250, 251, 258, 261, 262, 266, 269, 270, 278, 283, 284, 295, 299, 305, 308, 311, 314, 320, 321, 322, 335, 337, 338, 340, 342, 343, 344, 348, 349, 352, 358, 360, 361, 362, 364, 365, 369, 372, 375, 376, 381, 384, 386, 388, 395, 408, 410, 421, 422, 428, 432, 446, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "size1": 75, "size2": 75, "size_diff": 382, "size_or_initi": 283, "size_t": [9, 10, 18, 28, 34, 35, 39, 42, 59, 64, 176, 347, 476, 483], "sizeabl": 483, "sizegrip": [68, 368], "sizehint": [133, 158, 328, 483], "sizeof": [35, 42, 63, 76, 176, 303, 347, 352, 389, 483], "sizeof_digit": [352, 469, 471], "sizeof_long_doubl": 483, "sizeof_void_p": 473, "sizeof_x": 483, "sjis": 158, "sjis2004": 158, "sjis_2004": 158, "sjisx0213": 158, "sjoerd": [344, 446, 462, 468], "skcipher": 337, "skein": [223, 235], "skeleton": 93, "sketch": [193, 243, 441, 467, 468], "ski": [476, 477, 481, 483], "skill": [85, 384], "skimp": 193, "skip": [7, 33, 34, 35, 58, 68, 84, 95, 96, 103, 106, 109, 139, 144, 153, 158, 163, 167, 169, 183, 187, 191, 193, 204, 205, 218, 250, 255, 261, 262, 267, 271, 272, 297, 304, 319, 331, 334, 342, 344, 347, 352, 358, 362, 376, 386, 399, 413, 415, 426, 427, 436, 452, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 482, 483], "skip_accept_encod": 242, "skip_curdir": 163, "skip_file_prefix": [400, 483], "skip_host": 242, "skip_if_broken_multiprocessing_synchron": [362, 483], "skip_source_first_lin": 34, "skip_unless_bind_unix_socket": [362, 483], "skip_unless_symlink": 362, "skip_unless_xattr": 362, "skipif": [362, 388], "skipinitialspac": [175, 483], "skipkey": [262, 304, 483], "skippedent": 415, "skipston": [403, 474, 483], "skiptest": [362, 388, 469, 477, 483], "skipunless": [388, 471], "skipunlesshasattr": 388, "skit": [73, 193], "skonieczni": 483, "skrobov": 483, "skurikhin": 483, "sky": 474, "skycach": 223, "skycaptain": 475, "sl": [84, 284, 483], "slackbook": 460, "slackwar": 460, "slant": [372, 462], "slash": [106, 221, 225, 253, 255, 259, 292, 293, 296, 313, 358, 377, 394, 422, 423, 461, 483], "slash_no_default": 431, "slash_with_default": 431, "slashequ": 377, "slashwithdefault": 431, "slate": [193, 358, 432, 477, 478, 483], "slave": [288, 293, 309, 369, 483], "slave_open": [474, 483], "sle257ohy9fvq07z": 341, "sleep": [68, 84, 95, 96, 102, 123, 124, 125, 126, 129, 133, 134, 135, 137, 138, 166, 167, 177, 257, 283, 322, 325, 333, 340, 348, 362, 366, 468, 472, 473, 476, 478, 479, 480, 481, 483], "sleep_for": 134, "sleeper": 483, "sleepi": 475, "sleeping_retri": 362, "slen": 102, "slept": 134, "sles": 480, "slew": 202, "slghtli": 102, "slice": [7, 40, 42, 54, 56, 60, 68, 85, 87, 95, 121, 122, 141, 168, 171, 176, 191, 206, 213, 225, 228, 261, 278, 283, 291, 293, 296, 299, 319, 340, 344, 366, 415, 431, 436, 442, 446, 449, 450, 462, 464, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 480, 482, 483, 484], "slice_item": 430, "slice_list": 430, "slice_richcompar": 483, "slicelength": 56, "slide": [109, 411], "slider": 483, "slideshow": 411, "sliding_window": 261, "slight": [75, 79, 85, 95, 101, 102, 110, 169, 186, 196, 215, 230, 243, 251, 258, 292, 293, 297, 307, 308, 341, 344, 384, 394, 432, 436, 462, 464, 465, 466, 467, 468, 469, 475, 477, 478, 480, 482, 483], "slimmer": 269, "slope": 343, "slot": [10, 16, 32, 45, 47, 49, 50, 58, 61, 68, 75, 76, 93, 102, 134, 181, 191, 212, 226, 250, 255, 281, 283, 299, 316, 344, 385, 386, 428, 430, 462, 463, 464, 466, 467, 468, 470, 472, 473, 474, 476, 477, 478, 481, 482, 483], "slot_descriptor": 255, "slot_nam": 93, "slot_tp_getattr_hook": 93, "slot_valu": 93, "slotdef": 483, "slotfunc": 102, "slow": [92, 102, 184, 235, 247, 258, 261, 269, 283, 330, 338, 344, 353, 362, 384, 386, 422, 423, 462, 463, 465, 466, 468, 482, 483], "slow_callback_dur": [125, 126], "slowdown": 483, "slower": [84, 85, 106, 158, 226, 247, 258, 270, 283, 330, 384, 465, 466, 468, 470, 474, 480, 481, 482, 483], "slowest": [234, 362, 384, 388, 474, 483], "slowli": [73, 102], "sluggish": 102, "sm": 477, "small": [5, 33, 39, 42, 55, 58, 63, 68, 73, 84, 85, 92, 94, 99, 102, 106, 108, 109, 158, 169, 176, 186, 190, 193, 243, 247, 258, 261, 271, 275, 283, 288, 293, 308, 319, 330, 333, 337, 344, 362, 365, 375, 382, 388, 407, 413, 428, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 479, 481, 482, 483], "small_stack": 483, "small_sum": 382, "smaller": [25, 42, 64, 92, 93, 106, 133, 176, 183, 186, 190, 191, 226, 259, 270, 275, 293, 299, 308, 345, 347, 355, 369, 376, 382, 384, 394, 411, 428, 430, 435, 455, 463, 465, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "smallest": [95, 108, 109, 183, 186, 275, 344, 352, 362, 369, 382, 452, 465, 466, 467, 468, 483], "smalltabl": 476, "smalltak": 440, "smalltalk": [84, 95, 160, 388, 440, 463], "sman": 483, "smarrita": 467, "smart": [103, 247, 464, 483], "smarter": [471, 475, 483], "smaxcol": 177, "smaxrow": 177, "smb": [481, 483], "smelli": 483, "smime": 201, "smincol": 177, "sminrow": 177, "smirnov": 483, "smith": [466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sml": 261, "smm": 284, "smooth": 343, "smp": 284, "sms": 483, "sms2": 483, "smtp": [68, 80, 84, 101, 102, 194, 200, 201, 203, 208, 254, 256, 269, 341, 451, 462, 464, 468, 475, 476, 477, 478, 482, 483], "smtp_code": 335, "smtp_error": 335, "smtp_ssl": [335, 468, 476, 482, 483], "smtpauthenticationerror": 335, "smtpchannel": [477, 478, 479, 483], "smtpconnecterror": 335, "smtpd": [68, 473, 479, 482, 483], "smtpdataerror": 335, "smtpexcept": [335, 477], "smtphandler": [68, 101, 102, 118, 268, 483], "smtpheloerror": 335, "smtplib": [68, 84, 102, 142, 194, 200, 201, 208, 254, 256, 269, 341, 451, 464, 468, 474, 475, 479, 483], "smtpnotsupport": 335, "smtpnotsupportederror": [335, 483], "smtprecipientsrefus": 335, "smtpresponseexcept": 335, "smtpsenderrefus": 335, "smtpserver": [477, 478, 479, 483], "smtpserverdisconnect": [335, 483], "smtputf8": [208, 335, 478, 483], "smtputf8simtest": 483, "sn": 465, "snake": [122, 160], "snan": [186, 469], "snapshot": [68, 185, 257, 342, 477], "snapshot1": 382, "snapshot2": 382, "snd": 349, "snd_alia": 406, "snd_async": 406, "snd_filenam": 406, "snd_loop": 406, "snd_memori": [406, 483], "snd_nodefault": 406, "snd_nostop": 406, "snd_nowait": 406, "snd_purg": 406, "sndctl_dsp_setfmt": 295, "sndctl_dsp_sync": 295, "sndhdr": [68, 254, 350, 473, 474, 483], "sndr": 336, "sndt": 336, "sndtool": 336, "sneak": 483, "sneakili": 464, "sneezi": 475, "snew": 394, "sni": [341, 474, 477, 480, 483], "sni_callback": [341, 483], "snider": [479, 483], "snif": 110, "sniff": [175, 483], "sniffer": [175, 337, 483], "snip": 96, "snippet": [23, 94, 102, 139, 170, 244, 268, 331, 341, 365, 461, 464, 465, 467, 478, 483], "snmp": 107, "snow": [324, 473, 474, 476, 477, 478, 479, 480, 481], "snowman": [102, 474], "snprintf": [18, 464, 472, 483], "so": [5, 7, 11, 13, 22, 23, 25, 27, 28, 31, 33, 34, 41, 42, 45, 49, 54, 57, 59, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 137, 139, 141, 151, 153, 157, 158, 159, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 186, 190, 191, 193, 196, 199, 200, 201, 202, 203, 205, 207, 208, 209, 213, 214, 215, 216, 218, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 253, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 278, 283, 284, 292, 293, 297, 299, 302, 308, 312, 314, 319, 325, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 385, 386, 388, 395, 399, 405, 406, 407, 410, 411, 413, 415, 416, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 436, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "so_": 337, "so_domain": [337, 479], "so_exclusiveaddrus": 362, "so_incoming_cpu": [337, 483], "so_mark": 337, "so_passcr": 337, "so_passsec": [337, 479], "so_peersec": [337, 479], "so_protocol": [337, 479], "so_reuseaddr": [126, 337, 362, 473, 479, 480, 481, 482, 483], "so_reuseport": [126, 337, 362, 483], "so_rtabl": [337, 483], "so_setfib": 469, "so_user_cooki": [337, 483], "so_vm": 337, "soabi": [475, 483], "soapbox": [68, 187], "soar": 483, "sobolev": [473, 474, 483], "soc": 122, "sock": [102, 106, 107, 126, 133, 136, 242, 308, 329, 337, 338, 341, 362, 475, 478, 480, 483], "sock_": [337, 477, 483], "sock_accept": [126, 130, 480, 483], "sock_cloexec": [337, 480, 483], "sock_connect": [126, 130, 478, 483], "sock_dgram": [126, 269, 337, 338, 469], "sock_max_s": 362, "sock_nonblock": [337, 480, 483], "sock_raw": 337, "sock_rdm": 337, "sock_recv": [126, 130, 480, 483], "sock_recv_into": [126, 130, 480, 483], "sock_recvfrom": [126, 130, 473, 483], "sock_recvfrom_into": [126, 130, 473, 483], "sock_sendal": [126, 130, 480, 483], "sock_sendfil": [126, 130, 480, 483], "sock_sendto": [126, 130, 473, 483], "sock_seqpacket": 337, "sock_stream": [102, 107, 126, 269, 337, 338, 341, 362, 469, 480], "sockaddr": [126, 142, 337], "sockaddr_in6": 337, "sockaddr_un": 483, "socket": [23, 68, 80, 87, 95, 97, 99, 101, 106, 109, 124, 127, 130, 131, 142, 158, 170, 171, 187, 207, 212, 213, 223, 235, 242, 245, 247, 248, 254, 256, 257, 258, 259, 260, 267, 268, 269, 283, 284, 288, 293, 296, 305, 307, 322, 328, 329, 333, 335, 338, 342, 358, 359, 369, 402, 407, 413, 428, 439, 452, 456, 462, 463, 464, 465, 466, 467, 468, 469, 474, 483], "socket_help": [68, 187, 254], "socket_typ": 338, "socketcan": [476, 483], "sockethandl": [68, 101, 102, 118, 268, 473, 477], "socketio": 235, "socketkind": 337, "socketmodul": 483, "socketpair": [126, 133, 136, 333, 337, 466, 480, 483], "socketserv": [68, 102, 241, 245, 254, 256, 337, 420, 468, 469, 470, 483], "sockettyp": 337, "socknam": [133, 483], "socktyp": [102, 269, 337, 362, 469], "socular": 483, "soffer": [480, 483], "soft": [177, 247, 263, 322, 358, 362, 427, 431, 435, 436, 472, 483], "soft_keyword": [377, 431], "softkwlist": 263, "softspac": [470, 483], "softwar": [33, 68, 69, 77, 80, 95, 101, 102, 103, 109, 151, 158, 177, 187, 192, 193, 194, 212, 228, 235, 245, 246, 247, 266, 267, 288, 293, 307, 341, 366, 384, 399, 405, 419, 426, 459, 461, 462, 463, 465, 466, 468, 469, 483, 484], "softwarepythonpythoncorex": 34, "soh": 178, "sokolovskiy": 235, "sol_": 337, "sol_alg": [337, 479], "sol_can_": 337, "sol_rd": 337, "sol_socket": 337, "solari": [33, 68, 246, 293, 303, 306, 328, 352, 355, 366, 462, 469, 475, 476, 478, 480, 483], "soldier": 291, "sole": [85, 94, 161, 186, 255, 283, 340, 344, 364, 385, 386, 426, 428, 430, 469, 476, 477, 478, 480, 483], "solicit": 155, "solid": [177, 476, 477], "solidus": 387, "solitari": 283, "solomon": [384, 483], "solut": [68, 73, 84, 85, 93, 94, 95, 100, 102, 103, 106, 109, 132, 181, 186, 247, 299, 333, 338, 343, 355, 384, 426, 432, 461, 462, 464, 465, 466, 467, 468, 469, 471, 475, 481, 483], "solv": [33, 84, 85, 95, 103, 106, 247, 283, 330, 347, 358, 386, 427, 464, 465, 467, 471, 475, 477, 481, 483], "somaxconn": [337, 478], "some": [5, 7, 23, 28, 33, 34, 42, 58, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 120, 126, 132, 133, 137, 138, 139, 141, 149, 151, 155, 157, 158, 161, 163, 167, 169, 175, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 199, 203, 204, 205, 206, 207, 208, 209, 215, 216, 218, 221, 225, 226, 230, 234, 235, 240, 243, 244, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 282, 283, 288, 292, 293, 295, 296, 297, 299, 302, 307, 308, 311, 314, 319, 322, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 376, 377, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 403, 410, 411, 412, 413, 414, 415, 416, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "some_attribut": [76, 389], "some_behavior": 94, "some_class": 93, "some_conn_id": 102, "some_coro": 139, "some_coroutin": 427, "some_default": 427, "some_enum_var": 94, "some_fil": 479, "some_fract": 473, "some_func": 351, "some_funct": [102, 389, 390], "some_handler_inst": 110, "some_id": [386, 479], "some_int": 85, "some_it": [474, 483], "some_iter": 112, "some_lock": 365, "some_machine_integ": 96, "some_method": [390, 419], "some_mock": 389, "some_numb": 75, "some_obj": 390, "some_object": [75, 85, 255, 389], "some_other_cod": 472, "some_python_coroutin": 139, "some_python_integ": 96, "some_s": 75, "some_sequ": 470, "some_tag": 411, "some_tupl": 85, "some_typ": 176, "some_valu": 386, "some_var": 211, "some_vari": 297, "some_xml_docu": 314, "somebodi": 110, "someclass": [112, 299, 386, 389, 390, 462], "somedata": [94, 235, 304], "someday": 483, "somedir": 225, "someexcept": [213, 388, 470], "somefil": [169, 204, 230, 293, 331, 380], "somehow": [73, 283, 358, 468, 469], "someiter": 175, "somelogg": 102, "somemoredata": 304, "somenam": 344, "somenamedtupl": 160, "someon": [73, 85, 183, 335, 395, 413, 468, 469, 474, 483], "someone_els": 200, "someotherfil": 169, "somepackag": 111, "somepolici": 208, "someserv": 110, "somestr": 348, "sometag": 413, "sometest": [388, 480], "sometext": 413, "someth": [22, 33, 36, 73, 75, 84, 85, 92, 93, 95, 99, 100, 101, 102, 106, 107, 120, 122, 132, 139, 144, 151, 169, 176, 201, 213, 225, 228, 247, 250, 251, 253, 255, 261, 262, 267, 268, 283, 292, 293, 299, 308, 314, 322, 338, 340, 341, 355, 358, 362, 365, 369, 386, 388, 389, 390, 395, 410, 413, 419, 425, 428, 431, 432, 436, 441, 449, 462, 463, 464, 465, 466, 467, 468, 469, 472, 474, 475, 482, 483], "somethin": 474, "something_els": 211, "somethingfortest": 389, "sometim": [73, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 102, 106, 109, 110, 112, 120, 135, 139, 151, 158, 167, 169, 176, 177, 186, 190, 193, 203, 213, 225, 226, 235, 247, 255, 259, 261, 268, 271, 288, 292, 293, 299, 308, 319, 341, 342, 366, 369, 384, 386, 395, 413, 428, 430, 434, 436, 462, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 482, 483], "sometyp": [386, 478], "someurl": 110, "somevalu": 410, "somevar": 85, "somewarn": 388, "somewhat": [11, 23, 100, 102, 176, 183, 204, 226, 247, 266, 292, 293, 337, 369, 425, 462, 467, 470, 480, 481, 483], "somewher": [73, 84, 85, 102, 245, 247, 292, 302, 314, 344, 410, 441, 461, 468, 472], "somewidget": 376, "son": 462, "song": [93, 474], "sonntag": 183, "sonoma": 483, "soon": [84, 92, 106, 109, 136, 139, 193, 228, 232, 261, 283, 293, 297, 344, 362, 384, 386, 411, 427, 428, 465, 467, 474, 477, 482, 483], "sooner": [176, 411, 468], "soonest": [325, 476], "soothsay": 451, "sophist": [85, 133, 155, 169, 186, 267, 345, 413, 464, 467], "sornay": 483, "sorri": 441, "sort": [38, 68, 76, 77, 80, 84, 87, 89, 95, 110, 112, 120, 147, 151, 160, 167, 173, 176, 184, 186, 190, 193, 208, 225, 226, 232, 236, 248, 251, 255, 259, 261, 262, 266, 271, 283, 291, 292, 293, 296, 304, 307, 308, 318, 319, 328, 335, 340, 343, 344, 358, 362, 382, 384, 388, 395, 410, 413, 422, 428, 430, 441, 442, 450, 452, 461, 464, 465, 466, 467, 468, 469, 470, 471, 475, 477, 478, 480, 481, 482, 483], "sort_criteria": 248, "sort_dict": [307, 481, 483], "sort_key": [262, 304, 475], "sort_ord": 308, "sort_stat": 308, "sortabl": [259, 269], "sortbi": 308, "sortdict": 362, "sortedcollect": 147, "sorting_anim": 384, "sortkey": 308, "sorttestmethodsus": 388, "sottil": [480, 481, 482, 483], "soumendra": [474, 483], "soumya": 483, "sound": [72, 84, 117, 141, 177, 223, 295, 336, 355, 406, 450, 465, 468], "sound_mixer_": 295, "sound_mixer_m": 295, "sound_mixer_pcm": 295, "sound_mixer_synth": 295, "sound_mixer_volum": 295, "soundcard": 295, "soup": 240, "sourc": [5, 13, 22, 23, 31, 33, 34, 66, 68, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 102, 112, 122, 142, 152, 157, 158, 159, 163, 167, 176, 177, 181, 182, 187, 190, 191, 193, 203, 207, 208, 209, 213, 214, 223, 225, 230, 235, 242, 248, 251, 252, 254, 257, 261, 264, 265, 267, 268, 269, 270, 280, 281, 283, 292, 293, 295, 297, 299, 308, 311, 312, 313, 315, 321, 324, 330, 331, 332, 335, 337, 340, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 366, 368, 369, 371, 377, 380, 381, 382, 388, 395, 399, 400, 405, 410, 413, 414, 415, 416, 417, 421, 422, 423, 426, 427, 428, 432, 434, 435, 436, 443, 453, 455, 456, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "source1": [358, 422], "source_address": [223, 242, 335, 337, 469, 475, 476], "source_buf": 472, "source_byt": 250, "source_bytes_object": 472, "source_date_epoch": [163, 311, 480, 483], "source_fil": 120, "source_from_cach": [31, 250, 474, 475, 477, 479], "source_hash": [250, 480, 483], "source_lin": 122, "source_suffix": [250, 474], "source_to_cod": [250, 477, 478, 483], "source_traceback": 125, "sourcecod": 384, "sourcefileload": [31, 250, 474, 476, 479, 483], "sourceforg": [81, 183, 426, 462, 463, 465, 468, 483], "sourcehook": 331, "sourceless": [250, 476, 478], "sourcelessfileload": [250, 476, 479], "sourcelin": 208, "sourceload": [250, 476, 477], "sourcen": [358, 422], "south": [94, 158, 319, 376, 384, 468, 471], "southeast": 376, "sovers": 483, "sowt": 483, "sox": 426, "sp": [96, 178, 235, 240], "sp3": 480, "sp4": 468, "sp_expir": 339, "sp_flag": 339, "sp_inact": 339, "sp_lstchg": 339, "sp_max": 339, "sp_min": 339, "sp_namp": 339, "sp_pwdp": 339, "sp_warn": 339, "space": [5, 18, 33, 42, 49, 59, 61, 63, 64, 72, 73, 85, 92, 93, 95, 100, 101, 106, 109, 115, 120, 146, 150, 155, 158, 161, 162, 167, 177, 178, 184, 186, 190, 191, 193, 199, 201, 202, 212, 213, 221, 225, 226, 242, 247, 248, 255, 259, 261, 266, 267, 268, 283, 284, 292, 293, 297, 303, 314, 319, 321, 322, 331, 332, 333, 334, 335, 337, 344, 345, 346, 348, 362, 364, 365, 366, 369, 375, 376, 378, 382, 384, 394, 395, 397, 399, 410, 413, 426, 428, 432, 434, 435, 461, 462, 466, 467, 468, 469, 470, 471, 472, 474, 476, 477, 479, 480, 482, 483], "space_around_delimit": 167, "spacious": 344, "spaghetti": 78, "spam": [35, 45, 73, 77, 102, 103, 106, 110, 120, 170, 175, 176, 193, 218, 225, 226, 230, 242, 243, 245, 250, 255, 258, 268, 296, 307, 313, 319, 321, 330, 334, 340, 344, 348, 358, 381, 385, 386, 389, 390, 395, 413, 422, 428, 430, 432, 440, 441, 443, 446, 449, 450, 462, 468, 478, 483], "spam42": 478, "spam_appl": 102, "spam_doc": 73, "spam_modul": [35, 73], "spam_object": 58, "spam_system": 73, "spam_type_memb": 58, "spamcontext": 333, "spamerror": 73, "spammer": 335, "spammetapathfind": 250, "spammethod": 73, "spammifi": 73, "spammish": 235, "spammodul": 73, "spampathentryfind": 250, "spamread": 175, "spamspam": 225, "spamwrit": 175, "span": [100, 106, 122, 167, 193, 220, 240, 278, 319, 344, 345, 427, 467, 468, 474, 476, 478, 479, 483], "sparc": [33, 295], "spare": 463, "spark": [463, 483], "sparrow": 465, "spars": [22, 293, 358, 483], "spawn": [68, 102, 124, 130, 132, 137, 138, 142, 164, 166, 257, 293, 309, 338, 362, 365, 474, 477, 481, 482, 483], "spawn_python": 362, "spawnl": 293, "spawnlp": [293, 348], "spawnv": [293, 483], "spawnvp": [293, 348], "spdi": 341, "speak": [33, 34, 68, 73, 85, 183, 344, 347, 356], "speaker": 406, "spearman": [343, 474, 483], "spec": [31, 45, 61, 68, 87, 108, 211, 236, 239, 244, 250, 255, 262, 324, 345, 352, 376, 389, 390, 394, 419, 423, 431, 465, 474, 477, 478, 479, 480, 481, 482, 483], "spec_arg": 483, "spec_from_file_loc": [250, 474, 479], "spec_from_load": [250, 472], "spec_set": [389, 390], "specc": 389, "special": [7, 18, 23, 31, 33, 34, 35, 42, 49, 58, 60, 61, 63, 64, 68, 73, 75, 84, 85, 87, 92, 94, 95, 100, 101, 102, 103, 106, 109, 120, 137, 138, 139, 144, 151, 152, 155, 167, 168, 169, 176, 177, 180, 181, 183, 187, 191, 193, 196, 203, 205, 208, 220, 222, 228, 230, 245, 247, 250, 254, 255, 259, 261, 262, 266, 267, 268, 271, 272, 281, 282, 283, 290, 292, 293, 299, 302, 319, 321, 324, 329, 331, 332, 333, 337, 341, 342, 347, 348, 352, 353, 358, 361, 365, 369, 375, 388, 394, 395, 410, 413, 415, 419, 425, 426, 427, 429, 430, 431, 433, 435, 436, 449, 456, 461, 462, 463, 464, 466, 467, 468, 469, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "specialbuild": [35, 456], "specialfileerror": [358, 469], "specialfilt": 102, "specialform": 483, "specialis": [102, 110, 340, 344, 386, 431, 483], "specif": [23, 34, 42, 45, 49, 51, 58, 60, 61, 63, 66, 67, 68, 73, 76, 77, 85, 93, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 111, 112, 115, 120, 132, 133, 145, 151, 153, 155, 161, 167, 169, 176, 177, 181, 183, 184, 186, 187, 193, 194, 195, 196, 202, 203, 205, 206, 208, 212, 213, 215, 221, 222, 225, 226, 228, 230, 235, 240, 242, 243, 244, 245, 247, 250, 251, 252, 253, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 275, 281, 283, 288, 293, 295, 296, 297, 299, 308, 314, 315, 321, 322, 328, 329, 331, 332, 335, 337, 338, 340, 341, 342, 344, 347, 352, 353, 354, 355, 358, 359, 362, 363, 364, 365, 366, 368, 369, 374, 377, 385, 387, 388, 394, 395, 399, 400, 404, 407, 410, 411, 413, 417, 419, 422, 423, 425, 426, 427, 428, 432, 434, 435, 436, 446, 455, 461, 462, 463, 464, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483], "specifi": [5, 7, 9, 11, 13, 17, 22, 23, 25, 33, 34, 39, 42, 45, 49, 56, 61, 63, 64, 66, 68, 73, 75, 76, 77, 79, 85, 89, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 112, 115, 117, 118, 119, 120, 132, 133, 135, 138, 139, 141, 144, 146, 149, 151, 155, 157, 158, 161, 163, 167, 169, 173, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 218, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 311, 313, 314, 319, 320, 322, 324, 328, 329, 330, 331, 332, 333, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 388, 394, 395, 397, 399, 400, 405, 406, 410, 411, 413, 415, 416, 422, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 446, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "specific_submodul": 450, "specified_attribut": [314, 483], "specir": 102, "sped": [475, 478, 481, 482, 483], "speech": [102, 295], "speed": [42, 64, 73, 93, 101, 106, 146, 161, 177, 184, 186, 190, 216, 226, 234, 250, 258, 261, 295, 297, 299, 330, 341, 343, 352, 361, 384, 428, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "speedstr": 384, "speedup": [39, 299, 426, 431, 463, 467, 468, 469, 471, 474, 475, 476, 477, 481, 483], "speedvalu": 384, "speleotrov": 466, "spell": [92, 158, 183, 203, 267, 308, 344, 376, 435, 436, 465, 470, 476, 483], "spend": [322, 462, 483], "spent": [73, 139, 308, 322, 333, 467, 468], "spew": 483, "sphinx": [0, 68, 80, 84, 102, 474, 483], "sphinxext": 483, "spice": 225, "spider": 462, "spielberg": [93, 147], "spil": 483, "spill": 183, "spin": [318, 483], "spinbox": [68, 368, 375, 480, 481, 483], "spiral": 155, "spiritu": 102, "spite": 33, "splat": 483, "splice": [212, 293, 472, 483], "splice_f_mor": 293, "splice_f_mov": 293, "splice_f_nonblock": 293, "split": [45, 64, 68, 78, 84, 85, 102, 108, 120, 141, 155, 158, 167, 186, 190, 191, 196, 200, 202, 208, 213, 228, 230, 248, 261, 281, 291, 292, 293, 294, 297, 303, 307, 318, 319, 321, 331, 335, 340, 341, 344, 345, 348, 364, 378, 386, 388, 389, 394, 399, 407, 415, 435, 440, 464, 465, 466, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "split_command": 331, "splitchar": 202, "splitdriv": [294, 480, 483], "splitext": [102, 200, 294, 296, 358, 452, 468, 479, 483], "splithost": 483, "splitlin": [87, 155, 190, 200, 208, 344, 364, 381, 468, 475, 477, 483], "splitlist": [482, 483], "splitresult": [394, 483], "splitresultbyt": [394, 483], "splitroot": [294, 474, 483], "splitunc": [480, 483], "spoerri": 467, "spoken": 102, "spolski": 109, "spool": 360, "spooledtemporaryfil": [360, 468, 473, 476, 483], "sporad": 293, "spot": [85, 295, 364], "spray": 190, "spread": [68, 290, 369, 468], "spreadsheet": [93, 465], "spring": [106, 183, 225], "sprinkl": [85, 434], "sprint": [467, 468], "sprintf": [344, 462, 464], "sprocket": 475, "spurious": [186, 333, 471, 483], "spwd": [68, 233, 254, 310, 350, 467, 473, 474, 479, 483], "spytz": [472, 473, 481, 482, 483], "sq_ass_item": 63, "sq_concat": 63, "sq_contain": [58, 63], "sq_inplace_concat": 63, "sq_inplace_repeat": 63, "sq_item": [63, 483], "sq_length": [61, 63, 483], "sq_repeat": 63, "sql": [68, 95, 109, 175, 261, 281, 292, 298, 386, 451, 467, 471, 473, 476, 483], "sql_script": 340, "sqlite": [68, 254, 298, 443, 451, 456, 467, 469, 472, 473, 474, 475, 476, 477, 480, 483], "sqlite3": [68, 84, 93, 142, 156, 160, 254, 298, 299, 456, 468, 469, 481, 483], "sqlite3_column_blob": 483, "sqlite3_column_nam": 483, "sqlite3_column_text": 483, "sqlite3_get_autocommit": 483, "sqlite3_prepare_v2": 483, "sqlite3_value_blob": 483, "sqlite_dbconfig": 340, "sqlite_dbconfig_defens": 340, "sqlite_dbconfig_dqs_ddl": 340, "sqlite_dbconfig_dqs_dml": 340, "sqlite_dbconfig_enable_fkey": 340, "sqlite_dbconfig_enable_fts3_token": 340, "sqlite_dbconfig_enable_load_extens": 340, "sqlite_dbconfig_enable_qpsg": 340, "sqlite_dbconfig_enable_trigg": 340, "sqlite_dbconfig_enable_view": 340, "sqlite_dbconfig_legacy_alter_t": 340, "sqlite_dbconfig_legacy_file_format": 340, "sqlite_dbconfig_no_ckpt_on_clos": 340, "sqlite_dbconfig_reset_databas": 340, "sqlite_dbconfig_trigger_eqp": 340, "sqlite_dbconfig_trusted_schema": 340, "sqlite_dbconfig_writable_schema": 340, "sqlite_deni": 340, "sqlite_errorcod": [340, 473], "sqlite_errornam": [340, 473], "sqlite_ignor": 340, "sqlite_limit_attach": 340, "sqlite_limit_length": 483, "sqlite_limit_sql_length": [340, 483], "sqlite_mast": 340, "sqlite_misus": 483, "sqlite_nomem": 483, "sqlite_ok": 340, "sqlite_omit_autoinit": 483, "sqlite_threadsaf": 340, "sqlite_vers": 340, "sqlite_version_info": 340, "sqllite3": 451, "sqrt": [141, 154, 166, 186, 275, 343, 466, 467, 468, 475, 481, 483], "sqrt_n": 166, "squar": [5, 33, 63, 85, 87, 89, 94, 95, 109, 141, 177, 181, 186, 261, 275, 297, 308, 340, 343, 344, 384, 394, 413, 427, 428, 430, 434, 435, 436, 440, 442, 449, 464, 465, 468, 472, 481, 483], "squeez": [247, 479, 480, 481, 483], "squeezer": 483, "squirrel": [33, 308], "sr": 223, "src": [7, 52, 89, 104, 142, 176, 193, 200, 231, 240, 278, 281, 293, 332, 340, 465, 467, 483], "src1": [166, 475], "src2": [166, 475], "src3": [166, 475], "src4": 166, "src_dir_fd": [142, 293], "src_path": 142, "srcdir": [456, 475, 483], "srcname": 332, "sre": [462, 464], "sre_compil": [473, 483], "sre_const": [473, 478, 483], "sre_flag_unicod": 279, "sre_match": 478, "sre_pars": [473, 483], "sre_pattern": 483, "sriniva": [473, 480, 483], "srinivasan": 473, "srivastava": [472, 483], "srmount": 212, "srow": 378, "srt": 483, "srv": [126, 170, 480], "ss": [73, 109, 183, 248, 344, 366, 472, 476], "sscanf": 176, "sse2": 483, "sse3": 483, "sse4": 483, "ssh": [266, 288, 331, 332, 394, 483], "ssize_t": [64, 68, 176, 347, 475, 476, 484], "ssizeargfunc": [57, 63], "ssizeobjargproc": [57, 63], "ssizessizeargfunc": 57, "ssizessizeobjargproc": 57, "ssl": [68, 94, 110, 126, 133, 136, 223, 242, 248, 254, 260, 269, 288, 293, 305, 327, 335, 337, 386, 395, 407, 419, 426, 456, 460, 462, 465, 466, 469, 482, 483], "ssl3": 341, "ssl_cert_dir": 483, "ssl_cert_fil": 483, "ssl_context": [248, 288, 474, 483], "ssl_ctx": 483, "ssl_ctx_set_cipher_list": 483, "ssl_ctx_set_default_verify_path": 483, "ssl_ctx_set_min_proto_vers": 483, "ssl_error_": 341, "ssl_error_ssl": 483, "ssl_error_syscal": 483, "ssl_handshake_timeout": [126, 136, 480], "ssl_mode_auto_retri": 469, "ssl_mode_release_buff": 483, "ssl_object": 133, "ssl_op_al": 341, "ssl_r_certificate_verify_fail": 483, "ssl_read_ex": [341, 483], "ssl_shutdown_timeout": [126, 136, 483], "ssl_sock": 341, "ssl_verify_post_handshak": 483, "ssl_version": [223, 341, 474, 483], "ssl_write_ex": [341, 483], "sslcertverificationerror": [341, 480, 483], "sslcontext": [126, 133, 136, 223, 242, 248, 269, 288, 305, 335, 341, 395, 419, 469, 472, 474, 475, 476, 477, 478, 479, 480, 483], "ssleoferror": [341, 483], "sslerror": [341, 475], "sslerrornumb": 341, "sslfakefil": 476, "sslkeylogfil": [341, 483], "sslobject": [133, 341, 386, 478, 480, 483], "sslobject_class": 341, "sslproto": 483, "sslprotocol": 483, "sslsession": [341, 479, 483], "sslsocket": [133, 341, 469, 472, 477, 478, 479, 480, 482, 483], "sslsocket_class": 341, "sslsyscallerror": 341, "ssltransport": 483, "sslv2": [341, 475], "sslv23": 341, "sslv23_method": 483, "sslv3": [341, 476, 478, 483], "sslwantreaderror": [341, 478, 483], "sslwantwriteerror": [341, 478, 483], "sslzeroreturnerror": 341, "ssnd": 483, "ssock": 341, "sss": [73, 75, 183], "ssse3": 483, "sstate_interned_immort": [474, 483], "sstate_interned_immortal_stat": 474, "st": [384, 465, 479, 480, 483], "st_append": 293, "st_atim": [293, 342], "st_atime_n": 293, "st_birthtim": [293, 467, 474, 483], "st_birthtime_n": 293, "st_blksize": 293, "st_block": [293, 483], "st_creator": 293, "st_ctime": [293, 342, 474, 483], "st_ctime_n": 293, "st_dev": [293, 342, 474], "st_file_attribut": [293, 342, 478, 483], "st_flag": [293, 467], "st_fstype": [293, 480, 483], "st_gen": [293, 467], "st_gid": [293, 342], "st_immut": 293, "st_ino": [269, 293, 342, 474, 483], "st_mandlock": 293, "st_mode": [293, 296, 342, 477, 481], "st_mtime": [190, 234, 293, 296, 342, 358, 465], "st_mtime_n": 293, "st_nlink": [293, 342], "st_noatim": 293, "st_nodev": 293, "st_nodiratim": 293, "st_noexec": 293, "st_nosuid": 293, "st_rdev": [293, 474], "st_rdon": 293, "st_relatim": 293, "st_reparse_tag": [293, 342, 481], "st_rsize": 293, "st_size": [293, 296, 342, 464], "st_synchron": 293, "st_type": 293, "st_uid": [293, 342], "st_write": 293, "stab": 292, "stabil": [261, 473, 483], "stabl": [57, 58, 61, 68, 100, 225, 236, 252, 276, 292, 344, 352, 425, 465, 466, 469, 474, 477, 478, 479, 481, 482, 483, 484], "stack": [12, 23, 33, 35, 59, 68, 73, 75, 78, 94, 96, 101, 104, 115, 122, 126, 135, 139, 140, 144, 157, 160, 169, 171, 177, 179, 184, 185, 191, 193, 213, 214, 225, 226, 247, 254, 257, 267, 269, 297, 315, 316, 319, 322, 331, 333, 337, 342, 344, 352, 353, 365, 375, 388, 400, 427, 428, 429, 430, 435, 436, 443, 445, 455, 462, 463, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "stack_effect": [191, 477, 483], "stack_glob": 483, "stack_info": [267, 483], "stack_level": 23, "stack_siz": [115, 365, 467, 483], "stack_t": 483, "stackbrows": 483, "stackcheck_count": 473, "stackexchang": 235, "stackless": [78, 434], "stacklevel": [102, 258, 267, 400, 467, 483], "stacksiz": [13, 142, 385, 483], "stacksummari": [68, 315, 473, 478, 483], "stacktop": 483, "stackview": 483, "staff": [101, 332, 358], "stage": [106, 365, 395, 400, 410, 462, 482, 483], "stake": 384, "stale": [212, 250, 477, 483], "stall": 483, "stamatogiannaki": 472, "stamp": [183, 384, 465, 466, 483], "stamp_id": 384, "stampid": 384, "stand": [7, 81, 85, 109, 169, 186, 275, 292, 302, 319, 420, 421, 427, 435, 462, 467, 468, 469, 475, 477, 480, 481, 483], "standalon": [68, 169, 192, 193, 252, 314, 384, 388, 411, 427, 459, 468, 483], "standard": [5, 7, 31, 32, 33, 34, 42, 59, 61, 63, 64, 66, 68, 73, 74, 75, 76, 77, 79, 80, 84, 85, 94, 95, 96, 101, 102, 106, 108, 109, 110, 112, 114, 115, 120, 133, 137, 141, 144, 145, 151, 153, 157, 163, 167, 176, 177, 178, 182, 183, 186, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 207, 208, 209, 212, 213, 214, 218, 220, 223, 225, 230, 235, 243, 245, 247, 248, 250, 255, 257, 258, 261, 266, 267, 268, 269, 271, 272, 273, 275, 276, 278, 279, 281, 283, 285, 288, 293, 295, 297, 299, 301, 302, 305, 308, 309, 311, 312, 314, 319, 321, 324, 326, 328, 331, 332, 333, 334, 335, 337, 338, 343, 345, 348, 352, 354, 355, 357, 358, 359, 362, 365, 366, 369, 375, 376, 381, 384, 386, 387, 388, 394, 395, 397, 398, 400, 407, 408, 410, 413, 419, 421, 422, 425, 426, 427, 428, 429, 430, 433, 434, 435, 436, 441, 444, 445, 452, 454, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "standard_arg": 441, "standard_b64decod": 143, "standard_b64encod": 143, "standard_option_list": 292, "standard_rights_read": 405, "standard_rights_requir": 405, "standard_rights_writ": 405, "standard_test": [362, 388], "standard_way": 108, "standarderror": [112, 468, 470], "standend": 177, "standout": 177, "stani": 483, "stanislav": 474, "stanley": [472, 479, 480, 481, 482, 483], "stansburi": 483, "stap": 98, "stapsdt": 98, "star": [93, 122, 191, 358, 377, 427, 431, 434, 436, 472, 473, 483], "star_annot": 431, "star_atom": 431, "star_etc": 431, "star_express": 431, "star_named_express": [427, 431], "star_pattern": [427, 431], "star_target": 431, "star_targets_list_seq": 431, "star_targets_tuple_seq": 431, "stararg": [468, 483], "starequ": 377, "staretc": 431, "starmap": [95, 225, 261, 275, 283, 476], "starmap_async": [283, 476], "starostin": 483, "starred_and_keyword": 430, "starred_express": [430, 431, 436], "starred_item": 430, "starred_list": [427, 430], "starship": [386, 467, 479], "start": [7, 9, 11, 22, 23, 25, 33, 34, 42, 56, 63, 64, 66, 68, 72, 75, 76, 79, 80, 84, 85, 93, 94, 95, 96, 98, 101, 102, 103, 105, 106, 109, 110, 114, 115, 117, 120, 121, 132, 133, 137, 139, 141, 142, 144, 146, 151, 153, 157, 158, 160, 161, 164, 166, 169, 176, 177, 178, 181, 183, 184, 189, 190, 191, 193, 194, 199, 201, 203, 205, 208, 211, 213, 215, 217, 220, 222, 225, 227, 230, 233, 240, 242, 243, 245, 247, 248, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 275, 278, 281, 284, 288, 290, 292, 293, 294, 297, 299, 302, 305, 308, 309, 312, 313, 314, 316, 318, 319, 320, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 356, 358, 362, 365, 366, 369, 371, 376, 378, 380, 381, 382, 386, 388, 389, 390, 394, 395, 399, 400, 403, 407, 410, 411, 413, 415, 417, 421, 422, 427, 428, 430, 431, 432, 435, 436, 441, 442, 451, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "start_cal": 390, "start_cmd": 102, "start_color": [92, 177], "start_column": [13, 428], "start_compon": [281, 483], "start_dir": [388, 483], "start_docu": 412, "start_el": [314, 412], "start_gam": 96, "start_lin": [13, 428], "start_method": 166, "start_n": [413, 481, 483], "start_new_sess": [348, 481, 483], "start_new_thread": [115, 142, 483], "start_offset": 270, "start_respons": [407, 475, 483], "start_rul": 431, "start_serv": [124, 126, 133, 136, 170, 365, 480, 483], "start_thread": [102, 362, 483], "start_tl": [126, 130, 136, 473, 480, 483], "start_unix_serv": [124, 126, 136], "startboundarynotfounddefect": 199, "startcdata": 415, "startcdatasectionhandl": 314, "startcom": 341, "startdoctypedeclhandl": 314, "startdocu": 415, "startdtd": [415, 466], "started_at": 134, "startel": [415, 416, 462], "startelementhandl": 314, "startelementn": [415, 416], "starter": 68, "startf_useshowwindow": 348, "startf_usestdhandl": 348, "startfil": [142, 293, 483], "starti": 384, "starting_nod": 452, "startnamespacedeclhandl": 314, "startprefixmap": 415, "startrespons": 407, "starts_lin": 191, "startswith": [240, 293, 344, 352, 388, 399, 422, 451, 462, 465, 467, 468, 471, 476, 478, 481, 483], "starttest": [388, 483], "starttestrun": [388, 469, 483], "starttl": [102, 248, 269, 288, 335, 341, 468, 475, 476, 483], "startup": [33, 34, 68, 214, 250, 266, 268, 293, 334, 344, 352, 363, 368, 382, 432, 455, 467, 468, 476, 477, 478, 480, 482, 483], "startup_fil": 438, "startupinfo": [348, 466, 480, 483], "startupinfoex": 348, "startx": 384, "stash": 355, "stasiak": [479, 483], "stat": [68, 87, 109, 185, 190, 216, 219, 234, 250, 254, 258, 269, 288, 293, 294, 296, 305, 332, 341, 358, 382, 386, 432, 464, 465, 467, 468, 472, 474, 475, 478, 479, 480, 481, 483], "stat1": 294, "stat2": 294, "stat_float_tim": [465, 467, 476, 480, 483], "stat_result": [293, 296, 358, 465, 478, 481, 483], "statcach": 467, "state": [5, 13, 17, 22, 23, 27, 31, 32, 45, 50, 51, 53, 59, 61, 63, 68, 73, 75, 76, 84, 85, 92, 95, 96, 101, 106, 110, 119, 133, 138, 139, 141, 144, 151, 154, 157, 158, 160, 164, 167, 169, 170, 171, 177, 185, 191, 212, 218, 222, 226, 235, 243, 244, 248, 250, 258, 259, 268, 270, 271, 293, 295, 297, 298, 301, 308, 314, 315, 318, 320, 323, 325, 328, 333, 337, 338, 340, 341, 344, 348, 352, 362, 365, 366, 368, 369, 375, 381, 385, 388, 394, 395, 400, 405, 411, 412, 425, 426, 428, 430, 432, 441, 452, 462, 464, 465, 467, 474, 475, 476, 477, 480, 481, 482, 483], "statefulfilt": 358, "stateless": [68, 141, 145, 147], "statement": [23, 47, 49, 54, 61, 63, 66, 68, 72, 73, 78, 79, 85, 87, 95, 100, 102, 112, 113, 114, 115, 117, 120, 122, 139, 144, 149, 151, 159, 164, 166, 176, 184, 186, 191, 193, 201, 213, 218, 225, 234, 242, 247, 248, 250, 252, 254, 255, 270, 271, 278, 281, 283, 288, 291, 292, 293, 295, 297, 312, 315, 319, 328, 335, 337, 338, 340, 341, 344, 348, 352, 354, 358, 359, 361, 362, 367, 378, 380, 384, 386, 405, 410, 411, 412, 422, 426, 429, 430, 431, 432, 433, 435, 437, 439, 440, 446, 455, 462, 463, 464, 465, 466, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "statement_newlin": 431, "stateorprovincenam": 341, "statespec": 376, "statetestcas": 483, "static": [5, 10, 28, 33, 35, 42, 45, 50, 52, 58, 60, 62, 64, 68, 72, 73, 75, 76, 77, 79, 80, 87, 102, 106, 113, 183, 189, 191, 215, 225, 226, 250, 299, 315, 319, 344, 365, 369, 386, 427, 432, 436, 440, 456, 463, 464, 465, 466, 469, 471, 472, 475, 478, 479, 480, 481, 482, 483], "static_assert": 483, "static_cast": 483, "static_method": [389, 390], "static_ord": 232, "staticmethod": [58, 85, 87, 93, 94, 116, 193, 211, 225, 226, 268, 358, 389, 420, 428, 450, 464, 466, 469, 472, 475, 476, 481, 483], "statinfo": 293, "station": 85, "station_id": 85, "statist": [34, 42, 68, 93, 185, 226, 254, 275, 288, 290, 308, 318, 332, 341, 352, 380, 451, 455, 456, 462, 463, 467, 469, 473, 475, 476, 483], "statisticdiff": [68, 185], "statisticserror": 343, "statsprofil": [308, 483], "status": [5, 33, 34, 49, 59, 63, 73, 84, 92, 94, 101, 102, 105, 110, 115, 120, 144, 177, 196, 205, 207, 213, 214, 241, 242, 245, 247, 248, 271, 283, 288, 292, 293, 305, 307, 309, 311, 334, 338, 340, 348, 352, 376, 395, 407, 438, 441, 448, 462, 466, 467, 469, 470, 472, 474, 475, 477, 478, 479, 480, 482, 483], "status_cod": [388, 481], "status_control_c_exit": 483, "statvf": [293, 464, 468, 476, 483], "stay": [64, 138, 352, 474, 475, 476, 479, 483], "std": [294, 352, 366, 467, 483], "std66": 394, "std_error_handl": 348, "std_input_handl": 348, "std_output_handl": 348, "std_time": 183, "stdatom": 483, "stdbool": 483, "stdbuttonbox": 375, "stdc_header": 483, "stdcall": 176, "stddef": [58, 76, 474], "stderr": [23, 33, 34, 42, 59, 64, 68, 72, 73, 85, 101, 102, 114, 126, 130, 133, 137, 151, 157, 169, 190, 193, 214, 227, 229, 245, 247, 258, 267, 268, 269, 283, 292, 293, 311, 321, 333, 340, 344, 348, 352, 358, 362, 365, 367, 381, 386, 388, 399, 400, 407, 428, 450, 451, 452, 455, 461, 462, 466, 468, 469, 470, 475, 477, 478, 479, 480, 482, 483], "stderr_data": [137, 348, 466], "stderrprint": 483, "stdev": [226, 343, 473, 481, 483], "stdev_service_tim": 318, "stdin": [33, 34, 59, 66, 76, 85, 87, 94, 95, 100, 103, 120, 122, 126, 130, 133, 137, 144, 151, 155, 157, 163, 176, 186, 190, 191, 193, 208, 214, 215, 218, 229, 234, 247, 248, 258, 259, 262, 283, 293, 296, 297, 309, 321, 328, 331, 344, 347, 348, 352, 358, 361, 362, 378, 387, 395, 407, 420, 427, 428, 430, 432, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 455, 456, 463, 464, 465, 466, 468, 469, 470, 472, 474, 476, 477, 478, 479, 480, 482, 483], "stdin_read": 309, "stdint": [456, 483], "stdio": [35, 72, 73, 104, 293, 468, 473, 483], "stdio_encod": [33, 34, 352], "stdio_error": [33, 34, 352], "stdlib": [33, 34, 35, 68, 73, 100, 102, 211, 235, 247, 355, 456, 467, 473, 475, 476, 478, 483], "stdlib_module_nam": [352, 472, 483], "stdname": [183, 308], "stdoffset": 183, "stdout": [33, 34, 59, 64, 66, 68, 73, 87, 101, 102, 120, 122, 126, 130, 133, 137, 139, 151, 155, 169, 176, 177, 190, 191, 193, 210, 216, 223, 225, 242, 247, 248, 258, 262, 268, 269, 283, 292, 293, 297, 300, 307, 308, 309, 321, 333, 344, 348, 352, 358, 359, 362, 378, 380, 381, 388, 389, 399, 400, 407, 413, 417, 422, 428, 446, 450, 451, 455, 456, 461, 462, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 483], "stdout_data": [137, 348, 466], "stdout_fileno": 293, "stdoutcatch": 79, "stdprinter": 483, "stdscr": [92, 177, 468], "stdsuit": 468, "stdtype": 483, "stdwin": 462, "steadi": 462, "steal": [22, 23, 33, 35, 45, 49, 54, 60, 483], "steel": [84, 483], "steer": [113, 384, 463, 466, 473, 475, 483], "stefan": [426, 469, 473, 476, 477, 478, 479, 480, 481, 482, 483], "stefano": 483, "steffen": 475, "stein": [84, 462, 483], "stellenbosch": 468, "stem": [296, 422, 469, 473, 483], "step": [56, 63, 68, 72, 73, 77, 84, 85, 93, 95, 100, 106, 110, 112, 120, 122, 141, 144, 151, 155, 158, 169, 176, 185, 186, 191, 193, 225, 230, 242, 247, 250, 261, 267, 275, 281, 283, 292, 293, 297, 318, 319, 338, 340, 343, 344, 352, 358, 376, 384, 399, 414, 421, 427, 428, 430, 436, 441, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 483], "stephan": 483, "stephen": [464, 473, 483], "stereo": [117, 141, 295], "stereocontrol": 295, "stereophon": 295, "sterl": 177, "steve": [341, 463, 468, 474, 478, 479, 480, 481, 482, 483], "steven": [93, 463, 467, 469, 474, 475, 477, 478, 479, 481, 483], "stew": 340, "stgdict": 483, "sticht": [33, 69, 426], "stick": [92, 109, 270, 283, 362, 376, 384, 464, 465, 468], "sticki": [186, 342, 358, 376], "stiff": [73, 441], "stikbakk": 483, "still": [7, 9, 13, 22, 23, 27, 28, 31, 33, 34, 58, 63, 72, 73, 75, 76, 77, 84, 85, 92, 94, 95, 99, 100, 101, 102, 103, 106, 110, 120, 133, 139, 151, 158, 163, 167, 169, 170, 176, 177, 181, 186, 193, 194, 202, 206, 208, 213, 226, 230, 243, 247, 250, 252, 255, 267, 268, 269, 271, 275, 278, 283, 292, 293, 295, 299, 308, 314, 319, 322, 323, 324, 328, 330, 333, 334, 337, 338, 340, 341, 344, 348, 352, 362, 364, 365, 369, 376, 382, 385, 386, 388, 395, 402, 410, 413, 416, 426, 427, 428, 430, 432, 435, 436, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "still_act": 483, "stinner": [469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "stippl": 177, "stipul": 483, "stitch": 207, "stls": [305, 477], "stmt": [122, 367, 468, 483], "stmt_list": [427, 437], "stmt_ti": 431, "stock": [340, 467, 475, 483], "stoke": [479, 483], "stole": 45, "stolen": [9, 72, 483], "stolk": 464, "stomp": 456, "stone": 477, "stop": [23, 28, 34, 56, 85, 94, 95, 101, 102, 103, 121, 126, 130, 133, 137, 139, 144, 155, 159, 160, 161, 190, 191, 193, 197, 207, 213, 225, 227, 228, 235, 247, 255, 261, 267, 268, 269, 271, 283, 292, 293, 295, 297, 300, 302, 308, 314, 318, 333, 338, 344, 348, 362, 365, 376, 382, 384, 385, 386, 388, 389, 390, 406, 407, 427, 428, 430, 441, 462, 463, 464, 465, 467, 468, 469, 470, 472, 474, 475, 478, 479, 480, 483], "stop_cmd": 102, "stop_ev": 102, "stop_her": 144, "stop_iter": [68, 315], "stop_serv": 483, "stopal": [389, 483], "stopasynciter": [23, 87, 191, 213, 225, 389, 427, 428, 430, 436, 483], "stopfram": 144, "stopit": 483, "stopiter": [23, 63, 68, 75, 87, 95, 113, 160, 191, 213, 225, 261, 274, 283, 344, 353, 389, 428, 430, 436, 440, 450, 464, 465, 467, 468, 472, 479, 480, 483], "stopiteration_error": 483, "stoplisten": [102, 268], "stoppag": 426, "stoptest": [388, 483], "stoptestrun": [388, 469, 483], "stor": 223, "storag": [5, 32, 35, 42, 55, 68, 87, 100, 102, 109, 158, 167, 177, 191, 250, 258, 261, 284, 293, 330, 340, 344, 347, 413, 440, 464, 467, 468, 469, 474, 476, 477, 483], "storbinari": [223, 468, 469], "storchacha": 477, "storchaka": [109, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "store": [5, 7, 11, 13, 25, 27, 28, 33, 34, 41, 42, 49, 56, 58, 61, 63, 64, 68, 73, 75, 76, 79, 84, 85, 93, 95, 100, 101, 102, 106, 109, 110, 117, 120, 122, 133, 134, 141, 154, 158, 160, 167, 170, 173, 176, 177, 181, 183, 184, 186, 191, 193, 196, 197, 200, 201, 203, 205, 208, 243, 245, 247, 248, 250, 253, 255, 258, 261, 267, 270, 271, 272, 276, 278, 283, 284, 288, 293, 298, 299, 314, 328, 329, 330, 335, 337, 338, 340, 341, 342, 344, 347, 352, 355, 358, 362, 365, 375, 376, 380, 381, 382, 384, 385, 386, 388, 395, 405, 410, 413, 419, 421, 422, 425, 427, 428, 430, 431, 432, 435, 436, 443, 448, 455, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "store_act": 292, "store_annot": [479, 480, 483], "store_attr": [191, 483], "store_attr_slot": 483, "store_attr_split_key": 483, "store_attr_with_hint": 483, "store_const": [120, 292, 483], "store_deref": [191, 483], "store_fals": [120, 292], "store_fast": [191, 483], "store_glob": 191, "store_nam": [191, 341], "store_slic": [191, 474, 483], "store_subscr": [191, 483], "store_tru": [89, 120, 190, 228, 292, 309, 399, 469, 475, 483], "store_valu": 292, "storeroom": 475, "stori": [33, 73, 147, 446], "storlin": [223, 468], "storm": 464, "stormi": 462, "stp": 98, "str": [5, 10, 18, 22, 24, 25, 26, 33, 34, 35, 39, 40, 49, 58, 59, 63, 64, 66, 68, 75, 76, 78, 84, 85, 87, 88, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 106, 108, 109, 112, 114, 120, 122, 126, 136, 142, 146, 149, 155, 158, 160, 163, 167, 169, 175, 177, 181, 182, 183, 184, 186, 188, 190, 191, 195, 196, 197, 201, 202, 203, 205, 208, 209, 211, 213, 221, 223, 225, 226, 234, 235, 236, 237, 240, 242, 244, 247, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 270, 283, 284, 288, 291, 292, 293, 296, 299, 306, 318, 319, 331, 335, 338, 340, 341, 345, 347, 348, 352, 353, 358, 362, 363, 364, 367, 378, 379, 382, 385, 386, 388, 389, 394, 398, 400, 402, 405, 410, 413, 414, 419, 422, 425, 427, 428, 430, 435, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "str1": [472, 483], "str2": [472, 483], "str_": 483, "str_convert": 483, "str_digits_check_threshold": [34, 344, 352], "str_iter": 440, "stracktrac": 483, "straddl": 183, "straight": [202, 206, 283, 352, 388, 411, 444, 462, 470, 481, 483], "straightforward": [23, 73, 84, 85, 100, 102, 103, 109, 158, 167, 176, 259, 268, 292, 328, 337, 384, 464, 465, 468, 475, 476, 483], "strand": [465, 466], "strandmark": [481, 483], "strang": [85, 115, 364, 394, 428, 461, 463, 467, 468], "strataki": [482, 483], "strategi": [33, 42, 63, 73, 76, 79, 120, 135, 158, 269, 362, 369, 388, 403, 424, 425, 432, 441, 465, 470, 475, 480, 483], "stratford": 483, "strcach": 472, "strcasecmp": 483, "strchr": 176, "strcmp": [11, 18, 75, 483], "strcoll": [108, 226, 266, 475], "strcpi": 109, "strdup": 483, "stream": [14, 33, 34, 41, 68, 84, 87, 95, 101, 107, 109, 118, 126, 136, 137, 139, 145, 146, 149, 157, 169, 177, 194, 200, 201, 206, 207, 212, 213, 225, 229, 234, 242, 245, 247, 249, 252, 261, 262, 267, 268, 269, 270, 276, 281, 293, 298, 307, 308, 314, 328, 329, 331, 332, 333, 334, 336, 337, 338, 348, 349, 352, 358, 362, 378, 386, 388, 395, 399, 408, 412, 413, 416, 417, 419, 422, 428, 430, 434, 435, 455, 462, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 483], "stream_or_str": 412, "stream_read": 462, "stream_writ": 462, "streamerror": 358, "streamhandl": [68, 101, 102, 118, 267, 268, 475, 480, 483], "streamlin": [478, 483], "streamread": [14, 68, 124, 126, 137, 145, 466, 467, 478, 479, 483], "streamreaderprotocol": 483, "streamreaderwrit": [68, 145], "streamrecod": [68, 109, 145, 483], "streamrequesthandl": [102, 338, 479, 483], "streamserv": 483, "streamwrit": [14, 68, 124, 126, 137, 145, 467, 473, 480, 483], "street": [109, 120, 319], "streetaddress": 341, "strength": [226, 473], "strength_bit": 341, "strengthen": [209, 483], "strenum": [68, 211, 241, 472, 473, 483], "strerror": [23, 212, 213, 266, 293, 468, 483], "stress": 483, "stretch": [235, 247, 376, 384, 410, 480], "stretch_len": 384, "stretch_wid": 384, "stretchfactor": 384, "strformatstyl": 483, "strfri": 467, "strftime": [68, 101, 102, 139, 182, 266, 267, 269, 271, 366, 419, 451, 452, 465, 467, 468, 475, 476, 479, 483], "strict": [14, 34, 63, 64, 73, 94, 95, 99, 102, 109, 120, 133, 158, 167, 175, 176, 181, 183, 186, 202, 207, 208, 211, 218, 225, 240, 242, 243, 244, 248, 252, 255, 258, 259, 261, 262, 275, 276, 293, 294, 295, 296, 299, 341, 344, 352, 362, 366, 394, 395, 410, 426, 427, 428, 429, 430, 432, 435, 456, 462, 463, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 480, 483], "strict_domain": 243, "strict_error": 158, "strict_mod": [146, 483], "strict_ns_domain": 243, "strict_ns_set_initial_dollar": 243, "strict_ns_set_path": 243, "strict_ns_unverifi": 243, "strict_pars": [151, 394], "strict_rfc2965_unverifi": 243, "strict_timestamp": [422, 483], "stricter": [186, 462, 463, 467, 476, 478, 480, 483], "strictflag": 211, "stride": [2, 63, 68, 255, 344, 428, 430, 465, 476, 483], "strided_ro": 255, "strigl": 483, "string": [7, 8, 9, 11, 16, 18, 22, 23, 24, 25, 26, 28, 31, 33, 34, 35, 39, 41, 42, 45, 47, 49, 53, 58, 59, 63, 65, 66, 68, 72, 73, 75, 76, 79, 87, 89, 92, 93, 95, 96, 99, 101, 102, 108, 110, 112, 113, 117, 120, 122, 133, 137, 139, 141, 144, 145, 146, 149, 151, 152, 153, 155, 157, 158, 159, 164, 167, 169, 173, 175, 176, 177, 178, 181, 182, 183, 184, 186, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 220, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 262, 266, 267, 268, 269, 271, 272, 274, 276, 278, 281, 282, 283, 287, 288, 289, 291, 293, 295, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 320, 321, 326, 330, 331, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 351, 352, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 367, 369, 375, 376, 377, 378, 379, 380, 381, 382, 384, 386, 387, 388, 389, 394, 395, 397, 398, 399, 400, 403, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 422, 423, 424, 427, 428, 429, 430, 431, 432, 434, 436, 442, 444, 445, 447, 449, 450, 452, 455, 456, 461, 463, 464, 467, 469, 471, 472, 475, 477, 478, 483, 484], "string1": [266, 340, 442], "string2": [266, 340, 442], "string3": 442, "string_at": [142, 176, 214, 476], "stringent": [100, 477], "stringescapeseq": 435, "stringifi": [175, 381, 473, 483], "stringified_newdatatyp": 75, "stringio": [79, 85, 87, 169, 196, 207, 258, 262, 308, 344, 352, 362, 389, 407, 411, 468, 469, 470, 475, 477, 478, 483], "stringiz": [88, 255, 472, 483], "stringlib": 475, "stringliter": 430, "stringo": 96, "stringprefix": 435, "stringprep": [68, 158, 254, 363, 465], "stringsubclass": 386, "stringtemplatestyl": 483, "stringtranslatepseudomap": 483, "stringtyp": 483, "stringvar": [369, 376], "strip": [34, 85, 95, 106, 120, 158, 167, 170, 177, 178, 183, 190, 193, 200, 208, 209, 228, 245, 247, 268, 269, 284, 308, 326, 331, 335, 338, 343, 344, 348, 356, 358, 362, 381, 382, 386, 394, 400, 413, 422, 442, 443, 462, 465, 470, 471, 472, 475, 478, 479, 480, 481, 482, 483], "strip_dir": 308, "strip_prefix": 163, "strip_python_stderr": 483, "strip_text": 413, "stripdir": [163, 482, 483], "stripe": 483, "stripp": [34, 483], "stripped_it": 95, "stripped_lin": 95, "stripped_list": 95, "stripspac": 177, "strive": 469, "strk1048_2002": 158, "strlen": [64, 79, 107, 109], "strncmp": 18, "stroke": [109, 464], "strong": [5, 7, 9, 13, 23, 26, 33, 49, 58, 59, 60, 63, 64, 73, 75, 87, 94, 101, 103, 139, 170, 183, 225, 240, 341, 352, 402, 415, 422, 428, 432, 456, 463, 464, 467, 468, 473, 479, 483], "stronger": [139, 483], "strongest": [173, 469], "strop": 462, "stropt": [479, 483], "strorbytessequ": 386, "strptime": [68, 182, 267, 366, 419, 464, 465, 467, 475, 483], "strs": [109, 386], "strsequenc": 386, "strsignal": [333, 483], "strtod": 68, "strtol": 18, "strtoul": 18, "struck": 92, "struct": [7, 15, 16, 21, 26, 31, 33, 35, 39, 45, 57, 58, 61, 63, 66, 68, 73, 75, 76, 78, 84, 86, 100, 102, 121, 141, 145, 176, 215, 225, 254, 268, 269, 284, 337, 344, 366, 419, 440, 452, 464, 467, 468, 469, 472, 473, 474, 475, 480, 481, 482, 483], "struct_frozen": 176, "struct_tim": [183, 248, 271, 366, 479], "structmemb": [58, 93, 474, 483], "structseq": [25, 469, 483], "structseq_repr": 483, "structsequ": 483, "structur": [2, 5, 13, 17, 22, 26, 31, 32, 33, 34, 42, 43, 45, 47, 50, 55, 58, 59, 61, 66, 68, 73, 75, 76, 78, 79, 85, 92, 93, 95, 96, 100, 101, 106, 118, 128, 135, 139, 144, 153, 158, 177, 194, 196, 201, 203, 204, 205, 206, 207, 212, 213, 215, 217, 222, 223, 226, 230, 233, 245, 247, 248, 251, 254, 255, 256, 258, 262, 271, 276, 281, 283, 293, 299, 305, 307, 311, 319, 332, 333, 337, 339, 341, 344, 346, 347, 348, 354, 362, 366, 369, 375, 384, 385, 386, 388, 410, 413, 414, 419, 422, 423, 427, 428, 432, 433, 462, 463, 464, 465, 466, 467, 468, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "structured_data": 102, "structuredmessag": 102, "strxfrm": [87, 108, 266], "sts": [73, 84, 348, 466], "stti": [383, 483], "stuart": 337, "stub": [78, 155, 257, 258, 293, 352, 386, 389, 483], "stuck": 177, "student": [108, 114, 175, 226, 347, 384, 386, 440, 461, 473, 475], "student_nam": 114, "student_object": 108, "student_tupl": 108, "studi": [77, 85, 95, 193, 384, 413, 465, 468], "studio": [77, 85, 456, 461, 468, 478, 483], "stuf": 157, "stuff": [63, 75, 79, 101, 102, 122, 169, 176, 193, 307, 389, 470], "stufft": [469, 477], "stumbl": [68, 484], "stupid": 367, "stutzbach": [468, 469, 475], "stx": 178, "style": [2, 5, 9, 23, 64, 68, 73, 76, 78, 85, 87, 94, 95, 101, 103, 106, 120, 133, 144, 146, 150, 160, 167, 190, 196, 205, 207, 220, 221, 224, 225, 226, 228, 230, 240, 242, 245, 261, 267, 268, 271, 275, 276, 292, 293, 296, 297, 299, 308, 313, 319, 330, 332, 333, 337, 340, 352, 355, 361, 362, 365, 368, 369, 373, 375, 381, 388, 407, 420, 430, 431, 434, 435, 445, 446, 449, 452, 456, 461, 462, 463, 464, 465, 466, 468, 469, 470, 473, 474, 475, 476, 477, 480, 481, 483, 484], "style1": 469, "styleadapt": 102, "stylehint": 102, "stylesheet": [469, 483], "stype": 208, "su": [150, 483], "sub": [32, 45, 50, 68, 95, 100, 101, 102, 106, 118, 122, 124, 133, 176, 177, 178, 183, 190, 191, 194, 196, 201, 205, 207, 214, 231, 248, 252, 254, 259, 261, 268, 271, 278, 291, 308, 314, 319, 330, 344, 352, 362, 375, 386, 388, 405, 413, 430, 431, 443, 451, 461, 462, 464, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 483], "sub0": 102, "sub_dcmp": 216, "sub_key": [142, 405], "subcal": 308, "subcategori": 109, "subclass": [23, 28, 43, 47, 49, 54, 58, 59, 61, 63, 68, 74, 75, 87, 99, 100, 101, 103, 106, 110, 116, 120, 132, 133, 138, 139, 144, 155, 157, 158, 161, 167, 175, 176, 181, 182, 183, 186, 189, 193, 199, 203, 205, 206, 208, 213, 216, 218, 223, 225, 226, 242, 245, 248, 250, 251, 253, 255, 256, 258, 259, 262, 267, 268, 269, 271, 283, 292, 293, 299, 305, 307, 318, 319, 330, 331, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 375, 376, 384, 385, 386, 388, 390, 394, 395, 397, 399, 400, 410, 412, 413, 414, 415, 417, 419, 423, 425, 427, 429, 430, 436, 440, 443, 452, 455, 462, 464, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "subclassoffoo": 386, "subclaus": 95, "subcommand": [102, 120, 469, 475], "subcompon": 194, "subcontext": 160, "subdir": [120, 216, 253, 271, 362, 483], "subdirectori": [73, 76, 84, 85, 102, 163, 200, 216, 247, 250, 252, 253, 271, 293, 302, 334, 355, 380, 388, 399, 421, 422, 423, 461, 462, 463, 465, 468, 469, 478, 480, 481, 482, 483], "subdomain": 166, "subel": [413, 475], "subexpress": [106, 483], "subfunct": [308, 476], "subgener": [68, 430, 484], "subgroup": [106, 191, 213, 319, 475, 481, 483], "subinterpret": [33, 45, 63, 140, 250, 293, 344, 348, 356, 362, 473, 474, 481, 482, 483], "subitem": 450, "subiter": [430, 476], "subject": [13, 39, 45, 55, 61, 63, 75, 84, 95, 101, 102, 110, 122, 167, 183, 191, 193, 196, 200, 202, 203, 205, 243, 247, 255, 262, 267, 268, 269, 271, 288, 293, 307, 308, 330, 337, 341, 362, 366, 386, 426, 427, 428, 431, 435, 441, 467, 472, 474, 477, 483], "subject_expr": [427, 431], "subjectaltnam": 341, "subkey": [405, 461], "sublayout": 376, "sublicens": 426, "sublist": [76, 375, 462, 475], "sublist_incr": 76, "sublist_init": 76, "sublist_method": 76, "sublistmodul": 76, "sublistobject": 76, "sublisttyp": 76, "submiss": [110, 151, 283, 314, 426, 462], "submit": [1, 92, 102, 110, 139, 151, 166, 247, 283, 426, 462, 469, 475, 478, 479, 480, 481, 483], "submitt": 462, "submock": 389, "submodul": [31, 63, 68, 87, 158, 184, 193, 225, 250, 302, 324, 380, 422, 436, 450, 455, 467, 470, 471, 477, 480, 483], "submodule_search_loc": [250, 252, 432], "subn": [106, 319, 469, 471, 474, 478, 483], "subnegoti": 359, "subnet": [259, 476, 478, 483], "subnet_of": [259, 480, 483], "subnod": 411, "subnorm": [186, 483], "subobj": 321, "subobject": [76, 85], "suboffset": [2, 63, 68, 344, 476], "subopt": 359, "suboptim": 478, "subordin": [405, 469], "subpackag": [63, 87, 250, 281, 352, 388, 422, 432, 450, 462], "subpackage1": 432, "subpackage2": 432, "subpad": 177, "subpars": [102, 120, 475, 480, 483], "subparser1": 120, "subparser2": 120, "subparser_nam": 120, "subpart": [196, 199, 201, 204, 205, 206, 207], "subpath": [296, 423], "subpattern": [427, 441, 483], "subpkg": 250, "subpkg1": 436, "subpkg2": 436, "subprocess": [33, 68, 102, 123, 126, 130, 131, 132, 142, 164, 166, 169, 208, 210, 248, 254, 257, 283, 293, 301, 327, 331, 337, 338, 362, 368, 382, 384, 399, 400, 455, 460, 465, 468, 469, 472, 475, 481, 482, 483, 484], "subprocess_exec": [68, 126, 130, 131, 132, 137, 483], "subprocess_shel": [126, 130, 131, 133, 137], "subprocesserror": [348, 483], "subprocessprotocol": [68, 126], "subprocessstreamprotocol": 483, "subprocesstransport": [126, 133], "subrang": 344, "subroutin": [72, 87, 95, 467], "subscrib": [102, 248, 386, 428, 483], "subscript": [37, 63, 68, 87, 102, 176, 191, 247, 264, 344, 386, 428, 436, 449, 455, 465, 468, 472, 473, 474, 482, 483], "subsect": [92, 106, 247, 344, 430, 483], "subsequ": [5, 23, 33, 45, 60, 64, 85, 93, 106, 115, 120, 159, 177, 190, 191, 202, 206, 208, 226, 243, 250, 255, 258, 261, 268, 269, 271, 278, 283, 292, 293, 319, 332, 337, 341, 344, 345, 352, 356, 358, 365, 369, 375, 384, 395, 426, 427, 430, 432, 434, 436, 465, 466, 467, 468, 469, 471, 478, 481, 483], "subsequent_ind": 364, "subsequenti": 483, "subset": [95, 158, 167, 177, 235, 247, 248, 250, 253, 257, 262, 269, 271, 295, 299, 314, 328, 332, 337, 344, 358, 365, 410, 413, 415, 422, 430, 456, 465, 467, 469, 478, 480, 483], "subshel": [231, 293], "subslic": 261, "substanti": [73, 243, 261, 314, 410, 426, 464, 466, 471, 475, 476, 477, 479, 483], "substitut": [42, 68, 87, 101, 102, 106, 112, 132, 158, 164, 167, 178, 186, 193, 250, 261, 272, 292, 293, 308, 319, 320, 321, 340, 344, 345, 359, 378, 386, 403, 426, 427, 428, 430, 436, 447, 452, 461, 465, 467, 468, 469, 474, 475, 477, 478, 483, 484], "substr": [64, 95, 106, 109, 167, 193, 235, 292, 319, 344, 388, 430, 449, 462, 464, 465, 466, 467, 468, 476, 478, 480, 483], "subsubdir": 253, "subsubdirectori": 334, "subsubitem": 450, "subsubsect": 483, "subsuddir": 253, "subsystem": [23, 95, 102, 250, 348, 369, 461, 465, 467, 469, 481, 483], "subt": [92, 196, 205, 432], "subtask": 139, "subtest": [68, 187, 477, 483], "subtitl": 483, "subtl": [13, 23, 63, 73, 103, 193, 215, 289, 292, 295, 308, 428, 429, 477, 483], "subtlest": 462, "subtleti": [106, 183, 243], "subtract": [47, 141, 160, 183, 186, 259, 270, 275, 308, 384, 419, 430, 462, 465, 468, 469, 475, 480, 483], "subtre": [33, 413, 462], "subtupl": 23, "subtyp": [9, 11, 20, 25, 39, 45, 49, 55, 60, 61, 63, 64, 181, 196, 197, 200, 201, 203, 204, 205, 206, 243, 247, 276, 292, 333, 386, 416, 427, 428, 430, 464, 483], "subtype_dealloc": 483, "subvers": [467, 468, 469, 475, 480, 483], "subview": 344, "subwidget": 375, "subwin": 177, "subwindow": 177, "succeed": [5, 7, 9, 11, 13, 17, 25, 37, 39, 43, 45, 47, 49, 54, 55, 56, 60, 61, 63, 64, 67, 85, 106, 176, 193, 209, 232, 249, 288, 293, 332, 336, 337, 341, 362, 388, 394, 395, 405, 410, 427, 429, 431, 455, 464, 465, 466, 483], "success": [5, 7, 9, 11, 13, 17, 22, 23, 27, 31, 33, 34, 35, 39, 42, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 73, 75, 76, 77, 79, 80, 85, 92, 95, 101, 106, 110, 115, 122, 132, 133, 139, 159, 163, 167, 169, 176, 177, 191, 193, 209, 215, 223, 242, 245, 248, 250, 261, 266, 269, 278, 283, 288, 292, 293, 295, 299, 305, 314, 319, 323, 332, 335, 337, 340, 341, 344, 347, 348, 352, 365, 375, 376, 388, 395, 410, 423, 427, 428, 432, 436, 453, 456, 462, 465, 466, 469, 475, 477, 478, 479, 481, 483], "successor": [102, 128, 232], "succinct": [93, 261], "such": [5, 7, 13, 23, 25, 27, 28, 31, 33, 34, 42, 45, 51, 58, 61, 63, 64, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 126, 132, 133, 137, 139, 141, 144, 146, 151, 155, 158, 159, 161, 167, 169, 176, 177, 181, 183, 184, 186, 190, 193, 194, 196, 197, 202, 203, 205, 207, 208, 209, 211, 212, 213, 215, 216, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 271, 272, 275, 278, 281, 283, 287, 288, 292, 293, 295, 297, 299, 302, 304, 307, 308, 313, 314, 319, 324, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 355, 358, 359, 361, 362, 365, 366, 369, 375, 376, 377, 380, 381, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 406, 410, 411, 412, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sudo": [96, 98, 102], "sudoku_mak": 96, "sudokumak": 96, "suexec": 151, "suffer": [388, 463, 464, 465], "suffic": [85, 225, 295], "suffici": [46, 63, 73, 99, 100, 101, 115, 158, 183, 184, 186, 193, 275, 293, 312, 314, 341, 365, 388, 403, 415, 432, 436, 461, 475, 476, 479, 480, 483], "suffix": [25, 64, 68, 71, 102, 112, 176, 200, 225, 245, 248, 250, 259, 267, 268, 269, 276, 293, 296, 319, 330, 335, 344, 360, 395, 422, 430, 431, 456, 461, 462, 464, 473, 475, 476, 481, 483], "suffix_map": 276, "sugalski": 467, "sugar": [102, 169, 225, 244, 250, 261, 340, 441, 470], "suggest": [61, 68, 74, 84, 85, 91, 95, 102, 106, 109, 115, 133, 186, 225, 230, 235, 250, 299, 307, 320, 340, 365, 366, 382, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 479, 481, 482, 483], "suid": 293, "suit": [63, 75, 84, 85, 87, 95, 101, 102, 161, 193, 230, 283, 292, 340, 341, 358, 362, 382, 388, 400, 422, 427, 456, 461, 467, 468, 469, 470, 473, 474, 475, 477, 479, 480, 482, 483], "suitabl": [33, 63, 64, 73, 85, 95, 101, 102, 108, 109, 124, 146, 158, 169, 173, 176, 183, 190, 196, 204, 208, 209, 235, 244, 250, 253, 259, 261, 266, 267, 268, 269, 271, 276, 283, 288, 293, 299, 308, 323, 324, 333, 335, 337, 338, 344, 352, 358, 362, 365, 366, 380, 388, 400, 410, 413, 421, 422, 428, 455, 461, 464, 465, 466, 468, 469, 475, 479, 480, 481, 483], "suite2": 427, "suite_mask": [352, 469], "suiteclass": [388, 469], "sullivan": 483, "sum": [7, 87, 93, 95, 103, 120, 122, 126, 141, 160, 183, 186, 193, 208, 225, 226, 255, 261, 270, 275, 284, 293, 296, 308, 318, 322, 326, 337, 343, 344, 366, 376, 382, 386, 430, 431, 440, 441, 444, 449, 450, 451, 452, 465, 466, 468, 471, 473, 474, 481, 482, 483], "sum_i": 340, "sum_list": 35, "sum_of_squar": 261, "sum_sequ": 35, "sum_threadsaf": 386, "sum_two_numb": [87, 122], "sumint": 340, "summar": [93, 109, 186, 193, 259, 330, 343, 386, 388, 427, 430, 432, 466, 475], "summari": [68, 84, 193, 251, 292, 302, 307, 322, 380, 381, 426, 453, 461, 463, 464, 465, 466, 475, 483, 484], "summarili": 235, "summarize_address_rang": [259, 478, 483], "summarize_stat": 456, "summaryinfo": 483, "summaryinform": [281, 483], "summat": [225, 444, 474, 483], "summer": [225, 366, 467, 468], "sumprod": [261, 275, 474, 483], "sun": [68, 109, 141, 150, 183, 245, 249, 254, 295, 343, 350, 366, 408, 426, 473, 483], "sun4u": 355, "sunau": [68, 254, 350, 473, 474, 482, 483], "sunaudiodev": [462, 468], "suncc": 469, "sundaresan": 483, "sunday": [94, 150, 183, 211, 266, 269, 366, 469, 483], "sundri": 465, "sunken": 369, "sunmy2019": 483, "suno": [33, 303, 358, 483], "sunos5": [33, 352], "sunpro": 471, "super": [68, 85, 87, 94, 102, 106, 116, 120, 132, 160, 169, 181, 191, 203, 211, 213, 225, 250, 262, 283, 296, 299, 312, 322, 369, 382, 384, 390, 395, 399, 402, 428, 440, 450, 464, 468, 470, 472, 474, 477, 479, 483], "super_getattro": 93, "supercalifragilisticexpialidoci": [449, 452], "superclass": [58, 61, 63, 100, 103, 116, 155, 181, 225, 226, 262, 268, 312, 338, 386, 428, 464, 465, 467, 474, 483], "supercop": 426, "superfici": 85, "superflu": [299, 337, 340, 483], "superinstruct": [473, 483], "superior": 261, "supernet": [259, 478], "supernet_of": [259, 480], "superscript": 344, "supersed": [33, 59, 250, 253, 288, 295, 341, 426, 462, 469, 476, 480, 483], "superset": [101, 306, 344, 430, 462, 465, 483], "superset_of": 483, "superstit": 106, "superus": 293, "supervis": 467, "supervisor": 102, "supervisorctl": 102, "supplement": [203, 293, 461, 468, 477, 483], "supplementari": 337, "suppli": [5, 28, 33, 63, 75, 85, 92, 93, 94, 95, 96, 106, 109, 110, 120, 122, 139, 146, 151, 152, 161, 176, 177, 178, 181, 183, 186, 191, 193, 215, 226, 235, 243, 247, 248, 250, 251, 253, 255, 259, 261, 267, 269, 283, 288, 292, 293, 295, 297, 302, 308, 314, 324, 328, 337, 340, 341, 344, 348, 355, 362, 365, 376, 381, 384, 386, 388, 394, 395, 399, 400, 415, 419, 421, 422, 425, 427, 428, 430, 432, 436, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 479, 483], "supplimentari": 483, "support": [5, 7, 13, 16, 22, 23, 25, 28, 32, 34, 41, 42, 43, 47, 49, 54, 58, 60, 61, 63, 65, 67, 68, 73, 74, 79, 84, 85, 89, 91, 92, 93, 96, 99, 100, 101, 103, 105, 106, 110, 112, 115, 117, 119, 120, 122, 132, 133, 137, 139, 141, 146, 149, 151, 153, 155, 158, 161, 163, 164, 173, 176, 177, 180, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 201, 202, 203, 204, 207, 208, 211, 212, 213, 214, 215, 217, 218, 220, 221, 223, 224, 225, 226, 228, 234, 235, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 281, 283, 284, 288, 290, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 314, 315, 319, 320, 321, 322, 328, 329, 330, 332, 333, 334, 335, 337, 338, 340, 342, 344, 345, 347, 348, 352, 353, 355, 359, 361, 365, 366, 369, 371, 376, 377, 382, 385, 386, 387, 388, 394, 395, 397, 399, 400, 402, 403, 405, 406, 408, 410, 411, 412, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 442, 449, 451, 455, 456, 457, 459, 461, 462, 463, 464, 466, 467, 469, 470, 471, 474, 475, 476, 483, 484], "support_team": 268, "supports_bytes_environ": [293, 475], "supports_dir_fd": [293, 476], "supports_effective_id": [293, 476], "supports_fd": [293, 476], "supports_follow_symlink": [293, 332], "supports_follows_symlink": 476, "supports_root_dir": 332, "supports_unicode_filenam": [294, 465], "supportsab": 386, "supportsbyt": [386, 473, 483], "supportscomplex": [386, 473, 483], "supportsfloat": 386, "supportsindex": [386, 481, 483], "supportsint": [221, 386, 473, 481, 483], "supportsround": 386, "suppos": [23, 60, 63, 64, 73, 77, 85, 99, 102, 181, 186, 193, 196, 199, 248, 309, 319, 334, 337, 340, 341, 345, 358, 376, 467, 468, 469, 475, 480, 481, 483], "suppress": [22, 33, 34, 68, 92, 101, 120, 139, 152, 157, 163, 169, 193, 261, 288, 292, 311, 315, 334, 335, 344, 348, 352, 362, 427, 428, 436, 455, 456, 461, 463, 465, 467, 468, 469, 470, 471, 477, 478, 480, 481, 483, 484], "suppress_help": 292, "suppress_ragged_eof": [341, 483], "suppress_usag": 292, "suppresscrashreport": [362, 483], "sur": [68, 483], "sure": [23, 45, 63, 64, 72, 75, 76, 84, 85, 92, 95, 101, 102, 106, 120, 151, 155, 158, 167, 176, 186, 213, 225, 235, 250, 266, 283, 292, 293, 314, 329, 340, 341, 343, 362, 365, 369, 397, 400, 413, 421, 428, 461, 464, 465, 467, 468, 470, 475, 476, 483], "surfac": [96, 293, 384, 474], "surface_grav": 94, "surjaninov": 483, "surpris": [58, 68, 84, 85, 102, 108, 118, 183, 186, 193, 225, 247, 267, 283, 308, 343, 358, 369, 386, 425, 432, 463, 464, 467, 471, 472, 473, 474, 478, 480, 481, 482, 483], "surrog": [59, 64, 158, 225, 262, 293, 340, 346, 358, 410, 476, 477, 481, 483], "surrogateescap": [34, 59, 64, 109, 158, 201, 208, 218, 225, 293, 337, 340, 352, 358, 455, 475, 478, 479, 480, 483], "surrogatepass": [33, 34, 158, 455, 477, 479, 483], "surround": [42, 79, 95, 106, 167, 190, 225, 244, 247, 266, 345, 348, 374, 399, 427, 429, 430, 431, 435, 450, 456, 462, 467, 468, 469, 470, 471, 474, 479, 483], "surviv": [115, 176], "survivor": 469, "susan": [475, 483], "suscept": [332, 461, 483], "suse": [352, 456, 482, 483], "susp": 177, "suspect": [151, 462, 483], "suspend": [33, 95, 139, 177, 255, 314, 333, 352, 361, 365, 366, 427, 428, 430, 464, 465, 467, 478, 480, 483], "suspens": [366, 428, 430], "suspici": [474, 483], "sussman": 95, "susumu": 483, "suutari": 483, "suzi": 465, "suzuki": 465, "sv": 468, "sv1": 110, "svensson": 466, "svetlov": [472, 473, 477, 480, 481, 482, 483], "svg": 467, "sviatoslav": 483, "svn": [96, 120, 163, 355, 394, 465, 467, 468, 469, 475, 483], "svneol": 483, "svr4": 215, "sw": 369, "sw_hide": 348, "sw_showdefault": 348, "swallow": [96, 101, 102, 139, 452, 462, 469, 475, 481, 483], "swamp": 102, "swap": [33, 72, 158, 160, 176, 191, 261, 283, 322, 337, 347, 362, 428, 436, 473, 480, 483], "swap_attr": [362, 483], "swap_item": [362, 483], "swapcas": [344, 483], "swappablearea": 96, "swart": 477, "swatch": 94, "swati": 483, "swear": 92, "sweeney": [472, 473, 474, 482, 483], "sweep": 467, "sweet": [106, 261], "sweet32": 483, "sweigart": 483, "swiegart": 479, "swig": [74, 79, 86], "switch": [31, 33, 35, 61, 64, 68, 75, 84, 100, 109, 110, 111, 112, 128, 133, 137, 158, 193, 225, 230, 243, 245, 247, 292, 305, 319, 322, 324, 340, 344, 345, 352, 358, 384, 412, 432, 441, 450, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483], "switcher": 483, "switching_protocol": 241, "switzerland": 413, "swordfish": 106, "swprintf": 483, "sx": 85, "sxs": 483, "sy": 85, "sydorenko": 483, "syllabl": 109, "symbol": [34, 66, 71, 73, 77, 79, 85, 92, 94, 96, 102, 103, 104, 109, 157, 159, 176, 177, 186, 193, 212, 245, 266, 269, 272, 293, 296, 300, 319, 322, 332, 333, 337, 340, 342, 344, 351, 352, 354, 357, 358, 359, 361, 362, 369, 376, 384, 387, 394, 405, 410, 415, 428, 431, 434, 436, 441, 455, 461, 462, 464, 466, 467, 469, 471, 472, 474, 475, 479, 481, 482, 483], "symbolt": [351, 482, 483], "symlink": [45, 142, 163, 257, 292, 293, 296, 311, 332, 358, 399, 450, 459, 460, 466, 468, 472, 475, 476, 477, 481, 483], "symlink_to": [296, 472, 481, 483], "symmetr": [235, 284, 341, 344, 428, 430, 462, 464, 465, 466, 476, 483], "symmetri": [348, 462], "symmetric_differ": [344, 465], "symmetric_difference_upd": [344, 465], "symtabl": [57, 68, 254, 264, 469, 472, 474, 482, 483], "symtyp": 358, "syn": 178, "sync": [94, 177, 184, 255, 283, 293, 295, 330, 369, 474, 476, 481, 483], "sync_foo": 389, "syncdown": 177, "synch": 190, "synchron": [68, 115, 123, 139, 164, 169, 178, 184, 186, 212, 226, 250, 254, 258, 278, 293, 330, 333, 338, 341, 362, 365, 369, 428, 452, 468, 474, 475, 478, 480, 483], "synchronis": [344, 476], "syncmanag": [283, 483], "syncok": 177, "syncup": 177, "synonym": [92, 102, 103, 109, 115, 177, 292, 299, 342, 369, 410, 435, 468, 483], "synopsi": [313, 341, 483], "syntact": [68, 85, 169, 202, 250, 314, 340, 344, 378, 386, 394, 400, 414, 427, 429, 430, 434, 435, 436, 441, 466, 467, 470, 483], "syntax": [5, 7, 68, 73, 79, 80, 85, 95, 99, 101, 102, 106, 109, 110, 112, 118, 139, 151, 157, 159, 167, 168, 176, 181, 186, 203, 211, 213, 225, 230, 247, 254, 255, 262, 264, 266, 268, 273, 283, 292, 295, 297, 314, 319, 331, 340, 344, 345, 352, 362, 369, 376, 381, 382, 386, 388, 394, 395, 417, 419, 427, 428, 429, 430, 431, 432, 434, 435, 436, 445, 449, 455, 457, 462, 463, 464, 465, 466, 467, 469, 471, 472, 473, 475, 477, 480, 481, 482, 483, 484], "syntax_err": 410, "syntaxerr": 410, "syntaxerror": [23, 66, 68, 79, 106, 122, 157, 159, 168, 193, 213, 225, 247, 319, 362, 378, 381, 386, 427, 429, 431, 435, 436, 442, 443, 446, 449, 450, 462, 463, 464, 473, 474, 475, 477, 478, 479, 480, 483], "syntaxwarn": [23, 213, 319, 362, 400, 435, 450, 465, 473, 474, 479, 481, 483], "synthes": [95, 193, 386], "synthet": [388, 474, 483], "sys": [23, 24, 28, 31, 33, 34, 35, 45, 59, 63, 64, 66, 68, 73, 79, 80, 85, 87, 88, 98, 100, 101, 102, 104, 109, 112, 113, 114, 115, 118, 122, 133, 136, 137, 139, 140, 142, 144, 151, 152, 155, 157, 163, 169, 175, 176, 177, 186, 188, 190, 191, 193, 200, 210, 213, 214, 215, 216, 218, 223, 225, 227, 228, 229, 230, 234, 245, 247, 250, 251, 254, 255, 258, 262, 265, 267, 268, 269, 275, 279, 280, 283, 292, 293, 295, 297, 299, 300, 302, 303, 307, 308, 309, 311, 312, 313, 315, 321, 324, 327, 328, 331, 332, 333, 334, 337, 338, 340, 342, 344, 347, 348, 355, 356, 358, 359, 361, 362, 365, 367, 369, 380, 381, 382, 385, 386, 388, 389, 390, 395, 399, 400, 402, 407, 413, 417, 420, 421, 422, 423, 427, 428, 430, 432, 436, 437, 438, 443, 446, 448, 450, 451, 452, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 483, 484], "sys_exc": 112, "sys_shutdown": 483, "sys_vers": 245, "syscal": [96, 213, 293, 322, 332, 478, 479, 481, 483], "sysconf": [293, 337, 483], "sysconf_nam": [293, 483], "sysconfig": [68, 72, 104, 156, 254, 293, 315, 382, 399, 425, 472, 477, 483], "sysctl": [322, 483], "sysdep": 96, "sysf": 293, "syslog": [68, 101, 142, 254, 269, 391, 469, 474, 476, 483], "syslog_udp_port": [268, 269], "sysloghandl": [68, 101, 118, 268, 356, 469, 473, 476, 483], "sysloghandler5424": 102, "sysmacro": 483, "sysmodul": 468, "sysnam": [293, 303], "sysproto_control": 337, "sysroot": 483, "system": [7, 16, 23, 33, 34, 42, 59, 63, 68, 73, 74, 76, 77, 79, 84, 85, 86, 92, 94, 95, 96, 101, 102, 106, 109, 110, 115, 118, 119, 121, 133, 137, 142, 144, 155, 163, 164, 167, 169, 173, 176, 177, 183, 186, 187, 207, 208, 209, 212, 213, 214, 215, 220, 223, 225, 228, 230, 231, 245, 247, 250, 251, 252, 253, 257, 258, 266, 267, 268, 269, 270, 271, 272, 276, 278, 282, 283, 287, 295, 296, 297, 299, 301, 302, 303, 306, 308, 309, 311, 313, 314, 322, 324, 326, 328, 331, 332, 333, 334, 337, 338, 340, 341, 342, 344, 347, 352, 355, 356, 358, 361, 362, 365, 366, 369, 375, 382, 384, 385, 388, 390, 395, 399, 403, 405, 406, 410, 413, 414, 415, 416, 419, 420, 421, 425, 426, 428, 433, 435, 436, 451, 455, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 480, 481, 482, 483, 484], "system32": [348, 461], "system_alia": 303, "system_dir": 167, "system_id": [415, 416], "system_must_validate_cert": 362, "system_sit": 399, "system_site_packag": 399, "systemasterisk": 406, "systemat": [193, 483], "systemconfigur": 483, "systemdefault": 406, "systemerror": [5, 23, 27, 45, 49, 55, 60, 64, 213, 443, 450, 474, 479, 483], "systemev": 468, "systemexclam": 406, "systemexit": [23, 66, 101, 115, 139, 140, 157, 168, 213, 247, 352, 365, 406, 429, 443, 450, 467, 468, 470, 479, 483], "systemhand": 406, "systemid": [314, 410, 415], "systemquest": 406, "systemrandom": [293, 318, 326], "systemroot": 348, "systemtap": [68, 97, 456, 483], "systemx86": 461, "sysv": [84, 96, 462, 463], "sz": [473, 483], "szakmeist": 483, "szmek": [476, 483], "szorc": 483, "szulik": 478, "t012": 344, "t0123": 344, "t01234": 344, "t04": 183, "t042301": 183, "t1": [183, 186, 261, 386, 399], "t11": 384, "t12": 384, "t2": [183, 186, 261, 386, 399], "t20170401": 483, "t21": 384, "t22": 384, "t3": [183, 186, 292, 386], "t_arg": 385, "t_co": 386, "t_doubl": 474, "t_fmt": 266, "t_fmt_ampm": 266, "t_int": [58, 474], "t_lookahead": 431, "t_none": [58, 474, 483], "t_object": [58, 474, 483], "t_origin": 385, "t_primari": 431, "t_string_inplac": 469, "t_uint": 483, "t_ulong": 483, "t_wobbler_mangrov": 400, "ta": [482, 483], "tab": [5, 66, 68, 77, 122, 146, 155, 175, 177, 178, 190, 193, 198, 202, 213, 242, 247, 255, 262, 297, 317, 319, 320, 323, 331, 334, 344, 345, 348, 364, 368, 375, 394, 403, 419, 435, 441, 445, 449, 455, 462, 467, 469, 472, 474, 476, 477, 479, 480, 481, 482, 483], "tab_id": 376, "tabbedpag": 483, "tabbedpageset": 483, "taberror": [23, 86, 213, 435, 450, 462, 474], "tabifi": 247, "tabl": [5, 7, 31, 33, 42, 45, 58, 59, 64, 68, 74, 75, 77, 78, 93, 95, 101, 106, 109, 110, 147, 158, 176, 177, 183, 186, 190, 203, 212, 235, 247, 250, 261, 262, 266, 267, 276, 283, 298, 319, 328, 338, 340, 341, 344, 346, 347, 351, 352, 358, 366, 369, 379, 386, 388, 403, 405, 410, 422, 426, 430, 441, 446, 452, 455, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 482, 483], "table_nam": 473, "tablea": 346, "tableb": 346, "tablec": 346, "tabnanni": [68, 86, 156, 254, 264, 462, 483], "tabpag": 483, "tabsiz": [190, 344, 364, 483], "tabul": [261, 344, 411], "tabular": [68, 368], "tac": 442, "tack": 101, "tackl": [299, 462], "tacti": 483, "tad": 5, "taddei": [479, 483], "tadek": 469, "tag": [31, 61, 63, 68, 75, 98, 106, 122, 151, 190, 240, 248, 250, 269, 278, 293, 299, 314, 346, 352, 356, 368, 395, 410, 413, 417, 419, 461, 462, 467, 469, 473, 477, 478, 481, 483, 484], "tag1": 462, "tag_bind": 376, "tag_configur": 376, "tag_ha": [376, 483], "tag_unbind": 483, "tagbanwa": 109, "tagnam": [278, 376, 410, 411, 412, 483], "tahia": 483, "tai": 475, "taifersar": [469, 475, 483], "tail": [64, 94, 103, 151, 160, 190, 261, 294, 334, 413, 467, 474, 476, 479, 483], "tailor": [72, 246, 340, 344, 362, 474], "tajik": [158, 478], "takashi": 483, "takayuki": 483, "take": [5, 9, 13, 22, 23, 27, 31, 33, 49, 51, 58, 60, 63, 64, 66, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 120, 139, 141, 144, 151, 152, 158, 167, 169, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 194, 201, 202, 203, 206, 207, 208, 209, 215, 218, 225, 226, 230, 232, 235, 243, 244, 245, 247, 249, 250, 251, 258, 261, 262, 266, 267, 268, 270, 271, 275, 276, 283, 288, 292, 293, 299, 307, 308, 314, 319, 324, 325, 328, 330, 331, 332, 333, 335, 336, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 361, 362, 364, 369, 375, 376, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 407, 408, 410, 411, 412, 413, 415, 417, 419, 421, 422, 427, 428, 430, 432, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "take_act": 292, "take_gil": 483, "take_snapshot": 382, "takefocus": [81, 376], "taken": [5, 33, 34, 42, 45, 55, 63, 66, 73, 75, 95, 102, 103, 120, 141, 144, 163, 167, 183, 186, 191, 193, 196, 202, 205, 206, 216, 225, 230, 248, 261, 266, 268, 269, 276, 278, 283, 293, 308, 311, 314, 322, 331, 340, 341, 344, 347, 353, 358, 362, 364, 365, 381, 382, 397, 400, 427, 428, 432, 436, 462, 464, 465, 467, 474, 475, 476, 477, 481, 483], "takeuchi": 483, "takewhil": [95, 261], "takuji": 426, "tal": [472, 478, 479, 480, 481, 483], "talbot": 475, "tale": 120, "talent": 92, "talin": 468, "talk": [64, 85, 92, 102, 109, 341, 348, 428, 467, 478], "talli": [160, 469, 475, 476], "talo": 483, "tam": 483, "tamil": 109, "tamper": [235, 299], "tan": [154, 275, 483], "tane": 473, "tangent": [275, 384], "tangerin": 442, "tanh": [154, 275], "tape": 358, "tapset": 68, "tar": [68, 80, 119, 254, 276, 292, 296, 332, 399, 426, 453, 460, 462, 465, 466, 467, 468, 469, 472, 473, 474, 475, 481, 482, 483], "tar_filt": 358, "tara": 477, "tarbal": [462, 483], "tarek": [332, 355, 468, 469, 475, 478, 483], "tarerror": 358, "tarfil": [68, 114, 119, 156, 254, 332, 451, 465, 466, 467, 468, 469, 474, 479, 480, 483], "target": [7, 33, 35, 64, 68, 84, 93, 98, 101, 102, 120, 122, 133, 136, 169, 183, 186, 191, 241, 242, 247, 250, 251, 255, 268, 269, 283, 284, 292, 293, 296, 314, 316, 319, 332, 333, 337, 338, 340, 358, 362, 365, 369, 371, 386, 388, 389, 399, 410, 413, 415, 419, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 436, 442, 455, 456, 461, 465, 467, 468, 470, 472, 474, 475, 476, 477, 480, 481, 483], "target_": 483, "target_handl": 102, "target_is_directori": [293, 296, 476], "target_key": 261, "target_list": [427, 430, 436], "target_with_star_atom": 431, "targetdir": [461, 483], "targetscopeerror": 483, "tarinfo": [68, 119, 469, 475], "tashrif": 483, "task": [68, 73, 84, 85, 87, 95, 96, 100, 101, 103, 106, 108, 109, 115, 125, 127, 129, 130, 134, 135, 136, 138, 167, 169, 170, 201, 207, 236, 247, 259, 267, 269, 271, 283, 293, 299, 308, 316, 322, 338, 348, 365, 388, 394, 420, 430, 452, 456, 462, 464, 468, 469, 471, 473, 474, 475, 478, 479, 480, 481, 482, 483], "task1": [139, 452], "task2": [139, 452], "task3": 452, "task4": 452, "task_don": [134, 283, 316, 467, 478, 483], "task_queu": [232, 283], "taskaya": [472, 473, 474, 481, 482, 483], "taskgroup": [124, 139, 473, 483], "taskmanag": 481, "tasknam": [267, 483], "tasks1": 283, "tasks2": 283, "taskwakeupmethwrapp": 483, "tast": 85, "tatschner": 482, "tau": [154, 275, 479, 483], "taught": 247, "tautolog": 483, "tavar": 477, "tax": [85, 319, 449, 465], "taxonomi": 388, "taylor": [186, 468, 483], "tb": [23, 102, 191, 213, 247, 381, 382, 385, 390, 428, 467, 468, 474, 477, 483], "tb_frame": [255, 385, 428, 483], "tb_lasti": [255, 385, 428], "tb_lineno": [255, 381, 385, 428], "tb_local": 388, "tb_next": [255, 381, 385, 428, 480, 483], "tbd": [113, 483], "tbreak": 297, "tbs": 483, "tbutton": 376, "tc": 431, "tcdrain": 361, "tcflow": 361, "tcflush": 361, "tcgetattr": [361, 383, 483], "tcgetpgrp": 293, "tcgetwins": [361, 483], "tciflush": 361, "tcioff": 361, "tcioflush": 361, "tcion": 361, "tck": 469, "tcl": [68, 81, 247, 254, 368, 375, 376, 452, 459, 461, 462, 465, 468, 469, 472, 473, 475, 478, 479, 481, 482, 483], "tcl8": 469, "tcl_librari": 81, "tcl_obj": [465, 483], "tclerror": 483, "tclsam_init": 81, "tcltk": [472, 473, 475, 482, 483], "tcltk_cflag": 473, "tcltk_lib": 473, "tcoflush": 361, "tcombobox": 376, "tcooff": 361, "tcoon": 361, "tcp": [68, 80, 84, 101, 102, 107, 124, 126, 130, 223, 257, 269, 283, 335, 337, 338, 341, 362, 468, 469, 479, 480, 483], "tcp_": [337, 483], "tcp_cc_info": [337, 483], "tcp_congest": [337, 479, 480, 483], "tcp_connection_info": [337, 483], "tcp_echo_cli": 136, "tcp_fastopen": [337, 483], "tcp_fastopen_connect": [337, 483], "tcp_fastopen_key": [337, 483], "tcp_fastopen_no_cooki": [337, 483], "tcp_info": 337, "tcp_inq": [337, 483], "tcp_keepal": [337, 483], "tcp_keepcnt": [337, 483], "tcp_keepidl": [337, 483], "tcp_keepintvl": [337, 483], "tcp_md5sig": [337, 483], "tcp_md5sig_ext": [337, 483], "tcp_nodelay": [107, 126, 469, 479, 480, 483], "tcp_notsent_lowat": [337, 480, 483], "tcp_queue_seq": [337, 483], "tcp_repair": [337, 483], "tcp_repair_opt": [337, 483], "tcp_repair_queu": [337, 483], "tcp_repair_window": [337, 483], "tcp_save_syn": [337, 483], "tcp_saved_syn": [337, 483], "tcp_thin_dupack": [337, 483], "tcp_thin_linear_timeout": [337, 483], "tcp_timestamp": [337, 483], "tcp_tx_delay": [337, 483], "tcp_ulp": [337, 483], "tcp_user_timeout": [337, 479, 480, 483], "tcp_zerocopy_rec": [337, 483], "tcpclient": 338, "tcpconnect": 247, "tcplisten": 247, "tcpserver": [68, 102, 245, 256, 267, 420, 469, 483], "tcsadrain": 361, "tcsaflush": [361, 383], "tcsanow": 361, "tcsendbreak": 361, "tcsetattr": [361, 383, 483], "tcsetpgrp": 293, "tcsetwins": [361, 483], "tcsh": [399, 466], "td": [176, 183], "tdemo_nim": 384, "tdemo_round_d": 384, "te": 102, "tea": 451, "teach": [230, 464, 481, 483], "teacher": 384, "team": [461, 462, 463, 464, 469, 477, 482, 483], "teamus": 386, "teapot": [441, 472, 483], "tear": [193, 388], "teardown": [193, 362, 388, 389, 390, 469, 483], "teardownclass": [68, 187, 469, 483], "teardownmodul": [68, 187, 469, 483], "tearoff": 483, "tebeka": [469, 475], "tech": 483, "technic": [68, 95, 112, 167, 183, 191, 252, 262, 292, 293, 319, 344, 400, 427, 432, 461, 462, 469, 480, 483], "techniqu": [85, 95, 102, 109, 151, 161, 193, 201, 226, 293, 308, 319, 340, 354, 361, 375, 386, 432, 475, 481, 483], "technolog": [84, 92, 426], "techtonik": [469, 483], "ted": 308, "tedious": [100, 109, 128, 151, 384, 462, 467, 481], "tee": [95, 177, 261, 466, 483], "teichmann": [479, 483], "tel": 442, "telco": 476, "telenovela": 475, "telephon": 319, "teleport": [384, 483], "teleprint": 178, "tell": [5, 18, 31, 33, 68, 73, 75, 92, 95, 102, 106, 112, 117, 120, 126, 151, 153, 159, 193, 208, 222, 235, 258, 267, 269, 278, 283, 292, 295, 299, 332, 333, 337, 338, 340, 341, 344, 349, 369, 380, 386, 395, 401, 422, 446, 462, 464, 465, 466, 468, 478, 479, 480, 483], "tellabl": 483, "telnet": [68, 142, 170, 254, 350, 394, 468, 479, 483], "telnetlib": [68, 142, 254, 350, 468, 473, 474, 483], "telopt_": 359, "temp": [73, 283, 330, 340, 360, 411, 421, 430, 456, 461, 483], "temp0": 176, "temp1": 176, "temp_cwd": [96, 362, 483], "temp_dir": 362, "temp_umask": 362, "tempcwd": 362, "tempdir": [360, 402, 483], "temperatur": 475, "temperature_feb": 481, "temperature_februari": 343, "tempfil": [68, 110, 142, 200, 219, 225, 254, 283, 293, 327, 362, 395, 402, 468, 470, 483], "templ": 483, "templat": [68, 73, 85, 96, 101, 160, 201, 267, 319, 344, 345, 368, 384, 445, 446, 464, 466, 468, 469, 473, 475, 476, 479, 480, 483], "tempnam": 470, "tempo": 106, "tempor": 483, "temporari": [7, 22, 49, 55, 63, 68, 96, 102, 110, 112, 144, 176, 193, 247, 252, 258, 261, 266, 271, 272, 283, 293, 297, 324, 340, 344, 352, 358, 360, 362, 382, 388, 395, 458, 464, 466, 468, 475, 476, 477, 482, 483], "temporarili": [23, 68, 73, 102, 110, 169, 186, 193, 230, 250, 266, 267, 314, 315, 332, 344, 348, 362, 376, 382, 388, 413, 427, 461, 468, 474, 479, 480, 483], "temporary_redirect": 241, "temporarydirectori": [360, 475, 483], "temporaryfil": [360, 483], "tempt": [76, 102, 106], "temptat": [106, 388, 463], "ten": [85, 93, 102, 160, 177, 186, 308, 318, 343, 347, 465], "ten_year": 183, "tenabl": 343, "tend": [85, 100, 149, 190, 226, 305, 308, 471], "tendenc": 343, "tenfold": 466, "teninteg": 176, "tenpointsarraytyp": 176, "tensorflow": 473, "tentat": 483, "tenth": [92, 141, 177, 209], "teo": [481, 483], "tep": 297, "ter": 483, "teredo": 259, "tereick": 483, "term": [73, 93, 95, 139, 177, 186, 209, 213, 221, 235, 243, 250, 262, 267, 292, 299, 308, 345, 362, 366, 369, 385, 394, 399, 414, 426, 427, 431, 432, 466, 468, 469, 471, 474, 476, 477, 479, 481, 483], "termattr": 177, "termcap": 483, "termin": [5, 7, 9, 31, 33, 34, 37, 39, 45, 58, 60, 61, 63, 64, 66, 68, 73, 84, 85, 92, 95, 96, 100, 101, 102, 109, 115, 118, 120, 130, 132, 133, 137, 139, 155, 176, 177, 178, 189, 190, 191, 193, 207, 208, 214, 219, 225, 229, 242, 245, 247, 255, 258, 261, 265, 266, 269, 271, 283, 288, 292, 297, 302, 308, 309, 319, 322, 333, 335, 338, 340, 341, 344, 345, 348, 352, 361, 365, 369, 377, 384, 395, 400, 405, 411, 413, 415, 426, 427, 429, 430, 432, 435, 436, 455, 462, 466, 467, 468, 470, 475, 476, 478, 480, 481, 483], "terminal_s": [293, 332], "terminalcommand": 468, "terminate_broken": 483, "terminateprocess": [133, 137, 142, 283, 293, 348, 468, 469, 483], "terminfo": 177, "terminolog": [68, 99, 201, 245, 366, 376, 410, 463, 464, 467, 468], "termio": [68, 215, 254, 383, 391, 482, 483], "termnam": 177, "ternari": [63, 428, 430], "ternaryfunc": [57, 63, 75], "terrain": 483, "terrenc": 475, "terri": [109, 442, 472, 473, 478, 479, 480, 481, 482, 483], "terribl": 106, "terron": 483, "ters": [84, 303, 384, 461], "tesler": 481, "test": [5, 23, 46, 58, 61, 68, 73, 78, 84, 85, 92, 93, 94, 96, 98, 99, 100, 101, 102, 106, 108, 109, 110, 114, 120, 122, 125, 155, 161, 170, 176, 177, 178, 181, 186, 187, 189, 191, 193, 200, 220, 225, 226, 228, 236, 240, 245, 247, 248, 249, 250, 251, 254, 255, 259, 261, 262, 266, 269, 272, 275, 283, 293, 296, 305, 309, 315, 319, 335, 336, 340, 342, 344, 352, 358, 364, 365, 367, 375, 376, 382, 386, 389, 390, 395, 413, 419, 422, 425, 426, 427, 428, 434, 440, 442, 443, 446, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482], "test1": [345, 427], "test2": [345, 427], "test2to3": 483, "test_": [362, 422, 483], "test___all__": 483, "test__all__": 362, "test_abc": 483, "test_add_file_after_2107": 483, "test_anagram": 475, "test_api": 483, "test_argpars": 483, "test_ast": 483, "test_asyncio": 483, "test_asyncor": 483, "test_autocomplet": 483, "test_averag": 451, "test_bas": 483, "test_base64": 483, "test_bdb": 483, "test_binhex": 483, "test_both": 483, "test_brows": 483, "test_bufio": 465, "test_build_ext": 483, "test_builtin": 483, "test_byt": 479, "test_c": 483, "test_c_locale_coercion": 483, "test_call_lat": 483, "test_capi": 483, "test_cas": [362, 388], "test_chown": 483, "test_chown_gid": 483, "test_class": 388, "test_clos": 483, "test_cmath": 483, "test_cmd_lin": 483, "test_cmd_line_script": 483, "test_cod": 483, "test_code_modul": 483, "test_codec": 483, "test_collect": 483, "test_commun": 483, "test_compile_dir_maxlevel": 483, "test_compileal": 483, "test_concurrent_futur": 483, "test_config": 483, "test_configdialog": 483, "test_configure_screen": 483, "test_control_and_wait": 483, "test_copyfile_nonexistent_dir": 483, "test_copyreg": 483, "test_cor": 483, "test_coroutin": 483, "test_count": 193, "test_cppext": 483, "test_cprofil": 483, "test_create_datagram_endpoint_existing_sock_unix": 483, "test_create_directory_with_writ": 483, "test_ctyp": 483, "test_current_": 483, "test_curs": 483, "test_cyclic_gc": 483, "test_data_dir": 362, "test_dataclass": 483, "test_datetim": 483, "test_dbm_gnu": 483, "test_debugg": 483, "test_decim": 483, "test_default_timeout": 474, "test_default_widget_s": 388, "test_deleg": 483, "test_determinist": 483, "test_di": 483, "test_distutil": 483, "test_division_by_zero": 471, "test_doctest": [193, 483], "test_dotted_but_module_not_load": 483, "test_editor": 483, "test_eintr": 483, "test_email": 483, "test_emb": 483, "test_encodebyt": 483, "test_entry_points_by_index": 483, "test_enum": 94, "test_epol": [68, 483], "test_ev": 483, "test_even": [388, 477], "test_events_mask_overflow": 483, "test_except": 483, "test_expandus": 483, "test_extens": 483, "test_fail": 388, "test_faulthandl": 483, "test_feature_on": 362, "test_feature_two": 362, "test_fil": 461, "test_file_button": 483, "test_file_not_exist": 483, "test_find": 193, "test_flag": 483, "test_float": 483, "test_font_set": 483, "test_foo": [388, 390, 480], "test_format": 388, "test_freez": 483, "test_freeze_simple_script": 483, "test_from_tupl": 483, "test_frozen_pickl": 483, "test_frozenmain": 483, "test_frozent": 483, "test_ftplib": 483, "test_func": 362, "test_funct": 389, "test_functool": 483, "test_future4": 483, "test_gdb": 483, "test_gener": [95, 464, 465, 483], "test_genericalia": 483, "test_get": 481, "test_get_ciph": 483, "test_get_event_loop_new_process": 483, "test_getaddrinfo_ipv6_scopeid_symbol": 483, "test_getallocatedblock": 483, "test_getnameinfo_ipv6_scopeid_symbol": 483, "test_getsetlocale_issue1813": 483, "test_gimzo_without_required_librari": 471, "test_gizmo_on_window": 471, "test_hashlib": 483, "test_help": 483, "test_help_about": 483, "test_hex": 479, "test_hmac_sha1": 483, "test_home_dir": 362, "test_http_url": [362, 483], "test_httpserv": 483, "test_idl": 483, "test_imap4_host_default_valu": 483, "test_imaplib": 483, "test_import": 483, "test_importlib": 483, "test_indent_scal": 483, "test_inst": 362, "test_interprocess_sign": 483, "test_io": 483, "test_issue2301": 483, "test_isupp": 388, "test_json": 483, "test_lib2to3": 483, "test_license_exists_at_url": 483, "test_local": 483, "test_locale_calendar_formatweekday": 483, "test_locale_flag": 483, "test_localtime_daylight_false_dst_tru": 483, "test_localtime_daylight_true_dst_tru": 483, "test_log": 483, "test_macholib": 483, "test_mailcap": 483, "test_main": [362, 483], "test_marsh": 483, "test_master_read": 483, "test_math": 483, "test_maybe_skip": 388, "test_memfd_cr": 483, "test_metadata_api": 483, "test_method": 388, "test_min_max_vers": 483, "test_min_max_version_mismatch": 483, "test_mktim": 483, "test_modul": 388, "test_module1": 388, "test_module2": 388, "test_modulefind": 483, "test_monoton": 483, "test_multiprocess": 483, "test_multiprocessing_fork": 483, "test_multiprocessing_forkserv": 483, "test_multiprocessing_main_handl": 483, "test_multiprocessing_spawn": 483, "test_mymanag": 483, "test_mypkg": 388, "test_name_error_suggestions_do_not_trigger_for_too_many_loc": 483, "test_namer_rotator_inherit": 483, "test_namespace_pkg": 483, "test_netrc": 483, "test_nntplib": 483, "test_no_fatalerror_infinite_loop": 483, "test_nonascii": 483, "test_norm": 483, "test_not_run": 388, "test_noth": 388, "test_notifi": 96, "test_ntpath": 483, "test_o": 483, "test_on": [388, 390], "test_openpti": 483, "test_ordered_dict": 483, "test_pack_configure_in": 483, "test_pair": 483, "test_pass_by_valu": 483, "test_pathlib": [296, 483], "test_pdb": 483, "test_peg_gener": 483, "test_perf_profil": 483, "test_pha_required_nocert": 483, "test_pickletool": 382, "test_pidfd_open": 483, "test_pip": 483, "test_pkg": 483, "test_pkg_import": 483, "test_pkgutil": 483, "test_place_configure_in": 483, "test_popen": 483, "test_posix": 483, "test_posix_falloc": 483, "test_pre_initialization_sys_opt": 483, "test_prefix": [68, 187], "test_pthread_getcpuclickid": 483, "test_pti": 483, "test_py_compil": 483, "test_pycfunct": 483, "test_pyexpat": 483, "test_python_": 483, "test_queu": 483, "test_queue_feeder_donot_stop_onexc": 483, "test_r": 483, "test_race_between_set_target_and_flush": 483, "test_rais": 483, "test_raisememerror": 483, "test_readlin": 483, "test_resourc": 483, "test_respons": 388, "test_ressources_gced_in_work": 483, "test_runn": 382, "test_sampl": 389, "test_search_cpp": 483, "test_select": 483, "test_sendfil": 483, "test_sha256": 483, "test_shared_memory_bas": 483, "test_shared_memory_cleaned_after_process_termin": 483, "test_shared_memory_recr": 483, "test_shutil": 483, "test_si": 483, "test_sidebar": 483, "test_sigfp": 483, "test_sign": 483, "test_signal_handl": 388, "test_simple_enum": 483, "test_sit": 483, "test_skip": 483, "test_smtplib": 483, "test_socket": 483, "test_socketserv": 483, "test_someth": [388, 389, 390, 480], "test_source_encod": 483, "test_spam": 362, "test_speech128": 483, "test_split": [388, 389], "test_sqlit": 483, "test_sqlite3": 483, "test_squeez": 483, "test_ssl": 483, "test_start_tls_server_1": 483, "test_startup_import": 483, "test_statist": 483, "test_stdlib_dir": 483, "test_str": 483, "test_stress_modifying_handl": 483, "test_strptim": 483, "test_subprocess": 483, "test_sundri": 483, "test_support": [96, 468, 470], "test_support_dir": 362, "test_suppress_warn": 362, "test_sys_settrac": 483, "test_sysconfig": 483, "test_tabnanni": 483, "test_tarfil": 483, "test_tarfile_vs_tar": 483, "test_tcl": 483, "test_tempfil": 483, "test_test": 483, "test_thre": 388, "test_thread": [474, 483], "test_tim": 483, "test_timeout": [474, 483], "test_timestamp_overflow": 483, "test_tk": 483, "test_tkint": 483, "test_tomllib": 483, "test_tool": 483, "test_tooltip": 483, "test_ttk": 483, "test_ttk_guion": 483, "test_two": [388, 390], "test_udp_reconnect": 483, "test_undecodable_env": 483, "test_undecodable_fil": 483, "test_underpth_bas": 483, "test_unicod": 483, "test_unicodedata": 483, "test_unittest": 483, "test_unpack_archive_xztar": 483, "test_unpars": 483, "test_upp": 388, "test_urllib2net": 483, "test_us": 483, "test_user_similar": 483, "test_utf8_mod": 483, "test_util": 483, "test_uuid": 483, "test_vari": 472, "test_venv": 483, "test_wait": 483, "test_widget": [388, 483], "test_widget_res": 388, "test_winconsoleio": 483, "test_window": 483, "test_windows_support": 388, "test_windows_util": 483, "test_with_pip": 483, "test_wrong_cert_tls13": 483, "test_wsgiref": 483, "test_xmlrpc": 483, "test_yield_from": 483, "test_zipfil": 483, "test_zipfile64": 483, "test_zipimport": 483, "test_zlib": 483, "test_zoneinfo": 483, "testal": [422, 468], "testcapi": 483, "testcas": [193, 362, 388, 389, 390, 426, 451, 469, 471, 473, 474, 475, 476, 477, 481, 483], "testcase1": 388, "testcase2": 388, "testcase3": 388, "testcaseclass": 388, "testclass": 388, "testcongest": 483, "testcopi": 483, "testcwd": 96, "testdidnotrun": 483, "testdir": 483, "testenumer": 483, "testenviron": 483, "testfail": 362, "testfil": [193, 467, 483], "testfn": [362, 483], "testfn_nonascii": 362, "testfn_undecod": 362, "testfn_unencod": 362, "testfn_unicod": 362, "testfreez": 483, "testfunc": 388, "testfuncacceptssequencesmixin": 362, "testgizmo": 471, "testhook": 344, "testload": [362, 388, 389, 469, 473, 474, 478, 483], "testmethod": 382, "testmethodprefix": 388, "testmod": [193, 451, 466, 471], "testn": 483, "testnamepattern": 388, "testprogram": [388, 473, 474], "testpypi": 341, "testrequest": 481, "testresult": [96, 193, 388, 469, 471, 476, 483], "testrunn": 388, "testsampl": 389, "testsocknam": 483, "testsometh": 388, "testsourc": 193, "testsrun": [96, 388], "teststatisticalfunct": 451, "teststringmethod": [388, 389], "testsuit": [193, 362, 388, 465, 477, 478, 483], "testtimeout": [456, 483], "testwithdirectori": 483, "testzip": 422, "tetxtwrap": 483, "tex": 106, "text": [5, 54, 59, 64, 68, 72, 75, 84, 85, 87, 95, 101, 102, 106, 109, 110, 118, 120, 122, 126, 145, 146, 149, 150, 151, 152, 155, 157, 159, 167, 168, 173, 176, 178, 187, 190, 191, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 212, 213, 218, 223, 225, 226, 234, 240, 242, 245, 248, 250, 252, 253, 254, 255, 258, 262, 266, 267, 268, 269, 270, 271, 273, 281, 282, 288, 292, 293, 296, 298, 299, 305, 307, 313, 314, 320, 323, 331, 333, 341, 345, 346, 348, 352, 358, 360, 364, 367, 368, 369, 372, 374, 375, 376, 377, 381, 384, 386, 387, 388, 394, 395, 399, 400, 403, 407, 411, 412, 413, 415, 416, 422, 426, 428, 429, 430, 432, 434, 435, 446, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "text1": 190, "text2": 190, "text_encod": [258, 483], "text_factori": 340, "text_nod": [410, 411], "text_or_uri": 413, "text_signatur": 483, "text_textview": 483, "text_typ": 251, "textbook": [95, 106, 319, 467, 468], "textbox": [68, 92, 118, 468, 483], "textcalendar": [150, 483], "textdomain": [230, 266], "textedit": 102, "textfil": 200, "textinput": [384, 483], "textio": [252, 386, 483], "textiobas": [79, 225, 242, 258, 360, 369, 428, 468, 469, 470, 473, 483], "textiowrapp": [34, 120, 149, 188, 218, 225, 234, 250, 253, 258, 270, 348, 360, 422, 468, 472, 476, 477, 479, 480, 483], "textmat": [459, 477], "textnod": 467, "textpad": [68, 92, 118, 254, 468, 483], "textread": 299, "texttestresult": [388, 474, 483], "texttestrunn": [388, 483], "textual": [75, 76, 85, 109, 120, 176, 201, 267, 288, 314, 319, 344, 358, 376, 410, 411, 430, 436, 440, 464, 479, 483], "textvari": [369, 376], "textview": 483, "textwrap": [68, 120, 254, 363, 452, 465, 468, 483], "textwrapp": [364, 465, 477, 483], "teyit": 474, "tf": [190, 475], "tg": 139, "tgot": 283, "tgz": [276, 460], "th": [54, 150, 191, 196, 225, 266, 283, 343, 344, 366, 384, 410, 428, 462, 465, 467], "thai": [109, 158, 426], "than": [5, 10, 22, 23, 24, 25, 33, 34, 39, 41, 42, 45, 49, 55, 56, 58, 61, 63, 64, 68, 72, 73, 75, 76, 84, 85, 87, 92, 93, 94, 95, 96, 100, 101, 103, 106, 108, 109, 110, 114, 115, 117, 120, 133, 137, 139, 144, 146, 147, 149, 151, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 201, 203, 205, 207, 208, 209, 213, 215, 218, 225, 226, 230, 234, 235, 242, 243, 244, 247, 248, 250, 251, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 284, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 313, 314, 319, 320, 322, 324, 325, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 354, 355, 358, 359, 362, 364, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 386, 388, 394, 395, 399, 400, 405, 410, 411, 413, 415, 419, 422, 425, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thank": [77, 95, 100, 106, 109, 155, 200, 235, 283, 340, 362, 386, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 479, 480, 483], "that": [5, 7, 9, 13, 17, 22, 23, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 92, 96, 99, 100, 101, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 124, 125, 128, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 148, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 241, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 283, 284, 287, 288, 292, 293, 295, 297, 298, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 442, 443, 446, 452, 455, 456, 457, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thatiparthi": [473, 480, 483], "the": [1, 5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 24, 25, 26, 27, 31, 32, 34, 35, 37, 39, 41, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 68, 71, 72, 74, 75, 77, 79, 80, 86, 87, 89, 91, 92, 93, 94, 97, 98, 99, 105, 107, 108, 110, 112, 113, 114, 115, 117, 118, 122, 124, 125, 126, 128, 129, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 146, 147, 149, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 232, 233, 234, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 284, 285, 287, 288, 289, 290, 291, 295, 296, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 333, 334, 335, 336, 338, 339, 341, 342, 343, 345, 346, 347, 355, 356, 358, 359, 360, 361, 362, 364, 366, 367, 368, 371, 374, 375, 376, 377, 378, 380, 381, 383, 385, 387, 388, 389, 390, 394, 395, 397, 398, 399, 402, 403, 405, 406, 407, 408, 412, 413, 414, 415, 417, 419, 420, 422, 423, 426, 429, 431, 433, 434, 435, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 453, 454, 455, 458, 459, 462, 463, 466, 470, 471, 472, 473, 483, 484], "the_answ": 440, "the_except": 388, "the_list": 78, "the_pag": 110, "the_world_is_flat": 448, "their": [5, 7, 28, 33, 34, 42, 45, 55, 61, 63, 64, 68, 72, 73, 75, 76, 77, 84, 85, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 132, 137, 139, 151, 158, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 194, 195, 196, 203, 205, 207, 208, 213, 214, 215, 216, 218, 225, 226, 230, 235, 243, 244, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 275, 279, 282, 283, 288, 292, 293, 297, 299, 307, 308, 312, 313, 314, 324, 325, 326, 329, 332, 333, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 355, 358, 361, 362, 363, 365, 366, 369, 375, 376, 381, 382, 383, 384, 386, 387, 388, 394, 395, 399, 400, 410, 411, 412, 413, 415, 417, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theller": 467, "thello": 364, "them": [5, 7, 22, 23, 33, 34, 45, 59, 63, 64, 66, 68, 71, 73, 76, 77, 84, 85, 91, 92, 94, 95, 96, 99, 100, 101, 106, 109, 110, 112, 120, 126, 128, 134, 139, 151, 155, 158, 159, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 195, 196, 201, 206, 208, 214, 216, 225, 226, 230, 235, 243, 244, 247, 248, 250, 251, 255, 258, 266, 267, 268, 269, 271, 283, 288, 289, 292, 293, 295, 299, 307, 308, 319, 322, 324, 328, 330, 335, 337, 340, 341, 342, 344, 347, 348, 352, 353, 355, 358, 359, 362, 364, 365, 369, 375, 376, 382, 384, 386, 388, 400, 405, 410, 411, 412, 413, 422, 427, 428, 430, 431, 432, 434, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theme": [1, 68, 247, 369, 376, 465, 468, 471, 479, 480, 483], "theme_cr": 376, "theme_nam": 376, "theme_set": 376, "theme_us": 376, "themechang": [376, 483], "themenam": 376, "themonth": 150, "themselv": [33, 63, 73, 75, 85, 99, 101, 106, 141, 151, 158, 167, 176, 194, 208, 230, 261, 262, 275, 283, 297, 299, 319, 332, 340, 344, 362, 364, 388, 411, 419, 428, 430, 432, 464, 467, 468, 469, 474, 475, 477, 478, 480, 483], "then": [5, 7, 13, 23, 25, 27, 28, 31, 33, 34, 42, 43, 47, 49, 59, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 85, 91, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 109, 110, 115, 120, 132, 133, 139, 144, 151, 157, 158, 161, 163, 169, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 225, 226, 228, 230, 235, 243, 245, 247, 248, 250, 251, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 283, 288, 292, 293, 297, 298, 299, 302, 307, 308, 309, 313, 314, 319, 322, 324, 325, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 358, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 400, 403, 405, 407, 408, 410, 413, 414, 415, 420, 421, 422, 426, 427, 428, 430, 431, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theorem": [275, 343, 344], "theoret": [95, 186], "theori": [84, 319, 426, 477, 478], "there": [5, 7, 9, 13, 22, 23, 25, 26, 27, 31, 33, 34, 39, 41, 42, 45, 46, 49, 51, 55, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 87, 92, 93, 94, 95, 100, 101, 102, 103, 105, 106, 109, 110, 114, 115, 120, 122, 132, 133, 137, 139, 144, 151, 153, 155, 157, 158, 159, 163, 166, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 196, 197, 199, 200, 201, 203, 205, 207, 208, 209, 213, 215, 216, 218, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 265, 266, 267, 268, 269, 271, 275, 278, 281, 283, 287, 288, 289, 292, 293, 295, 297, 299, 304, 305, 307, 308, 313, 314, 318, 319, 324, 325, 328, 330, 331, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 386, 387, 388, 394, 395, 399, 400, 408, 410, 411, 413, 414, 415, 416, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thereaft": [183, 247, 266, 395], "therebi": [73, 85, 197, 203, 384, 477, 483], "therefor": [5, 23, 33, 42, 49, 63, 73, 75, 76, 84, 85, 92, 95, 101, 102, 103, 106, 109, 120, 139, 146, 151, 158, 173, 176, 181, 183, 208, 214, 215, 225, 243, 250, 253, 258, 262, 266, 267, 269, 281, 283, 293, 299, 313, 319, 330, 332, 333, 337, 341, 344, 352, 358, 365, 375, 386, 400, 413, 414, 421, 422, 427, 428, 430, 434, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 476, 479, 480, 483], "therein": 299, "thereof": [206, 268, 269, 362, 365, 426, 429, 483], "these": [5, 7, 9, 11, 13, 18, 23, 25, 28, 31, 33, 34, 41, 42, 45, 49, 51, 58, 59, 63, 64, 66, 72, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 120, 132, 133, 141, 144, 146, 149, 151, 152, 153, 155, 158, 159, 161, 163, 167, 169, 176, 177, 178, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 196, 197, 200, 201, 202, 205, 206, 207, 208, 209, 213, 214, 221, 225, 226, 230, 235, 242, 243, 245, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 314, 319, 320, 321, 322, 324, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 365, 366, 369, 375, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 408, 410, 411, 413, 414, 415, 416, 419, 420, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theta": 481, "theth": 319, "theun": [480, 483], "they": [5, 7, 23, 28, 33, 34, 42, 45, 54, 55, 58, 59, 61, 63, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 120, 133, 138, 139, 141, 144, 151, 153, 155, 158, 161, 163, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 202, 205, 207, 208, 209, 211, 213, 215, 216, 218, 225, 226, 228, 230, 233, 235, 243, 244, 247, 248, 250, 252, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 276, 281, 282, 283, 288, 292, 293, 295, 299, 302, 304, 307, 308, 309, 312, 314, 319, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 380, 381, 384, 386, 387, 388, 389, 390, 394, 395, 400, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theyear": 150, "thick": 384, "thiel": 483, "thin": [25, 59, 68, 226, 247, 275, 287, 333, 369, 456, 473, 483], "thing": [25, 33, 63, 68, 72, 73, 75, 76, 77, 84, 85, 92, 94, 95, 99, 101, 102, 103, 109, 110, 120, 133, 157, 159, 167, 169, 176, 181, 193, 200, 206, 215, 225, 244, 250, 267, 268, 275, 283, 292, 299, 319, 334, 341, 346, 352, 358, 365, 369, 374, 376, 384, 386, 387, 388, 389, 390, 395, 399, 400, 403, 430, 431, 434, 461, 462, 463, 464, 465, 466, 467, 470, 474, 476, 477, 481, 483], "thing1": 389, "thing2": 389, "thingi": 449, "think": [23, 60, 64, 75, 85, 95, 100, 102, 106, 109, 193, 201, 225, 252, 261, 267, 292, 299, 386, 428, 430, 432, 464, 467, 468], "thinlto": [456, 473, 474, 483], "third": [5, 7, 23, 28, 31, 33, 58, 63, 73, 75, 76, 84, 85, 93, 95, 101, 102, 106, 109, 112, 117, 128, 132, 133, 138, 158, 167, 169, 176, 177, 181, 183, 184, 186, 225, 228, 250, 251, 267, 268, 293, 299, 302, 307, 319, 330, 332, 337, 340, 341, 343, 344, 352, 355, 369, 380, 386, 388, 389, 395, 399, 400, 419, 426, 428, 432, 449, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483], "thirti": [178, 316], "this": [5, 6, 7, 9, 10, 11, 13, 17, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 85, 87, 89, 92, 93, 94, 95, 96, 99, 101, 102, 103, 105, 106, 107, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 132, 133, 135, 137, 138, 139, 141, 143, 144, 146, 149, 151, 152, 153, 155, 156, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 290, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 446, 449, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "this_dir": 388, "this_fail": 443, "this_foo": 389, "tho": 449, "thoma": [462, 463, 466, 467, 468, 469, 472, 473, 474, 477, 478, 479, 480, 483], "thomassen": 483, "thon": [85, 449], "thorn": 477, "thorough": [309, 337, 344, 475, 483], "those": [5, 7, 23, 33, 39, 59, 63, 64, 66, 67, 72, 73, 76, 77, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 120, 133, 139, 151, 158, 161, 167, 169, 176, 177, 178, 183, 186, 190, 191, 193, 194, 196, 202, 203, 204, 205, 208, 213, 216, 220, 225, 226, 228, 234, 242, 244, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 276, 283, 292, 293, 295, 297, 299, 302, 308, 311, 314, 319, 322, 324, 325, 329, 330, 331, 332, 333, 335, 337, 341, 344, 352, 353, 355, 358, 361, 365, 366, 369, 375, 376, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 412, 413, 415, 416, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 455, 461, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thou": [345, 475], "though": [9, 11, 31, 33, 58, 63, 64, 73, 75, 76, 84, 85, 92, 94, 95, 102, 106, 109, 110, 115, 120, 132, 133, 155, 158, 161, 173, 177, 186, 193, 196, 199, 200, 205, 206, 208, 213, 225, 230, 235, 243, 247, 250, 251, 252, 255, 262, 267, 269, 271, 275, 283, 288, 292, 293, 305, 311, 314, 319, 328, 331, 341, 344, 347, 362, 365, 366, 369, 382, 384, 386, 388, 395, 410, 411, 415, 425, 426, 428, 429, 430, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 474, 475, 476, 483], "thought": [68, 95, 100, 283, 462, 464, 465, 470, 478], "thoughtco": 318, "thousand": [68, 109, 235, 266, 307, 308, 319, 345, 441, 479, 480, 483, 484], "thousands_sep": [266, 344, 483], "thousep": 266, "thrash": [482, 483], "thread": [5, 17, 23, 31, 32, 34, 35, 42, 51, 53, 59, 63, 68, 73, 76, 79, 85, 87, 96, 100, 101, 103, 107, 115, 118, 124, 125, 126, 129, 130, 132, 133, 134, 135, 137, 138, 140, 149, 160, 164, 166, 169, 170, 176, 187, 190, 214, 226, 232, 245, 247, 248, 254, 257, 266, 268, 269, 270, 271, 283, 290, 293, 316, 321, 322, 324, 325, 332, 338, 340, 341, 344, 348, 352, 366, 368, 386, 395, 399, 400, 402, 428, 445, 455, 456, 462, 464, 465, 466, 467, 468, 469, 470, 479, 482, 483, 484], "thread_cputim": [482, 483], "thread_foobar": 483, "thread_id": [142, 333, 366, 483], "thread_ind": 98, "thread_info": [352, 450, 476, 483], "thread_name_prefix": [166, 479, 483], "thread_pthread": 483, "thread_stack_s": 483, "thread_task": 84, "thread_tim": [366, 480, 482, 483], "thread_time_n": [366, 480, 483], "threadedchildwatch": [132, 137, 474], "threadedhttpserv": 483, "threadedtcprequesthandl": 338, "threadedtcpserv": 338, "threadgroup": 365, "threading_algorithm": 248, "threading_cleanup": [362, 483], "threading_help": [68, 187, 254], "threading_setup": [362, 483], "threadinghttpserv": [245, 480, 483], "threadingmixin": [245, 338, 480, 483], "threadingtcpserv": [102, 338], "threadingudpserv": 338, "threadingunixdatagramserv": 338, "threadingunixstreamserv": 338, "threadloc": 102, "threadnam": [102, 267], "threadpool": [283, 483], "threadpoolexecutor": [68, 84, 125, 126, 164, 283, 365, 473, 475, 478, 479, 480, 481, 482, 483], "threadsaf": [125, 226, 261, 267, 318, 483], "threadsafeti": [340, 473, 483], "threaten": [95, 464, 465], "three": [5, 7, 23, 31, 35, 42, 58, 63, 73, 75, 76, 77, 84, 85, 93, 94, 101, 102, 103, 106, 109, 117, 120, 133, 134, 139, 158, 160, 161, 175, 176, 177, 181, 183, 186, 189, 190, 191, 193, 194, 196, 200, 205, 207, 211, 213, 215, 216, 225, 226, 243, 245, 248, 250, 266, 268, 269, 271, 278, 283, 288, 292, 293, 295, 297, 299, 307, 308, 314, 318, 319, 328, 332, 333, 334, 337, 340, 341, 344, 347, 348, 352, 353, 358, 359, 366, 369, 376, 384, 385, 386, 388, 389, 390, 395, 399, 403, 410, 414, 415, 419, 425, 427, 428, 430, 431, 432, 434, 435, 436, 441, 451, 452, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 480, 481, 483], "three_year": 183, "threefold": 101, "threshold": [101, 102, 267, 344, 467], "threshold0": 227, "threshold1": 227, "threshold2": 227, "threw": 483, "throttl": 267, "through": [5, 7, 9, 11, 22, 23, 28, 33, 42, 45, 51, 55, 59, 60, 63, 64, 67, 68, 73, 76, 77, 85, 91, 93, 95, 99, 100, 101, 102, 106, 109, 110, 120, 144, 151, 158, 167, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 196, 197, 202, 204, 205, 206, 208, 216, 221, 225, 226, 230, 242, 244, 245, 247, 250, 251, 257, 267, 268, 269, 271, 275, 278, 281, 283, 292, 293, 297, 301, 302, 312, 314, 319, 335, 337, 340, 341, 342, 344, 345, 348, 352, 362, 364, 365, 369, 375, 376, 385, 386, 388, 394, 395, 406, 410, 411, 413, 415, 417, 419, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "throughout": [68, 73, 93, 101, 112, 186, 250, 434, 462, 464, 465, 467, 468, 469, 475, 478, 483], "throughput": [469, 480, 483], "throw": [33, 66, 77, 94, 95, 101, 112, 128, 139, 161, 177, 191, 247, 293, 353, 362, 386, 394, 428, 430, 431, 467, 474, 476, 479, 482, 483], "throwflag": [33, 66, 96, 483], "thrown": [66, 95, 139, 183, 186, 268, 319, 464, 465, 476, 483], "ths": 344, "thu": [106, 150, 366], "thulasiram": 474, "thumb": [63, 100, 190, 376], "thunderbird": 106, "thursday": [94, 150, 183, 211], "thus": [5, 7, 10, 33, 42, 54, 73, 84, 85, 94, 100, 101, 102, 117, 120, 167, 169, 176, 177, 193, 201, 204, 205, 208, 225, 228, 235, 243, 250, 251, 259, 262, 266, 267, 268, 269, 275, 283, 292, 293, 299, 313, 319, 331, 332, 334, 337, 340, 341, 344, 348, 352, 358, 362, 366, 384, 386, 388, 394, 395, 405, 421, 425, 427, 430, 432, 435, 436, 455, 461, 462, 470, 475, 476, 477, 478, 479, 481, 483], "thusli": 384, "tiago": 476, "tian": [474, 483], "tibetan": 109, "tic": 442, "tick": [308, 322, 366], "tick_count": 477, "ticker": 479, "ticket": [341, 483], "ticket_lifetime_hint": 341, "tid": [96, 365, 483], "tide": [190, 375], "tidi": [267, 388, 465, 467, 468, 483], "tidier": 467, "tie": [33, 186, 308, 341, 353, 427, 481, 483], "tiebreak": 183, "tiedemann": 462, "tier": [13, 473, 474, 483], "tiff": [206, 249, 369, 467], "tiger": 319, "tigetflag": 177, "tigetnum": 177, "tigetstr": 177, "tight": [85, 101, 135, 430, 434, 483], "tighten": [243, 462, 469, 475], "tighter": [186, 427, 466, 476], "tikhonov": 483, "tild": [193, 231, 294, 377], "tile": [376, 384, 469], "till": [225, 283, 308, 341, 359, 482, 483], "tillenius": 467, "tilt": 384, "tiltangl": [384, 473, 483], "tim": [114, 345, 367, 461, 462, 463, 464, 465, 466, 467, 469, 473, 474, 477, 478, 479, 482, 483], "time": [4, 5, 13, 20, 22, 23, 27, 28, 31, 33, 34, 41, 42, 45, 54, 63, 64, 68, 72, 73, 75, 76, 77, 79, 81, 85, 86, 87, 92, 93, 94, 95, 96, 106, 108, 110, 115, 117, 118, 120, 126, 132, 133, 134, 136, 138, 139, 141, 142, 144, 146, 150, 151, 157, 160, 163, 166, 167, 169, 173, 176, 177, 182, 186, 190, 193, 202, 203, 208, 209, 212, 213, 214, 216, 218, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 254, 255, 257, 259, 261, 266, 267, 268, 269, 271, 276, 281, 282, 283, 284, 288, 292, 293, 294, 295, 297, 299, 308, 309, 314, 318, 319, 320, 322, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 340, 341, 342, 344, 348, 352, 353, 358, 359, 362, 364, 365, 367, 369, 372, 375, 376, 379, 380, 384, 386, 388, 389, 390, 395, 398, 400, 402, 405, 408, 410, 415, 416, 419, 420, 422, 423, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 443, 449, 451, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 477, 483], "time2internald": 248, "time2netscap": 483, "time_": 271, "time_fromtimeandfold": 483, "time_hi_vers": 398, "time_low": 398, "time_mid": 398, "time_n": [366, 480, 483], "time_str": 183, "time_strftim": 483, "time_t": [176, 483], "time_taken": 367, "time_to_birthday": 183, "time_wait": [126, 337], "timeboundedlru": 160, "timedelta": [20, 68, 94, 182, 288, 385, 425, 465, 469, 475, 476, 480, 481, 482, 483], "timedrotatingfilehandl": [68, 101, 118, 466, 468, 477, 483], "timefunc": [325, 476], "timegm": [150, 366], "timeit": [68, 85, 156, 169, 185, 254, 308, 451, 455, 465, 466, 468, 483], "timelin": [68, 187], "timemodul": 483, "timeout": [68, 96, 102, 107, 110, 115, 124, 126, 129, 134, 135, 137, 138, 166, 169, 177, 185, 223, 242, 248, 268, 269, 283, 288, 297, 305, 316, 328, 329, 333, 335, 338, 340, 341, 348, 359, 362, 365, 366, 381, 386, 395, 456, 465, 468, 469, 472, 473, 475, 476, 478, 481, 482, 483], "timeout_at": [139, 483], "timeout_max": [115, 365], "timeouterror": [23, 127, 139, 166, 212, 213, 283, 335, 337, 450, 472, 476, 483], "timeoutexpir": 348, "timeperiod": [68, 211], "timer": [68, 92, 96, 98, 164, 185, 212, 214, 283, 328, 333, 366, 367, 369, 376, 384, 451, 464, 465, 468, 476, 478, 479, 480, 483], "timer1": 465, "timer2": 465, "timerhandl": [126, 483], "timeslic": 352, "timespec": [183, 479, 483], "timestamp": [98, 102, 160, 163, 183, 203, 209, 234, 245, 293, 311, 335, 340, 341, 358, 366, 380, 422, 432, 455, 465, 469, 476, 478, 480, 483], "timetupl": 183, "timetz": 183, "timeunit": 308, "timev": [209, 483], "timezon": [20, 68, 102, 118, 182, 190, 203, 209, 340, 362, 379, 425, 451, 473, 474, 475, 476, 478, 479, 480, 483], "timo": [426, 483], "timothi": 426, "timsort": [108, 475], "timzon": 483, "tin": [110, 271, 483], "tincidunt": 149, "tinfo": 483, "tini": [5, 84, 85, 181, 462, 468, 469, 483], "tinker": [96, 358], "tino": 465, "tiny_sha3": [473, 483], "tiocgpgrp": 215, "tiocgsiz": 361, "tiocgwinsz": 361, "tiocssiz": 361, "tiocswinsz": 361, "tip": [68, 96, 225, 246, 247, 462, 469, 483], "tipc": [337, 468], "tipc_": 337, "tipc_addr_id": 337, "tipc_addr_nam": 337, "tipc_addr_nameseq": 337, "tipc_cluster_scop": 337, "tipc_node_scop": 337, "tipc_zone_scop": 337, "tiram": 480, "tiran": 483, "tiremove_thisg": 319, "tirosh": [465, 476], "tis": [465, 466, 483], "tis260": 483, "tishler": [463, 465, 483], "tismer": [462, 477], "titan": 147, "titl": [1, 64, 84, 93, 95, 106, 109, 110, 120, 151, 160, 184, 189, 240, 247, 262, 267, 281, 283, 292, 337, 340, 344, 345, 369, 373, 384, 386, 395, 411, 412, 413, 420, 426, 462, 464, 466, 473, 475, 481, 483], "titlebar": 384, "titlecas": [64, 344, 435, 483], "titledhelpformatt": 292, "titlestr": [85, 384], "tix": [68, 81, 254, 368, 369, 465, 479, 483], "tix_addbitmapdir": 375, "tix_cget": 375, "tix_config": 375, "tix_configur": 375, "tix_filedialog": 375, "tix_getbitmap": 375, "tix_getimag": 375, "tix_librari": 375, "tix_option_get": 375, "tix_resetopt": 375, "tixcommand": 375, "tixexfileselectdialog": 375, "tixinspect": 375, "tixnotebook": 375, "tk": [68, 247, 254, 371, 372, 384, 439, 459, 461, 462, 463, 468, 471, 472, 473, 475, 476, 478, 479, 480, 482, 483], "tk_aqua": 483, "tk_bindfortravers": [479, 483], "tk_librari": 81, "tk_menubar": [479, 483], "tk_popup": 375, "tkapp": [465, 483], "tkappinit": 81, "tkapptyp": [473, 482, 483], "tkcmd": 469, "tkdoc": [369, 483], "tkfixedfont": 483, "tkfont": 479, "tkinter": [68, 80, 254, 368, 384, 459, 462, 465, 468, 469, 470, 471, 483], "tkinter_protect_loadtk": 483, "tl": 177, "tlabel": 376, "tld": 268, "tlist": 375, "tls": [68, 130, 136, 223, 242, 254, 260, 269, 293, 305, 327, 335, 337, 362, 456, 460, 464, 468, 469, 472, 473, 474, 475, 477, 478, 479, 480, 481, 483], "tls1": 469, "tlsv1": [341, 477, 483], "tlsv1_1": 341, "tlsv1_2": 341, "tlsv1_3": 341, "tlsv1_alert_internal_error": 483, "tlsversion": [341, 483], "tm": [366, 375], "tm_day": 366, "tm_gmtoff": [366, 479, 483], "tm_hour": 366, "tm_isdst": [183, 366], "tm_mday": 366, "tm_min": 366, "tm_mon": 366, "tm_sec": 366, "tm_wday": 366, "tm_yday": 366, "tm_year": [366, 464], "tm_zone": [366, 479, 483], "tmenubutton": 376, "tmp": [51, 76, 96, 102, 109, 169, 223, 245, 271, 332, 360, 432, 456, 462, 465, 466, 467, 468, 469, 475, 481], "tmp1223": 272, "tmp_file": 110, "tmpdir": [360, 483], "tmpdirmixin": 344, "tmpdirnam": [360, 475], "tmpfile": 470, "tmpfs": 483, "tmpnam": 470, "tmptjujjt": 360, "tn": 359, "to": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 74, 75, 77, 78, 80, 87, 89, 91, 92, 93, 95, 96, 99, 103, 105, 106, 107, 108, 110, 112, 114, 115, 117, 118, 120, 122, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 267, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 292, 295, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 385, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 453, 455, 456, 457, 461, 463, 464, 472, 473, 483, 484], "to_addr": [335, 475], "to_angl": 384, "to_byt": [39, 344, 483], "to_eng_str": [186, 466], "to_integr": 186, "to_integral_exact": 186, "to_integral_valu": 186, "to_sci_str": [186, 466], "to_start": 64, "to_thread": [124, 139, 482, 483], "toaddr": [84, 102, 268, 269, 335], "toaiff": 468, "toascii": 158, "tobi": [462, 483], "tobia": 462, "tobuf": 358, "tobyt": [121, 344, 469, 475, 482, 483], "toc": [247, 483], "tocknel": [480, 483], "todat": 190, "today": [72, 94, 109, 167, 183, 211, 288, 295, 340, 390, 419, 435, 451, 463, 465, 466, 468, 481], "toder": [480, 483], "todesc": 190, "toe": 442, "tofil": [121, 190, 470], "tofiled": 190, "toga": 459, "togeth": [61, 63, 68, 72, 92, 93, 95, 99, 101, 102, 103, 106, 120, 133, 158, 160, 176, 193, 202, 207, 208, 218, 225, 234, 235, 243, 244, 247, 259, 261, 267, 268, 271, 293, 332, 341, 344, 353, 369, 374, 384, 386, 388, 395, 399, 412, 414, 426, 428, 430, 449, 466, 474, 475, 476, 482, 483], "toggl": [247, 337, 376, 481, 482, 483], "tohexstr": 344, "toijala": 483, "tok": 431, "tok_nam": [377, 483], "tok_nextc": 483, "tok_regex": 319, "toke": 483, "token": [17, 66, 68, 84, 116, 122, 156, 170, 174, 250, 254, 264, 265, 281, 282, 286, 304, 314, 318, 331, 348, 357, 363, 395, 409, 427, 431, 433, 434, 443, 447, 469, 470, 475, 479, 480, 483], "token_": 326, "token_byt": [318, 326], "token_hex": [326, 483], "token_specif": 319, "token_urlsaf": 326, "tokenerror": [378, 474, 483], "tokeninfo": 483, "toknum": 378, "tokval": 378, "tokyo": 425, "told": [101, 386, 399, 428, 465], "toler": [141, 154, 184, 259, 275, 478, 480, 483], "tolin": 190, "tolist": [121, 344, 464, 469, 475], "tom": [109, 379, 464, 467, 472, 475, 477, 483], "tomato": [94, 340], "toml": [68, 76, 167, 217, 254, 258, 472, 473, 483], "toml_str": 379, "tomldecodeerror": 379, "tomllib": [68, 167, 217, 254, 473, 483], "tommath": 483, "tomono": 141, "ton": 345, "tonam": 223, "toni": [319, 468, 483], "too": [5, 35, 63, 66, 75, 84, 92, 94, 95, 101, 102, 103, 106, 109, 110, 133, 137, 139, 151, 158, 167, 169, 176, 184, 186, 191, 193, 194, 204, 212, 213, 230, 243, 257, 258, 259, 283, 292, 305, 307, 314, 332, 333, 337, 338, 340, 341, 344, 345, 347, 348, 352, 359, 362, 365, 369, 384, 386, 388, 413, 422, 423, 428, 432, 434, 451, 455, 462, 463, 464, 465, 466, 468, 469, 470, 474, 476, 478, 480, 481, 483], "too_ear": [241, 482, 483], "too_many_request": 241, "took": [139, 169, 308, 462, 483], "tool": [31, 33, 51, 68, 72, 79, 85, 87, 92, 93, 95, 99, 101, 102, 106, 108, 109, 112, 137, 155, 156, 169, 176, 193, 194, 204, 223, 225, 226, 230, 231, 251, 254, 255, 261, 262, 299, 307, 315, 321, 331, 333, 352, 378, 380, 382, 384, 386, 388, 399, 413, 421, 422, 428, 436, 456, 457, 459, 461, 462, 463, 464, 465, 467, 468, 470, 471, 473, 475, 476, 477, 478, 479, 482, 484], "tool_id": 353, "toolbox": [463, 464, 465], "toolchain": [468, 479, 483], "toolkit": [109, 369, 439, 462], "toolset": [93, 261, 292, 468, 483], "tooltip": [384, 483], "toordin": 183, "top": [31, 33, 42, 68, 73, 84, 85, 92, 94, 95, 96, 101, 102, 106, 110, 115, 120, 135, 139, 142, 151, 152, 158, 167, 170, 176, 177, 179, 185, 189, 190, 191, 193, 207, 213, 225, 226, 230, 243, 247, 248, 250, 251, 255, 257, 266, 276, 285, 293, 296, 299, 302, 304, 305, 308, 312, 313, 314, 324, 341, 342, 351, 352, 358, 362, 365, 369, 371, 375, 376, 384, 385, 388, 389, 399, 413, 419, 420, 422, 427, 429, 432, 435, 436, 440, 450, 451, 455, 462, 463, 464, 465, 467, 468, 469, 470, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "top_down": 296, "top_el": 411, "top_level_dir": 388, "top_level_url": 110, "top_panel": 179, "top_stat": 382, "topbottom": 384, "topdown": [142, 293], "topic": [63, 68, 72, 74, 76, 84, 92, 102, 106, 155, 193, 292, 307, 313, 337, 462, 465, 471, 483], "toplevel": [73, 160, 186, 225, 369, 375, 376, 413, 483], "topmost": [160, 352, 467, 483], "topolog": [232, 465, 482, 483], "topological_sort": 232, "topologicalsort": [232, 482, 483], "toprettyxml": [411, 465, 481], "topsecret": 167, "tor": 288, "toreadon": [344, 483], "torgb": 468, "torhamo": 483, "toriz": 483, "torn": 483, "tornetta": [473, 483], "torpedo": 475, "torr": [478, 483], "torsten": [475, 476, 483], "tort": 426, "tortious": 426, "tos": [209, 472, 483], "toshio": 477, "tosi": 476, "toss": 465, "tostereo": 141, "tostr": [121, 413, 469, 475, 477, 482, 483], "tostringlist": [413, 475, 477, 483], "total": [33, 34, 35, 59, 73, 78, 85, 89, 95, 102, 117, 133, 134, 139, 160, 183, 186, 190, 191, 193, 196, 205, 211, 225, 226, 230, 259, 261, 272, 293, 308, 319, 332, 337, 340, 341, 344, 345, 358, 366, 376, 382, 386, 388, 395, 428, 430, 435, 444, 455, 469, 473, 474, 475, 476, 477, 478, 479, 481, 483], "total_chang": 340, "total_cost": 181, "total_nfram": [382, 483], "total_ord": [108, 226, 428, 430, 469, 475, 477, 483], "total_result": 284, "total_second": [183, 469], "total_sleep_tim": 134, "total_slept_for": 134, "total_tim": 96, "total_vot": 446, "totals": 107, "toth": 483, "totient": 261, "totientfunct": 261, "tottim": 308, "touch": [5, 68, 85, 177, 247, 296, 297, 429, 468, 481, 483], "touchlin": 177, "touchwin": 177, "tough": 85, "tounicod": [85, 121, 158], "tour": [95, 464, 465], "toward": [85, 146, 186, 193, 196, 205, 218, 221, 222, 225, 267, 275, 344, 352, 364, 366, 384, 428, 463, 465, 467, 468, 477, 482, 483], "tower": [221, 384, 468, 470, 483], "townshend": 476, "toxml": [411, 412, 462, 465, 481], "toy": [75, 299], "tp": [50, 68, 337, 362, 384, 386, 483], "tp_": 75, "tp_alloc": [61, 63, 75, 76, 100, 483], "tp_as_async": [63, 75, 478], "tp_as_buff": [63, 75, 482, 483], "tp_as_map": [63, 75], "tp_as_numb": [47, 63, 75, 482, 483], "tp_as_sequ": [63, 75], "tp_base": [63, 75, 76, 483], "tp_basics": [3, 28, 61, 63, 75, 76, 482, 483], "tp_cach": [61, 63, 75], "tp_call": [2, 23, 63, 68, 75, 474, 483], "tp_clear": [28, 45, 63, 75, 76, 100, 483], "tp_compar": [63, 75], "tp_dealloc": [3, 28, 61, 63, 67, 68, 75, 76, 473, 481, 483], "tp_del": [63, 75, 227], "tp_descr_get": [63, 75], "tp_descr_set": [63, 75, 483], "tp_dict": [61, 63, 75, 468, 483], "tp_dictoffset": [58, 61, 63, 75, 474, 483], "tp_doc": [61, 63, 75, 76, 472, 483], "tp_final": [63, 75, 478, 481, 483], "tp_flag": [28, 61, 63, 75, 76, 100, 191, 468, 482, 483], "tp_free": [63, 68, 75, 76], "tp_getattr": [63, 75], "tp_getattro": [49, 63, 75, 483], "tp_getset": [58, 63, 75, 76], "tp_hash": [30, 49, 63, 75, 468], "tp_init": [10, 61, 63, 75, 76, 474, 483], "tp_is_gc": [63, 75], "tp_items": [3, 28, 61, 63, 75, 76], "tp_iter": [63, 75, 344, 464], "tp_iternext": [63, 75, 344, 464, 483], "tp_member": [58, 63, 75, 76, 473, 483], "tp_method": [63, 75, 76], "tp_mro": [61, 63, 75, 483], "tp_name": [45, 61, 63, 75, 76, 483], "tp_new": [10, 61, 63, 75, 76, 100, 474, 483], "tp_print": [63, 482], "tp_repr": [23, 63, 75], "tp_reserv": [63, 75, 478], "tp_richcmp": 463, "tp_richcompar": [63, 75, 483], "tp_setattr": [63, 75], "tp_setattro": [49, 63, 75], "tp_str": [63, 75], "tp_subclass": [61, 63, 75, 474, 483], "tp_travers": [28, 61, 63, 68, 75, 76, 227, 473, 482, 483], "tp_vectorcal": [61, 63, 75, 483], "tp_vectorcall_offset": [10, 58, 61, 63, 75, 483], "tp_version_tag": [63, 75, 483], "tp_watch": [63, 75], "tp_weaklist": [61, 63, 75, 474], "tp_weaklistoffset": [58, 61, 63, 75, 474, 482, 483], "tparm": 177, "tpip": 95, "tput": 177, "tr": [110, 177, 240, 301, 314, 395, 411, 413, 426, 483], "trac": 468, "trace": [32, 34, 35, 42, 63, 68, 73, 98, 101, 104, 115, 144, 156, 157, 171, 176, 185, 191, 214, 226, 241, 248, 254, 255, 257, 293, 297, 340, 352, 362, 365, 381, 384, 426, 428, 436, 455, 456, 463, 464, 465, 469, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "trace_add": [479, 483], "trace_callback": 340, "trace_dispatch": 144, "trace_info": [479, 483], "trace_remov": [479, 483], "trace_vari": [479, 483], "trace_vdelet": [479, 483], "trace_vinfo": [479, 483], "traceabl": 483, "traceback": [23, 34, 42, 66, 68, 73, 76, 79, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 109, 114, 120, 125, 139, 140, 142, 151, 157, 160, 163, 167, 169, 176, 177, 185, 186, 188, 191, 193, 211, 213, 225, 247, 254, 255, 259, 265, 267, 268, 269, 283, 284, 296, 297, 299, 311, 315, 319, 338, 340, 344, 345, 347, 348, 350, 352, 365, 367, 384, 385, 387, 388, 389, 390, 407, 427, 429, 430, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 480, 481, 482, 483], "traceback_limit": [382, 407], "tracebackexcept": [68, 315, 473, 478, 483], "tracebacklimit": [352, 483], "tracebackobj": 436, "tracebackobject": 466, "tracebacktyp": [267, 381, 385, 428, 480, 483], "tracefunc": 352, "tracemalloc": [32, 34, 68, 185, 188, 254, 362, 426, 455, 483], "tracer": [380, 384, 468, 483], "tracing_poss": 483, "track": [23, 28, 42, 63, 85, 94, 96, 100, 101, 106, 151, 158, 167, 169, 181, 186, 193, 227, 269, 283, 292, 293, 299, 319, 328, 352, 365, 366, 369, 371, 380, 388, 395, 410, 426, 462, 463, 466, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "track_entry_and_exit": [169, 475], "trackcal": 380, "tracker": [1, 68, 96, 283, 362, 467, 469, 483], "tractabl": 84, "trad": 483, "trade": [216, 292, 344, 426], "trademark": 426, "tradeoff": [42, 483], "tradit": [63, 73, 76, 93, 100, 173, 266, 271, 275, 292, 293, 299, 308, 355, 359, 362, 427, 431, 432, 456, 461, 465, 468, 475, 480, 483], "traffic": [208, 337, 341, 464, 475, 483], "trail": [5, 33, 34, 39, 64, 78, 92, 95, 106, 143, 146, 157, 158, 159, 167, 177, 186, 190, 196, 205, 208, 221, 225, 228, 247, 271, 284, 314, 337, 341, 344, 345, 348, 356, 366, 369, 381, 395, 410, 427, 428, 430, 431, 435, 436, 442, 451, 455, 462, 466, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "trailer": [101, 293, 424, 431, 483], "trailneg": 186, "trampolin": [34, 352, 474, 483], "tran": 467, "transact": [68, 95, 242, 243, 281, 298, 318, 365, 465, 467, 468, 474, 475, 478, 479, 483], "transcod": [158, 475], "transcript": 193, "transfer": [33, 72, 73, 92, 110, 136, 143, 169, 191, 195, 196, 197, 198, 201, 202, 203, 206, 207, 208, 223, 235, 241, 242, 244, 271, 276, 283, 288, 293, 299, 335, 347, 395, 397, 419, 426, 430, 432, 468, 469, 475, 476, 479, 481, 483], "transfer_encod": 201, "transfercmd": 223, "transform": [64, 68, 87, 93, 94, 95, 102, 108, 109, 112, 122, 139, 145, 167, 183, 186, 193, 196, 197, 201, 205, 208, 213, 225, 226, 255, 266, 267, 271, 299, 344, 378, 384, 385, 386, 413, 426, 427, 428, 430, 462, 463, 468, 470, 477, 478, 480, 483], "transient": [247, 268, 340, 483], "transient_internet": 362, "transientresourc": 468, "transit": [94, 99, 100, 110, 183, 226, 268, 330, 338, 395, 425, 430, 464, 466, 467, 469, 476, 483], "translat": [64, 68, 73, 106, 109, 112, 158, 176, 177, 187, 212, 213, 220, 222, 225, 245, 246, 250, 258, 262, 282, 293, 333, 337, 344, 348, 387, 413, 417, 419, 426, 427, 428, 462, 465, 466, 468, 469, 470, 471, 473, 475, 478, 480, 481, 483], "transliter": 337, "transmiss": [109, 178, 208, 269], "transmit": [110, 133, 141, 242, 288, 335, 337, 361, 419, 466, 481], "transpar": [109, 120, 149, 158, 176, 177, 191, 202, 203, 218, 241, 247, 258, 270, 299, 358, 376, 384, 461, 463, 465, 466, 476, 477, 479, 480, 483], "transparency_get": 481, "transparency_set": 481, "transport": [68, 123, 126, 129, 130, 136, 137, 170, 194, 201, 206, 212, 335, 341, 418, 419, 464, 478, 479, 480, 483], "transportsocket": [126, 483], "transpos": [225, 261, 442, 466], "transposed_row": 442, "trap": [169, 186, 464, 466, 476, 483], "trash": [63, 271, 483], "trash_delete_nest": 483, "trashcan": [462, 473, 482, 483], "traur": 464, "traut": [472, 473, 474, 483], "travel": 384, "travers": [28, 31, 45, 63, 76, 95, 100, 112, 122, 163, 184, 196, 205, 213, 250, 252, 253, 267, 293, 302, 376, 388, 412, 413, 422, 432, 436, 462, 464, 465, 467, 468, 469, 473, 474, 478, 481, 482, 483], "traversableread": 483, "traversableresourc": [250, 253, 474, 483], "traverseproc": [28, 45, 57, 63, 75, 76], "travi": [467, 468, 469, 483], "treat": [56, 58, 59, 61, 63, 64, 66, 68, 84, 94, 95, 99, 100, 106, 120, 139, 141, 158, 167, 177, 181, 183, 186, 190, 193, 194, 203, 205, 216, 221, 226, 243, 245, 259, 261, 267, 268, 271, 275, 292, 319, 331, 335, 340, 344, 345, 348, 353, 358, 362, 364, 369, 376, 386, 388, 394, 395, 400, 412, 413, 427, 428, 429, 430, 435, 436, 461, 462, 464, 467, 468, 469, 470, 476, 479, 481, 482, 483], "treatment": [42, 49, 102, 194, 283, 394, 462, 470], "tree": [16, 33, 34, 63, 68, 78, 84, 85, 95, 112, 151, 163, 174, 190, 194, 196, 204, 205, 207, 216, 247, 254, 264, 273, 293, 311, 312, 332, 342, 352, 357, 369, 375, 376, 377, 384, 399, 410, 411, 412, 428, 431, 452, 455, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 478, 479, 481, 482, 483], "treebuild": [68, 273, 475, 481, 483], "treesync": 483, "treeview": [68, 368, 481, 483], "treeviewclos": 376, "treeviewopen": 376, "treeviewselect": 376, "tremend": 84, "trent": [462, 465, 467, 477], "trepan3k": 85, "trevino": 476, "trevor": 466, "tri": [33, 34, 35, 42, 45, 49, 63, 68, 71, 73, 75, 76, 77, 78, 79, 84, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 120, 122, 126, 133, 135, 138, 139, 140, 141, 146, 149, 151, 159, 160, 166, 167, 175, 176, 177, 183, 186, 190, 191, 193, 200, 203, 209, 212, 213, 225, 226, 228, 230, 245, 247, 250, 255, 258, 261, 262, 266, 267, 268, 269, 271, 276, 279, 282, 283, 292, 293, 295, 297, 299, 302, 305, 308, 313, 314, 315, 319, 320, 322, 323, 330, 331, 332, 333, 335, 337, 340, 341, 348, 352, 358, 359, 361, 362, 365, 367, 369, 375, 381, 384, 386, 395, 399, 400, 402, 403, 407, 408, 413, 419, 420, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 441, 443, 446, 449, 455, 461, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "triad": 474, "trial": [193, 318, 465], "triangl": [275, 384], "triangular": [318, 468], "tricenarian": 343, "trick": [31, 85, 176, 225, 297, 340, 352, 386, 390, 440, 464], "tricki": [63, 85, 94, 157, 292, 369, 462, 463, 470], "trickier": [85, 292], "trifl": 355, "trig": 483, "trigger": [22, 33, 34, 42, 63, 68, 76, 93, 95, 139, 169, 177, 186, 189, 196, 205, 213, 226, 250, 255, 283, 292, 293, 333, 334, 340, 344, 352, 353, 369, 371, 388, 394, 400, 413, 419, 428, 455, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483], "trigonometr": [68, 290, 466], "trio": 483, "trip": [102, 149, 243, 378, 468, 470, 471, 473, 483], "tripathi": [478, 483], "tripl": [79, 87, 106, 109, 177, 190, 288, 293, 319, 328, 344, 364, 384, 427, 428, 435, 474, 483], "triplet": [474, 483], "tristan": 483, "tristiqu": 149, "trivia": 467, "trivial": [63, 68, 72, 73, 75, 84, 95, 103, 137, 151, 194, 200, 208, 234, 283, 299, 319, 352, 465, 476, 477, 483], "trivial_dealloc": 75, "trivialobject": 75, "trivialtyp": 75, "triy": 483, "troeger": 483, "trojan": [468, 469], "trondheim": 442, "troubl": [72, 99, 110, 461, 466], "trouv": 109, "trove": 465, "troxler": [474, 483], "trsock": [126, 483], "tru64": 470, "true": [5, 6, 7, 9, 11, 13, 15, 17, 20, 22, 23, 25, 27, 33, 34, 35, 37, 38, 39, 43, 44, 45, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 73, 76, 78, 84, 85, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 107, 108, 109, 112, 114, 115, 116, 120, 122, 125, 126, 129, 130, 132, 133, 134, 135, 136, 138, 139, 143, 144, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 163, 166, 167, 168, 169, 170, 173, 175, 176, 177, 179, 181, 183, 186, 188, 189, 190, 191, 193, 196, 200, 201, 203, 204, 205, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 225, 226, 227, 228, 230, 231, 232, 235, 236, 238, 240, 241, 242, 243, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271, 275, 276, 278, 282, 283, 284, 288, 291, 292, 293, 294, 295, 296, 297, 299, 301, 303, 304, 307, 308, 311, 312, 314, 316, 317, 319, 320, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 351, 352, 355, 358, 360, 362, 364, 365, 366, 369, 373, 376, 377, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 399, 400, 402, 403, 405, 407, 410, 411, 412, 413, 415, 417, 419, 420, 421, 422, 423, 425, 427, 428, 430, 431, 435, 436, 440, 441, 442, 443, 444, 446, 448, 449, 450, 452, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "true_v": 467, "true_valu": 467, "truediv": 291, "truli": [33, 73, 84, 85, 100, 115, 139, 181, 271, 364, 395, 469, 470, 483], "trunc": [275, 289, 344, 428, 468, 483], "truncat": [5, 59, 64, 84, 96, 141, 142, 149, 177, 183, 186, 225, 234, 248, 258, 261, 270, 293, 320, 337, 340, 344, 347, 360, 362, 364, 381, 382, 397, 422, 428, 430, 446, 462, 464, 468, 469, 470, 475, 476, 477, 478, 480, 483], "trunk": [467, 468], "trust": [151, 268, 283, 299, 302, 305, 341, 348, 358, 394, 460, 461, 468, 469, 477, 479, 480, 481, 482, 483], "trust_server_pasv_ipv4_address": [479, 480, 481, 482, 483], "trusti": 480, "truth": [5, 95, 176, 225, 291, 344, 347, 413, 428, 430, 465, 474, 483], "try1_stmt": 427, "try2_stmt": 427, "try3_stmt": 427, "try_stmt": [427, 431], "trystar": 122, "ts": [122, 177, 232, 384, 386, 427, 467, 474, 483], "ts2": 232, "tsan": 483, "tsander": 483, "tsc": 466, "tshepang": 89, "tsl": 341, "tsl1": 341, "tss": [68, 480, 483], "tstate": [33, 473, 474, 482, 483], "tstate_curr": 483, "tstate_p": 33, "tsufeki": 483, "tt": 183, "tti": [68, 177, 229, 254, 258, 293, 391, 437, 438, 448, 455, 468, 483], "ttk": [68, 254, 368, 369, 375, 471, 479, 480, 481, 483], "ttk_intro": 469, "ttkstyle": 376, "tts": 102, "ttshandler": 102, "ttynam": [293, 483], "ttyname_r": 483, "ttys": 468, "ttys0": 333, "tu": [150, 465], "tucson": 95, "tue": [150, 183], "tuesday": [94, 150, 183, 211, 269, 451], "tuininga": 483, "tunabl": [235, 293, 475], "tune": [34, 226, 243, 292, 322, 341, 462, 465, 474, 483], "tunnel": [242, 475, 483], "tuoma": 483, "tup": [307, 384, 386], "tupl": [3, 5, 10, 14, 16, 23, 27, 35, 38, 42, 49, 54, 55, 58, 59, 61, 62, 63, 66, 68, 72, 73, 75, 76, 79, 87, 94, 95, 98, 101, 102, 106, 108, 110, 112, 113, 115, 116, 117, 120, 121, 122, 133, 134, 137, 141, 144, 147, 150, 152, 155, 158, 166, 170, 176, 177, 181, 182, 183, 184, 186, 187, 189, 190, 191, 193, 196, 203, 205, 208, 209, 213, 221, 223, 225, 226, 227, 232, 233, 236, 242, 243, 244, 245, 248, 250, 254, 255, 258, 259, 261, 262, 266, 267, 269, 271, 272, 274, 276, 279, 281, 283, 286, 288, 289, 291, 292, 293, 295, 299, 303, 304, 305, 307, 308, 310, 314, 316, 318, 319, 322, 325, 328, 329, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 345, 347, 348, 349, 351, 355, 359, 360, 361, 362, 365, 366, 369, 376, 378, 381, 382, 384, 385, 388, 389, 394, 395, 396, 398, 400, 401, 402, 405, 412, 413, 415, 416, 419, 420, 422, 427, 428, 429, 430, 431, 432, 436, 440, 441, 443, 445, 446, 450, 451, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "tuple2": 300, "tuple_factori": 181, "tuple_kind": 431, "tuple_param": 112, "tuppl": 291, "turn": [5, 23, 33, 34, 58, 63, 68, 73, 85, 89, 92, 93, 95, 101, 106, 109, 110, 112, 120, 128, 155, 158, 167, 176, 177, 190, 193, 194, 208, 209, 225, 243, 245, 247, 255, 266, 267, 268, 283, 292, 298, 301, 311, 315, 316, 320, 328, 333, 335, 337, 361, 362, 365, 369, 384, 388, 395, 400, 420, 427, 432, 434, 435, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 479, 483], "turn_r": 369, "turnbul": [473, 483], "turner": [474, 483], "turtl": [68, 155, 222, 247, 254, 369, 468, 470, 473, 474, 475, 483], "turtle_docstringdict": 384, "turtle_docstringdict_german": 384, "turtle_docstringdict_italian": 384, "turtledemo": [68, 156, 222, 247, 483], "turtlegraph": 384, "turtlegraphicserror": 384, "turtles": 384, "turtlescreen": [68, 222], "turtleshap": 384, "turtleshel": 155, "tusk": 481, "tutor": 95, "tutori": [63, 68, 74, 92, 102, 105, 110, 118, 120, 162, 177, 193, 225, 226, 247, 268, 269, 290, 298, 337, 344, 369, 384, 413, 427, 434, 453, 464, 466, 467, 468, 475, 483], "tutt": 462, "tuur": 483, "tvrtkovi": 483, "tw": [1, 158], "tweak": [102, 292, 463, 466, 479, 483], "twelv": [177, 376], "twenti": 93, "twentysix": 211, "twice": [33, 34, 77, 95, 102, 109, 146, 163, 167, 183, 214, 255, 275, 319, 340, 378, 400, 422, 455, 462, 464, 465, 466, 468, 469, 479, 481, 483], "twin": 462, "twinsun": 183, "twist": [84, 390, 426, 483], "twister": [68, 318, 465], "twisteroid": 481, "twisti": 92, "twix": 244, "two": [5, 7, 9, 14, 20, 23, 25, 28, 31, 33, 34, 37, 41, 42, 45, 47, 58, 63, 64, 67, 68, 72, 73, 75, 76, 77, 84, 85, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 132, 133, 139, 141, 144, 146, 151, 155, 157, 158, 159, 160, 163, 167, 173, 175, 176, 177, 178, 181, 183, 186, 189, 190, 191, 193, 194, 195, 196, 200, 202, 207, 208, 209, 211, 213, 216, 218, 221, 225, 226, 228, 230, 235, 243, 245, 247, 248, 249, 250, 255, 258, 259, 260, 261, 266, 267, 268, 271, 275, 276, 278, 283, 284, 288, 289, 292, 293, 295, 297, 299, 301, 305, 308, 312, 314, 318, 319, 322, 324, 325, 330, 332, 333, 334, 336, 337, 338, 340, 341, 342, 344, 345, 346, 347, 352, 355, 358, 361, 362, 364, 365, 366, 375, 376, 378, 382, 384, 386, 387, 388, 389, 390, 394, 399, 400, 405, 407, 408, 410, 413, 416, 421, 422, 425, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 449, 451, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "two_canvas": 384, "twoplac": 186, "twosh": 167, "tx_addr": 337, "txt": [34, 35, 68, 78, 95, 102, 109, 120, 160, 166, 169, 188, 193, 208, 218, 220, 225, 230, 231, 234, 235, 243, 247, 251, 253, 254, 256, 258, 278, 288, 292, 293, 296, 299, 332, 344, 348, 352, 358, 369, 387, 392, 399, 413, 421, 422, 435, 440, 443, 451, 452, 453, 456, 461, 462, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "tycho": 483, "tyler": [479, 483], "tymoteusz": [472, 483], "typ": [197, 248, 386, 474, 483], "type": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 53, 54, 55, 56, 59, 60, 62, 67, 68, 73, 74, 77, 79, 80, 84, 85, 86, 87, 88, 89, 92, 93, 96, 99, 101, 102, 103, 110, 112, 115, 117, 118, 121, 123, 126, 139, 142, 144, 145, 150, 151, 152, 153, 155, 158, 160, 161, 167, 168, 169, 172, 173, 177, 178, 182, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 216, 221, 223, 225, 226, 227, 230, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 261, 262, 264, 266, 267, 268, 269, 270, 272, 273, 275, 276, 278, 279, 281, 283, 284, 290, 293, 296, 297, 298, 304, 307, 308, 313, 314, 315, 316, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 336, 337, 338, 341, 342, 343, 345, 347, 348, 349, 351, 352, 358, 362, 363, 365, 366, 368, 373, 376, 377, 378, 381, 382, 384, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 404, 406, 408, 411, 412, 413, 415, 416, 419, 420, 422, 425, 426, 429, 430, 431, 432, 433, 435, 439, 440, 441, 442, 443, 448, 449, 450, 451, 455, 456, 461, 462, 463, 469, 470, 471, 475, 483, 484], "type1": 386, "type2": [225, 386], "type_": 384, "type_alia": 431, "type_check": [88, 250, 292, 386, 479, 483], "type_check_on": [386, 483], "type_com": [122, 377, 431, 481, 483], "type_express": 431, "type_getattro": [93, 483], "type_ignor": [122, 377], "type_int64": [477, 483], "type_new": [63, 93, 483], "type_param": [122, 386, 427, 431, 436, 483], "type_param_bound": 431, "type_param_seq": 431, "type_param_ti": 431, "type_params_of_bag": 427, "type_params_of_func": 427, "type_params_of_listorset": 427, "type_stmt": 436, "type_tag": 299, "typea": 386, "typeahead": 177, "typealia": [68, 122, 386, 483], "typealiastyp": [191, 386, 427, 436, 474, 483], "typeb": 386, "typecheck": [176, 386, 483], "typecod": [121, 142, 283, 385, 470, 483], "typecode_or_typ": 283, "typed_act": 292, "typed_ast": 483, "typed_subpart_iter": 204, "typeddict": [68, 385, 386, 472, 481, 483], "typedef": [10, 11, 13, 15, 22, 27, 28, 32, 33, 50, 58, 59, 61, 64, 68, 75, 76, 483], "typedesc": 176, "typeerror": [5, 9, 22, 23, 39, 41, 47, 48, 49, 54, 55, 58, 59, 61, 63, 64, 67, 73, 75, 76, 85, 89, 93, 94, 95, 99, 103, 109, 110, 120, 121, 122, 129, 143, 167, 168, 169, 172, 176, 181, 183, 184, 186, 193, 196, 197, 198, 199, 205, 206, 211, 213, 225, 233, 250, 255, 258, 259, 262, 268, 274, 275, 278, 291, 292, 293, 296, 304, 318, 344, 352, 366, 386, 388, 389, 394, 398, 402, 411, 413, 419, 422, 427, 428, 430, 436, 441, 442, 443, 449, 450, 451, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "typeform": 483, "typeguard": [386, 472, 483], "typeid": [283, 481], "typeignor": [122, 483], "typekey": 197, "typemap": [86, 269], "typenam": [160, 307, 340, 468, 483], "typeobj": [3, 28, 100, 388], "typeobject": [5, 93, 464, 483], "typeof": 7, "types_map": [276, 468, 483], "types_map_inv": 276, "typesaf": 386, "typescript": 309, "typesh": 483, "typetyp": 279, "typevar": [122, 191, 344, 351, 385, 386, 427, 473, 474, 483], "typevartupl": [122, 191, 344, 386, 427, 431, 473, 474, 483], "typevarwithbound": 427, "typevarwithconstraint": 427, "typewrit": 212, "typic": [23, 33, 34, 45, 49, 58, 61, 63, 73, 77, 85, 93, 94, 100, 101, 102, 103, 110, 120, 139, 149, 151, 158, 167, 173, 186, 190, 193, 196, 203, 205, 218, 225, 226, 228, 230, 245, 250, 251, 252, 253, 255, 266, 267, 268, 269, 271, 275, 276, 281, 283, 292, 293, 297, 299, 307, 308, 320, 324, 332, 334, 338, 341, 344, 347, 348, 352, 355, 358, 359, 365, 366, 369, 371, 376, 384, 385, 386, 388, 395, 400, 405, 410, 411, 413, 414, 415, 416, 421, 423, 428, 430, 432, 455, 461, 465, 466, 469, 470, 474, 475, 477, 478, 480, 481, 483], "typifi": 268, "typing_extens": 386, "typo": [95, 151, 386, 389, 430, 464, 483], "typographi": 319, "tz": [183, 362, 366, 425, 474, 483], "tz1": 183, "tz_offset": 102, "tzdata": [183, 425, 482, 483], "tzfile": 366, "tzinfo": [20, 68, 182, 209, 379, 425, 465, 472, 473, 475, 476, 479, 480, 482, 483], "tzinfo_exampl": 183, "tzname": [20, 183, 366, 425, 479, 482, 483], "tzoffset": 483, "tzpars": 467, "tzpath": [425, 456, 483], "tzpathtest": 483, "tzset": [366, 483], "tzvf": 332, "u0": [183, 479], "u00000394": 109, "u00008000": 109, "u0010ffff": 476, "u0043": 430, "u00c7": 430, "u0327": 430, "u0394": 109, "u0660": [387, 462], "u07b4": 109, "u0e55": 109, "u0e57": 109, "u1176": 483, "u11a7": 483, "u11c3": 483, "u1234": [109, 158, 262], "u16": 158, "u2000ab": 462, "u2028": [344, 483], "u2029": [344, 483], "u20ac": [109, 470, 478], "u21ef": 468, "u2603": 102, "u2641": 121, "u266c": 158, "u2713": 386, "u3000": 468, "u3002": 476, "u304": 468, "u3054": 468, "u305f": 468, "u307": 468, "u3080": 468, "u3081": 468, "u31ef": 468, "u32": 158, "u3244": 468, "u4000": 465, "u4001abc": 465, "u4500": 109, "u4500abc": 109, "u4eba": 476, "u52ff": 476, "u65bc": 476, "u65bd": 476, "u7": 158, "u751f": 468, "u8": 158, "u_": 71, "u_expr": 430, "ua000": 109, "ua000abcd": 109, "uac": 483, "uadd": [122, 431], "uall": [362, 465], "uapi": 477, "uax": 435, "ub": 336, "ubsan": [456, 483], "ubuntu": [96, 456, 473, 480, 483], "ucarp": 223, "ucd": [387, 435, 476, 477, 483], "ucd_3_2_0": [387, 467], "ucnhash_capi": [469, 472, 483], "ucrt": 483, "ucrtbas": [461, 483], "ucs": [5, 352, 464, 476], "ucs1": [64, 483], "ucs2": [64, 483], "ucs4": [64, 464, 483], "ud": 468, "udata": 328, "udbff": 476, "udf": [223, 483], "udfff": 476, "udfwinfunc": 340, "udp": [68, 101, 126, 130, 269, 337, 338, 362, 469, 473, 479, 480, 481, 482, 483], "udplit": 483, "udplite_recv_cscov": [337, 483], "udplite_send_cscov": [337, 483], "udpserv": [68, 256], "ue000": 109, "uf_append": [293, 342, 468], "uf_compress": [293, 342], "uf_hidden": [293, 342], "uf_immut": [293, 342, 468], "uf_nodump": [293, 342], "uf_nounlink": [293, 342], "uf_opaqu": [293, 342], "ufeff": 64, "ufeffunicod": 102, "uff10": 186, "uff19": 186, "ufff": 64, "ufffdabc": 109, "ufs": 450, "ugli": [79, 114, 190, 369, 462, 465], "uhc": 158, "ui": [96, 102, 407, 461, 462, 483], "uid": [126, 142, 151, 245, 248, 293, 296, 304, 305, 310, 322, 332, 342, 358, 468, 469, 476, 478, 481, 483], "uid_t": 483, "uidl": 305, "uint": 176, "uint64_t": 33, "uint_max": 483, "uintmax_t": 64, "uintptr_t": 42, "uit": 297, "uitext": 281, "uiuc": 395, "uji": 158, "uk": [110, 166, 243, 344, 366, 469, 483], "ukasz": [98, 288, 475, 477, 478, 479, 480, 481, 482, 483], "ukrainian": [477, 480], "ul": [336, 411, 464], "ulaw": [117, 336, 349], "ulaw2lin": 141, "ulf": 85, "uli": 177, "ullamcorp": 149, "ullong_max": 39, "ulong_max": [18, 39], "ulp": [275, 318, 352, 468, 482, 483], "ulrich": 483, "ultim": [58, 193, 225, 235, 292, 352, 428, 430, 432, 436, 464, 466, 483], "ultra": 483, "ultrasound": 295, "ultric": 149, "ulx": 177, "umask": [293, 296, 348, 362, 480, 483], "umber": 387, "umer": 483, "umlaut": 266, "ump": 297, "un": [88, 200, 203, 255, 288, 436, 449, 477, 483], "una": 467, "unabl": [92, 95, 96, 101, 102, 110, 255, 267, 271, 293, 328, 340, 348, 352, 364, 365, 443, 461, 467, 483], "unaccept": [226, 299, 337, 413, 436], "unaffect": [186, 332, 366, 428, 436, 455, 465, 468, 479, 483], "unalia": 297, "unalign": 483, "unalt": [27, 483], "unam": [293, 303, 352, 355, 358, 475, 476, 483], "unambigu": [7, 120, 183, 268, 308, 335, 428, 468, 475], "uname_result": 483, "unannot": 472, "unannounc": 255, "unarchiv": 483, "unari": [63, 68, 122, 186, 191, 428, 433, 435, 476], "unary_invert": 191, "unary_neg": 191, "unary_not": 191, "unary_posit": 483, "unaryfunc": [57, 63], "unaryop": 122, "unassign": [33, 93, 346, 483], "unattend": [461, 483], "unauthent": [314, 411, 412, 413, 414, 419, 420, 483], "unauthor": [110, 241], "unavail": [58, 84, 110, 193, 255, 270, 283, 293, 332, 386, 428, 483], "unavailable_for_legal_reason": [241, 483], "unavoid": [59, 95, 103, 183, 466, 469, 471], "unawar": 466, "unbalanc": 483, "unbias": 343, "unbind": [429, 483], "unblock": [134, 138, 283, 333, 483], "unbound": [10, 63, 68, 102, 115, 186, 187, 191, 225, 226, 255, 268, 362, 365, 384, 385, 428, 429, 432, 436, 464, 466, 470, 472, 478, 480, 483], "unboundlocalerror": [23, 191, 213, 429, 450, 462, 483], "unbox": 483, "unbrac": 345, "unbreak": 483, "unbuff": [33, 258, 348, 352, 455, 483], "unc": [231, 293, 294, 296, 422, 483], "uncach": [160, 293, 475, 483], "uncached_key": 160, "uncal": 483, "uncancel": [139, 473, 483], "uncas": 344, "uncaught": [92, 152, 340, 352, 365, 430, 463, 481, 483], "unchain": 483, "unchang": [34, 42, 93, 102, 106, 112, 144, 151, 155, 167, 176, 177, 186, 208, 230, 255, 258, 261, 266, 269, 271, 293, 302, 319, 337, 340, 344, 345, 358, 369, 384, 385, 386, 394, 427, 428, 430, 435, 461, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 479, 480, 483], "uncheck": [163, 432, 455, 480, 483], "unchecked_hash": 311, "unclean": [467, 483], "unclear": [103, 106, 474], "unclos": [188, 247, 340, 475, 479, 483], "uncollect": [227, 475, 483], "uncolor": 247, "uncom": [200, 247, 464, 474], "uncommit": [340, 475], "uncommon": [200, 250, 340, 467, 483], "uncomp_s": 452, "uncompil": 359, "uncompress": [117, 149, 234, 270, 332, 358, 421, 422, 475, 483], "uncondit": [28, 115, 247, 283, 288, 293, 297, 334, 353, 388, 428, 435, 455, 469, 470, 475, 476, 477, 478, 480, 482, 483], "unconnect": [337, 468], "unconstrain": 386, "unconsumed_tail": 424, "uncontrol": 332, "uncontroversi": 410, "uncov": [480, 483], "unctrl": [177, 178], "uncustom": 268, "undecid": 386, "undeclar": 314, "undecod": [59, 109, 158, 196, 293, 475, 483], "undecor": [68, 102, 226, 344], "undefin": [7, 25, 28, 33, 39, 42, 63, 64, 85, 158, 166, 196, 205, 207, 213, 225, 227, 258, 275, 292, 328, 344, 352, 366, 378, 382, 400, 413, 416, 428, 430, 435, 449, 456, 478, 480, 483], "undefinedbehaviorsanit": 456, "undeliver": 133, "undeprec": 483, "under": [5, 7, 13, 23, 33, 34, 42, 43, 45, 54, 58, 61, 66, 68, 74, 84, 85, 92, 93, 95, 101, 102, 103, 106, 120, 132, 133, 135, 149, 151, 153, 155, 158, 161, 169, 176, 177, 183, 190, 193, 196, 199, 203, 208, 212, 213, 215, 216, 225, 226, 230, 234, 235, 242, 247, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 278, 281, 283, 292, 293, 295, 297, 299, 305, 308, 314, 320, 322, 328, 329, 330, 331, 332, 333, 337, 338, 340, 341, 342, 344, 348, 352, 353, 355, 362, 365, 366, 369, 371, 375, 376, 380, 381, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "underalloc": 483, "undercount": 483, "underdevelop": 352, "underestim": [463, 464, 465, 466, 467, 468], "underflow": [42, 186, 188, 456, 479, 483], "undergo": 468, "undergon": 475, "underlin": [92, 177, 372, 376], "underscor": [39, 68, 71, 85, 94, 102, 146, 151, 158, 176, 186, 196, 205, 221, 225, 271, 307, 319, 331, 344, 345, 352, 354, 369, 422, 427, 428, 429, 430, 434, 435, 436, 468, 470, 471, 474, 483], "underscore_numb": [307, 472, 483], "understand": [23, 42, 68, 73, 75, 76, 84, 93, 101, 102, 103, 106, 109, 120, 183, 193, 207, 230, 242, 243, 262, 288, 307, 308, 314, 319, 340, 345, 348, 368, 376, 386, 416, 422, 427, 434, 462, 463, 464, 465, 467, 468, 469, 470, 474, 479, 483], "understood": [72, 151, 243, 268, 283, 293, 297, 331, 344, 397, 421, 426, 428, 483], "underw": [465, 466, 467, 468], "underway": 471, "undesir": [463, 467, 483], "undetect": [73, 271, 365], "undetermin": 293, "undirect": 191, "undisplay": [297, 475, 483], "undistinguish": 465, "undo": [33, 155, 177, 247, 267, 384, 468, 483], "undobuff": 384, "undobufferentri": 384, "undobuffers": 384, "undoc_head": 155, "undocu": [155, 184, 226, 267, 297, 362, 388, 422, 474, 476, 477, 478, 479, 480, 482, 483], "undon": [247, 384], "unelev": 293, "unencod": [45, 109, 158, 465, 470, 475, 483], "unencrypt": [341, 483], "unequ": [186, 344, 428, 430, 466, 467, 470, 476, 483], "unescap": [87, 106, 190, 238, 239, 288, 319, 394, 417, 435, 477, 482, 483], "uneven": 261, "unexcit": 93, "unexist": 483, "unexpect": [28, 101, 102, 170, 193, 205, 208, 230, 250, 267, 288, 319, 322, 333, 335, 337, 341, 343, 362, 388, 395, 400, 422, 427, 428, 430, 435, 440, 443, 461, 464, 469, 472, 474, 476, 478, 480, 481, 482, 483], "unexpectedexcept": 193, "unexpectedsuccess": [96, 388], "unfamiliar": [228, 292, 467, 468], "unfil": [75, 430, 483], "unfinish": [243, 283, 314, 483], "unfix": 483, "unflatten": 261, "unfold": 208, "unformat": [102, 262, 319], "unfortun": [84, 92, 95, 100, 102, 106, 110, 151, 158, 283, 305, 308, 330, 337, 341, 358, 369, 461, 463, 466, 468, 471, 479, 482], "unfreez": [227, 480], "unfrozen": 483, "ungain": 465, "unget_wch": [177, 476, 483], "ungetch": [177, 282], "ungetmous": [177, 483], "ungetwch": 282, "unglow": 384, "unguard": 478, "unhandl": [23, 66, 115, 151, 157, 169, 193, 228, 247, 352, 365, 381, 395, 428, 443, 470, 474, 483], "unhash": [55, 78, 181, 211, 261, 344, 388, 428, 430, 472, 482, 483], "unhelp": [102, 462, 483], "unhexlifi": [100, 146, 483], "unic": [73, 295], "unichr": [462, 464, 467], "unicod": [5, 16, 27, 31, 32, 39, 45, 59, 63, 65, 68, 80, 85, 87, 92, 97, 102, 106, 112, 119, 121, 143, 145, 146, 167, 175, 176, 177, 182, 183, 186, 193, 194, 195, 196, 197, 200, 201, 202, 203, 208, 209, 213, 221, 225, 230, 238, 239, 240, 247, 254, 258, 262, 266, 282, 293, 294, 296, 299, 302, 319, 340, 344, 345, 346, 352, 363, 378, 386, 394, 400, 405, 407, 411, 412, 413, 422, 425, 428, 430, 435, 442, 455, 456, 463, 467, 468, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483, 484], "unicode_char": 282, "unicode_escap": [102, 158], "unicode_id": 483, "unicode_intern": [158, 476, 481, 483], "unicode_liter": [113, 436, 468], "unicodedata": [68, 106, 108, 109, 254, 344, 363, 430, 435, 462, 467, 468, 469, 472, 475, 476, 483], "unicodedecodeerror": [14, 23, 109, 158, 213, 293, 394, 450, 467, 470, 475, 477, 481, 483], "unicodeencodeerror": [14, 23, 45, 71, 109, 158, 213, 352, 394, 450, 473, 475, 481, 483], "unicodeerror": [5, 23, 87, 158, 183, 202, 213, 293, 344, 450, 465, 470], "unicodencodeerror": 483, "unicodeobject": [96, 483], "unicodestr": 121, "unicodetranslateerror": [14, 23, 158, 213, 450, 483], "unicodetype_db": 483, "unicodewarn": [23, 213, 400, 450, 467, 475], "unicurs": 92, "unidata_vers": 387, "unidentifi": 352, "unidirect": [133, 283], "unif": 466, "unifi": [68, 103, 158, 190, 193, 299, 387, 477, 483, 484], "unified_diff": 190, "uniform": [84, 110, 134, 190, 255, 318, 394, 398, 419, 475, 483], "unihan": 469, "unimpl": [230, 243], "unimplementedfilemod": 242, "unimport": 94, "uninform": 483, "uniniti": [9, 33, 35, 42, 73, 85, 299, 456, 483], "uninstal": [214, 281, 382, 453, 461, 477, 483], "unintend": [73, 85, 186, 283, 358, 473, 483], "unintent": [100, 102, 267, 348, 475, 483], "uninterest": [76, 190], "uninterrupt": 333, "union": [62, 68, 88, 118, 160, 161, 225, 226, 252, 254, 333, 342, 346, 385, 386, 426, 428, 465, 466, 468, 469, 472, 473, 474, 478, 482, 483], "union_object": 344, "union_upd": 465, "uniontyp": [226, 344, 385, 473, 483], "uniprocessor": 303, "uniq": [261, 466], "uniqu": [33, 68, 73, 75, 93, 95, 98, 101, 109, 115, 120, 160, 176, 183, 184, 190, 203, 205, 209, 211, 212, 225, 228, 236, 255, 259, 261, 262, 271, 281, 293, 299, 305, 314, 340, 341, 344, 353, 355, 365, 376, 386, 388, 394, 398, 426, 427, 428, 432, 440, 442, 456, 461, 466, 467, 469, 471, 474, 475, 480, 482, 483], "unique_everseen": 261, "unique_justseen": 261, "unique_word": 440, "uniqueaddresshead": 203, "uniquedatehead": 203, "uniquekey": 261, "uniquesingleaddresshead": 203, "uniqueunstructuredhead": 203, "unisol": 33, "unistr": [387, 462], "unit": [5, 64, 73, 85, 87, 94, 95, 99, 101, 102, 109, 114, 178, 183, 187, 193, 225, 226, 275, 308, 325, 337, 341, 344, 345, 362, 366, 367, 369, 376, 384, 388, 426, 428, 429, 463, 468, 474, 476, 478, 481, 482, 483], "unit_pric": 181, "unittest": [68, 78, 84, 112, 156, 187, 254, 362, 382, 400, 451, 465, 471, 482, 483], "unittest2": 469, "unittestgui": 388, "univers": [68, 87, 94, 183, 225, 235, 248, 250, 258, 344, 358, 366, 388, 394, 398, 422, 456, 466, 467, 468, 473, 477, 479, 480, 481, 482, 483, 484], "universal2": [456, 459, 481, 482, 483], "universal_newlin": [126, 137, 348, 466, 480, 483], "universalsdk": [456, 467, 482, 483], "unix": [18, 23, 33, 34, 35, 59, 66, 68, 73, 74, 80, 81, 83, 87, 92, 95, 96, 101, 107, 109, 115, 118, 120, 124, 130, 131, 132, 133, 136, 137, 146, 150, 160, 167, 174, 175, 177, 190, 196, 199, 201, 208, 215, 219, 225, 228, 229, 230, 233, 243, 247, 254, 257, 258, 261, 266, 269, 271, 272, 278, 283, 286, 287, 288, 292, 293, 294, 295, 296, 298, 301, 305, 306, 309, 310, 313, 322, 323, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 348, 350, 352, 354, 355, 358, 360, 361, 362, 365, 366, 369, 375, 383, 388, 403, 407, 421, 422, 435, 438, 439, 446, 448, 453, 454, 455, 456, 458, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 483], "unix_dialect": [175, 475], "unix_shel": [362, 483], "unixccompil": 483, "unixdatagramserv": 338, "unixfrom": [196, 201, 205, 477, 483], "unixi": 470, "unixpwd": 175, "unixstreamserv": [338, 483], "unixwar": 463, "unixxcompil": 483, "unknow": [463, 464], "unknown": [31, 33, 64, 68, 94, 106, 122, 139, 141, 190, 193, 196, 199, 201, 202, 208, 211, 225, 235, 245, 276, 288, 292, 293, 304, 307, 319, 342, 352, 358, 365, 366, 382, 395, 398, 416, 441, 456, 464, 465, 469, 473, 475, 479, 480, 483], "unknown_decl": 240, "unknown_open": 395, "unknownhandl": [68, 110, 256], "unknownprotocol": 242, "unknowntransferencod": 242, "unladen": [452, 475], "unladen10": 475, "unless": [5, 7, 9, 13, 22, 23, 26, 27, 31, 33, 42, 51, 54, 56, 58, 59, 63, 73, 76, 85, 94, 95, 100, 101, 103, 106, 112, 117, 120, 139, 141, 149, 161, 167, 169, 181, 183, 186, 191, 193, 196, 200, 205, 206, 209, 225, 226, 242, 243, 244, 247, 250, 255, 258, 259, 261, 267, 268, 270, 271, 275, 281, 283, 288, 292, 293, 297, 309, 314, 319, 323, 328, 329, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 353, 354, 358, 359, 364, 365, 386, 388, 394, 395, 399, 400, 406, 412, 415, 426, 427, 428, 429, 430, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 479, 480, 481, 482, 483], "unlik": [5, 33, 41, 42, 45, 49, 55, 60, 64, 73, 76, 84, 85, 93, 94, 95, 100, 101, 102, 109, 137, 139, 149, 163, 169, 177, 183, 184, 186, 205, 225, 228, 243, 248, 270, 271, 275, 283, 293, 295, 297, 299, 305, 319, 324, 337, 341, 344, 348, 353, 358, 362, 365, 366, 369, 382, 384, 385, 386, 388, 405, 413, 425, 428, 430, 432, 434, 435, 436, 461, 463, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 482, 483], "unlimit": [61, 137, 151, 202, 203, 208, 235, 247, 283, 320, 322, 344, 348, 365, 428, 435, 483], "unlink": [84, 213, 283, 284, 293, 296, 328, 360, 362, 376, 399, 410, 411, 476, 483], "unlist": 428, "unload": [33, 100, 362, 483], "unloading_modul": 402, "unlock": [115, 138, 215, 271, 282, 283, 305, 362, 365, 428, 467, 483], "unlucki": [466, 483], "unmaintain": [358, 375, 475, 477, 479], "unmanag": 376, "unmap": [64, 376], "unmarsh": [274, 473], "unmarshal": [41, 419, 465, 467, 479, 483], "unmatch": [319, 394, 478, 483], "unmodifi": [5, 7, 115, 208, 209, 307, 344, 365, 394, 417, 483], "unnam": [60, 73, 94, 176, 340, 405, 430, 477, 483], "unnecessari": [45, 73, 85, 101, 120, 133, 271, 283, 284, 288, 344, 352, 382, 386, 394, 410, 436, 463, 464, 466, 469, 474, 478, 481, 483], "unnecessarili": [293, 483], "unneed": [76, 411, 469, 477, 482, 483], "unnnn": 109, "unnorm": [23, 483], "unnormalis": 483, "unnot": 469, "unobserv": 352, "unobtain": 293, "unoffici": [388, 478], "unoptim": 478, "unord": [262, 283, 344, 428], "unown": [283, 483], "unpack": [16, 68, 73, 84, 95, 102, 112, 122, 160, 191, 200, 215, 225, 283, 304, 332, 337, 344, 345, 347, 385, 386, 427, 430, 431, 436, 442, 443, 445, 452, 462, 466, 467, 468, 470, 472, 473, 474, 475, 477, 481, 483], "unpack_arch": [142, 332, 472, 473, 474, 475, 481, 482, 483], "unpack_array": 408, "unpack_byt": 408, "unpack_doubl": 408, "unpack_ex": 191, "unpack_farray": 408, "unpack_float": 408, "unpack_fopaqu": 408, "unpack_from": [225, 347, 467, 483], "unpack_fstr": 408, "unpack_item": 408, "unpack_list": 408, "unpack_opaqu": 408, "unpack_sequ": [191, 483], "unpack_str": 408, "unpack_typ": 408, "unpair": 262, "unparenthes": [430, 482, 483], "unpars": [120, 122, 199, 251, 314, 413, 415, 482, 483], "unparsedentitydecl": 415, "unparsedentitydeclhandl": 314, "unpatch": [422, 483], "unpickl": [68, 76, 94, 102, 183, 267, 269, 283, 284, 298, 300, 425, 465, 468, 469, 471, 483], "unpickled_class": 299, "unpicklingerror": [299, 483], "unpredict": [22, 27, 271, 293, 413, 416, 428, 455, 464], "unprefix": [413, 483], "unprint": 483, "unprivileg": 293, "unprocessable_ent": 241, "unprofil": 456, "unqualifi": [213, 348, 440, 477, 483], "unquicken": 483, "unquot": [196, 205, 209, 303, 394, 395, 483], "unquote_plus": 394, "unquote_to_byt": [394, 483], "unrais": [13, 22, 23, 27, 142, 340, 352, 362, 473, 481, 483], "unraisablehook": [23, 28, 115, 142, 352, 362, 450, 481, 483], "unravel": 477, "unreach": [28, 212, 227, 386, 428, 480, 482, 483], "unread": [184, 299, 395, 471, 478, 483], "unreason": [467, 483], "unrecogn": [9, 64, 89, 120, 228, 414, 422, 435, 474, 478, 479, 483], "unrecognis": [226, 268, 476], "unrecover": [415, 483], "unredirect": 395, "unregist": [126, 128, 140, 158, 214, 293, 328, 329, 332, 353, 369, 472, 482, 483], "unregister_archive_format": 332, "unregister_dialect": [175, 483], "unregister_unpack_format": 332, "unregistr": 329, "unrel": [63, 73, 85, 94, 213, 271, 337, 483], "unrelated_cod": 139, "unreli": [106, 177, 319, 483], "unrepresent": [481, 483], "unreserv": 394, "unresolv": 483, "unrespons": 483, "unrestrict": [33, 59, 426], "unrol": [481, 483], "unround": 186, "unruli": 320, "unsaf": [34, 63, 75, 85, 149, 167, 283, 293, 309, 331, 340, 352, 358, 388, 389, 395, 398, 455, 465, 472, 474, 478, 480, 483], "unsafe_hash": [181, 386, 483], "unsanitari": 483, "unsav": [247, 483], "unscath": 483, "unsearch": 452, "unseek": [234, 401, 422, 475, 477, 478, 483], "unseen": 271, "unselect": [248, 482, 483], "unseri": [299, 475], "unset": [34, 59, 63, 191, 271, 293, 295, 344, 352, 362, 432, 468, 469, 480, 483], "unsetenv": [142, 293, 468, 482, 483], "unshar": [293, 322, 483], "unsign": [4, 5, 7, 9, 18, 25, 31, 33, 34, 35, 39, 42, 51, 58, 61, 63, 64, 75, 121, 141, 146, 176, 293, 295, 299, 337, 344, 347, 349, 408, 410, 411, 424, 452, 464, 465, 467, 472, 476, 480, 483], "unskip": 483, "unsort": [471, 483], "unspecifi": [34, 95, 149, 176, 193, 259, 270, 275, 287, 293, 299, 314, 337, 366, 376, 386], "unsplit": 483, "unsqueez": 483, "unstabl": [13, 28, 75, 112, 186, 474, 481, 483], "unstart": 483, "unstructur": 203, "unstructuredhead": 203, "unsubscrib": [248, 483], "unsubscript": 386, "unsuccess": [33, 483], "unsuit": [167, 413, 463, 469, 483], "unsupport": [33, 34, 68, 89, 110, 115, 120, 167, 183, 193, 225, 230, 258, 283, 284, 295, 299, 304, 337, 341, 348, 365, 386, 394, 395, 405, 422, 432, 443, 461, 462, 466, 468, 475, 479, 482, 483], "unsupported_media_typ": 241, "unsupportedoper": [258, 483], "unt": 297, "untabifi": 247, "untaken": 353, "untermin": [85, 483], "untest": 483, "unthread": 462, "until": [13, 31, 33, 34, 59, 63, 66, 72, 73, 76, 79, 84, 85, 92, 95, 101, 102, 103, 106, 115, 120, 129, 133, 134, 137, 138, 139, 151, 153, 160, 177, 183, 186, 191, 207, 214, 218, 225, 226, 230, 235, 242, 243, 247, 250, 258, 261, 265, 267, 269, 270, 283, 292, 293, 295, 297, 299, 305, 308, 314, 316, 320, 323, 325, 328, 329, 331, 333, 337, 338, 339, 340, 341, 344, 347, 348, 359, 361, 362, 365, 369, 381, 384, 386, 395, 400, 403, 405, 407, 408, 412, 415, 416, 427, 428, 436, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 482, 483], "untitl": 483, "untoken": [378, 483], "untouch": [5, 64, 181, 456, 483], "untouchwin": 177, "untrack": [42, 76, 471, 483], "untrain": 466, "untransl": [225, 258], "untrust": [109, 190, 245, 268, 283, 299, 312, 314, 330, 332, 348, 358, 411, 412, 413, 414, 419, 420, 422, 465, 468, 483], "untyp": 464, "unununium": 449, "unus": [58, 63, 76, 89, 149, 177, 230, 258, 259, 282, 283, 313, 332, 338, 340, 345, 358, 362, 435, 461, 464, 468, 477, 480, 482, 483], "unused_data": [149, 270, 424], "unused_stamp_id": 384, "unusu": [73, 92, 102, 183, 213, 250, 295, 308, 322, 348, 355, 394, 430, 479, 480, 481, 482, 483], "unvarnish": 66, "unverifi": [242, 243, 395], "unvers": 477, "unwant": [33, 85, 358, 480, 483], "unwieldi": 102, "unwind": [33, 75, 104, 135, 169, 255, 353, 428, 483], "unwis": 435, "unwound": [75, 267, 319, 428], "unwrap": [255, 341, 394, 477, 483], "unwrapp": 483, "unwrit": 483, "unwritten": [184, 483], "unzip": [102, 225, 421, 423, 465, 483], "up": [1, 7, 9, 23, 33, 42, 45, 61, 63, 64, 68, 73, 75, 76, 77, 84, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 120, 132, 138, 139, 149, 151, 158, 163, 166, 167, 177, 179, 183, 186, 190, 191, 193, 194, 197, 200, 208, 209, 213, 221, 225, 226, 230, 235, 240, 242, 243, 245, 247, 252, 255, 258, 261, 265, 266, 267, 268, 269, 270, 275, 276, 278, 280, 282, 283, 284, 292, 293, 297, 308, 309, 311, 315, 319, 320, 323, 328, 331, 333, 334, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 369, 374, 375, 376, 381, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 410, 413, 416, 417, 421, 425, 427, 428, 429, 430, 432, 434, 435, 436, 441, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "upadhyay": 480, "upcom": [213, 226, 325, 483], "updat": [22, 33, 34, 42, 45, 59, 63, 68, 75, 76, 84, 85, 92, 93, 95, 102, 109, 117, 120, 133, 135, 160, 161, 169, 177, 179, 183, 189, 191, 193, 196, 205, 207, 213, 225, 226, 235, 236, 237, 244, 247, 248, 250, 253, 255, 258, 261, 265, 271, 278, 281, 283, 288, 292, 293, 299, 302, 315, 324, 330, 337, 340, 344, 348, 355, 358, 366, 369, 376, 380, 384, 385, 389, 394, 395, 407, 413, 421, 428, 432, 436, 440, 455, 461, 462, 463, 464, 465, 466, 467, 468, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "update_abstractmethod": [116, 483], "update_authent": 395, "update_bas": 483, "update_idletask": 483, "update_lines_col": [177, 478, 483], "update_panel": 179, "update_slot": 483, "update_status": 102, "update_vis": 271, "update_wrapp": [88, 93, 226, 255, 467, 477, 483], "updatepath": [33, 468, 469], "updateprocthreadattribut": 348, "upendra": 483, "upfront": 468, "upgrad": [68, 110, 111, 118, 136, 210, 242, 247, 399, 453, 456, 461, 464, 465, 469, 475, 477, 479, 480, 481, 483], "upgrade_dep": 399, "upgrade_depend": [399, 483], "upgrade_requir": 241, "upload": [110, 151, 463, 467, 469, 478, 480, 482, 483], "uploadreleas": 483, "upon": [25, 33, 41, 64, 66, 72, 73, 85, 93, 101, 144, 151, 155, 158, 159, 169, 173, 177, 186, 189, 193, 242, 244, 247, 248, 250, 271, 293, 297, 299, 328, 329, 331, 333, 334, 340, 341, 347, 352, 362, 380, 400, 410, 426, 428, 430, 432, 463, 468, 476, 477, 479, 481, 483], "upper": [64, 85, 92, 94, 95, 101, 102, 106, 122, 146, 148, 151, 160, 177, 190, 248, 283, 319, 337, 338, 340, 341, 344, 345, 375, 384, 388, 428, 430, 431, 436, 465, 475, 481, 483], "upper_bound": [344, 430], "upper_cas": [94, 483], "uppercamelcas": 441, "uppercas": [64, 85, 93, 109, 120, 148, 178, 248, 259, 281, 292, 293, 344, 345, 435, 462, 469, 470, 474, 477, 479, 483], "upperleft": 176, "upperout": 85, "ups": [475, 483], "upstream": [235, 340, 481, 483], "uptim": [366, 480, 483], "upward": [106, 177, 299, 384], "ur": [435, 470, 483], "urandom": [126, 235, 283, 293, 318, 341, 466, 469, 473, 474, 477, 478, 479, 483], "uranus": [94, 343], "urban": [475, 477, 483], "urdu": 158, "urgent": 328, "uri": [68, 102, 110, 242, 243, 296, 298, 314, 341, 384, 394, 395, 407, 410, 413, 415, 416, 418, 419, 472, 474, 476, 477, 483], "url": [68, 85, 136, 142, 143, 150, 151, 166, 167, 223, 241, 242, 243, 245, 247, 251, 254, 256, 269, 276, 313, 326, 344, 362, 393, 396, 398, 399, 403, 407, 413, 416, 417, 419, 420, 426, 432, 462, 465, 466, 467, 468, 469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "url2pathnam": 395, "url_schem": 407, "url_valu": 110, "urlcleanup": [395, 483], "urldefrag": [394, 475], "urlencod": [84, 110, 151, 242, 269, 394, 395, 475, 478, 483], "urlerror": [68, 393, 395, 468, 483], "urlich": 85, "urljoin": [394, 478, 483], "urllib": [68, 84, 97, 112, 136, 142, 151, 166, 169, 223, 226, 241, 242, 243, 254, 256, 269, 293, 307, 309, 382, 389, 399, 451, 462, 465, 467, 468, 470, 483], "urllib2": [112, 395, 466, 468, 469, 470], "urlopen": [84, 110, 166, 169, 226, 243, 307, 393, 394, 395, 451, 467, 468, 469, 475, 476, 477, 478, 483], "urlpars": [394, 399, 468, 469, 470, 475, 479, 483], "urlretriev": [393, 395, 399, 483], "urlsafe_b64decod": 143, "urlsafe_b64encod": 143, "urlsplit": [136, 394, 469, 479, 483], "urlstr": 394, "urlunpars": [394, 483], "urlunsplit": [394, 483], "urn": [394, 398], "urround": 450, "urtubia": 466, "urwid": 92, "urx": 384, "us": [76, 94, 95, 158, 161, 178, 183, 195, 196, 202, 206, 209, 223, 266, 284, 299, 318, 319, 332, 341, 366, 386, 394, 395, 407, 413, 426, 428, 460, 461, 467, 483], "us_dst_rang": 183, "usabl": [39, 54, 56, 59, 63, 64, 76, 85, 99, 151, 158, 176, 177, 209, 225, 245, 250, 259, 268, 276, 283, 293, 337, 341, 344, 348, 410, 428, 430, 432, 464, 465, 466, 467, 474, 475, 479, 480, 483], "usag": [5, 33, 34, 63, 64, 67, 68, 72, 73, 76, 85, 89, 95, 101, 102, 106, 109, 112, 114, 118, 135, 149, 153, 169, 178, 183, 185, 187, 191, 194, 213, 218, 226, 228, 230, 234, 243, 245, 248, 250, 251, 256, 259, 264, 267, 269, 272, 280, 283, 292, 293, 297, 299, 305, 307, 332, 344, 352, 358, 362, 375, 382, 386, 388, 391, 395, 399, 400, 403, 410, 411, 421, 425, 426, 427, 428, 449, 455, 456, 461, 464, 465, 466, 467, 468, 469, 474, 475, 476, 478, 479, 483], "usageexit": [473, 474, 483], "usb": 483, "use": [5, 7, 9, 10, 11, 13, 17, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 36, 39, 41, 42, 43, 45, 46, 49, 50, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 74, 75, 76, 79, 87, 89, 91, 92, 93, 95, 100, 103, 105, 108, 109, 110, 112, 114, 115, 117, 120, 122, 123, 124, 128, 129, 132, 133, 134, 135, 137, 138, 139, 141, 144, 146, 147, 149, 152, 153, 154, 155, 157, 158, 159, 161, 164, 166, 167, 168, 170, 173, 174, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 234, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 284, 285, 287, 288, 289, 290, 292, 293, 295, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 341, 342, 343, 344, 345, 346, 347, 352, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 368, 369, 374, 376, 377, 378, 380, 381, 382, 385, 386, 387, 394, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 442, 443, 446, 449, 453, 455, 456, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 482, 483, 484], "use_builtin_typ": [419, 420, 482], "use_computed_goto": 483, "use_datetim": [419, 467], "use_default_color": [177, 466], "use_default_map": 203, "use_env": 177, "use_environ": [33, 34, 35, 474, 482], "use_errno": [176, 468], "use_frozen_modul": 483, "use_hash_se": [33, 34, 474], "use_last_error": [176, 468], "use_load_test": [388, 474, 478, 483], "use_main_obmalloc": 33, "use_proxi": 241, "use_pyexpat_capi": 483, "use_python": 309, "use_rawinput": 155, "use_stackcheck": [23, 59, 483], "use_symlink": 399, "use_tool_id": 353, "use_trac": [472, 473], "use_xattr": 483, "usec": [367, 478], "usecond": 20, "used_arg": 345, "used_key": 345, "usedforsecur": [235, 327, 483], "useforeigndtd": 314, "usegmt": 209, "useless": [200, 411, 481, 483], "uselton": 483, "usenet": [80, 84, 101], "usenetrc": 288, "user": [13, 23, 28, 33, 34, 39, 42, 58, 61, 63, 64, 66, 68, 70, 72, 73, 74, 76, 79, 84, 85, 86, 92, 93, 94, 99, 100, 101, 102, 106, 109, 110, 111, 118, 120, 133, 135, 139, 142, 144, 151, 155, 157, 158, 159, 160, 161, 163, 167, 169, 173, 177, 179, 181, 183, 185, 186, 189, 193, 200, 210, 212, 213, 216, 223, 226, 228, 229, 230, 233, 235, 242, 243, 245, 248, 250, 251, 254, 255, 257, 258, 266, 267, 269, 271, 272, 281, 283, 288, 292, 293, 294, 295, 296, 297, 299, 305, 311, 312, 315, 319, 320, 322, 328, 329, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 347, 348, 352, 353, 356, 358, 359, 362, 365, 366, 369, 375, 376, 380, 381, 384, 385, 386, 388, 394, 395, 396, 399, 400, 403, 405, 411, 412, 413, 414, 415, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 436, 438, 441, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "user1": [268, 473], "user2": [268, 473], "user32": 176, "user_a": 386, "user_ag": 110, "user_b": 386, "user_bas": [334, 355, 469], "user_cal": 144, "user_class": 386, "user_except": 144, "user_funct": 226, "user_id": 386, "user_lin": 144, "user_n": 400, "user_ptr": 483, "user_request": 475, "user_return": 144, "user_sit": [334, 355], "user_site_directori": [33, 34, 474], "user_str": 98, "userag": 396, "userbas": [355, 475], "usercustom": [68, 315, 354, 438, 477, 483], "userdata": [24, 59], "userdict": [68, 182, 463, 465, 468, 483], "userfil": 151, "userid": [151, 269, 386, 479], "userinfo": [110, 395], "userland": 419, "userlist": [68, 182, 464, 483], "usernam": [102, 110, 151, 173, 200, 203, 223, 229, 248, 269, 293, 294, 305, 335, 394, 395, 475, 476, 478, 483], "userprofil": [294, 481, 483], "userptr": [179, 483], "userqueri": 471, "userspac": [332, 476, 481], "userstr": [68, 182, 462, 478, 482, 483], "userwarn": [23, 213, 229, 362, 400, 450, 483], "usestd3asciirul": 158, "usetk": 369, "using_idl": 384, "uspac": 483, "usr": [33, 35, 79, 84, 89, 95, 96, 98, 102, 109, 151, 167, 176, 200, 230, 231, 272, 292, 294, 296, 303, 319, 326, 334, 344, 348, 352, 355, 360, 366, 369, 382, 395, 421, 438, 448, 453, 455, 456, 459, 460, 461, 463, 465, 467, 472, 475, 477, 478, 483], "ustar": [358, 468, 483], "ustar_format": 358, "ustimezon": 183, "ustr": 462, "usuabl": 483, "usual": [5, 7, 23, 28, 33, 34, 39, 45, 47, 61, 63, 64, 73, 75, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 133, 146, 149, 151, 153, 173, 176, 186, 190, 193, 194, 196, 202, 205, 221, 225, 226, 230, 243, 245, 247, 248, 250, 251, 255, 258, 259, 261, 268, 269, 272, 275, 283, 288, 292, 293, 295, 297, 299, 304, 319, 321, 328, 332, 333, 334, 337, 338, 339, 340, 341, 344, 348, 352, 358, 362, 366, 369, 375, 376, 381, 384, 386, 388, 395, 413, 421, 422, 423, 427, 428, 430, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "usub": [122, 431], "utc": [20, 68, 183, 190, 203, 209, 269, 340, 341, 366, 425, 451, 468, 473, 474, 475, 478, 479, 480, 483], "utc_move_d": 183, "utcformatt": 102, "utcfromtimestamp": [183, 341, 474, 483], "utcnow": [183, 474, 483], "utcoffset": [183, 483], "utctimetupl": [183, 483], "utf": [5, 16, 22, 23, 26, 30, 31, 33, 34, 40, 45, 49, 59, 68, 87, 101, 102, 109, 118, 120, 122, 145, 151, 167, 175, 188, 190, 196, 197, 205, 206, 208, 209, 218, 223, 225, 235, 248, 250, 251, 252, 258, 262, 265, 266, 284, 286, 288, 297, 298, 299, 305, 307, 314, 330, 337, 338, 341, 344, 352, 358, 378, 394, 395, 398, 399, 407, 411, 413, 419, 421, 422, 428, 432, 435, 441, 446, 448, 455, 456, 458, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 481, 482, 483], "utf16": 158, "utf32": 158, "utf8": [34, 58, 122, 151, 158, 203, 205, 207, 208, 248, 293, 305, 314, 335, 352, 411, 413, 455, 461, 478, 480, 483], "utf8_decod": 462, "utf8_en": [248, 478], "utf8_encod": 462, "utf8_mod": [34, 293, 352, 474], "utf8_streamread": 462, "utf8_streamwrit": 462, "utf_16": 158, "utf_16_b": 158, "utf_16_l": 158, "utf_32": 158, "utf_32_b": 158, "utf_32_l": 158, "utf_7": 158, "utf_8": [158, 483], "utf_8_sig": [68, 145], "util": [23, 31, 33, 59, 68, 93, 94, 95, 102, 118, 133, 151, 155, 158, 159, 163, 177, 182, 186, 187, 190, 191, 193, 194, 196, 200, 203, 205, 207, 208, 230, 241, 248, 251, 254, 256, 270, 280, 285, 292, 311, 315, 322, 332, 342, 344, 346, 348, 365, 369, 384, 388, 399, 411, 461, 462, 464, 466, 467, 469, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "utim": [142, 293, 332, 476, 483], "utkarsh": 480, "utter": [193, 470], "utyp": 176, "uu": [68, 146, 158, 397, 426, 464, 473, 474, 483], "uu_codec": [158, 483], "uucp": 269, "uuddlrlrab": 344, "uudecod": 68, "uuencod": [68, 143, 146, 158, 254, 350], "uui": 76, "uuid": [68, 156, 254, 256, 281, 337, 467, 473, 481, 483], "uuid1": [398, 467, 480, 483], "uuid3": [398, 467, 483], "uuid4": [398, 467, 483], "uuid5": [398, 467, 483], "uuid_creat": 483, "uuid_enc_b": 483, "uuidcreat": 281, "uuidtostr": 281, "uuu": 267, "uuuuuu": 183, "uvloop": [426, 478, 479, 483], "uw": 248, "uwp": 461, "uwsgi": [68, 348], "ux": 483, "v0": 483, "v1": [68, 337, 347, 483, 484], "v14": 352, "v140": 483, "v141": 483, "v142": 483, "v143": 483, "v2": [337, 347, 426, 467, 468, 483], "v3": [86, 337, 483], "v39": 483, "v4_int_to_pack": 259, "v6": 337, "v6_int_to_pack": 259, "v7": [342, 358], "v8": 464, "va": [18, 426], "va_build_stack": 483, "va_copi": 475, "va_end": 483, "va_list": [5, 9, 18, 23, 64, 466, 478, 483], "va_start": [474, 483], "vadi": 231, "vadim": 483, "vaginay": 483, "vagu": 468, "vajda": 471, "vajraski": [477, 478, 483], "val": [18, 22, 23, 73, 95, 116, 167, 190, 191, 196, 205, 223, 244, 266, 297, 340, 344, 386, 390, 395, 428, 467, 474, 483], "val_a": 63, "val_b": 63, "valedictorian": 440, "valeri": 477, "valgrind": [456, 469, 475, 479, 483], "valid": [5, 7, 11, 23, 28, 34, 42, 60, 61, 63, 64, 66, 68, 72, 73, 85, 92, 99, 100, 106, 109, 112, 120, 139, 143, 146, 151, 157, 158, 159, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 187, 189, 191, 194, 195, 197, 203, 207, 209, 225, 242, 244, 245, 247, 250, 255, 256, 258, 259, 262, 265, 267, 268, 270, 278, 281, 283, 287, 288, 293, 301, 302, 304, 308, 311, 314, 319, 322, 323, 324, 331, 333, 335, 337, 340, 341, 344, 345, 347, 348, 352, 358, 362, 365, 366, 376, 378, 384, 386, 387, 388, 394, 395, 405, 411, 413, 415, 416, 420, 422, 423, 425, 427, 428, 431, 432, 435, 436, 443, 451, 455, 456, 462, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valid_sign": [333, 483], "validate_b": 480, "validate_simpl": 386, "validate_ucrtbas": 483, "validator_app": 407, "validhandl": 176, "valu": [7, 9, 11, 12, 13, 15, 17, 18, 20, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 45, 46, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 65, 66, 68, 72, 74, 75, 76, 78, 79, 87, 89, 92, 93, 96, 99, 101, 102, 106, 108, 109, 110, 112, 115, 117, 118, 122, 129, 133, 137, 138, 139, 141, 142, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 169, 170, 173, 175, 177, 178, 181, 183, 184, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 208, 209, 211, 212, 213, 215, 216, 217, 218, 221, 225, 226, 228, 230, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 279, 281, 282, 283, 284, 285, 287, 288, 289, 290, 291, 293, 295, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 341, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 402, 403, 404, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 429, 431, 432, 433, 435, 436, 440, 441, 442, 446, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valuabl": [92, 114, 230, 337, 381, 476], "value1": [95, 167, 467, 482], "value2": [95, 167, 467, 482], "value3": [167, 482], "value_decod": 244, "value_encod": 244, "value_nam": [142, 405], "value_of_listorset": 427, "value_of_point": 436, "value_pattern": [427, 431], "valuea": 167, "valueb": 167, "valuec": 167, "valueerror": [5, 9, 18, 23, 39, 41, 58, 64, 85, 93, 94, 99, 101, 102, 110, 114, 115, 120, 121, 122, 126, 134, 138, 143, 144, 147, 150, 151, 157, 158, 159, 160, 163, 166, 167, 173, 175, 176, 181, 183, 186, 193, 196, 197, 199, 203, 205, 208, 209, 210, 211, 213, 223, 225, 227, 232, 243, 248, 250, 255, 258, 259, 261, 262, 267, 268, 274, 275, 278, 283, 284, 288, 292, 293, 294, 296, 302, 305, 314, 316, 318, 322, 325, 329, 330, 332, 333, 335, 337, 340, 341, 343, 344, 345, 348, 351, 352, 353, 365, 366, 379, 387, 388, 389, 394, 395, 399, 408, 410, 422, 425, 427, 430, 441, 442, 443, 446, 450, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valuelist": 465, "valuerang": 386, "valueref": [402, 467], "valuesview": [161, 344, 386, 483], "valur": [469, 475, 477], "valv": 292, "van": [78, 80, 85, 87, 103, 160, 183, 423, 426, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "vandenberg": 483, "vander": [480, 483], "vanderbeek": 469, "vanderpla": 318, "vanilla": [462, 483], "vanish": [85, 158, 386], "vant": 475, "var": [17, 78, 85, 87, 88, 93, 94, 102, 120, 122, 160, 167, 170, 225, 269, 344, 355, 360, 386, 389, 431, 441, 446, 450, 466, 467, 468, 469, 470, 472, 475, 483], "var_access_benchmark": [481, 482, 483], "var_changed_font": 483, "var_keyword": 255, "var_num": 191, "var_posit": 255, "var_typ": 468, "vararg": [122, 255, 483], "vararg_attr": 292, "vararg_callback": 292, "varchar": 340, "varg": [5, 9, 23, 64], "vari": [5, 7, 58, 75, 84, 85, 95, 106, 109, 141, 151, 158, 183, 191, 193, 225, 247, 251, 255, 266, 271, 279, 305, 335, 338, 340, 341, 342, 344, 352, 362, 365, 366, 369, 385, 400, 427, 428, 434, 462, 463, 464, 466, 468, 469, 475, 476, 477], "variabl": [5, 9, 13, 17, 22, 23, 26, 28, 31, 32, 34, 42, 45, 53, 55, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 87, 92, 93, 94, 95, 100, 102, 106, 109, 110, 112, 114, 118, 139, 141, 151, 152, 155, 163, 164, 167, 174, 177, 191, 193, 209, 213, 214, 215, 223, 225, 228, 230, 245, 247, 248, 249, 250, 255, 266, 267, 281, 283, 295, 297, 299, 301, 311, 313, 315, 319, 320, 324, 331, 332, 333, 337, 338, 340, 342, 343, 344, 347, 348, 351, 352, 354, 358, 362, 365, 366, 368, 376, 381, 382, 384, 385, 386, 388, 394, 395, 400, 403, 405, 407, 408, 410, 411, 412, 420, 425, 427, 428, 429, 430, 431, 432, 435, 436, 440, 441, 446, 448, 449, 452, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "variable_nam": 87, "variad": [68, 118, 386, 441, 483], "varianc": [343, 386, 451, 473, 474, 477, 479, 481, 483], "variant": [5, 22, 31, 41, 47, 63, 73, 84, 93, 95, 102, 106, 109, 120, 158, 160, 167, 177, 183, 184, 186, 191, 203, 225, 226, 245, 248, 282, 283, 293, 303, 332, 337, 340, 341, 358, 388, 395, 398, 416, 428, 432, 467, 468, 469, 470, 474, 477, 480, 481, 482, 483], "variant_also_negoti": 241, "variant_id": 303, "variat": [85, 93, 94, 106, 183, 193, 271, 293, 305, 348, 354, 428, 461, 467, 483], "varieti": [64, 73, 75, 95, 100, 102, 109, 120, 158, 186, 194, 225, 230, 273, 292, 293, 308, 314, 344, 348, 369, 413, 432, 466, 467, 468, 469, 477], "various": [7, 33, 42, 58, 63, 73, 75, 79, 85, 91, 92, 93, 94, 95, 103, 106, 109, 112, 117, 120, 133, 146, 151, 158, 169, 176, 178, 181, 186, 190, 193, 194, 197, 203, 208, 216, 217, 230, 242, 243, 250, 258, 259, 261, 264, 268, 273, 278, 281, 290, 292, 293, 298, 308, 314, 331, 335, 337, 338, 339, 340, 341, 344, 345, 347, 352, 354, 358, 362, 366, 369, 384, 385, 387, 388, 395, 397, 413, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 483], "varius": 149, "varkw": 255, "varnam": [13, 483], "varnish": 341, "varoquaux": [482, 483], "vartrac": 483, "vartyp": 176, "vasiliev": 466, "vassalotti": [469, 471, 475, 477, 483], "vast": [94, 330, 481, 482, 483], "vault": 463, "vaultah": 483, "vawda": [476, 477], "vbar": [374, 377], "vbarequ": 377, "vc": [68, 176, 254, 404, 483], "vc_assembly_publickeytoken": [282, 469], "vcan0": 337, "vcruntime140": 483, "vcruntime140_thread": 483, "vcvarsal": 483, "vcxproj": 483, "vdahl": [478, 483], "ve": [42, 76, 94, 95, 99, 102, 106, 109, 114, 139, 152, 251, 271, 292, 340, 369, 462, 463, 464, 465, 466, 468, 469, 471, 477, 483], "vec": [386, 442], "vec1": 261, "vec2": [261, 386], "vec2d": [384, 483], "vector": [261, 275, 348, 384, 386, 409, 474, 483], "vectorcal": [2, 27, 58, 61, 63, 68, 472, 473, 474, 482, 483], "vectorcallfunc": [10, 27, 57, 63, 75, 474], "vegard": 483, "vehicl": 93, "vehicula": 149, "vel": 149, "velankar": 483, "ven": 102, "vendor": [92, 235, 303, 460, 461, 483], "ventur": 426, "venus": [94, 343, 441], "venv": [68, 87, 102, 111, 114, 156, 192, 251, 254, 355, 453, 461, 474, 476, 480, 483], "ver": 483, "ver_nt_domain_control": 352, "ver_nt_serv": 352, "ver_nt_workst": 352, "ver_platform_win32_nt": 352, "verb": [95, 293], "verbal": 426, "verbatim": [193, 348], "verbos": [33, 34, 63, 68, 89, 99, 101, 102, 120, 160, 177, 193, 210, 226, 228, 268, 292, 301, 319, 331, 332, 345, 352, 357, 358, 362, 367, 382, 388, 399, 419, 428, 461, 464, 465, 466, 468, 469, 473, 474, 475, 477, 479, 480, 483], "verbose2": 483, "verbose3": 483, "verbosemodul": 428, "verdon": 468, "verhulst": 384, "veri": [7, 32, 33, 59, 63, 68, 73, 74, 75, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 110, 128, 149, 151, 158, 167, 169, 177, 183, 186, 190, 193, 196, 202, 203, 206, 207, 230, 242, 245, 250, 255, 266, 267, 270, 271, 283, 284, 288, 292, 293, 299, 308, 319, 328, 330, 335, 337, 338, 341, 346, 348, 352, 353, 358, 359, 369, 375, 384, 386, 388, 394, 426, 428, 430, 432, 436, 441, 461, 462, 463, 464, 465, 466, 467, 469, 470, 474, 475, 476, 477, 478, 479, 481, 483], "verif": [68, 119, 268, 340, 341, 344, 394, 475, 483], "verifi": [5, 7, 75, 85, 93, 95, 103, 161, 187, 193, 211, 235, 243, 250, 268, 269, 271, 293, 335, 340, 341, 362, 388, 400, 461, 468, 469, 473, 474, 475, 476, 477, 481, 483], "verify_": 341, "verify_allow_proxy_cert": [341, 483], "verify_client_post_handshak": [341, 479, 480, 481, 483], "verify_cod": 341, "verify_crl_check_chain": [341, 477], "verify_crl_check_leaf": [341, 477], "verify_default": [341, 477], "verify_flag": [341, 477], "verify_messag": 341, "verify_mod": [341, 483], "verify_request": [338, 483], "verify_structur": 7, "verify_x509_partial_chain": [341, 472], "verify_x509_strict": [341, 477], "verify_x509_trusted_first": 341, "verifyflag": 341, "verifymod": 341, "verisign": 341, "verkhovskiy": 483, "versa": [72, 84, 103, 141, 176, 250, 267, 293, 319, 344, 376, 380, 386, 413, 468, 474, 477, 483], "version": [4, 5, 7, 9, 10, 11, 13, 14, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 41, 42, 43, 45, 47, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 68, 73, 75, 76, 77, 79, 80, 85, 91, 92, 93, 94, 95, 96, 98, 101, 102, 103, 105, 106, 109, 110, 111, 112, 115, 116, 117, 119, 120, 121, 122, 126, 128, 129, 132, 133, 135, 136, 138, 139, 141, 142, 143, 144, 149, 150, 151, 154, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 181, 183, 184, 186, 188, 190, 191, 193, 194, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 221, 223, 225, 226, 227, 230, 231, 232, 233, 234, 235, 237, 238, 239, 241, 242, 243, 244, 245, 247, 248, 249, 250, 252, 253, 255, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 276, 278, 280, 281, 282, 283, 284, 288, 291, 293, 294, 295, 296, 297, 299, 300, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 359, 360, 361, 362, 364, 365, 366, 367, 369, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 402, 403, 405, 407, 410, 411, 413, 417, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 450, 453, 455, 456, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "version2": 467, "version_id": 303, "version_info": [35, 80, 100, 113, 122, 340, 352, 355, 450, 462, 469, 471, 473, 474, 475, 476, 483], "version_str": 245, "versionad": 483, "versionhelp": 483, "versioninfo": 303, "versus": [68, 183, 193, 250, 253, 267, 430, 475, 481, 483], "vertch": 177, "vertex": [232, 384], "vertic": [177, 178, 247, 297, 344, 345, 364, 369, 374, 375, 376, 384, 427, 434, 435], "very_long_list_of_fil": 78, "vessel": 475, "vestibulum": 149, "vestig": 483, "vestigi": [463, 483], "vethernet": 337, "vewwi": 292, "vex": [102, 463], "vfat": 483, "vfork": [68, 164, 483], "vformat": 345, "vfs": 461, "vi": [275, 320], "via": [7, 33, 42, 45, 61, 63, 64, 68, 73, 76, 84, 85, 95, 100, 101, 110, 112, 115, 120, 139, 144, 151, 167, 170, 183, 190, 193, 196, 200, 201, 202, 205, 206, 207, 208, 213, 216, 218, 221, 225, 228, 233, 235, 242, 247, 251, 255, 265, 266, 267, 268, 269, 278, 283, 284, 292, 293, 297, 298, 299, 302, 305, 308, 314, 319, 320, 321, 323, 335, 337, 338, 341, 344, 348, 352, 355, 362, 384, 386, 388, 395, 400, 405, 410, 413, 419, 425, 427, 428, 430, 455, 458, 462, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483], "vice": [72, 84, 103, 141, 176, 250, 267, 293, 319, 344, 376, 380, 386, 413, 468, 474, 477, 483], "victim": 268, "victor": [469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "victorin": 480, "video": [92, 177, 261, 272, 275, 468], "videoread": 468, "viehland": [472, 479, 482, 483], "vienna": 244, "view": [7, 22, 43, 48, 63, 68, 84, 87, 92, 93, 94, 120, 133, 139, 160, 161, 183, 186, 191, 196, 200, 205, 208, 225, 247, 258, 272, 299, 308, 313, 340, 342, 347, 351, 352, 369, 375, 376, 384, 385, 405, 410, 426, 462, 467, 468, 472, 475, 476, 478, 483, 484], "viewabl": 376, "viewer": [92, 247, 269, 384, 483], "viewitem": [112, 469], "viewkey": [112, 469], "viewvalu": [112, 469], "vigil": 33, "vignali": 478, "vike": 348, "viktorin": [472, 473, 474, 478, 481, 482, 483], "villag": 452, "vim": [435, 459, 477], "vinay": [101, 102, 465, 466, 468, 469, 471, 475, 476, 477, 478, 479, 480, 481, 482], "vinay_sajip": [101, 102], "vincent": [341, 473, 478, 479, 483], "vindic": 470, "violat": [23, 42, 61, 63, 94, 103, 176, 183, 203, 208, 215, 248, 299, 305, 341, 344, 428, 479, 483], "violet": [261, 384], "virgilius": 103, "virginia": 426, "virtu": [103, 421, 483], "virtual": [34, 68, 73, 85, 87, 102, 111, 116, 161, 176, 177, 179, 225, 226, 242, 251, 255, 280, 293, 333, 337, 340, 341, 352, 355, 358, 368, 385, 395, 399, 427, 428, 429, 432, 440, 453, 458, 462, 468, 474, 475, 476, 477, 479, 480, 481, 483], "virtual_env": [399, 478], "virtual_env_prompt": 483, "virtualalloc": [42, 477], "virtualbox": 483, "virtualenv": [111, 399, 461, 476, 483], "virtualfre": 42, "visibl": [51, 60, 68, 73, 85, 92, 95, 102, 128, 139, 158, 167, 177, 179, 190, 196, 205, 222, 247, 255, 261, 271, 337, 353, 376, 395, 400, 429, 463, 466, 467, 474, 475, 476, 480, 481, 483], "visit": [28, 63, 76, 95, 100, 122, 183, 261, 293, 313, 332, 342, 415, 461, 462, 464, 465, 468, 476, 482, 483], "visit_": [78, 122], "visit_a": 78, "visit_byt": [122, 481], "visit_const": [122, 481, 483], "visit_decref": 483, "visit_ellipsi": [122, 481], "visit_nam": 122, "visit_nameconst": [122, 481], "visit_num": [122, 481, 483], "visit_str": [122, 481, 483], "visitfil": 342, "visitor": 28, "visitproc": [28, 57, 63, 76, 100, 482], "vista": [293, 483], "visual": [59, 77, 85, 92, 319, 341, 375, 384, 413, 455, 456, 461, 462, 465, 468, 478, 483], "visualstudio": 483, "vita": 467, "vitor": [480, 483], "vivian": 483, "vixen": 102, "vk": 469, "vlad": 483, "vladimir": [462, 463, 465, 472, 474, 481, 483], "vline": [177, 483], "vm": [13, 63, 84, 322, 353, 476, 483], "vm_id": 337, "vm_name": 303, "vm_releas": 303, "vm_vendor": 303, "vmaddr": 337, "vmid": 337, "vmin": 361, "vminfo": 303, "vms": [191, 292, 476, 477], "vo": 483, "voc": 336, "vocabulari": 386, "vocod": 450, "vogt": [478, 483], "voic": [102, 336, 464], "voicila": 483, "void": [3, 5, 7, 9, 11, 12, 13, 17, 21, 22, 23, 24, 25, 27, 28, 30, 31, 33, 34, 35, 38, 39, 41, 42, 45, 48, 49, 51, 52, 53, 58, 59, 60, 61, 63, 64, 66, 67, 71, 72, 73, 75, 76, 77, 86, 98, 100, 176, 319, 347, 411, 431, 469, 472, 473, 474, 481, 482, 483], "voidcmd": 223, "voidresp": 483, "voidspac": [110, 469], "vol": 318, "volatil": [190, 284, 483], "volochii": [473, 483], "volt": [73, 441], "voltag": [73, 225, 441], "volum": [84, 142, 160, 261, 293, 295, 422, 466, 474, 477, 483], "volumin": 475, "volunt": [434, 468], "voluntari": 322, "voluntarili": [262, 293], "von": [109, 230, 318, 428, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 481], "vonmisesvari": 318, "voom": [73, 441], "vooooom": 441, "vote": [446, 462, 467, 475], "voter": 467, "vowel": 226, "vpa": 177, "vq": 89, "vranken": 483, "vret": 76, "vrfi": 335, "vs": [68, 187, 308, 363, 427, 483], "vsapi": 483, "vsnprintf": [18, 464, 472, 483], "vsock": 337, "vsprintf": 464, "vswhere": 483, "vt": [176, 178, 386, 435], "vt100": 177, "vt100s": [92, 177], "vt_co": 386, "vt_empti": 483, "vt_ptr": 176, "vtabl": 469, "vtbl_index": 176, "vtime": 361, "vtt": 483, "vulgar": 344, "vulner": [109, 137, 193, 245, 299, 331, 340, 348, 467, 483], "vv": [89, 120, 455, 471, 479, 483], "vvv": [89, 120, 395], "vvvv": 89, "vwait": 483, "vx": 94, "vxwork": [34, 64, 87, 173, 266, 293, 301, 322, 472, 483], "vy": 94, "vye483814lqex": 93, "w0": 269, "w00t": 389, "w01": 183, "w1": [269, 440], "w2": 440, "w3": [110, 240, 314, 395, 411, 413, 426, 483], "w3c": [68, 110, 240, 242, 395, 410, 411, 415, 428, 463, 472, 479, 480, 481, 482, 483], "w3m": 403, "w3school": 340, "w6": 269, "w64": 483, "w_ok": 293, "wa": 388, "wabbit": 292, "waddstr": [92, 476], "waddwstr": 476, "wafer": 244, "wagner": 483, "wai": 394, "wait": [66, 68, 73, 85, 92, 96, 102, 110, 115, 120, 124, 125, 129, 132, 133, 134, 136, 137, 138, 166, 177, 189, 207, 208, 245, 247, 255, 257, 269, 282, 283, 284, 293, 295, 318, 322, 325, 328, 329, 333, 335, 337, 338, 340, 341, 342, 348, 361, 362, 365, 384, 395, 399, 403, 441, 452, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wait3": [293, 467, 478, 483], "wait4": [293, 467, 478], "wait_clos": [126, 136, 480, 483], "wait_for": [124, 134, 137, 138, 139, 283, 365, 473, 481, 482, 483], "wait_for_data": 136, "wait_on_a": 166, "wait_on_b": 166, "wait_on_futur": 166, "wait_process": [362, 483], "wait_threads_exit": 362, "waitabl": [283, 293, 328, 366, 473, 483], "waiter": [96, 138, 365, 483], "waiter_task": 138, "waitformultipleobject": [283, 483], "waitforsingleobject": [283, 483], "waitid": [293, 476, 478, 483], "waitpid": [132, 257, 293, 309, 467, 477, 478, 483], "waitstatus_to_exitcod": [293, 309, 482, 483], "wake": [247, 328, 333, 365, 468, 483], "wakeup": [333, 476, 480, 483], "wakeupfd": 483, "walczak": 483, "waldman": 462, "walk": [120, 122, 142, 196, 200, 204, 205, 207, 292, 293, 296, 348, 369, 381, 408, 464, 468, 470, 474, 476, 478, 483], "walk_packag": [302, 476, 479, 480, 483], "walk_stack": [381, 478], "walk_tb": [381, 478], "walk_up": [296, 474, 483], "walker": 469, "walktre": 342, "wall": [72, 183, 308, 468, 474, 483], "wallclock": 367, "walli": 384, "walrus": [430, 481, 483], "walter": [465, 466, 467, 468, 481], "walway": [455, 465], "walzer": [469, 475, 483], "wang": [472, 474, 480, 483], "want": [5, 7, 23, 25, 33, 34, 56, 63, 72, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 115, 120, 132, 136, 141, 144, 151, 152, 155, 157, 159, 167, 169, 176, 177, 180, 183, 190, 193, 196, 200, 201, 202, 205, 208, 215, 218, 225, 226, 228, 230, 235, 242, 243, 245, 247, 248, 250, 251, 255, 261, 266, 267, 268, 269, 272, 276, 278, 283, 292, 293, 297, 299, 302, 307, 308, 313, 314, 319, 328, 329, 332, 333, 335, 337, 338, 340, 341, 344, 345, 348, 352, 355, 358, 364, 365, 369, 381, 384, 386, 388, 394, 395, 400, 413, 421, 422, 425, 426, 428, 429, 432, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 479, 481, 482, 483], "wantobject": [465, 483], "war": [93, 473], "ward": [462, 464, 465, 466, 467, 478, 483], "wardil": 477, "ware": [469, 477, 478, 480, 483], "warehous": [440, 475], "warhawk": 479, "wari": [76, 354], "warkentin": 476, "warm": 483, "warmup": 483, "warn": [13, 27, 32, 33, 34, 58, 59, 68, 76, 85, 96, 101, 102, 103, 112, 118, 125, 135, 139, 181, 182, 187, 213, 250, 254, 268, 269, 272, 283, 293, 308, 311, 315, 319, 333, 339, 340, 348, 352, 358, 369, 373, 384, 386, 388, 397, 407, 414, 415, 416, 428, 429, 432, 435, 450, 451, 452, 455, 456, 462, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 477, 478, 481, 482, 483, 484], "warn_default_encod": [34, 258, 352, 455, 472, 483], "warn_explicit": [23, 400, 479, 483], "warn_on_full_buff": [333, 480, 483], "warn_the_us": 358, "warner": 468, "warning_help": 362, "warningcategori": 362, "warningmessag": [23, 479, 483], "warningrecord": 362, "warnings_and_below": 102, "warnings_help": [68, 187, 254, 483], "warningsrecord": 362, "warnopt": [34, 59, 352, 362, 400, 450, 474, 480, 483], "warrant": [400, 470], "warranti": [103, 235, 426, 481], "warsaw": [230, 462, 463, 464, 466, 467, 468, 474, 475, 476, 477, 478, 480, 481, 483], "wart": [462, 470], "was": [5, 7, 9, 11, 13, 17, 22, 23, 26, 27, 31, 33, 42, 45, 49, 54, 56, 58, 59, 60, 61, 63, 64, 66, 73, 75, 76, 77, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 117, 120, 125, 132, 133, 137, 139, 140, 141, 144, 149, 151, 152, 155, 157, 158, 161, 163, 167, 169, 170, 177, 181, 183, 186, 190, 191, 193, 196, 199, 201, 202, 205, 206, 207, 213, 214, 218, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 266, 267, 268, 269, 270, 271, 272, 275, 278, 282, 283, 284, 288, 292, 293, 295, 297, 299, 302, 307, 308, 311, 313, 314, 319, 320, 321, 322, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 376, 377, 378, 380, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 408, 410, 413, 414, 415, 419, 420, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 441, 443, 452, 453, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "washington": [95, 248], "wasi": [123, 151, 163, 166, 173, 210, 212, 213, 215, 223, 229, 233, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 310, 322, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 356, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "wasix": 483, "wasm": [257, 456, 483], "wasm32": [123, 151, 163, 166, 173, 210, 223, 229, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "wasm64": 483, "wasm_build": 483, "wasmtim": [257, 483], "wasn": [22, 31, 45, 76, 102, 120, 269, 292, 356, 388, 423, 462, 464, 465, 467, 468, 479, 483], "wassuccess": 388, "wast": [102, 109, 470, 483], "watch": [22, 59, 61, 100, 101, 133, 137, 186, 261, 269, 328, 369, 451], "watchdog": 214, "watchedfilehandl": [68, 101, 118, 468, 479], "watcher": [13, 22, 27, 61, 63, 68, 75, 137, 474, 482, 483], "watcher_id": [13, 22, 27, 61], "watchexp": [476, 483], "water": [130, 328, 478, 483], "watermark": [133, 136], "watney": 93, "watson": 476, "wav": [68, 141, 206, 254, 277, 336, 406, 450], "wave": [68, 153, 254, 277, 349, 462, 479, 482, 483], "wave_format_extens": [401, 483], "wave_read": [68, 277], "wave_writ": [68, 277], "waveform": [336, 406], "wavread": 450, "wavwrit": 450, "way": [5, 7, 9, 13, 23, 25, 31, 33, 34, 42, 45, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 120, 124, 133, 139, 141, 144, 151, 157, 158, 159, 161, 163, 167, 169, 173, 176, 177, 181, 183, 186, 190, 193, 194, 195, 196, 200, 201, 205, 207, 208, 209, 225, 228, 230, 235, 243, 247, 248, 250, 251, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 275, 278, 280, 283, 292, 293, 295, 297, 299, 307, 308, 319, 324, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 353, 354, 358, 362, 365, 369, 375, 378, 381, 384, 386, 387, 388, 395, 400, 403, 410, 413, 415, 419, 420, 421, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wayback": 463, "waygood": [472, 473, 474, 482, 483], "wayland": 483, "wayland_display": 483, "wb": [73, 87, 102, 117, 120, 149, 200, 208, 223, 234, 270, 278, 299, 309, 320, 349, 386, 397, 401, 419, 421, 422, 462, 471, 475], "wbit": [234, 424, 483], "wbr": 483, "wc": 102, "wchar": 483, "wchar_": 33, "wchar_t": [5, 16, 33, 34, 59, 66, 68, 72, 73, 121, 176, 473, 474, 480, 482, 483], "wcontinu": 293, "wcoredump": 293, "wcslen": 64, "wcstok": 483, "wctype": 475, "wd": [388, 400, 467, 469, 477, 479], "wdefault": [455, 469, 475, 483], "wdv4758h": 483, "we": [64, 72, 73, 75, 76, 85, 91, 93, 94, 95, 96, 101, 102, 103, 106, 107, 109, 110, 120, 122, 126, 129, 133, 134, 136, 139, 144, 150, 155, 157, 160, 166, 167, 169, 170, 176, 183, 190, 191, 194, 196, 200, 202, 205, 208, 232, 235, 242, 243, 247, 251, 255, 266, 268, 269, 283, 284, 292, 293, 299, 319, 332, 333, 338, 340, 341, 343, 344, 345, 347, 348, 362, 365, 369, 376, 378, 382, 384, 386, 388, 394, 395, 400, 407, 411, 413, 419, 422, 427, 428, 430, 431, 432, 441, 443, 446, 456, 462, 464, 465, 467, 468, 469, 470, 474, 475, 476, 479, 480, 481, 482, 483], "weak": [5, 63, 67, 68, 73, 74, 85, 139, 213, 226, 235, 341, 344, 388, 402, 428, 445, 464, 467, 469, 474, 477, 483, 484], "weaken": 483, "weaker": [186, 463], "weakest": 173, "weakkeydictionari": [344, 402, 467, 483], "weaklink": [465, 481, 482, 483], "weakmethod": [344, 402, 477, 483], "weakref": [63, 68, 75, 85, 87, 181, 182, 213, 254, 283, 316, 344, 362, 452, 463, 464, 466, 467, 469, 473, 474, 483], "weakref_ref": 5, "weakref_slot": [181, 483], "weakrefer": 63, "weakreflist": 483, "weakset": [344, 402, 469, 473, 483], "weakvaluedictionari": [344, 402, 452, 467, 483], "wealth": 470, "weapon": 442, "weather": 85, "weav": 79, "web": [68, 84, 85, 95, 103, 107, 109, 110, 151, 226, 235, 244, 245, 247, 256, 257, 269, 272, 313, 340, 341, 394, 395, 403, 407, 410, 420, 426, 432, 461, 462, 463, 464, 465, 466, 467, 468, 469, 477, 483, 484], "web_python": 84, "webapp": 102, "webapplib": 102, "webassembl": [68, 123, 151, 163, 166, 173, 210, 223, 229, 242, 245, 248, 278, 283, 287, 288, 293, 305, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 359, 365, 395, 399, 403, 419, 420, 425, 458, 473, 483], "webbrows": [68, 142, 156, 200, 254, 256, 462, 467, 473, 483], "webdav": [223, 241], "weber": [465, 478, 483], "webm": 483, "webmanifest": 483, "webp": [206, 249, 369, 478, 483], "webpag": 307, "webprogram": 84, "webserv": 245, "websit": [85, 110, 184, 395, 434, 475, 483], "websocket": [243, 257, 483], "webster": 483, "wed": [150, 183, 366], "wednesday": [94, 150, 183, 211], "week": [94, 183, 266, 366, 462, 474, 481, 483], "weekday": [94, 150, 183, 211, 269, 366, 481, 483], "weekend": 94, "weekhead": 150, "weel": [480, 483], "wei": [478, 483], "weibul": 318, "weibullvari": 318, "weigh": 386, "weight": [115, 160, 176, 202, 318, 343, 345, 372, 479, 483], "weight_femal": 343, "weight_mal": 343, "weighta": 141, "weightb": [141, 483], "weikart": 467, "weinberg": 477, "weipeng": [473, 481, 483], "weird": 120, "weird_json": 262, "weirdtrio": 386, "welborn": 478, "welbourn": 464, "welcom": [72, 92, 155, 283, 288, 384, 426, 467, 475, 483], "well": [5, 23, 49, 63, 64, 73, 75, 76, 77, 79, 84, 85, 93, 94, 95, 100, 101, 102, 106, 107, 109, 110, 120, 132, 133, 137, 141, 144, 146, 151, 152, 157, 158, 167, 169, 176, 177, 183, 184, 186, 191, 193, 194, 197, 200, 203, 204, 208, 215, 218, 225, 226, 228, 230, 234, 235, 243, 247, 251, 257, 258, 259, 261, 267, 268, 269, 270, 271, 276, 279, 284, 288, 292, 293, 299, 307, 319, 321, 324, 329, 332, 335, 340, 341, 342, 343, 344, 348, 352, 354, 358, 361, 362, 364, 369, 375, 378, 381, 382, 383, 384, 385, 386, 388, 394, 410, 413, 414, 415, 416, 419, 425, 427, 428, 430, 432, 436, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wellner": 483, "welter": 465, "wena": 89, "went": [73, 144, 213, 295, 335, 413, 462, 464, 467, 468, 482], "wenyang": 474, "wenzel": 474, "were": [5, 7, 9, 17, 23, 26, 33, 58, 61, 63, 66, 73, 75, 76, 93, 95, 101, 102, 106, 112, 120, 133, 139, 144, 151, 158, 160, 167, 169, 177, 181, 183, 186, 190, 191, 193, 196, 199, 200, 201, 203, 205, 207, 208, 213, 216, 225, 228, 235, 244, 247, 250, 251, 255, 262, 267, 268, 275, 276, 278, 283, 293, 295, 299, 308, 314, 319, 330, 333, 335, 337, 338, 340, 344, 345, 347, 348, 352, 353, 356, 358, 359, 362, 369, 376, 380, 381, 382, 384, 386, 388, 394, 395, 400, 412, 413, 423, 427, 428, 429, 430, 432, 434, 435, 436, 441, 443, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "weren": [95, 106, 235, 463, 464, 465, 466, 467, 469], "werneck": 468, "werror": [455, 456, 483], "wessel": 483, "west": [94, 183, 366, 376, 384, 440, 471], "western": [158, 366], "westley": 483, "weston": 483, "wexit": 293, "wexitstatus": 293, "wfile": [245, 338, 479, 483], "wg14": 352, "wgh": 483, "what": [5, 9, 23, 25, 26, 31, 33, 34, 39, 42, 49, 51, 54, 58, 63, 64, 68, 72, 75, 76, 93, 94, 95, 96, 102, 103, 106, 109, 110, 112, 120, 133, 139, 151, 158, 163, 167, 170, 176, 177, 183, 185, 186, 187, 199, 200, 201, 203, 207, 208, 213, 215, 225, 230, 235, 243, 244, 247, 248, 249, 250, 251, 266, 267, 268, 269, 270, 272, 279, 293, 295, 298, 307, 311, 314, 319, 320, 328, 332, 336, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 358, 361, 362, 368, 375, 376, 380, 383, 384, 386, 388, 394, 400, 410, 411, 413, 421, 427, 429, 430, 432, 434, 435, 436, 442, 461, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "whatev": [5, 31, 73, 78, 84, 85, 101, 102, 106, 120, 151, 176, 195, 200, 208, 225, 250, 267, 268, 292, 293, 297, 311, 319, 344, 352, 359, 362, 365, 395, 430, 432, 462, 463, 464, 465, 466, 469, 483], "whathdr": [336, 478, 483], "whati": [297, 483], "whats_on_the_telli": 427, "whatsnew": [467, 483], "whatsoev": [292, 325, 426], "whatsound": 462, "whatwg": [239, 394, 472, 479, 480, 481, 482, 483], "wheeeeee": 389, "wheel": [111, 190, 251, 318, 456, 472, 473, 474, 481, 482, 483], "wheel_metadata": 251, "wheel_pkg_dir": 483, "when": [5, 7, 9, 10, 11, 13, 22, 23, 27, 28, 31, 33, 34, 36, 37, 39, 42, 45, 47, 49, 50, 54, 58, 59, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 92, 93, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 117, 120, 122, 124, 126, 128, 129, 132, 133, 135, 137, 138, 139, 141, 144, 149, 151, 152, 153, 155, 157, 158, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 283, 287, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 309, 311, 313, 314, 318, 319, 320, 321, 322, 323, 324, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "whenc": [142, 153, 215, 258, 278, 293, 446, 464], "whenev": [23, 61, 63, 66, 73, 85, 93, 94, 95, 101, 102, 120, 133, 177, 186, 190, 207, 225, 247, 252, 255, 267, 269, 271, 283, 292, 299, 314, 328, 333, 340, 341, 352, 362, 365, 376, 384, 388, 413, 425, 428, 432, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 483], "where": [5, 23, 24, 33, 34, 35, 42, 45, 47, 49, 54, 56, 58, 59, 61, 63, 64, 66, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 122, 133, 139, 141, 144, 151, 152, 153, 158, 163, 167, 169, 176, 177, 181, 183, 186, 190, 191, 193, 196, 199, 201, 202, 203, 205, 208, 213, 215, 221, 225, 226, 230, 235, 242, 243, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 313, 314, 319, 324, 328, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 361, 362, 365, 366, 369, 371, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 410, 411, 412, 413, 415, 416, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "where_i": 441, "wherea": [34, 73, 85, 96, 102, 103, 137, 167, 262, 267, 283, 319, 329, 352, 369, 432, 461, 470, 482, 483], "wherebi": [141, 151, 268, 299, 483], "wherein": 483, "wherev": [73, 79, 92, 94, 102, 106, 109, 177, 247, 369, 397, 426, 464, 467], "whet": 464, "whether": [5, 7, 9, 11, 13, 17, 23, 31, 45, 58, 59, 63, 64, 73, 79, 85, 92, 93, 95, 99, 100, 101, 106, 109, 115, 120, 133, 139, 143, 144, 149, 151, 152, 155, 157, 158, 159, 161, 167, 169, 176, 177, 181, 183, 186, 189, 191, 193, 196, 202, 207, 208, 220, 225, 230, 234, 235, 243, 244, 247, 250, 255, 258, 259, 261, 266, 268, 269, 271, 272, 275, 276, 283, 292, 293, 295, 297, 299, 302, 307, 308, 311, 314, 319, 324, 328, 332, 333, 334, 335, 337, 338, 340, 341, 344, 346, 347, 348, 352, 358, 362, 365, 366, 369, 376, 380, 384, 386, 387, 388, 394, 395, 400, 405, 410, 415, 420, 421, 422, 426, 427, 428, 429, 430, 432, 436, 455, 456, 461, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 483], "whi": [68, 73, 75, 92, 93, 94, 95, 99, 101, 103, 109, 151, 167, 176, 193, 201, 235, 250, 253, 261, 271, 283, 292, 293, 299, 345, 355, 388, 428, 461, 464, 467, 469, 474, 480, 483], "which": [5, 7, 9, 13, 18, 22, 23, 25, 27, 28, 31, 33, 34, 39, 41, 42, 43, 45, 49, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 117, 120, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 353, 354, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 446, 451, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "whichdb": [184, 470], "whichev": [63, 73, 75, 183, 267, 347, 388, 461, 476, 478], "whichfil": 190, "whichmodul": 483, "whichsid": 376, "whielacronx": 426, "while": [7, 13, 22, 23, 28, 33, 36, 45, 49, 63, 64, 68, 72, 73, 75, 76, 84, 85, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 107, 109, 112, 115, 116, 120, 122, 133, 134, 136, 138, 139, 147, 149, 151, 158, 160, 167, 169, 170, 176, 177, 179, 183, 184, 186, 190, 191, 192, 193, 196, 199, 208, 209, 211, 213, 225, 226, 227, 230, 232, 234, 235, 236, 242, 243, 247, 250, 251, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 283, 292, 293, 297, 299, 302, 308, 311, 314, 316, 318, 319, 326, 328, 329, 331, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 358, 362, 364, 365, 366, 369, 371, 380, 381, 384, 386, 388, 394, 395, 399, 400, 410, 413, 422, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 440, 441, 442, 443, 449, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "while_stmt": [427, 431], "whilst": 483, "whit": 465, "whitacr": 109, "white": [18, 92, 94, 106, 177, 178, 199, 211, 247, 348, 376, 384, 395, 426, 434, 452, 477, 482, 483], "whitebox": 362, "whitelist": [480, 483], "whiteout": 342, "whitespac": [39, 64, 68, 85, 94, 95, 106, 109, 112, 120, 137, 146, 155, 167, 178, 186, 190, 193, 199, 202, 203, 208, 221, 225, 245, 247, 255, 262, 266, 297, 314, 319, 331, 344, 345, 347, 348, 364, 366, 381, 400, 410, 413, 415, 455, 462, 465, 468, 469, 471, 475, 476, 477, 480, 483], "whitespace_split": 331, "whittl": 292, "whl": 453, "who": [11, 68, 73, 96, 99, 101, 102, 103, 109, 163, 228, 230, 248, 267, 293, 322, 341, 345, 358, 384, 411, 421, 423, 425, 446, 461, 462, 464, 465, 466, 467, 469, 476, 479, 481, 482, 483], "whoami": 344, "whole": [42, 79, 99, 106, 120, 141, 158, 167, 169, 177, 183, 207, 208, 235, 242, 259, 261, 267, 278, 292, 293, 305, 307, 319, 328, 337, 340, 344, 364, 375, 388, 410, 413, 426, 427, 435, 455, 462, 469, 477, 481, 483], "wholesal": 483, "wholli": [259, 413], "whom": [384, 426], "whoop": [73, 102], "whose": [5, 23, 31, 33, 42, 45, 60, 61, 63, 73, 85, 93, 102, 120, 169, 176, 177, 181, 183, 186, 193, 200, 203, 205, 208, 213, 215, 216, 221, 225, 226, 228, 233, 242, 243, 244, 252, 255, 266, 267, 268, 269, 271, 283, 292, 293, 297, 299, 307, 308, 312, 319, 322, 332, 333, 334, 337, 339, 340, 344, 345, 352, 358, 362, 365, 366, 369, 376, 380, 381, 388, 395, 400, 405, 413, 415, 427, 428, 430, 432, 435, 462, 463, 464, 466, 467, 468, 469, 474, 476, 477, 478, 480, 481, 483], "whrandom": 467, "whwn": 483, "why_return": 483, "why_yield": 483, "wi": 455, "wide": [32, 34, 59, 64, 68, 92, 95, 100, 101, 109, 115, 120, 132, 141, 150, 155, 167, 176, 177, 183, 186, 193, 194, 243, 247, 255, 257, 266, 271, 282, 293, 295, 299, 302, 305, 315, 330, 341, 344, 347, 348, 358, 365, 366, 375, 410, 422, 425, 426, 456, 461, 464, 467, 468, 469, 474, 475, 476, 477, 483], "wideman": 109, "widen": 483, "wider": [158, 183, 386, 466, 477], "widespread": [102, 202, 434, 463, 475], "widget": [68, 81, 92, 93, 102, 118, 169, 181, 189, 247, 254, 292, 368, 371, 374, 384, 388, 462, 465, 466, 471, 475, 479, 483], "widgetredirector": 483, "widgettestcas": 388, "widgit": 341, "width": [64, 75, 85, 92, 106, 117, 120, 141, 150, 158, 176, 177, 181, 183, 186, 225, 247, 281, 292, 293, 307, 319, 343, 344, 345, 352, 364, 366, 369, 372, 376, 381, 384, 386, 387, 401, 428, 435, 449, 452, 462, 465, 467, 468, 469, 474, 475, 477, 479, 481, 483], "widthxheight": 369, "wieczorek": 469, "wiedemann": 480, "wielgosik": [480, 483], "wifcontinu": 293, "wifexit": 293, "wifsign": 293, "wifstop": 293, "wignor": 455, "wijaya": 483, "wiki": [80, 81, 84, 85, 95, 96, 160, 235, 340, 341, 352, 368, 459, 466, 467, 469, 475, 476, 483], "wikipedia": [95, 109, 160, 235, 271, 347, 384, 467, 475, 476, 483], "wilcox": 235, "wild": [203, 436, 462, 483], "wildcard": [68, 122, 189, 220, 231, 288, 296, 331, 348, 388, 435, 441, 443, 445, 480, 481, 483], "wildcard_pattern": [427, 431], "wildmat": 288, "will": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 117, 120, 122, 126, 132, 133, 134, 136, 137, 138, 139, 141, 143, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 214, 215, 216, 218, 220, 222, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "willi": 235, "william": [474, 477, 483], "wilson": [318, 465, 466, 478, 482, 483], "wimplicit": 483, "win": [22, 33, 68, 92, 102, 103, 177, 179, 292, 318, 355, 388, 461, 471, 475, 483], "win32": [23, 64, 84, 86, 137, 176, 269, 283, 293, 337, 348, 352, 355, 405, 406, 461, 462, 468, 470, 475, 478, 483], "win32_edit": [303, 483], "win32_is_iot": [303, 483], "win32_ver": [303, 483], "win32_xstat_impl": 483, "win32servic": 269, "win64": [110, 462, 478, 483], "win_amd64": [478, 483], "win_arm": 478, "win_ia64": 478, "winapi": [176, 332, 348, 483], "winbas": [472, 483], "winconfig_ev": 483, "wincrypt": 483, "wind": 292, "windir": 405, "windll": [176, 468, 483], "window": [16, 23, 33, 34, 35, 42, 57, 59, 63, 66, 68, 71, 73, 74, 78, 80, 81, 82, 83, 84, 85, 87, 101, 102, 107, 109, 110, 111, 115, 118, 120, 126, 132, 133, 137, 145, 151, 155, 164, 166, 167, 176, 179, 213, 214, 222, 225, 229, 231, 243, 250, 254, 258, 261, 266, 269, 272, 275, 276, 278, 281, 282, 283, 292, 293, 294, 296, 306, 316, 328, 329, 331, 332, 333, 334, 335, 337, 340, 341, 342, 352, 354, 355, 358, 360, 361, 362, 365, 366, 368, 371, 373, 375, 376, 378, 388, 395, 397, 399, 403, 407, 421, 422, 425, 426, 428, 435, 438, 439, 441, 446, 448, 450, 453, 455, 456, 458, 462, 463, 464, 466, 467, 470, 471, 472, 474, 475, 477, 478, 481, 482, 484], "window_height": 384, "window_width": 384, "windowed_sign": 261, "windowfunct": 340, "windows_ev": [131, 483], "windows_util": [131, 480, 483], "windowsapp": 461, "windowsconsoleio": 483, "windowsdefault": 403, "windowserror": [176, 213, 405, 476], "windowspath": [296, 483], "windowsproactoreventlooppolici": [132, 480, 483], "windowsregistryfind": [250, 461, 472, 473, 479, 483], "windowsselectoreventlooppolici": [132, 480, 483], "windowsumint": 340, "wine": [468, 483], "winerror": [23, 176, 213, 483], "winerror_to_errno": 483, "winfo": 369, "winfo_class": 376, "winfo_height": 369, "winfo_id": 369, "winfo_par": 369, "winfo_pathnam": 483, "winfo_view": 369, "winfo_x": 369, "winfunctyp": [176, 483], "wing": 85, "wininst": 483, "wink": 109, "winmod": [176, 481], "winner": 483, "winnerlein": 235, "winpython": 461, "winreg": [68, 142, 254, 404, 450, 470, 483], "winsiz": [361, 483], "winsock": [328, 337, 483], "winsock2": 483, "winsound": [68, 77, 254, 404, 483], "winston": 476, "winter": [95, 225, 468, 469], "winton": 95, "wintyp": [176, 483], "winuserapi": 176, "winver": 352, "wipe": 243, "wire": [92, 101, 158, 177, 267, 268, 269, 341, 346, 419, 478], "wireshark": 341, "wirtel": [479, 480, 483], "wirtz": 483, "wis": [109, 230, 288, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 481], "wisdom": 366, "wise": [73, 94, 181, 186, 268, 464, 480], "wish": [73, 75, 92, 95, 101, 106, 110, 120, 146, 158, 167, 183, 193, 203, 208, 234, 250, 251, 252, 253, 259, 262, 267, 269, 271, 278, 292, 319, 335, 342, 348, 355, 376, 385, 399, 400, 428, 463, 466, 467, 468, 469, 477, 483], "wit": 470, "witch": 451, "with": [5, 7, 9, 10, 11, 13, 22, 23, 24, 25, 27, 28, 31, 32, 33, 35, 36, 37, 39, 41, 42, 45, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 74, 75, 76, 77, 87, 89, 91, 93, 95, 97, 98, 101, 103, 106, 107, 108, 109, 110, 112, 113, 115, 117, 118, 120, 122, 124, 125, 126, 128, 132, 133, 135, 136, 138, 139, 140, 141, 144, 145, 146, 149, 151, 153, 154, 155, 157, 159, 160, 161, 163, 164, 166, 167, 170, 173, 175, 177, 178, 179, 181, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 216, 218, 219, 220, 221, 222, 223, 225, 226, 228, 230, 233, 234, 235, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 261, 262, 264, 266, 268, 269, 270, 271, 272, 273, 275, 276, 278, 281, 282, 283, 284, 288, 290, 291, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 369, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 387, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 405, 406, 407, 408, 410, 411, 412, 414, 415, 416, 417, 419, 420, 422, 423, 425, 426, 430, 431, 432, 433, 434, 435, 436, 438, 441, 442, 443, 444, 446, 449, 451, 452, 453, 455, 456, 460, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 474, 475, 477, 479, 482, 483, 484], "with_cleanup_finish": 483, "with_cleanup_start": [481, 483], "with_com": 413, "with_cycle_gc": 470, "with_doc_str": [362, 456], "with_editlin": 456, "with_except_start": [191, 483], "with_hostmask": 259, "with_item": [427, 431], "with_lock": 386, "with_nam": [296, 483], "with_netmask": 259, "with_next_framework": 34, "with_pip": [399, 477], "with_prefixlen": 259, "with_pymalloc": 362, "with_pymalloc_radix_tre": 483, "with_save_env": 483, "with_seg": [296, 474, 483], "with_stat": [113, 436, 467, 468], "with_stem": [296, 483], "with_stmt": [427, 431], "with_stmt_cont": 427, "with_suffix": [296, 483], "with_traceback": [112, 213, 436, 483], "with_xxsubinterpret": 483, "within": [5, 7, 22, 33, 42, 49, 54, 68, 73, 76, 78, 85, 92, 94, 95, 96, 99, 100, 102, 106, 120, 135, 139, 144, 157, 158, 163, 167, 169, 176, 177, 183, 186, 190, 191, 193, 203, 216, 218, 225, 230, 245, 247, 248, 250, 251, 252, 253, 255, 259, 261, 267, 270, 271, 275, 283, 284, 285, 297, 302, 307, 308, 312, 313, 319, 321, 324, 331, 332, 337, 338, 340, 344, 345, 347, 348, 352, 353, 354, 362, 364, 365, 369, 371, 376, 384, 386, 388, 394, 395, 399, 400, 410, 411, 413, 420, 422, 423, 426, 427, 428, 429, 430, 432, 435, 436, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 481, 482, 483], "withitem": 122, "withitem_ti": 431, "without": [5, 7, 9, 13, 22, 23, 25, 33, 34, 42, 45, 49, 54, 55, 58, 59, 61, 63, 66, 68, 72, 73, 75, 76, 79, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 115, 120, 122, 133, 135, 137, 139, 149, 151, 155, 158, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 196, 197, 202, 205, 208, 209, 213, 214, 218, 225, 226, 228, 230, 234, 235, 243, 244, 248, 250, 252, 253, 255, 258, 259, 261, 265, 266, 267, 270, 271, 275, 278, 282, 283, 288, 292, 293, 295, 297, 299, 305, 308, 309, 314, 318, 319, 322, 323, 324, 325, 328, 330, 332, 334, 337, 340, 341, 344, 347, 348, 352, 353, 354, 358, 359, 362, 364, 365, 366, 368, 369, 382, 384, 385, 386, 388, 394, 395, 399, 400, 403, 410, 411, 413, 416, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 441, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "withprocessestestsharedmemori": 483, "withyear": 150, "wizard": [102, 464], "wladmir": 468, "wlist": 328, "wm": 369, "wmi": 483, "wmodul": 455, "wno": [456, 483], "wnohang": 293, "wnowait": 293, "wo": [472, 483], "woefulli": 369, "woellert": 483, "wohlgang": [479, 480, 483], "wojciech": 483, "wojdyr": 475, "woken": 468, "wold": 483, "wolfeboro": 341, "wolfgang": [479, 483], "wolfram": 261, "wolfson": 463, "won": [5, 33, 34, 41, 63, 73, 75, 76, 85, 92, 94, 95, 99, 101, 102, 106, 109, 133, 139, 151, 167, 183, 184, 186, 193, 206, 225, 230, 243, 267, 269, 292, 293, 297, 299, 329, 337, 347, 352, 369, 389, 416, 455, 463, 464, 466, 467, 468, 469, 470, 471, 475, 478, 480, 483], "wonc": 455, "wonder": [93, 151, 175, 308, 434, 462, 465, 475], "wont": 359, "wood": [93, 120], "woodruff": 483, "word": [5, 11, 33, 63, 73, 85, 92, 94, 102, 103, 106, 108, 109, 120, 158, 160, 167, 173, 176, 183, 186, 190, 193, 201, 203, 208, 247, 292, 297, 319, 320, 326, 331, 340, 344, 349, 353, 364, 365, 369, 386, 412, 413, 417, 430, 432, 434, 435, 436, 440, 441, 442, 449, 462, 464, 466, 467, 468, 470, 474, 478, 479, 480, 481, 483], "word_list": 386, "wordchar": 331, "wordcod": [472, 479, 483], "work": [5, 23, 25, 33, 34, 36, 37, 41, 42, 45, 55, 59, 63, 64, 68, 72, 73, 76, 77, 78, 79, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 120, 132, 133, 134, 135, 137, 138, 139, 151, 155, 158, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 187, 190, 191, 192, 197, 205, 207, 208, 215, 225, 226, 228, 230, 232, 241, 243, 245, 247, 248, 250, 251, 255, 257, 258, 260, 261, 264, 266, 267, 268, 269, 273, 283, 284, 290, 291, 292, 293, 297, 298, 299, 302, 304, 305, 308, 309, 316, 319, 324, 328, 330, 332, 337, 338, 341, 343, 344, 345, 347, 348, 352, 358, 361, 362, 364, 365, 369, 375, 376, 381, 384, 388, 390, 394, 395, 400, 403, 405, 410, 411, 413, 414, 419, 421, 422, 426, 427, 428, 430, 432, 434, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "work_button": 102, "workaround": [85, 181, 193, 284, 297, 341, 344, 422, 473, 474, 476, 481, 483], "worker": [68, 102, 134, 163, 164, 166, 232, 316, 365, 467, 468, 469, 478, 482, 483], "worker_configur": 102, "worker_process": 102, "worker_thread": 102, "workerthread": 102, "workfil": 446, "workflow": [475, 483], "workhors": 462, "workitem": 483, "workload": [134, 482, 483], "workstat": 352, "world": [68, 73, 79, 85, 92, 96, 99, 102, 114, 129, 133, 136, 139, 146, 151, 169, 176, 183, 226, 230, 235, 248, 257, 278, 283, 291, 292, 299, 301, 310, 325, 337, 338, 340, 341, 344, 360, 362, 364, 365, 368, 378, 384, 388, 389, 407, 410, 426, 435, 440, 443, 446, 470, 478, 479, 483], "worldtimeapi": 451, "worldwid": [202, 235, 426], "worri": [73, 75, 92, 109, 151, 183, 194, 292, 319, 347, 388, 464, 469, 476], "wors": [85, 106, 183, 474, 476, 477, 483], "worst": [106, 176, 190, 428, 432, 455, 466, 479, 480, 483], "worth": [79, 102, 117, 149, 193, 261, 268, 269, 283, 384, 434, 435, 462, 463, 464, 467, 478, 483], "worthwhil": [299, 467, 476], "would": [5, 7, 23, 31, 33, 34, 47, 49, 58, 59, 61, 64, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 112, 120, 138, 139, 151, 158, 161, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 193, 196, 199, 200, 202, 203, 205, 207, 208, 212, 213, 225, 226, 228, 230, 234, 235, 242, 243, 245, 247, 250, 253, 255, 258, 262, 267, 268, 269, 272, 275, 276, 283, 292, 293, 305, 307, 308, 313, 319, 320, 322, 330, 331, 332, 333, 337, 338, 340, 341, 342, 343, 344, 345, 346, 348, 352, 353, 355, 356, 358, 362, 365, 369, 376, 381, 382, 384, 386, 387, 388, 394, 395, 400, 403, 405, 408, 410, 412, 413, 421, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "wouldn": [73, 84, 106, 267, 332, 362, 388, 427, 441, 462, 463, 464, 465, 466, 468, 483], "wouter": [462, 463, 466, 467, 468, 469, 478, 481, 483], "wow": 389, "wow64": 405, "wozniak": 477, "wozniski": 483, "wp": 102, "wpar": 483, "wparam": 176, "wr": [102, 463, 483], "wrap": [7, 21, 33, 42, 43, 58, 63, 68, 79, 88, 93, 98, 102, 109, 112, 120, 129, 137, 139, 141, 149, 155, 158, 169, 176, 177, 181, 187, 190, 191, 193, 201, 202, 207, 208, 213, 220, 225, 226, 230, 234, 242, 247, 251, 255, 258, 261, 267, 268, 270, 281, 283, 292, 293, 304, 333, 340, 341, 344, 347, 352, 356, 358, 362, 364, 368, 376, 385, 386, 388, 394, 395, 405, 407, 413, 417, 427, 428, 452, 461, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "wrap_bio": [341, 478, 480, 483], "wrap_futur": [129, 483], "wrap_lenfunc": 483, "wrap_socket": [341, 468, 469, 472, 474, 475, 480, 483], "wrapcol": 143, "wrapcolumn": 190, "wrappabl": 483, "wrapper": [7, 21, 23, 25, 31, 33, 42, 44, 58, 59, 86, 87, 92, 93, 102, 108, 114, 137, 146, 148, 160, 169, 176, 177, 191, 193, 215, 226, 250, 255, 267, 275, 281, 283, 287, 293, 299, 302, 328, 337, 345, 362, 364, 369, 381, 400, 407, 410, 413, 419, 425, 427, 428, 440, 462, 463, 464, 466, 467, 468, 469, 474, 475, 477, 478, 481, 483], "wrapper_assign": 226, "wrapper_descriptor": [255, 466], "wrapper_upd": 226, "wrapperbas": [21, 480, 483], "wrapperdescriptortyp": [385, 480, 483], "wrapperobject": 483, "wrec": 468, "wrefresh": 177, "wright": 483, "wrist": 451, "writabl": [5, 7, 43, 84, 96, 120, 133, 149, 151, 248, 255, 258, 278, 283, 293, 295, 304, 332, 337, 338, 344, 347, 369, 422, 428, 432, 436, 466, 468, 476, 478, 479, 480, 483], "write": [5, 7, 23, 25, 28, 33, 34, 41, 42, 43, 51, 58, 59, 63, 64, 68, 72, 74, 75, 76, 78, 79, 84, 86, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 107, 112, 117, 119, 120, 130, 135, 136, 137, 139, 140, 142, 149, 151, 155, 157, 158, 161, 163, 167, 169, 170, 175, 176, 177, 180, 184, 187, 189, 190, 193, 196, 200, 201, 205, 208, 213, 215, 218, 222, 223, 225, 226, 228, 230, 234, 236, 243, 245, 246, 247, 248, 250, 255, 258, 259, 262, 267, 268, 269, 271, 278, 281, 283, 288, 292, 293, 295, 296, 298, 299, 301, 304, 305, 307, 308, 309, 311, 320, 328, 329, 330, 331, 332, 333, 337, 338, 341, 342, 344, 347, 348, 352, 355, 356, 358, 359, 360, 362, 363, 365, 369, 371, 376, 378, 380, 382, 384, 386, 388, 389, 397, 399, 400, 405, 407, 410, 411, 413, 415, 417, 419, 421, 422, 426, 427, 428, 431, 432, 436, 441, 446, 450, 451, 452, 455, 461, 462, 463, 464, 465, 466, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "write_byt": [278, 296, 478, 483], "write_bytecod": [33, 34, 474], "write_classvar": [481, 482], "write_dequ": [481, 482], "write_dict": [481, 482], "write_docstringdict": 384, "write_eof": [130, 133, 136, 341, 483], "write_glob": [481, 482], "write_histori": [320, 483], "write_history_fil": 320, "write_instancevar": [481, 482], "write_instancevar_slot": [481, 482], "write_lin": 102, "write_list": [481, 482], "write_loc": [481, 482], "write_multiple_item": 441, "write_nonloc": [481, 482], "write_repr": 483, "write_restrict": [58, 474], "write_result": 380, "write_strdict": [481, 482], "write_text": [296, 478, 483], "write_through": [225, 258, 476, 483], "write_to_stream": 169, "writeabl": [176, 225, 258, 348, 483], "writeal": 295, "writeback": 330, "writedoc": 483, "writefram": [117, 349, 401, 477], "writeframesraw": [117, 349, 401, 477], "writehead": [175, 475, 483], "writelin": [130, 133, 136, 158, 190, 258, 462, 483], "writeon": 483, "writepi": [422, 477], "writeplist": [468, 477], "writeplisttobyt": 477, "writeplisttostr": 468, "writer": [42, 68, 73, 76, 109, 126, 136, 149, 158, 170, 175, 193, 246, 251, 258, 293, 319, 411, 413, 416, 455, 465, 474, 478, 480, 483], "writerow": [175, 475, 478, 483], "writestr": [422, 469], "writetransport": [126, 133, 483], "writev": [293, 476, 478, 480, 483], "writexml": [411, 481], "written": [7, 9, 23, 34, 42, 45, 49, 59, 64, 72, 73, 76, 84, 85, 91, 92, 93, 95, 96, 100, 102, 106, 109, 112, 117, 133, 137, 139, 146, 151, 152, 157, 158, 161, 163, 167, 169, 176, 177, 184, 191, 193, 196, 202, 205, 213, 214, 225, 230, 234, 235, 245, 247, 255, 258, 269, 271, 278, 281, 283, 288, 292, 293, 295, 299, 301, 304, 307, 308, 311, 313, 320, 324, 328, 330, 332, 333, 337, 338, 340, 341, 344, 352, 355, 358, 361, 362, 380, 382, 384, 385, 386, 388, 400, 405, 408, 410, 413, 419, 420, 421, 422, 423, 426, 428, 431, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "wrong": [5, 33, 42, 73, 84, 85, 95, 100, 103, 106, 110, 120, 144, 176, 183, 193, 212, 213, 248, 275, 292, 293, 295, 335, 340, 347, 352, 358, 366, 388, 389, 395, 428, 441, 449, 463, 465, 466, 467, 468, 472, 474, 475, 477, 483], "wrong_document_err": 410, "wrongdocumenterr": 410, "wrote": [85, 95, 338, 426, 462, 464, 466, 477, 483], "ws": [344, 394, 419], "ws_col": 361, "ws_comma": 112, "ws_row": 361, "wsa": 483, "wsaconnect": 483, "wsaeinval": 483, "wsaioctl": [337, 468], "wsasend": 483, "wsasendto": 483, "wsgi": [68, 254, 256, 467, 473, 475, 483], "wsgi_app": 467, "wsgi_file_wrapp": 407, "wsgi_multiprocess": 407, "wsgi_multithread": 407, "wsgi_run_onc": 407, "wsgiapplic": 407, "wsgienviron": 407, "wsgiref": [68, 254, 256, 473, 475, 479, 481, 483], "wsgirequesthandl": [407, 483], "wsgiserv": [407, 483], "wshowwindow": 348, "wsign": 72, "wsj": 166, "wsl": [461, 483], "wsock": [126, 133, 136], "wss": [243, 394, 483], "wstop": 293, "wstopsig": 293, "wstr": [64, 472, 474], "wstr_length": 474, "wstrict": 483, "wstring_at": [142, 176], "wt": [149, 225, 234, 270, 343], "wtermsig": 293, "wu": [478, 483], "wulian233": 483, "wundram": 476, "wuntrac": 293, "www": [75, 79, 95, 103, 107, 109, 110, 151, 158, 162, 166, 169, 183, 184, 200, 235, 240, 242, 243, 261, 314, 318, 319, 340, 341, 344, 352, 387, 394, 395, 396, 403, 411, 413, 424, 426, 435, 445, 454, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 478, 480, 483], "www2": [464, 465], "wx": 483, "wxi": 466, "wxpython": 459, "wxpythonwindow": 86, "wzero": 483, "x00": [176, 235, 258, 259, 284, 319, 337, 344, 347, 398, 483], "x00lo": 176, "x00o": 235, "x01": [146, 258, 259, 284, 337, 347, 398], "x02": [247, 259, 284, 337, 347, 398], "x03": [235, 284, 337, 344, 347, 398], "x04": [344, 398, 464], "x05": 398, "x06": [235, 398], "x07": [247, 284, 398], "x08": [106, 347, 398], "x08ar": 262, "x08c": 247, "x08class": 106, "x0b": [143, 344, 398], "x0c": [235, 344, 398], "x0e": 398, "x0f": 398, "x0fk": 235, "x1": [430, 441, 472, 474, 483], "x10": [344, 464], "x11": [106, 369, 376, 395, 403, 483], "x12": [347, 398], "x123456": 462, "x13": 347, "x14": 347, "x15": [235, 347], "x17d": 326, "x1a": 483, "x1b": 483, "x1c": [344, 483], "x1d": [344, 483], "x1e": [235, 344, 483], "x2": [225, 430, 441, 472, 474, 483], "x3": 430, "x32": 347, "x34": 398, "x3e": [238, 240], "x4": 430, "x500": 398, "x509": [341, 395], "x509_asn": 341, "x509_ca": 341, "x509_v_flag_allow_proxy_cert": 483, "x509_v_flag_partial_chain": 483, "x509_v_flag_trusted_first": 483, "x509_verify_param_set1_host": 483, "x509_verify_param_set1_ip": 483, "x509v3": [341, 477], "x56": [398, 462], "x64": [110, 468], "x78": 398, "x7899": 475, "x7b": 483, "x7d": 483, "x7f": 319, "x80": [109, 300, 464], "x80abc": 109, "x80abcd": 109, "x84": [235, 468], "x85": [344, 483], "x86": [107, 176, 300, 347, 456, 461, 468, 473, 480, 483], "x86_64": [72, 96, 355, 456, 478, 481, 483], "x87": 468, "x87_double_round": 469, "x89": 468, "x8b": 326, "x93": 235, "x94": [109, 235], "x95": 235, "x9c": 464, "x_i": 343, "x_ok": [293, 332, 483], "x_root": 369, "xa": 352, "xa5u": 235, "xa6": 235, "xa8": 259, "xac": 109, "xae": 326, "xaf": [235, 468], "xarr": 343, "xatom": 248, "xattr": [362, 483], "xattr_creat": 293, "xattr_replac": 293, "xattr_size_max": 293, "xavier": [472, 477, 479, 480, 483], "xb": [149, 234, 270], "xb4": 109, "xb6": 326, "xb9": 146, "xbar": [343, 483], "xbb": 102, "xbcn": 235, "xbcrdigkeiten": 475, "xbf": 102, "xbm": [206, 249, 369, 375], "xbox": 483, "xc": [85, 352], "xc0": [259, 464], "xc1": 464, "xc3": 475, "xc5": 235, "xc9": 464, "xc_": 369, "xc_hand2": 369, "xcode": 483, "xcor": 384, "xd4": 326, "xdd": 235, "xde": 109, "xdf": [158, 235, 304], "xdg": [476, 483], "xdr": [68, 121, 254, 299, 350], "xdrlib": [68, 121, 254, 350, 473, 474, 483], "xdummi": 384, "xe0": 282, "xe2": [326, 468], "xe3": [326, 468], "xe4": 109, "xe4n": 266, "xe4ssig": 304, "xe8": 344, "xea": 109, "xebp1": 326, "xebr": 326, "xef": [102, 146, 394], "xefxbbxbf": 435, "xenial": 480, "xenix": 212, "xeon": 483, "xf": [292, 440], "xf0": 344, "xf1": 344, "xf2": 344, "xf6stal": 202, "xf7": 235, "xfc": 344, "xfd": 235, "xfe": 235, "xff": [344, 347, 476], "xfs": [215, 293], "xgettext": [230, 483], "xgtitl": [482, 483], "xhdr": 288, "xhh": 483, "xhtm": 395, "xhtml": [68, 110, 238, 239, 254, 273, 314, 395, 410, 411, 413, 475], "xhtml1": [110, 395], "xhtml_namespac": 410, "xi": 413, "xiang": [479, 480, 481, 483], "xiao": [480, 483], "xicluna": [469, 475], "xid_continu": 435, "xid_start": 435, "xin": [472, 483], "xinclud": [68, 273, 483], "xinhang": 483, "xkcd": 326, "xlat": 85, "xlc": 483, "xlib": 369, "xlinker": 72, "xlinux": 465, "xlist": 328, "xml": [14, 68, 80, 95, 106, 109, 158, 225, 254, 256, 258, 273, 304, 327, 395, 418, 451, 452, 461, 463, 464, 465, 466, 467, 468, 469, 473, 475, 483, 484], "xml11": [314, 411, 413], "xml_cquant_non": 314, "xml_cquant_opt": 314, "xml_cquant_plus": 314, "xml_cquant_rep": 314, "xml_ctype_ani": 314, "xml_ctype_choic": 314, "xml_ctype_empti": 314, "xml_ctype_mix": 314, "xml_ctype_nam": 314, "xml_ctype_seq": 314, "xml_data": 413, "xml_declar": [413, 469, 483], "xml_error_": 314, "xml_error_abort": 314, "xml_error_amplification_limit_breach": 314, "xml_error_async_ent": 314, "xml_error_attribute_external_entity_ref": 314, "xml_error_bad_char_ref": 314, "xml_error_binary_entity_ref": 314, "xml_error_cant_change_feature_once_pars": 314, "xml_error_duplicate_attribut": 314, "xml_error_entity_declared_in_p": 314, "xml_error_external_entity_handl": 314, "xml_error_feature_requires_xml_dtd": 314, "xml_error_finish": 314, "xml_error_incomplete_p": 314, "xml_error_incorrect_encod": 314, "xml_error_invalid_argu": 314, "xml_error_invalid_token": 314, "xml_error_junk_after_doc_el": 314, "xml_error_misplaced_xml_pi": 314, "xml_error_no_buff": 314, "xml_error_no_el": 314, "xml_error_no_memori": 314, "xml_error_not_standalon": 314, "xml_error_not_suspend": 314, "xml_error_param_entity_ref": 314, "xml_error_partial_char": 314, "xml_error_publicid": 314, "xml_error_recursive_entity_ref": 314, "xml_error_reserved_namespace_uri": 314, "xml_error_reserved_prefix_xml": 314, "xml_error_reserved_prefix_xmln": 314, "xml_error_suspend": 314, "xml_error_suspend_p": 314, "xml_error_syntax": 314, "xml_error_tag_mismatch": 314, "xml_error_text_decl": 314, "xml_error_unbound_prefix": 314, "xml_error_unclosed_cdata_sect": 314, "xml_error_unclosed_token": 314, "xml_error_undeclaring_prefix": 314, "xml_error_undefined_ent": 314, "xml_error_unexpected_st": 314, "xml_error_unknown_encod": 314, "xml_error_xml_decl": 314, "xml_namespac": 410, "xml_ns": 462, "xml_param_entity_parsing_alway": 314, "xml_param_entity_parsing_nev": 314, "xml_param_entity_parsing_unless_standalon": 314, "xml_poor_entropi": 483, "xml_sethashsalt": 483, "xml_text": 413, "xmlcharrefreplac": [109, 158, 225, 258, 344, 465, 483], "xmlcharrefreplace_error": 158, "xmldeclhandl": 314, "xmlfilterbas": 417, "xmlgener": 417, "xmlhttprequest": 257, "xmlid": 413, "xmllib": 462, "xmlns": [314, 395, 413, 469, 483], "xmlns_namespac": 410, "xmlpars": 462, "xmlparser": [68, 273, 469, 477, 481, 483], "xmlparsertyp": 314, "xmlproc": 462, "xmlpullpars": [68, 273, 477, 483], "xmlreader": [68, 254, 273, 412, 414, 415, 417, 478], "xmlrole": 462, "xmlrpc": [68, 254, 256, 283, 299, 409, 426, 451, 464, 470, 477, 483], "xmlrpclib": [283, 464, 465, 466, 467, 468, 469, 470, 483], "xmltestdata": 426, "xmltok": 462, "xmpeg": 272, "xn": [158, 341, 465, 480], "xnn": 109, "xof": [482, 483], "xoff": 178, "xon": 178, "xoption": [34, 59, 455, 473, 483], "xor": [186, 211, 291, 344, 430], "xor_expr": 430, "xover": 288, "xp": [101, 269, 465, 478], "xpath": [68, 273, 409, 482, 483], "xpm": 375, "xpointer": 413, "xpot": 230, "xpystat": 483, "xpython": 461, "xr": [89, 223, 332, 475], "xrang": [112, 463, 464, 465, 466, 470], "xrbl82xr": 395, "xreadlin": [112, 463, 465, 466], "xref": 288, "xs": 108, "xscrollcommand": 376, "xsl": 464, "xt": [81, 149, 234, 270], "xtaddinput": 81, "xterm": [92, 177, 483], "xu": [482, 483], "xuehai": 483, "xvec": 440, "xview": 376, "xx": [77, 120, 245, 293, 319, 330, 394, 461, 483], "xxhash": 483, "xxlimit": [100, 483], "xxmodul": 73, "xxx": [63, 101, 102, 120, 352, 432, 456, 468, 469, 471, 476, 477, 483], "xxxmodul": 476, "xxxx": [158, 293, 435, 483], "xxxxxxxx": [158, 293, 435], "xxxxxxxxxxxx": 293, "xy": [77, 261, 334, 355, 386], "xy_coordin": 481, "xyo": 103, "xyz": [85, 120, 267, 268, 344, 388, 475, 483], "xyzyx": 120, "xyzz": 120, "xz": [93, 270, 332, 358, 386, 475, 476, 478, 483], "xzf": 460, "xztar": [332, 478, 483], "y1": [150, 430, 441, 472, 474, 483], "y2": [150, 225, 441, 472, 474, 483], "y2038": 483, "y2k38": 483, "y_n": 483, "y_root": 369, "yaari": [478, 483], "yahoo": [80, 184, 467, 468], "yair": 483, "yakov": 462, "yamamoto": [469, 476, 480, 483], "yaml": [101, 120, 251, 262, 268, 469, 472, 475], "yan": [472, 483], "yang": 483, "yann": [478, 479, 483], "yapaxi": 176, "yaroslav": [472, 483], "yarr": 343, "yash": [481, 483], "yasskin": [468, 469, 475], "yay": [139, 449], "yc": 85, "ycor": 384, "yday": 183, "ydummi": 384, "ye": [441, 473, 483], "year": [20, 85, 93, 106, 150, 183, 193, 262, 340, 343, 366, 386, 413, 422, 435, 446, 461, 463, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 481, 482, 483], "yeardatescalendar": 150, "yeardays2calendar": 150, "yeardayscalendar": 150, "yee": [462, 463, 464, 467], "yello": 85, "yellow": [68, 92, 94, 147, 160, 177, 254, 350, 384, 452, 466, 474], "yen": [480, 483], "yeo": 483, "yeojin": 483, "yes": [7, 73, 79, 85, 98, 167, 186, 193, 266, 267, 314, 319, 341, 369, 373, 405, 407, 411, 413, 441, 446, 449, 456, 461, 464, 475], "yes_vot": 446, "yesexpr": 266, "yesno": 373, "yesnocancel": 373, "yesterday": 483, "yet": [5, 13, 23, 28, 31, 33, 34, 45, 63, 64, 73, 79, 84, 85, 92, 94, 100, 101, 106, 133, 137, 139, 151, 169, 176, 177, 186, 196, 197, 205, 213, 232, 250, 268, 283, 293, 295, 297, 308, 334, 335, 341, 344, 348, 365, 381, 386, 410, 413, 429, 431, 436, 462, 464, 465, 467, 469, 474, 477, 479, 480, 482, 483], "yet_another_extens": 167, "yi": 109, "yield": [9, 36, 64, 68, 75, 85, 87, 95, 116, 122, 133, 138, 139, 149, 151, 160, 167, 169, 183, 190, 191, 197, 207, 225, 226, 232, 235, 242, 250, 253, 255, 258, 261, 262, 271, 283, 293, 296, 299, 302, 319, 331, 344, 347, 353, 358, 362, 378, 381, 386, 389, 390, 394, 407, 410, 413, 419, 427, 428, 429, 431, 433, 435, 440, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "yield_atom": 430, "yield_expr": 431, "yield_express": [430, 435, 436], "yield_from": [430, 473, 483], "yield_stmt": [431, 436], "yield_valu": [191, 483], "yieldfrom": 122, "yieldtyp": 386, "yilei": 483, "ying": 483, "yinyang": 384, "yiq": [162, 477], "yiq_to_rgb": 162, "ym": 430, "yogesh": 477, "yolanda": 483, "yonatan": 483, "yongzhi": 483, "yoni": 483, "york": 183, "you": [1, 5, 13, 22, 23, 25, 26, 31, 33, 34, 39, 41, 42, 43, 45, 56, 58, 59, 60, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 87, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 114, 115, 117, 120, 133, 140, 141, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 190, 192, 193, 195, 196, 200, 201, 202, 205, 206, 207, 208, 213, 214, 215, 218, 221, 225, 226, 230, 234, 235, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 255, 258, 259, 262, 265, 266, 267, 268, 269, 270, 271, 272, 278, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 313, 314, 319, 320, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 355, 358, 359, 362, 364, 365, 369, 371, 375, 376, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 402, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 417, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 434, 436, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "your": [5, 22, 33, 59, 63, 68, 72, 73, 75, 76, 77, 79, 84, 85, 89, 92, 94, 95, 96, 100, 101, 103, 106, 109, 110, 112, 118, 120, 133, 141, 152, 159, 167, 177, 181, 183, 191, 193, 196, 200, 201, 202, 205, 207, 213, 222, 226, 234, 235, 242, 243, 244, 245, 246, 247, 250, 255, 262, 266, 267, 268, 269, 271, 278, 283, 293, 296, 297, 299, 305, 308, 313, 319, 320, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 347, 348, 354, 359, 361, 362, 364, 365, 366, 369, 371, 375, 382, 384, 386, 388, 394, 395, 400, 410, 411, 413, 415, 420, 421, 422, 425, 426, 434, 436, 441, 442, 449, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "your_computed_bia": 308, "your_dict": 193, "your_integer_time_func": 308, "your_time_func": 308, "yourhostnam": 151, "yournam": 86, "yourscript": 292, "yourself": [5, 33, 43, 72, 85, 92, 94, 106, 109, 155, 177, 179, 193, 201, 250, 262, 266, 268, 269, 292, 297, 328, 335, 341, 352, 388, 410, 461, 467, 470, 475], "yourtransform": 122, "youtub": [109, 261], "yp": 233, "ypythonpath": 34, "yscrollcommand": 376, "ysj": [477, 483], "ython": 479, "yu": 483, "yuan": 483, "yuck": [96, 450], "yum": 98, "yumm": 200, "yunwon": 483, "yuor": 319, "yup": 386, "yurchak": 483, "yuri": [472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "yurii": [472, 473, 482, 483], "yvec": 440, "yves": [466, 473], "yview": 376, "yvind": 476, "ywjj": 476, "yxo": 103, "yy": 120, "yyy": [120, 432], "yyyi": [183, 248], "yyyyyi": 183, "yyyyyyyan": 483, "z0": [106, 109, 173, 319, 345, 435], "z123fg": 344, "z1spam": 344, "z9t": 235, "z_": [319, 435], "z_0": 319, "z_best_compress": 424, "z_best_spe": 424, "z_block": 424, "z_default_compress": 424, "z_default_strategi": 424, "z_filter": 424, "z_finish": 424, "z_fix": 424, "z_full_flush": 424, "z_huffman_on": 424, "z_no_compress": 424, "z_no_flush": 424, "z_partial_flush": 424, "z_rle": 424, "z_sync_flush": 424, "za": [106, 109, 173, 319, 344, 435, 464], "zab": 102, "zabka": 483, "zac": [473, 483], "zach": [477, 483], "zachari": [469, 477, 478, 480, 483], "zack": 477, "zackeri": [472, 473, 481, 482, 483], "zadka": [462, 463, 464, 466], "zakharenko": 483, "zaki": 483, "zane": 483, "zbcefg": 344, "zbigniew": [476, 483], "zbyszek": 483, "zc": 167, "zcat": 102, "zd": [9, 483], "zdict": [424, 483], "zebra": [102, 160, 299], "zeitouni": 483, "zeke": 108, "zekun": 480, "zen": [87, 114], "zephyr": 102, "zero": [5, 7, 18, 23, 25, 26, 28, 31, 33, 34, 35, 36, 39, 42, 45, 49, 58, 59, 61, 63, 64, 66, 68, 73, 75, 76, 84, 85, 87, 94, 99, 100, 101, 102, 106, 109, 120, 133, 139, 141, 143, 146, 155, 158, 160, 176, 177, 181, 183, 186, 190, 191, 193, 196, 209, 213, 225, 226, 234, 235, 242, 248, 250, 258, 259, 261, 269, 271, 275, 278, 283, 288, 292, 293, 297, 299, 305, 314, 319, 320, 328, 332, 333, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 358, 361, 364, 365, 366, 376, 384, 388, 397, 405, 410, 413, 422, 428, 429, 430, 431, 434, 435, 436, 441, 443, 448, 455, 462, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "zero_all_var": 386, "zeroblob": 340, "zerocopybytearray": 299, "zerodict": 467, "zerodivisionerror": [23, 92, 102, 183, 186, 213, 221, 283, 297, 333, 429, 430, 436, 443, 450, 451, 465, 471, 473, 475, 478, 482, 483], "zeromq": 68, "zeromqsockethandl": [102, 483], "zeromqsocketlisten": [102, 483], "zesti": 102, "zevenhoven": 479, "zf": 422, "zfill": [344, 446, 465], "zfs": 483, "zgf0ysb0bybizsblbmnvzgvk": 143, "zh": 1, "zhang": [474, 479, 480, 481, 483], "zhao": 483, "zhime": 480, "zhu": 483, "zi": 64, "ziad": [468, 469, 475, 478, 483], "ziegler": 469, "ziga": 469, "zijlstra": [472, 473, 474, 479, 480, 483], "zimport": 472, "zinfo": 483, "zinfo_or_arcnam": 422, "zinfo_or_directori": 422, "zio": 473, "zip": [68, 85, 87, 95, 102, 112, 114, 119, 146, 158, 160, 166, 192, 225, 250, 251, 252, 253, 254, 261, 275, 280, 327, 332, 340, 344, 345, 354, 358, 362, 409, 432, 440, 442, 450, 452, 453, 461, 462, 466, 467, 468, 469, 470, 471, 472, 473, 475, 478, 479, 480, 483, 484], "zip64": [422, 467, 483], "zip_basenam": 362, "zip_bzip2": 422, "zip_defl": [422, 452], "zip_dir": 362, "zip_longest": [225, 261, 470, 483], "zip_lzma": 422, "zip_mod": 483, "zip_stor": [422, 483], "zipapp": [68, 114, 156, 192, 254, 483], "zipbomb": 483, "zipextfil": [422, 475, 483], "zipfil": [68, 119, 156, 254, 324, 327, 332, 358, 400, 421, 432, 451, 452, 455, 462, 467, 468, 469, 471, 483], "zipimport": [68, 176, 252, 254, 280, 302, 432, 465, 467, 471, 483], "zipimporter2": 483, "zipimporterror": 423, "zipinfo": [68, 119, 468, 479, 483], "zipp": [422, 483], "zlib": [33, 68, 84, 106, 119, 158, 234, 235, 254, 332, 362, 422, 451, 464, 465, 467, 472, 473, 482, 483], "zlib_cflag": 483, "zlib_codec": 158, "zlib_lib": 483, "zlib_runtime_vers": [424, 476, 483], "zlib_vers": 424, "zmiev": 474, "zmod": 462, "zmq": 102, "zo": 108, "zodb": 464, "zombi": [247, 283, 338, 362, 467, 476, 483], "zone": [20, 183, 209, 259, 337, 366, 425, 426, 456, 465, 467, 469, 482, 483], "zoneh": 106, "zoneinfo": [68, 182, 183, 254, 366, 456, 483], "zoneinfonotfounderror": 425, "zonem": 106, "zonen": 106, "zongker": 483, "zoo": [384, 427], "zooko": [235, 426], "zoom": [247, 483], "zoot": 344, "zope": [80, 426, 463, 464, 475], "zope9": 475, "zope9inst": 475, "zope9instal": 475, "zorin": 474, "zs": 344, "zscore": [343, 483], "zsh": 399, "zsolt": [469, 483], "zu": [9, 483], "zvi": 483, "zwerschk": 483, "zwieten": 483, "zyz": 344, "zzdummi": [247, 483], "zzif": 102, "zzz": [137, 432]}, "titles": ["\u95dc\u65bc\u9019\u4e9b\u8aaa\u660e\u6587\u4ef6", "\u8655\u7406\u932f\u8aa4 (Bug)", "\u62bd\u8c61\u7269\u4ef6\u5c64 (Abstract Objects Layer)", "\u5728 heap \u4e0a\u5206\u914d\u7269\u4ef6", "API \u548c ABI \u7248\u672c\u7ba1\u7406", "\u5256\u6790\u5f15\u6578\u8207\u5efa\u7f6e\u6578\u503c", "Boolean\uff08\u5e03\u6797\uff09\u7269\u4ef6", "\u7de9\u885d\u5354\u5b9a (Buffer Protocol)", "\u4f4d\u5143\u7d44\u9663\u5217\u7269\u4ef6 (Byte Array Objects)", "\u4f4d\u5143\u7d44\u7269\u4ef6 (Bytes Objects)", "\u547c\u53eb\u5354\u5b9a (Call Protocol)", "Capsules", "Cell \u7269\u4ef6", "\u7a0b\u5f0f\u78bc\u7269\u4ef6", "\u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u652f\u63f4\u51fd\u5f0f", "\u8907\u6578\u7269\u4ef6", "\u5177\u9ad4\u7269\u4ef6\u5c64", "\u60c5\u5883\u8b8a\u6578\u7269\u4ef6", "\u5b57\u4e32\u8f49\u63db\u8207\u683c\u5f0f\u5316", "Coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6", "DateTime \u7269\u4ef6", "Descriptor\uff08\u63cf\u8ff0\u5668\uff09\u7269\u4ef6", "\u5b57\u5178\u7269\u4ef6", "\u4f8b\u5916\u8655\u7406", "\u6a94\u6848\u7269\u4ef6 (File Objects)", "\u6d6e\u9ede\u6578\uff08Floating Point\uff09\u7269\u4ef6", "Frame \u7269\u4ef6", "\u51fd\u5f0f\u7269\u4ef6 (Function Objects)", "\u5faa\u74b0\u5783\u573e\u56de\u6536\u7684\u652f\u63f4", "\u7522\u751f\u5668 (Generator) \u7269\u4ef6", "PyHash API", "\u5f15\u5165\u6a21\u7d44", "Python/C API \u53c3\u8003\u624b\u518a", "Initialization, Finalization, and Threads", "Python \u521d\u59cb\u5316\u8a2d\u5b9a", "\u7c21\u4ecb", "\u758a\u4ee3\u5668\u5354\u8b70", "\u758a\u4ee3\u5668\uff08Iterator\uff09\u7269\u4ef6", "List\uff08\u4e32\u5217\uff09\u7269\u4ef6", "\u6574\u6578\u7269\u4ef6", "\u5c0d\u6620\u5354\u5b9a", "\u8cc7\u6599 marshal \u7684\u652f\u63f4", "\u8a18\u61b6\u9ad4\u7ba1\u7406", "MemoryView \u7269\u4ef6", "\u5be6\u4f8b\u65b9\u6cd5\u7269\u4ef6 (Instance Method Objects)", "\u6a21\u7d44\u7269\u4ef6\u6a21\u7d44", "None \u7269\u4ef6", "\u6578\u5b57\u5354\u5b9a", "\u820a\u5f0f\u7de9\u885d\u5354\u5b9a (Buffer Protocol)", "\u7269\u4ef6\u5354\u5b9a", "Object Implementation Support", "Support for Perf Maps", "\u53c3\u7167\u8a08\u6578", "Reflection", "\u5e8f\u5217\u5354\u5b9a", "\u96c6\u5408\u7269\u4ef6", "\u5207\u7247\u7269\u4ef6", "C API \u7a69\u5b9a\u6027", "\u901a\u7528\u7269\u4ef6\u7d50\u69cb", "\u4f5c\u696d\u7cfb\u7d71\u5de5\u5177", "Tuple\uff08\u5143\u7d44\uff09\u7269\u4ef6", "\u578b\u5225\u7269\u4ef6", "\u578b\u5225\u63d0\u793a\u7269\u4ef6", "\u578b\u5225\u7269\u4ef6", "Unicode \u7269\u4ef6\u8207\u7de8\u89e3\u78bc\u5668", "\u5de5\u5177", "The Very High Level Layer", "\u5f31\u53c3\u7167\u7269\u4ef6", "Python \u8aaa\u660e\u6587\u4ef6\u5167\u5bb9", "\u7248\u6b0a\u5ba3\u544a", "\u767c\u5e03 Python \u6a21\u7d44", "4. \u5efa\u7acb C \u8207 C++ \u64f4\u5145\u5957\u4ef6", "1. \u5728\u5176\u5b83 App \u5167\u5d4c\u5165 Python", "1. \u4ee5 C \u6216 C++ \u64f4\u5145 Python", "\u64f4\u5145\u548c\u5d4c\u5165 Python \u76f4\u8b6f\u5668", "3. Defining Extension Types: Assorted Topics", "2. Defining Extension Types: Tutorial", "5. \u5efa\u7f6e Windows \u4e0a\u7684 C \u548c C++ \u64f4\u5145", "\u8a2d\u8a08\u548c\u6b77\u53f2\u5e38\u898b\u554f\u7b54\u96c6", "\u64f4\u5145/\u5d4c\u5165\u5e38\u898b\u554f\u984c\u96c6", "\u4e00\u822c\u7684 Python \u5e38\u898b\u554f\u7b54\u96c6", "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\u5e38\u898b\u554f\u7b54\u96c6", "Python \u5e38\u898b\u554f\u984c", "\u300c\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a\uff1f\u300d\u5e38\u898b\u554f\u7b54\u96c6", "\u51fd\u5f0f\u5eab\u548c\u64f4\u5145\u529f\u80fd\u7684\u5e38\u898b\u554f\u984c", "\u7a0b\u5f0f\u958b\u767c\u5e38\u898b\u554f\u7b54\u96c6", "\u5728 Windows \u4f7f\u7528 Python \u7684\u5e38\u898b\u554f\u7b54\u96c6", "\u8853\u8a9e\u8868", "\u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10", "Argparse \u6559\u5b78", "Argument Clinic \u6307\u5357", "\u9077\u79fb\u5ef6\u4f38\u6a21\u7d44\u5230 Python 3", "Curses Programming with Python", "\u63cf\u8ff0\u5668 (Descriptor) \u6307\u5357", "Enum HOWTO", "\u51fd\u5f0f\u7de8\u7a0b HOWTO", "Debugging C API extensions and CPython Internals with GDB", "Python \u5982\u4f55\u9054\u6210\u4efb\u52d9", "\u4f7f\u7528 DTrace \u548c SystemTap \u6aa2\u6e2c CPython", "ipaddress \u6a21\u7d44\u4ecb\u7d39", "\u9694\u96e2\u64f4\u5145\u6a21\u7d44", "\u5982\u4f55\u4f7f\u7528 Logging \u6a21\u7d44", "Logging Cookbook", "The Python 2.3 Method Resolution Order", "Python \u5c0d Linux perf \u5206\u6790\u5668\u7684\u652f\u63f4", "\u5982\u4f55\u5c07 Python 2 \u7684\u7a0b\u5f0f\u78bc\u79fb\u690d\u5230 Python 3", "\u5982\u4f55\u4f7f\u7528\u6b63\u898f\u8868\u9054\u5f0f", "Socket \u7a0b\u5f0f\u8a2d\u8a08\u6307\u5357", "\u6392\u5e8f\u6280\u6cd5", "Unicode HOWTO", "\u5982\u4f55\u4f7f\u7528 urllib \u5957\u4ef6\u53d6\u5f97\u7db2\u8def\u8cc7\u6e90", "\u5b89\u88dd Python \u6a21\u7d44", "2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3", "__future__ --- Future \u9673\u8ff0\u5f0f\u5b9a\u7fa9", "__main__ --- \u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883", "_thread --- \u4f4e\u968e\u57f7\u884c\u7dd2 API", "abc --- \u62bd\u8c61\u57fa\u5e95\u985e\u5225", "aifc --- \u8b80\u5beb AIFF \u8207 AIFC \u6a94\u6848", "\u901a\u7528\u4f5c\u696d\u7cfb\u7d71\u670d\u52d9", "\u8cc7\u6599\u58d3\u7e2e\u8207\u4fdd\u5b58", "argparse --- Parser for command-line options, arguments and sub-commands", "array --- \u9ad8\u6548\u7387\u7684\u6578\u503c\u578b\u9663\u5217", "ast --- \u62bd\u8c61\u8a9e\u6cd5\u6a39 (Abstract Syntax Trees)", "asyncio --- \u975e\u540c\u6b65 I/O", "\u9ad8\u968e API \u7d22\u5f15", "\u4f7f\u7528 asyncio \u958b\u767c", "\u4e8b\u4ef6\u8ff4\u5708", "\u4f8b\u5916", "\u64f4\u5145", "Futures", "\u4f4e\u968e API \u7d22\u5f15", "\u5e73\u81fa\u652f\u63f4", "Policies", "\u50b3\u8f38\u8207\u5354\u5b9a", "\u4f47\u5217 (Queues)", "Runners (\u57f7\u884c\u5668)", "\u4e32\u6d41", "\u5b50\u884c\u7a0b", "\u540c\u6b65\u5316\u539f\u59cb\u7269\u4ef6 (Synchronization Primitives)", "\u5354\u7a0b\u8207\u4efb\u52d9", "atexit --- \u9000\u51fa\u8655\u7406\u51fd\u5f0f", "audioop --- \u64cd\u4f5c\u539f\u59cb\u8072\u97f3\u6a94\u6848", "\u7a3d\u6838\u4e8b\u4ef6\u8868", "base64 --- Base16\u3001Base32\u3001Base64\u3001Base85 \u8cc7\u6599\u7de8\u78bc", "bdb --- \u5075\u932f\u5668\u6846\u67b6", "\u4e8c\u9032\u4f4d\u8cc7\u6599\u670d\u52d9", "binascii --- \u5728\u4e8c\u9032\u4f4d\u5236\u548c ASCII \u4e4b\u9593\u8f49\u63db", "bisect --- \u9663\u5217\u4e8c\u5206\u6f14\u7b97\u6cd5 (Array bisection algorithm)", "builtins --- \u5167\u5efa\u7269\u4ef6", "bz2 --- bzip2 \u58d3\u7e2e\u7684\u652f\u63f4", "calendar --- \u65e5\u66c6\u76f8\u95dc\u51fd\u5f0f", "cgi --- \u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\u652f\u63f4", "cgitb --- CGI \u8173\u672c\u7684\u56de\u6eaf (traceback) \u7ba1\u7406\u7a0b\u5f0f", "chunk --- \u8b80\u53d6 IFF \u5206\u584a\u8cc7\u6599", "cmath --- \u8907\u6578\u7684\u6578\u5b78\u51fd\u5f0f", "cmd --- \u4ee5\u5217\u70ba\u5c0e\u5411\u7684\u6307\u4ee4\u76f4\u8b6f\u5668\u652f\u63f4", "\u6a21\u7d44\u547d\u4ee4\u5217\u4ecb\u9762", "code --- \u76f4\u8b6f\u5668\u57fa\u5e95\u985e\u5225", "codecs --- \u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u57fa\u5e95\u985e\u5225", "codeop --- \u7de8\u8b6f Python \u7a0b\u5f0f\u78bc", "collections --- \u5bb9\u5668\u8cc7\u6599\u578b\u614b", "collections.abc --- \u5bb9\u5668\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "colorsys --- \u984f\u8272\u7cfb\u7d71\u9593\u7684\u8f49\u63db", "compileall --- \u4f4d\u5143\u7d44\u7de8\u8b6f Python \u51fd\u5f0f\u5eab", "\u4e26\u884c\u57f7\u884c (Concurrent Execution)", "concurrent \u5957\u4ef6", "concurrent.futures --- \u555f\u52d5\u5e73\u884c\u4efb\u52d9", "configparser --- \u8a2d\u5b9a\u6a94\u5256\u6790\u5668", "\u5167\u5efa\u5e38\u6578", "contextlib --- Utilities for with-statement contexts", "contextvars --- \u60c5\u5883\u8b8a\u6578", "copy --- \u6dfa\u5c64 (shallow) \u548c\u6df1\u5c64 (deep) \u8907\u88fd\u64cd\u4f5c", "copyreg --- \u8a3b\u518a pickle \u652f\u63f4\u51fd\u5f0f", "crypt --- \u7528\u65bc\u6aa2\u67e5 Unix \u5bc6\u78bc\u7684\u51fd\u5f0f", "\u52a0\u5bc6\u670d\u52d9", "csv --- CSV \u6a94\u6848\u8b80\u53d6\u53ca\u5beb\u5165", "ctypes --- \u7528\u65bc Python \u7684\u5916\u90e8\u51fd\u5f0f\u5eab", "curses --- \u5b57\u5143\u5132\u5b58\u683c\u986f\u793a\u7684\u7d42\u7aef\u8655\u7406", "curses.ascii --- ASCII \u5b57\u5143\u7684\u5de5\u5177\u7a0b\u5f0f", "curses.panel --- curses \u7684\u9762\u677f\u5806\u758a\u64f4\u5145", "\u81ea\u8a02 Python \u76f4\u8b6f\u5668", "dataclasses --- Data Classes", "\u8cc7\u6599\u578b\u5225", "datetime --- \u65e5\u671f\u8207\u6642\u9593\u7684\u57fa\u672c\u578b\u5225", "dbm --- Unix "databases" \u7684\u4ecb\u9762", "\u9664\u932f\u8207\u6548\u80fd\u5206\u6790", "decimal --- \u5341\u9032\u4f4d\u56fa\u5b9a\u9ede\u548c\u6d6e\u9ede\u904b\u7b97", "\u958b\u767c\u5de5\u5177", "Python \u958b\u767c\u6a21\u5f0f", "Tkinter \u5c0d\u8a71\u6846", "difflib --- \u8a08\u7b97\u5dee\u7570\u7684\u8f14\u52a9\u5de5\u5177", "dis --- Python bytecode \u7684\u53cd\u7d44\u8b6f\u5668", "\u8edf\u9ad4\u5c01\u88dd\u8207\u767c\u5e03", "doctest --- \u6e2c\u8a66\u4e92\u52d5\u5f0f Python \u7bc4\u4f8b", "email --- \u90f5\u4ef6\u548c MIME \u8655\u7406\u5957\u4ef6", "email.charset\uff1a\u8868\u793a\u5b57\u5143\u96c6\u5408", "email.message.Message: Representing an email message using the compat32 API", "email.contentmanager\uff1a\u7ba1\u7406 MIME \u5167\u5bb9", "email.encoders\uff1a\u7de8\u78bc\u5668", "email.errors\uff1a\u4f8b\u5916\u548c\u7f3a\u9677\u985e\u5225", "email\uff1a\u7bc4\u4f8b", "email.generator\uff1a\u7522\u751f MIME \u6587\u4ef6", "email.header\uff1a\u570b\u969b\u5316\u6a19\u982d", "email.headerregistry\uff1a\u81ea\u8a02\u6a19\u982d\u7269\u4ef6", "email.iterators\uff1a\u758a\u4ee3\u5668", "email.message\uff1a\u8868\u793a\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f", "email.mime\uff1a\u5f9e\u982d\u958b\u59cb\u5efa\u7acb\u96fb\u5b50\u90f5\u4ef6\u548c MIME \u7269\u4ef6", "email.parser\uff1a\u5256\u6790\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f", "email.policy: Policy Objects", "email.utils\uff1a\u96dc\u9805\u5de5\u5177", "ensurepip --- pip \u5b89\u88dd\u5668\u7684\u521d\u59cb\u5efa\u7f6e (bootstrapping)", "enum --- \u5c0d\u5217\u8209\u7684\u652f\u63f4", "errno --- \u6a19\u6e96 errno \u7cfb\u7d71\u7b26\u865f", "\u5167\u5efa\u7684\u4f8b\u5916", "faulthandler --- \u50be\u5370 Python \u56de\u6eaf", "fcntl --- fcntl \u548c ioctl \u7cfb\u7d71\u547c\u53eb", "filecmp --- \u6a94\u6848\u8207\u76ee\u9304\u6bd4\u8f03", "\u6a94\u6848\u683c\u5f0f", "fileinput --- \u9010\u5217\u758a\u4ee3\u591a\u500b\u8f38\u5165\u4e32\u6d41", "\u6a94\u6848\u8207\u76ee\u9304\u5b58\u53d6", "fnmatch --- Unix \u6a94\u6848\u540d\u7a31\u6a21\u5f0f\u6bd4\u5c0d", "fractions --- \u6709\u7406\u6578", "\u7a0b\u5f0f\u6846\u67b6", "ftplib --- FTP \u5354\u5b9a\u7528\u6236\u7aef", "\u51fd\u5f0f\u7de8\u7a0b\u6a21\u7d44", "\u5167\u5efa\u51fd\u5f0f", "functools --- Higher-order functions and operations on callable objects", "gc --- \u5783\u573e\u56de\u6536\u5668\u4ecb\u9762 (Garbage Collector interface)", "getopt --- \u7528\u65bc\u547d\u4ee4\u5217\u9078\u9805\u7684 C \u98a8\u683c\u5256\u6790\u5668", "getpass --- \u53ef\u651c\u5f0f\u5bc6\u78bc\u8f38\u5165\u5de5\u5177", "gettext --- \u591a\u8a9e\u8a00\u570b\u969b\u5316\u670d\u52d9", "glob --- Unix \u98a8\u683c\u7684\u8def\u5f91\u540d\u7a31\u6a21\u5f0f\u64f4\u5c55", "graphlib \u2014-- \u4f7f\u7528\u985e\u5716 (graph-like) \u7d50\u69cb\u9032\u884c\u64cd\u4f5c\u7684\u529f\u80fd", "grp --- \u7fa4\u7d44\u8cc7\u6599\u5eab", "gzip --- gzip \u6a94\u6848\u7684\u652f\u63f4", "hashlib --- \u5b89\u5168\u96dc\u6e4a\u8207\u8a0a\u606f\u6458\u8981", "heapq --- \u5806\u7a4d\u4f47\u5217 (heap queue) \u6f14\u7b97\u6cd5", "hmac --- \u57fa\u65bc\u91d1\u9470\u96dc\u6e4a\u7684\u8a0a\u606f\u9a57\u8b49", "html --- \u8d85\u9023\u7d50\u6a19\u8a18\u8a9e\u8a00 (HTML) \u652f\u63f4", "html.entities --- HTML \u4e00\u822c\u5be6\u9ad4\u7684\u5b9a\u7fa9", "html.parser --- \u7c21\u55ae\u7684 HTML \u548c XHTML \u5256\u6790\u5668", "http --- HTTP \u6a21\u7d44", "http.client --- HTTP \u5354\u5b9a\u7528\u6236\u7aef", "http.cookiejar --- HTTP \u5ba2\u6236\u7aef\u7684 Cookie \u8655\u7406", "http.cookies --- HTTP \u72c0\u614b\u7ba1\u7406", "http.server \u2014 HTTP \u4f3a\u670d\u5668", "\u570b\u969b\u5316", "IDLE", "imaplib --- IMAP4 \u5354\u5b9a\u5ba2\u6236\u7aef", "imghdr --- \u63a8\u6e2c\u5716\u7247\u7a2e\u985e", "importlib --- import \u7684\u5be6\u4f5c", "importlib.metadata -- \u5b58\u53d6\u5957\u4ef6\u7684\u5143\u8cc7\u6599", "importlib.resources -- Package resource reading, opening and access", "importlib.resources.abc -- \u8cc7\u6e90\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "Python \u6a19\u6e96\u51fd\u5f0f\u5eab (Standard Library)", "inspect --- \u6aa2\u8996\u6d3b\u52d5\u7269\u4ef6", "\u7db2\u8def\u5354\u5b9a (Internet protocols) \u53ca\u652f\u63f4", "\u7c21\u4ecb", "io \u2014 \u8655\u7406\u8cc7\u6599\u4e32\u6d41\u7684\u6838\u5fc3\u5de5\u5177", "ipaddress --- IPv4/IPv6 \u64cd\u4f5c\u51fd\u5f0f\u5eab", "Networking and Interprocess Communication", "itertools --- \u5efa\u7acb\u7522\u751f\u9ad8\u6548\u7387\u8ff4\u5708\u4e4b\u758a\u4ee3\u5668\u7684\u51fd\u5f0f", "json --- JSON \u7de8\u78bc\u5668\u8207\u89e3\u78bc\u5668", "keyword --- \u6aa2\u9a57 Python \u95dc\u9375\u5b57", "Python \u8a9e\u8a00\u670d\u52d9", "linecache --- \u96a8\u6a5f\u5b58\u53d6\u6587\u5b57\u5217", "locale --- \u570b\u969b\u5316\u670d\u52d9", "logging --- Python \u7684\u65e5\u8a8c\u8a18\u9304\u5de5\u5177", "logging.config --- \u65e5\u8a8c\u8a18\u9304\u914d\u7f6e", "logging.handlers --- \u65e5\u8a8c\u7d00\u9304\u8655\u7406\u5668", "lzma --- \u4f7f\u7528 LZMA \u6f14\u7b97\u6cd5\u9032\u884c\u58d3\u7e2e", "mailbox --- \u4ee5\u5404\u7a2e\u683c\u5f0f\u64cd\u4f5c\u90f5\u4ef6\u4fe1\u7bb1", "mailcap --- Mailcap \u6a94\u6848\u8655\u7406", "Structured Markup Processing Tools", "marshal --- \u5185\u90e8 Python \u7269\u4ef6\u5e8f\u5217\u5316", "math --- \u6578\u5b78\u51fd\u5f0f", "mimetypes --- \u5c07\u6a94\u6848\u540d\u7a31\u5c0d\u6620\u5230 MIME \u985e\u578b", "\u591a\u5a92\u9ad4\u670d\u52d9", "mmap --- \u8a18\u61b6\u9ad4\u6620\u5c04\u6a94\u6848\u7684\u652f\u63f4", "modulefinder --- \u641c\u5c0b\u8173\u672c\u6240\u4f7f\u7528\u7684\u6a21\u7d44", "\u5f15\u5165\u6a21\u7d44", "msilib --- \u8b80\u5beb Microsoft Installer \u6a94\u6848", "msvcrt --- MS VC++ runtime \u63d0\u4f9b\u7684\u6709\u7528\u4f8b\u7a0b", "multiprocessing --- \u4ee5\u884c\u7a0b\u70ba\u57fa\u790e\u7684\u5e73\u884c\u6027", "multiprocessing.shared_memory --- \u5c0d\u65bc\u5171\u4eab\u8a18\u61b6\u9ad4\u7684\u8de8\u884c\u7a0b\u76f4\u63a5\u5b58\u53d6", "\u7db2\u969b\u7db2\u8def\u8cc7\u6599\u8655\u7406", "netrc --- netrc \u6a94\u6848\u8655\u7406", "nis --- Sun NIS (Yellow Pages) \u4ecb\u9762", "nntplib --- NNTP \u5354\u5b9a\u5ba2\u6236\u7aef", "numbers --- \u6578\u503c\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "\u6578\u503c\u8207\u6578\u5b78\u6a21\u7d44", "operator --- \u6a19\u6e96\u904b\u7b97\u5b50\u66ff\u4ee3\u51fd\u5f0f", "optparse --- \u547d\u4ee4\u5217\u9078\u9805\u5256\u6790\u5668", "os --- \u5404\u7a2e\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762", "os.path --- \u5e38\u898b\u7684\u8def\u5f91\u540d\u64cd\u4f5c", "ossaudiodev --- \u5c0d OSS \u76f8\u5bb9\u8072\u97f3\u88dd\u7f6e\u7684\u5b58\u53d6", "pathlib --- \u7269\u4ef6\u5c0e\u5411\u6a94\u6848\u7cfb\u7d71\u8def\u5f91", "pdb --- The Python Debugger", "\u8cc7\u6599\u6301\u4e45\u6027 (Data Persistence)", "pickle --- Python \u7269\u4ef6\u5e8f\u5217\u5316", "pickletools --- pickle \u958b\u767c\u8005\u7684\u5de5\u5177", "pipes --- shell pipelines \u4ecb\u9762", "pkgutil --- Package extension utility", "platform --- \u5c0d\u5e95\u5c64\u5e73\u81fa\u8b58\u5225\u8cc7\u6599\u7684\u5b58\u53d6", "plistlib --- \u7522\u751f\u548c\u5256\u6790 Apple .plist \u6a94\u6848", "poplib --- POP3 \u5354\u5b9a\u7528\u6236\u7aef", "posix --- \u6700\u5e38\u898b\u7684 POSIX \u7cfb\u7d71\u547c\u53eb", "pprint --- \u8cc7\u6599\u7f8e\u5316\u5217\u5370\u5668", "Python \u7684\u5206\u6790\u5668", "pty --- \u507d\u7d42\u7aef\u5de5\u5177", "pwd --- \u5bc6\u78bc\u8cc7\u6599\u5eab", "py_compile \u2014 \u7de8\u8b6f Python \u4f86\u6e90\u6a94\u6848", "pyclbr --- Python \u6a21\u7d44\u700f\u89bd\u5668\u652f\u63f4", "pydoc --- \u6587\u4ef6\u7522\u751f\u5668\u8207\u7dda\u4e0a\u5e6b\u52a9\u7cfb\u7d71", "xml.parsers.expat --- \u4f7f\u7528 Expat \u9032\u884c\u5feb\u901f XML \u5256\u6790", "Python Runtime \u670d\u52d9", "queue --- \u540c\u6b65\u4f47\u5217 (synchronized queue) \u985e\u5225", "quopri --- \u7de8\u78bc\u548c\u89e3\u78bc MIME \u53ef\u5217\u5370\u5b57\u5143\u8cc7\u6599", "random --- \u751f\u6210\u507d\u96a8\u6a5f\u6578", "re --- \u6b63\u898f\u8868\u793a\u5f0f (regular expression) \u64cd\u4f5c", "readline --- GNU readline \u4ecb\u9762", "reprlib --- repr() \u7684\u66ff\u4ee3\u5be6\u4f5c", "resource --- \u8cc7\u6e90\u4f7f\u7528\u8cc7\u8a0a", "rlcompleter --- GNU readline \u7684\u88dc\u5168\u51fd\u5f0f", "runpy --- \u5b9a\u4f4d\u4e26\u57f7\u884c Python \u6a21\u7d44", "sched --- \u4e8b\u4ef6\u6392\u7a0b\u5668", "secrets --- \u7522\u751f\u7528\u65bc\u7ba1\u7406\u6a5f\u5bc6\u7684\u5b89\u5168\u4e82\u6578", "\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805", "select --- \u7b49\u5f85 I/O \u5b8c\u6210", "selectors --- \u9ad8\u968e I/O \u591a\u5de5", "shelve --- Python object persistence", "shlex --- \u7c21\u55ae\u7684\u8a9e\u6cd5\u5206\u6790", "shutil \u2014 \u9ad8\u968e\u6a94\u6848\u64cd\u4f5c", "signal --- \u8a2d\u5b9a\u975e\u540c\u6b65\u4e8b\u4ef6\u7684\u8655\u7406\u51fd\u5f0f", "site --- Site-specific configuration hook", "smtplib --- SMTP \u5354\u5b9a\u7528\u6236\u7aef", "sndhdr --- \u5224\u5b9a\u8072\u97f3\u6a94\u6848\u7684\u578b\u5225", "socket --- \u4f4e\u968e\u7db2\u8def\u4ecb\u9762", "socketserver --- \u7528\u65bc\u7db2\u8def\u4f3a\u670d\u5668\u7684\u6846\u67b6", "spwd --- shadow \u5bc6\u78bc\u8cc7\u6599\u5eab", "sqlite3 --- SQLite \u8cc7\u6599\u5eab\u7684 DB-API 2.0 \u4ecb\u9762", "ssl --- socket \u7269\u4ef6\u7684 TLS/SSL \u5305\u88dd\u5668", "stat --- \u76f4\u8b6f stat() \u7684\u7d50\u679c", "statistics --- \u6578\u5b78\u7d71\u8a08\u51fd\u5f0f", "\u5167\u5efa\u578b\u5225", "string --- \u5e38\u898b\u7684\u5b57\u4e32\u64cd\u4f5c", "stringprep --- \u7db2\u969b\u7db2\u8def\u5b57\u4e32\u6e96\u5099", "struct --- \u5c07\u4f4d\u5143\u7d44\u76f4\u8b6f\u70ba\u6253\u5305\u8d77\u4f86\u7684\u4e8c\u9032\u4f4d\u8cc7\u6599", "subprocess --- \u5b50\u884c\u7a0b\u7ba1\u7406", "sunau --- \u8b80\u5beb Sun AU \u6a94\u6848", "\u5df2\u88ab\u53d6\u4ee3\u7684\u6a21\u7d44", "symtable --- \u5b58\u53d6\u7de8\u8b6f\u5668\u7684\u7b26\u865f\u8868", "sys --- \u7cfb\u7d71\u7279\u5b9a\u7684\u53c3\u6578\u8207\u51fd\u5f0f", "sys.monitoring --- Execution event monitoring", "The initialization of the sys.path module search path", "sysconfig --- \u63d0\u4f9b Python \u8a2d\u5b9a\u8cc7\u8a0a\u7684\u5b58\u53d6", "syslog --- Unix syslog \u51fd\u5f0f\u5eab\u4f8b\u7a0b", "tabnanny --- \u5075\u6e2c\u4e0d\u826f\u7e2e\u6392", "tarfile --- \u8b80\u53d6\u8207\u5beb\u5165 tar \u5c01\u5b58\u6a94\u6848", "telnetlib --- Telnet \u5ba2\u6236\u7aef", "tempfile --- \u751f\u6210\u81e8\u6642\u6a94\u6848\u548c\u76ee\u9304", "termios --- POSIX \u98a8\u683c tty \u63a7\u5236", "test --- Python \u7684\u56de\u6b78\u6e2c\u8a66 (regression tests) \u5957\u4ef6", "\u6587\u672c\u8655\u7406 (Text Processing) \u670d\u52d9", "textwrap --- \u6587\u5b57\u5305\u88dd\u8207\u586b\u5145", "threading --- \u57fa\u65bc\u57f7\u884c\u7dd2\u7684\u5e73\u884c\u6027", "time --- Time access and conversions", "timeit --- \u6e2c\u91cf\u5c0f\u91cf\u7a0b\u5f0f\u7247\u6bb5\u7684\u57f7\u884c\u6642\u9593", "\u4ee5 Tk \u6253\u9020\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (Graphical User Interfaces)", "tkinter --- Tcl/Tk \u7684 Python \u4ecb\u9762", "tkinter.colorchooser --- \u984f\u8272\u9078\u64c7\u5c0d\u8a71\u6846", "tkinter.dnd --- \u62d6\u653e\u652f\u63f4", "tkinter.font --- Tkinter \u5b57\u578b\u5305\u88dd\u5668", "tkinter.messagebox --- Tkinter \u8a0a\u606f\u63d0\u793a", "tkinter.scrolledtext --- \u6372\u52d5\u6587\u5b57\u5c0f\u5de5\u5177", "tkinter.tix --- Tk \u64f4\u5145\u5c0f\u5de5\u5177", "tkinter.ttk --- Tk \u4e3b\u984c\u5316\u5c0f\u5de5\u5177", "token --- \u8207 Python \u5256\u6790\u6a39\u4e00\u8d77\u4f7f\u7528\u7684\u5e38\u6578", "tokenize --- Tokenizer for Python source", "tomllib --- \u5256\u6790 TOML \u6a94\u6848", "trace --- \u8ffd\u8e64\u6216\u8ffd\u67e5 Python \u9673\u8ff0\u5f0f\u57f7\u884c", "traceback --- \u5217\u5370\u6216\u53d6\u5f97\u5806\u758a\u56de\u6eaf (stack traceback)", "tracemalloc --- \u8ffd\u8e64\u8a18\u61b6\u9ad4\u914d\u7f6e", "tty --- \u7d42\u7aef\u6a5f\u63a7\u5236\u51fd\u5f0f", "turtle --- \u9f9c\u5716\u5b78 (Turtle graphics)", "types --- \u52d5\u614b\u578b\u5225\u5efa\u7acb\u8207\u5167\u5efa\u578b\u5225\u540d\u7a31", "typing --- \u652f\u63f4\u578b\u5225\u63d0\u793a", "unicodedata --- Unicode \u8cc7\u6599\u5eab", "unittest --- \u55ae\u5143\u6e2c\u8a66\u6846\u67b6", "unittest.mock \u2014 mock \u7269\u4ef6\u51fd\u5f0f\u5eab", "unittest.mock --- \u5165\u9580\u6307\u5357", "Unix \u7279\u6709\u670d\u52d9", "urllib --- URL \u8655\u7406\u6a21\u7d44", "urllib.error --- urllib.request \u5f15\u767c\u7684\u4f8b\u5916\u985e\u5225", "urllib.parse --- \u5c07 URL \u5256\u6790\u6210\u5143\u4ef6", "urllib.request --- \u7528\u4f86\u958b\u555f URLs \u7684\u53ef\u64f4\u5145\u51fd\u5f0f\u5eab", "urllib.robotparser --- robots.txt \u7684\u5256\u6790\u5668", "xdrlib --- uuencode \u6a94\u6848\u7684\u7de8\u78bc\u8207\u89e3\u78bc", "uuid --- RFC 4122 \u5b9a\u7fa9\u7684 UUID \u7269\u4ef6", "venv --- \u5efa\u7acb\u865b\u64ec\u74b0\u5883", "warnings --- \u8b66\u544a\u63a7\u5236", "wave --- \u8b80\u5beb WAV \u6a94\u6848", "weakref --- \u5f31\u53c3\u7167", "webbrowser --- \u65b9\u4fbf\u7684\u7db2\u9801\u700f\u89bd\u5668\u63a7\u5236\u5668", "MS Windows \u7279\u6709\u670d\u52d9", "winreg --- Windows \u8a3b\u518a\u8868\u5b58\u53d6", "winsound --- Windows \u7684\u8072\u97f3\u64ad\u653e\u4ecb\u9762", "wsgiref --- WSGI \u5de5\u5177\u8207\u53c3\u8003\u5be6\u4f5c", "xdrlib --- XDR \u8cc7\u6599\u7684\u7de8\u78bc\u8207\u89e3\u78bc", "XML \u8655\u7406\u6a21\u7d44", "xml.dom --- Document \u7269\u4ef6\u6a21\u578b API", "xml.dom.minidom --- \u6700\u5c0f\u7684 DOM \u5be6\u4f5c", "xml.dom.pulldom --- \u652f\u63f4\u5efa\u7f6e\u90e8\u5206 DOM \u6a39", "xml.etree.cElementTree --- ElementTree XML API", "xml.sax --- SAX2 \u5256\u6790\u5668\u652f\u63f4", "xml.sax.handler --- SAX \u8655\u7406\u51fd\u5f0f\u7684\u57fa\u672c\u985e\u5225", "xml.sax.xmlreader --- XML \u5256\u6790\u5668\u7684\u4ecb\u9762", "xml.sax.saxutils --- SAX \u5de5\u5177\u7a0b\u5f0f", "xmlrpc --- XMLRPC \u4f3a\u670d\u5668\u8207\u7528\u6236\u6a21\u7d44", "xmlrpc.client --- XML-RPC \u5ba2\u6236\u7aef\u5b58\u53d6", "xmlrpc.server --- \u57fa\u672c XML-RPC \u4f3a\u670d\u5668", "zipapp \u2014-- \u7ba1\u7406\u53ef\u57f7\u884c\u7684 Python zip \u5c01\u5b58\u6a94\u6848", "zipfile --- \u8655\u7406 ZIP \u5c01\u5b58\u6a94\u6848", "zipimport --- \u5f9e Zip \u5c01\u5b58\u6a94\u6848\u532f\u5165\u6a21\u7d44", "zlib --- \u76f8\u5bb9\u65bc gzip \u7684\u58d3\u7e2e", "zoneinfo --- IANA \u6642\u5340\u652f\u63f4", "\u6cbf\u9769\u8207\u6388\u6b0a", "8. \u8907\u5408\u9673\u8ff0\u5f0f", "3. \u8cc7\u6599\u6a21\u578b", "4. \u57f7\u884c\u6a21\u578b", "6. \u904b\u7b97\u5f0f", "10. \u5b8c\u6574\u7684\u8a9e\u6cd5\u898f\u683c\u66f8", "5. \u6a21\u7d44\u5f15\u5165\u7cfb\u7d71", "Python \u8a9e\u8a00\u53c3\u8003\u624b\u518a", "1. \u7c21\u4ecb", "2. \u8a5e\u6cd5\u5206\u6790", "7. \u7c21\u55ae\u9673\u8ff0\u5f0f", "9. \u6700\u9ad8\u5c64\u7d1a\u5143\u4ef6", "16. \u9644\u9304", "1. \u6dfa\u5617\u6ecb\u5473", "9. Class\uff08\u985e\u5225\uff09", "4. \u6df1\u5165\u4e86\u89e3\u6d41\u7a0b\u63a7\u5236", "5. \u8cc7\u6599\u7d50\u69cb", "8. \u932f\u8aa4\u548c\u4f8b\u5916", "15. \u6d6e\u9ede\u6578\u904b\u7b97\uff1a\u554f\u984c\u8207\u9650\u5236", "Python \u6559\u5b78", "7. \u8f38\u5165\u548c\u8f38\u51fa", "14. \u4e92\u52d5\u5f0f\u8f38\u5165\u7de8\u8f2f\u548c\u6b77\u53f2\u8a18\u9304\u66ff\u63db", "2. \u4f7f\u7528 Python \u76f4\u8b6f\u5668", "3. \u4e00\u500b\u975e\u6b63\u5f0f\u7684 Python \u7c21\u4ecb", "6. \u6a21\u7d44 (Module)", "10. Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd", "11. Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd\u2014\u2014\u7b2c\u4e8c\u90e8\u4efd", "12. \u865b\u64ec\u74b0\u5883\u8207\u5957\u4ef6", "13. \u73fe\u5728\u53ef\u4ee5\u4f86\u5b78\u7fd2\u4e9b\u4ec0\u9ebc\uff1f", "1. \u547d\u4ee4\u5217\u8207\u74b0\u5883", "3. \u914d\u7f6e Python", "6. \u7de8\u8f2f\u5668\u8207 IDE", "Python \u7684\u8a2d\u7f6e\u8207\u4f7f\u7528", "5. \u5728 Mac \u7cfb\u7d71\u4f7f\u7528 Python", "2. \u5728 Unix \u5e73\u81fa\u4e0a\u4f7f\u7528 Python", "4. \u5728 Windows \u4e0a\u4f7f\u7528 Python", "Python 2.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.5 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.10 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.11 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.12 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.8 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.9 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Changelog\uff08\u66f4\u52d5\u65e5\u8a8c\uff09", "Python \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff1f"], "titleterms": {"10": [85, 88, 382, 472, 479, 480, 481, 483], "11": [473, 480, 481, 482, 483], "12": [426, 472, 473, 474, 481, 483], "13": [474, 479], "14": [474, 479, 480, 481, 482], "15": 474, "16": 64, "17": [481, 482], "205": 463, "207": 463, "208": 463, "217": 463, "218": [465, 466], "22": 85, "227": [463, 464], "229": 463, "230": 463, "232": 463, "234": 464, "235": 463, "236": 463, "237": [464, 466], "238": 464, "241": 463, "252": 464, "253": 464, "255": [464, 465], "263": 465, "273": 465, "277": 465, "278": 465, "279": 465, "282": 465, "285": 465, "289": 466, "292": 466, "293": 465, "2to3": 112, "301": 465, "302": 465, "305": 465, "307": 465, "308": 467, "309": 467, "3101": [468, 470], "3105": 468, "3106": 469, "3110": 468, "3112": 468, "3116": 468, "3118": [468, 476], "3119": 468, "3127": 468, "3129": 468, "3137": 469, "314": 467, "3141": 468, "3147": 475, "3148": 475, "3149": 475, "3151": 476, "3155": 476, "318": 466, "32": 64, "322": 466, "324": 466, "327": 466, "328": [466, 467], "331": 466, "3333": 475, "338": 467, "341": 467, "342": 467, "343": [467, 468], "352": 467, "353": 467, "357": 467, "362": 476, "366": 468, "370": 468, "371": 468, "372": [469, 471], "378": [469, 471], "380": 476, "384": 475, "389": [469, 475], "391": [469, 475], "393": 476, "397": 476, "405": 476, "409": 476, "412": 476, "4122": 398, "414": 476, "420": 476, "421": 476, "434": 469, "436": 477, "442": 477, "445": 477, "446": 477, "448": 478, "451": 477, "453": [469, 477], "456": 477, "461": 478, "465": 478, "466": 469, "468": 479, "471": 478, "475": 478, "476": [469, 477], "477": 469, "479": 478, "484": 478, "485": 478, "486": 478, "487": 479, "488": 478, "489": 478, "492": 478, "493": 469, "495": 479, "498": 479, "515": 479, "519": 479, "520": 479, "523": 479, "525": 479, "526": 479, "528": 479, "529": 479, "530": 479, "538": 480, "539": 480, "540": 480, "545": 480, "552": 480, "553": 480, "560": 480, "562": 480, "563": [473, 480], "564": 480, "565": 480, "578": 481, "587": 481, "590": 481, "604": 472, "612": 472, "613": 472, "626": 472, "634": 472, "64": 405, "646": 473, "647": 472, "652": 472, "654": 473, "655": 473, "657": 473, "659": 473, "669": 474, "673": 473, "675": 473, "678": 473, "681": 473, "684": 474, "688": 474, "692": 474, "695": 474, "698": 474, "701": 474, "709": 474, "__annotations__": 88, "__builtin_new": 79, "__class_getitem__": 428, "__del__": [85, 402], "__dunder__": [94, 211], "__enter__": 169, "__future__": [113, 463], "__getitem__": 428, "__import__": 85, "__index__": 467, "__init__": [94, 181], "__main__": [114, 432, 480], "__name__": 114, "__new__": 94, "__path__": 432, "__pure_virtu": 79, "__slots__": [93, 428, 472], "__spam": 85, "__spec__": 432, "_private__nam": 94, "_pth": 354, "_someclassname__spam": 85, "_sunder_": [94, 211], "_thread": [115, 472], "a_tupl": 85, "abbrevi": 120, "abc": [116, 161, 250, 253, 289, 386, 472, 475, 476, 477, 478, 482], "abi": [4, 57, 472, 475, 481], "about": [33, 85, 151, 193, 462], "absolut": 467, "abstract": [2, 75, 122, 161, 250, 468], "abstractbasicauthhandl": 395, "abstractdigestauthhandl": 395, "accept": 337, "access": [58, 64, 94, 100, 167, 176, 252, 266, 268, 366, 405, 428, 464, 474, 480], "accessor": 410, "acknowledg": 95, "across": 102, "action": [120, 292], "adapt": 340, "add_argu": 120, "add_help": 120, "added": 469, "adding": [76, 102, 292, 469, 479], "addit": [85, 207, 385, 461, 478], "address": [99, 259, 283], "advanc": [33, 101, 193, 468], "adverb": 319, "affect": 344, "after": 214, "aifc": [117, 477, 480], "aiff": 117, "aka": 94, "algorithm": [147, 251, 384, 477], "alia": 344, "alias": [386, 427], "align": [176, 347], "all": [85, 283, 292, 319, 382, 469, 478, 479], "alloc": [33, 42, 61, 75, 465, 477], "allow": 94, "allow_abbrev": 120, "alpha": 483, "alreadi": 470, "also": 428, "altern": [102, 434, 461], "among": 84, "an": [72, 73, 79, 84, 85, 93, 102, 109, 169, 183, 196, 250, 262, 348, 399, 461, 469], "analysi": 191, "ancillari": 353, "and": [5, 7, 23, 25, 33, 58, 64, 71, 72, 73, 75, 76, 77, 79, 85, 92, 93, 94, 95, 96, 100, 102, 106, 108, 109, 110, 120, 125, 128, 132, 133, 151, 158, 161, 169, 176, 183, 226, 230, 243, 247, 250, 252, 255, 259, 260, 262, 266, 268, 270, 275, 283, 292, 293, 299, 308, 319, 328, 332, 333, 337, 340, 341, 344, 347, 353, 365, 366, 369, 382, 384, 385, 386, 388, 410, 411, 413, 419, 425, 428, 429, 430, 432, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "angular": 275, "ani": [169, 386, 389], "anim": 384, "annot": [88, 344, 429, 436, 441, 479, 480], "anoth": 85, "ansi": 158, "api": [4, 5, 8, 10, 14, 30, 32, 33, 34, 42, 57, 73, 86, 94, 96, 115, 123, 124, 126, 130, 167, 193, 196, 207, 210, 230, 251, 299, 340, 344, 348, 382, 399, 410, 413, 421, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "app": 72, "appear": [85, 384], "appl": [304, 481, 482], "appli": 85, "applic": [92, 93, 102, 158, 230, 247, 347, 421, 461, 467, 478], "approach": [77, 470, 472], "appropri": 428, "approxim": [250, 478], "arbitrari": [73, 79, 101, 292, 441, 473], "architectur": 369, "archiv": [332, 421, 465], "are": [84, 85, 94, 193, 292, 477], "arena": 42, "argpars": [89, 120, 469, 472, 475, 477, 478, 480], "argument": [5, 85, 90, 120, 176, 292, 293, 348, 353, 428, 441, 461, 477, 479], "argument_default": 120, "argumentpars": 120, "argv": 120, "arithmet": [259, 430], "array": [7, 8, 85, 121, 147, 176, 262, 472, 474, 476, 479], "articl": 110, "as": [99, 101, 102, 169, 259, 384, 427, 428, 467, 468, 481], "ascii": [64, 146, 178, 394], "assert": [106, 436], "assign": [430, 436, 462, 481], "assort": 75, "ast": [122, 468, 475, 479, 481, 482], "async": [63, 122, 427, 478], "asynchat": [472, 474, 479], "asynchron": [33, 255, 338, 386, 428, 430, 479], "asyncio": [123, 125, 135, 170, 426, 472, 473, 474, 477, 478, 479, 480, 481, 482], "asyncor": [472, 474, 475, 479], "at": 84, "atexit": 140, "atom": 430, "attr": 410, "attribut": [58, 75, 76, 85, 92, 93, 94, 102, 235, 255, 267, 292, 293, 340, 344, 352, 416, 428, 430, 432, 463, 464, 479, 480], "attributeerror": 472, "attributesn": 416, "au": 349, "au_read": 349, "au_writ": 349, "audio": 295, "audioop": [141, 426, 477], "audit": 481, "augment": [436, 462], "authent": [110, 283], "auto": 94, "autocommit": 340, "automat": [93, 94, 247], "autospecc": 389, "avail": [183, 400], "avoid": [84, 100, 102], "await": [122, 125, 139, 428, 430, 478], "awar": [109, 183, 478], "babyl": 271, "babylmessag": 271, "background": 266, "backport": 469, "backslash": [85, 106], "bad": 103, "band": [299, 481], "barrier": [138, 365], "base": [58, 85, 102, 133, 158, 161, 213, 230, 250, 432, 468, 469, 475, 480], "base16": 143, "base32": 143, "base64": [143, 472, 476, 477], "base85": 143, "base_dir": 332, "basehandl": 395, "baserotatinghandl": 269, "basic": [76, 110, 193, 375, 428], "bayesian": 343, "bdb": [144, 472], "be": [85, 250, 299], "begin": 103, "behavior": [422, 477, 478, 479, 480, 481], "behaviour": 167, "beopen": 426, "best": [85, 326, 341], "beta": [80, 483], "better": 478, "between": [77, 85, 109, 283, 292, 435], "beyond": [72, 120], "big": [481, 482], "bin": 348, "binari": [111, 158, 258, 344, 419, 430, 452], "binascii": [146, 476, 479, 480], "bind": [81, 247, 340, 369, 429], "bio": [341, 478], "bisect": [147, 472], "bit": [176, 255, 405, 470], "bitwis": 430, "blake2": 235, "blank": 435, "blob": 340, "block": [84, 102, 341, 382, 413, 427, 470], "bodi": 428, "bom": [102, 158], "bookkeep": 318, "bool": 344, "boolean": [6, 94, 292, 344, 430, 465], "bootstrap": [210, 469, 477], "boundedsemaphor": 138, "branch": 469, "break": [436, 441], "breakpoint": 480, "browser": [243, 403], "bsd": 426, "bt": 96, "buffer": [5, 7, 48, 63, 102, 133, 255, 258, 299, 320, 428, 474, 476, 481], "bug": [1, 33, 85, 376], "build": [5, 71, 73, 96, 386, 413, 456, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "built": [64, 95, 96, 344, 428, 462, 466, 480], "builtin": [148, 429, 470, 481, 483], "bunch": 84, "bundl": 461, "but": 85, "by": [85, 176, 395, 469, 477], "byte": [8, 9, 109, 176, 344, 347, 394, 435, 468, 478], "bytearray": [344, 478], "bytecod": [191, 432, 473, 479, 480, 481, 482], "bytecode_help": 362, "bz2": [149, 476, 478], "bzip2": 149, "c14n": 426, "c3": 103, "ca": 341, "cab": 281, "cach": [85, 432, 481], "cacheftphandl": 395, "calendar": [150, 474, 480], "call": [10, 73, 85, 95, 176, 292, 389, 430, 478, 481], "call_lat": 126, "call_soon": 126, "callabl": [226, 255, 340, 386, 428], "callback": [176, 292, 353, 465], "calltip": 247, "can": [79, 84, 85, 250, 299], "cancel": 139, "candid": 483, "capsul": [11, 469], "captur": [106, 427], "care": 151, "carlo": 343, "case": [78, 100, 388, 427, 463], "catalog": [230, 266], "catch": 169, "categori": [23, 400], "caution": 33, "caveat": [33, 266, 421], "cdatasect": 410, "celementtre": 413, "cell": 12, "certif": [341, 469, 475, 477], "cfuhash": 426, "cgi": [84, 151, 152, 478], "cgitb": 152, "cgixmlrpcrequesthandl": 420, "chain": [270, 341, 443], "chainmap": 160, "chang": [85, 100, 101, 230, 384, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482], "changelog": 483, "charact": [64, 106, 262, 347], "charset": 195, "cheaper": 473, "check": [85, 193, 250, 292, 319, 428, 482], "choic": 120, "chomp": 85, "chunk": 153, "cipher": 341, "class": [78, 79, 85, 93, 94, 100, 102, 120, 158, 161, 181, 213, 216, 230, 250, 281, 283, 299, 308, 312, 329, 344, 347, 384, 385, 388, 395, 425, 427, 428, 435, 440, 464, 467, 468, 473, 476, 479], "classifi": 343, "claus": [426, 427], "clean": 169, "cleanup": [283, 292], "clear": 23, "cli": 102, "client": [133, 242, 283, 341, 419, 469, 475, 477, 478, 479, 480], "clinic": [90, 477], "clock": 366, "close": [84, 93], "cmath": [154, 478, 479], "cmd": 155, "cnri": 426, "co": 243, "code": [33, 85, 109, 110, 120, 157, 247, 250, 255, 344, 353, 388, 400, 428, 441, 461, 465, 473, 475, 476, 478, 482], "codec": [64, 158, 465, 472, 475, 476, 477], "codeop": 159, "codepag": 158, "coercion": [463, 480], "collect": [76, 100, 160, 161, 191, 386, 462, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482], "collector": [28, 227], "color": [92, 247, 384], "colorchoos": 370, "colorsi": [162, 477], "column": 376, "com": 426, "combin": [94, 341], "combinator": 95, "combobox": 376, "comma": [85, 465], "command": [96, 120, 163, 190, 191, 293, 297, 311, 348, 358, 378, 380, 388, 422, 461, 469, 475, 477, 479], "comment": [410, 435], "common": [106, 151, 344, 470], "commondialog": 189, "communic": 260, "compar": 109, "comparison": [75, 94, 99, 108, 259, 430, 463, 470], "compat": 331, "compat32": 196, "compil": [72, 73, 106, 425, 456, 481], "compileal": [163, 478, 480, 482], "complet": [93, 247, 320, 447], "complex": [7, 344, 428], "complianc": 262, "complic": 85, "compos": 95, "compound": [7, 384], "comprehens": [95, 122, 442, 462, 474, 479], "compress": [149, 270], "comput": 382, "concaten": [85, 435], "concept": 369, "concret": 386, "concurr": [102, 125, 139, 164, 165, 166, 475, 478, 479, 480, 482], "condit": [102, 138, 292, 365, 430, 442, 467], "config": 268, "configpars": [167, 474, 475, 478], "configur": [33, 34, 101, 102, 268, 334, 344, 355, 384, 425, 469, 475, 481], "conflict": 292, "conflict_handl": 120, "conform": 410, "connect": [84, 133, 268, 283, 337, 340], "consider": [245, 268, 341, 348, 432], "consol": [157, 282, 479], "const": 120, "constant": [93, 177, 278, 314, 340, 348, 366, 405], "constructor": [85, 128, 230, 348], "consum": 299, "contain": [120, 259, 428], "content": [197, 314], "contenthandl": 415, "contentmanag": 197, "context": [102, 135, 169, 170, 186, 193, 247, 283, 340, 341, 344, 400, 428, 466, 467, 468, 476], "contextlib": [169, 386, 467, 468, 472, 473, 475, 476, 477, 478, 479, 480], "contextu": 102, "contextvar": [102, 170, 480], "contigu": 7, "continu": [176, 436, 441], "control": [23, 28, 76, 340, 384, 403], "conveni": [259, 419], "convers": [100, 176, 259, 275, 344, 366, 430, 466], "convert": [85, 109, 340, 348], "cookbook": [77, 94, 102], "cooki": [243, 244, 426], "cookiejar": 243, "cookielib": 466, "cookiepolici": 243, "copi": [171, 332], "copyreg": 172, "copytre": 332, "core": [120, 462, 480, 483], "coroutin": [19, 255, 385, 427, 428, 478], "correspond": 384, "count": 73, "counter": 160, "coupl": 369, "cprofil": [308, 480, 481], "cpython": [74, 78, 96, 98, 472, 473, 474, 477, 479, 480, 481, 482], "creat": [33, 61, 64, 79, 84, 85, 94, 95, 99, 102, 139, 235, 292, 340, 421, 428, 477], "create_autospec": 389, "creation": [45, 99, 293, 338, 385, 428, 479], "credit": 235, "cross": 456, "crt": 86, "crypt": [173, 476, 480], "csv": [175, 474, 475, 478, 481], "ctype": [176, 283, 467, 468, 475, 481], "current": [85, 255, 382], "curs": [84, 92, 177, 178, 179, 472, 476, 478, 481, 482], "cursor": 340, "custom": [42, 93, 94, 101, 102, 120, 128, 132, 167, 176, 259, 268, 270, 283, 299, 308, 340, 428, 461, 477, 479, 480], "cwi": 426, "cx_freez": 461, "cycl": 462, "cyclic": 76, "data": [76, 85, 94, 95, 101, 109, 110, 176, 181, 270, 298, 299, 365, 369, 425, 452, 461, 466, 470, 473, 481], "databas": [184, 281], "dataclass": [94, 181, 472, 473, 480], "datagram": 133, "datagramhandl": 269, "datahandl": 395, "datatyp": [167, 465], "date": [101, 183, 465], "datetim": [20, 183, 473, 475, 476, 479, 480, 481, 482], "db": 340, "dbm": [184, 475, 477, 478, 479, 480], "de": [75, 149], "deal": 102, "debug": [42, 95, 96, 151, 193, 247, 456, 469, 481], "debugg": [33, 297], "decim": [186, 452, 466, 475, 476, 479, 480], "declar": [435, 472], "decod": [158, 262], "decompress": [270, 422], "decor": [108, 169, 466, 468, 474], "dedic": 478, "deep": 171, "def": 78, "default": [42, 85, 120, 292, 340, 341, 358, 389, 400, 422, 461, 469, 477], "defaultcookiepolici": 243, "defaultdict": 160, "defer": 230, "defin": [58, 75, 76, 85, 99, 100, 268, 292, 475], "definit": [63, 93, 259, 427, 440, 479], "defusedxml": 409, "del": [436, 442], "deleg": [85, 100, 476], "delet": [85, 462], "delimit": 435, "demo": [384, 474, 481, 483], "densiti": 343, "depend": [332, 400], "deploy": 102, "deprec": [340, 386, 462, 465, 466, 468, 469, 471, 475, 477, 478, 479, 480], "deprecationwarn": [480, 482], "dequ": 160, "deriv": [85, 94, 235], "describ": 400, "descript": [94, 161, 314], "descriptor": [21, 93, 181, 214, 293, 428, 464, 477, 479], "dest": 120, "destin": 102, "detail": [99, 161, 266, 268], "determin": [183, 428], "determinist": 308, "dev": [328, 480], "develop": [96, 247, 462, 468, 480], "devic": 295, "diagnost": 461, "dialect": 175, "dialog": 189, "diamond": 464, "dict": [102, 344, 389, 390, 479], "dictconfig": 102, "dictionari": [78, 102, 268, 430, 442, 469, 475, 476, 482], "differ": [77, 85, 94, 190, 235, 382, 384], "difflib": [190, 478], "digest": 235, "dir": 450, "dircmp": 216, "direct": [193, 250, 386, 463], "directori": [281, 293, 332, 468, 475, 478], "dis": [191, 474, 475, 477, 480], "disabl": [348, 353], "disambigu": 479, "discoveri": [251, 388], "dispatch": 299, "display": [92, 101, 382, 430, 463], "distinguish": 388, "distribut": 251, "distro": 96, "distutil": [462, 465, 472, 474, 478, 479, 480, 482], "divis": 464, "dll": 86, "dlls": [77, 176], "dnd": 371, "dns": 126, "do": [79, 84, 85, 369], "doc": 84, "doccgixmlrpcrequesthandl": 420, "docstr": [193, 384], "doctest": [193, 466, 472, 477, 478], "doctestfind": 193, "doctestpars": 193, "doctestrunn": 193, "document": [84, 410, 413, 420, 441, 468, 469, 476, 477, 481, 483], "documenttyp": 410, "docxmlrpcserv": 420, "doe": [85, 369], "doesn": 84, "dom": [410, 411, 412, 462], "domain": [42, 158], "domainfilt": 382, "domeventstream": 412, "domimplement": 410, "don": 84, "down": 96, "draw": 384, "dri": 461, "dtdhandler": 415, "dtoa": 426, "dtrace": [98, 479], "dumb": 184, "dummi": 283, "dump": 214, "duplic": [85, 94], "duplicatefreeenum": 94, "dure": 101, "dynam": [33, 93, 176, 385, 429], "each": 85, "eager": 139, "eas": 95, "easi": 462, "easier": 85, "echo": [133, 136], "edg": [100, 328], "edit": [247, 447], "editor": 247, "effect": 390, "effici": [85, 332], "eintr": 478, "elabor": 102, "element": [95, 410, 413], "elementtre": [413, 467, 469, 474, 475, 476], "elimin": 478, "ellipsi": [56, 344, 428], "els": [427, 441], "email": [102, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 475, 476, 477, 478, 479], "emb": 266, "embed": [72, 354, 462], "embedd": 461, "emul": 428, "enabl": [469, 477], "encod": [64, 109, 158, 198, 262, 340, 394, 435, 448, 465, 472, 479], "encodingwarn": 472, "end": [85, 92, 103], "enhanc": [465, 468, 469, 479], "ensur": 94, "ensurepip": [210, 469, 474, 477], "enter": 100, "entiti": 239, "entityresolv": 415, "entri": [251, 428, 432], "enum": [94, 211, 472, 473, 474, 477, 478, 479, 480], "enumer": [94, 465], "enumtyp": 94, "envbuild": 399, "environ": [293, 354, 425, 461, 469, 478, 479], "epilog": 120, "epol": 328, "equal": 478, "equival": [84, 85, 93], "errno": 212, "error": [23, 73, 85, 110, 158, 186, 199, 281, 292, 314, 358, 393, 443, 444, 465, 474], "errorhandl": 415, "escap": 64, "estim": 343, "etre": [413, 474, 476, 477, 480], "evalu": [79, 108, 429, 430, 479, 480], "event": [102, 128, 138, 353, 365, 369, 376, 384], "examin": 193, "exampl": [76, 93, 102, 155, 161, 167, 169, 190, 193, 279, 292, 319, 332, 358, 381, 395, 399, 419], "except": [23, 73, 85, 101, 102, 110, 120, 169, 193, 213, 259, 292, 319, 333, 425, 427, 443, 467, 468, 469, 470, 473, 476], "exchang": 283, "exclus": 120, "excursus": 461, "exe": 473, "execut": [164, 193, 247, 333, 353, 428, 429, 461, 467], "executor": 166, "exist": 133, "exit": 120, "exit_on_error": 120, "expat": [314, 426], "expaterror": 314, "expect": 388, "explan": 384, "explicit": [435, 468, 476, 477], "export": 176, "express": [78, 79, 95, 106, 109, 319, 430, 436, 466, 467, 481], "extend": [72, 85, 251, 292, 293, 399, 462, 465], "extens": [33, 58, 71, 73, 75, 76, 96, 111, 247, 266, 302, 476, 478], "extern": [268, 299], "extra": 13, "extract": [73, 358, 422], "factori": [102, 139, 259, 340], "fail": [99, 478], "failur": [247, 388], "fallback": 167, "famili": 348, "faq": [186, 473], "fast": 481, "faster": 478, "fault": [214, 419], "faulthandl": [214, 472, 476, 478, 479], "fcntl": [215, 473, 482], "featur": [281, 386, 429, 467, 469, 472, 474, 477, 478, 479, 480, 481, 482], "feedback": 106, "feedpars": 207, "fetch": 255, "field": [7, 176, 181, 386, 472], "file": [24, 35, 64, 85, 101, 102, 109, 120, 149, 167, 189, 193, 214, 235, 247, 250, 251, 268, 270, 282, 293, 306, 320, 332, 354, 369, 375, 422, 428, 451, 456, 461, 465, 475, 477, 478, 479, 480, 481], "filecmp": [216, 477], "filecookiejar": 243, "filedialog": 189, "filehandl": [269, 395], "fileinput": [218, 472, 479], "filenam": 109, "filesystem": [479, 481], "filetyp": 120, "fill": 384, "filter": [102, 267, 270, 358, 380, 382, 400], "filter_dir": 389, "final": [33, 75, 169, 427, 467, 477, 483], "find": [85, 176, 319, 413, 461], "finder": 432, "finer": [76, 94, 476], "fix": [292, 463, 465, 469], "fixer": 112, "fixtur": 388, "flag": [58, 94, 106, 120, 169, 193, 255, 292, 319, 456], "flexibl": 476, "fli": 230, "float": [25, 186, 344, 428, 435, 466], "float_info": 352, "flow": 101, "fnmatch": 220, "font": 372, "for": [51, 64, 73, 85, 92, 96, 101, 102, 109, 120, 169, 177, 250, 266, 289, 292, 299, 319, 341, 358, 362, 378, 384, 386, 400, 413, 427, 428, 430, 432, 441, 461, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "forc": 480, "foreign": 176, "fork": 33, "forkserv": 283, "form": [375, 386, 430], "formal": [95, 474], "format": [7, 101, 102, 247, 268, 283, 299, 344, 345, 347, 358, 421, 446, 452, 468, 469, 470, 471, 478, 479], "formatt": [101, 102, 267], "formatter_class": 120, "fraction": [221, 468, 473, 474, 475], "frame": [26, 382, 428, 473, 479], "framesummari": 381, "framework": [463, 476], "freebsd": [460, 469], "frequent": 348, "from": [33, 73, 79, 84, 85, 93, 96, 100, 102, 139, 169, 176, 348, 384, 422, 461, 465, 468], "fromfile_prefix_char": 120, "frozen": 473, "frozenset": 344, "ftp": [223, 475], "ftp_tls": 223, "ftphandler": 395, "ftplib": [223, 474, 476, 482], "full": 461, "function": [7, 25, 27, 45, 64, 73, 85, 93, 94, 95, 100, 106, 108, 120, 163, 169, 176, 191, 226, 251, 259, 261, 267, 268, 275, 282, 288, 299, 307, 318, 319, 340, 348, 353, 384, 385, 388, 400, 419, 427, 428, 430, 441, 462, 463, 466, 467, 468, 470, 476, 478, 479, 480], "functool": [95, 226, 473, 475, 476, 477, 478, 480, 481], "fundament": 176, "further": 358, "futur": [102, 113, 126, 128, 129, 166, 436, 475, 478, 479, 480, 482], "future_builtin": 468, "garbag": [28, 76, 100, 227, 462], "gateway": 475, "gc": [227, 472, 476, 477, 480, 481, 482], "gdb": 96, "general": [95, 292, 333, 478], "generat": [29, 78, 95, 201, 255, 292, 344, 428, 430, 440, 464, 465, 466, 467, 478, 479], "generic": [64, 75, 344, 386, 427, 428, 455, 473, 480, 482], "genericalia": 344, "geometri": 375, "get": [84, 85, 99, 132, 382, 384], "getopt": 228, "getpass": 229, "getter": [58, 100], "gettext": [230, 480, 481], "geturl": 110, "gil": [33, 474], "given": 85, "glob": [231, 472, 477, 478], "global": [33, 84, 100, 299, 353, 425, 436], "gmt": 102, "gnu": [184, 230, 320, 323], "gnutransl": 230, "goto": 78, "grain": 476, "grammar": 122, "graph": 232, "graphic": [368, 384], "graphlib": [232, 482], "greedi": 106, "group": [95, 106, 120, 139, 213, 292, 388, 427], "grp": [233, 479], "guard": [427, 472], "gui": [81, 102, 281, 459], "guid": [105, 292, 340], "guidelin": 283, "gunicorn": 102, "gzip": [234, 424, 474, 475, 478, 481], "handi": 369, "handl": [23, 102, 110, 135, 292, 299, 340, 388, 405, 465, 468, 469, 477, 478], "handler": [84, 101, 102, 110, 158, 214, 267, 268, 269, 333, 338, 369, 407, 415], "happen": 101, "hash": [173, 235, 477, 480], "hashlib": [235, 467, 472, 473, 474, 475, 477, 479, 482], "have": 85, "header": [110, 202, 407, 476], "headerregistri": 203, "heap": [3, 61, 63, 100, 236], "heapq": [236, 478], "hello": [123, 126, 369], "help": [120, 247, 292, 384], "helper": [348, 386], "hierarch": 375, "hierarchi": [133, 468, 476], "high": [66, 72, 348], "higher": [85, 151, 226], "highlight": [476, 477, 478, 479, 480, 481, 482], "hint": [266, 358, 474, 478, 482], "histori": [95, 320, 447], "hkey_": 405, "hmac": [237, 472, 476, 477, 480], "home": 355, "hook": [42, 250, 320, 334, 432, 463, 465, 481], "host": [99, 259], "how": [79, 84, 85, 94, 102, 193, 292, 340, 369, 384], "howto": [94, 95, 109], "html": [84, 238, 239, 240, 475, 476, 477], "htmlparser": 240, "http": [136, 241, 242, 243, 244, 245, 407, 469, 475, 476, 477, 478, 479, 480, 482], "httpbasicauthhandl": 395, "httpconnect": 242, "httpcookieprocessor": 395, "httpdigestauthhandl": 395, "httperror": 110, "httperrorprocessor": 395, "httphandler": [269, 395], "httpmessag": 242, "httppasswordmgr": 395, "httppasswordmgrwithpriorauth": 395, "httpredirecthandl": 395, "httprespons": 242, "https": 469, "httpshandler": 395, "hyperbol": 275, "iana": 425, "ice": 73, "id": [85, 366], "ide": [457, 459], "ident": 430, "identifi": [353, 376, 430, 435], "idiomat": 114, "idl": [247, 462, 469, 471, 472, 473, 475, 477, 478, 479, 480, 481, 482, 483], "idlelib": [247, 472, 473, 477, 478, 479, 480, 481, 482], "idna": 158, "if": [78, 85, 101, 183, 250, 427, 441], "iff": 153, "imag": [369, 375], "imaginari": 435, "imap4": 248, "imaplib": [248, 475, 476, 478, 482], "imghdr": [249, 478], "immut": [344, 428], "imp": 474, "impact": 474, "impart": 102, "implement": [50, 79, 84, 102, 169, 250, 262, 289, 428, 434, 476, 479, 480], "implicit": [435, 476], "import": [85, 114, 122, 211, 250, 251, 267, 268, 269, 362, 369, 390, 432, 436, 450, 463, 465, 466, 467, 468, 473, 476, 477], "import_help": 362, "import_modul": 250, "importlib": [250, 251, 252, 253, 432, 469, 472, 474, 476, 477, 478, 479, 480, 482], "improv": [331, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 479], "in": [64, 72, 73, 77, 79, 84, 85, 95, 100, 101, 102, 109, 139, 158, 169, 176, 181, 193, 247, 270, 291, 292, 340, 344, 365, 384, 386, 410, 428, 461, 462, 463, 466, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482], "includ": 35, "incomplet": 176, "increas": 186, "increment": [149, 158, 268], "incrementaldecod": 158, "incrementalencod": 158, "incrementalpars": 416, "indent": [247, 435], "indentationerror": 472, "independ": [7, 466], "index": [78, 85, 369, 465, 467], "indic": 23, "infinit": 262, "infix": 478, "info": 110, "inform": [13, 92, 102, 281, 293], "inherit": [79, 293, 384, 440, 464, 477], "ini": [167, 461], "init": [181, 320], "initi": [33, 34, 45, 73, 354, 478, 481], "inlin": 474, "input": [177, 378, 384], "inputsourc": 416, "insensit": 463, "insert": 102, "insid": 478, "inspect": [99, 255, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482], "instal": [151, 281, 355, 461, 462, 477], "instanc": [44, 85, 93, 94, 99, 197, 299, 344, 428], "instant": 308, "instead": [85, 470], "instruct": 191, "int": [85, 344], "integ": [259, 344, 435, 464, 466, 468], "integr": [267, 428], "intenum": 94, "interact": [137, 157, 429, 463, 467], "interchang": 477, "interest": 413, "interfac": [42, 78, 79, 99, 151, 190, 191, 227, 259, 293, 311, 358, 368, 380, 388, 395, 416, 422, 475], "intermezzo": 73, "intermix": 120, "intern": [26, 96, 268, 344, 428], "internation": [158, 230], "internet": [84, 256], "interoper": 262, "interpol": 167, "interpret": [33, 100, 157, 255, 385, 421, 467, 468, 469, 474], "interprocess": 260, "interrupt": [135, 422], "intflag": 94, "into": [95, 102, 384], "introduct": [93, 109, 308], "introspect": [139, 255, 386], "invalid": [120, 432], "invoc": [93, 348], "invok": 428, "io": [258, 386, 474, 475, 476, 478, 480, 481], "ioctl": 215, "ip": [99, 259], "ipaddress": [99, 259, 474, 476, 477, 478, 480, 482], "ipc": 107, "ipv4": 259, "ipv6": 259, "irix": 468, "irrefut": 427, "is": [84, 85, 92, 101, 183, 308, 466, 470], "isol": [34, 100], "isolation_level": 340, "issu": [23, 100, 214, 358, 461, 468], "it": [84, 85, 110, 193, 292], "item": [85, 376], "iter": [37, 85, 94, 95, 204, 259, 388, 428, 430, 440, 466, 470, 478], "itertool": [95, 261, 472, 474, 475, 476, 480, 481], "itself": 422, "java": 303, "javascript": 468, "jit": 473, "join": [78, 435], "json": [262, 299, 446, 468, 478, 479, 481], "kernel": 343, "kevent": 328, "key": [81, 108, 235, 247, 283, 341, 476], "keyboard": 135, "keypress": [84, 86], "keyword": [73, 85, 181, 263, 435, 441, 472, 478, 479], "kind": [84, 93], "known": [428, 461], "kqueue": [328, 426], "kwarg": 474, "l1": 86, "label": 376, "lambda": [78, 85, 95, 430, 441], "languag": [230, 384, 462], "larg": 306, "latin": 64, "launcher": [461, 473, 478], "layer": [2, 66, 110, 478], "layout": [376, 452], "lazi": [250, 429, 473], "legaci": [167, 348, 395, 480], "len": 78, "length": [235, 344], "level": [45, 66, 72, 101, 102, 106, 151, 259, 262, 267, 328, 348, 478], "lexicalhandl": 415, "lib2to3": 112, "libffi": 426, "libmpdec": 426, "librari": [101, 102, 112, 176, 254, 468, 483], "life": 369, "lifetim": [100, 128], "lifo": 134, "like": [72, 102, 232], "limit": [100, 262, 322, 344, 422, 461], "line": [120, 163, 190, 191, 293, 311, 320, 358, 378, 380, 388, 422, 435, 461, 466, 469, 475], "linecach": [265, 472, 478], "liner": 85, "link": [72, 120, 176], "linkag": 73, "linker": 456, "linux": [79, 96, 104, 111, 293, 303, 460], "list": [38, 78, 85, 95, 96, 99, 147, 320, 344, 427, 430, 441, 442, 449, 452, 462, 468, 470], "listbox": 375, "listen": [102, 283], "liter": [85, 109, 122, 427, 430, 435, 446, 468, 473, 476, 479], "load": [176, 189, 388, 432], "load_test": 388, "loader": 432, "local": [33, 64, 96, 230, 266, 353, 365, 461, 466, 472, 473, 474, 478, 479, 480], "locat": 416, "lock": [33, 138, 365, 476], "log": [101, 102, 267, 268, 269, 283, 452, 465, 469, 473, 475, 476, 477, 478, 479, 480, 481], "logarithm": 275, "logger": [101, 102, 267], "loggeradapt": [102, 267], "logic": [93, 186, 259, 435], "logrecord": [102, 267], "long": [464, 466], "longer": 477, "lookahead": 106, "lookup": [45, 93, 428], "loop": [85, 128, 133], "lossless": 100, "lot": 102, "low": [45, 474], "lower": 100, "lzma": [270, 476, 478], "mac": [459, 468, 469, 481, 482], "machineri": 250, "maco": [131, 247, 303, 456, 481, 482, 483], "macpath": 480, "macro": 58, "madv_": 278, "magic": 389, "magicmock": [389, 390], "mailbox": [271, 475], "mailcap": 272, "maildirmessag": 271, "main": [380, 456, 468], "mainten": 469, "major": 386, "make": [79, 85, 100, 319, 384, 462, 469, 474, 478, 479], "makefil": 456, "manag": [75, 93, 100, 102, 135, 169, 170, 197, 283, 340, 344, 369, 375, 400, 428, 467, 468], "mani": 85, "manipul": 292, "manual": [170, 308, 369], "map": [51, 63, 64, 167, 251, 344, 410, 427, 428], "map_": 278, "markup": 273, "marshal": [41, 274, 299, 477], "mask": 259, "match": [106, 120, 122, 319, 427, 428, 441], "math": [84, 275, 473, 474, 475, 476, 478, 479, 480, 481, 482], "matrix": 478, "max_path": 461, "mbcs": [64, 158], "mbox": 271, "mboxmessag": 271, "mean": 85, "measur": 384, "member": [58, 93, 94, 255], "membership": 430, "memori": [42, 270, 341, 344, 382, 477, 478], "memoryhandl": 269, "memoryview": [43, 344, 469, 476], "menu": 247, "menus": 247, "merg": 482, "mersenn": 426, "messag": [101, 102, 196, 205, 230, 266, 271, 474], "messagebox": 373, "meta": 432, "metacharact": 106, "metaclass": 428, "metadata": [251, 463, 465, 467, 472], "metavar": 120, "method": [44, 64, 73, 76, 78, 79, 84, 85, 93, 94, 100, 103, 106, 120, 169, 173, 283, 288, 292, 337, 340, 344, 384, 390, 410, 428, 430, 440, 446, 462, 466, 467, 470, 478, 479, 480, 482], "mh": 271, "mhmessag": 271, "microsoft": [281, 461], "migrat": 469, "mime": [194, 197, 201, 206, 276, 317], "mimetyp": [276, 480], "minidom": 411, "minor": 462, "minutia": 94, "miscellan": [270, 283, 293, 375, 455, 470], "mitig": 186, "mix": 94, "mixer": 295, "mixin": 338, "mmap": [278, 476, 477, 481], "mmdf": 271, "mmdfmessag": 271, "mock": [389, 390, 478, 479, 480], "mock_open": 389, "mode": [96, 186, 235, 469, 480], "model": [314, 369, 463], "modifi": [85, 106, 380, 461], "modul": [45, 73, 85, 95, 99, 100, 102, 106, 108, 151, 168, 230, 250, 259, 267, 283, 308, 340, 348, 354, 369, 384, 388, 428, 432, 450, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 478, 479, 480], "modular": 95, "modulefind": 279, "modulespec": 477, "monitor": [353, 474], "mont": 343, "monti": 80, "more": [75, 92, 99, 102, 106, 384, 474], "morsel": 244, "most": 85, "motion": 384, "mro": 428, "ms": [86, 282, 404], "msilib": [281, 480], "msvcrt": 282, "multi": [34, 45, 258, 341, 452, 466, 475, 478], "multical": 419, "multidimension": 85, "multipl": [85, 100, 102, 389, 464, 478], "multiprocess": [102, 283, 284, 468, 476, 477, 478, 479, 480, 481, 482], "multithread": 125, "mung": 319, "mutabl": [344, 428], "mutat": 84, "mutual": [85, 120], "my": [84, 85], "naiv": [183, 343], "name": [85, 93, 94, 106, 120, 158, 262, 293, 352, 358, 428, 429, 430, 465, 476], "namednodemap": 410, "namedtupl": 160, "nameerror": 472, "namer": 102, "namespac": [120, 384, 413, 428, 432, 440, 476], "nan": 262, "nanosecond": 480, "narg": 120, "nativ": [189, 347], "navig": [247, 369], "ndbm": 184, "ndiff": 190, "need": 466, "negat": 85, "negoti": 478, "nest": [463, 464], "net": 259, "netrc": 286, "network": [84, 99, 102, 259, 260, 469], "never": 125, "new": [95, 292, 400, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "newli": 477, "newlin": [85, 465], "newtyp": 386, "next": [101, 483], "nis": 287, "nntp": [288, 475], "nntplib": [288, 476, 482], "no": [101, 477], "node": [122, 410], "nodelist": 410, "nomin": 386, "non": [33, 106, 262, 340, 341, 413, 477], "none": [46, 428], "nonloc": 436, "normaldist": 343, "not": [85, 100, 344, 384], "notabl": [472, 473, 474, 480, 481, 482], "notat": [319, 434, 468], "note": [99, 186, 207, 289, 333, 337, 338, 341, 376], "notebook": 376, "notif": [33, 93], "notimpl": [344, 428], "nt": [355, 465], "nt_user": 355, "nteventloghandl": 269, "nuget": 461, "null": [73, 344], "nullhandl": [102, 269], "nulltransl": 230, "number": [63, 85, 110, 169, 262, 289, 293, 428, 449, 468], "numer": [428, 435, 479], "numpi": 7, "obfusc": 85, "object": [2, 8, 9, 23, 24, 27, 42, 44, 50, 56, 58, 60, 63, 75, 79, 84, 85, 93, 94, 99, 100, 101, 102, 120, 132, 139, 157, 177, 179, 183, 186, 190, 208, 226, 235, 255, 259, 262, 267, 268, 281, 283, 293, 295, 299, 301, 312, 319, 321, 325, 328, 330, 338, 340, 344, 348, 353, 359, 365, 384, 389, 395, 403, 405, 408, 410, 416, 419, 422, 428, 465, 466, 468, 469, 473, 477], "odd": 85, "of": [58, 84, 85, 93, 94, 95, 99, 100, 101, 102, 149, 167, 169, 181, 255, 259, 279, 283, 293, 299, 332, 333, 344, 348, 352, 354, 382, 384, 386, 399, 400, 419, 422, 428, 429, 435, 456, 461, 462, 469, 470, 474, 477, 478, 479, 480, 481], "off": [186, 353], "old": [388, 464], "older": [348, 358], "omit": 94, "on": [42, 84, 95, 99, 151, 214, 226, 230, 247, 333, 337, 341, 348, 353, 463], "one": [85, 100, 149], "onexit": 84, "onli": [133, 181, 247, 441, 472, 480, 481], "opcod": [191, 473], "open": [100, 102, 110, 252], "openbsd": 460, "openerdirector": 395, "openssl": [426, 460, 473], "oper": [85, 95, 108, 226, 243, 259, 282, 291, 293, 332, 341, 344, 430, 435, 464, 470, 473, 477, 478, 482], "operand": 186, "opt": 100, "optim": 101, "option": [85, 120, 193, 247, 292, 358, 369, 376, 380, 422, 455, 456, 479], "optpars": [120, 292, 465], "or": [85, 102, 120, 176, 183, 344, 348, 427, 441], "order": [85, 103, 176, 181, 226, 268, 292, 347, 430, 469, 470, 479], "ordereddict": 160, "orderedenum": 94, "org": [80, 461], "organ": [85, 388], "orient": 384, "orm": 93, "os": [84, 213, 293, 294, 296, 348, 362, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482], "os_help": 362, "oss": 295, "ossaudiodev": 295, "osx_framework_us": 355, "other": [76, 79, 85, 94, 99, 101, 102, 120, 139, 259, 282, 292, 299, 344, 353, 386, 435, 462, 463, 465, 469, 470, 477, 478, 479, 480], "out": [84, 100, 299, 481], "output": [85, 102, 247, 332, 452], "outputcheck": 193, "over": [76, 85], "overload": 85, "overrid": [100, 400, 474], "overview": [72, 93, 251, 427], "own": 176, "ownership": 73, "pack": 25, "packag": [251, 252, 302, 432, 450, 461, 463, 465, 467, 468, 476], "packer": [369, 408], "pad": 92, "page": 287, "pair": 319, "panel": 179, "parallel": 481, "paramet": [33, 73, 85, 102, 122, 176, 181, 369, 386, 427, 441, 474, 481], "parcel": 84, "parent": 120, "parenthes": 430, "pars": [5, 120, 292, 331, 394, 413, 469, 472, 475, 480, 481, 482], "parse_arg": 120, "parser": [120, 167, 207, 240, 292, 314, 468, 482], "parti": 105, "partial": [108, 120, 226, 467], "particular": 102, "pass": [85, 95, 102, 176, 436, 441], "patch": [389, 390], "patcher": 389, "path": [34, 250, 294, 354, 355, 422, 432, 461, 472, 474, 479, 481], "pathlib": [296, 472, 473, 474, 477, 478, 479, 480, 481, 482], "pattern": [102, 106, 122, 384, 427, 428], "pdb": [297, 474, 475, 476, 477, 479, 480, 482], "peak": 382, "pen": 384, "pep": [463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "per": [33, 100, 353, 468, 474], "percent": 478, "perf": [51, 104], "perform": [85, 106, 258, 299, 456, 470], "perl": 85, "persist": [84, 298, 299, 330], "person": 235, "phase": [34, 45, 478], "phonebook": 319, "physic": 435, "pickl": [94, 172, 299, 300, 425, 465, 476, 477, 478, 479, 481], "pickletool": [300, 479], "pil": 7, "pip": [111, 210, 453, 469, 477], "pipe": [84, 283, 301], "pipelin": [301, 348], "pitfal": 422, "pkgutil": 302, "place": [85, 291], "placehold": 340, "plagu": 106, "planet": 94, "platform": [303, 332, 376, 463, 472, 480], "plist": 304, "plistlib": [304, 468, 477, 481], "point": [25, 94, 186, 251, 435], "pointer": [73, 176], "polici": [130, 132, 208, 476], "poll": 328, "pool": 283, "pop3": 305, "popen": [84, 348, 475], "popen2": 348, "popen3": 348, "poplib": [305, 475, 477, 478, 482], "popul": 292, "port": [462, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "posit": [292, 319, 384, 428, 441, 481], "posix": [306, 361], "posix_hom": 355, "posix_prefix": 355, "posix_spawn": 348, "posix_us": 355, "possibl": [85, 384], "post": [84, 181], "postpon": 480, "power": [106, 275, 430], "pprint": [307, 472, 477, 481, 482], "practic": [77, 85, 93, 326], "preced": [85, 430], "precis": [186, 474], "precomput": 281, "prefer": 247, "prefix": [120, 259, 355, 482], "prefix_char": 120, "preiniti": 34, "prepar": 428, "prepareprotocol": 340, "preprocessor": 456, "prerequisit": 96, "present": [75, 470], "preserv": [369, 479], "pretti": [96, 382], "prettyprint": 307, "primari": 430, "primer": 93, "primit": [138, 139, 283, 386], "print": [23, 96, 120, 292, 468, 470], "printer": 96, "printf": 344, "prioriti": 134, "privat": [34, 128], "probe": 479, "problem": [106, 151], "process": [33, 100, 102, 132, 181, 273, 283, 341, 363, 462, 468], "processinginstruct": 410, "processpoolexecutor": [102, 166], "product": 102, "profil": [33, 308], "prog": 120, "program": [85, 92, 109, 177, 230, 266, 283, 369, 429], "programmat": [94, 250, 380], "progressbar": 376, "properti": [64, 93, 109, 468], "protocol": [7, 10, 48, 75, 100, 133, 167, 256, 388, 432, 474, 476, 478, 479, 481], "protocolerror": 419, "prototyp": 176, "provabl": 95, "provid": [73, 76, 101, 299], "provision": [34, 476], "proxi": [110, 283, 389], "proxybasicauthhandl": 395, "proxydigestauthhandl": 395, "proxyhandl": 395, "psf": 426, "pti": [309, 477], "public": [163, 384], "pull": 413, "pulldom": 412, "pure": [72, 93], "purpos": 428, "put": 292, "pwd": 310, "py": [84, 96, 114, 473], "py_buildvalu": 79, "py_compil": [311, 472, 480, 481], "py_getargcargv": 34, "py_runmain": 34, "pyc": [85, 475, 480], "pyclbr": [312, 472], "pyconfig": 34, "pyd": 86, "pydoc": [313, 475, 476, 477, 479, 480, 482], "pyerr_print": 79, "pyhash": 30, "pymalloc": [42, 465], "pynng": 102, "pyo": 478, "pyobject": 63, "pyobject_new": 100, "pypreconfig": 34, "pystatus": 34, "python": [0, 1, 15, 32, 33, 34, 35, 42, 68, 70, 72, 73, 74, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 91, 92, 93, 95, 96, 97, 100, 103, 104, 105, 109, 111, 112, 114, 158, 159, 163, 176, 180, 188, 191, 193, 214, 254, 263, 264, 266, 267, 274, 293, 297, 299, 308, 311, 312, 315, 324, 330, 333, 340, 354, 355, 358, 362, 367, 369, 377, 378, 380, 384, 386, 421, 426, 433, 437, 438, 440, 445, 448, 449, 450, 451, 452, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "pythonmalloc": 479, "pytypeobject": 63, "pyvarobject": 63, "pywidestringlist": 34, "pywin32": 461, "pyxml": 462, "pyzipfil": 422, "qname": 413, "qt": 102, "qualifi": 476, "queri": [23, 28, 292, 293, 332, 340], "queue": [124, 134, 236, 283, 316, 442, 480], "queuehandl": [102, 268, 269], "queuelisten": [102, 268, 269], "quick": [63, 120, 167, 186, 384], "quopri": 317, "quot": 394, "rais": [23, 85, 101, 292, 436], "random": [235, 293, 318, 474, 475, 479, 482], "rang": [344, 441], "raw": [42, 64, 85, 258, 319], "rawconfigpars": 167, "rawturtl": 384, "re": [106, 181, 319, 388, 473, 476, 477, 478, 479, 480], "read": [84, 100, 109, 133, 252, 270], "readlin": [320, 323, 334, 478, 479], "readon": 7, "real": 428, "realli": 84, "receiv": 102, "recip": [161, 169, 186, 261, 340], "recogn": 193, "recognis": 386, "recommend": 344, "record": [281, 382, 452], "recurs": 23, "redirect": 461, "reduct": 299, "reentranc": 258, "reentrant": 169, "refer": [63, 73, 75, 85, 95, 109, 176, 283, 292, 308, 340, 369, 384, 413, 430, 432, 452, 463], "reflect": 53, "regen": [469, 478, 479], "regex": 84, "regist": [340, 353], "registri": [405, 461], "regress": 362, "regular": [100, 106, 109, 319, 432], "relat": [7, 110, 250, 432, 467, 468, 474], "relationship": 462, "releas": [33, 469, 476, 477, 478, 479, 480, 481, 482, 483], "remot": 283, "remov": [85, 461, 467, 468, 469, 478, 479, 480, 481, 482], "repeat": [106, 262], "replac": [106, 169, 247, 348, 432], "repositori": 475, "repr": [321, 432], "repres": 196, "represent": [425, 444, 476], "reprlib": [321, 475], "reproduc": 318, "request": [7, 338, 393, 395, 479], "requir": [120, 176, 251], "reserv": 435, "resolut": [103, 268, 429, 480], "resolv": 428, "resourc": [101, 102, 103, 252, 253, 322, 422, 474, 477, 480], "resourcewarn": 188, "respons": 395, "restrict": [94, 299, 330, 395, 429], "restructuredtext": 468, "result": [85, 394], "retri": 478, "retriev": [125, 255], "return": [85, 93, 176, 436, 461], "return_valu": 389, "reusabl": 169, "revers": [85, 466], "revis": 95, "rework": 476, "rfc": 398, "rfc5424": 102, "rich": 463, "right": 405, "rlcomplet": [323, 479], "rlock": 365, "rmtree": 332, "robot": 396, "robotpars": [396, 479], "rotat": 102, "rotatingfilehandl": 269, "round": 186, "roundup": 468, "row": 340, "rpc": [419, 420], "rs232": 84, "rule": [73, 331, 333, 464], "run": [102, 139, 247, 388, 461], "runner": 135, "runpi": 324, "runtim": [74, 86, 282, 315, 425, 480, 481], "safe": [84, 100, 477], "safeti": 267, "same": [85, 102, 481], "save": 189, "sax": [414, 415, 416, 417, 478], "sax2": [414, 462], "saxexcept": 414, "saxutil": 417, "scandir": 478, "scanf": [85, 319], "sched": [325, 476], "schedul": [139, 293, 325], "schema": 268, "scheme": 355, "schwartzian": 85, "scope": [100, 429, 440, 463, 464], "screen": 384, "script": [84, 151, 384, 461, 467], "script_help": 362, "scrollabl": 376, "scrolledtext": 374, "search": [106, 247, 251, 319, 354, 432], "secret": [326, 479], "secur": [151, 245, 268, 341, 348, 394, 456, 469, 472, 477, 480, 481, 482, 483], "seem": 84, "select": [95, 102, 189, 328, 341, 426, 475, 476, 477], "selector": [329, 375, 477, 478], "self": [78, 85, 341, 473, 481], "semaphor": [138, 365], "send": 102, "sent": 102, "sentinel": 389, "separ": [376, 465, 469, 471], "sequenc": [60, 63, 85, 344, 348, 427, 428, 442], "sequencematch": 190, "serial": 425, "server": [102, 126, 133, 245, 338, 341, 419, 420, 475, 480], "serverproxi": 419, "session": 341, "set": [132, 247, 250, 344, 353, 369, 384, 428, 430, 442, 461, 465, 466], "setter": [58, 100], "setup": 96, "setupclass": 388, "setupmodul": 388, "setuptool": 71, "sh": 348, "shadow": 339, "shake": 235, "shallow": 171, "shape": [7, 384], "share": [85, 176, 283, 476], "shared_memori": 284, "sharedctyp": 283, "shebang": 461, "shell": [247, 301, 331, 348], "shelv": [330, 472, 477], "shield": 139, "shift": 430, "shlex": [331, 476, 479, 481], "shortcut": 340, "shot": 149, "should": [100, 482], "show": 480, "shutil": [332, 473, 474, 475, 476, 477, 478, 481], "side": [341, 390], "side_effect": [389, 390], "sigint": 126, "sign": 341, "signal": [23, 84, 186, 214, 333, 388, 476, 478, 480, 482], "signatur": [158, 255], "sigpip": 333, "sigterm": 126, "silicon": [481, 482], "simpl": [93, 106, 193, 235, 464, 465], "simple_serv": 407, "simpledialog": 189, "simplenamespac": 476, "simplequeu": 316, "simpler": [466, 479], "simplexmlrpcserv": 420, "simul": 319, "sinc": 384, "singl": [45, 84, 102, 169], "siphash24": 426, "site": [168, 334, 468, 472, 475, 479], "sitecustom": 334, "size": [176, 235, 293, 332, 347, 382], "sizegrip": 376, "skip": 388, "slash": 85, "sleep": 139, "slice": [428, 430, 465], "slot": [63, 64, 100], "slow": 85, "small": 95, "smtp": 335, "smtpd": [472, 474, 476, 477, 478], "smtphandler": 269, "smtplib": [335, 476, 477, 478, 482], "snapshot": 382, "sndhdr": [336, 478], "so": 475, "soapbox": 193, "socket": [84, 102, 107, 110, 126, 133, 136, 337, 341, 362, 426, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482], "socket_help": 362, "sockethandl": 269, "socketserv": [338, 476, 479, 480], "softwar": 467, "solari": 230, "solut": 151, "some": 79, "sort": [78, 85, 108], "sourc": [96, 109, 247, 250, 255, 378, 425, 465], "spawn": [283, 348], "speak": 102, "spec": [78, 432], "special": [186, 275, 344, 384, 386, 428, 432, 465, 470], "specif": [33, 75, 95, 158, 334, 345, 376, 384, 386, 405, 465, 466, 467, 468, 469], "specifi": [176, 270, 386, 421, 469, 471], "speed": 85, "sphinx": 468, "spinbox": 376, "split": 106, "spread": 343, "spwd": 339, "sql": 340, "sqlite": 340, "sqlite3": [340, 467, 472, 473, 474, 475, 476, 477, 478, 479, 480], "sscanf": 85, "ssize_t": 467, "ssl": [341, 468, 472, 474, 475, 476, 477, 478, 479, 480, 481], "stabl": 475, "stack": [255, 381, 442], "stacksummari": 381, "standalon": 421, "standard": [23, 158, 254, 262, 292, 344, 347, 385, 411, 432, 465, 482], "star": 384, "start": [92, 167, 186, 283, 384], "starter": 102, "startup": [247, 320], "stat": [308, 342, 476, 477], "state": [28, 33, 100, 214, 255, 283, 299, 358, 376, 384], "stateless": 158, "statement": [169, 365, 427, 428, 436, 467, 468], "static": [63, 85, 93, 100, 255, 428, 473, 474], "statist": [343, 382, 472, 474, 477, 479, 481], "statisticdiff": 382, "stderr": [79, 84], "stdin": 84, "stdlib": [469, 477], "stdout": [79, 84], "step": 101, "stop_iter": 353, "stopiter": 478, "storag": [33, 480], "store": [292, 461], "str": 344, "stream": [102, 124, 133, 158, 258, 299], "streamhandl": 269, "streamread": [136, 158], "streamreaderwrit": 158, "streamrecod": 158, "streamwrit": [136, 158], "strenum": 94, "strftime": 183, "stride": 7, "string": [5, 64, 78, 84, 85, 94, 106, 109, 259, 292, 319, 344, 345, 347, 348, 425, 435, 441, 446, 462, 465, 466, 468, 470, 473, 474, 476, 479, 480, 481, 482], "stringprep": 346, "strptime": 183, "strtod": 426, "struct": [60, 347, 476, 477, 479], "structur": [7, 63, 102, 167, 176, 273, 394, 429, 435], "stumbl": 470, "style": [7, 102, 344, 376, 441, 467], "sub": [33, 63, 120], "subclass": [76, 85, 94, 102, 243, 321, 428], "subgener": 476, "submiss": 84, "submodul": 432, "suboffset": 7, "subprocess": [124, 133, 137, 247, 348, 466, 476, 477, 478, 479, 480], "subprocess_exec": 133, "subprocessprotocol": 133, "subscript": [122, 430], "substitut": [348, 466], "subtest": 388, "suffix": 482, "suggest": 75, "summari": [93, 281, 476, 477, 478, 479, 480, 481, 482], "sun": [287, 349], "sunau": [349, 477, 480], "super": 93, "support": [33, 45, 50, 51, 64, 75, 76, 94, 95, 102, 109, 128, 167, 169, 170, 230, 341, 358, 362, 413, 465, 468, 477, 478, 479, 480, 481, 482], "suppress": [400, 476], "sur": [481, 482], "surpris": [100, 176], "switch": 78, "symtabl": 351, "synchron": [124, 138, 283, 316], "syntact": 474, "syntax": [120, 122, 413, 443, 468, 470, 474, 476, 478, 479], "syntaxerror": [85, 472], "sys": [84, 120, 352, 353, 354, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "sysconfig": [355, 469, 473, 475, 478], "syslog": [102, 356], "sysloghandl": [102, 269], "system": [64, 72, 151, 293, 348, 386, 422, 432, 456, 463, 477, 478, 479], "systemtap": [98, 479], "tab": [86, 376, 447], "tabl": [73, 281, 299], "tabnanni": 357, "tabular": 375, "tag": [376, 475], "tapset": 98, "tar": 358, "tarfil": [358, 472, 473, 475, 476, 477, 478, 481, 482], "target": [469, 478, 479], "tarinfo": 358, "task": [124, 126, 128, 139], "tcl": 369, "tcp": [133, 136], "tcpserver": 338, "teardownclass": 388, "teardownmodul": 388, "technic": 93, "tell": 384, "telnet": 359, "telnetlib": [359, 479], "tempfil": [360, 473, 474, 475, 476], "templat": [102, 189, 301, 452], "temporari": 461, "temporarili": 400, "termcap": 84, "termin": [293, 332], "terminolog": 292, "termio": 361, "test": [95, 151, 341, 362, 388, 400, 430, 478, 483], "test_epol": 426, "test_prefix": 389, "text": [92, 158, 177, 193, 247, 319, 340, 344, 363, 410, 470], "textbox": 177, "textpad": 177, "textwrap": [364, 476, 477], "than": 102, "that": [85, 93, 94, 95, 102, 266], "the": [23, 28, 33, 42, 66, 73, 76, 84, 85, 95, 96, 100, 101, 102, 103, 106, 109, 120, 132, 151, 176, 193, 196, 214, 216, 230, 251, 255, 267, 283, 292, 293, 297, 308, 332, 337, 340, 344, 348, 352, 353, 354, 365, 369, 382, 384, 386, 400, 410, 411, 416, 421, 425, 427, 428, 430, 432, 436, 456, 461, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482], "their": [94, 319], "them": 102, "theme": 469, "there": [84, 85], "thin": 73, "thing": 106, "third": 105, "this": 100, "thought": 93, "thousand": [469, 471], "thread": [33, 84, 102, 139, 186, 258, 267, 333, 362, 365, 369, 452, 472, 473, 474, 475, 476, 477, 478, 480, 481], "threading_help": 362, "threadpoolexecutor": 166, "through": 79, "throughout": 102, "time": [84, 101, 102, 183, 366, 425, 465, 473, 475, 476, 478, 479, 480, 481, 482], "timedelta": 183, "timedrotatingfilehandl": 269, "timeit": [367, 478, 479], "timelin": 386, "timeout": [139, 214, 337], "timeperiod": 94, "timer": [308, 365], "timezon": [183, 366], "tip": [109, 266], "tix": 375, "tk": [81, 368, 369, 375, 376, 469], "tkinter": [81, 189, 247, 369, 370, 371, 372, 373, 374, 375, 376, 473, 474, 478, 479, 480, 481], "tls": [33, 126, 341], "to": [76, 79, 84, 85, 94, 100, 101, 102, 109, 190, 250, 251, 259, 266, 268, 293, 308, 340, 348, 384, 386, 462, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "togeth": [85, 292], "token": [319, 326, 377, 378, 435, 474, 481], "toml": 379, "tomllib": 379, "too": 85, "tool": [273, 353, 469, 474, 481, 483], "top": [262, 382], "topic": 75, "touch": [469, 478, 479], "tp": 63, "tp_call": 10, "tp_dealloc": 100, "tp_free": 100, "tp_travers": 100, "trace": [33, 380, 382], "traceback": [152, 214, 381, 382, 428, 472, 473, 477, 478, 479], "tracebackexcept": 381, "tracemalloc": [42, 382, 477, 479, 480, 482], "tracker": 468, "trail": 85, "transact": 340, "transform": [85, 158, 473], "translat": [230, 384], "transport": 133, "treat": 102, "tree": [122, 235, 413], "treebuild": 413, "treeview": 376, "tri": [85, 169, 427, 467], "trigger": 328, "trigonometr": 275, "trivial": 292, "tss": 33, "tti": [361, 383], "ttk": [376, 469], "tupl": [60, 78, 85, 160, 344, 352, 386, 442], "turn": 353, "turtl": 384, "turtledemo": [384, 475], "turtlescreen": 384, "tutori": [76, 93, 101, 176, 186, 292, 340], "twister": 426, "two": 469, "txt": 396, "type": [7, 58, 61, 63, 64, 75, 76, 94, 95, 100, 109, 120, 122, 176, 181, 183, 255, 289, 292, 299, 340, 344, 369, 375, 385, 386, 405, 407, 410, 427, 428, 436, 464, 465, 466, 467, 468, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "typealia": 472, "typeddict": [473, 474], "typedef": 63, "tzinfo": 183, "udp": 133, "udpserv": 338, "unari": 430, "unbound": 390, "unboundlocalerror": 85, "undecor": 108, "under": 72, "underscor": 479, "understand": [292, 369], "unicod": [14, 23, 64, 109, 158, 358, 387, 462, 464, 465, 470, 475, 476], "unicodedata": [387, 473, 474, 478, 479, 480, 481, 482], "unicodedecodeerror": 85, "unicodeencodeerro": 85, "unifi": [464, 466, 467], "union": [176, 344], "uniqu": [85, 94], "unittest": [193, 388, 389, 390, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "univers": 465, "unix": [72, 77, 84, 126, 151, 173, 184, 220, 231, 303, 356, 391, 460], "unknown": 109, "unknownhandl": 395, "unpack": [25, 408, 441, 478], "unpickl": 299, "unsupport": 478, "up": [85, 96, 110, 169, 250], "updat": [400, 469, 482], "upgrad": 120, "uri": 340, "url": [110, 392, 394, 395], "urlerror": 110, "urllib": [110, 392, 393, 394, 395, 396, 472, 475, 476, 477, 478, 479, 480, 481, 482], "usag": [120, 193, 279, 322, 378, 380, 419], "use": [77, 84, 85, 94, 96, 99, 101, 102, 106, 151, 163, 169, 196, 235, 283, 308, 340, 348, 353, 365, 375, 384, 388, 395, 425, 428, 467, 468, 474, 481], "user": [214, 247, 268, 308, 355, 368, 468], "usercustom": 334, "userdict": 160, "userlist": 160, "userstr": 160, "utc": 102, "utf": [64, 158, 293, 340, 461, 479, 480], "utf_8_sig": 158, "util": [120, 169, 176, 209, 250, 288, 302, 362, 385, 407], "uu": 480, "uudecod": 426, "uuencod": [397, 426], "uuid": [398, 474, 480], "uwsgi": 102, "v1": [467, 475], "valid": [93, 407], "valu": [5, 73, 84, 85, 94, 95, 120, 167, 176, 186, 262, 292, 340, 405, 427, 428, 430], "variabl": [33, 101, 169, 170, 176, 181, 235, 292, 293, 355, 369, 461, 469, 479], "variad": [176, 473], "vc": 282, "vectorcal": [10, 481], "venv": [399, 473, 477, 479, 481, 482], "verbos": 106, "veri": [66, 72], "verif": [358, 469, 477], "version": [99, 251, 292, 358, 400, 461, 475], "versus": [106, 428], "vfork": 348, "via": [102, 340, 461], "view": [281, 344, 469, 470], "virtual": [354, 376, 461, 478], "visibl": 384, "vs": [94, 319, 386, 470], "w3c": 426, "wait": 139, "want": 85, "warn": [23, 193, 267, 362, 400, 425, 463, 469, 473, 479, 480], "warnings_help": 362, "watchedfilehandl": 269, "watcher": 132, "wav": 401, "wave": [401, 477, 480], "wave_read": 401, "wave_writ": 401, "way": 85, "wchar_t": 64, "weak": [75, 452, 463], "weakref": [402, 477, 481], "web": [102, 243, 475], "webassembl": [257, 456], "webbrows": [403, 474, 476], "what": [84, 85, 92, 101, 193, 292, 299, 308, 369, 462], "when": [85, 94, 99], "whi": [84, 85, 466], "which": 193, "while": [78, 427], "whitespac": 435, "who": 100, "wide": 33, "widget": [177, 369, 375, 376, 469], "wildcard": [427, 451, 472], "win": 86, "window": [64, 77, 86, 92, 131, 158, 177, 189, 247, 303, 348, 369, 384, 404, 405, 406, 461, 465, 468, 469, 473, 476, 479, 480, 483], "winreg": [405, 479], "winsound": [406, 479], "with": [34, 71, 78, 79, 84, 85, 92, 94, 96, 99, 100, 102, 137, 158, 169, 176, 186, 214, 243, 255, 267, 331, 332, 340, 348, 365, 386, 413, 421, 427, 428, 429, 467, 468, 476, 478, 480, 481], "within": 262, "without": 247, "work": [84, 85, 186, 193, 340, 386], "worker": [84, 283], "world": [123, 126, 369], "wrap": [110, 369, 389], "write": [73, 85, 109, 128, 133, 270, 319, 340, 467, 468], "writer": 266, "wsgi": 407, "wsgiref": [407, 467, 478], "www": [80, 84], "xdr": 408, "xdrlib": [397, 408], "xhtml": 240, "xinclud": 413, "xml": [314, 409, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 426, 462, 472, 474, 476, 477, 478, 479, 480, 481, 482], "xmlparser": [314, 413], "xmlpullpars": 413, "xmlreader": 416, "xmlrpc": [418, 419, 420, 478, 479, 480, 481], "xpath": 413, "yellow": 287, "yield": [430, 436], "you": [84, 85, 482], "your": [102, 151, 176, 230, 292, 482], "zero": 426, "zeromq": 102, "zip": [421, 422, 423, 465], "zipapp": [421, 478, 480], "zipfil": [422, 473, 475, 477, 478, 479, 480], "zipimport": [423, 472, 474], "zipinfo": 422, "zlib": [424, 426, 476, 479], "zoneinfo": [425, 482]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"\"tp slots\"": [[63, "tp-slots"]], "'UnicodeDecodeError' \u6216 'UnicodeEncodeErro' \u932f\u8aa4\u662f\u4ec0\u9ebc\u610f\u601d\uff1f": [[85, "what-does-unicodedecodeerror-or-unicodeencodeerror-error-mean"]], "(De)compression of files": [[149, "de-compression-of-files"]], "*.pyd \u6a94\u662f\u5426\u8207 DLL \u76f8\u540c\uff1f": [[86, "is-a-pyd-file-the-same-as-a-dll"]], "...\u53ea\u70ba\u76ee\u524d\u7684\u4f7f\u7528\u8005\u5b89\u88dd\u5957\u4ef6\uff1f": [[111, "install-packages-just-for-the-current-user"]], "...\u5728 Python 3.4 \u4e4b\u524d\u7684 Python \u7248\u672c\u4e2d\u5b89\u88dd pip\uff1f": [[111, "install-pip-in-versions-of-python-prior-to-python-3-4"]], "...\u5b89\u88dd\u79d1\u5b78\u7684 Python \u5957\u4ef6\uff1f": [[111, "install-scientific-python-packages"]], "...\u5e73\u884c\u5b89\u88dd\u591a\u500b Python \u7248\u672c\u4e26\u4f7f\u7528\u5b83\u5011\uff1f": [[111, "work-with-multiple-versions-of-python-installed-in-parallel"]], "/dev/poll Polling Objects": [[328, "dev-poll-polling-objects"]], "2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3": [[112, "to3-automated-python-2-to-3-code-translation"]], "3.4.3 \u4e2d\u7684\u8b8a\u66f4": [[477, "changed-in-3-4-3"]], "64-bit Specific": [[405, "bit-specific"]], "A CLI application starter template": [[102, "a-cli-application-starter-template"]], "A Cookbook Approach": [[77, "a-cookbook-approach"]], "A Finer-Grained Import Lock": [[476, "a-finer-grained-import-lock"]], "A Hello World Program": [[369, "a-hello-world-program"]], "A Note on IP Versions": [[99, "a-note-on-ip-versions"]], "A Per-Interpreter GIL": [[33, "a-per-interpreter-gil"]], "A Qt GUI for logging": [[102, "a-qt-gui-for-logging"]], "A command-line interface to difflib": [[190, "a-command-line-interface-to-difflib"]], "A more elaborate multiprocessing example": [[102, "a-more-elaborate-multiprocessing-example"]], "ABCs for working with IO": [[386, "abcs-for-working-with-io"]], "ANY": [[389, "any"]], "API": [[382, "api"], [399, "api"]], "API and Feature Removals": [[478, "api-and-feature-removals"], [479, "api-and-feature-removals"], [480, "api-and-feature-removals"], [481, "api-and-feature-removals"]], "API \u51fd\u5f0f": [[5, "api-functions"]], "API \u548c ABI \u7248\u672c\u7ba1\u7406": [[4, "api-and-abi-versioning"]], "API \u8207\u529f\u80fd\u7684\u79fb\u9664": [[477, "api-and-feature-removals"]], "API \u8b8a\u66f4": [[476, "api-changes"], [476, "id2"]], "AS Patterns": [[427, "as-patterns"]], "ASCII \u7de8\u89e3\u78bc\u5668": [[64, "ascii-codecs"]], "AU_read \u7269\u4ef6": [[349, "au-read-objects"]], "AU_write \u7269\u4ef6": [[349, "au-write-objects"]], "Abstract Protocol Support": [[75, "abstract-protocol-support"]], "AbstractBasicAuthHandler \u7269\u4ef6": [[395, "abstractbasicauthhandler-objects"]], "AbstractDigestAuthHandler \u7269\u4ef6": [[395, "abstractdigestauthhandler-objects"]], "Access Rights": [[405, "access-rights"]], "Access to external objects": [[268, "access-to-external-objects"]], "Access to internal objects": [[268, "access-to-internal-objects"]], "Access to message catalogs": [[266, "access-to-message-catalogs"]], "Accessing attributes of extension types": [[58, "accessing-attributes-of-extension-types"]], "Accessing functions from loaded dlls": [[176, "accessing-functions-from-loaded-dlls"]], "Accessing values exported from dlls": [[176, "accessing-values-exported-from-dlls"]], "Accessor Methods": [[410, "accessor-methods"]], "Action classes": [[120, "action-classes"]], "Adapter and converter recipes": [[340, "adapter-and-converter-recipes"]], "Adding contextual information to your logging output": [[102, "adding-contextual-information-to-your-logging-output"]], "Adding data and methods to the Basic example": [[76, "adding-data-and-methods-to-the-basic-example"]], "Adding handlers other than NullHandler to a logger in a library": [[102, "adding-handlers-other-than-nullhandler-to-a-logger-in-a-library"]], "Adding new actions": [[292, "adding-new-actions"]], "Adding new types": [[292, "adding-new-types"]], "Additional Utility Classes and Functions": [[385, "additional-utility-classes-and-functions"]], "Additional modules": [[461, "additional-modules"]], "Additional notes": [[207, "additional-notes"]], "Address Formats": [[283, "address-formats"]], "Address objects": [[259, "address-objects"]], "Advanced API": [[193, "advanced-api"]], "Advanced Debugger Support": [[33, "advanced-debugger-support"]], "Advanced Logging Tutorial": [[101, "advanced-logging-tutorial"]], "Affected APIs": [[344, "affected-apis"]], "Aliases to asynchronous ABCs in collections.abc": [[386, "aliases-to-asynchronous-abcs-in-collections-abc"]], "Aliases to other ABCs in collections.abc": [[386, "aliases-to-other-abcs-in-collections-abc"]], "Aliases to other concrete types": [[386, "aliases-to-other-concrete-types"]], "All start methods": [[283, "all-start-methods"]], "Allocator Domains": [[42, "allocator-domains"]], "Allowed members and attributes of enumerations": [[94, "allowed-members-and-attributes-of-enumerations"]], "Alternate Implementations": [[434, "alternate-implementations"]], "Alternative bundles": [[461, "alternative-bundles"]], "An example dictionary-based configuration": [[102, "an-example-dictionary-based-configuration"]], "An example of extending EnvBuilder": [[399, "an-example-of-extending-envbuilder"]], "Analysis functions": [[191, "analysis-functions"]], "Ancillary events": [[353, "ancillary-events"]], "Angular conversion": [[275, "angular-conversion"]], "Animation control": [[384, "animation-control"]], "Annotated assignment statements": [[436, "annotated-assignment-statements"]], "Annotation scopes": [[429, "annotation-scopes"]], "Any \u578b\u5225": [[386, "the-any-type"]], "Appearance": [[384, "appearance"]], "Application-Layer Protocol Negotiation Support": [[478, "application-layer-protocol-negotiation-support"]], "Applications": [[347, "applications"]], "Approximating importlib.import_module()": [[250, "approximating-importlib-import-module"]], "Architecture": [[369, "architecture"]], "Archiving example": [[332, "archiving-example"]], "Archiving example with base_dir": [[332, "archiving-example-with-base-dir"]], "Archiving operations": [[332, "archiving-operations"]], "Argparse \u6559\u5b78": [[89, "argparse-tutorial"]], "Argument Clinic \u6307\u5357": [[90, "argument-clinic-how-to"]], "Argument abbreviations (prefix matching)": [[120, "argument-abbreviations-prefix-matching"]], "Argument groups": [[120, "argument-groups"]], "ArgumentParser \u7269\u4ef6": [[120, "argumentparser-objects"]], "Arguments containing -": [[120, "arguments-containing"]], "Arguments in shebang lines": [[461, "arguments-in-shebang-lines"]], "Arithmetic conversions": [[430, "arithmetic-conversions"]], "Arithmetic operators": [[259, "arithmetic-operators"]], "Arrays": [[176, "arrays"]], "Arrays and pointers": [[176, "arrays-and-pointers"]], "Assignment expressions": [[430, "assignment-expressions"], [481, "assignment-expressions"]], "Assignment statements": [[436, "assignment-statements"]], "Async Object Structures": [[63, "async-object-structures"]], "Asynchronous Context Managers": [[428, "asynchronous-context-managers"]], "Asynchronous Iterators": [[428, "asynchronous-iterators"]], "Asynchronous Mixins": [[338, "asynchronous-mixins"]], "Asynchronous Notifications": [[33, "asynchronous-notifications"]], "Asynchronous generator functions": [[428, "asynchronous-generator-functions"], [430, "asynchronous-generator-functions"]], "Asynchronous generator-iterator methods": [[430, "asynchronous-generator-iterator-methods"]], "Atoms": [[430, "atoms"]], "Attr Objects": [[410, "attr-objects"]], "Attribute Access": [[464, "attribute-access"]], "Attribute Management": [[75, "attribute-management"]], "Attribute references": [[430, "attribute-references"]], "AttributeErrors": [[472, "attributeerrors"]], "Attributes": [[235, "attributes"]], "Attributes and Color": [[92, "attributes-and-color"]], "Attributes of the float_info named tuple": [[352, "id2"]], "Audio Device Objects": [[295, "audio-device-objects"]], "Audioop": [[426, "audioop"]], "Augmented Assignment": [[462, "augmented-assignment"]], "Augmented assignment statements": [[436, "augmented-assignment-statements"]], "Authentication keys": [[283, "authentication-keys"]], "Automatic indentation": [[247, "automatic-indentation"]], "Automatic name notification": [[93, "automatic-name-notification"]], "Autospeccing\uff08\u81ea\u52d5\u898f\u683c\uff09": [[389, "autospeccing"]], "Available Context Managers": [[400, "available-context-managers"]], "Available Functions": [[400, "available-functions"]], "Available Types": [[183, "available-types"]], "Avoiding PyObject_New": [[100, "avoiding-pyobject-new"]], "Await expression": [[430, "await-expression"]], "Awaitable Objects": [[428, "awaitable-objects"]], "Awaitables": [[139, "awaitables"]], "Aware and Naive Objects": [[183, "aware-and-naive-objects"]], "BLAKE2": [[235, "blake2"]], "Babyl \u7269\u4ef6": [[271, "babyl-objects"]], "BabylMessage \u7269\u4ef6": [[271, "babylmessage-objects"]], "Background, details, hints, tips and caveats": [[266, "background-details-hints-tips-and-caveats"]], "Bad Method Resolution Orders": [[103, "bad-method-resolution-orders"]], "Barrier": [[138, "barrier"]], "Barrier Objects": [[365, "barrier-objects"]], "Base Protocol": [[133, "base-protocol"]], "Base Protocols": [[133, "base-protocols"]], "Base Transport": [[133, "base-transport"]], "Base object types and macros": [[58, "base-object-types-and-macros"]], "BaseHandler \u7269\u4ef6": [[395, "basehandler-objects"]], "BaseRotatingHandler": [[269, "baserotatinghandler"]], "Basic API": [[193, "basic-api"]], "Basic Authentication": [[110, "id5"]], "Basic Widgets": [[375, "basic-widgets"]], "Basic customization": [[428, "basic-customization"]], "Best defaults": [[341, "best-defaults"]], "Beyond Very High Level Embedding: An overview": [[72, "beyond-very-high-level-embedding-an-overview"]], "Beyond sys.argv": [[120, "beyond-sys-argv"]], "Binary Objects": [[419, "binary-objects"]], "Binary Sequence Types --- bytes, bytearray, memoryview": [[344, "binary-sequence-types-bytes-bytearray-memoryview"]], "Binary Transforms": [[158, "binary-transforms"]], "Binary arithmetic operations": [[430, "binary-arithmetic-operations"]], "Binary bitwise operations": [[430, "binary-bitwise-operations"]], "Binding of names": [[429, "binding-of-names"]], "Bindings and Events": [[369, "bindings-and-events"]], "Bit fields in structures and unions": [[176, "bit-fields-in-structures-and-unions"]], "Blank lines": [[435, "blank-lines"]], "Blob \u7269\u4ef6": [[340, "blob-objects"]], "Boolean operations": [[430, "boolean-operations"]], "Boolean value of Enum classes and members": [[94, "boolean-value-of-enum-classes-and-members"]], "Boolean \u578b\u5225 - bool": [[344, "boolean-type-bool"]], "Boolean\uff08\u5e03\u6797\uff09\u7269\u4ef6": [[6, "boolean-objects"]], "Boolean\uff08\u5e03\u6797\uff09\u904b\u7b97 --- and, or, not": [[344, "boolean-operations-and-or-not"]], "Bootstrapping pip By Default": [[469, "bootstrapping-pip-by-default"], [477, "bootstrapping-pip-by-default"]], "BoundedSemaphore": [[138, "boundedsemaphore"]], "Browser Controller Objects": [[403, "browser-controller-objects"]], "Buffer Object Structures": [[63, "buffer-object-structures"]], "Buffer flags": [[255, "buffer-flags"]], "Buffer request types": [[7, "buffer-request-types"]], "Buffer structure": [[7, "buffer-structure"]], "Buffer-related functions": [[7, "buffer-related-functions"]], "Buffered Streaming Protocols": [[133, "buffered-streaming-protocols"]], "Buffered Streams": [[258, "buffered-streams"]], "Buffering logging messages and outputting them conditionally": [[102, "buffering-logging-messages-and-outputting-them-conditionally"]], "Bugs": [[376, "bugs"]], "Bugs and caveats": [[33, "bugs-and-caveats"]], "Build": [[483, "build"], [483, "id16"], [483, "id25"], [483, "id40"], [483, "id46"], [483, "id56"], [483, "id66"], [483, "id78"], [483, "id88"], [483, "id98"], [483, "id107"], [483, "id117"], [483, "id123"], [483, "id133"], [483, "id143"], [483, "id152"], [483, "id164"], [483, "id173"], [483, "id182"], [483, "id190"], [483, "id199"], [483, "id207"], [483, "id215"], [483, "id225"], [483, "id236"], [483, "id246"], [483, "id255"], [483, "id265"], [483, "id274"], [483, "id283"], [483, "id294"], [483, "id304"], [483, "id314"], [483, "id324"], [483, "id335"], [483, "id346"], [483, "id353"], [483, "id361"], [483, "id371"], [483, "id382"], [483, "id393"], [483, "id404"], [483, "id420"], [483, "id431"], [483, "id438"], [483, "id445"], [483, "id455"], [483, "id466"], [483, "id475"], [483, "id490"], [483, "id499"], [483, "id507"], [483, "id516"], [483, "id523"], [483, "id529"], [483, "id539"], [483, "id546"], [483, "id552"], [483, "id562"], [483, "id568"], [483, "id576"], [483, "id580"], [483, "id590"], [483, "id594"], [483, "id600"], [483, "id607"], [483, "id615"], [483, "id621"], [483, "id632"], [483, "id641"], [483, "id654"], [483, "id666"], [483, "id676"], [483, "id686"], [483, "id689"], [483, "id691"], [483, "id703"], [483, "id708"], [483, "id719"], [483, "id725"], [483, "id730"], [483, "id736"]], "Build Changes": [[474, "build-changes"], [480, "build-changes"], [482, "build-changes"]], "Build and C API Changes": [[465, "build-and-c-api-changes"], [466, "build-and-c-api-changes"], [467, "build-and-c-api-changes"], [468, "build-and-c-api-changes"], [469, "build-and-c-api-changes"], [470, "build-and-c-api-changes"], [471, "build-and-c-api-changes"], [475, "build-and-c-api-changes"], [478, "build-and-c-api-changes"], [479, "build-and-c-api-changes"], [481, "build-and-c-api-changes"]], "Building Arbitrary Values": [[73, "building-arbitrary-values"]], "Building C and C++ Extensions with setuptools": [[71, "building-c-and-c-extensions-with-setuptools"]], "Building C extensions": [[476, "building-c-extensions"]], "Building XML documents": [[413, "building-xml-documents"]], "Building generic types and type aliases": [[386, "building-generic-types-and-type-aliases"]], "Building values": [[5, "building-values"]], "Built-in Codecs": [[64, "built-in-codecs"]], "Built-in functions": [[95, "built-in-functions"], [428, "built-in-functions"]], "Built-in methods": [[428, "built-in-methods"]], "Builtins": [[470, "builtins"]], "Builtins and restricted execution": [[429, "builtins-and-restricted-execution"]], "Byte Order, Size, and Alignment": [[347, "byte-order-size-and-alignment"]], "Bytearray Objects": [[344, "bytearray-objects"]], "Bytecode analysis": [[191, "bytecode-analysis"]], "Bytes Objects": [[344, "bytes-objects"]], "Bytes and Bytearray Operations": [[344, "bytes-and-bytearray-operations"]], "C API": [[483, "c-api"], [483, "id10"], [483, "id29"], [483, "id50"], [483, "id60"], [483, "id68"], [483, "id73"], [483, "id82"], [483, "id93"], [483, "id101"], [483, "id110"], [483, "id127"], [483, "id137"], [483, "id146"], [483, "id158"], [483, "id168"], [483, "id177"], [483, "id185"], [483, "id194"], [483, "id202"], [483, "id210"], [483, "id219"], [483, "id230"], [483, "id240"], [483, "id249"], [483, "id259"], [483, "id269"], [483, "id277"], [483, "id288"], [483, "id298"], [483, "id308"], [483, "id318"], [483, "id329"], [483, "id340"], [483, "id349"], [483, "id355"], [483, "id365"], [483, "id376"], [483, "id387"], [483, "id398"], [483, "id408"], [483, "id425"], [483, "id427"], [483, "id460"], [483, "id478"], [483, "id485"], [483, "id495"], [483, "id501"], [483, "id511"], [483, "id521"], [483, "id534"], [483, "id544"], [483, "id561"], [483, "id573"], [483, "id583"], [483, "id599"], [483, "id605"], [483, "id620"], [483, "id633"], [483, "id644"], [483, "id656"], [483, "id661"], [483, "id722"], [483, "id731"], [483, "id737"]], "C API \u4e2d\u5df2\u68c4\u7528\u7684\u51fd\u5f0f\u548c\u578b\u5225": [[476, "deprecated-functions-and-types-of-the-c-api"]], "C API \u4e2d\u7684\u6539\u52d5": [[472, "changes-in-the-c-api"], [477, "changes-in-the-c-api"], [478, "changes-in-the-c-api"], [479, "changes-in-the-c-api"], [480, "changes-in-the-c-api"], [481, "changes-in-the-c-api"], [482, "changes-in-the-c-api"]], "C API \u7a69\u5b9a\u6027": [[57, "c-api-stability"]], "C API \u8b8a\u66f4": [[472, "c-api-changes"], [473, "c-api-changes"], [474, "c-api-changes"], [480, "c-api-changes"], [482, "c-api-changes"]], "C \u64f4\u5145\u6a21\u7d44": [[456, "c-extensions"]], "CA certificates": [[341, "ca-certificates"]], "CAB \u7269\u4ef6": [[281, "cab-objects"]], "CGIXMLRPCRequestHandler": [[420, "cgixmlrpcrequesthandler"]], "CPython bytecode changes": [[479, "cpython-bytecode-changes"], [480, "cpython-bytecode-changes"], [481, "cpython-bytecode-changes"], [482, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc (bytecode) \u8b8a\u66f4": [[473, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc\u66f4\u6539": [[472, "cpython-bytecode-changes"]], "CPython \u4f4d\u5143\u7d44\u78bc\u8b8a\u66f4": [[474, "cpython-bytecode-changes"]], "CPython \u5be6\u4f5c\u8b8a\u66f4": [[477, "cpython-implementation-changes"]], "CacheFTPHandler \u7269\u4ef6": [[395, "cacheftphandler-objects"]], "Cached bytecode invalidation": [[432, "cached-bytecode-invalidation"]], "Callable types": [[428, "callable-types"]], "Callback example 1: trivial callback": [[292, "callback-example-1-trivial-callback"]], "Callback example 2: check option order": [[292, "callback-example-2-check-option-order"]], "Callback example 3: check option order (generalized)": [[292, "callback-example-3-check-option-order-generalized"]], "Callback example 4: check arbitrary condition": [[292, "callback-example-4-check-arbitrary-condition"]], "Callback example 5: fixed arguments": [[292, "callback-example-5-fixed-arguments"]], "Callback example 6: variable arguments": [[292, "callback-example-6-variable-arguments"]], "Callback function arguments": [[353, "callback-function-arguments"]], "Callback functions": [[176, "callback-functions"]], "Calling Python Functions from C": [[73, "calling-python-functions-from-c"]], "Calling functions": [[176, "calling-functions"]], "Calling functions on elements": [[95, "calling-functions-on-elements"]], "Calling functions with your own custom data types": [[176, "calling-functions-with-your-own-custom-data-types"]], "Calling functions, continued": [[176, "calling-functions-continued"]], "Calling variadic functions": [[176, "calling-variadic-functions"]], "Calls": [[430, "calls"]], "Calltips": [[247, "calltips"]], "Can I create an object class with some methods implemented in C and others in Python (e.g. through inheritance)?": [[79, "can-i-create-an-object-class-with-some-methods-implemented-in-c-and-others-in-python-e-g-through-inheritance"]], "Can I end a raw string with an odd number of backslashes?": [[85, "can-i-end-a-raw-string-with-an-odd-number-of-backslashes"]], "Capsules": [[11, "capsules"], [469, "capsules"]], "Capture Patterns": [[427, "capture-patterns"]], "Caring about security": [[151, "caring-about-security"]], "Catching exceptions from __enter__ methods": [[169, "catching-exceptions-from-enter-methods"]], "Cautions about fork()": [[33, "cautions-about-fork"]], "Caveats": [[421, "caveats"]], "Cell \u7269\u4ef6": [[12, "cell-objects"]], "Certificate chains": [[341, "certificate-chains"]], "Certificates": [[341, "certificates"]], "ChainMap \u7269\u4ef6": [[160, "chainmap-objects"]], "ChainMap \u7bc4\u4f8b\u548c\u7528\u6cd5": [[160, "chainmap-examples-and-recipes"]], "Changelog\uff08\u66f4\u52d5\u65e5\u8a8c\uff09": [[483, "changelog"]], "Changes Already Present In Python 2.6": [[470, "changes-already-present-in-python-2-6"]], "Changes To Exceptions": [[470, "changes-to-exceptions"]], "Changes in 'python' Command Behavior": [[477, "changes-in-python-command-behavior"], [479, "changes-in-python-command-behavior"]], "Changes in Python Behavior": [[480, "changes-in-python-behavior"]], "Changes in Python behavior": [[478, "changes-in-python-behavior"], [481, "changes-in-python-behavior"]], "Changes in the Python API": [[474, "changes-in-the-python-api"], [478, "changes-in-the-python-api"], [479, "changes-in-the-python-api"], [480, "changes-in-the-python-api"], [481, "changes-in-the-python-api"], [481, "id2"], [482, "changes-in-the-python-api"]], "Changes since Python 2.6": [[384, "changes-since-python-2-6"]], "Changes since Python 3.0": [[384, "changes-since-python-3-0"]], "Changes to Built-in Functions": [[462, "changes-to-built-in-functions"]], "Changes to the Development Process": [[468, "changes-to-the-development-process"]], "Changes to the Handling of Deprecation Warnings": [[469, "changes-to-the-handling-of-deprecation-warnings"]], "Changing Static Types to Heap Types": [[100, "changing-static-types-to-heap-types"]], "Changing languages on the fly": [[230, "changing-languages-on-the-fly"]], "Changing the format of displayed messages": [[101, "changing-the-format-of-displayed-messages"]], "Character Encodings": [[262, "character-encodings"]], "Character Map Codecs": [[64, "character-map-codecs"]], "Checking for a Pair": [[319, "checking-for-a-pair"]], "Checking if a module can be imported": [[250, "checking-if-a-module-can-be-imported"]], "Cipher selection": [[341, "cipher-selection"]], "Class Instances": [[428, "class-instances"]], "Class Objects": [[312, "class-objects"]], "Class Patterns": [[427, "class-patterns"]], "Class and Module Fixtures": [[388, "class-and-module-fixtures"]], "Class definitions": [[427, "class-definitions"]], "Class definition\uff08\u985e\u5225\u5b9a\u7fa9\uff09\u8a9e\u6cd5": [[440, "class-definition-syntax"]], "Class instances": [[428, "id3"]], "Class method objects": [[428, "class-method-objects"]], "Class methods": [[93, "class-methods"]], "Class \u53ca\u5be6\u4f8b\u8b8a\u6578": [[440, "class-and-instance-variables"]], "Class \u7269\u4ef6": [[440, "class-objects"]], "Class-based API": [[230, "class-based-api"]], "Classes": [[329, "classes"], [347, "classes"], [428, "classes"]], "Classes and Class Instances": [[344, "classes-and-class-instances"]], "Classes and functions": [[388, "classes-and-functions"]], "Class\uff08\u985e\u5225\uff09": [[440, "classes"]], "Cleaning up in an __enter__ implementation": [[169, "cleaning-up-in-an-enter-implementation"]], "Cleanup": [[283, "cleanup"], [292, "cleanup"]], "Client-side operation": [[341, "client-side-operation"]], "Clock ID Constants": [[366, "clock-id-constants"]], "Closing thoughts": [[93, "closing-thoughts"]], "Cmd Example": [[155, "cmd-example"]], "Cmd \u7269\u4ef6": [[155, "cmd-objects"]], "Code Context": [[247, "code-context"]], "Code Objects": [[344, "code-objects"]], "Code Objects Bit Flags": [[255, "code-objects-bit-flags"]], "Code Repository": [[475, "code-repository"]], "Code objects": [[428, "code-objects"]], "Codec Base Classes": [[158, "codec-base-classes"]], "Codecs": [[475, "codecs"]], "Collections Abstract Base Classes": [[161, "collections-abstract-base-classes"]], "Collections Abstract Base Classes -- Detailed Descriptions": [[161, "collections-abstract-base-classes-detailed-descriptions"]], "Color control": [[384, "color-control"]], "Column Identifiers": [[376, "column-identifiers"]], "Combinatoric functions": [[95, "combinatoric-functions"]], "Combined key and certificate": [[341, "combined-key-and-certificate"]], "Combining members of Flag": [[94, "combining-members-of-flag"]], "Combobox": [[376, "combobox"]], "Command-Line Interface": [[311, "command-line-interface"], [358, "command-line-interface"], [422, "command-line-interface"]], "Command-Line Usage": [[378, "command-line-usage"], [380, "command-line-usage"]], "Command-line interface": [[191, "command-line-interface"]], "Command-line options": [[358, "command-line-options"], [422, "command-line-options"]], "Command-line use": [[163, "command-line-use"]], "Comment Objects": [[410, "comment-objects"]], "Comments": [[435, "comments"]], "Common Problems": [[106, "common-problems"]], "Common Sequence Operations": [[344, "common-sequence-operations"]], "Common Stumbling Blocks": [[470, "common-stumbling-blocks"]], "Common problems and solutions": [[151, "common-problems-and-solutions"]], "Comparing Strings": [[109, "comparing-strings"]], "Comparison operators": [[259, "comparison-operators"]], "Comparisons": [[94, "comparisons"], [99, "comparisons"], [430, "comparisons"]], "Compilation Flags": [[106, "compilation-flags"]], "Compilation and Linkage": [[73, "compilation-and-linkage"]], "Compile-time configuration": [[425, "compile-time-configuration"]], "Compiler and linker flags": [[456, "compiler-and-linker-flags"]], "Compiling Regular Expressions": [[106, "compiling-regular-expressions"]], "Compiling and Linking under Unix-like systems": [[72, "compiling-and-linking-under-unix-like-systems"]], "Complete Practical Example": [[93, "complete-practical-example"]], "Completion": [[320, "completion"]], "Completions": [[247, "completions"]], "Complex arrays": [[7, "complex-arrays"]], "Composability": [[95, "composability"]], "Compound shapes": [[384, "compound-shapes"]], "Compressing and decompressing data in memory": [[270, "compressing-and-decompressing-data-in-memory"]], "Compute differences": [[382, "compute-differences"]], "Condition": [[138, "condition"]], "Condition Objects": [[365, "condition-objects"]], "Conditional expressions": [[430, "conditional-expressions"]], "ConfigParser \u7269\u4ef6": [[167, "configparser-objects"]], "Configuration dictionary schema": [[268, "configuration-dictionary-schema"]], "Configuration file format": [[268, "configuration-file-format"]], "Configuration functions": [[268, "configuration-functions"]], "Configuration server example": [[102, "configuration-server-example"]], "Configuration variables": [[355, "configuration-variables"]], "Configuring Logging": [[101, "configuring-logging"]], "Configuring Logging for a Library": [[101, "configuring-logging-for-a-library"]], "Configuring QueueHandler and QueueListener": [[268, "configuring-queuehandler-and-queuelistener"]], "Configuring filters with dictConfig()": [[102, "configuring-filters-with-dictconfig"]], "Configuring the data sources": [[425, "configuring-the-data-sources"]], "Configuring the limit": [[344, "configuring-the-limit"]], "Conflicts between options": [[292, "conflicts-between-options"]], "Conformance": [[410, "conformance"]], "Connecting Existing Sockets": [[133, "connecting-existing-sockets"]], "Connection Objects": [[283, "connection-objects"]], "Connection \u7269\u4ef6": [[340, "connection-objects"]], "Console I/O": [[282, "console-i-o"]], "Constants": [[177, "constants"]], "Consumer API": [[299, "consumer-api"]], "Content Manager Instances": [[197, "content-manager-instances"]], "Content Model Descriptions": [[314, "module-xml.parsers.expat.model"]], "ContentHandler \u7269\u4ef6": [[415, "contenthandler-objects"]], "Context Manager Types": [[344, "context-manager-types"]], "Context Variables": [[170, "context-variables"]], "Context menus": [[247, "context-menus"]], "Context objects": [[186, "context-objects"]], "Context \u578b\u5225": [[466, "the-context-type"]], "Contexts and start methods": [[283, "contexts-and-start-methods"]], "Controlling the Garbage Collector State": [[28, "controlling-the-garbage-collector-state"]], "Convenience Functions": [[419, "convenience-functions"]], "Convenience factory functions": [[259, "convenience-factory-functions"]], "Conversion to Strings and Integers": [[259, "conversion-to-strings-and-integers"]], "Converting Between File Encodings": [[109, "converting-between-file-encodings"]], "Converting an argument sequence to a string on Windows": [[348, "converting-an-argument-sequence-to-a-string-on-windows"]], "Converting to Bytes": [[109, "converting-to-bytes"]], "Cookie \u7269\u4ef6": [[243, "cookie-objects"], [244, "cookie-objects"]], "Cookie \u7ba1\u7406": [[426, "cookie-management"]], "CookieJar \u8207 FileCookieJar \u7269\u4ef6": [[243, "cookiejar-and-filecookiejar-objects"]], "CookiePolicy \u7269\u4ef6": [[243, "cookiepolicy-objects"]], "Core Functionality": [[120, "core-functionality"]], "Core and Builtins": [[483, "core-and-builtins"], [483, "id4"], [483, "id12"], [483, "id21"], [483, "id30"], [483, "id36"], [483, "id42"], [483, "id52"], [483, "id62"], [483, "id69"], [483, "id75"], [483, "id84"], [483, "id94"], [483, "id103"], [483, "id113"], [483, "id119"], [483, "id129"], [483, "id139"], [483, "id148"], [483, "id160"], [483, "id169"], [483, "id178"], [483, "id186"], [483, "id195"], [483, "id203"], [483, "id211"], [483, "id221"], [483, "id232"], [483, "id242"], [483, "id251"], [483, "id261"], [483, "id270"], [483, "id279"], [483, "id290"], [483, "id300"], [483, "id310"], [483, "id320"], [483, "id331"], [483, "id342"], [483, "id350"], [483, "id357"], [483, "id367"], [483, "id378"], [483, "id389"], [483, "id400"], [483, "id409"], [483, "id416"], [483, "id428"], [483, "id434"], [483, "id441"], [483, "id451"], [483, "id462"], [483, "id471"], [483, "id479"], [483, "id486"], [483, "id496"], [483, "id503"], [483, "id512"], [483, "id525"], [483, "id535"], [483, "id548"], [483, "id558"], [483, "id567"], [483, "id569"], [483, "id577"], [483, "id581"], [483, "id586"], [483, "id591"], [483, "id596"], [483, "id602"], [483, "id610"], [483, "id617"], [483, "id626"], [483, "id636"], [483, "id646"], [483, "id650"], [483, "id658"], [483, "id667"], [483, "id671"], [483, "id679"], [483, "id681"], [483, "id692"], [483, "id694"], [483, "id696"], [483, "id701"], [483, "id704"], [483, "id709"], [483, "id711"], [483, "id717"], [483, "id723"], [483, "id728"], [483, "id733"]], "Coroutine Objects": [[428, "coroutine-objects"]], "Coroutine Utility Functions": [[385, "coroutine-utility-functions"]], "Coroutine function definition": [[427, "coroutine-function-definition"]], "Coroutine functions": [[428, "coroutine-functions"]], "Coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6": [[19, "coroutine-objects"]], "Counter \u7269\u4ef6": [[160, "counter-objects"]], "Coupling Widget Variables": [[369, "coupling-widget-variables"]], "Creating Address/Network/Interface objects": [[99, "creating-address-network-interface-objects"]], "Creating Heap-Allocated Types": [[61, "creating-heap-allocated-types"]], "Creating Standalone Applications with zipapp": [[421, "creating-standalone-applications-with-zipapp"]], "Creating Tasks": [[139, "creating-tasks"]], "Creating a lot of loggers": [[102, "creating-a-lot-of-loggers"]], "Creating and accessing Unicode strings": [[64, "creating-and-accessing-unicode-strings"]], "Creating hash objects": [[235, "creating-hash-objects"]], "Creating members that are mixed with other data types": [[94, "creating-members-that-are-mixed-with-other-data-types"]], "Creating new iterators": [[95, "creating-new-iterators"]], "Creating the class object": [[428, "creating-the-class-object"]], "Creating the parser": [[292, "creating-the-parser"]], "Credits": [[235, "credits"]], "Cross Compiling Options": [[456, "cross-compiling-options"]], "Current State of Generators, Coroutines, and Asynchronous Generators": [[255, "current-state-of-generators-coroutines-and-asynchronous-generators"]], "Curses Programming with Python": [[92, "curses-programming-with-python"]], "Cursor \u7269\u4ef6": [[340, "cursor-objects"]], "Custom Exceptions": [[259, "custom-exceptions"]], "Custom Levels": [[101, "custom-levels"]], "Custom Policies": [[132, "custom-policies"]], "Custom Reduction for Types, Functions, and Other Objects": [[299, "custom-reduction-for-types-functions-and-other-objects"]], "Custom classes": [[428, "custom-classes"]], "Custom handling of levels": [[102, "custom-handling-of-levels"]], "Custom validators": [[93, "custom-validators"]], "Customization": [[461, "customization"]], "Customization via INI files": [[461, "customization-via-ini-files"]], "Customize Memory Allocators": [[42, "customize-memory-allocators"]], "Customize pymalloc Arena Allocator": [[42, "customize-pymalloc-arena-allocator"]], "Customized exception formatting": [[102, "customized-exception-formatting"]], "Customized managers": [[283, "customized-managers"]], "Customized names": [[93, "customized-names"]], "Customizing LogRecord": [[102, "customizing-logrecord"]], "Customizing Parser Behaviour": [[167, "customizing-parser-behaviour"]], "Customizing attribute access": [[428, "customizing-attribute-access"]], "Customizing class creation": [[428, "customizing-class-creation"]], "Customizing default Python versions": [[461, "customizing-default-python-versions"]], "Customizing file parsing": [[120, "customizing-file-parsing"]], "Customizing handlers with dictConfig()": [[102, "customizing-handlers-with-dictconfig"]], "Customizing instance and subclass checks": [[428, "customizing-instance-and-subclass-checks"]], "Customizing module attribute access": [[428, "customizing-module-attribute-access"]], "Customizing positional arguments in class pattern matching": [[428, "customizing-positional-arguments-in-class-pattern-matching"]], "DEFAULT": [[389, "default"]], "DNS": [[126, "dns"]], "DOM \u652f\u63f4": [[462, "dom-support"]], "DOM \u7269\u4ef6": [[411, "dom-objects"]], "DOM \u7bc4\u4f8b": [[411, "dom-example"]], "DOMEventStream \u7269\u4ef6": [[412, "domeventstream-objects"]], "DOMImplementation \u7269\u4ef6": [[410, "domimplementation-objects"]], "DTDHandler \u7269\u4ef6": [[415, "dtdhandler-objects"]], "DTrace and SystemTap probing support": [[479, "dtrace-and-systemtap-probing-support"]], "Data": [[110, "data"]], "Data Types That Support Iterators": [[95, "data-types-that-support-iterators"]], "Data sources": [[425, "data-sources"]], "Data stream format": [[299, "data-stream-format"]], "Data types": [[176, "data-types"]], "DataHandler \u7269\u4ef6": [[395, "datahandler-objects"]], "Database Objects": [[281, "database-objects"]], "Dataclass support": [[94, "dataclass-support"]], "Datagram Protocols": [[133, "datagram-protocols"]], "Datagram Transports": [[133, "datagram-transports"]], "DatagramHandler": [[269, "datagramhandler"]], "Date/Time Type": [[465, "date-time-type"]], "DateTime \u7269\u4ef6": [[20, "datetime-objects"]], "Dealing with handlers that block": [[102, "dealing-with-handlers-that-block"]], "Debug build uses the same ABI as release build": [[481, "debug-build-uses-the-same-abi-as-release-build"]], "Debug hooks on the Python memory allocators": [[42, "debug-hooks-on-the-python-memory-allocators"]], "Debug menu (Shell window only)": [[247, "debug-menu-shell-window-only"]], "Debug options": [[456, "debug-options"]], "Debugger Commands": [[297, "debugger-commands"]], "Debugging": [[193, "debugging"]], "Debugging C API extensions and CPython Internals with GDB": [[96, "debugging-c-api-extensions-and-cpython-internals-with-gdb"]], "Debugging CGI scripts": [[151, "debugging-cgi-scripts"]], "Decimal FAQ": [[186, "decimal-faq"]], "Decimal objects": [[186, "decimal-objects"]], "Decimal \u578b\u5225": [[466, "the-decimal-type"]], "Decompression pitfalls": [[422, "decompression-pitfalls"]], "Default Memory Allocators": [[42, "default-memory-allocators"]], "Default Warning Filter": [[400, "default-warning-filter"]], "Default adapters and converters (deprecated)": [[340, "default-adapters-and-converters-deprecated"]], "Default behaviors of extraction": [[422, "default-behaviors-of-extraction"]], "Default named filters": [[358, "default-named-filters"]], "Default values": [[292, "default-values"]], "DefaultCookiePolicy \u7269\u4ef6": [[243, "defaultcookiepolicy-objects"]], "Deferred translations": [[230, "deferred-translations"]], "Defining Extension Types: Assorted Topics": [[75, "defining-extension-types-assorted-topics"]], "Defining Extension Types: Tutorial": [[76, "defining-extension-types-tutorial"]], "Defining Getters and Setters": [[58, "defining-getters-and-setters"]], "Defining Heap Types": [[100, "defining-heap-types"]], "Defining Networks": [[99, "defining-networks"]], "Defining a callback option": [[292, "defining-a-callback-option"]], "Defining options": [[292, "defining-options"]], "Defining tp_dealloc": [[100, "defining-tp-dealloc"]], "Definition and introduction": [[93, "definition-and-introduction"]], "Delegating tp_traverse": [[100, "delegating-tp-traverse"]], "Deleted and Deprecated Modules": [[462, "deleted-and-deprecated-modules"]], "Delimiters": [[435, "delimiters"]], "Demos and Tools": [[474, "demos-and-tools"], [481, "demos-and-tools"]], "Deploying Web applications using Gunicorn and uWSGI": [[102, "deploying-web-applications-using-gunicorn-and-uwsgi"]], "Deprecated Build Options": [[479, "deprecated-build-options"]], "Deprecated Python Behavior": [[478, "deprecated-python-behavior"], [480, "deprecated-python-behavior"]], "Deprecated Python behavior": [[479, "deprecated-python-behavior"]], "Deprecated Python modules, functions and methods": [[478, "deprecated-python-modules-functions-and-methods"], [479, "deprecated-python-modules-functions-and-methods"], [480, "deprecated-python-modules-functions-and-methods"]], "Deprecated functions and types of the C API": [[479, "deprecated-functions-and-types-of-the-c-api"], [480, "deprecated-functions-and-types-of-the-c-api"]], "Deprecation Timeline of Major Features": [[386, "deprecation-timeline-of-major-features"]], "Deprecations and Removals": [[468, "deprecations-and-removals"]], "Deprecations in the Python API": [[477, "deprecations-in-the-python-api"]], "Derived Enumerations": [[94, "derived-enumerations"]], "Describing Warning Filters": [[400, "describing-warning-filters"]], "Descriptor-typed fields": [[181, "descriptor-typed-fields"]], "Descriptors": [[464, "descriptors"]], "Descriptor\uff08\u63cf\u8ff0\u5668\uff09\u7269\u4ef6": [[21, "descriptor-objects"]], "Determining if an Object is Aware or Naive": [[183, "determining-if-an-object-is-aware-or-naive"]], "Determining the appropriate metaclass": [[428, "determining-the-appropriate-metaclass"]], "Developing tkinter applications": [[247, "developing-tkinter-applications"]], "Diagnostics": [[461, "diagnostics"]], "Dialect \u8207\u683c\u5f0f\u53c3\u6578": [[175, "dialects-and-formatting-parameters"]], "Dictionary Merge & Update Operators": [[482, "dictionary-merge-update-operators"]], "Dictionary Schema Details": [[268, "dictionary-schema-details"]], "Dictionary displays": [[430, "dictionary-displays"]], "Differ Example": [[190, "differ-example"]], "Differ Objects": [[190, "differ-objects"]], "Differences Between Unix and Windows": [[77, "differences-between-unix-and-windows"]], "Directives": [[193, "directives"]], "Directory Objects": [[281, "directory-objects"]], "Directory and files operations": [[332, "directory-and-files-operations"]], "Disabling events": [[353, "disabling-events"]], "Disabling use of vfork() or posix_spawn()": [[348, "disabling-use-of-vfork-or-posix-spawn"]], "Dispatch Tables": [[299, "dispatch-tables"]], "Display the top 10": [[382, "display-the-top-10"]], "Displaying Text": [[92, "displaying-text"]], "Displaying the date/time in messages": [[101, "displaying-the-date-time-in-messages"]], "Displays for lists, sets and dictionaries": [[430, "displays-for-lists-sets-and-dictionaries"]], "Distinguishing test iterations using subtests": [[388, "distinguishing-test-iterations-using-subtests"]], "Distribution Discovery": [[251, "distribution-discovery"]], "Distribution files": [[251, "distribution-files"]], "Distribution metadata": [[251, "distribution-metadata"]], "Distribution requirements": [[251, "distribution-requirements"]], "Distribution versions": [[251, "distribution-versions"]], "Distributions": [[251, "distributions"]], "Distutils: Making Modules Easy to Install": [[462, "distutils-making-modules-easy-to-install"]], "DocCGIXMLRPCRequestHandler": [[420, "doccgixmlrpcrequesthandler"]], "DocTest \u7269\u4ef6": [[193, "doctest-objects"]], "DocTestFinder \u7269\u4ef6": [[193, "doctestfinder-objects"]], "DocTestParser \u7269\u4ef6": [[193, "doctestparser-objects"]], "DocTestRunner \u7269\u4ef6": [[193, "doctestrunner-objects"]], "DocXMLRPCServer \u7269\u4ef6": [[420, "docxmlrpcserver-objects"]], "Document Objects": [[410, "document-objects"]], "DocumentType \u7269\u4ef6": [[410, "documenttype-objects"]], "Documentation": [[483, "documentation"], [483, "id6"], [483, "id14"], [483, "id23"], [483, "id32"], [483, "id38"], [483, "id44"], [483, "id54"], [483, "id64"], [483, "id77"], [483, "id86"], [483, "id96"], [483, "id105"], [483, "id115"], [483, "id121"], [483, "id131"], [483, "id141"], [483, "id150"], [483, "id162"], [483, "id171"], [483, "id180"], [483, "id188"], [483, "id197"], [483, "id205"], [483, "id213"], [483, "id223"], [483, "id234"], [483, "id244"], [483, "id253"], [483, "id263"], [483, "id272"], [483, "id281"], [483, "id292"], [483, "id302"], [483, "id312"], [483, "id322"], [483, "id333"], [483, "id344"], [483, "id352"], [483, "id359"], [483, "id369"], [483, "id380"], [483, "id391"], [483, "id402"], [483, "id411"], [483, "id418"], [483, "id430"], [483, "id436"], [483, "id443"], [483, "id453"], [483, "id464"], [483, "id473"], [483, "id481"], [483, "id488"], [483, "id498"], [483, "id505"], [483, "id514"], [483, "id527"], [483, "id537"], [483, "id550"], [483, "id563"], [483, "id574"], [483, "id584"], [483, "id588"], [483, "id623"], [483, "id629"], [483, "id639"], [483, "id652"], [483, "id662"], [483, "id674"], [483, "id684"], [483, "id699"], [483, "id707"], [483, "id715"], [483, "id738"]], "Documentation Changes": [[469, "documentation-changes"], [477, "documentation-changes"]], "Documenting XMLRPC server": [[420, "documenting-xmlrpc-server"]], "DomainFilter": [[382, "domainfilter"]], "Drawing state": [[384, "drawing-state"]], "Dry Run": [[461, "dry-run"]], "Dumping the traceback": [[214, "dumping-the-traceback"]], "Dumping the traceback on a user signal": [[214, "dumping-the-traceback-on-a-user-signal"]], "Dumping the tracebacks after a timeout": [[214, "dumping-the-tracebacks-after-a-timeout"]], "DuplicateFreeEnum": [[94, "duplicatefreeenum"]], "Duplicating enum members and values": [[94, "duplicating-enum-members-and-values"]], "Dynamic Allocation": [[33, "dynamic-allocation"]], "Dynamic Type Creation": [[385, "dynamic-type-creation"]], "Dynamic lookups": [[93, "dynamic-lookups"]], "Eager Task Factory": [[139, "eager-task-factory"]], "Ease of debugging and testing": [[95, "ease-of-debugging-and-testing"]], "Edge and Level Trigger Polling (epoll) Objects": [[328, "edge-and-level-trigger-polling-epoll-objects"]], "Edit menu (Shell and Editor)": [[247, "edit-menu-shell-and-editor"]], "Editing and Navigation": [[247, "editing-and-navigation"]], "Editor windows": [[247, "editor-windows"]], "Element Objects": [[410, "element-objects"]], "Element \u7269\u4ef6": [[413, "element-objects"]], "ElementTree \u5957\u4ef6": [[467, "the-elementtree-package"]], "ElementTree \u7269\u4ef6": [[413, "elementtree-objects"]], "Ellipsis": [[428, "ellipsis"]], "Ellipsis Object": [[56, "ellipsis-object"]], "Embedded Python": [[354, "embedded-python"]], "Embedding Python in C++": [[72, "embedding-python-in-c"]], "Emulating buffer types": [[428, "emulating-buffer-types"]], "Emulating callable objects": [[428, "emulating-callable-objects"]], "Emulating container types": [[428, "emulating-container-types"]], "Emulating generic types": [[428, "emulating-generic-types"]], "Emulating numeric types": [[428, "emulating-numeric-types"]], "Encoders and Decoders": [[262, "encoders-and-decoders"]], "Encoding declarations": [[435, "encoding-declarations"]], "Encodings": [[109, "encodings"]], "Encodings and Unicode": [[158, "encodings-and-unicode"]], "Ensuring unique enumeration values": [[94, "ensuring-unique-enumeration-values"]], "Enter Per-Module State": [[100, "enter-per-module-state"]], "EntityResolver \u7269\u4ef6": [[415, "entityresolver-objects"]], "Entry points": [[251, "entry-points"]], "Enum Classes": [[94, "enum-classes"]], "Enum Cookbook": [[94, "enum-cookbook"]], "Enum HOWTO": [[94, "enum-howto"]], "Enum Members (aka instances)": [[94, "enum-members-aka-instances"]], "Enum classes with methods": [[94, "enum-classes-with-methods"]], "Enum member type": [[94, "enum-member-type"]], "Environment configuration": [[425, "environment-configuration"]], "Error Codes": [[110, "error-codes"]], "Error Handlers": [[158, "error-handlers"]], "ErrorHandler \u7269\u4ef6": [[415, "errorhandler-objects"]], "Errors": [[281, "errors"]], "Evaluation order": [[430, "evaluation-order"]], "Event": [[138, "event"]], "Event Objects": [[365, "event-objects"]], "Events": [[353, "events"]], "Example of Client Usage": [[419, "example-of-client-usage"]], "Example of Client and Server Usage": [[419, "example-of-client-and-server-usage"]], "Example usage of ModuleFinder": [[279, "example-usage-of-modulefinder"]], "Example \u7269\u4ef6": [[193, "example-objects"]], "Examples": [[395, "examples"]], "Examples and Recipes": [[161, "examples-and-recipes"], [169, "examples-and-recipes"]], "Exception groups": [[213, "exception-groups"]], "Exceptions": [[120, "exceptions"], [292, "exceptions"], [319, "exceptions"]], "Exceptions and warnings": [[425, "exceptions-and-warnings"]], "Exceptions raised during logging": [[101, "exceptions-raised-during-logging"]], "Exchanging objects between processes": [[283, "exchanging-objects-between-processes"]], "Excursus: Setting environment variables": [[461, "excursus-setting-environment-variables"]], "Executing the class body": [[428, "executing-the-class-body"]], "Execution of Python signal handlers": [[333, "execution-of-python-signal-handlers"]], "Executor \u7269\u4ef6": [[166, "executor-objects"]], "Exiting methods": [[120, "exiting-methods"]], "Expat error constants": [[314, "module-xml.parsers.expat.errors"]], "ExpatError \u4f8b\u5916": [[314, "expaterror-exceptions"]], "Explanation": [[384, "explanation"]], "Explicit line joining": [[435, "explicit-line-joining"]], "Expression lists": [[430, "expression-lists"]], "Expression statements": [[436, "expression-statements"]], "Extended Slices": [[465, "extended-slices"]], "Extending Embedded Python": [[72, "extending-embedded-python"]], "Extending optparse": [[292, "extending-optparse"]], "Extending the search algorithm": [[251, "extending-the-search-algorithm"]], "Extending/Embedding Changes": [[462, "extending-embedding-changes"]], "Extensions": [[247, "extensions"]], "Extra information": [[13, "extra-information"]], "Extracting Parameters in Extension Functions": [[73, "extracting-parameters-in-extension-functions"]], "Extraction filters": [[358, "extraction-filters"]], "FAQ": [[473, "faq"]], "FILTER_DIR": [[389, "filter-dir"]], "FTP \u7269\u4ef6": [[223, "ftp-objects"]], "FTPHandler \u7269\u4ef6": [[395, "ftphandler-objects"]], "FTP_TLS \u7269\u4ef6": [[223, "ftp-tls-objects"]], "Fallback Values": [[167, "fallback-values"]], "Fault Objects": [[419, "fault-objects"]], "Fault handler state": [[214, "fault-handler-state"]], "Features": [[281, "features"]], "FeedParser API": [[207, "feedparser-api"]], "Feedback": [[106, "feedback"]], "Fetching attributes statically": [[255, "fetching-attributes-statically"]], "File Descriptor Operations": [[293, "file-descriptor-operations"]], "File Handlers": [[369, "file-handlers"]], "File Names, Command Line Arguments, and Environment Variables": [[293, "file-names-command-line-arguments-and-environment-variables"]], "File Object Creation": [[293, "file-object-creation"]], "File Operations": [[282, "file-operations"]], "File Selectors": [[375, "file-selectors"]], "File System Encoding": [[64, "file-system-encoding"]], "File System limitations": [[422, "file-system-limitations"]], "File hashing": [[235, "file-hashing"]], "File menu (Shell and Editor)": [[247, "file-menu-shell-and-editor"]], "FileCookieJar subclasses and co-operation with web browsers": [[243, "filecookiejar-subclasses-and-co-operation-with-web-browsers"]], "FileHandler": [[269, "filehandler"]], "FileHandler \u7269\u4ef6": [[395, "filehandler-objects"]], "FileType \u7269\u4ef6": [[120, "filetype-objects"]], "Files and Directories": [[293, "files-and-directories"]], "Files in an Unknown Encoding": [[109, "files-in-an-unknown-encoding"]], "Filling": [[384, "filling"]], "Filter": [[382, "filter"]], "Filter Objects": [[267, "filter-objects"]], "Filter errors": [[358, "filter-errors"]], "Filters": [[380, "filters"]], "Finalization and De-allocation": [[75, "finalization-and-de-allocation"]], "Finders and loaders": [[432, "finders-and-loaders"]], "Finding all Adverbs": [[319, "finding-all-adverbs"]], "Finding all Adverbs and their Positions": [[319, "finding-all-adverbs-and-their-positions"]], "Finding interesting elements": [[413, "finding-interesting-elements"]], "Finding modules": [[461, "finding-modules"]], "Finding shared libraries": [[176, "finding-shared-libraries"]], "Finding the Python executable": [[461, "finding-the-python-executable"]], "Finer Points": [[94, "finer-points"]], "Fixers": [[112, "fixers"]], "Flag": [[94, "flag"]], "Flag Classes": [[94, "flag-classes"]], "Flag Members": [[94, "flag-members"]], "Flag and IntFlag minutia": [[94, "flag-and-intflag-minutia"]], "Flags": [[319, "flags"]], "Floating Point Notes": [[186, "floating-point-notes"]], "Floating point literals": [[435, "floating-point-literals"]], "For More Information": [[92, "for-more-information"]], "For extension writers and programs that embed Python": [[266, "for-extension-writers-and-programs-that-embed-python"]], "Foreign functions": [[176, "foreign-functions"]], "Form Geometry Manager": [[375, "form-geometry-manager"]], "Formal provability": [[95, "formal-provability"]], "Format Characters": [[347, "format-characters"]], "Format Strings": [[347, "format-strings"]], "Format menu (Editor window only)": [[247, "format-menu-editor-window-only"]], "Formatter Objects": [[267, "formatter-objects"]], "Formatters": [[101, "formatters"]], "Formatting times using UTC (GMT) via configuration": [[102, "formatting-times-using-utc-gmt-via-configuration"]], "Frame": [[382, "frame"]], "Frame object methods": [[428, "frame-object-methods"]], "Frame objects": [[428, "frame-objects"]], "Frame \u7269\u4ef6": [[26, "frame-objects"]], "FrameSummary \u7269\u4ef6": [[381, "framesummary-objects"]], "Frequently Used Arguments": [[348, "frequently-used-arguments"]], "From a script": [[461, "from-a-script"]], "From file itself": [[422, "from-file-itself"]], "From the command-line": [[461, "from-the-command-line"]], "Function prototypes": [[176, "function-prototypes"]], "Functional API": [[94, "functional-api"], [251, "functional-api"]], "Functions": [[307, "functions"], [319, "functions"]], "Functions and methods": [[93, "functions-and-methods"]], "Fundamental data types": [[176, "fundamental-data-types"], [176, "ctypes-fundamental-data-types-2"]], "Future and Task private constructors": [[128, "future-and-task-private-constructors"]], "Future statements": [[436, "future-statements"]], "Future \u51fd\u5f0f": [[129, "future-functions"]], "Future \u7269\u4ef6": [[129, "future-object"], [166, "future-objects"]], "Futures": [[129, "futures"]], "GNU gettext API": [[230, "gnu-gettext-api"]], "GUI classes": [[281, "gui-classes"]], "Garbage Collection of Cycles": [[462, "garbage-collection-of-cycles"]], "Garbage-Collection Protocol": [[100, "garbage-collection-protocol"]], "General": [[95, "general"]], "General rules": [[333, "general-rules"]], "Generating help": [[292, "generating-help"]], "Generator Types": [[344, "generator-types"]], "Generator expressions": [[430, "generator-expressions"]], "Generator expressions and list comprehensions": [[95, "generator-expressions-and-list-comprehensions"]], "Generator functions": [[428, "generator-functions"]], "Generator-iterator methods": [[430, "generator-iterator-methods"]], "Generators": [[95, "generators"]], "Generic Alias Type": [[344, "generic-alias-type"]], "Generic Attribute Management": [[75, "generic-attribute-management"]], "Generic Codecs": [[64, "generic-codecs"]], "Generic classes": [[427, "generic-classes"]], "Generic functions": [[427, "generic-functions"]], "Generic options": [[455, "generic-options"]], "Generic type aliases": [[427, "generic-type-aliases"]], "Get started as quickly as possible": [[384, "get-started-as-quickly-as-possible"]], "Get the traceback of a memory block": [[382, "get-the-traceback-of-a-memory-block"]], "Getting and Setting the Policy": [[132, "getting-and-setting-the-policy"]], "Getting more detail when instance creation fails": [[99, "getting-more-detail-when-instance-creation-fails"]], "Global configuration variables": [[33, "global-configuration-variables"]], "Globals": [[425, "globals"]], "Greedy versus Non-Greedy": [[106, "greedy-versus-non-greedy"]], "Group Patterns": [[427, "group-patterns"]], "Grouping": [[106, "grouping"]], "Grouping Options": [[292, "grouping-options"]], "Grouping elements": [[95, "grouping-elements"]], "Grouping tests": [[388, "grouping-tests"]], "Guard": [[472, "guard"]], "Guards": [[427, "guards"]], "HKEY_* Constants": [[405, "hkey-constants"]], "HTML \u5256\u6790\u5668\u61c9\u7528\u7a0b\u5f0f\u7bc4\u4f8b": [[240, "example-html-parser-application"]], "HTMLParser \u65b9\u6cd5": [[240, "htmlparser-methods"]], "HTTP \u65b9\u6cd5": [[241, "http-methods"]], "HTTP \u72c0\u614b\u5206\u985e": [[241, "http-status-category"]], "HTTP \u72c0\u614b\u78bc": [[241, "http-status-codes"]], "HTTPBasicAuthHandler \u7269\u4ef6": [[395, "httpbasicauthhandler-objects"]], "HTTPConnection \u7269\u4ef6": [[242, "httpconnection-objects"]], "HTTPCookieProcessor \u7269\u4ef6": [[395, "httpcookieprocessor-objects"]], "HTTPDigestAuthHandler \u7269\u4ef6": [[395, "httpdigestauthhandler-objects"]], "HTTPError": [[110, "httperror"]], "HTTPErrorProcessor \u7269\u4ef6": [[395, "httperrorprocessor-objects"]], "HTTPHandler": [[269, "httphandler"]], "HTTPHandler \u7269\u4ef6": [[395, "httphandler-objects"]], "HTTPMessage \u7269\u4ef6": [[242, "httpmessage-objects"]], "HTTPPasswordMgr \u7269\u4ef6": [[395, "httppasswordmgr-objects"]], "HTTPPasswordMgrWithPriorAuth \u7269\u4ef6": [[395, "httppasswordmgrwithpriorauth-objects"]], "HTTPRedirectHandler \u7269\u4ef6": [[395, "httpredirecthandler-objects"]], "HTTPResponse \u7269\u4ef6": [[242, "httpresponse-objects"]], "HTTPSHandler \u7269\u4ef6": [[395, "httpshandler-objects"]], "Handler Objects": [[267, "handler-objects"]], "Handler configuration order": [[268, "handler-configuration-order"]], "Handlers": [[101, "handlers"]], "Handling Exceptions": [[110, "handling-exceptions"]], "Handling Keyboard Interruption": [[135, "handling-keyboard-interruption"]], "Handling Stateful Objects": [[299, "handling-stateful-objects"]], "Handling boolean (flag) options": [[292, "handling-boolean-flag-options"]], "Handy Reference": [[369, "handy-reference"]], "Hash Objects": [[235, "hash-objects"]], "Hashing Methods": [[173, "hashing-methods"]], "Headers": [[110, "headers"]], "Heap Types": [[63, "heap-types"], [100, "heap-types"]], "Hello World!": [[123, null]], "Help and Preferences": [[247, "help-and-preferences"]], "Help and configuration": [[384, "help-and-configuration"]], "Help menu (Shell and Editor)": [[247, "help-menu-shell-and-editor"]], "Help sources": [[247, "help-sources"]], "Hierarchical ListBox": [[375, "hierarchical-listbox"]], "Higher Level Interface": [[151, "higher-level-interface"]], "Hints for further verification": [[358, "hints-for-further-verification"]], "History file": [[320, "history-file"]], "History list": [[320, "history-list"]], "Home scheme": [[355, "home-scheme"]], "Host Interfaces": [[99, "host-interfaces"]], "How It Works": [[193, "how-it-works"]], "How are Docstring Examples Recognized?": [[193, "how-are-docstring-examples-recognized"]], "How are Enums and Flags different?": [[94, "how-are-enums-and-flags-different"]], "How callbacks are called": [[292, "how-callbacks-are-called"]], "How can I evaluate an arbitrary Python expression from C?": [[79, "how-can-i-evaluate-an-arbitrary-python-expression-from-c"]], "How can I have modules that mutually import each other?": [[85, "how-can-i-have-modules-that-mutually-import-each-other"]], "How can I organize my code to make it easier to change the base class?": [[85, "how-can-i-organize-my-code-to-make-it-easier-to-change-the-base-class"]], "How can I overload constructors (or methods) in Python?": [[85, "how-can-i-overload-constructors-or-methods-in-python"]], "How can I pass optional or keyword parameters from one function to another?": [[85, "how-can-i-pass-optional-or-keyword-parameters-from-one-function-to-another"]], "How can I sort one list by values from another list?": [[85, "how-can-i-sort-one-list-by-values-from-another-list"]], "How do I apply a method or function to a sequence of objects?": [[85, "how-do-i-apply-a-method-or-function-to-a-sequence-of-objects"]], "How do I avoid blocking in the connect() method of a socket?": [[84, "how-do-i-avoid-blocking-in-the-connect-method-of-a-socket"]], "How do I cache method calls?": [[85, "how-do-i-cache-method-calls"]], "How do I call a method defined in a base class from a derived class that extends it?": [[85, "how-do-i-call-a-method-defined-in-a-base-class-from-a-derived-class-that-extends-it"]], "How do I check if an object is an instance of a given class or of a subclass of it?": [[85, "how-do-i-check-if-an-object-is-an-instance-of-a-given-class-or-of-a-subclass-of-it"]], "How do I convert between tuples and lists?": [[85, "how-do-i-convert-between-tuples-and-lists"]], "How do I create a .pyc file?": [[85, "how-do-i-create-a-pyc-file"]], "How do I create a multidimensional list?": [[85, "how-do-i-create-a-multidimensional-list"]], "How do I create documentation from doc strings?": [[84, "how-do-i-create-documentation-from-doc-strings"]], "How do I create static class data and static class methods?": [[85, "how-do-i-create-static-class-data-and-static-class-methods"]], "How do I find the current module name?": [[85, "how-do-i-find-the-current-module-name"]], "How do I get a list of all instances of a given class?": [[85, "how-do-i-get-a-list-of-all-instances-of-a-given-class"]], "How do I get a single keypress at a time?": [[84, "how-do-i-get-a-single-keypress-at-a-time"]], "How do I get int literal attribute instead of SyntaxError?": [[85, "how-do-i-get-int-literal-attribute-instead-of-syntaxerror"]], "How do I interface to C++ objects from Python?": [[79, "how-do-i-interface-to-c-objects-from-python"]], "How do I iterate over a sequence in reverse order?": [[85, "how-do-i-iterate-over-a-sequence-in-reverse-order"]], "How do I modify a string in place?": [[85, "how-do-i-modify-a-string-in-place"]], "How do I parcel out work among a bunch of worker threads?": [[84, "how-do-i-parcel-out-work-among-a-bunch-of-worker-threads"]], "How do I use strings to call functions/methods?": [[85, "how-do-i-use-strings-to-call-functions-methods"]], "How do I write a function with output parameters (call by reference)?": [[85, "how-do-i-write-a-function-with-output-parameters-call-by-reference"]], "How do I...? What option does...?": [[369, "how-do-i-what-option-does"]], "How do you implement persistent objects in Python?": [[84, "how-do-you-implement-persistent-objects-in-python"]], "How do you make a higher order function in Python?": [[85, "how-do-you-make-a-higher-order-function-in-python"]], "How do you make an array in Python?": [[85, "how-do-you-make-an-array-in-python"]], "How do you remove duplicates from a list?": [[85, "how-do-you-remove-duplicates-from-a-list"]], "How do you remove multiple items from a list": [[85, "how-do-you-remove-multiple-items-from-a-list"]], "How optparse handles errors": [[292, "how-optparse-handles-errors"]], "How to adapt custom Python types to SQLite values": [[340, "how-to-adapt-custom-python-types-to-sqlite-values"]], "How to configure Screen and Turtles": [[384, "how-to-configure-screen-and-turtles"]], "How to convert SQLite values to custom Python types": [[340, "how-to-convert-sqlite-values-to-custom-python-types"]], "How to create and use row factories": [[340, "how-to-create-and-use-row-factories"]], "How to handle non-UTF-8 text encodings": [[340, "how-to-handle-non-utf-8-text-encodings"]], "How to register adapter callables": [[340, "how-to-register-adapter-callables"]], "How to treat a logger like an output stream": [[102, "how-to-treat-a-logger-like-an-output-stream"]], "How to use connection shortcut methods": [[340, "how-to-use-connection-shortcut-methods"]], "How to use help": [[384, "how-to-use-help"]], "How to use placeholders to bind values in SQL queries": [[340, "how-to-use-placeholders-to-bind-values-in-sql-queries"]], "How to use the connection context manager": [[340, "how-to-use-the-connection-context-manager"]], "How to work with SQLite URIs": [[340, "how-to-work-with-sqlite-uris"]], "How to write adaptable objects": [[340, "how-to-write-adaptable-objects"]], "How to...": [[384, "how-to"]], "How-to guides": [[340, "how-to-guides"]], "Hyperbolic functions": [[275, "hyperbolic-functions"]], "I can't seem to use os.read() on a pipe created with os.popen(); why?": [[84, "i-can-t-seem-to-use-os-read-on-a-pipe-created-with-os-popen-why"]], "I try to use __spam and I get an error about _SomeClassName__spam.": [[85, "i-try-to-use-spam-and-i-get-an-error-about-someclassname-spam"]], "I want to do a complicated sort: can you do a Schwartzian Transform in Python?": [[85, "i-want-to-do-a-complicated-sort-can-you-do-a-schwartzian-transform-in-python"]], "I/O objects (also known as file objects)": [[428, "i-o-objects-also-known-as-file-objects"]], "I/O \u57fa\u790e\u985e\u5225": [[258, "i-o-base-classes"]], "IDLE": [[247, "idle"], [471, "idle"], [475, "idle"], [483, "idle"], [483, "id9"], [483, "id19"], [483, "id28"], [483, "id81"], [483, "id91"], [483, "id155"], [483, "id184"], [483, "id193"], [483, "id218"], [483, "id228"], [483, "id239"], [483, "id248"], [483, "id258"], [483, "id268"], [483, "id286"], [483, "id297"], [483, "id307"], [483, "id327"], [483, "id338"], [483, "id348"], [483, "id354"], [483, "id364"], [483, "id374"], [483, "id385"], [483, "id396"], [483, "id406"], [483, "id414"], [483, "id423"], [483, "id433"], [483, "id440"], [483, "id448"], [483, "id458"], [483, "id469"], [483, "id493"], [483, "id500"], [483, "id509"], [483, "id519"], [483, "id532"], [483, "id542"], [483, "id554"], [483, "id560"], [483, "id571"], [483, "id604"], [483, "id612"], [483, "id619"], [483, "id628"], [483, "id638"], [483, "id660"], [483, "id669"], [483, "id673"], [483, "id683"], [483, "id698"], [483, "id713"], [483, "id735"]], "IDLE Improvements": [[462, "idle-improvements"]], "IDLE and idlelib": [[481, "idle-and-idlelib"], [482, "idle-and-idlelib"]], "IDLE on macOS": [[247, "idle-on-macos"]], "IDLE \u548c idlelib": [[472, "idle-and-idlelib"]], "IDLE \u8207 idlelib": [[473, "whatsnew311-idle"]], "IMAP4 \u7269\u4ef6": [[248, "imap4-objects"]], "IMAP4 \u7bc4\u4f8b": [[248, "imap4-example"]], "IP Addresses": [[259, "ip-addresses"]], "IP Host Addresses": [[99, "ip-host-addresses"]], "IP Network definitions": [[259, "ip-network-definitions"]], "IPC": [[107, "ipc"]], "Identifiers (Names)": [[430, "atom-identifiers"]], "Identifiers and keywords": [[435, "identifiers"]], "Identity comparisons": [[430, "is-not"]], "Image Types": [[375, "image-types"]], "Images": [[369, "images"]], "Imaginary literals": [[435, "imaginary-literals"]], "Immutable Sequence Types": [[344, "immutable-sequence-types"]], "Immutable sequences": [[428, "immutable-sequences"]], "Imparting contextual information in handlers": [[102, "imparting-contextual-information-in-handlers"]], "Implementation Limitations": [[262, "implementation-limitations"]], "Implementing Descriptors": [[428, "implementing-descriptors"]], "Implementing lazy imports": [[250, "implementing-lazy-imports"]], "Implementing structured logging": [[102, "implementing-structured-logging"]], "Implicit line joining": [[435, "implicit-line-joining"]], "Import hooks": [[432, "import-hooks"]], "Import resolution and custom importers": [[268, "import-resolution-and-custom-importers"]], "Import-related module attributes": [[432, "import-related-module-attributes"]], "Important": [[211, null], [267, "index-0"], [268, null], [269, null]], "Important Tk Concepts": [[369, "important-tk-concepts"]], "Importing a source file directly": [[250, "importing-a-source-file-directly"]], "Importing programmatically": [[250, "importing-programmatically"]], "Improved Compatibility with Shells": [[331, "improved-compatibility-with-shells"]], "Improved Error Messages": [[474, "improved-error-messages"]], "Improved SSL Support": [[468, "improved-ssl-support"]], "Improvements to Codec Handling": [[477, "improvements-to-codec-handling"]], "Incomplete Types": [[176, "incomplete-types"]], "Incremental (de)compression": [[149, "incremental-de-compression"]], "Incremental Configuration": [[268, "incremental-configuration"]], "Incremental Encoding and Decoding": [[158, "incremental-encoding-and-decoding"]], "IncrementalDecoder \u7269\u4ef6": [[158, "incrementaldecoder-objects"]], "IncrementalEncoder \u7269\u4ef6": [[158, "incrementalencoder-objects"]], "IncrementalParser \u7269\u4ef6": [[416, "incrementalparser-objects"]], "Indentation": [[435, "indentation"]], "IndentationErrors": [[472, "indentationerrors"]], "Infinite and NaN Number Values": [[262, "infinite-and-nan-number-values"]], "Inheritance of File Descriptors": [[293, "inheritance-of-file-descriptors"]], "Init file": [[320, "init-file"]], "Init-only variables": [[181, "init-only-variables"]], "Initialization with PyConfig": [[34, "initialization-with-pyconfig"]], "Initialization, Finalization, and Threads": [[33, "initialization-finalization-and-threads"]], "Initializing C modules": [[45, "initializing-c-modules"]], "Initializing and finalizing the interpreter": [[33, "initializing-and-finalizing-the-interpreter"]], "Input methods": [[384, "input-methods"]], "InputSource \u7269\u4ef6": [[416, "inputsource-objects"]], "Inserting a BOM into messages sent to a SysLogHandler": [[102, "inserting-a-bom-into-messages-sent-to-a-sysloghandler"]], "Inspecting Address/Network/Interface Objects": [[99, "inspecting-address-network-interface-objects"]], "Installation paths": [[355, "installation-paths"]], "Installing your CGI script on a Unix system": [[151, "installing-your-cgi-script-on-a-unix-system"]], "Instance methods": [[428, "instance-methods"]], "Instant User's Manual": [[308, "instant-user-s-manual"]], "IntEnum": [[94, "intenum"]], "IntFlag": [[94, "intflag"]], "Integer literals": [[435, "integer-literals"]], "Integer string conversion length limitation": [[344, "integer-string-conversion-length-limitation"]], "Integration with the warnings module": [[267, "integration-with-the-warnings-module"]], "Interacting with Subprocesses": [[137, "interacting-with-subprocesses"]], "Interaction with dynamic features": [[429, "interaction-with-dynamic-features"]], "Interactive Console Objects": [[157, "interactive-console-objects"]], "Interactive Interpreter Changes": [[467, "interactive-interpreter-changes"]], "Interactive Interpreter Objects": [[157, "interactive-interpreter-objects"]], "Interface objects": [[259, "interface-objects"]], "Interface to the scheduler": [[293, "interface-to-the-scheduler"]], "Intermezzo: Errors and Exceptions": [[73, "intermezzo-errors-and-exceptions"]], "Intermixed parsing": [[120, "intermixed-parsing"]], "Internal Frames": [[26, "internal-frames"]], "Internal Objects": [[344, "internal-objects"]], "Internal types": [[428, "internal-types"]], "Internationalizing your programs and modules": [[230, "internationalizing-your-programs-and-modules"]], "Interpolation of values": [[167, "interpolation-of-values"]], "Interpreter Changes": [[468, "interpreter-changes"], [469, "interpreter-changes"]], "Interruption": [[422, "interruption"]], "Introduction to Unicode": [[109, "introduction-to-unicode"]], "Introduction to the profilers": [[308, "introduction-to-the-profilers"]], "Introspecting callables with the Signature object": [[255, "introspecting-callables-with-the-signature-object"]], "Introspection": [[139, "introspection"]], "Introspection helpers": [[386, "introspection-helpers"]], "Invalid arguments": [[120, "invalid-arguments"]], "Invocation from a class": [[93, "invocation-from-a-class"]], "Invocation from an instance": [[93, "invocation-from-an-instance"]], "Invocation from super": [[93, "invocation-from-super"]], "Invoking Descriptors": [[428, "invoking-descriptors"]], "Irrefutable Case Blocks": [[427, "irrefutable-case-blocks"]], "Is it possible to write obfuscated one-liners in Python?": [[85, "is-it-possible-to-write-obfuscated-one-liners-in-python"]], "Is there a scanf() or sscanf() equivalent?": [[85, "is-there-a-scanf-or-sscanf-equivalent"]], "Is there an equivalent to C's onexit() in Python?": [[84, "is-there-an-equivalent-to-c-s-onexit-in-python"]], "Is there an equivalent to Perl's chomp() for removing trailing newlines from strings?": [[85, "is-there-an-equivalent-to-perl-s-chomp-for-removing-trailing-newlines-from-strings"]], "Isolated Configuration": [[34, "isolated-configuration"]], "Isolated Module Objects": [[100, "isolated-module-objects"]], "Issue with file descriptors": [[214, "issue-with-file-descriptors"]], "Issuing warnings": [[23, "issuing-warnings"]], "Item Options": [[376, "item-options"]], "Iteration": [[94, "iteration"], [259, "iteration"]], "Iterators": [[95, "iterators"]], "Itertool Functions": [[261, "itertool-functions"]], "Itertools Recipes": [[261, "itertools-recipes"]], "Java \u5e73\u53f0": [[303, "java-platform"]], "Kevent Objects": [[328, "kevent-objects"]], "Key bindings": [[247, "key-bindings"]], "Key derivation": [[235, "key-derivation"]], "Keyed hashing": [[235, "keyed-hashing"]], "Keyword Parameters for Extension Functions": [[73, "keyword-parameters-for-extension-functions"]], "Kinds of methods": [[93, "kinds-of-methods"]], "Known issues": [[461, "known-issues"]], "Kqueue Objects": [[328, "kqueue-objects"]], "LIFO Queue": [[134, "lifo-queue"]], "Label Options": [[376, "label-options"]], "Lambda \u904b\u7b97\u5f0f": [[441, "lambda-expressions"]], "Lambdas": [[430, "lambda"]], "Latin-1 \u7de8\u89e3\u78bc\u5668": [[64, "latin-1-codecs"]], "Layouts": [[376, "layouts"]], "Lazy evaluation": [[429, "lazy-evaluation"]], "Legacy API Examples": [[167, "legacy-api-examples"]], "Legacy Shell Invocation Functions": [[348, "legacy-shell-invocation-functions"]], "Legacy interface": [[395, "legacy-interface"]], "LexicalHandler \u7269\u4ef6": [[415, "lexicalhandler-objects"]], "Library": [[483, "library"], [483, "id2"], [483, "id5"], [483, "id13"], [483, "id22"], [483, "id31"], [483, "id37"], [483, "id43"], [483, "id53"], [483, "id63"], [483, "id70"], [483, "id76"], [483, "id85"], [483, "id95"], [483, "id104"], [483, "id114"], [483, "id120"], [483, "id130"], [483, "id140"], [483, "id149"], [483, "id161"], [483, "id170"], [483, "id179"], [483, "id187"], [483, "id196"], [483, "id204"], [483, "id212"], [483, "id222"], [483, "id233"], [483, "id243"], [483, "id252"], [483, "id262"], [483, "id271"], [483, "id280"], [483, "id291"], [483, "id301"], [483, "id311"], [483, "id321"], [483, "id332"], [483, "id343"], [483, "id351"], [483, "id358"], [483, "id368"], [483, "id379"], [483, "id390"], [483, "id401"], [483, "id410"], [483, "id417"], [483, "id426"], [483, "id429"], [483, "id435"], [483, "id442"], [483, "id452"], [483, "id463"], [483, "id472"], [483, "id480"], [483, "id487"], [483, "id497"], [483, "id504"], [483, "id513"], [483, "id526"], [483, "id536"], [483, "id545"], [483, "id549"], [483, "id559"], [483, "id570"], [483, "id582"], [483, "id587"], [483, "id592"], [483, "id597"], [483, "id603"], [483, "id611"], [483, "id618"], [483, "id627"], [483, "id637"], [483, "id647"], [483, "id648"], [483, "id651"], [483, "id659"], [483, "id672"], [483, "id682"], [483, "id690"], [483, "id693"], [483, "id695"], [483, "id697"], [483, "id702"], [483, "id705"], [483, "id710"], [483, "id712"], [483, "id718"], [483, "id724"], [483, "id729"], [483, "id734"]], "Lifetime of the Module State": [[100, "lifetime-of-the-module-state"]], "Line buffer": [[320, "line-buffer"]], "Line structure": [[435, "line-structure"]], "Linker flags": [[456, "linker-flags"]], "Linker options": [[456, "linker-options"]], "Linux extended attributes": [[293, "linux-extended-attributes"]], "Linux \u5e73\u53f0": [[303, "linux-platforms"]], "List Comprehensions\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": [[442, "list-comprehensions"]], "List displays": [[430, "list-displays"]], "Listeners and Clients": [[283, "module-multiprocessing.connection"]], "List\uff08\u4e32\u5217\uff09": [[344, "lists"], [449, "lists"]], "List\uff08\u4e32\u5217\uff09\u7269\u4ef6": [[38, "list-objects"]], "Literal Patterns": [[427, "literal-patterns"]], "Literals": [[430, "literals"], [435, "literals"]], "Loaders": [[432, "loaders"]], "Loading": [[432, "loading"]], "Loading and running tests": [[388, "loading-and-running-tests"]], "Loading dynamic link libraries": [[176, "loading-dynamic-link-libraries"]], "Loading shared libraries": [[176, "loading-shared-libraries"]], "Local events": [[353, "local-events"]], "Locale Encoding": [[64, "locale-encoding"]], "Localizing your application": [[230, "localizing-your-application"]], "Localizing your module": [[230, "localizing-your-module"]], "Locator Objects": [[416, "locator-objects"]], "Lock": [[138, "lock"]], "Lock Objects": [[365, "lock-objects"]], "LogRecord attributes": [[267, "logrecord-attributes"]], "LogRecord \u7269\u4ef6": [[267, "logrecord-objects"]], "Logger \u7269\u4ef6": [[267, "logger-objects"]], "LoggerAdapter \u7269\u4ef6": [[267, "loggeradapter-objects"]], "Loggers": [[101, "loggers"]], "Logging": [[283, "logging"]], "Logging Cookbook": [[102, "logging-cookbook"]], "Logging Flow": [[101, "logging-flow"]], "Logging Levels": [[101, "logging-levels"], [267, "logging-levels"]], "Logging from multiple threads": [[102, "logging-from-multiple-threads"]], "Logging to a file": [[101, "logging-to-a-file"]], "Logging to a single file from multiple processes": [[102, "logging-to-a-single-file-from-multiple-processes"]], "Logging to multiple destinations": [[102, "logging-to-multiple-destinations"]], "Logging to syslog with RFC5424 support": [[102, "logging-to-syslog-with-rfc5424-support"]], "Logging variable data": [[101, "logging-variable-data"]], "Logical lines": [[435, "logical-lines"]], "Logical operands": [[186, "logical-operands"]], "Logical operators": [[259, "logical-operators"], [259, "id3"]], "Lookahead Assertions": [[106, "lookahead-assertions"]], "Lossless Conversion to Heap Types": [[100, "lossless-conversion-to-heap-types"]], "Low-level module creation functions": [[45, "low-level-module-creation-functions"]], "MADV_* Constants": [[278, "madv-constants"]], "MAP_* \u5e38\u6578": [[278, "map-constants"]], "MBCS codecs for Windows": [[64, "mbcs-codecs-for-windows"]], "MH \u7269\u4ef6": [[271, "mh-objects"]], "MHMessage \u7269\u4ef6": [[271, "mhmessage-objects"]], "MMDF \u7269\u4ef6": [[271, "mmdf-objects"]], "MMDFMessage \u7269\u4ef6": [[271, "mmdfmessage-objects"]], "MS Windows \u7279\u6709\u670d\u52d9": [[404, "ms-windows-specific-services"]], "Magic Mock": [[389, "magic-mock"]], "MagicMock \u4ee5\u53ca\u9b54\u8853\u65b9\u6cd5\u652f\u63f4": [[389, "magicmock-and-magic-method-support"]], "Mailbox \u7269\u4ef6": [[271, "mailbox-objects"], [271, "maildir-objects"]], "MaildirMessage \u7269\u4ef6": [[271, "maildirmessage-objects"]], "Main files of the build system": [[456, "main-files-of-the-build-system"]], "Main options": [[380, "main-options"]], "Making Modules Safe with Multiple Interpreters": [[100, "making-modules-safe-with-multiple-interpreters"]], "Making a Phonebook": [[319, "making-a-phonebook"]], "Making algorithmic patterns": [[384, "making-algorithmic-patterns"]], "Managed attributes": [[93, "managed-attributes"]], "Manager Widgets": [[375, "manager-widgets"]], "Managers": [[283, "managers"]], "Managing Global State": [[100, "managing-global-state"]], "Managing Per-Module State": [[100, "managing-per-module-state"]], "Manual Context Management": [[170, "manual-context-management"]], "Mapping Object Structures": [[63, "mapping-object-structures"]], "Mapping Patterns": [[427, "mapping-patterns"]], "Mapping Protocol Access": [[167, "mapping-protocol-access"]], "Mapping Types --- dict": [[344, "mapping-types-dict"]], "Mapping import to distribution packages": [[251, "mapping-import-to-distribution-packages"]], "Mappings": [[428, "mappings"]], "Match Objects": [[319, "match-objects"]], "Matching Characters": [[106, "matching-characters"]], "Member flags": [[58, "member-flags"]], "Member objects and __slots__": [[93, "member-objects-and-slots"]], "Member types": [[58, "member-types"]], "Membership test operations": [[430, "membership-test-operations"]], "Memory BIO Support": [[341, "memory-bio-support"], [478, "memory-bio-support"]], "Memory Interface": [[42, "memory-interface"]], "Memory Views": [[344, "memory-views"]], "MemoryHandler": [[269, "memoryhandler"]], "MemoryView \u7269\u4ef6": [[43, "index-0"]], "Mersenne Twister": [[426, "mersenne-twister"]], "Message \u7269\u4ef6": [[271, "message-objects"]], "Metaclasses": [[428, "metaclasses"]], "Method \u7269\u4ef6": [[440, "method-objects"]], "Methods": [[288, "methods"], [344, "methods"]], "Methods & Slots": [[64, "methods-slots"]], "Methods and Slot Functions": [[64, "methods-and-slot-functions"]], "Methods of RawTurtle/Turtle and corresponding functions": [[384, "methods-of-rawturtle-turtle-and-corresponding-functions"]], "Methods of TurtleScreen/Screen": [[384, "methods-of-turtlescreen-screen"]], "Methods of TurtleScreen/Screen and corresponding functions": [[384, "methods-of-turtlescreen-screen-and-corresponding-functions"]], "Methods specific to Screen, not inherited from TurtleScreen": [[384, "methods-specific-to-screen-not-inherited-from-turtlescreen"]], "MimeTypes \u7269\u4ef6": [[276, "mimetypes-objects"]], "Minor Language Changes": [[462, "minor-language-changes"]], "Miscellaneous": [[270, "miscellaneous"], [283, "miscellaneous"]], "Miscellaneous Other Changes": [[470, "miscellaneous-other-changes"]], "Miscellaneous System Information": [[293, "miscellaneous-system-information"]], "Miscellaneous Widgets": [[375, "miscellaneous-widgets"]], "Miscellaneous options": [[455, "miscellaneous-options"]], "Mitigating round-off error with increased precision": [[186, "mitigating-round-off-error-with-increased-precision"]], "Mixer Device Objects": [[295, "mixer-device-objects"]], "Mock Unbound Methods \uff08\u672a\u7e6b\u7d50\u65b9\u6cd5\uff09": [[390, "mocking-unbound-methods"]], "Mock \u540d\u7a31\u8207\u540d\u7a31\u5c6c\u6027": [[389, "mock-names-and-the-name-attribute"]], "Mock \u5b50\u985e\u5225\u53ca\u5176\u5c6c\u6027": [[390, "mock-subclasses-and-their-attributes"]], "Mock \u7522\u751f\u5668\u65b9\u6cd5": [[390, "mocking-a-generator-method"]], "Mock \u934a\u63a5\u547c\u53eb": [[390, "mocking-chained-calls"]], "Mock \u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6": [[390, "mocking-asynchronous-iterators"]], "Mock \u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668": [[390, "mocking-asynchronous-context-manager"]], "Mock \u985e\u5225": [[389, "the-mock-class"], [390, "mocking-classes"]], "Mock \u9b54\u8853\u65b9\u6cd5": [[389, "mocking-magic-methods"]], "Modifiers": [[380, "modifiers"]], "Modifying Strings": [[106, "modifying-strings"]], "Modifying an install": [[461, "modifying-an-install"]], "Modularity": [[95, "modularity"]], "Module Removals": [[480, "module-removals"]], "Module State Access from Classes": [[100, "module-state-access-from-classes"]], "Module State Access from Functions": [[100, "module-state-access-from-functions"]], "Module State Access from Regular Methods": [[100, "module-state-access-from-regular-methods"]], "Module State Access from Slot Methods, Getters and Setters": [[100, "module-state-access-from-slot-methods-getters-and-setters"]], "Module constants": [[340, "module-constants"]], "Module functions": [[340, "module-functions"]], "Module lookup": [[45, "module-lookup"]], "Module reprs": [[432, "module-reprs"]], "Module spec": [[432, "module-spec"]], "Module-Level Attributes": [[267, "module-level-attributes"]], "Module-Level Functions": [[106, "module-level-functions"], [267, "module-level-functions"]], "More Metacharacters": [[106, "more-metacharacters"]], "More Pattern Power": [[106, "more-pattern-power"]], "More Suggestions": [[75, "more-suggestions"]], "More drawing control": [[384, "more-drawing-control"]], "Morsel \u7269\u4ef6": [[244, "morsel-objects"]], "Multi-Phase Initialization Private Provisional API": [[34, "multi-phase-initialization-private-provisional-api"]], "Multi-phase initialization": [[45, "multi-phase-initialization"]], "Multi-processing": [[341, "multi-processing"]], "Multi-threading": [[258, "multi-threading"], [475, "multi-threading"]], "MultiCall \u7269\u4ef6": [[419, "multicall-objects"]], "Multiple Inheritance: The Diamond Rule": [[464, "multiple-inheritance-the-diamond-rule"]], "Multiple handlers and formatters": [[102, "multiple-handlers-and-formatters"]], "Mutable Sequence Types": [[344, "mutable-sequence-types"]], "Mutable sequences": [[428, "mutable-sequences"]], "Mutual exclusion": [[120, "mutual-exclusion"]], "My class defines __del__ but it is not called when I delete the object.": [[85, "my-class-defines-del-but-it-is-not-called-when-i-delete-the-object"]], "My program is too slow. How do I speed it up?": [[85, "my-program-is-too-slow-how-do-i-speed-it-up"]], "NNTP \u7269\u4ef6": [[288, "nntp-objects"]], "NTEventLogHandler": [[269, "nteventloghandler"]], "NULL Pointers": [[73, "null-pointers"]], "NameErrors": [[472, "nameerrors"]], "NamedNodeMap \u7269\u4ef6": [[410, "namednodemap-objects"]], "Namespace packages": [[432, "namespace-packages"]], "Naming and binding": [[429, "naming-and-binding"]], "Native Formats": [[347, "native-formats"]], "Native Load/Save Dialogs": [[189, "native-load-save-dialogs"]], "Navigating the Tcl/Tk Reference Manual": [[369, "navigating-the-tcl-tk-reference-manual"]], "Network objects": [[259, "network-objects"]], "Networking and Interprocess Communication": [[260, "networking-and-interprocess-communication"]], "Networks as containers of addresses": [[259, "networks-as-containers-of-addresses"]], "Networks as lists of Addresses": [[99, "networks-as-lists-of-addresses"]], "New Development Process": [[462, "new-development-process"]], "New Documentation Format: reStructuredText Using Sphinx": [[468, "new-documentation-format-restructuredtext-using-sphinx"]], "New Features": [[477, "new-features"], [478, "new-features"], [479, "new-features"], [480, "new-features"], [481, "new-features"], [482, "new-features"], [482, "id1"]], "New Features Added to Python 2.7 Maintenance Releases": [[469, "new-features-added-to-python-2-7-maintenance-releases"]], "New Features Related to Type Hints": [[474, "new-features-related-to-type-hints"]], "New Issue Tracker: Roundup": [[468, "new-issue-tracker-roundup"]], "New Keywords": [[478, "new-keywords"]], "New Parser": [[482, "new-parser"]], "New String Methods to Remove Prefixes and Suffixes": [[482, "new-string-methods-to-remove-prefixes-and-suffixes"]], "New Syntax": [[470, "new-syntax"]], "New and Improved Modules": [[463, "new-and-improved-modules"], [464, "new-and-improved-modules"], [468, "new-and-improved-modules"], [469, "new-and-improved-modules"]], "New dict implementation": [[479, "new-dict-implementation"]], "New make regen-all build target": [[469, "new-make-regen-all-build-target"], [478, "new-make-regen-all-build-target"], [479, "new-make-regen-all-build-target"]], "New module: importlib": [[469, "new-module-importlib"]], "New module: sysconfig": [[469, "new-module-sysconfig"]], "New, Improved, and Deprecated Modules": [[465, "new-improved-and-deprecated-modules"], [466, "new-improved-and-deprecated-modules"], [471, "new-improved-and-deprecated-modules"], [475, "new-improved-and-deprecated-modules"]], "New, Improved, and Removed Modules": [[467, "new-improved-and-removed-modules"]], "NewType": [[386, "newtype"]], "Next Steps": [[101, "next-steps"]], "Node Objects": [[410, "node-objects"]], "NodeList \u7269\u4ef6": [[410, "nodelist-objects"]], "Non-Python created threads": [[33, "non-python-created-threads"]], "Non-capturing and Named Groups": [[106, "non-capturing-and-named-groups"]], "None": [[428, "none"]], "None \u7269\u4ef6": [[46, "the-none-object"]], "NormalDist \u7269\u4ef6": [[343, "normaldist-objects"]], "Not overriding tp_free": [[100, "not-overriding-tp-free"]], "NotImplemented": [[428, "notimplemented"]], "Notable changes in 3.10.12": [[472, "notable-changes-in-3-10-12"]], "Notable changes in 3.11.4": [[473, "notable-changes-in-3-11-4"]], "Notable changes in 3.11.5": [[473, "notable-changes-in-3-11-5"]], "Notable changes in 3.12.4": [[474, "notable-changes-in-3-12-4"]], "Notable changes in 3.8.17": [[481, "notable-changes-in-3-8-17"]], "Notable changes in 3.9.17": [[482, "notable-changes-in-3-9-17"]], "Notable security feature in 3.10.7": [[472, "notable-security-feature-in-3-10-7"]], "Notable security feature in 3.10.8": [[472, "notable-security-feature-in-3-10-8"]], "Notable security feature in 3.7.14": [[480, "notable-security-feature-in-3-7-14"]], "Notable security feature in 3.8.14": [[481, "notable-security-feature-in-3-8-14"]], "Notable security feature in 3.9.14": [[482, "notable-security-feature-in-3-9-14"]], "Notation": [[434, "notation"]], "Note on SIGPIPE": [[333, "note-on-sigpipe"]], "Note on Signal Handlers and Exceptions": [[333, "note-on-signal-handlers-and-exceptions"]], "Notebook": [[376, "notebook"]], "Notes on non-blocking sockets": [[341, "notes-on-non-blocking-sockets"]], "Notes on socket timeouts": [[337, "notes-on-socket-timeouts"]], "NullHandler": [[269, "nullhandler"]], "NumPy-style: shape and strides": [[7, "numpy-style-shape-and-strides"]], "Number 1": [[110, "number-1"]], "Number 2": [[110, "number-2"]], "Number Object Structures": [[63, "number-object-structures"]], "Numeric literals": [[435, "numeric-literals"]], "OR Patterns": [[427, "or-patterns"]], "ORM \u7bc4\u4f8b": [[93, "orm-example"]], "OS exceptions": [[213, "os-exceptions"]], "Object Comparison": [[75, "object-comparison"]], "Object Implementation Support": [[50, "object-implementation-support"]], "Object Presentation": [[75, "object-presentation"]], "Object allocators": [[42, "object-allocators"]], "Object connections": [[268, "object-connections"]], "Objects in the DOM": [[410, "objects-in-the-dom"]], "Objects, values and types": [[428, "objects-values-and-types"]], "Old and New Classes": [[464, "old-and-new-classes"]], "Older high-level API": [[348, "older-high-level-api"]], "Omitting values": [[94, "omitting-values"]], "One-shot (de)compression": [[149, "one-shot-de-compression"]], "Opcode collections": [[191, "opcode-collections"]], "Open Issues": [[100, "open-issues"]], "OpenSSL": [[426, "openssl"], [473, "openssl"]], "OpenerDirector \u7269\u4ef6": [[395, "openerdirector-objects"]], "Openers and Handlers": [[110, "openers-and-handlers"]], "Opening the same log file multiple times": [[102, "opening-the-same-log-file-multiple-times"]], "Operating Systems No Longer Supported": [[477, "operating-systems-no-longer-supported"]], "Operator Module Functions and Partial Function Evaluation": [[108, "operator-module-functions-and-partial-function-evaluation"]], "Operator precedence": [[430, "operator-precedence"]], "Operators": [[259, "operators"], [259, "id1"], [259, "id2"], [435, "operators"]], "Operators And Special Methods": [[470, "operators-and-special-methods"]], "Opt-Out: Limiting to One Module Object per Process": [[100, "opt-out-limiting-to-one-module-object-per-process"]], "Optimization": [[101, "optimization"]], "Option Callbacks": [[292, "option-callbacks"]], "Option Flags": [[193, "option-flags"]], "Option attributes": [[292, "option-attributes"]], "Option value syntax": [[120, "option-value-syntax"]], "Options menu (Shell and Editor)": [[247, "options-menu-shell-and-editor"]], "OrderedDict \u7269\u4ef6": [[160, "ordereddict-objects"]], "OrderedDict \u7bc4\u4f8b\u8207\u7528\u6cd5": [[160, "ordereddict-examples-and-recipes"]], "OrderedEnum": [[94, "orderedenum"]], "Ordering Comparisons": [[470, "ordering-comparisons"]], "Organizing test code": [[388, "organizing-test-code"]], "Other Build and C API Changes": [[477, "other-build-and-c-api-changes"]], "Other Built-in Types": [[344, "other-built-in-types"]], "Other CPython Implementation Changes": [[480, "other-cpython-implementation-changes"]], "Other CPython implementation changes": [[480, "id13"]], "Other Changes": [[478, "other-changes"]], "Other Changes and Fixes": [[463, "other-changes-and-fixes"], [465, "other-changes-and-fixes"], [469, "other-changes-and-fixes"]], "Other Core Changes": [[462, "other-core-changes"]], "Other Functions": [[282, "other-functions"]], "Other Improvements": [[477, "other-improvements"], [479, "other-improvements"]], "Other Module Level Functions": [[259, "other-module-level-functions"]], "Other actions": [[292, "other-actions"]], "Other events": [[353, "other-events"]], "Other methods": [[292, "other-methods"]], "Other module-level changes": [[478, "other-module-level-changes"]], "Other resources": [[101, "other-resources"], [102, "other-resources"]], "Other special directives": [[386, "other-special-directives"]], "Other tokens": [[435, "other-tokens"]], "Other utilities": [[120, "other-utilities"]], "Others": [[94, "others"]], "Out-of-band Buffers": [[299, "out-of-band-buffers"]], "OutputChecker \u7269\u4ef6": [[193, "outputchecker-objects"]], "Overriding the default filter": [[400, "overriding-the-default-filter"]], "Overview": [[251, "overview"], [427, "overview"]], "Overview of descriptor invocation": [[93, "overview-of-descriptor-invocation"]], "Ownership Rules": [[73, "ownership-rules"]], "PEP 205: Weak References": [[463, "pep-205-weak-references"]], "PEP 207: Rich Comparisons": [[463, "pep-207-rich-comparisons"]], "PEP 208: New Coercion Model": [[463, "pep-208-new-coercion-model"]], "PEP 217: Interactive Display Hook": [[463, "pep-217-interactive-display-hook"]], "PEP 218: A Standard Set Datatype": [[465, "pep-218-a-standard-set-datatype"]], "PEP 218: Built-In Set Objects": [[466, "pep-218-built-in-set-objects"]], "PEP 227: Nested Scopes": [[463, "pep-227-nested-scopes"], [464, "pep-227-nested-scopes"]], "PEP 229: New Build System": [[463, "pep-229-new-build-system"]], "PEP 230: Warning Framework": [[463, "pep-230-warning-framework"]], "PEP 232: Function Attributes": [[463, "pep-232-function-attributes"]], "PEP 234\uff1a\u758a\u4ee3\u5668": [[464, "pep-234-iterators"]], "PEP 235: Importing Modules on Case-Insensitive Platforms": [[463, "pep-235-importing-modules-on-case-insensitive-platforms"]], "PEP 236: __future__ Directives": [[463, "pep-236-future-directives"]], "PEP 237: Unifying Long Integers and Integers": [[464, "pep-237-unifying-long-integers-and-integers"], [466, "pep-237-unifying-long-integers-and-integers"]], "PEP 238: Changing the Division Operator": [[464, "pep-238-changing-the-division-operator"]], "PEP 241: Metadata in Python Packages": [[463, "pep-241-metadata-in-python-packages"]], "PEP 255: Simple Generators": [[464, "pep-255-simple-generators"], [465, "pep-255-simple-generators"]], "PEP 263: Source Code Encodings": [[465, "pep-263-source-code-encodings"]], "PEP 273: Importing Modules from ZIP Archives": [[465, "pep-273-importing-modules-from-zip-archives"]], "PEP 277: Unicode file name support for Windows NT": [[465, "pep-277-unicode-file-name-support-for-windows-nt"]], "PEP 278: Universal Newline Support": [[465, "pep-278-universal-newline-support"]], "PEP 279: enumerate()": [[465, "pep-279-enumerate"]], "PEP 282: The logging Package": [[465, "pep-282-the-logging-package"]], "PEP 285: A Boolean Type": [[465, "pep-285-a-boolean-type"]], "PEP 289: Generator Expressions": [[466, "pep-289-generator-expressions"]], "PEP 292: Simpler String Substitutions": [[466, "pep-292-simpler-string-substitutions"]], "PEP 293: Codec Error Handling Callbacks": [[465, "pep-293-codec-error-handling-callbacks"]], "PEP 301: Package Index and Metadata for Distutils": [[465, "pep-301-package-index-and-metadata-for-distutils"]], "PEP 302: New Import Hooks": [[465, "pep-302-new-import-hooks"]], "PEP 305: Comma-separated Files": [[465, "pep-305-comma-separated-files"]], "PEP 307: Pickle Enhancements": [[465, "pep-307-pickle-enhancements"]], "PEP 308: Conditional Expressions": [[467, "pep-308-conditional-expressions"]], "PEP 309: Partial Function Application": [[467, "pep-309-partial-function-application"]], "PEP 3101: A New Approach To String Formatting": [[470, "pep-3101-a-new-approach-to-string-formatting"]], "PEP 3101: Advanced String Formatting": [[468, "pep-3101-advanced-string-formatting"]], "PEP 3105: print As a Function": [[468, "pep-3105-print-as-a-function"]], "PEP 3106: Dictionary Views": [[469, "pep-3106-dictionary-views"]], "PEP 3110: Exception-Handling Changes": [[468, "pep-3110-exception-handling-changes"]], "PEP 3112: Byte Literals": [[468, "pep-3112-byte-literals"]], "PEP 3116: New I/O Library": [[468, "pep-3116-new-i-o-library"]], "PEP 3118: New memoryview implementation and buffer protocol documentation": [[476, "pep-3118-new-memoryview-implementation-and-buffer-protocol-documentation"]], "PEP 3118\uff1a\u4fee\u8a02\u7de9\u885d\u5354\u5b9a": [[468, "pep-3118-revised-buffer-protocol"]], "PEP 3119: Abstract Base Classes": [[468, "pep-3119-abstract-base-classes"]], "PEP 3127: Integer Literal Support and Syntax": [[468, "pep-3127-integer-literal-support-and-syntax"]], "PEP 3129: Class Decorators": [[468, "pep-3129-class-decorators"]], "PEP 3137: The memoryview Object": [[469, "pep-3137-the-memoryview-object"]], "PEP 3141: A Type Hierarchy for Numbers": [[468, "pep-3141-a-type-hierarchy-for-numbers"]], "PEP 3147: PYC Repository Directories": [[475, "pep-3147-pyc-repository-directories"]], "PEP 3148: The concurrent.futures module": [[475, "pep-3148-the-concurrent-futures-module"]], "PEP 3149: ABI Version Tagged .so Files": [[475, "pep-3149-abi-version-tagged-so-files"]], "PEP 314: Metadata for Python Software Packages v1.1": [[467, "pep-314-metadata-for-python-software-packages-v1-1"]], "PEP 3151: Reworking the OS and IO exception hierarchy": [[476, "pep-3151-reworking-the-os-and-io-exception-hierarchy"]], "PEP 3155: Qualified name for classes and functions": [[476, "pep-3155-qualified-name-for-classes-and-functions"]], "PEP 318: Decorators for Functions and Methods": [[466, "pep-318-decorators-for-functions-and-methods"]], "PEP 322: Reverse Iteration": [[466, "pep-322-reverse-iteration"]], "PEP 324: New subprocess Module": [[466, "pep-324-new-subprocess-module"]], "PEP 327: Decimal Data Type": [[466, "pep-327-decimal-data-type"]], "PEP 328: Absolute and Relative Imports": [[467, "pep-328-absolute-and-relative-imports"]], "PEP 328: Multi-line Imports": [[466, "pep-328-multi-line-imports"]], "PEP 331: Locale-Independent Float/String Conversions": [[466, "pep-331-locale-independent-float-string-conversions"]], "PEP 3333: Python Web Server Gateway Interface v1.0.1": [[475, "pep-3333-python-web-server-gateway-interface-v1-0-1"]], "PEP 338: Executing Modules as Scripts": [[467, "pep-338-executing-modules-as-scripts"]], "PEP 341: Unified try/except/finally": [[467, "pep-341-unified-try-except-finally"]], "PEP 342: New Generator Features": [[467, "pep-342-new-generator-features"]], "PEP 343: The 'with' statement": [[467, "pep-343-the-with-statement"], [468, "pep-343-the-with-statement"]], "PEP 352: Exceptions as New-Style Classes": [[467, "pep-352-exceptions-as-new-style-classes"]], "PEP 353: Using ssize_t as the index type": [[467, "pep-353-using-ssize-t-as-the-index-type"]], "PEP 357: The '__index__' method": [[467, "pep-357-the-index-method"]], "PEP 362\uff1a\u51fd\u5f0f\u7c3d\u540d\u7269\u4ef6": [[476, "pep-362-function-signature-object"]], "PEP 366: Explicit Relative Imports From a Main Module": [[468, "pep-366-explicit-relative-imports-from-a-main-module"]], "PEP 370: Per-user site-packages Directory": [[468, "pep-370-per-user-site-packages-directory"]], "PEP 371: The multiprocessing Package": [[468, "pep-371-the-multiprocessing-package"]], "PEP 372: Adding an Ordered Dictionary to collections": [[469, "pep-372-adding-an-ordered-dictionary-to-collections"]], "PEP 372\uff1a\u6709\u5e8f\u5b57\u5178": [[471, "pep-372-ordered-dictionaries"]], "PEP 378: Format Specifier for Thousands Separator": [[469, "pep-378-format-specifier-for-thousands-separator"], [471, "pep-378-format-specifier-for-thousands-separator"]], "PEP 380: Syntax for Delegating to a Subgenerator": [[476, "pep-380-syntax-for-delegating-to-a-subgenerator"]], "PEP 384: Defining a Stable ABI": [[475, "pep-384-defining-a-stable-abi"]], "PEP 389: Argparse Command Line Parsing Module": [[475, "pep-389-argparse-command-line-parsing-module"]], "PEP 389: The argparse Module for Parsing Command Lines": [[469, "pep-389-the-argparse-module-for-parsing-command-lines"]], "PEP 391: Dictionary Based Configuration for Logging": [[475, "pep-391-dictionary-based-configuration-for-logging"]], "PEP 391: Dictionary-Based Configuration For Logging": [[469, "pep-391-dictionary-based-configuration-for-logging"]], "PEP 393: Flexible String Representation": [[476, "pep-393-flexible-string-representation"]], "PEP 397\uff1a\u9069\u7528\u65bc Windows \u7684 Python \u555f\u52d5\u5668": [[476, "pep-397-python-launcher-for-windows"]], "PEP 405\uff1a\u865b\u64ec\u74b0\u5883": [[476, "pep-405-virtual-environments"]], "PEP 409: Suppressing exception context": [[476, "pep-409-suppressing-exception-context"]], "PEP 412: Key-Sharing Dictionary": [[476, "pep-412-key-sharing-dictionary"]], "PEP 414: Explicit Unicode literals": [[476, "pep-414-explicit-unicode-literals"]], "PEP 420: Implicit Namespace Packages": [[476, "pep-420-implicit-namespace-packages"]], "PEP 421\uff1a\u65b0\u589e sys.implementation": [[476, "pep-421-adding-sys-implementation"]], "PEP 434: IDLE Enhancement Exception for All Branches": [[469, "pep-434-idle-enhancement-exception-for-all-branches"]], "PEP 436: Argument Clinic": [[477, "pep-436-argument-clinic"]], "PEP 442: Safe Object Finalization": [[477, "pep-442-safe-object-finalization"]], "PEP 445: Customization of CPython Memory Allocators": [[477, "pep-445-customization-of-cpython-memory-allocators"]], "PEP 446: Newly Created File Descriptors Are Non-Inheritable": [[477, "pep-446-newly-created-file-descriptors-are-non-inheritable"]], "PEP 448 - Additional Unpacking Generalizations": [[478, "pep-448-additional-unpacking-generalizations"]], "PEP 451: A ModuleSpec Type for the Import System": [[477, "pep-451-a-modulespec-type-for-the-import-system"]], "PEP 453: Explicit Bootstrapping of PIP in Python Installations": [[477, "pep-453-explicit-bootstrapping-of-pip-in-python-installations"]], "PEP 456: Secure and Interchangeable Hash Algorithm": [[477, "pep-456-secure-and-interchangeable-hash-algorithm"]], "PEP 461 - percent formatting support for bytes and bytearray": [[478, "pep-461-percent-formatting-support-for-bytes-and-bytearray"]], "PEP 465 - A dedicated infix operator for matrix multiplication": [[478, "pep-465-a-dedicated-infix-operator-for-matrix-multiplication"]], "PEP 466: Network Security Enhancements for Python 2.7": [[469, "pep-466-network-security-enhancements-for-python-2-7"]], "PEP 468: Preserving Keyword Argument Order": [[479, "pep-468-preserving-keyword-argument-order"]], "PEP 471 - os.scandir() function -- a better and faster directory iterator": [[478, "pep-471-os-scandir-function-a-better-and-faster-directory-iterator"]], "PEP 475: Retry system calls failing with EINTR": [[478, "pep-475-retry-system-calls-failing-with-eintr"]], "PEP 476: Enabling certificate verification by default for stdlib http clients": [[469, "pep-476-enabling-certificate-verification-by-default-for-stdlib-http-clients"], [477, "pep-476-enabling-certificate-verification-by-default-for-stdlib-http-clients"]], "PEP 477: Backport ensurepip (PEP 453) to Python 2.7": [[469, "pep-477-backport-ensurepip-pep-453-to-python-2-7"]], "PEP 479: Change StopIteration handling inside generators": [[478, "pep-479-change-stopiteration-handling-inside-generators"]], "PEP 484 - Type Hints": [[478, "pep-484-type-hints"]], "PEP 485: A function for testing approximate equality": [[478, "pep-485-a-function-for-testing-approximate-equality"]], "PEP 486: Make the Python Launcher aware of virtual environments": [[478, "pep-486-make-the-python-launcher-aware-of-virtual-environments"]], "PEP 487: Descriptor Protocol Enhancements": [[479, "pep-487-descriptor-protocol-enhancements"]], "PEP 487: Simpler customization of class creation": [[479, "pep-487-simpler-customization-of-class-creation"]], "PEP 488: Elimination of PYO files": [[478, "pep-488-elimination-of-pyo-files"]], "PEP 489: Multi-phase extension module initialization": [[478, "pep-489-multi-phase-extension-module-initialization"]], "PEP 492 - Coroutines with async and await syntax": [[478, "pep-492-coroutines-with-async-and-await-syntax"]], "PEP 493: HTTPS verification migration tools for Python 2.7": [[469, "pep-493-https-verification-migration-tools-for-python-2-7"]], "PEP 495: Local Time Disambiguation": [[479, "pep-495-local-time-disambiguation"]], "PEP 498: Formatted string literals": [[479, "pep-498-formatted-string-literals"]], "PEP 515: Underscores in Numeric Literals": [[479, "pep-515-underscores-in-numeric-literals"]], "PEP 519: Adding a file system path protocol": [[479, "pep-519-adding-a-file-system-path-protocol"]], "PEP 520: Preserving Class Attribute Definition Order": [[479, "pep-520-preserving-class-attribute-definition-order"]], "PEP 523: Adding a frame evaluation API to CPython": [[479, "pep-523-adding-a-frame-evaluation-api-to-cpython"]], "PEP 525: Asynchronous Generators": [[479, "pep-525-asynchronous-generators"]], "PEP 526: Syntax for variable annotations": [[479, "pep-526-syntax-for-variable-annotations"]], "PEP 528: Change Windows console encoding to UTF-8": [[479, "pep-528-change-windows-console-encoding-to-utf-8"]], "PEP 529: Change Windows filesystem encoding to UTF-8": [[479, "pep-529-change-windows-filesystem-encoding-to-utf-8"]], "PEP 530: Asynchronous Comprehensions": [[479, "pep-530-asynchronous-comprehensions"]], "PEP 538: Legacy C Locale Coercion": [[480, "pep-538-legacy-c-locale-coercion"]], "PEP 539: New C API for Thread-Local Storage": [[480, "pep-539-new-c-api-for-thread-local-storage"]], "PEP 540: Forced UTF-8 Runtime Mode": [[480, "pep-540-forced-utf-8-runtime-mode"]], "PEP 545\uff1aPython \u6587\u4ef6\u7ffb\u8b6f": [[480, "pep-545-python-documentation-translations"]], "PEP 552: Hash-based .pyc Files": [[480, "pep-552-hash-based-pyc-files"]], "PEP 553: Built-in breakpoint()": [[480, "pep-553-built-in-breakpoint"]], "PEP 560: Core Support for typing module and Generic Types": [[480, "pep-560-core-support-for-typing-module-and-generic-types"]], "PEP 562: Customization of Access to Module Attributes": [[480, "pep-562-customization-of-access-to-module-attributes"]], "PEP 563 \u53ef\u80fd\u4e0d\u662f\u672a\u4f86": [[473, "pep-563-may-not-be-the-future"]], "PEP 563: Postponed Evaluation of Annotations": [[480, "pep-563-postponed-evaluation-of-annotations"]], "PEP 564: New Time Functions With Nanosecond Resolution": [[480, "pep-564-new-time-functions-with-nanosecond-resolution"]], "PEP 565: Show DeprecationWarning in __main__": [[480, "pep-565-show-deprecationwarning-in-main"]], "PEP 578: Python Runtime Audit Hooks": [[481, "pep-578-python-runtime-audit-hooks"]], "PEP 587: Python Initialization Configuration": [[481, "pep-587-python-initialization-configuration"]], "PEP 590: Vectorcall: a fast calling protocol for CPython": [[481, "pep-590-vectorcall-a-fast-calling-protocol-for-cpython"]], "PEP 604\uff1a\u65b0\u578b\u806f\u96c6\u904b\u7b97\u5b50": [[472, "pep-604-new-type-union-operator"]], "PEP 612\uff1a\u53c3\u6578\u898f\u7bc4\u8b8a\u6578": [[472, "pep-612-parameter-specification-variables"]], "PEP 613\uff1a\u578b\u5225\u5225\u540d (TypeAlias)": [[472, "pep-613-typealias"]], "PEP 626\uff1a\u7528\u65bc\u9664\u932f\u548c\u5176\u4ed6\u5de5\u5177\u7684\u7cbe\u78ba\u5217\u865f": [[472, "pep-626-precise-line-numbers-for-debugging-and-other-tools"]], "PEP 634\uff1a\u7d50\u69cb\u6a21\u5f0f\u5339\u914d": [[472, "pep-634-structural-pattern-matching"]], "PEP 646\uff1a\u53ef\u8b8a\u53c3\u6578\u6cdb\u578b (variadic generics)": [[473, "pep-646-variadic-generics"]], "PEP 647\uff1a\u4f7f\u7528\u8005\u5b9a\u7fa9\u7684\u578b\u5225\u9632\u8b77": [[472, "pep-647-user-defined-type-guards"]], "PEP 652\uff1a\u7dad\u8b77\u7a69\u5b9a ABI": [[472, "pep-652-maintaining-the-stable-abi"]], "PEP 654\uff1a\u4f8b\u5916\u7fa4\u7d44\u8207 except*": [[473, "pep-654-exception-groups-and-except"]], "PEP 655\uff1a\u6a19\u8a18\u7368\u7acb TypedDict \u9805\u76ee\u70ba\u5fc5\u8981\u6216\u4e0d\u5fc5\u8981": [[473, "pep-655-marking-individual-typeddict-items-as-required-or-not-required"]], "PEP 657\uff1a\u56de\u6eaf (traceback) \u4e2d\u66f4\u7d30\u7dfb\u7684\u932f\u8aa4\u4f4d\u7f6e": [[473, "pep-657-fine-grained-error-locations-in-tracebacks"]], "PEP 659\uff1a\u7279\u5316\u7684\u9069\u61c9\u6027\u76f4\u8b6f\u5668": [[473, "pep-659-specializing-adaptive-interpreter"]], "PEP 669: Low impact monitoring for CPython": [[474, "pep-669-low-impact-monitoring-for-cpython"]], "PEP 673\uff1aSelf \u578b\u5225": [[473, "pep-673-self-type"]], "PEP 675\uff1a\u4efb\u610f\u7684\u6587\u672c\u5b57\u4e32\u578b\u5225 (Arbitrary literal string type)": [[473, "pep-675-arbitrary-literal-string-type"]], "PEP 678\uff1a\u904b\u7528\u4f8b\u5916\u8a3b\u89e3\u4f7f\u5176\u66f4\u52a0\u8a73\u76e1": [[473, "pep-678-exceptions-can-be-enriched-with-notes"]], "PEP 681\uff1a\u8cc7\u6599\u985e\u5225\u8f49\u63db (Data class transforms)": [[473, "pep-681-data-class-transforms"]], "PEP 684: A Per-Interpreter GIL": [[474, "pep-684-a-per-interpreter-gil"]], "PEP 688: Making the buffer protocol accessible in Python": [[474, "pep-688-making-the-buffer-protocol-accessible-in-python"]], "PEP 692: Using TypedDict for more precise **kwargs typing": [[474, "pep-692-using-typeddict-for-more-precise-kwargs-typing"]], "PEP 695: Type Parameter Syntax": [[474, "pep-695-type-parameter-syntax"]], "PEP 698: Override Decorator for Static Typing": [[474, "pep-698-override-decorator-for-static-typing"]], "PEP 701: Syntactic formalization of f-strings": [[474, "pep-701-syntactic-formalization-of-f-strings"]], "PEP 709: Comprehension inlining": [[474, "pep-709-comprehension-inlining"]], "PEPs 252 and 253: Type and Class Changes": [[464, "peps-252-and-253-type-and-class-changes"]], "PIL-style: shape, strides and suboffsets": [[7, "pil-style-shape-strides-and-suboffsets"]], "POP3 \u7269\u4ef6": [[305, "pop3-objects"]], "POP3 \u7bc4\u4f8b": [[305, "pop3-example"]], "PYTHONMALLOC environment variable": [[479, "pythonmalloc-environment-variable"]], "Pack and Unpack functions": [[25, "pack-and-unpack-functions"]], "Pack functions": [[25, "pack-functions"]], "Package Relative Imports": [[432, "package-relative-imports"]], "Packages": [[432, "packages"]], "Packer Objects": [[408, "packer-objects"]], "Packer Options": [[369, "packer-options"]], "Panel Objects": [[179, "panel-objects"]], "Parallel filesystem cache for compiled bytecode files": [[481, "parallel-filesystem-cache-for-compiled-bytecode-files"]], "Parenthesized forms": [[430, "parenthesized-forms"]], "Parser API": [[207, "parser-api"]], "Parser defaults": [[120, "parser-defaults"]], "Parsing ASCII Encoded Bytes": [[394, "parsing-ascii-encoded-bytes"]], "Parsing Rules": [[331, "parsing-rules"]], "Parsing XML with Namespaces": [[413, "parsing-xml-with-namespaces"]], "Parsing arguments": [[5, "parsing-arguments"], [292, "parsing-arguments"]], "Partial Sorts": [[108, "partial-sorts"]], "Partial parsing": [[120, "partial-parsing"]], "Passing pointers (or: passing parameters by reference)": [[176, "passing-pointers-or-passing-parameters-by-reference"]], "Passing values into a generator": [[95, "passing-values-into-a-generator"]], "Patch \u63cf\u8ff0\u5668\u8207\u4ee3\u7406\u7269\u4ef6 (Proxy Objects)": [[389, "patching-descriptors-and-proxy-objects"]], "Patch \u88dd\u98fe\u5668": [[390, "patch-decorators"]], "Patchers": [[389, "the-patchers"]], "Path Objects": [[422, "path-objects"]], "Path entry finder protocol": [[432, "path-entry-finder-protocol"]], "Path entry finders": [[432, "path-entry-finders"]], "Patterns": [[427, "patterns"]], "Patterns to avoid": [[102, "patterns-to-avoid"]], "Pen control": [[384, "pen-control"], [384, "id1"]], "Per code object events": [[353, "per-code-object-events"]], "Per-Class Scope": [[100, "per-class-scope"]], "Performance": [[85, "performance"], [258, "performance"], [299, "performance"], [470, "performance"]], "Performance options": [[456, "performance-options"]], "Performing Matches": [[106, "performing-matches"]], "Persistence of External Objects": [[299, "persistence-of-external-objects"]], "Personalization": [[235, "personalization"]], "Physical lines": [[435, "physical-lines"]], "Pickle protocol 5 with out-of-band data buffers": [[481, "pickle-protocol-5-with-out-of-band-data-buffers"]], "Pickle serialization": [[425, "pickle-serialization"]], "Pickling": [[94, "pickling"]], "Pickling Class Instances": [[299, "pickling-class-instances"]], "Pipes and Queues": [[283, "pipes-and-queues"]], "Planet": [[94, "planet"]], "Platform Support Removals": [[480, "platform-support-removals"]], "Platform-dependent efficient copy operations": [[332, "platform-dependent-efficient-copy-operations"]], "Platform-specific notes": [[376, "platform-specific-notes"]], "Pointers": [[176, "pointers"]], "Policies": [[132, "policies"]], "Policy Framework": [[476, "policy-framework"]], "Policy Objects": [[132, "policy-objects"]], "Polling Objects": [[328, "polling-objects"]], "Popen Constructor": [[348, "popen-constructor"]], "Popen Objects": [[348, "popen-objects"]], "Populating the parser": [[292, "populating-the-parser"]], "Port-Specific Changes": [[465, "port-specific-changes"], [466, "port-specific-changes"], [467, "port-specific-changes"]], "Port-Specific Changes: FreeBSD": [[469, "port-specific-changes-freebsd"]], "Port-Specific Changes: IRIX": [[468, "port-specific-changes-irix"]], "Port-Specific Changes: Mac OS X": [[468, "port-specific-changes-mac-os-x"], [469, "port-specific-changes-mac-os-x"]], "Port-Specific Changes: Windows": [[468, "port-specific-changes-windows"], [469, "port-specific-changes-windows"]], "Porting C code": [[476, "porting-c-code"]], "Porting To Python 3.0": [[470, "porting-to-python-3-0"]], "Porting to 2.0": [[462, "porting-to-2-0"]], "Porting to Python 2.3": [[465, "porting-to-python-2-3"]], "Porting to Python 2.4": [[466, "porting-to-python-2-4"]], "Porting to Python 2.5": [[467, "porting-to-python-2-5"]], "Porting to Python 2.6": [[468, "porting-to-python-2-6"]], "Porting to Python 2.7": [[469, "porting-to-python-2-7"]], "Porting to Python 3.1": [[471, "porting-to-python-3-1"]], "Porting to Python 3.12": [[474, "porting-to-python-3-12"], [474, "id5"]], "Porting to Python 3.2": [[475, "porting-to-python-3-2"]], "Porting to Python 3.4": [[477, "porting-to-python-3-4"]], "Porting to Python 3.5": [[478, "porting-to-python-3-5"]], "Porting to Python 3.6": [[479, "porting-to-python-3-6"]], "Porting to Python 3.7": [[480, "porting-to-python-3-7"]], "Porting to Python 3.8": [[481, "porting-to-python-3-8"]], "Porting to Python 3.9": [[482, "porting-to-python-3-9"], [482, "id2"]], "Positional-only parameters": [[481, "positional-only-parameters"]], "Post-init processing": [[181, "post-init-processing"]], "Power and logarithmic functions": [[275, "power-and-logarithmic-functions"]], "Practical application": [[93, "practical-application"]], "Precomputed tables": [[281, "precomputed-tables"]], "Prefix scheme": [[355, "prefix-scheme"]], "Prefix, net mask and host mask": [[259, "prefix-net-mask-and-host-mask"]], "Preinitialize Python with PyPreConfig": [[34, "preinitialize-python-with-pypreconfig"]], "PrepareProtocol \u7269\u4ef6": [[340, "prepareprotocol-objects"]], "Preparing the class namespace": [[428, "preparing-the-class-namespace"]], "Preprocessor flags": [[456, "preprocessor-flags"]], "Prerequisites": [[96, "prerequisites"]], "Pretty top": [[382, "pretty-top"]], "Pretty-printers": [[96, "pretty-printers"]], "PrettyPrinter \u7269\u4ef6": [[307, "prettyprinter-objects"]], "Primaries": [[430, "primaries"]], "Primer": [[93, "primer"]], "Print Is A Function": [[470, "print-is-a-function"]], "Printing a version string": [[292, "printing-a-version-string"]], "Printing and clearing": [[23, "printing-and-clearing"]], "Printing help": [[120, "printing-help"]], "Priority Queue\uff08\u512a\u5148\u4f47\u5217\uff09": [[134, "priority-queue"]], "Process Pools": [[283, "module-multiprocessing.pool"]], "Process Watchers": [[132, "process-watchers"]], "Process \u8207\u4f8b\u5916": [[283, "process-and-exceptions"]], "Process-wide parameters": [[33, "process-wide-parameters"]], "ProcessPoolExecutor": [[166, "processpoolexecutor"]], "ProcessPoolExecutor \u7bc4\u4f8b": [[166, "processpoolexecutor-example"]], "ProcessingInstruction \u7269\u4ef6": [[410, "processinginstruction-objects"]], "Profiling and Tracing": [[33, "profiling-and-tracing"]], "Programmatic Interface": [[380, "programmatic-interface"]], "Programmatic access to enumeration members and their attributes": [[94, "programmatic-access-to-enumeration-members-and-their-attributes"]], "Programming guidelines": [[283, "programming-guidelines"]], "Progressbar": [[376, "progressbar"]], "Properties": [[93, "properties"]], "ProtocolError \u7269\u4ef6": [[419, "protocolerror-objects"]], "Protocols": [[133, "protocols"]], "Provider API": [[299, "provider-api"]], "Providing a C API for an Extension Module": [[73, "providing-a-c-api-for-an-extension-module"]], "Providing finer control over data attributes": [[76, "providing-finer-control-over-data-attributes"]], "Provisional Policy with New Header API": [[476, "provisional-policy-with-new-header-api"]], "Proxies": [[110, "proxies"]], "Proxy Objects": [[283, "proxy-objects"]], "ProxyBasicAuthHandler \u7269\u4ef6": [[395, "proxybasicauthhandler-objects"]], "ProxyDigestAuthHandler \u7269\u4ef6": [[395, "proxydigestauthhandler-objects"]], "ProxyHandler \u7269\u4ef6": [[395, "proxyhandler-objects"]], "Public classes": [[384, "public-classes"]], "Public functions": [[163, "public-functions"]], "Pull API for non-blocking parsing": [[413, "pull-api-for-non-blocking-parsing"]], "Pure Embedding": [[72, "pure-embedding"]], "Pure Python Equivalents": [[93, "pure-python-equivalents"]], "Putting it all together": [[292, "putting-it-all-together"]], "PyConfig": [[34, "pyconfig"]], "PyHash API": [[30, "pyhash-api"]], "PyObject Slots": [[63, "pyobject-slots"]], "PyPreConfig": [[34, "pypreconfig"]], "PyStatus": [[34, "pystatus"]], "PyTypeObject Definition": [[63, "pytypeobject-definition"]], "PyTypeObject Slots": [[63, "pytypeobject-slots"]], "PyVarObject Slots": [[63, "pyvarobject-slots"]], "PyWideStringList": [[34, "pywidestringlist"]], "PyWin32": [[461, "pywin32"]], "PyZipFile \u7269\u4ef6": [[422, "pyzipfile-objects"]], "Py_GetArgcArgv()": [[34, "py-getargcargv"]], "Py_RunMain()": [[34, "py-runmain"]], "Pymalloc: A Specialized Object Allocator": [[465, "pymalloc-a-specialized-object-allocator"]], "Python 2.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[462, "what-s-new-in-python-2-0"]], "Python 2.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[463, "what-s-new-in-python-2-1"]], "Python 2.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[464, "what-s-new-in-python-2-2"]], "Python 2.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[465, "what-s-new-in-python-2-3"]], "Python 2.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[466, "what-s-new-in-python-2-4"]], "Python 2.5 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[467, "what-s-new-in-python-2-5"]], "Python 2.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[468, "what-s-new-in-python-2-6"]], "Python 2.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[469, "what-s-new-in-python-2-7"]], "Python 2.x \u7684\u672a\u4f86": [[469, "the-future-for-python-2-x"]], "Python 3.0": [[468, "python-3-0"]], "Python 3.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[470, "what-s-new-in-python-3-0"]], "Python 3.1 Features": [[469, "python-3-1-features"]], "Python 3.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[471, "what-s-new-in-python-3-1"]], "Python 3.10 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[472, "what-s-new-in-python-3-10"]], "Python 3.10.0 alpha 1": [[483, "python-3-10-0-alpha-1"]], "Python 3.10.0 alpha 2": [[483, "python-3-10-0-alpha-2"]], "Python 3.10.0 alpha 3": [[483, "python-3-10-0-alpha-3"]], "Python 3.10.0 alpha 4": [[483, "python-3-10-0-alpha-4"]], "Python 3.10.0 alpha 5": [[483, "python-3-10-0-alpha-5"]], "Python 3.10.0 alpha 6": [[483, "python-3-10-0-alpha-6"]], "Python 3.10.0 alpha 7": [[483, "python-3-10-0-alpha-7"]], "Python 3.10.0 beta 1": [[483, "python-3-10-0-beta-1"]], "Python 3.11 \u6703\u4e0d\u6703\u4f7f\u7528\u66f4\u591a\u8a18\u61b6\u9ad4\uff1f": [[473, "will-cpython-3-11-use-more-memory"]], "Python 3.11 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[473, "what-s-new-in-python-3-11"]], "Python 3.11.0 alpha 1": [[483, "python-3-11-0-alpha-1"]], "Python 3.11.0 alpha 2": [[483, "python-3-11-0-alpha-2"]], "Python 3.11.0 alpha 3": [[483, "python-3-11-0-alpha-3"]], "Python 3.11.0 alpha 4": [[483, "python-3-11-0-alpha-4"]], "Python 3.11.0 alpha 5": [[483, "python-3-11-0-alpha-5"]], "Python 3.11.0 alpha 6": [[483, "python-3-11-0-alpha-6"]], "Python 3.11.0 alpha 7": [[483, "python-3-11-0-alpha-7"]], "Python 3.11.0 beta 1": [[483, "python-3-11-0-beta-1"]], "Python 3.12 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[473, "pending-removal-in-python-3-12"], [473, "whatsnew311-c-api-pending-removal"]], "Python 3.12 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[474, "what-s-new-in-python-3-12"]], "Python 3.12.0 alpha 1": [[483, "python-3-12-0-alpha-1"]], "Python 3.12.0 alpha 2": [[483, "python-3-12-0-alpha-2"]], "Python 3.12.0 alpha 3": [[483, "python-3-12-0-alpha-3"]], "Python 3.12.0 alpha 4": [[483, "python-3-12-0-alpha-4"]], "Python 3.12.0 alpha 5": [[483, "python-3-12-0-alpha-5"]], "Python 3.12.0 alpha 6": [[483, "python-3-12-0-alpha-6"]], "Python 3.12.0 alpha 7": [[483, "python-3-12-0-alpha-7"]], "Python 3.12.0 beta 1": [[483, "python-3-12-0-beta-1"]], "Python 3.12.0 beta 2": [[483, "python-3-12-0-beta-2"]], "Python 3.12.0 beta 3": [[483, "python-3-12-0-beta-3"]], "Python 3.12.0 beta 4": [[483, "python-3-12-0-beta-4"]], "Python 3.12.0 final": [[483, "python-3-12-0-final"]], "Python 3.12.0 release candidate 1": [[483, "python-3-12-0-release-candidate-1"]], "Python 3.12.0 release candidate 2": [[483, "python-3-12-0-release-candidate-2"]], "Python 3.12.0 release candidate 3": [[483, "python-3-12-0-release-candidate-3"]], "Python 3.12.1 final": [[483, "python-3-12-1-final"]], "Python 3.12.2 final": [[483, "python-3-12-2-final"]], "Python 3.12.3 final": [[483, "python-3-12-3-final"]], "Python 3.12.4 final": [[483, "python-3-12-4-final"]], "Python 3.13 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-13"]], "Python 3.14 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-14"], [474, "id7"]], "Python 3.15 \u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-python-3-15"], [474, "id8"]], "Python 3.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[475, "what-s-new-in-python-3-2"]], "Python 3.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[476, "what-s-new-in-python-3-3"]], "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[477, "what-s-new-in-python-3-4"], [478, "what-s-new-in-python-3-5"]], "Python 3.5.0 alpha 1": [[483, "python-3-5-0-alpha-1"]], "Python 3.5.0 alpha 2": [[483, "python-3-5-0-alpha-2"]], "Python 3.5.0 alpha 3": [[483, "python-3-5-0-alpha-3"]], "Python 3.5.0 alpha 4": [[483, "python-3-5-0-alpha-4"]], "Python 3.5.0 beta 1": [[483, "python-3-5-0-beta-1"]], "Python 3.5.0 beta 2": [[483, "python-3-5-0-beta-2"]], "Python 3.5.0 beta 3": [[483, "python-3-5-0-beta-3"]], "Python 3.5.0 beta 4": [[483, "python-3-5-0-beta-4"]], "Python 3.5.0 final": [[483, "python-3-5-0-final"]], "Python 3.5.0 release candidate 1": [[483, "python-3-5-0-release-candidate-1"]], "Python 3.5.0 release candidate 2": [[483, "python-3-5-0-release-candidate-2"]], "Python 3.5.0 release candidate 3": [[483, "python-3-5-0-release-candidate-3"]], "Python 3.5.0 release candidate 4": [[483, "python-3-5-0-release-candidate-4"]], "Python 3.5.1 final": [[483, "python-3-5-1-final"]], "Python 3.5.1 release candidate 1": [[483, "python-3-5-1-release-candidate-1"]], "Python 3.5.2 final": [[483, "python-3-5-2-final"]], "Python 3.5.2 release candidate 1": [[483, "python-3-5-2-release-candidate-1"]], "Python 3.5.3 final": [[483, "python-3-5-3-final"]], "Python 3.5.3 release candidate 1": [[483, "python-3-5-3-release-candidate-1"]], "Python 3.5.4 final": [[483, "python-3-5-4-final"]], "Python 3.5.4 release candidate 1": [[483, "python-3-5-4-release-candidate-1"]], "Python 3.5.4 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[478, "notable-changes-in-python-3-5-4"]], "Python 3.5.5 final": [[483, "python-3-5-5-final"]], "Python 3.5.5 release candidate 1": [[483, "python-3-5-5-release-candidate-1"]], "Python 3.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[479, "what-s-new-in-python-3-6"]], "Python 3.6.0 alpha 1": [[483, "python-3-6-0-alpha-1"]], "Python 3.6.0 alpha 2": [[483, "python-3-6-0-alpha-2"]], "Python 3.6.0 alpha 3": [[483, "python-3-6-0-alpha-3"]], "Python 3.6.0 alpha 4": [[483, "python-3-6-0-alpha-4"]], "Python 3.6.0 beta 1": [[483, "python-3-6-0-beta-1"]], "Python 3.6.0 beta 2": [[483, "python-3-6-0-beta-2"]], "Python 3.6.0 beta 3": [[483, "python-3-6-0-beta-3"]], "Python 3.6.0 beta 4": [[483, "python-3-6-0-beta-4"]], "Python 3.6.0 final": [[483, "python-3-6-0-final"]], "Python 3.6.0 release candidate 1": [[483, "python-3-6-0-release-candidate-1"]], "Python 3.6.0 release candidate 2": [[483, "python-3-6-0-release-candidate-2"]], "Python 3.6.1 final": [[483, "python-3-6-1-final"]], "Python 3.6.1 release candidate 1": [[483, "python-3-6-1-release-candidate-1"]], "Python 3.6.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-10"]], "Python 3.6.13 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-13"]], "Python 3.6.14 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-14"]], "Python 3.6.2 final": [[483, "python-3-6-2-final"]], "Python 3.6.2 release candidate 1": [[483, "python-3-6-2-release-candidate-1"]], "Python 3.6.2 release candidate 2": [[483, "python-3-6-2-release-candidate-2"]], "Python 3.6.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-2"]], "Python 3.6.3 final": [[483, "python-3-6-3-final"]], "Python 3.6.3 release candidate 1": [[483, "python-3-6-3-release-candidate-1"]], "Python 3.6.4 final": [[483, "python-3-6-4-final"]], "Python 3.6.4 release candidate 1": [[483, "python-3-6-4-release-candidate-1"]], "Python 3.6.4 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-4"]], "Python 3.6.5 final": [[483, "python-3-6-5-final"]], "Python 3.6.5 release candidate 1": [[483, "python-3-6-5-release-candidate-1"]], "Python 3.6.5 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-5"]], "Python 3.6.6 final": [[483, "python-3-6-6-final"]], "Python 3.6.6 release candidate 1": [[483, "python-3-6-6-release-candidate-1"]], "Python 3.6.7 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[479, "notable-changes-in-python-3-6-7"]], "Python 3.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[480, "what-s-new-in-python-3-7"]], "Python 3.7.0 alpha 1": [[483, "python-3-7-0-alpha-1"]], "Python 3.7.0 alpha 2": [[483, "python-3-7-0-alpha-2"]], "Python 3.7.0 alpha 3": [[483, "python-3-7-0-alpha-3"]], "Python 3.7.0 alpha 4": [[483, "python-3-7-0-alpha-4"]], "Python 3.7.0 beta 1": [[483, "python-3-7-0-beta-1"]], "Python 3.7.0 beta 2": [[483, "python-3-7-0-beta-2"]], "Python 3.7.0 beta 3": [[483, "python-3-7-0-beta-3"]], "Python 3.7.0 beta 4": [[483, "python-3-7-0-beta-4"]], "Python 3.7.0 beta 5": [[483, "python-3-7-0-beta-5"]], "Python 3.7.0 final": [[483, "python-3-7-0-final"]], "Python 3.7.0 release candidate 1": [[483, "python-3-7-0-release-candidate-1"]], "Python 3.7.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-1"]], "Python 3.7.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-10"]], "Python 3.7.11 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-11"]], "Python 3.7.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-2"]], "Python 3.7.6 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[480, "notable-changes-in-python-3-7-6"]], "Python 3.8 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[481, "what-s-new-in-python-3-8"]], "Python 3.8.0 alpha 1": [[483, "python-3-8-0-alpha-1"]], "Python 3.8.0 alpha 2": [[483, "python-3-8-0-alpha-2"]], "Python 3.8.0 alpha 3": [[483, "python-3-8-0-alpha-3"]], "Python 3.8.0 alpha 4": [[483, "python-3-8-0-alpha-4"]], "Python 3.8.0 beta 1": [[483, "python-3-8-0-beta-1"]], "Python 3.8.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-1"]], "Python 3.8.10 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-10"], [481, "id1"]], "Python 3.8.12 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-12"]], "Python 3.8.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-2"]], "Python 3.8.3 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-3"]], "Python 3.8.8 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-8"]], "Python 3.8.9 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[481, "notable-changes-in-python-3-8-9"]], "Python 3.9 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd": [[482, "what-s-new-in-python-3-9"]], "Python 3.9.0 alpha 1": [[483, "python-3-9-0-alpha-1"]], "Python 3.9.0 alpha 2": [[483, "python-3-9-0-alpha-2"]], "Python 3.9.0 alpha 3": [[483, "python-3-9-0-alpha-3"]], "Python 3.9.0 alpha 4": [[483, "python-3-9-0-alpha-4"]], "Python 3.9.0 alpha 5": [[483, "python-3-9-0-alpha-5"]], "Python 3.9.0 alpha 6": [[483, "python-3-9-0-alpha-6"]], "Python 3.9.0 beta 1": [[483, "python-3-9-0-beta-1"]], "Python 3.9.1 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-1"]], "Python 3.9.2 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-2"]], "Python 3.9.3 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-3"]], "Python 3.9.5 \u4e2d\u986f\u8457\u7684\u8b8a\u66f4": [[482, "notable-changes-in-python-3-9-5"]], "Python API": [[421, "python-api"]], "Python API \u7684\u8b8a\u5316": [[472, "changes-in-the-python-api"]], "Python API \u7684\u8b8a\u66f4": [[477, "changes-in-the-python-api"]], "Python Application": [[461, "python-application"]], "Python Build System": [[456, "python-build-system"]], "Python Bytecode Instructions": [[191, "python-bytecode-instructions"]], "Python Configuration": [[34, "python-configuration"]], "Python Debug Build": [[456, "python-debug-build"]], "Python Development Mode (-X dev)": [[480, "python-development-mode-x-dev"]], "Python Launcher for Windows": [[461, "python-launcher-for-windows"]], "Python Path Configuration": [[34, "python-path-configuration"]], "Python Runtime \u670d\u52d9": [[315, "python-runtime-services"]], "Python Specific Encodings": [[158, "python-specific-encodings"]], "Python UTF-8 \u6a21\u5f0f": [[293, "python-utf-8-mode"]], "Python curses \u6a21\u7d44": [[92, "the-python-curses-module"]], "Python next": [[483, "python-next"]], "Python \u4e2d\u662f\u5426\u6709\u4efb\u4f55\u8cc7\u6599\u5eab\u5957\u4ef6\u7684\u4ecb\u9762\uff1f": [[84, "are-there-any-interfaces-to-database-packages-in-python"]], "Python \u4ecb\u9762": [[367, "python-interface"]], "Python \u4f5c\u7528\u57df (Scope) \u53ca\u547d\u540d\u7a7a\u9593 (Namespace)": [[440, "python-scopes-and-namespaces"]], "Python \u521d\u59cb\u5316\u4e4b\u524d": [[33, "before-python-initialization"]], "Python \u521d\u59cb\u5316\u8a2d\u5b9a": [[34, "python-initialization-configuration"]], "Python \u53ef\u4ee5\u88ab\u7de8\u8b6f\u6210\u6a5f\u5668\u8a9e\u8a00\u3001C \u8a9e\u8a00\u6216\u5176\u4ed6\u7a2e\u8a9e\u8a00\u55ce\uff1f": [[78, "can-python-be-compiled-to-machine-code-c-or-some-other-language"]], "Python \u5957\u4ef6\u4e2d\u7684 __main__.py": [[114, "main-py-in-python-packages"]], "Python \u5982\u4f55\u7ba1\u7406\u8a18\u61b6\u9ad4\uff1f": [[78, "how-does-python-manage-memory"]], "Python \u5982\u4f55\u9054\u6210\u4efb\u52d9": [[97, "python-howtos"]], "Python \u5c0d Linux perf \u5206\u6790\u5668\u7684\u652f\u63f4": [[104, "python-support-for-the-linux-perf-profiler"]], "Python \u5c0d\u65bc\u5165\u9580\u7684\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u800c\u8a00\u662f\u5426\u70ba\u597d\u7684\u8a9e\u8a00\uff1f": [[80, "is-python-a-good-language-for-beginning-programmers"]], "Python \u5e38\u898b\u554f\u984c": [[82, "python-frequently-asked-questions"]], "Python \u6559\u5b78": [[445, "the-python-tutorial"]], "Python \u6587\u4ef6\u7684\u8ca2\u737b\u8005\u5011": [[0, "contributors-to-the-python-documentation"]], "Python \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff1f": [[484, "what-s-new-in-python"]], "Python \u6709\u54ea\u4e9b GUI \u5957\u4ef6\uff1f": [[81, "what-gui-toolkits-exist-for-python"]], "Python \u6709\u54ea\u4e9b WWW \u5de5\u5177\uff1f": [[84, "what-www-tools-are-there-for-python"]], "Python \u672a\u4f86\u9810\u671f\u6703\u6709\u54ea\u4e9b\u65b0\u7684\u958b\u767c\uff1f": [[80, "what-new-developments-are-expected-for-python-in-the-future"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab (Standard Library)": [[254, "the-python-standard-library"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd": [[451, "brief-tour-of-the-standard-library"]], "Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd\u2014\u2014\u7b2c\u4e8c\u90e8\u4efd": [[452, "brief-tour-of-the-standard-library-part-ii"]], "Python \u7684\u5206\u6790\u5668": [[308, "the-python-profilers"]], "Python \u7684\u5340\u57df\u8b8a\u6578\u548c\u5168\u57df\u8b8a\u6578\u6709\u4ec0\u9ebc\u898f\u5247\uff1f": [[85, "what-are-the-rules-for-local-and-global-variables-in-python"]], "Python \u7684\u7248\u672c\u7de8\u865f\u7cfb\u7d71\u662f\u5982\u4f55\u904b\u4f5c\u7684\uff1f": [[80, "how-does-the-python-version-numbering-scheme-work"]], "Python \u7684\u7a69\u5b9a\u6027\u5982\u4f55\uff1f": [[80, "how-stable-is-python"]], "Python \u7684\u8a2d\u7f6e\u8207\u4f7f\u7528": [[458, "python-setup-and-usage"]], "Python \u7a0b\u5f0f\u78bc\u662f\u5426\u6709\u7de8\u78bc\u6a19\u6e96\u6216\u98a8\u683c\u6307\u5357\uff1f": [[85, "are-there-coding-standards-or-a-style-guide-for-python-programs"]], "Python \u8a9e\u6cd5\u7684\u8b8a\u5316": [[472, "changes-in-the-python-syntax"]], "Python \u8a9e\u8a00\u53c3\u8003\u624b\u518a": [[433, "the-python-language-reference"]], "Python \u8a9e\u8a00\u670d\u52d9": [[264, "python-language-services"]], "Python \u8aaa\u660e\u6587\u4ef6": [[95, "python-documentation"]], "Python \u8aaa\u660e\u6587\u4ef6\u5167\u5bb9": [[68, "python-documentation-contents"]], "Python \u958b\u767c\u6a21\u5f0f": [[188, "python-development-mode"]], "Python \u958b\u767c\u6a21\u5f0f\u7684\u5f71\u97ff": [[188, "effects-of-the-python-development-mode"]], "Python's Unicode Support": [[109, "python-s-unicode-support"]], "Python-specific": [[95, "python-specific"]], "Python/C API \u53c3\u8003\u624b\u518a": [[32, "python-c-api-reference-manual"]], "QName \u7269\u4ef6": [[413, "qname-objects"]], "Querying Garbage Collector State": [[28, "querying-garbage-collector-state"]], "Querying and manipulating your option parser": [[292, "querying-and-manipulating-your-option-parser"]], "Querying file type and status": [[296, "querying-file-type-and-status"]], "Querying the error indicator": [[23, "querying-the-error-indicator"]], "Querying the size of a terminal": [[293, "querying-the-size-of-a-terminal"]], "Querying the size of the output terminal": [[332, "querying-the-size-of-the-output-terminal"]], "Queue": [[134, "queue"]], "QueueHandler": [[269, "queuehandler"]], "QueueListener": [[269, "queuelistener"]], "Quick Links for add_argument()": [[120, "quick-links-for-add-argument"]], "Quick Reference": [[63, "quick-reference"]], "Quick Start": [[167, "quick-start"]], "Quick-start Tutorial": [[186, "quick-start-tutorial"]], "RLock \u7269\u4ef6": [[365, "rlock-objects"]], "Raising errors in a callback": [[292, "raising-errors-in-a-callback"]], "Raising exceptions": [[23, "raising-exceptions"]], "Random numbers": [[293, "random-numbers"]], "Randomized hashing": [[235, "randomized-hashing"]], "Ranges": [[344, "ranges"]], "Raw Memory Interface": [[42, "raw-memory-interface"]], "Raw String Notation": [[319, "raw-string-notation"]], "Raw-Unicode-Escape Codecs": [[64, "raw-unicode-escape-codecs"]], "RawConfigParser \u7269\u4ef6": [[167, "rawconfigparser-objects"]], "Re-ordering of keyword-only parameters in __init__()": [[181, "re-ordering-of-keyword-only-parameters-in-init"]], "Re-using old test code": [[388, "re-using-old-test-code"]], "Read-only Transports": [[133, "read-only-transports"]], "Reading and Writing Unicode Data": [[109, "reading-and-writing-unicode-data"]], "Reading and writing compressed files": [[270, "reading-and-writing-compressed-files"]], "Reading and writing files": [[296, "reading-and-writing-files"]], "Readline configuration": [[334, "readline-configuration"]], "Recipes": [[186, "recipes"]], "Recognised parameters for field specifiers": [[386, "id6"]], "Recommended configuration": [[344, "recommended-configuration"]], "Record Objects": [[281, "record-objects"]], "Record the current and peak size of all traced memory blocks": [[382, "record-the-current-and-peak-size-of-all-traced-memory-blocks"]], "Recursion Control": [[23, "recursion-control"]], "Redirection of local data, registry, and temporary paths": [[461, "redirection-of-local-data-registry-and-temporary-paths"]], "Reentrancy": [[258, "reentrancy"]], "Reentrant context managers": [[169, "reentrant-context-managers"]], "Reference": [[283, "reference"], [340, "reference"], [413, "reference"], [413, "id4"]], "Reference Counting in Python": [[73, "reference-counting-in-python"]], "Reference Counts": [[73, "reference-counts"]], "Reference Guide": [[292, "reference-guide"]], "References": [[95, "references"], [109, "references"], [109, "id2"], [109, "id3"], [432, "references"]], "Reflection": [[53, "reflection"]], "Registering and using tools": [[353, "registering-and-using-tools"]], "Registering callback functions": [[353, "registering-callback-functions"]], "Registry Handle Objects": [[405, "registry-handle-objects"]], "Regular Expression Examples": [[319, "regular-expression-examples"]], "Regular Expression Objects": [[319, "regular-expression-objects"]], "Regular packages": [[432, "regular-packages"]], "Related Articles": [[110, null]], "Relationship to PyXML": [[462, "relationship-to-pyxml"]], "Releasing the GIL from extension code": [[33, "releasing-the-gil-from-extension-code"]], "Removal of make touch build target": [[469, "removal-of-make-touch-build-target"], [478, "removal-of-make-touch-build-target"], [479, "removal-of-make-touch-build-target"]], "Removing the MAX_PATH Limitation": [[461, "removing-the-max-path-limitation"]], "Repeated Names Within an Object": [[262, "repeated-names-within-an-object"]], "Repeating Things": [[106, "repeating-things"]], "Replacing /bin/sh shell command substitution": [[348, "replacing-bin-sh-shell-command-substitution"]], "Replacing Older Functions with the subprocess Module": [[348, "replacing-older-functions-with-the-subprocess-module"]], "Replacing any use of try-finally and flag variables": [[169, "replacing-any-use-of-try-finally-and-flag-variables"]], "Replacing functions from the popen2 module": [[348, "replacing-functions-from-the-popen2-module"]], "Replacing os.popen(), os.popen2(), os.popen3()": [[348, "replacing-os-popen-os-popen2-os-popen3"]], "Replacing os.system()": [[348, "replacing-os-system"]], "Replacing shell pipeline": [[348, "replacing-shell-pipeline"]], "Replacing the os.spawn family": [[348, "replacing-the-os-spawn-family"]], "Replacing the standard import system": [[432, "replacing-the-standard-import-system"]], "Repr \u7269\u4ef6": [[321, "repr-objects"]], "Request Handler Objects": [[338, "request-handler-objects"]], "Request Objects": [[395, "request-objects"]], "Reserved classes of identifiers": [[435, "reserved-classes-of-identifiers"]], "Resolution of names": [[429, "resolution-of-names"]], "Resolving MRO entries": [[428, "resolving-mro-entries"]], "Resource Limits": [[322, "resource-limits"]], "Resource Usage": [[322, "resource-usage"]], "ResourceWarning \u7bc4\u4f8b": [[188, "resourcewarning-example"]], "Resources": [[103, "resources"]], "Resources limitations": [[422, "resources-limitations"]], "Restricted Enum subclassing": [[94, "restricted-enum-subclassing"]], "Restricting Globals": [[299, "restricting-globals"]], "Restrictions": [[330, "restrictions"]], "Retrieving source code": [[255, "retrieving-source-code"]], "Return codes": [[461, "return-codes"]], "Return types": [[176, "return-types"]], "Reusable context managers": [[169, "reusable-context-managers"]], "Revision History and Acknowledgements": [[95, "revision-history-and-acknowledgements"]], "RotatingFileHandler": [[269, "rotatingfilehandler"]], "Rounding modes": [[186, "rounding-modes"]], "Row \u7269\u4ef6": [[340, "row-objects"]], "Run menu (Editor window only)": [[247, "run-menu-editor-window-only"]], "Runner context manager": [[135, "runner-context-manager"]], "Runners (\u57f7\u884c\u5668)": [[135, "runners"]], "Running Tasks Concurrently": [[139, "running-tasks-concurrently"]], "Running a logging socket listener in production": [[102, "running-a-logging-socket-listener-in-production"]], "Running in Threads": [[139, "running-in-threads"]], "Running user code": [[247, "running-user-code"]], "Running without a subprocess": [[247, "running-without-a-subprocess"]], "Runtime configuration": [[425, "runtime-configuration"]], "SAX2 \u652f\u63f4": [[462, "sax2-support"]], "SAXException \u7269\u4ef6": [[414, "saxexception-objects"]], "SHAKE variable length digests": [[235, "shake-variable-length-digests"]], "SMTP \u7269\u4ef6": [[335, "smtp-objects"]], "SMTP \u7bc4\u4f8b": [[335, "smtp-example"]], "SMTPHandler": [[269, "smtphandler"]], "SQLite and Python types": [[340, "sqlite-and-python-types"]], "SSL Contexts": [[341, "ssl-contexts"]], "SSL Sockets": [[341, "ssl-sockets"]], "SSL session": [[341, "ssl-session"]], "Scheduler Objects": [[325, "scheduler-objects"]], "Scheduling From Other Threads": [[139, "scheduling-from-other-threads"]], "Scrollable Widget Options": [[376, "scrollable-widget-options"]], "Search and Replace": [[106, "search-and-replace"], [247, "search-and-replace"]], "Searching": [[432, "searching"]], "Security": [[483, "security"], [483, "id3"], [483, "id11"], [483, "id41"], [483, "id51"], [483, "id61"], [483, "id74"], [483, "id83"], [483, "id102"], [483, "id111"], [483, "id128"], [483, "id138"], [483, "id147"], [483, "id159"], [483, "id220"], [483, "id231"], [483, "id241"], [483, "id250"], [483, "id260"], [483, "id278"], [483, "id289"], [483, "id299"], [483, "id309"], [483, "id319"], [483, "id330"], [483, "id341"], [483, "id356"], [483, "id366"], [483, "id377"], [483, "id388"], [483, "id399"], [483, "id415"], [483, "id450"], [483, "id461"], [483, "id502"], [483, "id524"], [483, "id547"], [483, "id556"], [483, "id557"], [483, "id616"], [483, "id625"], [483, "id635"], [483, "id645"], [483, "id649"], [483, "id657"], [483, "id670"]], "Security Considerations": [[245, "security-considerations"], [348, "security-considerations"]], "Security Options": [[456, "security-options"]], "Security considerations": [[268, "security-considerations"], [341, "security-considerations"]], "Select kqueue": [[426, "select-kqueue"]], "Selecting elements": [[95, "selecting-elements"]], "Self-signed certificates": [[341, "self-signed-certificates"]], "Semaphore": [[138, "semaphore"]], "Semaphore Objects": [[365, "semaphore-objects"]], "Semaphore \u7bc4\u4f8b": [[365, "semaphore-example"]], "Sending and receiving logging events across a network": [[102, "sending-and-receiving-logging-events-across-a-network"]], "Sending logging messages to email, with buffering": [[102, "sending-logging-messages-to-email-with-buffering"]], "Separator": [[376, "separator"]], "Sequence Object Structures": [[63, "sequence-object-structures"]], "Sequence Patterns": [[427, "sequence-patterns"]], "Sequence Types --- list, tuple, range": [[344, "sequence-types-list-tuple-range"]], "SequenceMatcher \u7269\u4ef6": [[190, "sequencematcher-objects"]], "SequenceMatcher \u7bc4\u4f8b": [[190, "sequencematcher-examples"]], "Sequences": [[428, "sequences"]], "Sequences (Tuples/Lists)": [[85, "sequences-tuples-lists"]], "Server Creation Notes": [[338, "server-creation-notes"]], "Server Objects": [[338, "server-objects"]], "Server \u7269\u4ef6": [[126, "server-objects"]], "Server-side operation": [[341, "server-side-operation"]], "ServerProxy \u7269\u4ef6": [[419, "serverproxy-objects"]], "Set Types --- set, frozenset": [[344, "set-types-set-frozenset"]], "Set displays": [[430, "set-displays"]], "Set types": [[428, "set-types"]], "Setting Options": [[369, "setting-options"]], "Setting events globally": [[353, "setting-events-globally"]], "Setting preferences": [[247, "setting-preferences"]], "Setting up an importer": [[250, "setting-up-an-importer"]], "Settings and special methods": [[384, "settings-and-special-methods"]], "Settings for measurement": [[384, "settings-for-measurement"]], "Setup for Python from a Linux distro": [[96, "setup-for-python-from-a-linux-distro"]], "Setup with Python built from source": [[96, "setup-with-python-built-from-source"]], "Shared ctypes Objects": [[283, "shared-ctypes-objects"]], "Sharing state between processes": [[283, "sharing-state-between-processes"]], "Shebang Lines": [[461, "shebang-lines"]], "Shell menu (Shell window only)": [[247, "shell-menu-shell-window-only"]], "Shell window": [[247, "shell-window"]], "Shielding From Cancellation": [[139, "shielding-from-cancellation"]], "Shifting operations": [[430, "shifting-operations"]], "Side effect \u51fd\u5f0f\u4ee5\u53ca\u53ef\u758a\u4ee3\u7269\u4ef6": [[390, "side-effect-functions-and-iterables"]], "Signal Handling": [[23, "signal-handling"], [388, "signal-handling"]], "Signals": [[186, "signals"]], "Signals and threads": [[333, "signals-and-threads"]], "Simple Patterns": [[106, "simple-patterns"]], "Simple Usage: Checking Examples in Docstrings": [[193, "simple-usage-checking-examples-in-docstrings"]], "Simple Usage: Checking Examples in a Text File": [[193, "simple-usage-checking-examples-in-a-text-file"]], "Simple example: A descriptor that returns a constant": [[93, "simple-example-a-descriptor-that-returns-a-constant"]], "Simple hashing": [[235, "simple-hashing"]], "SimpleNamespace": [[476, "simplenamespace"]], "SimpleQueue \u7269\u4ef6": [[316, "simplequeue-objects"]], "SimpleXMLRPCServer \u7269\u4ef6": [[420, "simplexmlrpcserver-objects"]], "SimpleXMLRPCServer \u7bc4\u4f8b": [[420, "simplexmlrpcserver-example"]], "Simulating scanf()": [[319, "simulating-scanf"]], "Single use, reusable and reentrant context managers": [[169, "single-use-reusable-and-reentrant-context-managers"]], "Single-phase initialization": [[45, "single-phase-initialization"]], "SipHash24": [[426, "siphash24"]], "Sizegrip": [[376, "sizegrip"]], "Skipping tests and expected failures": [[388, "skipping-tests-and-expected-failures"]], "Sleeping": [[139, "sleeping"]], "Slice objects": [[428, "slice-objects"]], "Slicings": [[430, "slicings"]], "Slot Type typedefs": [[63, "slot-type-typedefs"]], "Small functions and the lambda expression": [[95, "small-functions-and-the-lambda-expression"]], "Snapshot": [[382, "snapshot"]], "Soapbox": [[193, "soapbox"]], "Socket \u5efa\u7acb": [[341, "socket-creation"]], "Socket \u7269\u4ef6": [[337, "socket-objects"]], "Socket \u7a0b\u5f0f\u8a2d\u8a08\u6307\u5357": [[107, "socket-programming-howto"]], "Socket \u7cfb\u5217\u5bb6\u65cf": [[337, "socket-families"]], "SocketHandler": [[269, "sockethandler"]], "Sockets": [[107, "sockets"], [426, "sockets"]], "Sockets and Layers": [[110, "sockets-and-layers"]], "Sockets \u4f55\u6642\u92b7\u6bc0": [[107, "when-sockets-die"]], "Solaris message catalog support": [[230, "solaris-message-catalog-support"]], "Speaking logging messages": [[102, "speaking-logging-messages"]], "Special Attributes": [[344, "special-attributes"]], "Special Attributes of GenericAlias objects": [[344, "special-attributes-of-genericalias-objects"]], "Special Turtle methods": [[384, "special-turtle-methods"]], "Special considerations for __main__": [[432, "special-considerations-for-main"]], "Special forms": [[386, "special-forms"]], "Special functions": [[275, "special-functions"]], "Special method lookup": [[428, "special-method-lookup"]], "Special method names": [[428, "special-method-names"]], "Special values": [[186, "special-values"]], "Specification for the Python Type System": [[386, "specification-for-the-python-type-system"]], "Specifying custom filter chains": [[270, "specifying-custom-filter-chains"]], "Specifying the Interpreter": [[421, "specifying-the-interpreter"]], "Specifying the required argument types (function prototypes)": [[176, "specifying-the-required-argument-types-function-prototypes"]], "Spinbox": [[376, "spinbox"]], "Splitting Strings": [[106, "splitting-strings"]], "StackSummary \u7269\u4ef6": [[381, "stacksummary-objects"]], "Standard Compliance and Interoperability": [[262, "standard-compliance-and-interoperability"]], "Standard Encodings": [[158, "standard-encodings"]], "Standard Exceptions": [[23, "standard-exceptions"]], "Standard Formats": [[347, "standard-formats"]], "Standard Generic Classes": [[344, "standard-generic-classes"]], "Standard Interpreter Types": [[385, "standard-interpreter-types"]], "Standard Warning Categories": [[23, "standard-warning-categories"]], "Standard option actions": [[292, "standard-option-actions"]], "Standard option types": [[292, "standard-option-types"]], "Starting and ending a curses application": [[92, "starting-and-ending-a-curses-application"]], "Startup and Code Execution": [[247, "startup-and-code-execution"]], "Startup failure": [[247, "startup-failure"]], "Startup hooks": [[320, "startup-hooks"]], "Stateful extraction filter example": [[358, "stateful-extraction-filter-example"]], "Stateless Encoding and Decoding": [[158, "stateless-encoding-and-decoding"]], "Static Types": [[63, "static-types"]], "Static method objects": [[428, "static-method-objects"]], "Static methods": [[93, "static-methods"]], "Statistic": [[382, "statistic"]], "StatisticDiff": [[382, "statisticdiff"]], "StrEnum": [[94, "strenum"]], "Stream Encoding and Decoding": [[158, "stream-encoding-and-decoding"]], "StreamHandler": [[269, "streamhandler"]], "StreamReader": [[136, "streamreader"]], "StreamReader \u7269\u4ef6": [[158, "streamreader-objects"]], "StreamReaderWriter \u7269\u4ef6": [[158, "streamreaderwriter-objects"]], "StreamRecoder \u7269\u4ef6": [[158, "streamrecoder-objects"]], "StreamWriter": [[136, "streamwriter"]], "StreamWriter \u7269\u4ef6": [[158, "streamwriter-objects"]], "Streaming Protocols": [[133, "streaming-protocols"]], "String Changes": [[465, "string-changes"]], "String Methods": [[344, "string-methods"], [462, "string-methods"]], "String and Bytes literals": [[435, "string-and-bytes-literals"]], "String literal concatenation": [[435, "string-literal-concatenation"]], "String representations": [[425, "string-representations"]], "Strings and buffers": [[5, "strings-and-buffers"]], "Struct Sequence Objects": [[60, "struct-sequence-objects"]], "Structure of a program": [[429, "structure-of-a-program"]], "Structure/union alignment and byte order": [[176, "structure-union-alignment-and-byte-order"]], "Structured Markup Processing Tools": [[273, "structured-markup-processing-tools"]], "Structured Parse Results": [[394, "structured-parse-results"]], "Structured data types": [[176, "structured-data-types"]], "Structures and unions": [[176, "structures-and-unions"]], "Sub-commands": [[120, "sub-commands"]], "Sub-interpreter support": [[33, "sub-interpreter-support"]], "Subclass QueueHandler": [[102, "subclass-queuehandler"], [102, "id4"]], "Subclass QueueListener": [[102, "subclass-queuelistener"], [102, "id3"]], "Subclassing EnumType": [[94, "subclassing-enumtype"]], "Subclassing QueueHandler and QueueListener- a ZeroMQ example": [[102, "subclassing-queuehandler-and-queuelistener-a-zeromq-example"]], "Subclassing QueueHandler and QueueListener- a pynng example": [[102, "subclassing-queuehandler-and-queuelistener-a-pynng-example"]], "Subclassing Repr Objects": [[321, "subclassing-repr-objects"]], "Subclassing other types": [[76, "subclassing-other-types"]], "Submodules": [[432, "submodules"]], "Subprocess Protocols": [[133, "subprocess-protocols"]], "Subprocess Transports": [[133, "subprocess-transports"]], "Subscriptions": [[430, "subscriptions"]], "Summary -- Release Highlights": [[477, "summary-release-highlights"], [480, "summary-release-highlights"]], "Summary -- Release highlights": [[476, "summary-release-highlights"], [478, "summary-release-highlights"], [479, "summary-release-highlights"], [481, "summary-release-highlights"], [482, "summary-release-highlights"]], "Summary Information Objects": [[281, "summary-information-objects"]], "Summary of invocation logic": [[93, "summary-of-invocation-logic"]], "Support for Perf Maps": [[51, "support-for-perf-maps"]], "Support functions": [[45, "support-functions"]], "Supported Datatypes": [[167, "supported-datatypes"]], "Supported INI File Structure": [[167, "supported-ini-file-structure"]], "Supported XPath syntax": [[413, "supported-xpath-syntax"]], "Supported __dunder__ names": [[94, "supported-dunder-names"]], "Supported _sunder_ names": [[94, "supported-sunder-names"]], "Supported tar formats": [[358, "supported-tar-formats"]], "Supporting a variable number of context managers": [[169, "supporting-a-variable-number-of-context-managers"]], "Supporting cyclic garbage collection": [[76, "supporting-cyclic-garbage-collection"]], "Supporting older Python versions": [[358, "supporting-older-python-versions"]], "Surprises": [[176, "surprises"]], "Surprising Edge Cases": [[100, "surprising-edge-cases"]], "Synchronization between processes": [[283, "synchronization-between-processes"]], "Synchronization primitives": [[283, "synchronization-primitives"]], "SyntaxErrors": [[472, "syntaxerrors"]], "SysLogHandler": [[269, "sysloghandler"]], "SystemTap Tapsets": [[98, "systemtap-tapsets"]], "TCP Echo Client": [[133, "tcp-echo-client"]], "TCP Echo Server": [[133, "tcp-echo-server"]], "TEST_PREFIX": [[389, "test-prefix"]], "TLS 1.3": [[341, "tls-1-3"]], "TLS \u5347\u7d1a": [[126, "tls-upgrade"]], "Tab Identifiers": [[376, "tab-identifiers"]], "Tab Options": [[376, "tab-options"]], "Tab \u9375\u81ea\u52d5\u5b8c\u6210 (Tab Completion) \u548c\u6b77\u53f2\u8a18\u9304\u7de8\u8f2f (History Editing)": [[447, "tab-completion-and-history-editing"]], "Tabular ListBox": [[375, "tabular-listbox"]], "Tag Options": [[376, "tag-options"]], "TarFile \u7269\u4ef6": [[358, "tarfile-objects"]], "TarInfo \u7269\u4ef6": [[358, "tarinfo-objects"]], "Task Cancellation": [[139, "task-cancellation"]], "Task Groups": [[139, "task-groups"]], "Task Object": [[139, "task-object"]], "Task lifetime support": [[128, "task-lifetime-support"]], "Technical Tutorial": [[93, "technical-tutorial"]], "Tell Turtle's state": [[384, "tell-turtle-s-state"]], "Telnet Objects": [[359, "telnet-objects"]], "Telnet \u7bc4\u4f8b": [[359, "telnet-example"]], "Template Objects": [[301, "template-objects"]], "Temporarily Suppressing Warnings": [[400, "temporarily-suppressing-warnings"]], "Terminology": [[292, "terminology"]], "Test Discovery\uff08\u6e2c\u8a66\u63a2\u7d22\uff09": [[388, "test-discovery"]], "Test cases": [[388, "test-cases"]], "Testing Warnings": [[400, "testing-warnings"]], "Testing for SSL support": [[341, "testing-for-ssl-support"]], "Testing your CGI script": [[151, "testing-your-cgi-script"]], "Tests": [[483, "tests"], [483, "id7"], [483, "id15"], [483, "id24"], [483, "id39"], [483, "id45"], [483, "id55"], [483, "id65"], [483, "id71"], [483, "id87"], [483, "id97"], [483, "id106"], [483, "id116"], [483, "id122"], [483, "id132"], [483, "id142"], [483, "id151"], [483, "id163"], [483, "id172"], [483, "id181"], [483, "id189"], [483, "id198"], [483, "id206"], [483, "id214"], [483, "id224"], [483, "id235"], [483, "id245"], [483, "id254"], [483, "id264"], [483, "id273"], [483, "id282"], [483, "id293"], [483, "id303"], [483, "id313"], [483, "id323"], [483, "id334"], [483, "id345"], [483, "id360"], [483, "id370"], [483, "id381"], [483, "id392"], [483, "id403"], [483, "id412"], [483, "id419"], [483, "id437"], [483, "id444"], [483, "id454"], [483, "id465"], [483, "id474"], [483, "id482"], [483, "id489"], [483, "id506"], [483, "id515"], [483, "id522"], [483, "id528"], [483, "id538"], [483, "id551"], [483, "id565"], [483, "id575"], [483, "id589"], [483, "id595"], [483, "id601"], [483, "id606"], [483, "id613"], [483, "id624"], [483, "id630"], [483, "id640"], [483, "id653"], [483, "id663"], [483, "id668"], [483, "id675"], [483, "id685"], [483, "id700"], [483, "id706"], [483, "id714"], [483, "id720"], [483, "id726"], [483, "id739"]], "Text Encodings": [[158, "text-encodings"]], "Text Munging": [[319, "text-munging"]], "Text Sequence Type --- str": [[344, "text-sequence-type-str"]], "Text Transforms": [[158, "text-transforms"]], "Text Vs. Data Instead Of Unicode Vs. 8-bit": [[470, "text-vs-data-instead-of-unicode-vs-8-bit"]], "Text and CDATASection Objects": [[410, "text-and-cdatasection-objects"]], "Text colors": [[247, "text-colors"]], "Textbox objects": [[177, "textbox-objects"]], "The Attributes Interface": [[416, "the-attributes-interface"]], "The AttributesNS Interface": [[416, "the-attributesns-interface"]], "The Backslash Plague": [[106, "the-backslash-plague"]], "The Basics": [[76, "the-basics"]], "The C3 Method Resolution Order": [[103, "the-c3-method-resolution-order"]], "The Catalog constructor": [[230, "the-catalog-constructor"]], "The Ellipsis Object": [[344, "the-ellipsis-object"]], "The GNUTranslations class": [[230, "the-gnutranslations-class"]], "The Microsoft Store package": [[461, "the-microsoft-store-package"]], "The Module's Method Table and Initialization Function": [[73, "the-module-s-method-table-and-initialization-function"]], "The Namespace object": [[120, "the-namespace-object"]], "The NotImplemented Object": [[344, "the-notimplemented-object"]], "The Null Object": [[344, "the-null-object"]], "The NullTranslations class": [[230, "the-nulltranslations-class"]], "The Packer": [[369, "the-packer"]], "The Path Based Finder": [[432, "the-path-based-finder"]], "The Process class": [[283, "the-process-class"]], "The Python 2.3 Method Resolution Order": [[103, "the-python-2-3-method-resolution-order"]], "The Python Zip Application Archive Format": [[421, "the-python-zip-application-archive-format"]], "The STOP_ITERATION event": [[353, "the-stop-iteration-event"]], "The Stats Class": [[308, "the-stats-class"]], "The String Type": [[109, "the-string-type"]], "The Very High Level Layer": [[66, "the-very-high-level-layer"]], "The Warnings Filter": [[400, "the-warnings-filter"]], "The Window Manager": [[369, "the-window-manager"]], "The ZoneInfo class": [[425, "the-zoneinfo-class"]], "The add_argument() method": [[120, "the-add-argument-method"]], "The assert statement": [[436, "the-assert-statement"]], "The ast module": [[468, "the-ast-module"]], "The async for statement": [[427, "the-async-for-statement"]], "The async with statement": [[427, "the-async-with-statement"]], "The beginning": [[103, "the-beginning"]], "The break statement": [[436, "the-break-statement"]], "The contextlib module": [[467, "the-contextlib-module"], [468, "the-contextlib-module"]], "The continue statement": [[436, "the-continue-statement"]], "The del statement": [[436, "the-del-statement"]], "The dircmp class": [[216, "the-dircmp-class"]], "The embeddable package": [[461, "the-embeddable-package"]], "The end": [[103, "the-end"]], "The for statement": [[427, "the-for-statement"]], "The fractions Module": [[468, "the-fractions-module"]], "The full installer": [[461, "the-full-installer"]], "The functools module": [[95, "the-functools-module"]], "The future_builtins module": [[468, "the-future-builtins-module"]], "The global statement": [[436, "the-global-statement"]], "The if statement": [[427, "the-if-statement"]], "The import statement": [[436, "the-import-statement"]], "The index Parameter": [[369, "the-index-parameter"]], "The initialization of the sys.path module search path": [[354, "the-initialization-of-the-sys-path-module-search-path"]], "The interpreter stack": [[255, "the-interpreter-stack"]], "The itertools module": [[95, "the-itertools-module"]], "The json module: JavaScript Object Notation": [[468, "the-json-module-javascript-object-notation"]], "The match statement": [[427, "the-match-statement"]], "The meta path": [[432, "the-meta-path"]], "The module cache": [[432, "the-module-cache"]], "The multiprocessing.dummy module": [[283, "module-multiprocessing.dummy"]], "The multiprocessing.sharedctypes module": [[283, "module-multiprocessing.sharedctypes"]], "The nonlocal statement": [[436, "the-nonlocal-statement"]], "The operator module": [[95, "the-operator-module"]], "The optparse Module": [[465, "the-optparse-module"]], "The parse_args() method": [[120, "the-parse-args-method"]], "The pass statement": [[436, "the-pass-statement"]], "The plistlib module: A Property-List Parser": [[468, "the-plistlib-module-a-property-list-parser"]], "The power operator": [[430, "the-power-operator"]], "The purpose of __class_getitem__": [[428, "the-purpose-of-class-getitem"]], "The pymalloc allocator": [[42, "the-pymalloc-allocator"]], "The raise statement": [[436, "the-raise-statement"]], "The return statement": [[436, "the-return-statement"]], "The spawn and forkserver start methods": [[283, "the-spawn-and-forkserver-start-methods"]], "The store action": [[292, "the-store-action"]], "The try statement": [[427, "the-try-statement"]], "The turtle's position": [[384, "the-turtle-s-position"]], "The type statement": [[436, "the-type-statement"]], "The while statement": [[427, "the-while-statement"]], "The with statement": [[427, "the-with-statement"]], "The yield statement": [[436, "the-yield-statement"]], "Thin Ice": [[73, "thin-ice"]], "Third-party guides": [[105, "third-party-guides"]], "Thread Local Storage (TLS) API": [[33, "thread-local-storage-tls-api"]], "Thread Local Storage Support": [[33, "thread-local-storage-support"]], "Thread Objects": [[365, "thread-objects"]], "Thread Safety": [[267, "thread-safety"]], "Thread Specific Storage (TSS) API": [[33, "thread-specific-storage-tss-api"]], "Thread State and the Global Interpreter Lock": [[33, "thread-state-and-the-global-interpreter-lock"]], "Thread-Local Data": [[365, "thread-local-data"]], "ThreadPoolExecutor": [[166, "threadpoolexecutor"]], "ThreadPoolExecutor \u7bc4\u4f8b": [[166, "threadpoolexecutor-example"]], "Threading model": [[369, "threading-model"]], "TimePeriod": [[94, "timeperiod"]], "TimedRotatingFileHandler": [[269, "timedrotatingfilehandler"]], "Timeouts": [[139, "timeouts"]], "Timeouts and the accept method": [[337, "timeouts-and-the-accept-method"]], "Timeouts and the connect method": [[337, "timeouts-and-the-connect-method"]], "Timer Objects": [[365, "timer-objects"]], "Timezone Constants": [[366, "timezone-constants"]], "Tips for Writing Unicode-aware Programs": [[109, "tips-for-writing-unicode-aware-programs"]], "Tix Widgets": [[375, "tix-widgets"]], "Tix \u6307\u4ee4": [[375, "tix-commands"]], "Tk Option Data Types": [[369, "tk-option-data-types"]], "Tkinter Life Preserver": [[369, "tkinter-life-preserver"]], "Tkinter Modules": [[369, "tkinter-modules"]], "Tkinter \u5c0d\u8a71\u6846": [[189, "tkinter-dialogs"]], "Tkinter \u7684\u554f\u7b54": [[81, "tkinter-questions"]], "Tokenizing Input": [[378, "tokenizing-input"]], "Tool identifiers": [[353, "tool-identifiers"]], "Tools/Demos": [[483, "tools-demos"], [483, "id20"], [483, "id35"], [483, "id49"], [483, "id59"], [483, "id67"], [483, "id92"], [483, "id100"], [483, "id126"], [483, "id136"], [483, "id156"], [483, "id167"], [483, "id176"], [483, "id229"], [483, "id276"], [483, "id287"], [483, "id317"], [483, "id328"], [483, "id339"], [483, "id375"], [483, "id386"], [483, "id397"], [483, "id407"], [483, "id424"], [483, "id449"], [483, "id459"], [483, "id470"], [483, "id484"], [483, "id494"], [483, "id510"], [483, "id520"], [483, "id533"], [483, "id543"], [483, "id555"], [483, "id564"], [483, "id578"], [483, "id585"], [483, "id608"], [483, "id622"], [483, "id634"], [483, "id643"], [483, "id664"], [483, "id678"], [483, "id688"], [483, "id716"], [483, "id721"], [483, "id727"], [483, "id740"]], "Top-level Non-Object, Non-Array Values": [[262, "top-level-non-object-non-array-values"]], "Trace": [[382, "trace"]], "Traceback": [[382, "traceback"]], "Traceback Examples": [[381, "traceback-examples"]], "Traceback objects": [[428, "traceback-objects"]], "TracebackException \u7269\u4ef6": [[381, "tracebackexception-objects"]], "Transaction control": [[340, "transaction-control"]], "Transaction control via the autocommit attribute": [[340, "transaction-control-via-the-autocommit-attribute"]], "Transaction control via the isolation_level attribute": [[340, "transaction-control-via-the-isolation-level-attribute"]], "Translation of docstrings into different languages": [[384, "translation-of-docstrings-into-different-languages"]], "Transports": [[133, "transports"]], "Transports Hierarchy": [[133, "transports-hierarchy"]], "Tree mode": [[235, "tree-mode"]], "TreeBuilder \u7269\u4ef6": [[413, "treebuilder-objects"]], "Treeview": [[376, "treeview"]], "Trigonometric functions": [[275, "trigonometric-functions"]], "Ttk Styling": [[376, "ttk-styling"]], "Ttk Widgets": [[376, "ttk-widgets"]], "Tuples": [[344, "tuples"]], "Tuples \u548c\u5e8f\u5217 (Sequences)": [[442, "tuples-and-sequences"]], "Tuple\uff08\u5143\u7d44\uff09\u7269\u4ef6": [[60, "tuple-objects"]], "Turning events on and off": [[353, "turning-events-on-and-off"]], "Turtle graphics reference": [[384, "turtle-graphics-reference"]], "Turtle methods": [[384, "turtle-methods"]], "Turtle motion": [[384, "turtle-motion"]], "Turtle star": [[384, null]], "Turtle state": [[384, "turtle-state"]], "Tutorial": [[292, "tutorial"], [340, "tutorial"]], "Two new environment variables for debug mode": [[469, "two-new-environment-variables-for-debug-mode"]], "Type Annotation Types --- Generic Alias, Union": [[344, "type-annotation-types-generic-alias-union"]], "Type Hinting Generics in Standard Collections": [[482, "type-hinting-generics-in-standard-collections"]], "Type Mapping": [[410, "type-mapping"]], "Type Objects": [[344, "type-objects"]], "Type conversions": [[176, "type-conversions"]], "Type parameter lists": [[427, "type-parameter-lists"]], "Type-specific Attribute Management": [[75, "type-specific-attribute-management"]], "Types and members": [[255, "types-and-members"]], "UDP Echo Client": [[133, "udp-echo-client"]], "UDP Echo Server": [[133, "udp-echo-server"]], "URL Parsing": [[394, "url-parsing"]], "URL Quoting": [[394, "url-quoting"]], "URL parsing security": [[394, "url-parsing-security"]], "URLError": [[110, "urlerror"]], "UTF-16 \u7de8\u89e3\u78bc\u5668": [[64, "utf-16-codecs"]], "UTF-32 \u7de8\u89e3\u78bc\u5668": [[64, "utf-32-codecs"]], "UTF-7 \u7de8\u89e3\u78bc\u5668": [[64, "utf-7-codecs"]], "UTF-8 \u6a21\u5f0f": [[461, "utf-8-mode"]], "UTF-8 \u7de8\u89e3\u78bc\u5668": [[64, "utf-8-codecs"]], "UUencode \u8207 UUdecode \u51fd\u5f0f": [[426, "uuencode-and-uudecode-functions"]], "Unary arithmetic and bitwise operations": [[430, "unary-arithmetic-and-bitwise-operations"]], "Understanding How Tkinter Wraps Tcl/Tk": [[369, "understanding-how-tkinter-wraps-tcl-tk"]], "Understanding option actions": [[292, "understanding-option-actions"]], "Unicode": [[462, "unicode"], [475, "unicode"]], "Unicode Character Properties": [[64, "unicode-character-properties"]], "Unicode Exception Objects": [[23, "unicode-exception-objects"]], "Unicode HOWTO": [[109, "unicode-howto"]], "Unicode Literals in Python Source Code": [[109, "unicode-literals-in-python-source-code"]], "Unicode Properties": [[109, "unicode-properties"]], "Unicode Regular Expressions": [[109, "unicode-regular-expressions"]], "Unicode Type": [[64, "unicode-type"]], "Unicode filenames": [[109, "unicode-filenames"]], "Unicode issues": [[358, "unicode-issues"]], "Unicode \u7269\u4ef6": [[64, "unicode-objects"]], "Unicode \u7269\u4ef6\u8207\u7de8\u89e3\u78bc\u5668": [[64, "unicode-objects-and-codecs"]], "Unicode \u8b8a\u66f4": [[464, "unicode-changes"]], "Unicode-Escape Codecs": [[64, "unicode-escape-codecs"]], "Union Type": [[344, "union-type"]], "Unittest API": [[193, "unittest-api"]], "Unix \u5e73\u53f0": [[303, "unix-platforms"]], "Unix \u7279\u6709\u670d\u52d9": [[391, "unix-specific-services"]], "Unix \u8a0a\u865f": [[126, "unix-signals"]], "UnknownHandler \u7269\u4ef6": [[395, "unknownhandler-objects"]], "Unpack functions": [[25, "unpack-functions"]], "Unpacker Objects": [[408, "unpacker-objects"]], "Unsupported Operating Systems": [[478, "unsupported-operating-systems"]], "Updated module: ElementTree 1.3": [[469, "updated-module-elementtree-1-3"]], "Updated module: unittest": [[469, "updated-module-unittest"]], "Updating Code For New Versions of Dependencies": [[400, "updating-code-for-new-versions-of-dependencies"]], "Upgrading optparse code": [[120, "upgrading-optparse-code"]], "Use String Methods": [[106, "use-string-methods"]], "Use object-oriented turtle graphics": [[384, "use-object-oriented-turtle-graphics"]], "Use of alternative formatting styles": [[102, "use-of-alternative-formatting-styles"]], "Use of contextvars": [[102, "use-of-contextvars"]], "Use the turtle module namespace": [[384, "use-the-turtle-module-namespace"]], "Use turtle graphics in a script": [[384, "use-turtle-graphics-in-a-script"]], "Use with GDB commands": [[96, "use-with-gdb-commands"]], "Useful Handlers": [[101, "useful-handlers"]], "User output in Shell": [[247, "user-output-in-shell"]], "User scheme": [[355, "user-scheme"]], "User-defined objects": [[268, "user-defined-objects"]], "UserDict \u7269\u4ef6": [[160, "userdict-objects"]], "UserList \u7269\u4ef6": [[160, "userlist-objects"]], "UserString \u7269\u4ef6": [[160, "userstring-objects"]], "Uses for metaclasses": [[428, "uses-for-metaclasses"]], "Using DLLs in Practice": [[77, "using-dlls-in-practice"]], "Using Filters to impart contextual information": [[102, "using-filters-to-impart-contextual-information"]], "Using IP Addresses with other modules": [[99, "using-ip-addresses-with-other-modules"]], "Using LogRecord factories": [[102, "using-logrecord-factories"]], "Using LoggerAdapters to impart contextual information": [[102, "using-loggeradapters-to-impart-contextual-information"]], "Using Regular Expressions": [[106, "using-regular-expressions"]], "Using Tix": [[375, "using-tix"]], "Using ZoneInfo": [[425, "using-zoneinfo"]], "Using a context manager as a function decorator": [[169, "using-a-context-manager-as-a-function-decorator"]], "Using a context manager for selective logging": [[102, "using-a-context-manager-for-selective-logging"]], "Using a custom __new__()": [[94, "using-a-custom-new"]], "Using a custom timer": [[308, "using-a-custom-timer"]], "Using a descriptive string": [[94, "using-a-descriptive-string"]], "Using a pool of workers": [[283, "using-a-pool-of-workers"]], "Using a remote manager": [[283, "using-a-remote-manager"]], "Using a rotator and namer to customize log rotation processing": [[102, "using-a-rotator-and-namer-to-customize-log-rotation-processing"]], "Using arbitrary objects as messages": [[101, "using-arbitrary-objects-as-messages"]], "Using auto": [[94, "using-auto"]], "Using automatic values": [[94, "using-automatic-values"]], "Using concurrent.futures.ProcessPoolExecutor": [[102, "using-concurrent-futures-processpoolexecutor"]], "Using custom message objects": [[102, "using-custom-message-objects"]], "Using different digest sizes": [[235, "using-different-digest-sizes"]], "Using events": [[384, "using-events"]], "Using file rotation": [[102, "using-file-rotation"]], "Using locks, conditions, and semaphores in the with statement": [[365, "using-locks-conditions-and-semaphores-in-the-with-statement"]], "Using loggers as attributes in a class or passing them as parameters": [[102, "using-loggers-as-attributes-in-a-class-or-passing-them-as-parameters"]], "Using logging in multiple modules": [[102, "using-logging-in-multiple-modules"]], "Using object": [[94, "using-object"]], "Using objects other than dicts to pass contextual information": [[102, "using-objects-other-than-dicts-to-pass-contextual-information"]], "Using particular formatting styles throughout your application": [[102, "using-particular-formatting-styles-throughout-your-application"]], "Using re.VERBOSE": [[106, "using-re-verbose"]], "Using screen events": [[384, "using-screen-events"]], "Using the Debug build and Development mode": [[96, "using-the-debug-build-and-development-mode"]], "Using the cgi module": [[151, "using-the-cgi-module"]], "Using the python-gdb extension": [[96, "using-the-python-gdb-extension"]], "Using the subprocess Module": [[348, "using-the-subprocess-module"]], "Utilities": [[169, "utilities"]], "Utility functions": [[176, "utility-functions"], [288, "utility-functions"]], "Validator class": [[93, "validator-class"]], "Value Patterns": [[427, "value-patterns"]], "Value Types": [[405, "value-types"]], "Value comparisons": [[430, "value-comparisons"]], "Variable-sized data types": [[176, "variable-sized-data-types"]], "Vectorcall \u5354\u5b9a": [[10, "the-vectorcall-protocol"]], "Vectorcall \u652f\u63f4 API": [[10, "vectorcall-support-api"]], "Very High Level Embedding": [[72, "very-high-level-embedding"]], "View Objects": [[281, "view-objects"]], "Views And Iterators Instead Of Lists": [[470, "views-and-iterators-instead-of-lists"]], "Virtual environments": [[354, "virtual-environments"]], "Virtual events": [[376, "virtual-events"], [376, "id2"]], "Visibility": [[384, "visibility"]], "W3C C14N \u6e2c\u8a66\u5957\u4ef6": [[426, "w3c-c14n-test-suite"]], "Waiting Primitives": [[139, "waiting-primitives"]], "Warning Categories": [[400, "warning-categories"]], "Warnings": [[193, "warnings"]], "WatchedFileHandler": [[269, "watchedfilehandler"]], "Wave_read \u7269\u4ef6": [[401, "wave-read-objects"]], "Wave_write \u7269\u4ef6": [[401, "wave-write-objects"]], "Weak Reference Support": [[75, "weak-reference-support"]], "WebAssembly \u5e73\u53f0": [[257, "webassembly-platforms"]], "WebAssembly \u9078\u9805": [[456, "webassembly-options"]], "What About Exceptions?": [[193, "what-about-exceptions"]], "What About Python 1.6?": [[462, "what-about-python-1-6"]], "What Is Deterministic Profiling?": [[308, "what-is-deterministic-profiling"]], "What are options for?": [[292, "what-are-options-for"]], "What are positional arguments for?": [[292, "what-are-positional-arguments-for"]], "What are the \"best practices\" for using import in a module?": [[85, "what-are-the-best-practices-for-using-import-in-a-module"]], "What can be pickled and unpickled?": [[299, "what-can-be-pickled-and-unpickled"]], "What does the slash(/) in the parameter list of a function mean?": [[85, "what-does-the-slash-in-the-parameter-list-of-a-function-mean"]], "What happens if no configuration is provided": [[101, "what-happens-if-no-configuration-is-provided"]], "What is curses?": [[92, "what-is-curses"]], "What is delegation?": [[85, "what-is-delegation"]], "What is self?": [[85, "what-is-self"]], "What is the most efficient way to concatenate many strings together?": [[85, "what-is-the-most-efficient-way-to-concatenate-many-strings-together"]], "What kinds of global value mutation are thread-safe?": [[84, "what-kinds-of-global-value-mutation-are-thread-safe"]], "What's a negative index?": [[85, "what-s-a-negative-index"]], "What's the Execution Context?": [[193, "what-s-the-execution-context"]], "What's up with the comma operator's precedence?": [[85, "what-s-up-with-the-comma-operator-s-precedence"]], "When to use __new__() vs. __init__()": [[94, "when-to-use-new-vs-init"]], "Which Docstrings Are Examined?": [[193, "which-docstrings-are-examined"]], "Whitespace between tokens": [[435, "whitespace-between-tokens"]], "Who should read this": [[100, "who-should-read-this"]], "Why are default values shared between objects?": [[85, "why-are-default-values-shared-between-objects"]], "Why do lambdas defined in a loop with different values all return the same result?": [[85, "why-do-lambdas-defined-in-a-loop-with-different-values-all-return-the-same-result"]], "Why does a_tuple[i] += ['item'] raise an exception when the addition works?": [[85, "why-does-a-tuple-i-item-raise-an-exception-when-the-addition-works"]], "Why does the result of id() appear to be not unique?": [[85, "why-does-the-result-of-id-appear-to-be-not-unique"]], "Why doesn't closing sys.stdout (stdin, stderr) really close it?": [[84, "why-doesn-t-closing-sys-stdout-stdin-stderr-really-close-it"]], "Why don't my signal handlers work?": [[84, "why-don-t-my-signal-handlers-work"]], "Why is Decimal needed?": [[466, "why-is-decimal-needed"]], "Widget": [[376, "widget"]], "Widget States": [[376, "widget-states"]], "Wildcard Patterns": [[427, "wildcard-patterns"]], "Window Objects": [[177, "window-objects"]], "Window control": [[384, "window-control"]], "Window menu (Shell and Editor)": [[247, "window-menu-shell-and-editor"]], "Windows": [[131, "windows"], [483, "windows"], [483, "id8"], [483, "id17"], [483, "id26"], [483, "id33"], [483, "id47"], [483, "id57"], [483, "id72"], [483, "id79"], [483, "id89"], [483, "id99"], [483, "id108"], [483, "id118"], [483, "id124"], [483, "id134"], [483, "id144"], [483, "id153"], [483, "id165"], [483, "id174"], [483, "id183"], [483, "id191"], [483, "id200"], [483, "id208"], [483, "id216"], [483, "id226"], [483, "id237"], [483, "id247"], [483, "id256"], [483, "id266"], [483, "id284"], [483, "id295"], [483, "id305"], [483, "id315"], [483, "id325"], [483, "id336"], [483, "id347"], [483, "id362"], [483, "id372"], [483, "id383"], [483, "id394"], [483, "id405"], [483, "id413"], [483, "id421"], [483, "id432"], [483, "id446"], [483, "id456"], [483, "id467"], [483, "id476"], [483, "id483"], [483, "id491"], [483, "id508"], [483, "id517"], [483, "id530"], [483, "id540"], [483, "id553"], [483, "id566"], [483, "id572"], [483, "id579"], [483, "id593"], [483, "id598"], [483, "id609"], [483, "id614"], [483, "id631"], [483, "id642"], [483, "id655"], [483, "id665"], [483, "id677"], [483, "id680"], [483, "id687"], [483, "id732"], [483, "id741"]], "Windows Constants": [[348, "windows-constants"]], "Windows Popen Helpers": [[348, "windows-popen-helpers"]], "Windows and Pads": [[92, "windows-and-pads"]], "Windows py.exe \u555f\u52d5\u7a0b\u5f0f (launcher) \u7684\u6539\u9032": [[473, "windows-py-exe-launcher-improvements"]], "Windows \u5e73\u53f0": [[303, "windows-platform"]], "Windows \u7684\u5b50\u884c\u7a0b\u652f\u63f4": [[131, "subprocess-support-on-windows"]], "Windows-only Changes": [[480, "windows-only-changes"], [480, "id12"]], "With Statement Context Managers": [[428, "with-statement-context-managers"]], "Working with threads": [[186, "working-with-threads"]], "Wrapping it Up": [[110, "wrapping-it-up"]], "Write-only Transports": [[133, "write-only-transports"]], "Writing Context Managers": [[467, "writing-context-managers"], [468, "writing-context-managers"]], "Writing Extensions in C++": [[73, "writing-extensions-in-c"]], "Writing a Custom Event Loop": [[128, "writing-a-custom-event-loop"]], "Writing a Tokenizer": [[319, "writing-a-tokenizer"]], "XInclude support": [[413, "xinclude-support"]], "XML tree and elements": [[413, "xml-tree-and-elements"]], "XML \u6a21\u7d44": [[462, "xml-modules"]], "XML \u6f0f\u6d1e": [[409, "xml-vulnerabilities"]], "XML \u8655\u7406\u6a21\u7d44": [[409, "module-xml"]], "XML \u9060\u7aef\u7a0b\u5e8f\u547c\u53eb": [[426, "xml-remote-procedure-calls"]], "XMLParser \u7269\u4ef6": [[314, "xmlparser-objects"], [413, "xmlparser-objects"]], "XMLPullParser \u7269\u4ef6": [[413, "xmlpullparser-objects"]], "XMLReader \u7269\u4ef6": [[416, "xmlreader-objects"]], "XPath \u652f\u63f4": [[413, "xpath-support"]], "Yield expressions": [[430, "yield-expressions"]], "You should check for DeprecationWarning in your code": [[482, "you-should-check-for-deprecationwarning-in-your-code"]], "ZipFile \u7269\u4ef6": [[422, "zipfile-objects"]], "ZipInfo \u7269\u4ef6": [[422, "zipinfo-objects"]], "_Private__names": [[94, "private-names"]], "__annotations__ \u5947\u7570\u4e4b\u8655": [[88, "annotations-quirks"]], "__class_getitem__ versus __getitem__": [[428, "class-getitem-versus-getitem"]], "__future__ --- Future \u9673\u8ff0\u5f0f\u5b9a\u7fa9": [[113, "module-__future__"]], "__import__('x.y.z') \u56de\u50b3 \uff0c\u90a3\u6211\u600e\u9ebc\u5f97\u5230 z\uff1f": [[85, "import-x-y-z-returns-module-x-how-do-i-get-z"]], "__main__ --- \u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883": [[114, "module-__main__"]], "__main__.__spec__": [[432, "main-spec"]], "__name__ == '__main__'": [[114, "name-main"]], "__slots__": [[428, "slots"], [472, "slots"]], "_pth files": [[354, "pth-files"]], "_thread": [[472, "thread"]], "_thread --- \u4f4e\u968e\u57f7\u884c\u7dd2 API": [[115, "module-_thread"]], "abc": [[475, "abc"], [476, "abc"], [477, "abc"]], "abc --- \u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[116, "module-abc"]], "action": [[120, "action"]], "add_help": [[120, "add-help"]], "aifc": [[477, "aifc"], [480, "aifc"]], "aifc --- \u8b80\u5beb AIFF \u8207 AIFC \u6a94\u6848": [[117, "module-aifc"]], "allow_abbrev": [[120, "allow-abbrev"]], "argparse": [[472, "argparse"], [477, "argparse"], [478, "argparse"], [480, "argparse"]], "argparse --- Parser for command-line options, arguments and sub-commands": [[120, "module-argparse"]], "argument_default": [[120, "argument-default"]], "array": [[472, "array"], [474, "array"], [476, "array"], [479, "array"]], "array --- \u9ad8\u6548\u7387\u7684\u6578\u503c\u578b\u9663\u5217": [[121, "module-array"]], "ast": [[475, "ast"], [479, "ast"], [481, "ast"], [482, "ast"]], "ast --- \u62bd\u8c61\u8a9e\u6cd5\u6a39 (Abstract Syntax Trees)": [[122, "module-ast"]], "ast \u8f14\u52a9\u7a0b\u5f0f": [[122, "ast-helpers"]], "async \u548c await": [[122, "async-and-await"]], "asynchat": [[479, "asynchat"]], "asynchat \u548c asyncore": [[474, "asynchat-and-asyncore"]], "asynchat, asyncore, smtpd": [[472, "asynchat-asyncore-smtpd"]], "asyncio": [[426, "asyncio"], [472, "asyncio"], [473, "asyncio"], [474, "asyncio"], [477, "asyncio"], [478, "asyncio"], [479, "asyncio"], [480, "asyncio"], [480, "whatsnew37-asyncio-deprecated"], [481, "asyncio"], [482, "asyncio"]], "asyncio --- \u975e\u540c\u6b65 I/O": [[123, "module-asyncio"]], "asyncio support": [[170, "asyncio-support"]], "asyncore": [[475, "asyncore"], [479, "asyncore"]], "atexit --- \u9000\u51fa\u8655\u7406\u51fd\u5f0f": [[140, "module-atexit"]], "atexit \u7bc4\u4f8b": [[140, "atexit-example"]], "audioop": [[477, "audioop"]], "audioop --- \u64cd\u4f5c\u539f\u59cb\u8072\u97f3\u6a94\u6848": [[141, "module-audioop"]], "base64": [[472, "base64"], [476, "base64"], [477, "base64"]], "base64 --- Base16\u3001Base32\u3001Base64\u3001Base85 \u8cc7\u6599\u7de8\u78bc": [[143, "module-base64"]], "bdb": [[472, "bdb"]], "bdb --- \u5075\u932f\u5668\u6846\u67b6": [[144, "module-bdb"]], "binascii": [[476, "binascii"], [479, "binascii"], [480, "binascii"]], "binascii --- \u5728\u4e8c\u9032\u4f4d\u5236\u548c ASCII \u4e4b\u9593\u8f49\u63db": [[146, "module-binascii"]], "bisect": [[472, "bisect"]], "bisect --- \u9663\u5217\u4e8c\u5206\u6f14\u7b97\u6cd5 (Array bisection algorithm)": [[147, "module-bisect"]], "builtins --- \u5167\u5efa\u7269\u4ef6": [[148, "module-builtins"]], "builtins\uff08\u5167\u5efa\uff09": [[481, "builtins"]], "bz2": [[476, "bz2"], [478, "bz2"]], "bz2 --- bzip2 \u58d3\u7e2e\u7684\u652f\u63f4": [[149, "module-bz2"]], "cProfile": [[480, "cprofile"], [481, "cprofile"]], "calendar": [[474, "calendar"], [480, "calendar"]], "calendar --- \u65e5\u66c6\u76f8\u95dc\u51fd\u5f0f": [[150, "module-calendar"]], "call": [[389, "call"]], "certificates": [[475, "certificates"]], "cfuhash": [[426, "cfuhash"]], "cgi": [[478, "cgi"]], "cgi --- \u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\u652f\u63f4": [[151, "module-cgi"]], "cgitb --- CGI \u8173\u672c\u7684\u56de\u6eaf (traceback) \u7ba1\u7406\u7a0b\u5f0f": [[152, "module-cgitb"]], "choices": [[120, "choices"]], "chunk --- \u8b80\u53d6 IFF \u5206\u584a\u8cc7\u6599": [[153, "module-chunk"]], "cmath": [[478, "cmath"], [479, "cmath"]], "cmath --- \u8907\u6578\u7684\u6578\u5b78\u51fd\u5f0f": [[154, "module-cmath"]], "cmd --- \u4ee5\u5217\u70ba\u5c0e\u5411\u7684\u6307\u4ee4\u76f4\u8b6f\u5668\u652f\u63f4": [[155, "module-cmd"]], "code": [[478, "code"]], "code --- \u76f4\u8b6f\u5668\u57fa\u5e95\u985e\u5225": [[157, "module-code"]], "codecs": [[472, "codecs"], [476, "codecs"]], "codecs --- \u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u57fa\u5e95\u985e\u5225": [[158, "module-codecs"]], "codeop --- \u7de8\u8b6f Python \u7a0b\u5f0f\u78bc": [[159, "module-codeop"]], "collections": [[475, "collections"], [476, "collections"], [477, "collections"], [478, "collections"], [479, "collections"], [480, "collections"], [480, "id3"], [481, "collections"]], "collections --- \u5bb9\u5668\u8cc7\u6599\u578b\u614b": [[160, "module-collections"]], "collections \u4e2d\u578b\u5225\u7684\u5225\u540d": [[386, "aliases-to-types-in-collections"]], "collections.abc": [[472, "collections-abc"], [478, "collections-abc"], [482, "collections-abc"]], "collections.abc --- \u5bb9\u5668\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[161, "module-collections.abc"]], "collections.abc \u4e2d\u5bb9\u5668 ABC \u7684\u5225\u540d": [[386, "aliases-to-container-abcs-in-collections-abc"]], "colorsys": [[477, "colorsys"]], "colorsys --- \u984f\u8272\u7cfb\u7d71\u9593\u7684\u8f49\u63db": [[162, "module-colorsys"]], "compileall": [[478, "compileall"], [480, "compileall"], [482, "compileall"]], "compileall --- \u4f4d\u5143\u7d44\u7de8\u8b6f Python \u51fd\u5f0f\u5eab": [[163, "module-compileall"]], "compound requests": [[7, "compound-requests"]], "concurrent \u5957\u4ef6": [[165, "the-concurrent-package"]], "concurrent.futures": [[478, "concurrent-futures"], [479, "concurrent-futures"], [480, "concurrent-futures"], [482, "concurrent-futures"]], "concurrent.futures --- \u555f\u52d5\u5e73\u884c\u4efb\u52d9": [[166, "module-concurrent.futures"]], "configparser": [[474, "configparser"], [475, "configparser"], [478, "configparser"]], "configparser --- \u8a2d\u5b9a\u6a94\u5256\u6790\u5668": [[167, "module-configparser"]], "conflict_handler": [[120, "conflict-handler"]], "const": [[120, "const"]], "contextlib": [[472, "contextlib"], [473, "contextlib"], [475, "contextlib"], [476, "contextlib"], [477, "contextlib"], [478, "contextlib"], [479, "contextlib"], [480, "contextlib"]], "contextlib --- Utilities for with-statement contexts": [[169, "module-contextlib"]], "contextlib ABC \u7684\u5225\u540d": [[386, "aliases-to-contextlib-abcs"]], "contextvars": [[480, "contextvars"]], "contextvars --- \u60c5\u5883\u8b8a\u6578": [[170, "module-contextvars"]], "contiguity requests": [[7, "contiguity-requests"]], "cookielib": [[466, "cookielib"]], "copy --- \u6dfa\u5c64 (shallow) \u548c\u6df1\u5c64 (deep) \u8907\u88fd\u64cd\u4f5c": [[171, "module-copy"]], "copyreg --- \u8a3b\u518a pickle \u652f\u63f4\u51fd\u5f0f": [[172, "module-copyreg"]], "copytree example": [[332, "copytree-example"]], "create_autospec": [[389, "create-autospec"]], "crypt": [[476, "crypt"], [480, "crypt"]], "crypt --- \u7528\u65bc\u6aa2\u67e5 Unix \u5bc6\u78bc\u7684\u51fd\u5f0f": [[173, "module-crypt"]], "csv": [[474, "csv"], [475, "csv"], [478, "csv"], [481, "csv"]], "csv --- CSV \u6a94\u6848\u8b80\u53d6\u53ca\u5beb\u5165": [[175, "module-csv"]], "ctypes": [[475, "ctypes"], [481, "ctypes"]], "ctypes --- \u7528\u65bc Python \u7684\u5916\u90e8\u51fd\u5f0f\u5eab": [[176, "module-ctypes"]], "ctypes Enhancements": [[468, "ctypes-enhancements"]], "ctypes reference": [[176, "ctypes-reference"]], "ctypes tutorial": [[176, "ctypes-tutorial"]], "ctypes \u5957\u4ef6": [[467, "the-ctypes-package"]], "curses": [[472, "curses"], [476, "curses"], [478, "curses"], [481, "curses"], [482, "curses"]], "curses --- \u5b57\u5143\u5132\u5b58\u683c\u986f\u793a\u7684\u7d42\u7aef\u8655\u7406": [[177, "module-curses"]], "curses.ascii --- ASCII \u5b57\u5143\u7684\u5de5\u5177\u7a0b\u5f0f": [[178, "module-curses.ascii"]], "curses.panel --- curses \u7684\u9762\u677f\u5806\u758a\u64f4\u5145": [[179, "module-curses.panel"]], "curses.textpad --- Text input widget for curses programs": [[177, "module-curses.textpad"]], "cx_Freeze": [[461, "cx-freeze"]], "dataclasses": [[472, "dataclasses"], [473, "dataclasses"], [480, "dataclasses"]], "dataclasses --- Data Classes": [[181, "module-dataclasses"]], "date \u7269\u4ef6": [[183, "date-objects"]], "datetime": [[473, "datetime"], [476, "datetime"], [479, "datetime"], [480, "datetime"], [481, "datetime"], [482, "datetime"]], "datetime --- \u65e5\u671f\u8207\u6642\u9593\u7684\u57fa\u672c\u578b\u5225": [[183, "module-datetime"]], "datetime \u548c time": [[475, "datetime-and-time"]], "datetime \u7269\u4ef6": [[183, "datetime-objects"]], "dbm": [[475, "dbm"], [477, "dbm"], [478, "dbm"], [479, "dbm"], [480, "dbm"], [480, "id4"]], "dbm --- Unix \"databases\" \u7684\u4ecb\u9762": [[184, "module-dbm"]], "dbm.dumb --- \u53ef\u651c\u5f0f DBM \u5be6\u4f5c": [[184, "module-dbm.dumb"]], "dbm.gnu --- GNU \u8cc7\u6599\u5eab\u7ba1\u7406\u5668": [[184, "module-dbm.gnu"]], "dbm.ndbm --- \u65b0\u8cc7\u6599\u5eab\u7ba1\u7406\u5668": [[184, "module-dbm.ndbm"]], "decimal": [[476, "decimal"], [479, "decimal"], [480, "decimal"]], "decimal --- \u5341\u9032\u4f4d\u56fa\u5b9a\u9ede\u548c\u6d6e\u9ede\u904b\u7b97": [[186, "module-decimal"]], "decimal and fractions": [[475, "decimal-and-fractions"]], "default": [[120, "default"]], "defaultdict \u7269\u4ef6": [[160, "defaultdict-objects"]], "defaultdict \u7bc4\u4f8b": [[160, "defaultdict-examples"]], "defusedxml \u5957\u4ef6": [[409, "the-defusedxml-package"]], "del \u9673\u8ff0\u5f0f": [[442, "the-del-statement"]], "deque \u7269\u4ef6": [[160, "deque-objects"]], "deque \u7528\u6cd5": [[160, "deque-recipes"]], "dest": [[120, "dest"]], "difflib": [[478, "difflib"]], "difflib --- \u8a08\u7b97\u5dee\u7570\u7684\u8f14\u52a9\u5de5\u5177": [[190, "module-difflib"]], "dir() \u51fd\u5f0f": [[450, "the-dir-function"]], "dis": [[474, "dis"], [475, "dis"], [477, "dis"], [480, "dis"]], "dis --- Python bytecode \u7684\u53cd\u7d44\u8b6f\u5668": [[191, "module-dis"]], "distutils": [[472, "distutils"], [474, "distutils"], [478, "distutils"], [479, "distutils"], [479, "id2"], [480, "distutils"], [482, "distutils"]], "doctest": [[466, "doctest"], [472, "doctest"], [477, "doctest"], [478, "doctest"]], "doctest --- \u6e2c\u8a66\u4e92\u52d5\u5f0f Python \u7bc4\u4f8b": [[193, "module-doctest"]], "elementtree": [[475, "elementtree"]], "else clause": [[427, "else-clause"]], "email": [[475, "email"], [476, "email"], [477, "email"], [478, "email"], [479, "email"]], "email --- \u90f5\u4ef6\u548c MIME \u8655\u7406\u5957\u4ef6": [[194, "module-email"]], "email.charset\uff1a\u8868\u793a\u5b57\u5143\u96c6\u5408": [[195, "module-email.charset"]], "email.contentmanager\uff1a\u7ba1\u7406 MIME \u5167\u5bb9": [[197, "module-email.contentmanager"]], "email.encoders\uff1a\u7de8\u78bc\u5668": [[198, "module-email.encoders"]], "email.errors\uff1a\u4f8b\u5916\u548c\u7f3a\u9677\u985e\u5225": [[199, "module-email.errors"]], "email.generator\uff1a\u7522\u751f MIME \u6587\u4ef6": [[201, "module-email.generator"]], "email.headerregistry\uff1a\u81ea\u8a02\u6a19\u982d\u7269\u4ef6": [[203, "module-email.headerregistry"]], "email.header\uff1a\u570b\u969b\u5316\u6a19\u982d": [[202, "module-email.header"]], "email.iterators\uff1a\u758a\u4ee3\u5668": [[204, "module-email.iterators"]], "email.message.Message: Representing an email message using the compat32 API": [[196, "email-message-message-representing-an-email-message-using-the-compat32-api"]], "email.message\uff1a\u8868\u793a\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f": [[205, "module-email.message"]], "email.mime\uff1a\u5f9e\u982d\u958b\u59cb\u5efa\u7acb\u96fb\u5b50\u90f5\u4ef6\u548c MIME \u7269\u4ef6": [[206, "module-email.mime"]], "email.parser\uff1a\u5256\u6790\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f": [[207, "module-email.parser"]], "email.policy: Policy Objects": [[208, "module-email.policy"]], "email.utils\uff1a\u96dc\u9805\u5de5\u5177": [[209, "module-email.utils"]], "email\uff1a\u7bc4\u4f8b": [[200, "email-examples"]], "encodings": [[472, "encodings"], [479, "encodings"]], "encodings.idna --- Internationalized Domain Names in Applications": [[158, "module-encodings.idna"]], "encodings.mbcs --- Windows ANSI codepage": [[158, "module-encodings.mbcs"]], "encodings.utf_8_sig --- UTF-8 codec with BOM signature": [[158, "module-encodings.utf_8_sig"]], "ensurepip": [[474, "ensurepip"], [477, "ensurepip"]], "ensurepip --- pip \u5b89\u88dd\u5668\u7684\u521d\u59cb\u5efa\u7f6e (bootstrapping)": [[210, "module-ensurepip"]], "enum": [[472, "enum"], [473, "enum"], [474, "enum"], [477, "enum"], [478, "enum"], [479, "enum"], [480, "enum"], [480, "id5"]], "enum --- \u5c0d\u5217\u8209\u7684\u652f\u63f4": [[211, "module-enum"]], "epilog": [[120, "epilog"]], "errno --- \u6a19\u6e96 errno \u7cfb\u7d71\u7b26\u865f": [[212, "module-errno"]], "except clause": [[427, "except-clause"]], "except* clause": [[427, "except-star"]], "exit_on_error": [[120, "exit-on-error"]], "expat": [[426, "expat"]], "f-strings support = for self-documenting expressions and debugging": [[481, "f-strings-support-for-self-documenting-expressions-and-debugging"]], "f-string\uff08f \u5b57\u4e32\uff09": [[435, "formatted-string-literals"]], "faulthandler": [[472, "faulthandler"], [476, "faulthandler"], [478, "faulthandler"], [479, "faulthandler"]], "faulthandler --- \u50be\u5370 Python \u56de\u6eaf": [[214, "module-faulthandler"]], "fcntl": [[473, "fcntl"], [482, "fcntl"]], "fcntl --- fcntl \u548c ioctl \u7cfb\u7d71\u547c\u53eb": [[215, "module-fcntl"]], "filecmp": [[477, "filecmp"]], "filecmp --- \u6a94\u6848\u8207\u76ee\u9304\u6bd4\u8f03": [[216, "module-filecmp"]], "fileinput": [[472, "fileinput"], [479, "fileinput"]], "fileinput --- \u9010\u5217\u758a\u4ee3\u591a\u500b\u8f38\u5165\u4e32\u6d41": [[218, "module-fileinput"]], "finally clause": [[427, "finally-clause"]], "fnmatch --- Unix \u6a94\u6848\u540d\u7a31\u6a21\u5f0f\u6bd4\u5c0d": [[220, "module-fnmatch"]], "for \u9673\u8ff0\u5f0f": [[441, "for-statements"]], "formatter_class": [[120, "formatter-class"]], "fractions": [[473, "fractions"], [474, "fractions"]], "fractions --- \u6709\u7406\u6578": [[221, "module-fractions"]], "fromfile_prefix_chars": [[120, "fromfile-prefix-chars"]], "ftp": [[475, "ftp"]], "ftplib": [[474, "ftplib"], [476, "ftplib"], [482, "ftplib"]], "ftplib --- FTP \u5354\u5b9a\u7528\u6236\u7aef": [[223, "module-ftplib"]], "functools": [[473, "functools"], [475, "functools"], [476, "functools"], [477, "functools"], [478, "functools"], [480, "functools"], [481, "functools"]], "functools --- Higher-order functions and operations on callable objects": [[226, "module-functools"]], "gc": [[472, "gc"], [476, "gc"], [477, "gc"], [480, "gc"], [481, "gc"], [482, "gc"]], "gc --- \u5783\u573e\u56de\u6536\u5668\u4ecb\u9762 (Garbage Collector interface)": [[227, "module-gc"]], "getopt --- \u7528\u65bc\u547d\u4ee4\u5217\u9078\u9805\u7684 C \u98a8\u683c\u5256\u6790\u5668": [[228, "module-getopt"]], "getpass --- \u53ef\u651c\u5f0f\u5bc6\u78bc\u8f38\u5165\u5de5\u5177": [[229, "module-getpass"]], "gettext": [[480, "gettext"], [481, "gettext"]], "gettext --- \u591a\u8a9e\u8a00\u570b\u969b\u5316\u670d\u52d9": [[230, "module-gettext"]], "glob": [[472, "glob"], [477, "glob"], [478, "glob"]], "glob --- Unix \u98a8\u683c\u7684\u8def\u5f91\u540d\u7a31\u6a21\u5f0f\u64f4\u5c55": [[231, "module-glob"]], "graphlib": [[482, "graphlib"]], "graphlib \u2014-- \u4f7f\u7528\u985e\u5716 (graph-like) \u7d50\u69cb\u9032\u884c\u64cd\u4f5c\u7684\u529f\u80fd": [[232, "module-graphlib"]], "grp": [[479, "grp"]], "grp --- \u7fa4\u7d44\u8cc7\u6599\u5eab": [[233, "module-grp"]], "gzip": [[474, "gzip"], [478, "gzip"], [481, "gzip"]], "gzip --- gzip \u6a94\u6848\u7684\u652f\u63f4": [[234, "module-gzip"]], "gzip \u548c zipfile": [[475, "gzip-and-zipfile"]], "hashlib": [[472, "hashlib"], [473, "hashlib"], [474, "hashlib"], [475, "hashlib"], [477, "hashlib"], [479, "hashlib"], [482, "hashlib"]], "hashlib --- \u5b89\u5168\u96dc\u6e4a\u8207\u8a0a\u606f\u6458\u8981": [[235, "module-hashlib"]], "hashlib \u5957\u4ef6": [[467, "the-hashlib-package"]], "heapq": [[478, "heapq"]], "heapq --- \u5806\u7a4d\u4f47\u5217 (heap queue) \u6f14\u7b97\u6cd5": [[236, "module-heapq"]], "hmac": [[472, "hmac"], [476, "hmac"], [477, "hmac"], [480, "hmac"]], "hmac --- \u57fa\u65bc\u91d1\u9470\u96dc\u6e4a\u7684\u8a0a\u606f\u9a57\u8b49": [[237, "module-hmac"]], "html": [[475, "html"], [476, "html"], [477, "html"]], "html --- \u8d85\u9023\u7d50\u6a19\u8a18\u8a9e\u8a00 (HTML) \u652f\u63f4": [[238, "module-html"]], "html.entities --- HTML \u4e00\u822c\u5be6\u9ad4\u7684\u5b9a\u7fa9": [[239, "module-html.entities"]], "html.parser --- \u7c21\u55ae\u7684 HTML \u548c XHTML \u5256\u6790\u5668": [[240, "module-html.parser"]], "http": [[476, "http"], [477, "http"], [478, "http"], [482, "http"]], "http --- HTTP \u6a21\u7d44": [[241, "module-http"]], "http.client": [[475, "http-client"], [478, "http-client"], [479, "http-client"], [480, "http-client"]], "http.client --- HTTP \u5354\u5b9a\u7528\u6236\u7aef": [[242, "module-http.client"]], "http.cookiejar --- HTTP \u5ba2\u6236\u7aef\u7684 Cookie \u8655\u7406": [[243, "module-http.cookiejar"]], "http.cookies --- HTTP \u72c0\u614b\u7ba1\u7406": [[244, "module-http.cookies"]], "http.server": [[480, "http-server"]], "http.server \u2014 HTTP \u4f3a\u670d\u5668": [[245, "module-http.server"]], "idlelib": [[247, "module-idlelib"]], "idlelib and IDLE": [[478, "idlelib-and-idle"], [479, "idlelib-and-idle"], [480, "idlelib-and-idle"]], "idlelib \u8207 IDLE": [[477, "idlelib-and-idle"]], "if \u9673\u8ff0\u5f0f": [[441, "if-statements"]], "imaplib": [[475, "imaplib"], [476, "imaplib"], [478, "imaplib"], [482, "imaplib"]], "imaplib --- IMAP4 \u5354\u5b9a\u5ba2\u6236\u7aef": [[248, "module-imaplib"]], "imghdr": [[478, "imghdr"]], "imghdr --- \u63a8\u6e2c\u5716\u7247\u7a2e\u985e": [[249, "module-imghdr"]], "imp": [[474, "imp"]], "import __main__": [[114, "import-main"]], "importlib": [[432, "importlib"], [474, "importlib"], [477, "importlib"], [478, "importlib"], [479, "importlib"], [479, "id3"], [480, "importlib"], [480, "id6"], [482, "importlib"]], "importlib --- import \u7684\u5be6\u4f5c": [[250, "module-importlib"]], "importlib.abc -- Abstract base classes related to import": [[250, "module-importlib.abc"]], "importlib.machinery -- Importers and path hooks": [[250, "module-importlib.machinery"]], "importlib.metadata": [[472, "importlib-metadata"]], "importlib.metadata -- \u5b58\u53d6\u5957\u4ef6\u7684\u5143\u8cc7\u6599": [[251, "module-importlib.metadata"]], "importlib.resources": [[474, "importlib-resources"], [480, "importlib-resources"]], "importlib.resources -- Package resource reading, opening and access": [[252, "module-importlib.resources"]], "importlib.resources.abc -- \u8cc7\u6e90\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[253, "module-importlib.resources.abc"]], "importlib.util -- Utility code for importers": [[250, "module-importlib.util"]], "info and geturl": [[110, "info-and-geturl"]], "inspect": [[472, "inspect"], [473, "inspect"], [474, "inspect"], [475, "inspect"], [476, "inspect"], [477, "inspect"], [478, "inspect"], [479, "inspect"], [481, "inspect"], [482, "inspect"]], "inspect --- \u6aa2\u8996\u6d3b\u52d5\u7269\u4ef6": [[255, "inspect-inspect-live-objects"]], "io": [[474, "io"], [475, "io"], [476, "io"], [478, "io"], [480, "io"], [481, "io"]], "io \u2014 \u8655\u7406\u8cc7\u6599\u4e32\u6d41\u7684\u6838\u5fc3\u5de5\u5177": [[258, "module-io"]], "ipaddress": [[474, "ipaddress"], [476, "ipaddress"], [477, "ipaddress"], [478, "ipaddress"], [480, "ipaddress"], [482, "ipaddress"]], "ipaddress --- IPv4/IPv6 \u64cd\u4f5c\u51fd\u5f0f\u5eab": [[259, "module-ipaddress"]], "ipaddress \u6a21\u7d44\u4ecb\u7d39": [[99, "an-introduction-to-the-ipaddress-module"]], "itertools": [[472, "itertools"], [474, "itertools"], [475, "itertools"], [476, "itertools"], [480, "itertools"], [481, "itertools"]], "itertools --- \u5efa\u7acb\u7522\u751f\u9ad8\u6548\u7387\u8ff4\u5708\u4e4b\u758a\u4ee3\u5668\u7684\u51fd\u5f0f": [[261, "module-itertools"]], "json": [[478, "json"], [479, "json"]], "json --- JSON \u7de8\u78bc\u5668\u8207\u89e3\u78bc\u5668": [[262, "module-json"]], "json.tool": [[481, "json-tool"]], "keyword --- \u6aa2\u9a57 Python \u95dc\u9375\u5b57": [[263, "module-keyword"]], "lib2to3 --- 2to3's library": [[112, "module-lib2to3"]], "libffi": [[426, "libffi"]], "libmpdec": [[426, "libmpdec"]], "linecache": [[472, "linecache"], [478, "linecache"]], "linecache --- \u96a8\u6a5f\u5b58\u53d6\u6587\u5b57\u5217": [[265, "module-linecache"]], "load_tests Protocol": [[388, "load-tests-protocol"]], "locale": [[473, "locale"], [474, "locale"], [478, "locale"], [480, "locale"], [480, "id7"]], "locale --- \u570b\u969b\u5316\u670d\u52d9": [[266, "module-locale"]], "logging": [[473, "logging"], [475, "logging"], [476, "logging"], [477, "logging"], [478, "logging"], [479, "logging"], [480, "logging"], [481, "logging"]], "logging --- Python \u7684\u65e5\u8a8c\u8a18\u9304\u5de5\u5177": [[267, "module-logging"]], "logging.config --- \u65e5\u8a8c\u8a18\u9304\u914d\u7f6e": [[268, "module-logging.config"]], "logging.handlers --- \u65e5\u8a8c\u7d00\u9304\u8655\u7406\u5668": [[269, "module-logging.handlers"]], "loop.subprocess_exec() and SubprocessProtocol": [[133, "loop-subprocess-exec-and-subprocessprotocol"]], "lzma": [[476, "lzma"], [478, "lzma"]], "lzma --- \u4f7f\u7528 LZMA \u6f14\u7b97\u6cd5\u9032\u884c\u58d3\u7e2e": [[270, "module-lzma"]], "macOS": [[131, "macos"], [483, "macos"], [483, "id18"], [483, "id27"], [483, "id34"], [483, "id48"], [483, "id58"], [483, "id80"], [483, "id90"], [483, "id109"], [483, "id125"], [483, "id135"], [483, "id145"], [483, "id154"], [483, "id166"], [483, "id175"], [483, "id192"], [483, "id201"], [483, "id209"], [483, "id217"], [483, "id227"], [483, "id238"], [483, "id257"], [483, "id267"], [483, "id275"], [483, "id285"], [483, "id296"], [483, "id306"], [483, "id316"], [483, "id326"], [483, "id337"], [483, "id363"], [483, "id373"], [483, "id384"], [483, "id395"], [483, "id422"], [483, "id439"], [483, "id447"], [483, "id457"], [483, "id468"], [483, "id477"], [483, "id492"], [483, "id518"], [483, "id531"], [483, "id541"]], "macOS 11.0 (Big Sur) and Apple Silicon Mac support": [[481, "macos-11-0-big-sur-and-apple-silicon-mac-support"], [482, "macos-11-0-big-sur-and-apple-silicon-mac-support"]], "macOS \u5e73\u53f0": [[303, "macos-platform"]], "macOS \u9078\u9805": [[456, "macos-options"]], "macpath": [[480, "macpath"]], "mailbox": [[475, "mailbox"]], "mailbox --- \u4ee5\u5404\u7a2e\u683c\u5f0f\u64cd\u4f5c\u90f5\u4ef6\u4fe1\u7bb1": [[271, "module-mailbox"]], "mailcap --- Mailcap \u6a94\u6848\u8655\u7406": [[272, "module-mailcap"]], "marshal": [[477, "marshal"]], "marshal --- \u5185\u90e8 Python \u7269\u4ef6\u5e8f\u5217\u5316": [[274, "module-marshal"]], "match \u9673\u8ff0\u5f0f": [[441, "match-statements"]], "match() versus search()": [[106, "match-versus-search"]], "math": [[473, "math"], [474, "math"], [475, "math"], [476, "math"], [478, "math"], [479, "math"], [480, "math"], [481, "math"], [482, "math"]], "math --- \u6578\u5b78\u51fd\u5f0f": [[275, "module-math"]], "mbox \u7269\u4ef6": [[271, "mbox-objects"]], "mboxMessage \u7269\u4ef6": [[271, "mboxmessage-objects"]], "metavar": [[120, "metavar"]], "mimetypes": [[480, "mimetypes"]], "mimetypes --- \u5c07\u6a94\u6848\u540d\u7a31\u5c0d\u6620\u5230 MIME \u985e\u578b": [[276, "module-mimetypes"]], "minidom and the DOM standard": [[411, "minidom-and-the-dom-standard"]], "mmap": [[476, "mmap"], [477, "mmap"], [481, "mmap"]], "mmap --- \u8a18\u61b6\u9ad4\u6620\u5c04\u6a94\u6848\u7684\u652f\u63f4": [[278, "module-mmap"]], "mock_open": [[389, "mock-open"]], "module.__path__": [[432, "module-path"]], "modulefinder --- \u641c\u5c0b\u8173\u672c\u6240\u4f7f\u7528\u7684\u6a21\u7d44": [[279, "module-modulefinder"]], "msilib": [[480, "msilib"]], "msilib --- \u8b80\u5beb Microsoft Installer \u6a94\u6848": [[281, "module-msilib"]], "msvcrt --- MS VC++ runtime \u63d0\u4f9b\u7684\u6709\u7528\u4f8b\u7a0b": [[282, "module-msvcrt"]], "multiprocessing": [[476, "multiprocessing"], [477, "multiprocessing"], [478, "multiprocessing"], [479, "multiprocessing"], [480, "multiprocessing"], [481, "multiprocessing"], [482, "multiprocessing"]], "multiprocessing --- \u4ee5\u884c\u7a0b\u70ba\u57fa\u790e\u7684\u5e73\u884c\u6027": [[283, "module-multiprocessing"]], "multiprocessing.shared_memory --- \u5c0d\u65bc\u5171\u4eab\u8a18\u61b6\u9ad4\u7684\u8de8\u884c\u7a0b\u76f4\u63a5\u5b58\u53d6": [[284, "module-multiprocessing.shared_memory"]], "name or flags": [[120, "name-or-flags"]], "namedtuple() \u64c1\u6709\u5177\u540d\u6b04\u4f4d\u4e4b tuple \u7684\u5de5\u5ee0\u51fd\u5f0f": [[160, "namedtuple-factory-function-for-tuples-with-named-fields"]], "nargs": [[120, "nargs"]], "ndiff \u7bc4\u4f8b\uff1a": [[190, "ndiff-example"]], "netrc --- netrc \u6a94\u6848\u8655\u7406": [[286, "module-netrc"]], "netrc \u7269\u4ef6": [[286, "netrc-objects"]], "nis --- Sun NIS (Yellow Pages) \u4ecb\u9762": [[287, "module-nis"]], "nntp": [[475, "nntp"]], "nntplib": [[476, "nntplib"], [482, "nntplib"]], "nntplib --- NNTP \u5354\u5b9a\u5ba2\u6236\u7aef": [[288, "module-nntplib"]], "nt": [[355, "nt"]], "nt_user": [[355, "nt-user"]], "nuget.org \u5957\u4ef6": [[461, "the-nuget-org-packages"]], "numbers --- \u6578\u503c\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225": [[289, "module-numbers"]], "numbers.Complex (complex)": [[428, "numbers-complex-complex"]], "numbers.Integral": [[428, "numbers-integral"]], "numbers.Number": [[428, "numbers-number"]], "numbers.Real (float)": [[428, "numbers-real-float"]], "operator": [[473, "operator"], [477, "operator"], [478, "operator"]], "operator --- \u6a19\u6e96\u904b\u7b97\u5b50\u66ff\u4ee3\u51fd\u5f0f": [[291, "module-operator"]], "optparse --- \u547d\u4ee4\u5217\u9078\u9805\u5256\u6790\u5668": [[292, "module-optparse"]], "os": [[472, "os"], [473, "os"], [474, "os"], [475, "os"], [476, "os"], [477, "os"], [478, "os"], [479, "os"], [479, "id4"], [480, "os"], [481, "os"], [482, "os"]], "os --- \u5404\u7a2e\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762": [[293, "module-os"]], "os.path": [[472, "os-path"], [474, "os-path"], [481, "os-path"]], "os.path --- \u5e38\u898b\u7684\u8def\u5f91\u540d\u64cd\u4f5c": [[294, "module-os.path"]], "ossaudiodev --- \u5c0d OSS \u76f8\u5bb9\u8072\u97f3\u88dd\u7f6e\u7684\u5b58\u53d6": [[295, "module-ossaudiodev"]], "osx_framework_user": [[355, "osx-framework-user"]], "parents": [[120, "parents"]], "partial \u7269\u4ef6": [[226, "partial-objects"]], "pass \u9673\u8ff0\u5f0f": [[441, "pass-statements"]], "patch": [[389, "patch"]], "patch \u5167\u5efa\u51fd\u5f0f": [[389, "patch-builtins"]], "patch \u65b9\u6cd5\uff1a\u555f\u52d5\u8207\u505c\u6b62": [[389, "patch-methods-start-and-stop"]], "patch.dict": [[389, "patch-dict"]], "patch.multiple": [[389, "patch-multiple"]], "patch.object": [[389, "patch-object"]], "pathlib": [[472, "pathlib"], [473, "pathlib"], [474, "pathlib"], [477, "pathlib"], [478, "pathlib"], [479, "pathlib"], [480, "pathlib"], [481, "pathlib"], [482, "pathlib"]], "pathlib --- \u7269\u4ef6\u5c0e\u5411\u6a94\u6848\u7cfb\u7d71\u8def\u5f91": [[296, "module-pathlib"]], "pdb": [[474, "pdb"], [475, "pdb"], [476, "pdb"], [477, "pdb"], [479, "pdb"], [480, "pdb"], [482, "pdb"]], "pdb --- The Python Debugger": [[297, "module-pdb"]], "pickle": [[476, "pickle"], [477, "pickle"], [478, "pickle"], [479, "pickle"], [481, "pickle"]], "pickle --- Python \u7269\u4ef6\u5e8f\u5217\u5316": [[299, "module-pickle"]], "pickletools": [[479, "pickletools"]], "pickletools --- pickle \u958b\u767c\u8005\u7684\u5de5\u5177": [[300, "module-pickletools"]], "pipes --- shell pipelines \u4ecb\u9762": [[301, "module-pipes"]], "pkgutil --- Package extension utility": [[302, "module-pkgutil"]], "platform": [[472, "platform"]], "platform --- \u5c0d\u5e95\u5c64\u5e73\u81fa\u8b58\u5225\u8cc7\u6599\u7684\u5b58\u53d6": [[303, "module-platform"]], "plistlib": [[477, "plistlib"], [481, "plistlib"]], "plistlib --- \u7522\u751f\u548c\u5256\u6790 Apple .plist \u6a94\u6848": [[304, "module-plistlib"]], "popen": [[475, "popen"]], "poplib": [[475, "poplib"], [477, "poplib"], [478, "poplib"], [482, "poplib"]], "poplib --- POP3 \u5354\u5b9a\u7528\u6236\u7aef": [[305, "module-poplib"]], "posix --- \u6700\u5e38\u898b\u7684 POSIX \u7cfb\u7d71\u547c\u53eb": [[306, "module-posix"]], "posix_home": [[355, "posix-home"]], "posix_prefix": [[355, "posix-prefix"]], "posix_user": [[355, "posix-user"]], "pprint": [[472, "pprint"], [477, "pprint"], [481, "pprint"], [482, "pprint"]], "pprint --- \u8cc7\u6599\u7f8e\u5316\u5217\u5370\u5668": [[307, "module-pprint"]], "prefix_chars": [[120, "prefix-chars"]], "printf-style Bytes Formatting": [[344, "printf-style-bytes-formatting"]], "printf-style String Formatting": [[344, "printf-style-string-formatting"]], "profile and cProfile Module Reference": [[308, "module-cProfile"]], "prog": [[120, "prog"]], "pty": [[477, "pty"]], "pty --- \u507d\u7d42\u7aef\u5de5\u5177": [[309, "module-pty"]], "pwd --- \u5bc6\u78bc\u8cc7\u6599\u5eab": [[310, "module-pwd"]], "py-bt": [[96, "py-bt"]], "py-list": [[96, "py-list"]], "py-locals": [[96, "py-locals"]], "py-print": [[96, "py-print"]], "py-up and py-down": [[96, "py-up-and-py-down"]], "py_compile": [[472, "py-compile"], [480, "py-compile"], [481, "py-compile"]], "py_compile \u2014 \u7de8\u8b6f Python \u4f86\u6e90\u6a94\u6848": [[311, "module-py_compile"]], "pyclbr": [[472, "pyclbr"]], "pyclbr --- Python \u6a21\u7d44\u700f\u89bd\u5668\u652f\u63f4": [[312, "module-pyclbr"]], "pydoc": [[475, "pydoc"], [476, "pydoc"], [477, "pydoc"], [479, "pydoc"], [480, "pydoc"], [482, "pydoc"]], "pydoc --- \u6587\u4ef6\u7522\u751f\u5668\u8207\u7dda\u4e0a\u5e6b\u52a9\u7cfb\u7d71": [[313, "module-pydoc"]], "queue": [[480, "queue"]], "queue --- \u540c\u6b65\u4f47\u5217 (synchronized queue) \u985e\u5225": [[316, "module-queue"]], "quopri --- \u7de8\u78bc\u548c\u89e3\u78bc MIME \u53ef\u5217\u5370\u5b57\u5143\u8cc7\u6599": [[317, "module-quopri"]], "random": [[474, "random"], [475, "random"], [479, "random"], [482, "random"]], "random --- \u751f\u6210\u507d\u96a8\u6a5f\u6578": [[318, "module-random"]], "range() \u51fd\u5f0f": [[441, "the-range-function"]], "re": [[473, "re"], [476, "re"], [477, "re"], [478, "re"], [479, "re"], [479, "id5"], [480, "re"]], "re --- \u6b63\u898f\u8868\u793a\u5f0f (regular expression) \u64cd\u4f5c": [[319, "module-re"]], "readline": [[478, "readline"], [479, "readline"]], "readline --- GNU readline \u4ecb\u9762": [[320, "module-readline"]], "readonly, format": [[7, "readonly-format"]], "reprlib": [[475, "reprlib"]], "reprlib --- repr() \u7684\u66ff\u4ee3\u5be6\u4f5c": [[321, "module-reprlib"]], "request-independent fields": [[7, "request-independent-fields"]], "required": [[120, "required"]], "resource": [[477, "resource"]], "resource --- \u8cc7\u6e90\u4f7f\u7528\u8cc7\u8a0a": [[322, "module-resource"]], "rlcompleter": [[479, "rlcompleter"]], "rlcompleter --- GNU readline \u7684\u88dc\u5168\u51fd\u5f0f": [[323, "module-rlcompleter"]], "rmtree \u7bc4\u4f8b": [[332, "rmtree-example"]], "runpy --- \u5b9a\u4f4d\u4e26\u57f7\u884c Python \u6a21\u7d44": [[324, "module-runpy"]], "sched": [[476, "sched"]], "sched --- \u4e8b\u4ef6\u6392\u7a0b\u5668": [[325, "module-sched"]], "search() vs. match()": [[319, "search-vs-match"]], "secrets": [[479, "secrets"]], "secrets --- \u7522\u751f\u7528\u65bc\u7ba1\u7406\u6a5f\u5bc6\u7684\u5b89\u5168\u4e82\u6578": [[326, "module-secrets"]], "select": [[475, "select"], [476, "select"], [477, "select"]], "select --- \u7b49\u5f85 I/O \u5b8c\u6210": [[328, "module-select"]], "selectors": [[477, "selectors"], [478, "selectors"]], "selectors --- \u9ad8\u968e I/O \u591a\u5de5": [[329, "module-selectors"]], "sentinel\uff08\u54e8\u5175\uff09": [[389, "sentinel"]], "setUpClass and tearDownClass": [[388, "setupclass-and-teardownclass"]], "setUpModule and tearDownModule": [[388, "setupmodule-and-teardownmodule"]], "shape, strides, suboffsets": [[7, "shape-strides-suboffsets"]], "shelve": [[472, "shelve"], [477, "shelve"]], "shelve --- Python object persistence": [[330, "module-shelve"]], "shlex": [[476, "shlex"], [479, "shlex"], [481, "shlex"]], "shlex --- \u7c21\u55ae\u7684\u8a9e\u6cd5\u5206\u6790": [[331, "module-shlex"]], "shlex \u7269\u4ef6": [[331, "shlex-objects"]], "shutil": [[473, "shutil"], [474, "shutil"], [475, "shutil"], [476, "shutil"], [477, "shutil"], [478, "shutil"], [481, "shutil"]], "shutil \u2014 \u9ad8\u968e\u6a94\u6848\u64cd\u4f5c": [[332, "module-shutil"]], "side_effect\u3001return_value \u548c wraps \u7684\u512a\u5148\u9806\u5e8f": [[389, "order-of-precedence-of-side-effect-return-value-and-wraps"]], "signal": [[476, "signal"], [478, "signal"], [480, "signal"], [482, "signal"]], "signal --- \u8a2d\u5b9a\u975e\u540c\u6b65\u4e8b\u4ef6\u7684\u8655\u7406\u51fd\u5f0f": [[333, "module-signal"]], "site": [[472, "site"], [475, "site"], [479, "site"]], "site --- Site-specific configuration hook": [[334, "module-site"]], "sitecustomize": [[334, "module-sitecustomize"]], "slot typedefs": [[63, "slot-typedefs"]], "smtpd": [[474, "smtpd"], [476, "smtpd"], [477, "smtpd"], [478, "smtpd"]], "smtplib": [[476, "smtplib"], [477, "smtplib"], [478, "smtplib"], [482, "smtplib"]], "smtplib --- SMTP \u5354\u5b9a\u7528\u6236\u7aef": [[335, "module-smtplib"]], "sndhdr": [[478, "sndhdr"]], "sndhdr --- \u5224\u5b9a\u8072\u97f3\u6a94\u6848\u7684\u578b\u5225": [[336, "module-sndhdr"]], "socket": [[472, "socket"], [473, "socket"], [475, "socket"], [476, "socket"], [477, "socket"], [478, "socket"], [479, "socket"], [480, "socket"], [480, "id8"], [481, "socket"], [482, "socket"]], "socket --- \u4f4e\u968e\u7db2\u8def\u4ecb\u9762": [[337, "module-socket"]], "socketserver": [[476, "socketserver"], [479, "socketserver"], [480, "socketserver"]], "socketserver --- \u7528\u65bc\u7db2\u8def\u4f3a\u670d\u5668\u7684\u6846\u67b6": [[338, "module-socketserver"]], "socketserver.TCPServer \u7bc4\u4f8b": [[338, "socketserver-tcpserver-example"]], "socketserver.UDPServer \u7bc4\u4f8b": [[338, "socketserver-udpserver-example"]], "spwd --- shadow \u5bc6\u78bc\u8cc7\u6599\u5eab": [[339, "module-spwd"]], "sqlite3": [[472, "sqlite3"], [473, "sqlite3"], [474, "sqlite3"], [474, "id2"], [475, "sqlite3"], [476, "sqlite3"], [477, "sqlite3"], [478, "sqlite3"], [479, "sqlite3"], [480, "sqlite3"]], "sqlite3 --- SQLite \u8cc7\u6599\u5eab\u7684 DB-API 2.0 \u4ecb\u9762": [[340, "module-sqlite3"]], "sqlite3 \u5957\u4ef6": [[467, "the-sqlite3-package"]], "ssl": [[472, "ssl"], [474, "ssl"], [475, "ssl"], [476, "ssl"], [477, "ssl"], [478, "ssl"], [479, "ssl"], [479, "id6"], [480, "ssl"], [480, "id9"], [481, "ssl"]], "ssl --- socket \u7269\u4ef6\u7684 TLS/SSL \u5305\u88dd\u5668": [[341, "module-ssl"]], "stat": [[476, "stat"], [477, "stat"]], "stat --- \u76f4\u8b6f stat() \u7684\u7d50\u679c": [[342, "module-stat"]], "statistics": [[472, "statistics"], [474, "statistics"], [477, "statistics"], [479, "statistics"], [481, "statistics"]], "statistics --- \u6578\u5b78\u7d71\u8a08\u51fd\u5f0f": [[343, "module-statistics"]], "strftime() \u8207 strptime() \u683c\u5f0f\u78bc": [[183, "strftime-and-strptime-format-codes"]], "strftime() \u8207 strptime() \u7684\u884c\u70ba": [[183, "strftime-and-strptime-behavior"]], "string": [[473, "string"], [480, "string"]], "string --- \u5e38\u898b\u7684\u5b57\u4e32\u64cd\u4f5c": [[345, "module-string"]], "stringprep --- \u7db2\u969b\u7db2\u8def\u5b57\u4e32\u6e96\u5099": [[346, "module-stringprep"]], "strtod \u8207 dtoa": [[426, "strtod-and-dtoa"]], "struct": [[476, "struct"], [477, "struct"], [479, "struct"]], "struct --- \u5c07\u4f4d\u5143\u7d44\u76f4\u8b6f\u70ba\u6253\u5305\u8d77\u4f86\u7684\u4e8c\u9032\u4f4d\u8cc7\u6599": [[347, "module-struct"]], "sub-slots": [[63, "sub-slots"]], "subprocess": [[476, "subprocess"], [477, "subprocess"], [478, "subprocess"], [479, "subprocess"], [480, "subprocess"]], "subprocess --- \u5b50\u884c\u7a0b\u7ba1\u7406": [[348, "module-subprocess"]], "sunau": [[477, "sunau"], [480, "sunau"]], "sunau --- \u8b80\u5beb Sun AU \u6a94\u6848": [[349, "module-sunau"]], "symtable --- \u5b58\u53d6\u7de8\u8b6f\u5668\u7684\u7b26\u865f\u8868": [[351, "module-symtable"]], "sys": [[472, "sys"], [473, "sys"], [474, "sys"], [476, "sys"], [477, "sys"], [478, "sys"], [479, "sys"], [480, "sys"], [480, "id10"], [481, "sys"], [482, "sys"]], "sys --- \u7cfb\u7d71\u7279\u5b9a\u7684\u53c3\u6578\u8207\u51fd\u5f0f": [[352, "module-sys"]], "sys.monitoring --- Execution event monitoring": [[353, "module-sys.monitoring"]], "sysconfig": [[473, "sysconfig"], [475, "sysconfig"], [478, "sysconfig"]], "sysconfig --- \u63d0\u4f9b Python \u8a2d\u5b9a\u8cc7\u8a0a\u7684\u5b58\u53d6": [[355, "module-sysconfig"]], "syslog --- Unix syslog \u51fd\u5f0f\u5eab\u4f8b\u7a0b": [[356, "module-syslog"]], "tabnanny --- \u5075\u6e2c\u4e0d\u826f\u7e2e\u6392": [[357, "module-tabnanny"]], "tarfile": [[472, "tarfile"], [473, "tarfile"], [475, "tarfile"], [476, "tarfile"], [477, "tarfile"], [478, "tarfile"], [481, "tarfile"], [481, "id3"], [482, "tarfile"]], "tarfile --- \u8b80\u53d6\u8207\u5beb\u5165 tar \u5c01\u5b58\u6a94\u6848": [[358, "module-tarfile"]], "telnetlib": [[479, "telnetlib"]], "telnetlib --- Telnet \u5ba2\u6236\u7aef": [[359, "module-telnetlib"]], "tempfile": [[473, "tempfile"], [474, "tempfile"], [475, "tempfile"], [476, "tempfile"]], "tempfile --- \u751f\u6210\u81e8\u6642\u6a94\u6848\u548c\u76ee\u9304": [[360, "module-tempfile"]], "termios --- POSIX \u98a8\u683c tty \u63a7\u5236": [[361, "module-termios"]], "test --- Python \u7684\u56de\u6b78\u6e2c\u8a66 (regression tests) \u5957\u4ef6": [[362, "module-test"]], "test.support --- Python \u6e2c\u8a66\u5957\u4ef6\u7684\u5de5\u5177": [[362, "module-test.support"]], "test.support.bytecode_helper --- \u7528\u65bc\u6e2c\u8a66\u4f4d\u5143\u7d44\u78bc\u80fd\u6b63\u78ba\u7522\u751f\u7684\u652f\u63f4\u5de5\u5177": [[362, "module-test.support.bytecode_helper"]], "test.support.import_helper --- \u7528\u65bc import \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.import_helper"]], "test.support.os_helper --- \u7528\u65bc os \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.os_helper"]], "test.support.script_helper --- \u7528\u65bc Python \u57f7\u884c\u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.script_helper"]], "test.support.socket_helper --- \u7528\u65bc socket \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.socket_helper"]], "test.support.threading_helper --- Utilities for threading tests": [[362, "module-test.support.threading_helper"]], "test.support.warnings_helper --- \u7528\u65bc warnings \u6e2c\u8a66\u7684\u5de5\u5177": [[362, "module-test.support.warnings_helper"]], "test_epoll": [[426, "test-epoll"]], "textwrap": [[476, "textwrap"], [477, "textwrap"]], "textwrap --- \u6587\u5b57\u5305\u88dd\u8207\u586b\u5145": [[364, "module-textwrap"]], "threading": [[472, "threading"], [473, "threading"], [474, "threading"], [475, "threading"], [476, "threading"], [477, "threading"], [478, "threading"], [480, "threading"], [481, "threading"]], "threading --- \u57fa\u65bc\u57f7\u884c\u7dd2\u7684\u5e73\u884c\u6027": [[365, "module-threading"]], "time": [[473, "time"], [476, "time"], [478, "time"], [479, "time"], [480, "time"], [481, "time"], [482, "time"]], "time --- Time access and conversions": [[366, "module-time"]], "time \u7269\u4ef6": [[183, "time-objects"]], "timedelta \u7269\u4ef6": [[183, "timedelta-objects"]], "timeit": [[478, "timeit"], [479, "timeit"]], "timeit --- \u6e2c\u91cf\u5c0f\u91cf\u7a0b\u5f0f\u7247\u6bb5\u7684\u57f7\u884c\u6642\u9593": [[367, "module-timeit"]], "timezone \u7269\u4ef6": [[183, "timezone-objects"]], "tkinter": [[473, "tkinter"], [474, "tkinter"], [478, "tkinter"], [479, "tkinter"], [479, "id7"], [480, "tkinter"], [481, "tkinter"]], "tkinter --- Tcl/Tk \u7684 Python \u4ecb\u9762": [[369, "module-tkinter"]], "tkinter.colorchooser --- \u984f\u8272\u9078\u64c7\u5c0d\u8a71\u6846": [[370, "module-tkinter.colorchooser"]], "tkinter.commondialog --- Dialog window templates": [[189, "module-tkinter.commondialog"]], "tkinter.dnd --- \u62d6\u653e\u652f\u63f4": [[371, "module-tkinter.dnd"]], "tkinter.filedialog --- File selection dialogs": [[189, "module-tkinter.filedialog"]], "tkinter.font --- Tkinter \u5b57\u578b\u5305\u88dd\u5668": [[372, "module-tkinter.font"]], "tkinter.messagebox --- Tkinter \u8a0a\u606f\u63d0\u793a": [[373, "module-tkinter.messagebox"]], "tkinter.scrolledtext --- \u6372\u52d5\u6587\u5b57\u5c0f\u5de5\u5177": [[374, "module-tkinter.scrolledtext"]], "tkinter.simpledialog --- \u6a19\u6e96 Tkinter \u8f38\u5165\u5c0d\u8a71\u6846": [[189, "module-tkinter.simpledialog"]], "tkinter.tix --- Tk \u64f4\u5145\u5c0f\u5de5\u5177": [[375, "module-tkinter.tix"]], "tkinter.ttk --- Tk \u4e3b\u984c\u5316\u5c0f\u5de5\u5177": [[376, "module-tkinter.ttk"]], "token --- \u8207 Python \u5256\u6790\u6a39\u4e00\u8d77\u4f7f\u7528\u7684\u5e38\u6578": [[377, "module-token"]], "tokenize": [[474, "tokenize"], [481, "tokenize"]], "tokenize --- Tokenizer for Python source": [[378, "module-tokenize"]], "tomllib --- \u5256\u6790 TOML \u6a94\u6848": [[379, "module-tomllib"]], "tp_call \u5354\u5b9a": [[10, "the-tp-call-protocol"]], "tp_traverse in Python 3.8 and lower": [[100, "tp-traverse-in-python-3-8-and-lower"]], "trace --- \u8ffd\u8e64\u6216\u8ffd\u67e5 Python \u9673\u8ff0\u5f0f\u57f7\u884c": [[380, "module-trace"]], "traceback": [[472, "traceback"], [473, "traceback"], [477, "traceback"], [478, "traceback"], [479, "traceback"]], "traceback --- \u5217\u5370\u6216\u53d6\u5f97\u5806\u758a\u56de\u6eaf (stack traceback)": [[381, "module-traceback"]], "tracemalloc": [[477, "tracemalloc"], [479, "tracemalloc"], [480, "tracemalloc"], [482, "tracemalloc"]], "tracemalloc --- \u8ffd\u8e64\u8a18\u61b6\u9ad4\u914d\u7f6e": [[382, "module-tracemalloc"]], "tracemalloc C API": [[42, "tracemalloc-c-api"]], "ttk.Combobox": [[376, "ttk-combobox"]], "ttk.Notebook": [[376, "ttk-notebook"]], "ttk.Progressbar": [[376, "ttk-progressbar"]], "ttk.Spinbox": [[376, "ttk-spinbox"]], "ttk.Treeview": [[376, "ttk-treeview"]], "ttk.Widget": [[376, "ttk-widget"]], "ttk: Themed Widgets for Tk": [[469, "ttk-themed-widgets-for-tk"]], "tty --- \u7d42\u7aef\u6a5f\u63a7\u5236\u51fd\u5f0f": [[383, "module-tty"]], "turtle --- \u9f9c\u5716\u5b78 (Turtle graphics)": [[384, "module-turtle"]], "turtledemo": [[475, "turtledemo"]], "turtledemo --- Demo scripts": [[384, "module-turtledemo"]], "type": [[120, "type"]], "types": [[472, "types"], [474, "types"], [476, "types"], [477, "types"], [478, "types"], [480, "types"]], "types --- \u52d5\u614b\u578b\u5225\u5efa\u7acb\u8207\u5167\u5efa\u578b\u5225\u540d\u7a31": [[385, "module-types"]], "typing": [[472, "typing"], [473, "typing"], [474, "typing"], [478, "typing"], [479, "typing"], [481, "typing"], [482, "typing"], [482, "id4"]], "typing --- \u652f\u63f4\u578b\u5225\u63d0\u793a": [[386, "typing-support-for-type-hints"]], "tzinfo \u7269\u4ef6": [[183, "tzinfo-objects"]], "unicodedata": [[473, "unicodedata"], [474, "unicodedata"], [478, "unicodedata"], [479, "unicodedata"], [480, "unicodedata"], [481, "unicodedata"], [482, "unicodedata"]], "unicodedata --- Unicode \u8cc7\u6599\u5eab": [[387, "module-unicodedata"]], "unittest": [[472, "unittest"], [473, "unittest"], [474, "unittest"], [474, "id3"], [475, "unittest"], [476, "unittest"], [477, "unittest"], [478, "unittest"], [480, "unittest"], [481, "unittest"]], "unittest --- \u55ae\u5143\u6e2c\u8a66\u6846\u67b6": [[388, "module-unittest"]], "unittest.mock": [[478, "unittest-mock"], [479, "unittest-mock"], [480, "unittest-mock"]], "unittest.mock --- \u5165\u9580\u6307\u5357": [[390, "unittest-mock-getting-started"]], "unittest.mock \u2014 mock \u7269\u4ef6\u51fd\u5f0f\u5eab": [[389, "module-unittest.mock"]], "urllib": [[476, "urllib"], [477, "urllib"], [478, "urllib"]], "urllib --- URL \u8655\u7406\u6a21\u7d44": [[392, "module-urllib"]], "urllib.error --- urllib.request \u5f15\u767c\u7684\u4f8b\u5916\u985e\u5225": [[393, "module-urllib.error"]], "urllib.parse": [[472, "urllib-parse"], [475, "urllib-parse"], [480, "urllib-parse"], [481, "urllib-parse"], [482, "urllib-parse"], [482, "id5"]], "urllib.parse --- \u5c07 URL \u5256\u6790\u6210\u5143\u4ef6": [[394, "module-urllib.parse"]], "urllib.request": [[479, "urllib-request"]], "urllib.request --- \u7528\u4f86\u958b\u555f URLs \u7684\u53ef\u64f4\u5145\u51fd\u5f0f\u5eab": [[395, "module-urllib.request"]], "urllib.request Restrictions": [[395, "urllib-request-restrictions"]], "urllib.response --- Response classes used by urllib": [[395, "module-urllib.response"]], "urllib.robotparser": [[479, "urllib-robotparser"]], "urllib.robotparser --- robots.txt \u7684\u5256\u6790\u5668": [[396, "module-urllib.robotparser"]], "usage": [[120, "usage"]], "usercustomize": [[334, "module-usercustomize"]], "uu": [[480, "uu"]], "uuid": [[474, "uuid"], [480, "uuid"]], "uuid --- RFC 4122 \u5b9a\u7fa9\u7684 UUID \u7269\u4ef6": [[398, "module-uuid"]], "venv": [[473, "venv"], [477, "venv"], [479, "venv"], [479, "whatsnew36-venv"], [481, "venv"], [482, "venv"]], "venv --- \u5efa\u7acb\u865b\u64ec\u74b0\u5883": [[399, "module-venv"]], "warnings": [[473, "warnings"], [479, "warnings"], [480, "warnings"]], "warnings --- \u8b66\u544a\u63a7\u5236": [[400, "module-warnings"]], "wave": [[477, "wave"], [480, "wave"]], "wave --- \u8b80\u5beb WAV \u6a94\u6848": [[401, "module-wave"]], "wchar_t Support": [[64, "wchar-t-support"]], "weakref": [[477, "weakref"], [481, "weakref"]], "weakref --- \u5f31\u53c3\u7167": [[402, "module-weakref"]], "webbrowser": [[474, "webbrowser"], [476, "webbrowser"]], "webbrowser --- \u65b9\u4fbf\u7684\u7db2\u9801\u700f\u89bd\u5668\u63a7\u5236\u5668": [[403, "module-webbrowser"]], "winreg": [[479, "winreg"]], "winreg --- Windows \u8a3b\u518a\u8868\u5b58\u53d6": [[405, "module-winreg"]], "winsound": [[479, "winsound"]], "winsound --- Windows \u7684\u8072\u97f3\u64ad\u653e\u4ecb\u9762": [[406, "module-winsound"]], "wsgiref": [[478, "wsgiref"]], "wsgiref --- WSGI \u5de5\u5177\u8207\u53c3\u8003\u5be6\u4f5c": [[407, "module-wsgiref"]], "wsgiref \u5957\u4ef6": [[467, "the-wsgiref-package"]], "wsgiref.handlers -- \u4f3a\u670d\u5668 / \u9598\u9053\u57fa\u672c\u985e\u5225": [[407, "module-wsgiref.handlers"]], "wsgiref.headers -- WSGI \u56de\u61c9\u6a19\u982d\u5de5\u5177": [[407, "module-wsgiref.headers"]], "wsgiref.simple_server -- \u4e00\u500b\u7c21\u55ae\u7684 WSGI HTTP \u4f3a\u670d\u5668": [[407, "module-wsgiref.simple_server"]], "wsgiref.types -- \u7528\u65bc\u975c\u614b\u578b\u5225\u6aa2\u67e5\u7684 WSGI \u578b\u5225": [[407, "module-wsgiref.types"]], "wsgiref.util -- WSGI \u74b0\u5883\u5de5\u5177": [[407, "module-wsgiref.util"]], "wsgiref.validate --- WSGI \u7b26\u5408\u6027\u6aa2\u67e5": [[407, "module-wsgiref.validate"]], "www.python.org \u7684\u771f\u5be6\u4f4d\u7f6e\u5728\u54ea\u88e1\uff1f": [[80, "where-in-the-world-is-www-python-org-located"]], "xdrlib --- XDR \u8cc7\u6599\u7684\u7de8\u78bc\u8207\u89e3\u78bc": [[408, "module-xdrlib"]], "xdrlib --- uuencode \u6a94\u6848\u7684\u7de8\u78bc\u8207\u89e3\u78bc": [[397, "module-uu"]], "xml": [[472, "xml"], [479, "xml"], [480, "xml"], [481, "xml"], [482, "xml"]], "xml.dom --- Document \u7269\u4ef6\u6a21\u578b API": [[410, "module-xml.dom"]], "xml.dom.minidom --- \u6700\u5c0f\u7684 DOM \u5be6\u4f5c": [[411, "module-xml.dom.minidom"]], "xml.dom.pulldom --- \u652f\u63f4\u5efa\u7f6e\u90e8\u5206 DOM \u6a39": [[412, "module-xml.dom.pulldom"]], "xml.etree": [[477, "xml-etree"], [480, "xml-etree"]], "xml.etree.ElementTree": [[474, "xml-etree-elementtree"], [476, "xml-etree-elementtree"]], "xml.etree.cElementTree --- ElementTree XML API": [[413, "module-xml.etree.ElementTree"]], "xml.parsers.expat --- \u4f7f\u7528 Expat \u9032\u884c\u5feb\u901f XML \u5256\u6790": [[314, "module-xml.parsers.expat"]], "xml.sax": [[478, "xml-sax"]], "xml.sax --- SAX2 \u5256\u6790\u5668\u652f\u63f4": [[414, "module-xml.sax"]], "xml.sax.handler --- SAX \u8655\u7406\u51fd\u5f0f\u7684\u57fa\u672c\u985e\u5225": [[415, "module-xml.sax.handler"]], "xml.sax.saxutils --- SAX \u5de5\u5177\u7a0b\u5f0f": [[417, "module-xml.sax.saxutils"]], "xml.sax.xmlreader --- XML \u5256\u6790\u5668\u7684\u4ecb\u9762": [[416, "module-xml.sax.xmlreader"]], "xmlrpc": [[478, "xmlrpc"], [481, "xmlrpc"]], "xmlrpc --- XMLRPC \u4f3a\u670d\u5668\u8207\u7528\u6236\u6a21\u7d44": [[418, "xmlrpc-xmlrpc-server-and-client-modules"]], "xmlrpc.client": [[479, "xmlrpc-client"]], "xmlrpc.client --- XML-RPC \u5ba2\u6236\u7aef\u5b58\u53d6": [[419, "module-xmlrpc.client"]], "xmlrpc.server": [[480, "xmlrpc-server"]], "xmlrpc.server --- \u57fa\u672c XML-RPC \u4f3a\u670d\u5668": [[420, "module-xmlrpc.server"]], "zipapp": [[478, "zipapp"], [480, "zipapp"]], "zipapp \u2014-- \u7ba1\u7406\u53ef\u57f7\u884c\u7684 Python zip \u5c01\u5b58\u6a94\u6848": [[421, "module-zipapp"]], "zipfile": [[473, "zipfile"], [477, "zipfile"], [478, "zipfile"], [479, "zipfile"], [480, "zipfile"]], "zipfile --- \u8655\u7406 ZIP \u5c01\u5b58\u6a94\u6848": [[422, "module-zipfile"]], "zipimport": [[472, "zipimport"], [474, "zipimport"]], "zipimport --- \u5f9e Zip \u5c01\u5b58\u6a94\u6848\u532f\u5165\u6a21\u7d44": [[423, "module-zipimport"]], "zipimporter \u7269\u4ef6": [[423, "zipimporter-objects"]], "zlib": [[426, "zlib"], [476, "zlib"], [479, "zlib"]], "zlib --- \u76f8\u5bb9\u65bc gzip \u7684\u58d3\u7e2e": [[424, "module-zlib"]], "zoneinfo": [[482, "zoneinfo"]], "zoneinfo --- IANA \u6642\u5340\u652f\u63f4": [[425, "module-zoneinfo"]], "\u300c\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a\uff1f\u300d\u5e38\u898b\u554f\u7b54\u96c6": [[83, "why-is-python-installed-on-my-computer-faq"]], "\u300c\u7de8\u8b6f\u300dPython \u6a94\u6848": [[450, "compiled-python-files"]], "\u4e00\u500b\u7c21\u55ae\u7bc4\u4f8b": [[73, "a-simple-example"], [101, "a-simple-example"]], "\u4e00\u500b\u975e\u6b63\u5f0f\u7684 Python \u7c21\u4ecb": [[449, "an-informal-introduction-to-python"]], "\u4e00\u822c\u7684 Python \u5e38\u898b\u554f\u7b54\u96c6": [[80, "general-python-faq"]], "\u4e00\u822c\u8cc7\u8a0a": [[80, "general-information"]], "\u4e00\u822c\u9078\u9805": [[456, "general-options"]], "\u4e09\u89d2\u51fd\u6578": [[154, "trigonometric-functions"]], "\u4e0b\u6a19 (Subscripting)": [[122, "subscripting"]], "\u4e0d\u4f7f\u7528\u7b2c\u4e09\u65b9\u5de5\u5177\u5efa\u7acb\u64f4\u5145": [[74, "creating-extensions-without-third-party-tools"]], "\u4e0d\u652f\u63f4\u7684\u4f5c\u696d\u7cfb\u7d71": [[476, "unsupported-operating-systems"]], "\u4e0d\u7a69\u5b9a\u7684 C API": [[57, "unstable-c-api"]], "\u4e0d\u80fd\u64fa\u812b\u5168\u5c40\u76f4\u8b6f\u5668\u9396\u55ce\uff1f": [[84, "can-t-we-get-rid-of-the-global-interpreter-lock"]], "\u4e26\u884c\u57f7\u884c (Concurrent Execution)": [[164, "concurrent-execution"]], "\u4e26\u884c\u6027\u548c\u591a\u57f7\u884c\u7dd2 (Concurrency and Multithreading)": [[125, "concurrency-and-multithreading"]], "\u4e32\u5217 (list) \u5728 CPython \u4e2d\u662f\u600e\u9ebc\u5be6\u4f5c\u7684\uff1f": [[78, "how-are-lists-implemented-in-cpython"]], "\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff08List Comprehension\uff09": [[462, "list-comprehensions"]], "\u4e32\u6d41": [[136, "streams"]], "\u4e32\u6d41 (Streams)": [[124, "streams"]], "\u4e3b\u8981 Makefile \u76ee\u6a19": [[456, "main-makefile-targets"]], "\u4e3b\u8981\u5efa\u7f6e\u6b65\u9a5f": [[456, "main-build-steps"]], "\u4e82\u6578": [[326, "random-numbers"]], "\u4e8b\u4ef6\u8ff4\u5708": [[126, "event-loop"]], "\u4e8b\u4ef6\u8ff4\u5708 Policies": [[130, "event-loop-policies"]], "\u4e8b\u4ef6\u8ff4\u5708\u5be6\u4f5c": [[126, "event-loop-implementations"]], "\u4e8b\u4ef6\u8ff4\u5708\u65b9\u6cd5": [[126, "event-loop-methods"], [130, "event-loop-methods"]], "\u4e8c\u9032\u4f4d (Binary) I/O": [[258, "binary-i-o"], [258, "id2"]], "\u4e8c\u9032\u4f4d\u8cc7\u6599": [[107, "binary-data"]], "\u4e8c\u9032\u4f4d\u8cc7\u6599\u670d\u52d9": [[145, "binary-data-services"]], "\u4e8c\u9032\u5236\u8cc7\u6599\u8a18\u9304\u7de8\u6392 (Binary Data Record Layouts)": [[452, "working-with-binary-data-record-layouts"]], "\u4e92\u52d5\u5f0f\u555f\u52d5\u6a94\u6848": [[438, "the-interactive-startup-file"]], "\u4e92\u52d5\u5f0f\u76f4\u8b6f\u5668\u7684\u66ff\u4ee3\u65b9\u6848": [[447, "alternatives-to-the-interactive-interpreter"]], "\u4e92\u52d5\u5f0f\u8f38\u5165": [[437, "interactive-input"]], "\u4e92\u52d5\u5f0f\u8f38\u5165\u7de8\u8f2f\u548c\u6b77\u53f2\u8a18\u9304\u66ff\u63db": [[447, "interactive-input-editing-and-history-substitution"]], "\u4e92\u52d5\u6a21\u5f0f": [[438, "interactive-mode"], [448, "interactive-mode"]], "\u4ec0\u9ebc\u662f Python \u64c5\u9577\u7684\u4e8b\u60c5\uff1f": [[80, "what-is-python-good-for"]], "\u4ec0\u9ebc\u662f Python \u8edf\u9ad4\u57fa\u91d1\u6703\uff1f": [[80, "what-is-the-python-software-foundation"]], "\u4ec0\u9ebc\u662f Python\uff1f": [[80, "what-is-python"], [83, "what-is-python"]], "\u4ec0\u9ebc\u662f\u300c\u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883\u300d\uff1f": [[114, "what-is-the-top-level-code-environment"]], "\u4ec0\u9ebc\u662f\u65b9\u6cd5 (method)\uff1f": [[85, "what-is-a-method"]], "\u4ec0\u9ebc\u662f\u985e\u5225 (class)\uff1f": [[85, "what-is-a-class"]], "\u4ec0\u9ebc\u6642\u5019\u4f7f\u7528 logging": [[101, "when-to-use-logging"]], "\u4ecb\u7d39": [[384, "introduction"]], "\u4ecb\u9762\u9078\u9805": [[455, "interface-options"]], "\u4ee5 C \u6216 C++ \u64f4\u5145 Python": [[73, "extending-python-with-c-or-c"]], "\u4ee5 Tk \u6253\u9020\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (Graphical User Interfaces)": [[368, "graphical-user-interfaces-with-tk"]], "\u4efb\u4f55 Python \u7248\u672c\u4e2d __annotations__ \u7684\u6700\u4f73\u5be6\u8e10": [[88, "best-practices-for-annotations-in-any-python-version"]], "\u4efb\u52d9 (Tasks)": [[124, "tasks"]], "\u4efb\u610f\u5f15\u6578\u5217\u8868 (Arbitrary Argument Lists)": [[441, "arbitrary-argument-lists"]], "\u4f47\u5217 (Queues)": [[124, "queues"], [134, "queues"]], "\u4f47\u5217\u7269\u4ef6": [[316, "queue-objects"]], "\u4f4d\u5143\u7d44\u7269\u4ef6 (Bytes Objects)": [[9, "bytes-objects"]], "\u4f4d\u5143\u7d44\u9663\u5217\u7269\u4ef6 (Byte Array Objects)": [[8, "byte-array-objects"]], "\u4f4d\u7f6e\u5f15\u6578\u7684\u4ecb\u7d39": [[89, "introducing-positional-arguments"]], "\u4f4d\u7f6e\u6216\u95dc\u9375\u5b57\u5f15\u6578 (Positional-or-Keyword Arguments)": [[441, "positional-or-keyword-arguments"]], "\u4f4e\u968e API": [[33, "low-level-api"], [123, null]], "\u4f4e\u968e API \u7d22\u5f15": [[130, "low-level-api-index"]], "\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762": [[451, "operating-system-interface"]], "\u4f5c\u696d\u7cfb\u7d71\u5de5\u5177": [[59, "operating-system-utilities"]], "\u4f5c\u70ba C \u7d50\u69cb\u7684\u8907\u6578": [[15, "complex-numbers-as-c-structures"]], "\u4f5c\u70ba Python \u7269\u4ef6\u7684\u8907\u6578": [[15, "complex-numbers-as-python-objects"]], "\u4f5c\u7528\u57df\u548c\u547d\u540d\u7a7a\u9593\u7684\u7bc4\u4f8b": [[440, "scopes-and-namespaces-example"]], "\u4f60\u4e0d\u8a72\u4f7f\u7528\u7684\u9078\u9805": [[455, "options-you-shouldn-t-use"]], "\u4f7f\u7528 2to3": [[112, "using-2to3"]], "\u4f7f\u7528 DTrace \u548c SystemTap \u6aa2\u6e2c CPython": [[98, "instrumenting-cpython-with-dtrace-and-systemtap"]], "\u4f7f\u7528 MagicMock \u4f86 mock \u5b57\u5178": [[390, "mocking-a-dictionary-with-magicmock"]], "\u4f7f\u7528 Mock \u4f86 patching \u65b9\u6cd5": [[390, "mock-patching-methods"]], "\u4f7f\u7528 Mock \u7684\u65b9\u5f0f": [[390, "using-mock"]], "\u4f7f\u7528 Python \u554f\u984c\u8ffd\u8e64\u7cfb\u7d71": [[1, "using-the-python-issue-tracker"]], "\u4f7f\u7528 Python \u6642\u6709\u4efb\u4f55\u7248\u6b0a\u9650\u5236\u55ce\uff1f": [[80, "are-there-copyright-restrictions-on-the-use-of-python"]], "\u4f7f\u7528 Python \u76f4\u8b6f\u5668": [[448, "using-the-python-interpreter"]], "\u4f7f\u7528 Ttk": [[376, "using-ttk"]], "\u4f7f\u7528 asyncio \u958b\u767c": [[125, "developing-with-asyncio"]], "\u4f7f\u7528 call_later() \u986f\u793a\u76ee\u524d\u65e5\u671f": [[126, "display-the-current-date-with-call-later"]], "\u4f7f\u7528 call_soon() \u7684 Hello World \u7bc4\u4f8b": [[126, "hello-world-with-call-soon"]], "\u4f7f\u7528 importlib \u4f5c\u70ba import \u7684\u5be6\u4f5c": [[476, "using-importlib-as-the-implementation-of-import"]], "\u4f7f\u7528 json \u5132\u5b58\u7d50\u69cb\u5316\u8cc7\u6599": [[446, "saving-structured-data-with-json"]], "\u4f7f\u7528 mock \u6aa2\u67e5\u591a\u500b\u547c\u53eb": [[390, "checking-multiple-calls-with-mock"]], "\u4f7f\u7528 patch.dict \u4f86 mock import": [[390, "mocking-imports-with-patch-dict"]], "\u4f7f\u7528 side_effect \u56de\u50b3\u5404\u5225\u6a94\u6848\u5167\u5bb9": [[390, "using-side-effect-to-return-per-file-content"]], "\u4f7f\u7528\u4e00\u500b Socket": [[107, "using-a-socket"]], "\u4f7f\u7528\u4e32\u6d41\u7684 TCP echo \u4f3a\u670d\u5668": [[136, "tcp-echo-server-using-streams"]], "\u4f7f\u7528\u4e32\u6d41\u7684 TCP echo \u5ba2\u6236\u7aef": [[136, "tcp-echo-client-using-streams"]], "\u4f7f\u7528\u547d\u4ee4\u5217\u4ecb\u9762\u57f7\u884c\u6e2c\u8a66": [[362, "module-test.regrtest"]], "\u4f7f\u7528\u65b9\u6848": [[318, "recipes"]], "\u4f7f\u7528\u65bc List \u7684\u5de5\u5177": [[452, "tools-for-working-with-lists"]], "\u4f7f\u7528\u7ba1\u9053": [[126, "working-with-pipes"]], "\u4f7f\u7528\u8005\u5b9a\u7fa9\u6cdb\u578b\u578b\u5225": [[386, "user-defined-generic-types"]], "\u4f7f\u7528\u8005\u81ea\u5b9a\u7684\u4f8b\u5916": [[443, "user-defined-exceptions"]], "\u4f7f\u7528\u8005\u8f38\u5165": [[92, "user-input"]], "\u4f8b\u5916": [[35, "exceptions"], [124, "exceptions"], [127, "exceptions"], [134, "exceptions"], [167, "exceptions"], [232, "exceptions"], [262, "exceptions"], [271, "exceptions"], [337, "exceptions"], [340, "exceptions"], [341, "exceptions"], [343, "exceptions"], [348, "exceptions"], [408, "exceptions"], [410, "exceptions"], [413, "exceptions"], [429, "exceptions"]], "\u4f8b\u5916 (Exception)": [[443, "exceptions"]], "\u4f8b\u5916\u7269\u4ef6": [[23, "exception-objects"]], "\u4f8b\u5916\u7684\u60c5\u5883": [[213, "exception-context"]], "\u4f8b\u5916\u8655\u7406": [[23, "exception-handling"]], "\u4f8b\u5916\u8655\u7406\u6709\u591a\u5feb\uff1f": [[78, "how-fast-are-exceptions"]], "\u4f8b\u5916\u93c8\u63a5 (Exception Chaining)": [[443, "exception-chaining"]], "\u4f8b\u5916\u968e\u5c64": [[213, "exception-hierarchy"]], "\u4f8b\u5916\u985e\u5225": [[23, "exception-classes"], [166, "exception-classes"]], "\u503c\u5f97\u6ce8\u610f\u7684\u6a21\u7d44\u5167\u5bb9": [[306, "notable-module-contents"]], "\u5075\u6e2c\u5f9e\u672a\u88ab\u7372\u53d6\u7684 (never-retrieved) \u4f8b\u5916": [[125, "detect-never-retrieved-exceptions"]], "\u5075\u6e2c\u5f9e\u672a\u88ab\u7b49\u5f85\u7684 (never-awaited) \u5354\u7a0b": [[125, "detect-never-awaited-coroutines"]], "\u5099\u8a3b": [[211, "notes"]], "\u50b3\u8f38": [[130, "transports"]], "\u50b3\u8f38\u6a94\u6848": [[126, "transferring-files"]], "\u50b3\u8f38\u8207\u5354\u5b9a": [[133, "transports-and-protocols"]], "\u50b3\u905e\u5f15\u6578": [[448, "argument-passing"]], "\u50c5\u9650\u4f4d\u7f6e\u53c3\u6578 (Positional-Only Parameters)": [[441, "positional-only-parameters"]], "\u50c5\u9650\u95dc\u9375\u5b57\u5f15\u6578 (Keyword-Only Arguments)": [[441, "keyword-only-arguments"]], "\u50c5\u9650\u95dc\u9375\u5b57\u6b04\u4f4d (Keyword-only fields)": [[472, "keyword-only-fields"]], "\u512a\u5148\u4f47\u5217\u5be6\u4f5c\u7d30\u7bc0": [[236, "priority-queue-implementation-notes"]], "\u5167\u5efa\u51fd\u5f0f": [[225, "built-in-functions"]], "\u5167\u5efa\u51fd\u5f0f\u548c\u578b\u5225": [[476, "builtin-functions-and-types"]], "\u5167\u5efa\u578b\u5225": [[344, "built-in-types"]], "\u5167\u5efa\u578b\u5225\u7684\u5225\u540d": [[386, "aliases-to-built-in-types"]], "\u5167\u5efa\u5e38\u6578": [[168, "built-in-constants"]], "\u5167\u5efa\u7684\u4f8b\u5916": [[213, "built-in-exceptions"]], "\u5169\u500b\u8f38\u5165\u4e4b\u9593\u7684\u95dc\u4fc2\u7d71\u8a08": [[343, "statistics-for-relations-between-two-inputs"]], "\u5176\u4ed6": [[474, "others"]], "\u5176\u4ed6 API \u8b8a\u66f4": [[476, "other-api-changes"]], "\u5176\u4ed6 CPython \u5be6\u4f5c\u66f4\u52d5": [[473, "other-cpython-implementation-changes"]], "\u5176\u4ed6\u4e3b\u8981\u529f\u80fd": [[472, "other-key-features"]], "\u5176\u4ed6\u51fd\u5f0f": [[326, "other-functions"], [337, "other-functions"], [355, "other-functions"]], "\u5176\u4ed6\u5e73\u53f0": [[461, "other-platforms"]], "\u5176\u4ed6\u6539\u52d5\u8207\u4fee\u6b63": [[464, "other-changes-and-fixes"]], "\u5176\u4ed6\u65b9\u6cd5": [[296, "other-methods"]], "\u5176\u4ed6\u7269\u4ef6": [[5, "other-objects"], [16, "other-objects"]], "\u5176\u4ed6\u8a9e\u8a00\u66f4\u52d5": [[465, "other-language-changes"], [466, "other-language-changes"], [467, "other-language-changes"], [468, "other-language-changes"], [469, "other-language-changes"], [471, "other-language-changes"], [472, "other-language-changes"], [473, "other-language-changes"], [474, "other-language-changes"], [475, "other-language-changes"], [476, "other-language-changes"], [477, "other-language-changes"], [478, "other-language-changes"], [479, "other-language-changes"], [480, "other-language-changes"], [481, "other-language-changes"], [482, "other-language-changes"]], "\u5176\u4ed6\u8cc7\u6e90": [[459, "other-resources"]], "\u5177\u6709\u4f4d\u7f6e\u53c3\u6578\u7684\u6a21\u5f0f": [[472, "patterns-with-positional-parameters"]], "\u5177\u6709\u5b57\u9762\u503c\u548c\u8b8a\u6578\u7684\u6a21\u5f0f": [[472, "patterns-with-a-literal-and-variable"]], "\u5177\u9ad4\u7269\u4ef6\u5c64": [[16, "concrete-objects-layer"]], "\u51aa\u51fd\u6578\u548c\u5c0d\u6578\u51fd\u6578": [[154, "power-and-logarithmic-functions"]], "\u51cd\u7d50\u5be6\u4f8b": [[181, "frozen-instances"]], "\u51cd\u7d50\u5f15\u5165 (Frozen imports) / \u975c\u614b\u7a0b\u5f0f\u78bc\u7269\u4ef6 (Static code objects)": [[473, "frozen-imports-static-code-objects"]], "\u51fd\u5f0f": [[151, "functions"], [177, "functions"], [179, "functions"], [250, "functions"], [337, "functions"], [344, "functions"], [366, "functions"], [382, "functions"], [405, "functions"], [413, "functions"], [413, "elementinclude-functions"], [425, "functions"]], "\u51fd\u5f0f\u3001\u5e38\u6578\u8207\u4f8b\u5916": [[341, "functions-constants-and-exceptions"]], "\u51fd\u5f0f\u548c\u985e\u5225\u5b9a\u7fa9": [[122, "function-and-class-definitions"]], "\u51fd\u5f0f\u5b9a\u7fa9": [[427, "function-definitions"]], "\u51fd\u5f0f\u5eab\u548c\u64f4\u5145\u529f\u80fd\u7684\u5e38\u898b\u554f\u984c": [[84, "library-and-extension-faq"]], "\u51fd\u5f0f\u5eab\u8b8a\u66f4": [[470, "library-changes"]], "\u51fd\u5f0f\u5eab\u9078\u9805": [[456, "libraries-options"]], "\u51fd\u5f0f\u7269\u4ef6": [[16, "function-objects"], [312, "function-objects"]], "\u51fd\u5f0f\u7269\u4ef6 (Function Objects)": [[27, "function-objects"]], "\u51fd\u5f0f\u7bc4\u4f8b": [[441, "function-examples"]], "\u51fd\u5f0f\u7d30\u7bc0": [[343, "function-details"]], "\u51fd\u5f0f\u7de8\u7a0b HOWTO": [[95, "functional-programming-howto"]], "\u51fd\u5f0f\u7de8\u7a0b\u6a21\u7d44": [[224, "functional-programming-modules"]], "\u51fd\u5f0f\u8207\u4f8b\u5916": [[347, "functions-and-exceptions"]], "\u51fd\u5f0f\u8207\u88dd\u98fe\u5668": [[386, "functions-and-decorators"]], "\u51fd\u5f0f\u8a3b\u91cb (Function Annotations)": [[441, "function-annotations"]], "\u5206\u985e\u51fd\u5f0f": [[154, "classification-functions"]], "\u5207\u7247\u7269\u4ef6": [[56, "slice-objects"]], "\u521d\u63a2\u7a0b\u5f0f\u8a2d\u8a08\u7684\u524d\u5e7e\u6b65": [[449, "first-steps-towards-programming"]], "\u521d\u898b class": [[440, "a-first-look-at-classes"]], "\u522a\u9664\u5c6c\u6027": [[389, "deleting-attributes"]], "\u5256\u6790 XML": [[413, "parsing-xml"]], "\u5256\u6790\u5f15\u6578": [[120, "parsing-arguments"]], "\u5256\u6790\u5f15\u6578\u8207\u5efa\u7f6e\u6578\u503c": [[5, "parsing-arguments-and-building-values"]], "\u529f\u80fd": [[476, "features"], [476, "id1"]], "\u529f\u80fd\u6027": [[476, "functionality"]], "\u52a0\u5165\u66f4\u591a\u6578\u503c ABC": [[289, "adding-more-numeric-abcs"]], "\u52a0\u5bc6\u670d\u52d9": [[174, "cryptographic-services"]], "\u5341\u9032\u5236 (Decimal) \u6d6e\u9ede\u6578\u904b\u7b97": [[452, "decimal-floating-point-arithmetic"]], "\u5347\u51aa\u8207\u964d\u51aa": [[108, "ascending-and-descending"]], "\u5354\u5b9a": [[130, "protocols"], [386, "protocols"]], "\u5354\u5b9a\u7248\u672c": [[341, "protocol-versions"]], "\u5354\u7a0b": [[139, "coroutines"], [427, "coroutines"], [428, "coroutines"]], "\u5354\u7a0b\u8207\u4efb\u52d9": [[139, "coroutines-and-tasks"]], "\u539f\u5730 (in-place) \u904b\u7b97\u5b50": [[291, "in-place-operators"]], "\u539f\u59cb (Raw) I/O": [[258, "raw-i-o"]], "\u539f\u59cb\u6a94\u6848 I/O": [[258, "raw-file-i-o"]], "\u539f\u59cb\u78bc\u7684\u5b57\u5143\u7de8\u78bc (encoding)": [[448, "source-code-encoding"]], "\u539f\u7406": [[236, "theory"]], "\u53c3\u7167\u8a08\u6578": [[35, "reference-counts"], [52, "reference-counting"]], "\u53c3\u7167\u8a08\u6578\u8a73\u7d30\u8cc7\u8a0a": [[35, "reference-count-details"]], "\u53c3\u8003": [[223, "reference"]], "\u53d6\u5f97\u548c\u5b89\u88dd Python": [[459, "getting-and-installing-python"]], "\u53d7\u9650 API \u6ce8\u610f\u4e8b\u9805": [[57, "limited-api-caveats"]], "\u53d7\u9650 API \u7684\u5167\u5bb9": [[57, "contents-of-limited-api"]], "\u53d7\u9650 API \u7bc4\u570d\u548c\u6027\u80fd": [[57, "limited-api-scope-and-performance"]], "\u53d7\u9650 C API": [[57, "limited-c-api"]], "\u53ef\u57f7\u884c\u7684 Python \u8173\u672c": [[438, "executable-python-scripts"]], "\u53ef\u7528\u6027\u4e4b\u8a3b\u91cb": [[257, "notes-on-availability"]], "\u53ef\u7528\u7684\u975c\u614b\u6a19\u8a18": [[98, "available-static-markers"]], "\u53ef\u8b8a\u9810\u8a2d\u503c": [[181, "mutable-default-values"]], "\u53ef\u9078\u5f15\u6578\u7684\u4ecb\u7d39": [[89, "introducing-optional-arguments"]], "\u53ef\u9078\u7684 EncodingWarning \u548c encoding=\"locale\" \u9078\u9805": [[472, "optional-encodingwarning-and-encoding-locale-option"]], "\u540c\u6b65\u5316 (Synchronization)": [[124, "synchronization"]], "\u540c\u6b65\u5316\u539f\u59cb\u7269\u4ef6 (Synchronization Primitives)": [[138, "synchronization-primitives"]], "\u547c\u53eb": [[389, "calling"]], "\u547c\u53eb\u5354\u5b9a (Call Protocol)": [[10, "call-protocol"]], "\u547c\u53eb\u652f\u63f4 API": [[10, "call-support-api"]], "\u547d\u4ee4\u5217": [[455, "command-line"]], "\u547d\u4ee4\u5217\u4ecb\u9762": [[210, "command-line-interface"], [234, "command-line-interface"], [255, "command-line-interface"], [262, "module-json.tool"], [334, "command-line-interface"], [340, "command-line-interface"], [367, "command-line-interface"]], "\u547d\u4ee4\u5217\u5f15\u6578": [[451, "command-line-arguments"]], "\u547d\u4ee4\u5217\u6a21\u5f0f\u9078\u9805": [[388, "command-line-options"]], "\u547d\u4ee4\u5217\u7528\u6cd5": [[122, "command-line-usage"], [150, "command-line-usage"], [247, "command-line-usage"], [300, "command-line-usage"]], "\u547d\u4ee4\u5217\u7684\u7528\u6cd5": [[398, "command-line-usage"]], "\u547d\u4ee4\u5217\u7684\u7bc4\u4f8b": [[398, "command-line-example"]], "\u547d\u4ee4\u5217\u8207\u74b0\u5883": [[455, "command-line-and-environment"]], "\u547d\u4ee4\u5217\u9078\u9805": [[234, "command-line-options"], [262, "command-line-options"], [300, "command-line-options"]], "\u547d\u4ee4\u5217\u958b\u95dc\u66f4\u6539": [[476, "command-line-switch-changes"]], "\u547d\u4ee4\u57f7\u884c\u5217\u4ecb\u9762": [[421, "command-line-interface"]], "\u547d\u4ee4\u57f7\u884c\u5217\u4ecb\u9762 (Command-Line Interface)": [[388, "command-line-interface"]], "\u547d\u540d\u4f60\u7684 mock": [[390, "naming-your-mocks"]], "\u548c json \u7684\u6bd4\u8f03": [[299, "comparison-with-json"]], "\u548c marshal \u7684\u6bd4\u8f03": [[299, "comparison-with-marshal"]], "\u548c\u5176\u4ed6 Python \u6a21\u7d44\u7684\u95dc\u4fc2": [[299, "relationship-to-other-python-modules"]], "\u54c1\u8cea\u63a7\u7ba1": [[451, "quality-control"]], "\u54ea\u88e1\u53ef\u4ee5\u627e\u5230 math.py (socket.py, regex.py, \u7b49...) \u4f86\u6e90\u6a94\u6848\uff1f": [[84, "where-is-the-math-py-socket-py-regex-py-etc-source-file"]], "\u555f\u52d5\u4e00\u500b\u70cf\u9f9c\u74b0\u5883": [[384, "starting-a-turtle-environment"]], "\u555f\u52d5\u548c\u505c\u6b62\u8ff4\u5708": [[126, "running-and-stopping-the-loop"]], "\u555f\u52d5\u76f4\u8b6f\u5668": [[448, "invoking-the-interpreter"]], "\u555f\u7528\u9664\u932f\u6a21\u5f0f": [[126, "enabling-debug-mode"]], "\u555f\u7528\u975c\u614b\u6a19\u8a18": [[98, "enabling-the-static-markers"]], "\u55ae\u7d14\u8c9d\u6c0f\u5206\u985e\u5668 (Naive bayesian classifier)": [[343, "naive-bayesian-classifier"]], "\u56de\u50b3\u4f4d\u5143\u7d44\u7684\u51fd\u5f0f": [[318, "functions-for-bytes"]], "\u56de\u50b3\u5e8f\u5217\u7684\u51fd\u5f0f": [[318, "functions-for-sequences"]], "\u56de\u50b3\u6574\u6578\u7684\u51fd\u5f0f": [[318, "functions-for-integers"]], "\u56de\u5230\u7bc4\u4f8b": [[73, "back-to-the-example"]], "\u56de\u547c\u8655\u7406": [[126, "callback-handles"]], "\u56de\u9867": [[441, "recap"]], "\u570b\u969b\u5316": [[246, "internationalization"]], "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (GUI) \u7684\u5e38\u898b\u554f\u984c": [[81, "general-gui-questions"]], "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\u5e38\u898b\u554f\u7b54\u96c6": [[81, "graphic-user-interface-faq"]], "\u5728 FreeBSD \u548c OpenBSD \u4e0a": [[460, "on-freebsd-and-openbsd"]], "\u5728 Linux \u4e0a": [[460, "on-linux"]], "\u5728 Linux \u4e0a\u5b89\u88dd\u5957\u4ef6\u81f3\u7cfb\u7d71 Python": [[111, "installing-into-the-system-python-on-linux"]], "\u5728 Mac \u7cfb\u7d71\u4f7f\u7528 Python": [[459, "using-python-on-a-mac"]], "\u5728 Python 3.10 \u53ca\u66f4\u9ad8\u7248\u672c\u4e2d\u5b58\u53d6\u7269\u4ef6\u7684\u8a3b\u91cb\u5b57\u5178": [[88, "accessing-the-annotations-dict-of-an-object-in-python-3-10-and-newer"]], "\u5728 Python 3.9 \u53ca\u66f4\u65e9\u7248\u672c\u4e2d\u5b58\u53d6\u7269\u4ef6\u7684\u8a3b\u91cb\u5b57\u5178": [[88, "accessing-the-annotations-dict-of-an-object-in-python-3-9-and-older"]], "\u5728 Unix \u5e73\u81fa\u4e0a\u4f7f\u7528 Python": [[460, "using-python-on-unix-platforms"]], "\u5728 Windows \u4e0a\u4f7f\u7528 Python": [[461, "using-python-on-windows"]], "\u5728 Windows \u4f7f\u7528 Python \u7684\u5e38\u898b\u554f\u7b54\u96c6": [[86, "python-on-windows-faq"]], "\u5728 heap \u4e0a\u5206\u914d\u7269\u4ef6": [[3, "allocating-objects-on-the-heap"]], "\u5728\u5176\u5b83 App \u5167\u5d4c\u5165 Python": [[72, "embedding-python-in-another-application"]], "\u5728\u57f7\u884c\u7dd2\u6c60\u6216\u884c\u7a0b\u6c60\u4e2d\u57f7\u884c\u7a0b\u5f0f\u78bc": [[126, "executing-code-in-thread-or-process-pools"]], "\u5728\u66f4\u5927\u7684\u61c9\u7528\u7a0b\u5f0f\u4e2d\u5d4c\u5165 CPython \u904b\u884c\u74b0\u5883 (runtime)": [[74, "embedding-the-cpython-runtime-in-a-larger-application"]], "\u5728\u771f\u5be6\u4e16\u754c\u4e2d\u7684 Python": [[80, "python-in-the-real-world"]], "\u578b\u5225": [[35, "types"]], "\u578b\u5225\u5225\u540d": [[386, "type-aliases"]], "\u578b\u5225\u53c3\u6578 (type parameters)": [[122, "type-parameters"]], "\u578b\u5225\u63d0\u793a\u7269\u4ef6": [[62, "objects-for-type-hinting"]], "\u578b\u5225\u63d0\u793a\u76f8\u95dc\u7684\u65b0\u7279\u6027": [[473, "new-features-related-to-type-hints"]], "\u578b\u5225\u6aa2\u67e5\u5de8\u96c6": [[8, "type-check-macros"]], "\u578b\u5225\u7269\u4ef6": [[61, "type-objects"], [63, "type-objects"]], "\u57f7\u884c\u6a21\u578b": [[429, "execution-model"]], "\u57f7\u884c\u7dd2": [[84, "threads"]], "\u57f7\u884c\u8ffd\u8e64": [[426, "execution-tracing"]], "\u57f7\u884c\u963b\u585e\u7684\u7a0b\u5f0f": [[125, "running-blocking-code"]], "\u57fa\u5e95\u985e\u5225 (base classes)": [[213, "base-classes"]], "\u57fa\u672c\u7528\u6cd5": [[89, "the-basics"], [111, "basic-usage"], [262, "basic-usage"], [296, "basic-use"]], "\u57fa\u672c\u7bc4\u4f8b": [[421, "basic-example"]], "\u57fa\u672c\u7e6a\u5716": [[384, "basic-drawing"]], "\u57fa\u790e Logging \u6307\u5357": [[101, "basic-logging-tutorial"]], "\u57fa\u790e\u6392\u5e8f": [[108, "sorting-basics"]], "\u57fa\u790e\u7269\u4ef6": [[16, "fundamental-objects"]], "\u57fa\u790e\u7bc4\u4f8b": [[236, "basic-examples"], [367, "basic-examples"]], "\u589e\u52a0\u5f15\u6578": [[120, "adding-arguments"]], "\u591a\u57f7\u884c\u7dd2 (Multi-threading)": [[452, "multi-threading"]], "\u591a\u5a92\u9ad4\u670d\u52d9": [[277, "multimedia-services"]], "\u591a\u76ee\u9304\u4e2d\u7684\u5957\u4ef6": [[450, "packages-in-multiple-directories"]], "\u591a\u91cd\u7e7c\u627f": [[440, "multiple-inheritance"]], "\u5957\u4ef6 (Package)": [[450, "packages"]], "\u5957\u4ef6\u5167\u5f15\u7528": [[450, "intra-package-references"]], "\u5982\u4f55\u4f7f Python \u8173\u672c\u53ef\u4ee5\u57f7\u884c\uff1f": [[86, "how-do-i-make-python-scripts-executable"]], "\u5982\u4f55\u4f7f\u7528 Logging \u6a21\u7d44": [[101, "logging-howto"]], "\u5982\u4f55\u4f7f\u7528 Py_BuildValue() \u5efa\u7acb\u4efb\u610f\u9577\u5ea6\u7684\u5143\u7d44\uff1f": [[79, "how-do-i-use-py-buildvalue-to-create-a-tuple-of-arbitrary-length"]], "\u5982\u4f55\u4f7f\u7528 urllib \u5957\u4ef6\u53d6\u5f97\u7db2\u8def\u8cc7\u6e90": [[110, "howto-fetch-internet-resources-using-the-urllib-package"]], "\u5982\u4f55\u4f7f\u7528\u57f7\u884c\u7dd2\u7de8\u5beb\u7a0b\u5f0f\uff1f": [[84, "how-do-i-program-using-threads"]], "\u5982\u4f55\u4f7f\u7528\u6b63\u898f\u8868\u9054\u5f0f": [[106, "regular-expression-howto"]], "\u5982\u4f55\u51cd\u7d50 Tkinter \u61c9\u7528\u7a0b\u5f0f\uff1f": [[81, "how-do-i-freeze-tkinter-applications"]], "\u5982\u4f55\u522a\u9664\u6a94\u6848\uff1f\uff08\u4ee5\u53ca\u5176\u4ed6\u6a94\u6848\u554f\u984c...\uff09": [[84, "how-do-i-delete-a-file-and-other-file-questions"]], "\u5982\u4f55\u53d6\u5f97 Python \u7684 beta \u6e2c\u8a66\u7248\u672c\uff1f": [[80, "how-do-i-get-a-beta-test-version-of-python"]], "\u5982\u4f55\u555f\u7528 perf \u5206\u6790\u652f\u63f4": [[104, "how-to-enable-perf-profiling-support"]], "\u5982\u4f55\u5728 Python \u4e2d\u6307\u5b9a\u548c\u5f37\u5236\u4f7f\u7528\u4e00\u500b\u4ecb\u9762\u898f\u7bc4 (interface spec)\uff1f": [[78, "how-do-you-specify-and-enforce-an-interface-spec-in-python"]], "\u5982\u4f55\u5728 Python \u4e2d\u751f\u6210\u96a8\u6a5f\u6578\uff1f": [[84, "how-do-i-generate-random-numbers-in-python"]], "\u5982\u4f55\u5728 Python \u4e2d\u8907\u88fd\u7269\u4ef6\uff1f": [[85, "how-do-i-copy-an-object-in-python"]], "\u5982\u4f55\u5728 Windows \u4f5c\u696d\u7cfb\u7d71\u88e1\u904b\u884c Python \u7a0b\u5f0f\uff1f": [[86, "how-do-i-run-a-python-program-under-windows"]], "\u5982\u4f55\u5728\u4e0d\u963b\u585e\u7684\u60c5\u6cc1\u4e0b\u6aa2\u67e5 keypress\uff1f": [[86, "how-do-i-check-for-a-keypress-without-blocking"]], "\u5982\u4f55\u57f7\u884c Python \u8173\u672c": [[459, "how-to-run-a-python-script"]], "\u5982\u4f55\u5b58\u53d6\u5e8f\u5217 (RS232) \u9023\u63a5\u57e0\uff1f": [[84, "how-do-i-access-the-serial-rs232-port"]], "\u5982\u4f55\u5c07 Python 2 \u7684\u7a0b\u5f0f\u78bc\u79fb\u690d\u5230 Python 3": [[105, "how-to-port-python-2-code-to-python-3"]], "\u5982\u4f55\u5c07 Python \u5d4c\u5165 Windows \u61c9\u7528\u7a0b\u5f0f\u4e2d\uff1f": [[86, "how-can-i-embed-python-into-a-windows-application"]], "\u5982\u4f55\u5c07\u5b57\u4e32\u8f49\u63db\u70ba\u6578\u5b57\uff1f": [[85, "how-do-i-convert-a-string-to-a-number"]], "\u5982\u4f55\u5c07\u6578\u5b57\u8f49\u63db\u70ba\u5b57\u4e32\uff1f": [[85, "how-do-i-convert-a-number-to-a-string"]], "\u5982\u4f55\u5f9e C \u547c\u53eb\u7269\u4ef6\u7684\u65b9\u6cd5\uff1f": [[79, "how-do-i-call-an-object-s-method-from-c"]], "\u5982\u4f55\u5f9e C \u57f7\u884c\u4efb\u610f Python \u9673\u8ff0\u5f0f\uff1f": [[79, "how-can-i-execute-arbitrary-python-statements-from-c"]], "\u5982\u4f55\u5f9e C \u5b58\u53d6\u7528 Python \u7de8\u5beb\u7684\u6a21\u7d44\uff1f": [[79, "how-do-i-access-a-module-written-in-python-from-c"]], "\u5982\u4f55\u5f9e Python \u7269\u4ef6\u4e2d\u63d0\u53d6 C \u503c\uff1f": [[79, "how-do-i-extract-c-values-from-a-python-object"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u5efa\u7acb\u7368\u7acb\u7684\u4e8c\u9032\u4f4d\u6a94\u6848\uff1f": [[85, "how-can-i-create-a-stand-alone-binary-from-a-python-script"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u767c\u9001\u90f5\u4ef6\uff1f": [[84, "how-do-i-send-mail-from-a-python-script"]], "\u5982\u4f55\u5f9e Python \u8173\u672c\u88fd\u4f5c\u53ef\u57f7\u884c\u6a94\uff1f": [[86, "how-do-i-make-an-executable-from-a-python-script"]], "\u5982\u4f55\u5f9e\u300c\u7121\u6548\u8f38\u5165\u300d\u5340\u5206\u51fa\u300c\u4e0d\u5b8c\u6574\u8f38\u5165\u300d\uff1f": [[79, "how-do-i-tell-incomplete-input-from-invalid-input"]], "\u5982\u4f55\u627e\u5230\u672a\u5b9a\u7fa9\u7684 g++ \u7b26\u865f __builtin_new \u6216 __pure_virtual\uff1f": [[79, "how-do-i-find-undefined-g-symbols-builtin-new-or-pure-virtual"]], "\u5982\u4f55\u627e\u5230\u7269\u4ef6\u7684\u65b9\u6cd5\u6216\u5c6c\u6027\uff1f": [[85, "how-can-i-find-the-methods-or-attributes-of-an-object"]], "\u5982\u4f55\u6307\u5b9a\u5341\u516d\u9032\u4f4d\u548c\u516b\u9032\u4f4d\u6574\u6578\uff1f": [[85, "how-do-i-specify-hexadecimal-and-octal-integers"]], "\u5982\u4f55\u63d0\u4ea4 Python \u7684\u932f\u8aa4\u5831\u544a\u548c\u4fee\u88dc\u7a0b\u5f0f\uff1f": [[80, "how-do-i-submit-bug-reports-and-patches-for-python"]], "\u5982\u4f55\u6a21\u64ec CGI \u8868\u55ae\u9001\u51fa (submission) (METHOD=POST)\uff1f": [[84, "how-can-i-mimic-cgi-form-submission-method-post"]], "\u5982\u4f55\u6e2c\u8a66 Python \u7a0b\u5f0f\u6216\u5143\u4ef6\uff1f": [[84, "how-do-i-test-a-python-program-or-component"]], "\u5982\u4f55\u70ba\u64f4\u5145\u5957\u4ef6\u9664\u932f\uff1f": [[79, "how-do-i-debug-an-extension"]], "\u5982\u4f55\u7372\u5f97\u6700\u4f73\u7d50\u679c": [[104, "how-to-obtain-the-best-results"]], "\u5982\u4f55\u7ffb\u8b6f argparse \u8f38\u51fa": [[89, "how-to-translate-the-argparse-output"]], "\u5982\u4f55\u8907\u88fd\u6a94\u6848\uff1f": [[84, "how-do-i-copy-a-file"]], "\u5982\u4f55\u89e3\u6c7a\u907a\u6f0f api-ms-win-crt-runtime-l1-1-0.dll \u7684\u932f\u8aa4\uff1f": [[86, "how-do-i-solve-the-missing-api-ms-win-crt-runtime-l1-1-0-dll-error"]], "\u5982\u4f55\u8b80\u53d6\uff08\u6216\u5beb\u5165\uff09\u4e8c\u9032\u4f4d\u5236\u8cc7\u6599\uff1f": [[84, "how-do-i-read-or-write-binary-data"]], "\u5982\u4f55\u8de8\u6a21\u7d44\u5171\u4eab\u5168\u57df\u8b8a\u6578\uff1f": [[85, "how-do-i-share-global-variables-across-modules"]], "\u5982\u4f55\u9632\u6b62\u7de8\u8f2f\u5668\u5728\u6211\u7684 Python \u539f\u59cb\u78bc\u4e2d\u63d2\u5165 tab\uff1f": [[86, "how-do-i-keep-editors-from-inserting-tabs-into-my-python-source"]], "\u5982\u540c\u5c6c\u6027\u4e00\u822c\u9644\u52a0 mock": [[389, "attaching-mocks-as-attributes"]], "\u5b50\u884c\u7a0b": [[137, "subprocesses"]], "\u5b50\u884c\u7a0b (Subprocesses)": [[124, "subprocesses"]], "\u5b50\u884c\u7a0b\u8207\u7dda\u7a0b": [[137, "subprocess-and-threads"]], "\u5b50\u985e\u5225\u5982\u4f55\u63a7\u5236\u4e0d\u53ef\u8b8a\u5be6\u4f8b\u4e2d\u5b58\u5132\u7684\u8cc7\u6599\uff1f": [[85, "how-can-a-subclass-control-what-data-is-stored-in-an-immutable-instance"]], "\u5b57\u4e32\u5e38\u6578": [[345, "string-constants"]], "\u5b57\u4e32\u6a23\u5f0f\u6bd4\u5c0d": [[451, "string-pattern-matching"]], "\u5b57\u4e32\u7684 format() method": [[446, "the-string-format-method"]], "\u5b57\u4e32\u8f49\u63db\u8207\u683c\u5f0f\u5316": [[18, "string-conversion-and-formatting"]], "\u5b57\u5178": [[428, "dictionaries"]], "\u5b57\u5178 (dictionaries) \u5728 CPython \u4e2d\u662f\u600e\u9ebc\u5be6\u4f5c\u7684\uff1f": [[78, "how-are-dictionaries-implemented-in-cpython"]], "\u5b57\u5178\u7269\u4ef6": [[22, "dictionary-objects"]], "\u5b57\u5178\u8996\u5716\u7269\u4ef6": [[344, "dictionary-view-objects"]], "\u5b57\u5178\uff08Dictionary\uff09": [[442, "dictionaries"]], "\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805": [[327, "security-considerations"]], "\u5b89\u5168\u8003\u91cf": [[143, "security-considerations"]], "\u5b89\u88dd Python \u6a21\u7d44": [[111, "installing-python-modules"]], "\u5b89\u88dd\u4e8c\u9032\u5236\u64f4\u5145 (binary extension)": [[111, "installing-binary-extensions"]], "\u5b89\u88dd\u6392\u9664\u4f7f\u7528\u8005\u4ecb\u9762": [[461, "installing-without-ui"]], "\u5b89\u88dd\u6b65\u9a5f": [[461, "installation-steps"]], "\u5b89\u88dd\u8def\u5f91\u51fd\u5f0f": [[355, "installation-path-functions"]], "\u5b89\u88dd\u9078\u9805": [[456, "install-options"]], "\u5b89\u88dd\u96a8\u9078": [[461, "install-on-demand"]], "\u5b89\u88dd\u984d\u5916\u7684 Python \u5957\u4ef6": [[459, "installing-additional-python-packages"]], "\u5b8c\u6574\u7684 Python \u7a0b\u5f0f": [[437, "complete-python-programs"]], "\u5b8c\u6574\u7684\u8a9e\u6cd5\u898f\u683c\u66f8": [[431, "full-grammar-specification"]], "\u5b9a\u7fa9": [[109, "definitions"]], "\u5b9a\u7fa9\u51fd\u5f0f (function)": [[441, "defining-functions"]], "\u5b9a\u7fa9\u6e05\u7406\u52d5\u4f5c": [[443, "defining-clean-up-actions"]], "\u5ba2\u88fd\u5316 OpenSSL": [[460, "custom-openssl"]], "\u5ba2\u88fd\u5316\u6a21\u7d44": [[438, "the-customization-modules"]], "\u5ba3\u544a\u5f0f\u65b9\u6cd5 (Declarative approach)": [[472, "declarative-approach"]], "\u5bb9\u5668\u7269\u4ef6": [[16, "container-objects"]], "\u5bc6\u5c01 mock": [[389, "sealing-mocks"]], "\u5be6\u4f5c\u51fd\u5f0f\u8207\u65b9\u6cd5": [[58, "implementing-functions-and-methods"]], "\u5be6\u4f5c\u7b97\u8853\u64cd\u4f5c": [[289, "implementing-the-arithmetic-operations"]], "\u5be6\u4f8b\u65b9\u6cd5\u7269\u4ef6 (Instance Method Objects)": [[44, "instance-method-objects"]], "\u5be6\u4f8b\u7269\u4ef6": [[440, "instance-objects"]], "\u5be6\u6578\u5206\u5e03": [[318, "real-valued-distributions"]], "\u5be6\u9ad4\u4f8b\u5916": [[213, "concrete-exceptions"]], "\u5be6\u9ad4\u8def\u5f91": [[296, "concrete-paths"]], "\u5beb C \u5f88\u96e3\uff1b\u9084\u6709\u5176\u4ed6\u9078\u64c7\u55ce\uff1f": [[79, "writing-c-is-hard-are-there-any-alternatives"]], "\u5beb\u5165\u5668\u7269\u4ef6": [[175, "writer-objects"]], "\u5c07 List \u4f5c\u70ba Queue\uff08\u4f47\u5217\uff09\u4f7f\u7528": [[442, "using-lists-as-queues"]], "\u5c07 List \u4f5c\u70ba Stack\uff08\u5806\u758a\uff09\u4f7f\u7528": [[442, "using-lists-as-stacks"]], "\u5c07 sysconfig \u4f5c\u70ba\u8173\u672c\u4f7f\u7528": [[355, "using-sysconfig-as-a-script"]], "\u5c0d Python \u63d0\u51fa\u4e0d\u76f8\u5bb9\u7684\u8b8a\u66f4\u5efa\u8b70\u662f\u5426\u9069\u7576\uff1f": [[80, "is-it-reasonable-to-propose-incompatible-changes-to-python"]], "\u5c0d\u500b\u5225\u7d44\u6210\u7684\u5b58\u53d6": [[296, "accessing-individual-parts"]], "\u5c0d\u5927\u6a94\u6848 (Large File) \u7684\u652f\u63f4": [[306, "large-file-support"]], "\u5c0d\u6620\u5354\u5b9a": [[40, "mapping-protocol"]], "\u5c0d\u6bcf\u500b\u6e2c\u8a66\u65b9\u6cd5\u61c9\u7528\u76f8\u540c\u7684 patch": [[390, "applying-the-same-patch-to-every-test-method"]], "\u5c0d\u7269\u4ef6\u7684\u65b9\u6cd5\u547c\u53eb\u4f7f\u7528 mock": [[390, "mock-for-method-calls-on-an-object"]], "\u5c6c\u6027": [[288, "attributes"]], "\u5d4c\u5165 Python": [[461, "embedding-python"]], "\u5d4c\u5165\u5f0fPython": [[35, "embedding-python"]], "\u5de2\u72c0\u4f7f\u7528 Patch": [[390, "nesting-patches"]], "\u5de2\u72c0\u4f7f\u7528 Patch \u88dd\u98fe\u5668": [[389, "nesting-patch-decorators"]], "\u5de2\u72c0\u6a21\u5f0f": [[472, "nested-patterns"]], "\u5de2\u72c0\u7684 List Comprehensions": [[442, "nested-list-comprehensions"]], "\u5de5\u5177": [[65, "utilities"]], "\u5de8\u96c6": [[8, "macros"]], "\u5df2\u522a\u9664": [[472, "removed"], [472, "id4"]], "\u5df2\u68c4\u7528": [[472, "deprecated"], [472, "id3"], [473, "deprecated"], [473, "whatsnew311-c-api-deprecated"], [474, "deprecated"], [474, "id6"], [476, "deprecated"], [477, "deprecated"], [478, "deprecated"], [479, "deprecated"], [481, "deprecated"], [482, "deprecated"]], "\u5df2\u68c4\u7528\u51fd\u5f0f": [[252, "deprecated-functions"]], "\u5df2\u68c4\u7528\u529f\u80fd": [[477, "deprecated-features"]], "\u5df2\u68c4\u7528\u7684 Python \u6a21\u7d44\u3001\u51fd\u5f0f\u548c\u65b9\u6cd5": [[476, "deprecated-python-modules-functions-and-methods"]], "\u5df2\u68c4\u7528\u7684\u51fd\u5f0f\u548c\u8b8a\u6578": [[360, "deprecated-functions-and-variables"]], "\u5df2\u68c4\u7528\u7684\u529f\u80fd": [[476, "deprecated-features"]], "\u5df2\u79fb\u9664": [[473, "removed"], [473, "whatsnew311-c-api-removed"], [474, "removed"], [474, "id10"], [477, "removed"], [478, "removed"], [479, "removed"], [482, "removed"], [482, "id3"]], "\u5df2\u88ab\u53d6\u4ee3\u7684\u6a21\u7d44": [[350, "superseded-modules"]], "\u5df2\u88ab\u79fb\u9664\u7684\u8a9e\u6cd5": [[470, "removed-syntax"]], "\u5e36\u62ec\u865f\u7684\u60c5\u5883\u7ba1\u7406\u5668": [[472, "parenthesized-context-managers"]], "\u5e38\u6578": [[137, "constants"], [154, "constants"], [183, "constants"], [186, "constants"], [235, "constants"], [275, "constants"], [337, "constants"], [341, "constants"], [386, "constant"], [405, "constants"]], "\u5e38\u898b\u51fd\u5f0f\u554f\u984c": [[84, "general-library-questions"]], "\u5e38\u898b\u554f\u984c": [[85, "general-questions"]], "\u5e38\u898b\u5c6c\u6027": [[183, "common-properties"]], "\u5e38\u898b\u7684\u5b89\u88dd\u554f\u984c": [[111, "common-installation-issues"]], "\u5e38\u898b\u8ab2\u984c": [[84, "common-tasks"]], "\u5e6b\u52a9": [[120, "help"]], "\u5e73\u53f0\u6ce8\u610f\u4e8b\u9805": [[57, "platform-considerations"]], "\u5e73\u5747\u503c\u8207\u4e2d\u592e\u4f4d\u7f6e\u91cf\u6578": [[343, "averages-and-measures-of-central-location"]], "\u5e73\u81fa\u652f\u63f4": [[131, "platform-support"]], "\u5e8f\u5217\u5354\u5b9a": [[54, "sequence-protocol"]], "\u5e8f\u5217\u548c\u5176\u4ed6\u8cc7\u6599\u985e\u578b\u4e4b\u6bd4\u8f03": [[442, "comparing-sequences-and-other-types"]], "\u5e8f\u5217\u7269\u4ef6": [[16, "sequence-objects"]], "\u5efa\u69cb\u51fd\u5f0f": [[235, "constructors"]], "\u5efa\u7acb C \u8207 C++ \u64f4\u5145\u5957\u4ef6": [[71, "building-c-and-c-extensions"]], "\u5efa\u7acb Futures \u548c Tasks": [[126, "creating-futures-and-tasks"]], "\u5efa\u7acb sockets": [[337, "creating-sockets"]], "\u5efa\u7acb\u4e00\u500b Socket": [[107, "creating-a-socket"]], "\u5efa\u7acb\u4e00\u500b\u5256\u6790\u5668": [[120, "creating-a-parser"]], "\u5efa\u7acb\u5b50\u884c\u7a0b": [[137, "creating-subprocesses"]], "\u5efa\u7acb\u7db2\u8def\u4f3a\u670d\u5668": [[126, "creating-network-servers"]], "\u5efa\u7acb\u865b\u64ec\u74b0\u5883": [[399, "creating-virtual-environments"], [453, "creating-virtual-environments"]], "\u5efa\u7f6e Python": [[460, "building-python"]], "\u5efa\u7f6e Windows \u4e0a\u7684 C \u548c C++ \u64f4\u5145": [[77, "building-c-and-c-extensions-on-windows"]], "\u5efa\u7f6e\u548c C API \u66f4\u6539": [[476, "build-and-c-api-changes"]], "\u5efa\u7f6e\u8b8a\u66f4": [[472, "build-changes"], [473, "build-changes"]], "\u5efa\u7f6e\u9700\u6c42": [[456, "build-requirements"]], "\u5f15\u5165 (imports)": [[122, "imports"]], "\u5f15\u5165\u6a21\u7d44": [[31, "importing-modules"], [280, "importing-modules"]], "\u5f15\u5165\u6a94\u6848 (include files)": [[35, "include-files"]], "\u5f15\u6578 (arguments) \u548c\u53c3\u6578 (parameters) \u6709\u4ec0\u9ebc\u5340\u5225\uff1f": [[85, "what-is-the-difference-between-arguments-and-parameters"]], "\u5f15\u767c\u4f8b\u5916": [[443, "raising-exceptions"]], "\u5f15\u767c\u53ca\u8655\u7406\u591a\u500b\u7121\u95dc\u7684\u4f8b\u5916": [[443, "raising-and-handling-multiple-unrelated-exceptions"]], "\u5f31\u53c3\u7167\u7269\u4ef6": [[67, "weak-reference-objects"], [402, "weak-reference-objects"]], "\u5f31\u5f15\u7528 (Weak References)": [[452, "weak-references"]], "\u5f9e URL \u53d6\u5f97\u8cc7\u6e90": [[110, "fetching-urls"]], "\u5f9e\u5957\u4ef6\u4e2d import *": [[450, "importing-from-a-package"]], "\u5f9e\u6a94\u6848\u95dc\u806f": [[461, "from-file-associations"]], "\u5f9e\u73fe\u6709\u7269\u4ef6\u5efa\u7acb mock": [[390, "creating-a-mock-from-an-existing-object"]], "\u5faa\u74b0\u5783\u573e\u56de\u6536\u7684\u652f\u63f4": [[28, "supporting-cyclic-garbage-collection"]], "\u5feb\u901f\u5c0e\u5f15": [[389, "quick-guide"]], "\u6027\u80fd\u548c\u8cc7\u6e90\u4f7f\u7528\u60c5\u6cc1": [[476, "performance-and-resource-usage"]], "\u60c5\u5883\u8b8a\u6578\u7269\u4ef6": [[17, "context-variables-objects"]], "\u6163\u7528 (Idiomatic) \u7528\u6cd5": [[114, "idiomatic-usage"], [114, "id1"]], "\u61c9\u5c0d\u53ef\u8b8a\u5f15\u6578": [[390, "coping-with-mutable-arguments"]], "\u61c9\u7528\u6280\u5de7\u548c\u5178\u7bc4\u5be6\u52d9\uff08best practices\uff09": [[326, "recipes-and-best-practices"]], "\u6211\u4ec0\u9ebc\u6642\u5019\u53ef\u4ee5\u4f9d\u9760 is \u904b\u7b97\u5b50\u9032\u884c\u8b58\u5225\u6027\u6e2c\u8a66\uff1f": [[85, "when-can-i-rely-on-identity-tests-with-the-is-operator"]], "\u6211\u4f7f\u7528\u5b89\u88dd\u6a94\u6848\u65b0\u589e\u4e86\u4e00\u500b\u6a21\u7d44\uff0c\u4f46 make \u5931\u6557\u4e86\uff1b\u70ba\u4ec0\u9ebc\uff1f": [[79, "i-added-a-module-using-the-setup-file-and-the-make-fails-why"]], "\u6211\u53ef\u4ee5\u5728 C \u4e2d\u5efa\u7acb\u81ea\u5df1\u7684\u51fd\u5f0f\u55ce\uff1f": [[79, "can-i-create-my-own-functions-in-c"]], "\u6211\u53ef\u4ee5\u5728 C++ \u4e2d\u5efa\u7acb\u81ea\u5df1\u7684\u51fd\u5f0f\u55ce\uff1f": [[79, "id2"]], "\u6211\u5728\u6211\u7684\u7a0b\u5f0f\u7576\u4e2d\u6c92\u611f\u89ba\u5230\u4efb\u4f55\u52a0\u901f\uff0c\u70ba\u4ec0\u9ebc\uff1f": [[473, "i-don-t-see-any-speedups-in-my-workload-why"]], "\u6211\u5982\u4f55\u4f7f Python script \u57f7\u884c\u5728 Unix\uff1f": [[84, "how-do-i-make-a-python-script-executable-on-unix"]], "\u6211\u5982\u4f55\u627e\u5230\u57f7\u884c\u4efb\u52d9 X \u7684\u6a21\u7d44\u6216\u61c9\u7528\u7a0b\u5f0f\uff1f": [[84, "how-do-i-find-a-module-or-application-to-perform-task-x"]], "\u6211\u5982\u4f55\u6355\u6349 PyErr_Print() \u7684\u8f38\u51fa\uff08\u6216\u4efb\u4f55\u5370\u51fa\u5230 stdout/stderr \u7684\u6771\u897f\uff09\uff1f": [[79, "how-do-i-catch-the-output-from-pyerr-print-or-anything-that-prints-to-stdout-stderr"]], "\u6211\u5f9e\u4f86\u6c92\u6709\u5beb\u904e\u7a0b\u5f0f\uff0c\u6709\u6c92\u6709 Python \u7684\u6559\u5b78\uff1f": [[80, "i-ve-never-programmed-before-is-there-a-python-tutorial"]], "\u6211\u60f3\u5728\u6211\u7684 Linux \u7cfb\u7d71\u4e0a\u7de8\u8b6f\u4e00\u500b Python \u6a21\u7d44\uff0c\u4f46\u662f\u7f3a\u5c11\u4e00\u4e9b\u6a94\u6848\u3002\u70ba\u4ec0\u9ebc\uff1f": [[79, "i-want-to-compile-a-python-module-on-my-linux-system-but-some-files-are-missing-why"]], "\u6211\u61c9\u8a72\u4f7f\u7528\u4ec0\u9ebc\u6a21\u7d44\u4f86\u8f14\u52a9\u7522\u751f HTML\uff1f": [[84, "what-module-should-i-use-to-help-with-generating-html"]], "\u6211\u7121\u6cd5\u8b93\u9375\u7e6b\u7d50 (key binding) \u5728 Tkinter \u4e2d\u4f5c\u7528\uff1a\u70ba\u4ec0\u9ebc\uff1f": [[81, "i-can-t-get-key-bindings-to-work-in-tkinter-why"]], "\u6211\u7684\u57f7\u884c\u7dd2\u4f3c\u4e4e\u90fd\u6c92\u6709\u904b\u884c\uff1a\u70ba\u4ec0\u9ebc\uff1f": [[84, "none-of-my-threads-seem-to-run-why"]], "\u6211\u7684\u7a0b\u5f0f\u78bc\u5982\u4f55\u767c\u73fe\u7269\u4ef6\u7684\u540d\u7a31\uff1f": [[85, "how-can-my-code-discover-the-name-of-an-object"]], "\u6211\u80fd\u5920\u81ea\u884c\u522a\u9664 Python \u55ce\uff1f": [[83, "can-i-delete-python"]], "\u6211\u8981\u5982\u4f55\u53d6\u5f97 Python \u7684\u8aaa\u660e\u6587\u4ef6\uff1f": [[80, "how-do-i-get-documentation-on-python"]], "\u6211\u8981\u5982\u4f55\u5f97\u5230 Python \u7684\u539f\u59cb\u78bc\u8907\u672c\uff1f": [[80, "how-do-i-obtain-a-copy-of-the-python-source"]], "\u6211\u8a72\u5982\u4f55...\uff1f": [[111, "how-do-i"]], "\u6211\u8a72\u5982\u4f55\u5728\u7a0b\u5f0f\u78bc\u4e2d\u7372\u53d6\u9019\u4e9b\u52a0\u901f\uff1f": [[473, "how-should-i-write-my-code-to-utilize-these-speedups"]], "\u6211\u9700\u8981\u559c\u6b61\u300cMonty Python \u7684\u98db\u884c\u99ac\u6232\u5718\u300d\u55ce\uff1f": [[80, "do-i-have-to-like-monty-python-s-flying-circus"]], "\u6240\u6709\u5e73\u53f0": [[131, "all-platforms"]], "\u6240\u9700\u8cc7\u6e90\u66f4\u5c11 (cheaper) \u4e14\u60f0\u6027\u7684 (lazy)) Python \u5e40 (frame)": [[473, "cheaper-lazy-python-frames"]], "\u624b\u52d5\u53d6\u6d88\u5b57\u4e32\u5316\u8a3b\u91cb": [[88, "manually-un-stringizing-stringized-annotations"]], "\u624b\u52d5\u683c\u5f0f\u5316\u5b57\u4e32": [[446, "manual-string-formatting"]], "\u624b\u52d5\u8a2d\u5b9a": [[341, "manual-settings"]], "\u6253\u5305\u6642\u9808\u8003\u616e\u7684\u4e8b\u60c5": [[114, "packaging-considerations"]], "\u6253\u958b\u7db2\u8def\u9023\u7dda": [[126, "opening-network-connections"]], "\u6280\u8853\u7d30\u7bc0": [[183, "technical-detail"]], "\u628a Python \u7576\u4f5c\u8a08\u7b97\u6a5f\u4f7f\u7528": [[449, "using-python-as-a-calculator"]], "\u628a\u6a21\u7d44\u7576\u4f5c\u8173\u672c\u57f7\u884c": [[450, "executing-modules-as-scripts"]], "\u62bd\u8c61\u6587\u6cd5 (Abstract Grammar)": [[122, "abstract-grammar"]], "\u62bd\u8c61\u7269\u4ef6\u5c64 (Abstract Objects Layer)": [[2, "abstract-objects-layer"]], "\u62c6\u89e3\u5f15\u6578\u5217\u8868\uff08Unpacking Argument Lists\uff09": [[441, "unpacking-argument-lists"]], "\u6307\u5357\u8207\u6559\u5b78": [[123, null]], "\u6307\u5b9a\u4e0d\u660e\u78ba\u7684\u5f15\u6578": [[89, "specifying-ambiguous-arguments"]], "\u6392\u5e8f\u6280\u6cd5": [[108, "sorting-techniques"]], "\u6392\u5e8f\u7a69\u5b9a\u6027\u8207\u8907\u5408\u6392\u5e8f": [[108, "sort-stability-and-complex-sorts"]], "\u6392\u7a0b\u56de\u547c\u51fd\u5f0f": [[126, "scheduling-callbacks"]], "\u6392\u7a0b\u5ef6\u9072\u7684\u56de\u547c\u51fd\u5f0f": [[126, "scheduling-delayed-callbacks"]], "\u63a8\u85a6\u7684\u7b2c\u4e09\u65b9\u5de5\u5177": [[74, "recommended-third-party-tools"]], "\u63cf\u8ff0": [[120, "description"]], "\u63cf\u8ff0\u5668 (Descriptor) \u6307\u5357": [[93, "descriptor-guide"]], "\u63cf\u8ff0\u5668\u5354\u5b9a": [[93, "descriptor-protocol"]], "\u641c\u5c0b\u4e00\u500b\u5df2\u6392\u5e8f\u7684 list": [[147, "searching-sorted-lists"]], "\u6458\u8981": [[88, null], [92, null], [93, "abstract"], [100, null], [106, null], [107, null]], "\u6458\u8981 -- \u767c\u5e03\u91cd\u9ede": [[472, "summary-release-highlights"]], "\u64b0\u5beb test \u5957\u4ef6\u7684\u55ae\u5143\u6e2c\u8a66": [[362, "writing-unit-tests-for-the-test-package"]], "\u64f4\u5145": [[128, "extending"]], "\u64f4\u5145/\u5d4c\u5165\u5e38\u898b\u554f\u984c\u96c6": [[79, "extending-embedding-faq"]], "\u64f4\u5145\u548c\u5d4c\u5165 Python \u76f4\u8b6f\u5668": [[74, "extending-and-embedding-the-python-interpreter"]], "\u652f\u63f4 __dunder__ \u540d\u7a31": [[211, "supported-dunder-names"]], "\u652f\u63f4 _sunder_ \u540d\u7a31": [[211, "supported-sunder-names"]], "\u6539\u52d5 XML \u6a94\u6848": [[413, "modifying-an-xml-file"]], "\u6539\u9032\u7684\u6a21\u7d44": [[472, "improved-modules"], [473, "improved-modules"], [474, "improved-modules"], [476, "improved-modules"], [477, "improved-modules"], [478, "improved-modules"], [479, "improved-modules"], [480, "improved-modules"], [481, "improved-modules"], [482, "improved-modules"]], "\u6548\u80fd\u8003\u91cf": [[147, "performance-notes"]], "\u6548\u80fd\u91cf\u6e2c": [[451, "performance-measurement"]], "\u6559\u5b78": [[120, null], [384, "tutorial"], [413, "tutorial"]], "\u6574\u5408\u5316\u958b\u767c\u5de5\u5177 (IDE)": [[459, "the-ide"]], "\u6574\u6578": [[470, "integers"]], "\u6574\u6578\u578b\u5225\u7684\u4f4d\u5143\u904b\u7b97": [[344, "bitwise-operations-on-integer-types"]], "\u6574\u6578\u578b\u5225\u7684\u9644\u52a0 methods": [[344, "additional-methods-on-integer-types"]], "\u6574\u6578\u7269\u4ef6": [[39, "integer-objects"]], "\u6578\u503c\u578b\u5225 --- int\u3001float\u3001complex": [[344, "numeric-types-int-float-complex"]], "\u6578\u503c\u578b\u5225\u7684\u96dc\u6e4a": [[344, "hashing-of-numeric-types"]], "\u6578\u503c\u7269\u4ef6": [[16, "numeric-objects"]], "\u6578\u503c\u7684\u968e\u5c64": [[289, "the-numeric-tower"]], "\u6578\u503c\u8207\u6578\u5b78\u6a21\u7d44": [[290, "numeric-and-mathematical-modules"]], "\u6578\u5b57": [[5, "numbers"]], "\u6578\u5b57 (Number)": [[449, "numbers"]], "\u6578\u5b57\u5354\u5b9a": [[47, "number-protocol"]], "\u6578\u5b57\u548c\u5b57\u4e32": [[85, "numbers-and-strings"]], "\u6578\u5b78\u548c\u6578\u503c": [[84, "mathematics-and-numerics"]], "\u6578\u5b78\u76f8\u95dc": [[451, "mathematics"]], "\u6578\u8ad6\u8207\u8868\u73fe\u51fd\u5f0f": [[275, "number-theoretic-and-representation-functions"]], "\u6587\u4ef6": [[475, "documentation"]], "\u6587\u5b57": [[449, "text"]], "\u6587\u5b57 I/O": [[258, "text-i-o"], [258, "id1"], [258, "id3"]], "\u6587\u5b57\u7de8\u78bc": [[258, "text-encoding"]], "\u6587\u672c (Literals)": [[122, "literals"]], "\u6587\u672c\u8655\u7406 (Text Processing) \u670d\u52d9": [[363, "text-processing-services"]], "\u65b0 API": [[476, "new-apis"]], "\u65b0\u529f\u80fd": [[472, "new-features"], [472, "id1"]], "\u65b0\u589e opcode": [[473, "new-opcodes"]], "\u65b0\u589e\u6a21\u7d44": [[462, "new-modules"], [473, "new-modules"], [474, "new-modules"], [478, "new-modules"], [481, "new-modules"]], "\u65b0\u589e\u7279\u6027": [[473, "new-features"], [473, "whatsnew311-c-api-new-features"], [474, "new-features"], [474, "id4"]], "\u65b0\u6a21\u7d44": [[472, "new-modules"], [476, "new-modules"], [477, "new-modules"], [479, "new-modules"], [480, "new-modules"], [482, "new-modules"]], "\u65b0\u95dc\u9375\u5b57": [[479, "new-keywords"]], "\u65b9\u6cd5": [[33, "methods"]], "\u65b9\u6cd5\u7269\u4ef6 (Method Objects)": [[44, "method-objects"]], "\u65b9\u6cd5\u8207\u5c6c\u6027": [[296, "methods-and-properties"]], "\u65e5\u671f\u6642\u9593\u7269\u4ef6": [[419, "datetime-objects"]], "\u65e5\u671f\u8207\u6642\u9593": [[451, "dates-and-times"]], "\u65e5\u8a8c\u8a18\u9304": [[125, "logging"]], "\u65e5\u8a8c\u8a18\u9304 (Logging)": [[452, "logging"]], "\u660e\u986f\u7684\u8b8a\u66f4": [[476, "visible-changes"]], "\u662f\u5426\u53ef\u4ee5\u5728\u7b49\u5f85 I/O \u6642\u8655\u7406 Tk \u4e8b\u4ef6\uff1f": [[81, "can-i-have-tk-events-handled-while-waiting-for-i-o"]], "\u662f\u5426\u6709\u53ef\u4ee5\u4f7f\u7528\u5728\u7a0b\u5f0f\u78bc\u968e\u6bb5,\u5177\u6709\u4e2d\u65b7\u9ede,\u6b65\u9a5f\u57f7\u884c\u7b49\u529f\u80fd\u7684\u9664\u932f\u5668\uff1f": [[85, "is-there-a-source-code-level-debugger-with-breakpoints-single-stepping-etc"]], "\u662f\u5426\u6709\u7b49\u6548\u65bc C \u7684 \"?:\" \u4e09\u5143\u904b\u7b97\u5b50\uff1f": [[85, "is-there-an-equivalent-of-c-s-ternary-operator"]], "\u662f\u5426\u6709\u9069\u7528\u65bc Python \u7684 curses/termcap \u5957\u4ef6\uff1f": [[84, "is-there-a-curses-termcap-package-for-python"]], "\u662f\u5426\u6709\u95dc\u65bc Python \u7684\u4efb\u4f55\u5df2\u51fa\u7248\u6587\u7ae0\u53ef\u4f9b\u53c3\u8003\uff1f": [[80, "are-there-any-published-articles-about-python-that-i-can-reference"]], "\u66f4\u591a\u7bc4\u4f8b": [[390, "further-examples"]], "\u66f4\u597d\u7684\u932f\u8aa4\u8a0a\u606f": [[472, "better-error-messages"]], "\u66f4\u5feb\u7684 CPython": [[473, "faster-cpython"]], "\u66f4\u5feb\u7684\u555f\u52d5": [[473, "faster-startup"]], "\u66f4\u5feb\u7684\u904b\u884c\u7a0b\u5f0f": [[473, "faster-runtime"]], "\u66f4\u83ef\u9e97\u7684\u8f38\u51fa\u683c\u5f0f": [[446, "fancier-output-formatting"]], "\u66f4\u8907\u96dc\u7684\u5f15\u6578\u5339\u914d": [[390, "more-complex-argument-matching"]], "\u66f4\u9032\u968e\u4e00\u9ede": [[89, "getting-a-little-more-advanced"]], "\u66ff\u4ee3\u7522\u751f\u5668": [[318, "alternative-generator"]], "\u6700\u4f73\u5316": [[465, "optimizations"], [466, "optimizations"], [467, "optimizations"], [468, "optimizations"], [469, "optimizations"], [471, "optimizations"], [472, "optimizations"], [473, "optimizations"], [474, "optimizations"], [475, "optimizations"], [476, "optimizations"], [478, "optimizations"], [479, "optimizations"], [480, "optimizations"], [481, "optimizations"], [482, "optimizations"]], "\u6700\u7d42\u5316\u5668\u7269\u4ef6": [[402, "finalizer-objects"]], "\u6700\u7d42\u5316\u5668\u8207 __del__() \u65b9\u6cd5\u7684\u6bd4\u8f03": [[402, "comparing-finalizers-with-del-methods"]], "\u6700\u9ad8\u5c64\u7d1a\u5143\u4ef6": [[437, "top-level-components"]], "\u6709\u591a\u5c11\u4eba\u5728\u4f7f\u7528 Python\uff1f": [[80, "how-many-people-are-using-python"]], "\u6709\u66f4\u52d5/\u88ab\u79fb\u9664\u7684 opcode": [[473, "changed-removed-opcodes"]], "\u6709\u6c92\u6709 Python \u5c08\u5c6c\u7684\u65b0\u805e\u7fa4\u7d44\u6216\u90f5\u4ef6\u8a0e\u8ad6\u7fa4\uff1f": [[80, "is-there-a-newsgroup-or-mailing-list-devoted-to-python"]], "\u6709\u6c92\u6709\u4efb\u4f55\u91cd\u8981\u7684\u5c08\u6848\u4f7f\u7528 Python \u5b8c\u6210\u958b\u767c\uff1f": [[80, "have-any-significant-projects-been-done-in-python"]], "\u6709\u6c92\u6709\u5de5\u5177\u80fd\u5920\u5e6b\u5fd9\u627e bug \u6216\u57f7\u884c\u975c\u614b\u5206\u6790\uff1f": [[85, "are-there-tools-to-help-find-bugs-or-perform-static-analysis"]], "\u6709\u6c92\u6709\u95dc\u65bc Python \u7684\u66f8\uff1f": [[80, "are-there-any-books-on-python"]], "\u6709\u7528\u5230 JIT \u7de8\u8b6f\u5668\u55ce\uff1f": [[473, "is-there-a-jit-compiler"]], "\u6709\u7528\u7684\u5de8\u96c6": [[35, "useful-macros"]], "\u672a\u4f86\u7248\u672c\u4e2d\u5f85\u6c7a\u8b70\u7684\u79fb\u9664\u9805\u76ee": [[474, "pending-removal-in-future-versions"], [474, "id9"]], "\u672a\u5b89\u88dd pip": [[111, "pip-not-installed"]], "\u6821\u6b63": [[308, "calibration"]], "\u6838\u5bc6\u5ea6\u4f30\u8a08 (Kernel density estimation)": [[343, "kernel-density-estimation"]], "\u6838\u5fc3\u8a9e\u8a00": [[85, "core-language"]], "\u6839\u7bc0\u9ede": [[122, "root-nodes"]], "\u683c\u5f0f\u5316\u5b57\u4e32\u7684\u820a\u65b9\u6cd5": [[446, "old-string-formatting"]], "\u683c\u5f0f\u5316\u6587\u5b57\u8a9e\u6cd5": [[345, "format-string-syntax"]], "\u683c\u5f0f\u5316\u7684\u5b57\u4e32\u6587\u672c (Formatted String Literals)": [[446, "formatted-string-literals"]], "\u683c\u5f0f\u7bc4\u4f8b": [[345, "format-examples"]], "\u683c\u5f0f\u898f\u683c (Format Specification) \u8ff7\u4f60\u8a9e\u8a00": [[345, "format-specification-mini-language"]], "\u68c4\u7528\u7684\u5225\u540d": [[386, "deprecated-aliases"]], "\u6982\u5ff5": [[89, "concepts"]], "\u6a19\u6e96\u51fd\u5f0f\u5eab": [[473, "standard-library"]], "\u6a19\u6e96\u578b\u5225\u968e\u5c64": [[428, "the-standard-type-hierarchy"]], "\u6a19\u6e96\u6a21\u7d44": [[450, "standard-modules"]], "\u6a19\u6e96\u6a21\u7d44\u5eab": [[451, "batteries-included"]], "\u6a19\u6e96\u9078\u9805": [[376, "standard-options"]], "\u6a19\u7a31 (nominal) \u5b50\u578b\u5225 vs \u7d50\u69cb\u5b50\u578b\u5225": [[386, "nominal-vs-structural-subtyping"]], "\u6a21\u5f0f\u5339\u914d (pattern matching)": [[122, "pattern-matching"]], "\u6a21\u5f0f\u548c\u985e\u5225": [[472, "patterns-and-classes"]], "\u6a21\u677f\u5316 (Templating)": [[452, "templating"]], "\u6a21\u677f\u5b57\u4e32": [[345, "template-strings"]], "\u6a21\u7d44": [[85, "modules"], [344, "modules"], [428, "modules"], [430, "examples"], [473, "modules"]], "\u6a21\u7d44 (Module)": [[450, "modules"]], "\u6a21\u7d44 API": [[210, "module-api"]], "\u6a21\u7d44\u4ecb\u9762": [[299, "module-interface"]], "\u6a21\u7d44\u5167\u5bb9": [[113, "module-contents"], [175, "module-contents"], [181, "module-contents"], [211, "module-contents"], [319, "module-contents"], [333, "module-contents"], [334, "module-contents"], [337, "module-contents"], [386, "module-contents"], [410, "module-contents"]], "\u6a21\u7d44\u51fd\u5f0f": [[166, "module-functions"], [173, "module-functions"]], "\u6a21\u7d44\u547d\u4ee4\u5217\u4ecb\u9762": [[156, "modules-command-line-interface-cli"]], "\u6a21\u7d44\u5c6c\u6027": [[173, "module-attributes"]], "\u6a21\u7d44\u5f15\u5165\u7cfb\u7d71": [[432, "the-import-system"]], "\u6a21\u7d44\u7269\u4ef6\u6a21\u7d44": [[45, "module-objects"]], "\u6a21\u7d44\u7684\u641c\u5c0b\u8def\u5f91": [[450, "the-module-search-path"]], "\u6a21\u7d44\u8b8a\u6578": [[223, "module-variables"]], "\u6a21\u7d44\u8b8a\u66f4": [[462, "module-changes"]], "\u6a94\u6848\u4e4b\u842c\u7528\u5b57\u5143 (File Wildcards)": [[451, "file-wildcards"]], "\u6a94\u6848\u63cf\u8ff0\u5668\u7684\u932f\u8aa4\u7bc4\u4f8b": [[188, "bad-file-descriptor-error-example"]], "\u6a94\u6848\u683c\u5f0f": [[217, "file-formats"]], "\u6a94\u6848\u7269\u4ef6 (File Objects)": [[24, "file-objects"]], "\u6a94\u6848\u7269\u4ef6\u7684 method": [[446, "methods-of-file-objects"]], "\u6a94\u6848\u8207\u76ee\u9304\u5b58\u53d6": [[219, "file-and-directory-access"]], "\u6a94\u6848\u8f38\u5165": [[437, "file-input"]], "\u6aa2\u67e5\u7b26\u865f\u8868": [[351, "examining-symbol-tables"]], "\u6b0a\u6756\u61c9\u7576\u4f7f\u7528\u591a\u5c11\u500b\u4f4d\u5143\u7d44\uff1f": [[326, "how-many-bytes-should-tokens-use"]], "\u6b63\u898f\u8868\u793a\u5f0f\u8a9e\u6cd5": [[319, "regular-expression-syntax"]], "\u6b77\u53f2": [[107, "history"]], "\u6bd4\u8f03\u51fd\u5f0f (comparison functions)": [[108, "comparison-functions"]], "\u6bd4\u8f03\u904b\u7b97": [[344, "comparisons"]], "\u6c92\u6709\u842c\u7528\u5b57\u5143 (wildcard) \u7684\u884c\u70ba": [[472, "behavior-without-the-wildcard"]], "\u6cbf\u9769\u8207\u6388\u6b0a": [[426, "history-and-license"]], "\u6cdb\u578b": [[386, "generics"]], "\u6d41\u7a0b\u63a7\u5236": [[122, "control-flow"]], "\u6d6e\u9ede\u6578\u7684\u9644\u52a0 methods": [[344, "additional-methods-on-float"]], "\u6d6e\u9ede\u6578\u904b\u7b97\uff1a\u554f\u984c\u8207\u9650\u5236": [[444, "floating-point-arithmetic-issues-and-limitations"]], "\u6d6e\u9ede\u6578\uff08Floating Point\uff09\u7269\u4ef6": [[25, "floating-point-objects"]], "\u6df1\u5165\u4e86\u89e3\u51fd\u5f0f\u5b9a\u7fa9": [[441, "more-on-defining-functions"]], "\u6df1\u5165\u4e86\u89e3\u689d\u4ef6 (Condition)": [[442, "more-on-conditions"]], "\u6df1\u5165\u4e86\u89e3\u6a21\u7d44": [[450, "more-on-modules"]], "\u6df1\u5165\u4e86\u89e3\u6d41\u7a0b\u63a7\u5236": [[441, "more-control-flow-tools"]], "\u6dfa\u5617\u6ecb\u5473": [[439, "whetting-your-appetite"]], "\u70ba\u4ec0\u9ebc -22 // 10 \u56de\u50b3 -3\uff1f": [[85, "why-does-22-10-return-3"]], "\u70ba\u4ec0\u9ebc Python \u4f7f\u7528\u7e2e\u6392\u5c07\u9673\u8ff0\u5f0f\u9032\u884c\u5206\u7d44\uff1f": [[78, "why-does-python-use-indentation-for-grouping-of-statements"]], "\u70ba\u4ec0\u9ebc Python \u5167\u6c92\u6709 switch \u6216 case \u9673\u8ff0\u5f0f\uff1f": [[78, "why-isn-t-there-a-switch-or-case-statement-in-python"]], "\u70ba\u4ec0\u9ebc Python \u5b57\u4e32\u4e0d\u53ef\u8b8a\u52d5\uff1f": [[78, "why-are-python-strings-immutable"]], "\u70ba\u4ec0\u9ebc Python \u6709\u6642\u9700\u8981\u9019\u9ebc\u9577\u7684\u6642\u9593\u624d\u80fd\u958b\u59cb\uff1f": [[86, "why-does-python-sometimes-take-so-long-to-start"]], "\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a?": [[83, "why-is-python-installed-on-my-machine"]], "\u70ba\u4ec0\u9ebc\u6211\u6703\u5f9e\u7c21\u55ae\u7684\u6578\u5b78\u904b\u7b97\u5f97\u5230\u5947\u602a\u7684\u7d50\u679c\uff1f": [[78, "why-am-i-getting-strange-results-with-simple-arithmetic-operations"]], "\u70ba\u4ec0\u9ebc\u66f4\u6539 list 'y' \u4e5f\u6703\u66f4\u6539 list 'x'\uff1f": [[85, "why-did-changing-list-y-also-change-list-x"]], "\u70ba\u4ec0\u9ebc\u7576\u8b8a\u6578\u6709\u503c\u6642\uff0c\u6211\u4ecd\u5f97\u5230\u932f\u8aa4\u8a0a\u606f UnboundLocalError\uff1f": [[85, "why-am-i-getting-an-unboundlocalerror-when-the-variable-has-a-value"]], "\u70ba\u4ec0\u9ebc\u8981\u53d6\u540d\u70ba Python\uff1f": [[80, "why-is-it-called-python"]], "\u70ba\u4f55 CPython \u4e0d\u4f7f\u7528\u66f4\u591a\u50b3\u7d71\u7684\u5783\u573e\u56de\u6536\u6a5f\u5236\uff1f": [[78, "why-doesn-t-cpython-use-a-more-traditional-garbage-collection-scheme"]], "\u70ba\u4f55 Python \u5141\u8a31\u5728\u4e32\u5217\u548c\u5143\u7d44\u672b\u7aef\u52a0\u4e0a\u9017\u865f\uff1f": [[78, "why-does-python-allow-commas-at-the-end-of-lists-and-tuples"]], "\u70ba\u4f55 Python \u5c0d\u65bc\u4e00\u4e9b\u529f\u80fd\u5be6\u4f5c\u4f7f\u7528\u65b9\u6cd5\uff08\u50cf\u662f list.index()\uff09\uff0c\u53e6\u4e00\u4e9b\u4f7f\u7528\u51fd\u5f0f\uff08\u50cf\u662f len(list)\uff09\uff1f": [[78, "why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list"]], "\u70ba\u4f55 Python \u6c92\u6709\u5c6c\u6027\u8ce6\u503c\u7684 with \u9673\u8ff0\u5f0f\uff1f": [[78, "why-doesn-t-python-have-a-with-statement-for-attribute-assignments"]], "\u70ba\u4f55 if\u3001while\u3001def\u3001class \u9673\u8ff0\u5f0f\u88e1\u9700\u8981\u5192\u865f\uff1f": [[78, "why-are-colons-required-for-the-if-while-def-class-statements"]], "\u70ba\u4f55 join() \u662f\u5b57\u4e32\u65b9\u6cd5\u800c\u975e\u4e32\u5217 (list) \u6216\u5143\u7d44 (tuple) \u65b9\u6cd5\uff1f": [[78, "why-is-join-a-string-method-instead-of-a-list-or-tuple-method"]], "\u70ba\u4f55 lambda \u904b\u7b97\u5f0f\u4e0d\u80fd\u5305\u542b\u9673\u8ff0\u5f0f\uff1f": [[78, "why-can-t-lambda-expressions-contain-statements"]], "\u70ba\u4f55 list.sort() \u4e0d\u662f\u56de\u50b3\u6392\u5e8f\u904e\u7684\u4e32\u5217\uff1f": [[78, "why-doesn-t-list-sort-return-the-sorted-list"]], "\u70ba\u4f55\u300cself\u300d\u5728\u65b9\u6cd5 (method) \u5b9a\u7fa9\u548c\u547c\u53eb\u6642\u4e00\u5b9a\u8981\u660e\u78ba\u4f7f\u7528\uff1f": [[78, "why-must-self-be-used-explicitly-in-method-definitions-and-calls"]], "\u70ba\u4f55\u4e0d\u80fd\u5728\u76f4\u8b6f\u5668\u4e0a\u6a21\u64ec\u57f7\u884c\u7dd2\uff0c\u800c\u8981\u4f7f\u7528\u4f5c\u696d\u7cfb\u7d71\u7684\u7279\u5b9a\u5be6\u4f5c\u65b9\u5f0f\uff1f": [[78, "can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation"]], "\u70ba\u4f55\u5b57\u5178\u7684\u9375\u4e00\u5b9a\u662f\u4e0d\u53ef\u8b8a\u7684\uff1f": [[78, "why-must-dictionary-keys-be-immutable"]], "\u70ba\u4f55\u6211\u4e0d\u80fd\u5728\u904b\u7b97\u5f0f (expression) \u4e2d\u4f7f\u7528\u6307\u6d3e\u904b\u7b97\uff1f": [[78, "why-can-t-i-use-an-assignment-in-an-expression"]], "\u70ba\u4f55\u6c92\u6709 goto \u8a9e\u6cd5\uff1f": [[78, "why-is-there-no-goto"]], "\u70ba\u4f55\u6d6e\u9ede\u6578\u904b\u7b97\u5982\u6b64\u4e0d\u7cbe\u78ba\uff1f": [[78, "why-are-floating-point-calculations-so-inaccurate"]], "\u70ba\u4f55\u7522\u751f\u5668 (generator) \u4e0d\u652f\u63f4 with \u9673\u8ff0\u5f0f\uff1f": [[78, "why-don-t-generators-support-the-with-statement"]], "\u70ba\u4f55\u7d14\u5b57\u4e32 (r-string) \u4e0d\u80fd\u4ee5\u53cd\u659c\u7dda\u7d50\u5c3e\uff1f": [[78, "why-can-t-raw-strings-r-strings-end-with-a-backslash"]], "\u70ba\u4f55\u8981\u628a\u5143\u7d44 (tuple) \u548c\u4e32\u5217 (list) \u5206\u6210\u5169\u500b\u8cc7\u6599\u578b\u614b\uff1f": [[78, "why-are-there-separate-tuple-and-list-data-types"]], "\u7248\u6b0a\u5ba3\u544a": [[69, "copyright"]], "\u7269\u4ef6": [[85, "objects"]], "\u7269\u4ef6\u3001\u578b\u5225\u548c\u53c3\u7167\u8a08\u6578": [[35, "objects-types-and-reference-counts"]], "\u7269\u4ef6\u5354\u5b9a": [[49, "object-protocol"]], "\u7269\u4ef6\u547c\u53eb API": [[10, "object-calling-api"]], "\u7279\u5225\u578b\u5225": [[386, "special-types"]], "\u7279\u5225\u578b\u5225\u539f\u8a9e (primitive)": [[386, "special-typing-primitives"]], "\u7279\u6b8a\u53c3\u6578": [[441, "special-parameters"]], "\u7279\u6b8a\u53ef\u5beb\u5c6c\u6027": [[428, "special-writable-attributes"], [428, "index-65"]], "\u7279\u6b8a\u552f\u8b80\u5c6c\u6027": [[428, "special-read-only-attributes"], [428, "index-58"], [428, "index-64"]], "\u7372\u53d6 HTTP \u6a19\u982d": [[136, "get-http-headers"]], "\u7372\u53d6\u4e8b\u4ef6\u8ff4\u5708": [[130, "obtaining-the-event-loop"]], "\u7372\u5f97\u4e26\u5b89\u88dd Python \u7684\u6700\u65b0\u7248\u672c": [[460, "getting-and-installing-the-latest-version-of-python"]], "\u73fe\u5728\u53ef\u4ee5\u4f86\u5b78\u7fd2\u4e9b\u4ec0\u9ebc\uff1f": [[454, "what-now"]], "\u74b0\u5883\u8b8a\u6578": [[455, "environment-variables"]], "\u7522\u751f\u5668 (Generator)": [[440, "generators"]], "\u7522\u751f\u5668 (Generator) \u7269\u4ef6": [[29, "generator-objects"]], "\u7522\u751f\u5668\u904b\u7b97\u5f0f": [[440, "generator-expressions"]], "\u7522\u751f\u6b0a\u6756\uff08token\uff09": [[326, "generating-tokens"]], "\u7522\u751f\u7684\u6a94\u6848": [[456, "generated-files"]], "\u7522\u751f\u7b26\u865f\u8868": [[351, "generating-symbol-tables"]], "\u7528 pip \u7ba1\u7406\u5957\u4ef6": [[453, "managing-packages-with-pip"]], "\u7528\u65bc PYTHON 0.9.0 \u81f3 1.2 \u7684 CWI \u6388\u6b0a\u5408\u7d04": [[426, "cwi-license-agreement-for-python-0-9-0-through-1-2"]], "\u7528\u65bc PYTHON 1.6.1 \u7684 CNRI \u6388\u6b0a\u5408\u7d04": [[426, "cnri-license-agreement-for-python-1-6-1"]], "\u7528\u65bc PYTHON 2.0 \u7684 BEOPEN.COM \u6388\u6b0a\u5408\u7d04": [[426, "beopen-com-license-agreement-for-python-2-0"]], "\u7528\u65bc PYTHON 3.12.4 \u7684 PSF \u6388\u6b0a\u5408\u7d04": [[426, "psf-license-agreement-for-python-release"]], "\u7528\u65bc PYTHON 3.12.4 \u8aaa\u660e\u6587\u4ef6\u5167\u7a0b\u5f0f\u78bc\u7684 ZERO-CLAUSE BSD \u6388\u6b0a": [[426, "zero-clause-bsd-license-for-code-in-the-python-release-documentation"]], "\u7528\u65bc Unicode \u7de8\u78bc\u932f\u8aa4\u8655\u7406\u7a0b\u5f0f\u7684\u8a3b\u518a API": [[14, "registry-api-for-unicode-encoding-error-handlers"]], "\u7528\u65bc\u6a21\u64ec\u7684\u8499\u5730\u5361\u7f85 (Monte Carlo) \u8f38\u5165": [[343, "monte-carlo-inputs-for-simulations"]], "\u7528\u65bc\u7a0b\u5f0f\u78bc\u7269\u4ef6\u7684\u65b9\u6cd5": [[428, "methods-on-code-objects"]], "\u7528\u6cd5": [[235, "usage"]], "\u7528\u6cd5\u7bc4\u4f8b": [[149, "examples-of-usage"], [234, "examples-of-usage"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1adate": [[183, "examples-of-usage-date"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1adatetime": [[183, "examples-of-usage-datetime"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1atime": [[183, "examples-of-usage-time"]], "\u7528\u6cd5\u7bc4\u4f8b\uff1atimedelta": [[183, "examples-of-usage-timedelta"]], "\u7528\u8a3b\u89e3\u4f7f\u4f8b\u5916\u66f4\u8a73\u7d30": [[443, "enriching-exceptions-with-notes"]], "\u7531 site module\uff08\u6a21\u7d44\uff09\u6240\u6dfb\u589e\u7684\u5e38\u6578": [[168, "constants-added-by-the-site-module"]], "\u7576 CPython \u7d50\u675f\u6642\uff0c\u70ba\u4f55\u6240\u6709\u7684\u8a18\u61b6\u9ad4\u4e0d\u6703\u88ab\u91cb\u653e\uff1f": [[78, "why-isn-t-all-memory-freed-when-cpython-exits"]], "\u7576\u521d\u70ba\u4ec0\u9ebc Python \u6703\u88ab\u5275\u9020\u51fa\u4f86\uff1f": [[80, "why-was-python-created-in-the-first-place"]], "\u7576\u5b89\u88dd\u6642\u4e0d\u4e0b\u8f09": [[461, "installing-without-downloading"]], "\u7576\u6211\u7de8\u8f2f\u9700\u8981\u5f15\u5165\u7684\u6a21\u7d44\u4e26\u91cd\u65b0\u5f15\u5165\u5b83\u6642\uff0c\u66f4\u52d5\u6c92\u6709\u53cd\u61c9\u51fa\u4f86\u3002\u70ba\u4ec0\u9ebc\u6703\u9019\u6a23\uff1f": [[85, "when-i-edit-an-imported-module-and-reimport-it-the-changes-don-t-show-up-why-does-this-happen"]], "\u758a\u4ee3\u5668 (Iterator)": [[440, "iterators"]], "\u758a\u4ee3\u5668\u5354\u8b70": [[36, "iterator-protocol"]], "\u758a\u4ee3\u5668\u578b\u5225": [[344, "iterator-types"]], "\u758a\u4ee3\u5668\uff08Iterator\uff09\u7269\u4ef6": [[37, "iterator-objects"]], "\u767c\u5e03 Python \u6a21\u7d44": [[70, "distributing-python-modules"]], "\u767c\u5e03\u91cd\u9ede\u6458\u8981": [[473, "summary-release-highlights"], [474, "summary-release-highlights"]], "\u767c\u884c Python \u61c9\u7528\u7a0b\u5f0f": [[459, "distributing-python-applications"]], "\u76e3\u807d\u6a94\u6848\u63cf\u8ff0\u5668\u4ee5\u9032\u884c\u8b80\u53d6\u4e8b\u4ef6": [[126, "watch-a-file-descriptor-for-read-events"]], "\u76e3\u8996\u6a94\u6848\u63cf\u8ff0\u5668": [[126, "watching-file-descriptors"]], "\u76ee\u9304": [[78, "id1"], [79, "id1"], [80, "id1"], [81, "id1"], [84, "id1"], [85, "id1"], [86, "id1"], [93, "id1"], [247, "menus"]], "\u76f4\u63a5 API \u51fd\u5f0f": [[8, "direct-api-functions"]], "\u76f4\u63a5\u4f7f\u7528 socket \u7269\u4ef6": [[126, "working-with-socket-objects-directly"]], "\u76f4\u8b6f\u5668\u7684\u8b8a\u66f4\u8207\u4fee\u6b63": [[464, "interpreter-changes-and-fixes"]], "\u76f4\u8b6f\u5668\u8207\u5b83\u7684\u74b0\u5883": [[448, "the-interpreter-and-its-environment"]], "\u76f8\u4e92\u885d\u7a81\u7684\u9078\u9805": [[89, "conflicting-options"]], "\u76f8\u5bb9\u6027\u9078\u9805": [[376, "compatibility-options"]], "\u76f8\u95dc\u9023\u7d50": [[464, "related-links"]], "\u771f\u503c\u6aa2\u6e2c": [[344, "truth-value-testing"]], "\u77ed\u9078\u9805": [[89, "short-options"]], "\u79c1\u6709\u8b8a\u6578": [[440, "private-variables"]], "\u79fb\u690d Python \u7a0b\u5f0f\u78bc": [[476, "porting-python-code"]], "\u79fb\u690d\u5230 Python 3.10": [[472, "porting-to-python-3-10"], [472, "id2"]], "\u79fb\u690d\u5230 Python 3.3": [[476, "porting-to-python-3-3"]], "\u79fb\u690d\u81f3 Python 3.11": [[473, "porting-to-python-3-11"], [473, "whatsnew311-c-api-porting"]], "\u7a0b\u5f0f\u5316\u4ecb\u9762": [[300, "programmatic-interface"]], "\u7a0b\u5f0f\u6846\u67b6": [[222, "program-frameworks"]], "\u7a0b\u5f0f\u78bc\u7269\u4ef6": [[13, "code-objects"]], "\u7a0b\u5f0f\u78bc\u7684\u6e05\u9664": [[477, "code-cleanups"]], "\u7a0b\u5f0f\u958b\u767c\u5e38\u898b\u554f\u7b54\u96c6": [[85, "programming-faq"]], "\u7a3d\u6838\u4e8b\u4ef6\u8868": [[142, "audit-events-table"]], "\u7a69\u5b9a ABI": [[57, "stable-abi"]], "\u7a69\u5b9a\u7684\u61c9\u7528\u7a0b\u5f0f\u4e8c\u9032\u4f4d\u4ecb\u9762": [[57, "stable-application-binary-interface"]], "\u7bc0\u9ede (Node) \u985e\u5225": [[122, "node-classes"]], "\u7bc4\u4f8b": [[34, "example"], [42, "examples"], [63, "examples"], [98, "examples"], [103, "examples"], [120, "example"], [126, "examples"], [133, "examples"], [134, "examples"], [136, "examples"], [137, "examples"], [147, "examples"], [172, "example"], [173, "examples"], [175, "examples"], [214, "example"], [235, "examples"], [240, "examples"], [242, "examples"], [243, "examples"], [244, "example"], [250, "examples"], [270, "examples"], [271, "examples"], [283, "examples"], [299, "example"], [299, "examples"], [304, "examples"], [307, "example"], [309, "example"], [314, "example"], [318, "examples"], [320, "example"], [329, "examples"], [330, "example"], [333, "examples"], [337, "example"], [338, "examples"], [341, "examples"], [347, "examples"], [356, "examples"], [358, "examples"], [360, "examples"], [361, "example"], [367, "examples"], [378, "examples"], [379, "examples"], [382, "examples"], [398, "example"], [402, "example"], [407, "examples"], [413, "example"], [413, "id3"], [421, "examples"], [423, "examples"]], "\u7bc4\u4f8b\u8207\u9326\u56ca\u5999\u8a08": [[343, "examples-and-recipes"]], "\u7c21\u4ecb": [[35, "introduction"], [95, "introduction"], [106, "introduction"], [110, "introduction"], [151, "introduction"], [250, "introduction"], [257, "introduction"], [283, "introduction"], [329, "introduction"], [434, "introduction"], [453, "introduction"], [462, "introduction"], [463, "introduction"], [464, "introduction"]], "\u7c21\u55ae\u6a21\u5f0f\uff1a\u8207\u5b57\u9762\u503c\u5339\u914d": [[472, "simple-pattern-match-to-a-literal"]], "\u7c21\u55ae\u7bc4\u4f8b": [[356, "simple-example"], [388, "basic-example"]], "\u7c21\u55ae\u9673\u8ff0\u5f0f": [[436, "simple-statements"]], "\u7c3f\u8a18\u51fd\u5f0f (bookkeeping functions)": [[318, "bookkeeping-functions"]], "\u7cfb\u7d71\u51fd\u5f0f": [[59, "system-functions"]], "\u7d14\u8def\u5f91": [[296, "pure-paths"]], "\u7d44\u5408\u4f4d\u7f6e\u5f15\u6578\u548c\u53ef\u9078\u5f15\u6578": [[89, "combining-positional-and-optional-arguments"]], "\u7d50\u675f\u9023\u7dda": [[107, "disconnecting"]], "\u7d50\u8ad6": [[89, "conclusion"]], "\u7d66\u578b\u5225\u5be6\u4f5c\u8005\u7684\u8a3b\u8a18": [[289, "notes-for-type-implementers"]], "\u7d93\u5178\u6a5f\u7387\u554f\u984c": [[343, "classic-probability-problems"]], "\u7d9c\u5408\u904b\u7b97\u5f0f (comprehensions)": [[122, "comprehensions"]], "\u7db2\u8def (Network)/\u7db2\u969b\u7db2\u8def (Internet) \u7a0b\u5f0f": [[84, "network-internet-programming"]], "\u7db2\u8def\u5354\u5b9a (Internet protocols) \u53ca\u652f\u63f4": [[256, "internet-protocols-and-support"]], "\u7db2\u8def\u5b58\u53d6": [[451, "internet-access"]], "\u7db2\u969b\u7db2\u8def\u8cc7\u6599\u8655\u7406": [[285, "internet-data-handling"]], "\u7de8\u5beb\u6a19\u6e96": [[35, "coding-standards"]], "\u7de8\u89e3\u78bc\u5668\u67e5\u627e API": [[14, "codec-lookup-api"]], "\u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u652f\u63f4\u51fd\u5f0f": [[14, "codec-registry-and-support-functions"]], "\u7de8\u8b6f Python \u5728 Windows": [[461, "compiling-python-on-windows"]], "\u7de8\u8b6f\u5668\u65d7\u6a19": [[122, "compiler-flags"], [456, "compiler-flags"]], "\u7de8\u8f2f\u5668\u8207 IDE": [[457, "editors-and-ides"]], "\u7de9\u885d\u5354\u5b9a (Buffer Protocol)": [[7, "buffer-protocol"]], "\u7e3d\u652c": [[99, null]], "\u7e3d\u89bd": [[42, "overview"], [258, "overview"]], "\u7e7c\u627f": [[181, "inheritance"]], "\u7e7c\u627f (Inheritance)": [[440, "inheritance"]], "\u7e7c\u627f\u81ea\u5167\u5efa\u7684\u4f8b\u5916": [[213, "inheriting-from-built-in-exceptions"]], "\u80cc\u666f": [[100, "background"], [292, "background"]], "\u81ea\u8a02 Python \u76f4\u8b6f\u5668": [[180, "custom-python-interpreters"]], "\u81ea\u8a02\u51fd\u5f0f": [[428, "user-defined-functions"]], "\u81ea\u8a02\u5b57\u4e32\u683c\u5f0f": [[345, "custom-string-formatting"]], "\u81f4\u8b1d": [[109, "acknowledgements"], [230, "acknowledgements"], [462, "acknowledgements"], [463, "acknowledgements"], [464, "acknowledgements"], [465, "acknowledgements"], [466, "acknowledgements"], [467, "acknowledgements"], [468, "acknowledgements"], [469, "acknowledgements"]], "\u8207 Python \u76f8\u95dc\u7684\u8def\u5f91\u548c\u6a94\u6848": [[460, "python-related-paths-and-files"]], "\u8207 os \u6a21\u7d44\u88e1\u7684\u5de5\u5177\u7684\u5c0d\u61c9\u95dc\u4fc2": [[296, "correspondence-to-tools-in-the-os-module"]], "\u8207\u578b\u5225\u63d0\u793a\u76f8\u95dc\u7684\u65b0\u529f\u80fd": [[472, "new-features-related-to-type-hints"]], "\u820a\u5f0f\u7de9\u885d\u5354\u5b9a (Buffer Protocol)": [[48, "old-buffer-protocol"]], "\u8655\u7406\u4f8b\u5916": [[443, "handling-exceptions"]], "\u8655\u7406\u932f\u8aa4 (Bug)": [[1, "dealing-with-bugs"]], "\u865b\u64ec\u4e8b\u4ef6": [[376, "id4"], [376, "id8"]], "\u865b\u64ec\u74b0\u5883\u5982\u4f55\u904b\u4f5c": [[399, "how-venvs-work"]], "\u865b\u64ec\u74b0\u5883\u8207\u5957\u4ef6": [[453, "virtual-environments-and-packages"]], "\u865b\u64ec\u74b0\u5883\uff08Virtual environment\uff09": [[461, "virtual-environments"]], "\u884c\u5167 Python \u51fd\u5f0f\u547c\u53eb": [[473, "inlined-python-function-calls"]], "\u884c\u7a0b\u53c3\u6578": [[293, "process-parameters"]], "\u884c\u7a0b\u63a7\u5236": [[59, "process-control"]], "\u884c\u7a0b\u7ba1\u7406": [[293, "process-management"]], "\u8853\u8a9e\u8868": [[87, "glossary"]], "\u8868\u793a\u6cd5\u8aa4\u5dee (Representation Error)": [[444, "representation-error"]], "\u88ab\u53d6\u4ee3\u7684\u64cd\u4f5c\u78bc (opcode)": [[473, "replaced-opcodes"]], "\u88ab\u6536\u9304\u8edf\u9ad4\u7684\u6388\u6b0a\u8207\u81f4\u8b1d": [[426, "licenses-and-acknowledgements-for-incorporated-software"]], "\u88dc\u5145\u8aaa\u660e": [[440, "odds-and-ends"]], "\u88dd\u98fe-\u6392\u5e8f-\u79fb\u9664\u88dd\u98fe (decorate-sort-undecorate)": [[108, "decorate-sort-undecorate"]], "\u8907\u5408\u9673\u8ff0\u5f0f": [[427, "compound-statements"]], "\u8907\u6578\u7269\u4ef6": [[15, "complex-number-objects"]], "\u8907\u96dc\u6a21\u5f0f\u548c\u842c\u7528\u5b57\u5143": [[472, "complex-patterns-and-the-wildcard"]], "\u89e3\u91cb": [[340, "explanation"]], "\u8a18\u61b6\u9ad4\u7ba1\u7406": [[42, "memory-management"]], "\u8a2d\u5b9a": [[459, "configuration"]], "\u8a2d\u5b9a Python": [[461, "configuring-python"]], "\u8a2d\u5b9a SIGINT \u548c SIGTERM \u7684\u8a0a\u865f\u8655\u7406\u7a0b\u5f0f": [[126, "set-signal-handlers-for-sigint-and-sigterm"]], "\u8a2d\u5b9a\u56de\u50b3\u503c\u548c\u5c6c\u6027": [[390, "setting-return-values-and-attributes"]], "\u8a2d\u5b9a\u8173\u672c": [[456, "configure-script"]], "\u8a2d\u5b9a\u9078\u9805": [[456, "configure-options"]], "\u8a2d\u8a08\u548c\u6b77\u53f2\u5e38\u898b\u554f\u7b54\u96c6": [[78, "design-and-history-faq"]], "\u8a3b\u518a\u4e00\u500b\u4f7f\u7528\u4e32\u6d41\u4f86\u7b49\u5f85\u8cc7\u6599\u7684\u958b\u653e socket": [[136, "register-an-open-socket-to-wait-for-data-using-streams"]], "\u8a3b\u89e3": [[110, "footnotes"], [348, "notes"]], "\u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10": [[88, "annotations-best-practices"]], "\u8a3b\u91cb callable \u7269\u4ef6": [[386, "annotating-callable-objects"]], "\u8a3b\u91cb\u5143\u7d44 (tuple)": [[386, "annotating-tuples"]], "\u8a5e\u6cd5\u5206\u6790": [[435, "lexical-analysis"]], "\u8a72 patch \u4f55\u8655": [[389, "where-to-patch"]], "\u8a8d\u8b49\u8655\u7406": [[341, "certificate-handling"]], "\u8a9e\u5883\u5efa\u7acb": [[341, "context-creation"]], "\u8a9e\u6cd5\u548c\u64cd\u4f5c": [[472, "syntax-and-operations"]], "\u8a9e\u6cd5\u8b8a\u66f4": [[470, "changed-syntax"]], "\u8a9e\u6cd5\u8b8a\u66f4\u6982\u8981": [[470, "overview-of-syntax-changes"]], "\u8a9e\u6cd5\u932f\u8aa4 (Syntax Error)": [[443, "syntax-errors"]], "\u8a9e\u8a00/\u5167\u5efa": [[473, "language-builtins"]], "\u8aaa\u660e\u6587\u4ef6\u5b57\u4e32 (Documentation Strings)": [[441, "documentation-strings"]], "\u8aaa\u660e\u6587\u4ef6\u7684\u932f\u8aa4": [[1, "documentation-bugs"]], "\u8b66\u544a": [[213, "warnings"]], "\u8b80\u53d6\u5668\u7269\u4ef6": [[175, "reader-objects"]], "\u8b80\u53d6\u76ee\u9304": [[296, "reading-directories"]], "\u8b80\u5beb\u6a94\u6848": [[446, "reading-and-writing-files"]], "\u8b8a\u6578": [[122, "variables"]], "\u8cc7\u6599 marshal \u7684\u652f\u63f4": [[41, "data-marshalling-support"]], "\u8cc7\u6599\u578b\u5225": [[182, "data-types"], [211, "data-types"]], "\u8cc7\u6599\u58d3\u7e2e": [[451, "data-compression"]], "\u8cc7\u6599\u58d3\u7e2e\u8207\u4fdd\u5b58": [[119, "data-compression-and-archiving"]], "\u8cc7\u6599\u5eab": [[84, "databases"]], "\u8cc7\u6599\u6301\u4e45\u6027 (Data Persistence)": [[298, "data-persistence"]], "\u8cc7\u6599\u6a21\u578b": [[428, "data-model"]], "\u8cc7\u6599\u7d50\u69cb": [[442, "data-structures"]], "\u8de8\u5e73\u53f0": [[303, "cross-platform"]], "\u8df3\u812b\u5e8f\u5217": [[435, "escape-sequences"]], "\u8edf\u95dc\u9375\u5b57": [[435, "soft-keywords"]], "\u8edf\u9ad4\u5c01\u88dd\u8207\u767c\u5e03": [[192, "software-packaging-and-distribution"]], "\u8edf\u9ad4\u6cbf\u9769": [[426, "history-of-the-software"]], "\u8f14\u52a9\u51fd\u5f0f": [[345, "helper-functions"], [389, "helpers"]], "\u8f38\u5165\u548c\u8f38\u51fa": [[446, "input-and-output"]], "\u8f38\u5165\u8207\u8f38\u51fa": [[84, "input-and-output"]], "\u8f38\u51fa\u683c\u5f0f\u5316 (Output Formatting)": [[452, "output-formatting"]], "\u8f49\u63db\u5230\u6975\u5ea7\u6a19\u548c\u5f9e\u6975\u5ea7\u6a19\u505a\u8f49\u63db": [[154, "conversions-to-and-from-polar-coordinates"]], "\u8f49\u63db\u8868": [[379, "conversion-table"]], "\u8fd1\u4f3c\u4e8c\u9805\u5206\u5e03": [[343, "approximating-binomial-distributions"]], "\u8ff4\u5708\u5167\u7684 break \u548c continue \u9673\u8ff0\u5f0f\u53ca else \u5b50\u53e5": [[441, "break-and-continue-statements-and-else-clauses-on-loops"]], "\u8ff4\u5708\u6280\u5de7": [[442, "looping-techniques"]], "\u8ffd\u8e64\u547c\u53eb\u9806\u5e8f\u8207\u66f4\u7c21\u6f54\u7684\u547c\u53eb\u65b7\u8a00": [[390, "tracking-order-of-calls-and-less-verbose-call-assertions"]], "\u8ffd\u8e64\u6240\u6709\u547c\u53eb": [[390, "tracking-all-calls"]], "\u900f\u904e GUI \u57f7\u884c\u8173\u672c": [[459, "running-scripts-with-a-gui"]], "\u900f\u904e mock \u5f15\u767c\u4f8b\u5916": [[390, "raising-exceptions-with-mocks"]], "\u901a\u7528\u4f5c\u696d\u7cfb\u7d71\u670d\u52d9": [[118, "generic-operating-system-services"]], "\u901a\u7528\u5c6c\u6027": [[296, "general-properties"]], "\u901a\u7528\u7269\u4ef6\u7d50\u69cb": [[58, "common-object-structures"]], "\u901a\u7528\u9805\u76ee\u8207\u88dd\u98fe\u5668": [[211, "utilities-and-decorators"]], "\u9032\u4e00\u6b65\u4e86\u89e3 List\uff08\u4e32\u5217\uff09": [[442, "more-on-lists"]], "\u904b\u7b97\u5b50": [[296, "operators"]], "\u904b\u7b97\u5b50\u8207\u51fd\u5f0f\u9593\u7684\u5c0d\u6620": [[291, "mapping-operators-to-functions"]], "\u904b\u7b97\u5f0f": [[122, "expressions"], [430, "expressions"]], "\u904b\u7b97\u5f0f\u8f38\u5165": [[437, "expression-input"]], "\u904b\u884c\u4e00\u500b asyncio \u7a0b\u5f0f": [[135, "running-an-asyncio-program"]], "\u904b\u884c\u5b50\u884c\u7a0b": [[126, "running-subprocesses"]], "\u905e\u8ff4\u63a7\u5236": [[10, "recursion-control"]], "\u9077\u79fb\u5ef6\u4f38\u6a21\u7d44\u5230 Python 3": [[91, "porting-extension-modules-to-python-3"]], "\u9078\u64c7\u6027\u52a0\u5165\u7684\u7de8\u78bc\u8b66\u544a": [[258, "opt-in-encodingwarning"]], "\u9078\u9805": [[376, "options"], [376, "id1"], [376, "id3"], [376, "id5"], [376, "id6"], [376, "id7"]], "\u90e8\u5206 mocking": [[390, "partial-mocking"]], "\u914d\u7f6e Python": [[456, "configure-python"]], "\u932f\u8aa4\u548c\u4f8b\u5916": [[443, "errors-and-exceptions"]], "\u932f\u8aa4\u8655\u7406": [[438, "error-handling"]], "\u932f\u8aa4\u8655\u7406 API": [[126, "error-handling-api"]], "\u932f\u8aa4\u8f38\u51fa\u91cd\u65b0\u5c0e\u5411\u8207\u7a0b\u5f0f\u7d42\u6b62": [[451, "error-output-redirection-and-program-termination"]], "\u9375\u51fd\u5f0f (key functions)": [[108, "key-functions"]], "\u958b\u59cb": [[461, "getting-started"]], "\u958b\u59cb\u8b93\u81ea\u5df1\u8ca2\u737b Python": [[1, "getting-started-contributing-to-python-yourself"]], "\u958b\u767c GUI \u7a0b\u5f0f": [[459, "gui-programming"]], "\u958b\u767c\u5de5\u5177": [[187, "development-tools"]], "\u9593\u594f\u66f2\uff1a\u7a0b\u5f0f\u78bc\u98a8\u683c (Coding Style)": [[441, "intermezzo-coding-style"]], "\u95dc\u65bc": [[473, "about"]], "\u95dc\u65bc Reproducibility\uff08\u5fa9\u73fe\u6027\uff09\u7684\u6ce8\u610f\u4e8b\u9805": [[318, "notes-on-reproducibility"]], "\u95dc\u65bc\u540d\u7a31\u8207\u7269\u4ef6\u7684\u4e00\u6bb5\u8a71": [[440, "a-word-about-names-and-objects"]], "\u95dc\u65bc\u5b58\u53d6\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f\u4f7f\u7528 Python \u7684\u5408\u7d04\u689d\u6b3e": [[426, "terms-and-conditions-for-accessing-or-otherwise-using-python"]], "\u95dc\u65bc\u9019\u4e9b\u8aaa\u660e\u6587\u4ef6": [[0, "about-these-documents"]], "\u95dc\u9375\u5b57": [[435, "keywords"]], "\u95dc\u9375\u5b57\u5f15\u6578": [[441, "keyword-arguments"]], "\u95dc\u9375\u8853\u8a9e": [[111, "key-terms"]], "\u9644\u9304": [[438, "appendix"]], "\u9650\u5236": [[308, "limitations"]], "\u9664\u932f\u5efa\u7f6e": [[35, "debugging-builds"]], "\u9664\u932f\u6a21\u5f0f": [[125, "debug-mode"]], "\u9664\u932f\u6a21\u5f0f\u8b8a\u6578": [[455, "debug-mode-variables"]], "\u9664\u932f\u8207\u6548\u80fd\u5206\u6790": [[185, "debugging-and-profiling"]], "\u9673\u8ff0\u5f0f": [[122, "statements"]], "\u9694\u96e2\u64f4\u5145\u6a21\u7d44": [[100, "isolating-extension-modules"]], "\u96a8\u610f\u7684\u5099\u8a3b": [[440, "random-remarks"]], "\u96a8\u6a5f\u7522\u751f": [[341, "random-generation"]], "\u96c6\u5408 (Sets)": [[442, "sets"]], "\u96c6\u5408\u7269\u4ef6": [[55, "set-objects"]], "\u96d9\u66f2\u51fd\u6578": [[154, "hyperbolic-functions"]], "\u96dc\u6e4a\u6f14\u7b97\u6cd5": [[235, "hash-algorithms"]], "\u96dc\u9805": [[460, "miscellaneous"], [473, "misc"]], "\u96dc\u9805\u8aaa\u660e": [[108, "odds-and-ends"]], "\u96e2\u5ea6 (spread) \u7684\u6e2c\u91cf": [[343, "measures-of-spread"]], "\u96e2\u6563\u5206\u5e03": [[318, "discrete-distributions"]], "\u975c\u614b DTrace \u63a2\u91dd": [[98, "static-dtrace-probes"]], "\u975c\u614b SystemTap \u6a19\u8a18": [[98, "static-systemtap-markers"]], "\u975e\u540c\u6b65 socket \u670d\u52d9": [[426, "asynchronous-socket-services"]], "\u975e\u963b\u585e\u7684 Sockets": [[107, "non-blocking-sockets"]], "\u9810\u5b9a\u7fa9\u7684\u6e05\u7406\u52d5\u4f5c": [[443, "predefined-clean-up-actions"]], "\u9810\u8a2d\u5de5\u5ee0\u51fd\u5f0f": [[181, "default-factory-functions"]], "\u9810\u8a2d\u5f15\u6578\u503c": [[441, "default-argument-values"]], "\u985e\u5225\u7269\u4ef6\u7684\u578b\u5225": [[386, "the-type-of-class-objects"]], "\u985e\u5225\u8207\u51fd\u5f0f": [[255, "classes-and-functions"]], "\u985e\u5225\u8b8a\u6578": [[181, "class-variables"]], "\u985e\u5225\u968e\u5c64": [[258, "class-hierarchy"]], "\u986f\u8457\u6700\u4f73\u5316": [[477, "significant-optimizations"]], "\u9a57\u8b49\u6191\u8b49": [[341, "verifying-certificates"]], "\u9ad8\u968e API": [[33, "high-level-api"], [123, null]], "\u9ad8\u968e API \u7d22\u5f15": [[124, "high-level-api-index"]], "\u9ad8\u968e\u6a21\u7d44\u4ecb\u9762": [[258, "high-level-module-interface"]]}, "docnames": ["about", "bugs", "c-api/abstract", "c-api/allocation", "c-api/apiabiversion", "c-api/arg", "c-api/bool", "c-api/buffer", "c-api/bytearray", "c-api/bytes", "c-api/call", "c-api/capsule", "c-api/cell", "c-api/code", "c-api/codec", "c-api/complex", "c-api/concrete", "c-api/contextvars", "c-api/conversion", "c-api/coro", "c-api/datetime", "c-api/descriptor", "c-api/dict", "c-api/exceptions", "c-api/file", "c-api/float", "c-api/frame", "c-api/function", "c-api/gcsupport", "c-api/gen", "c-api/hash", "c-api/import", "c-api/index", "c-api/init", "c-api/init_config", "c-api/intro", "c-api/iter", "c-api/iterator", "c-api/list", "c-api/long", "c-api/mapping", "c-api/marshal", "c-api/memory", "c-api/memoryview", "c-api/method", "c-api/module", "c-api/none", "c-api/number", "c-api/objbuffer", "c-api/object", "c-api/objimpl", "c-api/perfmaps", "c-api/refcounting", "c-api/reflection", "c-api/sequence", "c-api/set", "c-api/slice", "c-api/stable", "c-api/structures", "c-api/sys", "c-api/tuple", "c-api/type", "c-api/typehints", "c-api/typeobj", "c-api/unicode", "c-api/utilities", "c-api/veryhigh", "c-api/weakref", "contents", "copyright", "distributing/index", "extending/building", "extending/embedding", "extending/extending", "extending/index", "extending/newtypes", "extending/newtypes_tutorial", "extending/windows", "faq/design", "faq/extending", "faq/general", "faq/gui", "faq/index", "faq/installed", "faq/library", "faq/programming", "faq/windows", "glossary", "howto/annotations", "howto/argparse", "howto/clinic", "howto/cporting", "howto/curses", "howto/descriptor", "howto/enum", "howto/functional", "howto/gdb_helpers", "howto/index", "howto/instrumentation", "howto/ipaddress", "howto/isolating-extensions", "howto/logging", "howto/logging-cookbook", "howto/mro", "howto/perf_profiling", "howto/pyporting", "howto/regex", "howto/sockets", "howto/sorting", "howto/unicode", "howto/urllib2", "installing/index", "library/2to3", "library/__future__", "library/__main__", "library/_thread", "library/abc", "library/aifc", "library/allos", "library/archiving", "library/argparse", "library/array", "library/ast", "library/asyncio", "library/asyncio-api-index", "library/asyncio-dev", "library/asyncio-eventloop", "library/asyncio-exceptions", "library/asyncio-extending", "library/asyncio-future", "library/asyncio-llapi-index", "library/asyncio-platforms", "library/asyncio-policy", "library/asyncio-protocol", "library/asyncio-queue", "library/asyncio-runner", "library/asyncio-stream", "library/asyncio-subprocess", "library/asyncio-sync", "library/asyncio-task", "library/atexit", "library/audioop", "library/audit_events", "library/base64", "library/bdb", "library/binary", "library/binascii", "library/bisect", "library/builtins", "library/bz2", "library/calendar", "library/cgi", "library/cgitb", "library/chunk", "library/cmath", "library/cmd", "library/cmdline", "library/code", "library/codecs", "library/codeop", "library/collections", "library/collections.abc", "library/colorsys", "library/compileall", "library/concurrency", "library/concurrent", "library/concurrent.futures", "library/configparser", "library/constants", "library/contextlib", "library/contextvars", "library/copy", "library/copyreg", "library/crypt", "library/crypto", "library/csv", "library/ctypes", "library/curses", "library/curses.ascii", "library/curses.panel", "library/custominterp", "library/dataclasses", "library/datatypes", "library/datetime", "library/dbm", "library/debug", "library/decimal", "library/development", "library/devmode", "library/dialog", "library/difflib", "library/dis", "library/distribution", "library/doctest", "library/email", "library/email.charset", "library/email.compat32-message", "library/email.contentmanager", "library/email.encoders", "library/email.errors", "library/email.examples", "library/email.generator", "library/email.header", "library/email.headerregistry", "library/email.iterators", "library/email.message", "library/email.mime", "library/email.parser", "library/email.policy", "library/email.utils", "library/ensurepip", "library/enum", "library/errno", "library/exceptions", "library/faulthandler", "library/fcntl", "library/filecmp", "library/fileformats", "library/fileinput", "library/filesys", "library/fnmatch", "library/fractions", "library/frameworks", "library/ftplib", "library/functional", "library/functions", "library/functools", "library/gc", "library/getopt", "library/getpass", "library/gettext", "library/glob", "library/graphlib", "library/grp", "library/gzip", "library/hashlib", "library/heapq", "library/hmac", "library/html", "library/html.entities", "library/html.parser", "library/http", "library/http.client", "library/http.cookiejar", "library/http.cookies", "library/http.server", "library/i18n", "library/idle", "library/imaplib", "library/imghdr", "library/importlib", "library/importlib.metadata", "library/importlib.resources", "library/importlib.resources.abc", "library/index", "library/inspect", "library/internet", "library/intro", "library/io", "library/ipaddress", "library/ipc", "library/itertools", "library/json", "library/keyword", "library/language", "library/linecache", "library/locale", "library/logging", "library/logging.config", "library/logging.handlers", "library/lzma", "library/mailbox", "library/mailcap", "library/markup", "library/marshal", "library/math", "library/mimetypes", "library/mm", "library/mmap", "library/modulefinder", "library/modules", "library/msilib", "library/msvcrt", "library/multiprocessing", "library/multiprocessing.shared_memory", "library/netdata", "library/netrc", "library/nis", "library/nntplib", "library/numbers", "library/numeric", "library/operator", "library/optparse", "library/os", "library/os.path", "library/ossaudiodev", "library/pathlib", "library/pdb", "library/persistence", "library/pickle", "library/pickletools", "library/pipes", "library/pkgutil", "library/platform", "library/plistlib", "library/poplib", "library/posix", "library/pprint", "library/profile", "library/pty", "library/pwd", "library/py_compile", "library/pyclbr", "library/pydoc", "library/pyexpat", "library/python", "library/queue", "library/quopri", "library/random", "library/re", "library/readline", "library/reprlib", "library/resource", "library/rlcompleter", "library/runpy", "library/sched", "library/secrets", "library/security_warnings", "library/select", "library/selectors", "library/shelve", "library/shlex", "library/shutil", "library/signal", "library/site", "library/smtplib", "library/sndhdr", "library/socket", "library/socketserver", "library/spwd", "library/sqlite3", "library/ssl", "library/stat", "library/statistics", "library/stdtypes", "library/string", "library/stringprep", "library/struct", "library/subprocess", "library/sunau", "library/superseded", "library/symtable", "library/sys", "library/sys.monitoring", "library/sys_path_init", "library/sysconfig", "library/syslog", "library/tabnanny", "library/tarfile", "library/telnetlib", "library/tempfile", "library/termios", "library/test", "library/text", "library/textwrap", "library/threading", "library/time", "library/timeit", "library/tk", "library/tkinter", "library/tkinter.colorchooser", "library/tkinter.dnd", "library/tkinter.font", "library/tkinter.messagebox", "library/tkinter.scrolledtext", "library/tkinter.tix", "library/tkinter.ttk", "library/token", "library/tokenize", "library/tomllib", "library/trace", "library/traceback", "library/tracemalloc", "library/tty", "library/turtle", "library/types", "library/typing", "library/unicodedata", "library/unittest", "library/unittest.mock", "library/unittest.mock-examples", "library/unix", "library/urllib", "library/urllib.error", "library/urllib.parse", "library/urllib.request", "library/urllib.robotparser", "library/uu", "library/uuid", "library/venv", "library/warnings", "library/wave", "library/weakref", "library/webbrowser", "library/windows", "library/winreg", "library/winsound", "library/wsgiref", "library/xdrlib", "library/xml", "library/xml.dom", "library/xml.dom.minidom", "library/xml.dom.pulldom", "library/xml.etree.elementtree", "library/xml.sax", "library/xml.sax.handler", "library/xml.sax.reader", "library/xml.sax.utils", "library/xmlrpc", "library/xmlrpc.client", "library/xmlrpc.server", "library/zipapp", "library/zipfile", "library/zipimport", "library/zlib", "library/zoneinfo", "license", "reference/compound_stmts", "reference/datamodel", "reference/executionmodel", "reference/expressions", "reference/grammar", "reference/import", "reference/index", "reference/introduction", "reference/lexical_analysis", "reference/simple_stmts", "reference/toplevel_components", "tutorial/appendix", "tutorial/appetite", "tutorial/classes", "tutorial/controlflow", "tutorial/datastructures", "tutorial/errors", "tutorial/floatingpoint", "tutorial/index", "tutorial/inputoutput", "tutorial/interactive", "tutorial/interpreter", "tutorial/introduction", "tutorial/modules", "tutorial/stdlib", "tutorial/stdlib2", "tutorial/venv", "tutorial/whatnow", "using/cmdline", "using/configure", "using/editors", "using/index", "using/mac", "using/unix", "using/windows", "whatsnew/2.0", "whatsnew/2.1", "whatsnew/2.2", "whatsnew/2.3", "whatsnew/2.4", "whatsnew/2.5", "whatsnew/2.6", "whatsnew/2.7", "whatsnew/3.0", "whatsnew/3.1", "whatsnew/3.10", "whatsnew/3.11", "whatsnew/3.12", "whatsnew/3.2", "whatsnew/3.3", "whatsnew/3.4", "whatsnew/3.5", "whatsnew/3.6", "whatsnew/3.7", "whatsnew/3.8", "whatsnew/3.9", "whatsnew/changelog", "whatsnew/index"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["about.rst", "bugs.rst", "c-api/abstract.rst", "c-api/allocation.rst", "c-api/apiabiversion.rst", "c-api/arg.rst", "c-api/bool.rst", "c-api/buffer.rst", "c-api/bytearray.rst", "c-api/bytes.rst", "c-api/call.rst", "c-api/capsule.rst", "c-api/cell.rst", "c-api/code.rst", "c-api/codec.rst", "c-api/complex.rst", "c-api/concrete.rst", "c-api/contextvars.rst", "c-api/conversion.rst", "c-api/coro.rst", "c-api/datetime.rst", "c-api/descriptor.rst", "c-api/dict.rst", "c-api/exceptions.rst", "c-api/file.rst", "c-api/float.rst", "c-api/frame.rst", "c-api/function.rst", "c-api/gcsupport.rst", "c-api/gen.rst", "c-api/hash.rst", "c-api/import.rst", "c-api/index.rst", "c-api/init.rst", "c-api/init_config.rst", "c-api/intro.rst", "c-api/iter.rst", "c-api/iterator.rst", "c-api/list.rst", "c-api/long.rst", "c-api/mapping.rst", "c-api/marshal.rst", "c-api/memory.rst", "c-api/memoryview.rst", "c-api/method.rst", "c-api/module.rst", "c-api/none.rst", "c-api/number.rst", "c-api/objbuffer.rst", "c-api/object.rst", "c-api/objimpl.rst", "c-api/perfmaps.rst", "c-api/refcounting.rst", "c-api/reflection.rst", "c-api/sequence.rst", "c-api/set.rst", "c-api/slice.rst", "c-api/stable.rst", "c-api/structures.rst", "c-api/sys.rst", "c-api/tuple.rst", "c-api/type.rst", "c-api/typehints.rst", "c-api/typeobj.rst", "c-api/unicode.rst", "c-api/utilities.rst", "c-api/veryhigh.rst", "c-api/weakref.rst", "contents.rst", "copyright.rst", "distributing/index.rst", "extending/building.rst", "extending/embedding.rst", "extending/extending.rst", "extending/index.rst", "extending/newtypes.rst", "extending/newtypes_tutorial.rst", "extending/windows.rst", "faq/design.rst", "faq/extending.rst", "faq/general.rst", "faq/gui.rst", "faq/index.rst", "faq/installed.rst", "faq/library.rst", "faq/programming.rst", "faq/windows.rst", "glossary.rst", "howto/annotations.rst", "howto/argparse.rst", "howto/clinic.rst", "howto/cporting.rst", "howto/curses.rst", "howto/descriptor.rst", "howto/enum.rst", "howto/functional.rst", "howto/gdb_helpers.rst", "howto/index.rst", "howto/instrumentation.rst", "howto/ipaddress.rst", "howto/isolating-extensions.rst", "howto/logging.rst", "howto/logging-cookbook.rst", "howto/mro.rst", "howto/perf_profiling.rst", "howto/pyporting.rst", "howto/regex.rst", "howto/sockets.rst", "howto/sorting.rst", "howto/unicode.rst", "howto/urllib2.rst", "installing/index.rst", "library/2to3.rst", "library/__future__.rst", "library/__main__.rst", "library/_thread.rst", "library/abc.rst", "library/aifc.rst", "library/allos.rst", "library/archiving.rst", "library/argparse.rst", "library/array.rst", "library/ast.rst", "library/asyncio.rst", "library/asyncio-api-index.rst", "library/asyncio-dev.rst", "library/asyncio-eventloop.rst", "library/asyncio-exceptions.rst", "library/asyncio-extending.rst", "library/asyncio-future.rst", "library/asyncio-llapi-index.rst", "library/asyncio-platforms.rst", "library/asyncio-policy.rst", "library/asyncio-protocol.rst", "library/asyncio-queue.rst", "library/asyncio-runner.rst", "library/asyncio-stream.rst", "library/asyncio-subprocess.rst", "library/asyncio-sync.rst", "library/asyncio-task.rst", "library/atexit.rst", "library/audioop.rst", "library/audit_events.rst", "library/base64.rst", "library/bdb.rst", "library/binary.rst", "library/binascii.rst", "library/bisect.rst", "library/builtins.rst", "library/bz2.rst", "library/calendar.rst", "library/cgi.rst", "library/cgitb.rst", "library/chunk.rst", "library/cmath.rst", "library/cmd.rst", "library/cmdline.rst", "library/code.rst", "library/codecs.rst", "library/codeop.rst", "library/collections.rst", "library/collections.abc.rst", "library/colorsys.rst", "library/compileall.rst", "library/concurrency.rst", "library/concurrent.rst", "library/concurrent.futures.rst", "library/configparser.rst", "library/constants.rst", "library/contextlib.rst", "library/contextvars.rst", "library/copy.rst", "library/copyreg.rst", "library/crypt.rst", "library/crypto.rst", "library/csv.rst", "library/ctypes.rst", "library/curses.rst", "library/curses.ascii.rst", "library/curses.panel.rst", "library/custominterp.rst", "library/dataclasses.rst", "library/datatypes.rst", "library/datetime.rst", "library/dbm.rst", "library/debug.rst", "library/decimal.rst", "library/development.rst", "library/devmode.rst", "library/dialog.rst", "library/difflib.rst", "library/dis.rst", "library/distribution.rst", "library/doctest.rst", "library/email.rst", "library/email.charset.rst", "library/email.compat32-message.rst", "library/email.contentmanager.rst", "library/email.encoders.rst", "library/email.errors.rst", "library/email.examples.rst", "library/email.generator.rst", "library/email.header.rst", "library/email.headerregistry.rst", "library/email.iterators.rst", "library/email.message.rst", "library/email.mime.rst", "library/email.parser.rst", "library/email.policy.rst", "library/email.utils.rst", "library/ensurepip.rst", "library/enum.rst", "library/errno.rst", "library/exceptions.rst", "library/faulthandler.rst", "library/fcntl.rst", "library/filecmp.rst", "library/fileformats.rst", "library/fileinput.rst", "library/filesys.rst", "library/fnmatch.rst", "library/fractions.rst", "library/frameworks.rst", "library/ftplib.rst", "library/functional.rst", "library/functions.rst", "library/functools.rst", "library/gc.rst", "library/getopt.rst", "library/getpass.rst", "library/gettext.rst", "library/glob.rst", "library/graphlib.rst", "library/grp.rst", "library/gzip.rst", "library/hashlib.rst", "library/heapq.rst", "library/hmac.rst", "library/html.rst", "library/html.entities.rst", "library/html.parser.rst", "library/http.rst", "library/http.client.rst", "library/http.cookiejar.rst", "library/http.cookies.rst", "library/http.server.rst", "library/i18n.rst", "library/idle.rst", "library/imaplib.rst", "library/imghdr.rst", "library/importlib.rst", "library/importlib.metadata.rst", "library/importlib.resources.rst", "library/importlib.resources.abc.rst", "library/index.rst", "library/inspect.rst", "library/internet.rst", "library/intro.rst", "library/io.rst", "library/ipaddress.rst", "library/ipc.rst", "library/itertools.rst", "library/json.rst", "library/keyword.rst", "library/language.rst", "library/linecache.rst", "library/locale.rst", "library/logging.rst", "library/logging.config.rst", "library/logging.handlers.rst", "library/lzma.rst", "library/mailbox.rst", "library/mailcap.rst", "library/markup.rst", "library/marshal.rst", "library/math.rst", "library/mimetypes.rst", "library/mm.rst", "library/mmap.rst", "library/modulefinder.rst", "library/modules.rst", "library/msilib.rst", "library/msvcrt.rst", "library/multiprocessing.rst", "library/multiprocessing.shared_memory.rst", "library/netdata.rst", "library/netrc.rst", "library/nis.rst", "library/nntplib.rst", "library/numbers.rst", "library/numeric.rst", "library/operator.rst", "library/optparse.rst", "library/os.rst", "library/os.path.rst", "library/ossaudiodev.rst", "library/pathlib.rst", "library/pdb.rst", "library/persistence.rst", "library/pickle.rst", "library/pickletools.rst", "library/pipes.rst", "library/pkgutil.rst", "library/platform.rst", "library/plistlib.rst", "library/poplib.rst", "library/posix.rst", "library/pprint.rst", "library/profile.rst", "library/pty.rst", "library/pwd.rst", "library/py_compile.rst", "library/pyclbr.rst", "library/pydoc.rst", "library/pyexpat.rst", "library/python.rst", "library/queue.rst", "library/quopri.rst", "library/random.rst", "library/re.rst", "library/readline.rst", "library/reprlib.rst", "library/resource.rst", "library/rlcompleter.rst", "library/runpy.rst", "library/sched.rst", "library/secrets.rst", "library/security_warnings.rst", "library/select.rst", "library/selectors.rst", "library/shelve.rst", "library/shlex.rst", "library/shutil.rst", "library/signal.rst", "library/site.rst", "library/smtplib.rst", "library/sndhdr.rst", "library/socket.rst", "library/socketserver.rst", "library/spwd.rst", "library/sqlite3.rst", "library/ssl.rst", "library/stat.rst", "library/statistics.rst", "library/stdtypes.rst", "library/string.rst", "library/stringprep.rst", "library/struct.rst", "library/subprocess.rst", "library/sunau.rst", "library/superseded.rst", "library/symtable.rst", "library/sys.rst", "library/sys.monitoring.rst", "library/sys_path_init.rst", "library/sysconfig.rst", "library/syslog.rst", "library/tabnanny.rst", "library/tarfile.rst", "library/telnetlib.rst", "library/tempfile.rst", "library/termios.rst", "library/test.rst", "library/text.rst", "library/textwrap.rst", "library/threading.rst", "library/time.rst", "library/timeit.rst", "library/tk.rst", "library/tkinter.rst", "library/tkinter.colorchooser.rst", "library/tkinter.dnd.rst", "library/tkinter.font.rst", "library/tkinter.messagebox.rst", "library/tkinter.scrolledtext.rst", "library/tkinter.tix.rst", "library/tkinter.ttk.rst", "library/token.rst", "library/tokenize.rst", "library/tomllib.rst", "library/trace.rst", "library/traceback.rst", "library/tracemalloc.rst", "library/tty.rst", "library/turtle.rst", "library/types.rst", "library/typing.rst", "library/unicodedata.rst", "library/unittest.rst", "library/unittest.mock.rst", "library/unittest.mock-examples.rst", "library/unix.rst", "library/urllib.rst", "library/urllib.error.rst", "library/urllib.parse.rst", "library/urllib.request.rst", "library/urllib.robotparser.rst", "library/uu.rst", "library/uuid.rst", "library/venv.rst", "library/warnings.rst", "library/wave.rst", "library/weakref.rst", "library/webbrowser.rst", "library/windows.rst", "library/winreg.rst", "library/winsound.rst", "library/wsgiref.rst", "library/xdrlib.rst", "library/xml.rst", "library/xml.dom.rst", "library/xml.dom.minidom.rst", "library/xml.dom.pulldom.rst", "library/xml.etree.elementtree.rst", "library/xml.sax.rst", "library/xml.sax.handler.rst", "library/xml.sax.reader.rst", "library/xml.sax.utils.rst", "library/xmlrpc.rst", "library/xmlrpc.client.rst", "library/xmlrpc.server.rst", "library/zipapp.rst", "library/zipfile.rst", "library/zipimport.rst", "library/zlib.rst", "library/zoneinfo.rst", "license.rst", "reference/compound_stmts.rst", "reference/datamodel.rst", "reference/executionmodel.rst", "reference/expressions.rst", "reference/grammar.rst", "reference/import.rst", "reference/index.rst", "reference/introduction.rst", "reference/lexical_analysis.rst", "reference/simple_stmts.rst", "reference/toplevel_components.rst", "tutorial/appendix.rst", "tutorial/appetite.rst", "tutorial/classes.rst", "tutorial/controlflow.rst", "tutorial/datastructures.rst", "tutorial/errors.rst", "tutorial/floatingpoint.rst", "tutorial/index.rst", "tutorial/inputoutput.rst", "tutorial/interactive.rst", "tutorial/interpreter.rst", "tutorial/introduction.rst", "tutorial/modules.rst", "tutorial/stdlib.rst", "tutorial/stdlib2.rst", "tutorial/venv.rst", "tutorial/whatnow.rst", "using/cmdline.rst", "using/configure.rst", "using/editors.rst", "using/index.rst", "using/mac.rst", "using/unix.rst", "using/windows.rst", "whatsnew/2.0.rst", "whatsnew/2.1.rst", "whatsnew/2.2.rst", "whatsnew/2.3.rst", "whatsnew/2.4.rst", "whatsnew/2.5.rst", "whatsnew/2.6.rst", "whatsnew/2.7.rst", "whatsnew/3.0.rst", "whatsnew/3.1.rst", "whatsnew/3.10.rst", "whatsnew/3.11.rst", "whatsnew/3.12.rst", "whatsnew/3.2.rst", "whatsnew/3.3.rst", "whatsnew/3.4.rst", "whatsnew/3.5.rst", "whatsnew/3.6.rst", "whatsnew/3.7.rst", "whatsnew/3.8.rst", "whatsnew/3.9.rst", "whatsnew/changelog.rst", "whatsnew/index.rst"], "indexentries": {"! (pdb command)": [[297, "pdbcommand-0", false]], "! patterns": [[427, "index-23", false]], "! \uff08\u9a5a\u5606\u865f\uff09": [[155, "index-0", false], [178, "index-0", false], [220, "index-2", false], [231, "index-1", false], [345, "index-2", false], [347, "index-1", false], [435, "index-25", false]], "!=": [[344, "index-7", false], [430, "index-77", false]], "\" \uff08\u96d9\u5f15\u865f\uff09": [[435, "index-17", false]], "\"\"\"": [[435, "index-18", false]], "# (hash)": [[449, "index-0", false]], "# \uff08\u4e95\u5b57\u865f\uff09": [[193, "index-4", false], [319, "index-38", false], [334, "index-2", false], [344, "index-37", false], [344, "index-47", false], [345, "index-7", false], [435, "index-4", false], [435, "index-5", false]], "$ \uff08\u91d1\u9322\u7b26\u865f\uff09": [[167, "index-2", false], [294, "index-9", false], [319, "index-2", false], [345, "index-13", false]], "% \uff08\u767e\u5206\u865f\uff09": [[167, "index-1", false], [183, "index-0", false], [294, "index-9", false], [344, "index-13", false], [344, "index-35", false], [344, "index-45", false], [366, "index-11", false], [366, "index-9", false], [405, "index-0", false], [430, "index-68", false]], "%=": [[436, "index-14", false]], "%appdata%": [[461, "index-8", false]], "& \uff08\u548c\u865f\uff09": [[344, "index-16", false], [430, "index-74", false]], "&=": [[436, "index-14", false]], "' \uff08\u55ae\u5f15\u865f\uff09": [[435, "index-17", false]], "'''": [[435, "index-18", false]], "() \uff08\u5713\u62ec\u865f\uff09": [[319, "index-15", false], [344, "index-36", false], [344, "index-46", false], [427, "index-28", false], [427, "index-42", false], [430, "index-22", false], [430, "index-47", false], [430, "index-8", false], [436, "index-6", false]], "(?": [[319, "index-16", false]], "(?!": [[319, "index-22", false]], "(?#": [[319, "index-20", false]], "(?(": [[319, "index-25", false]], "(?:": [[319, "index-17", false]], "(?": [[427, "index-34", false], [441, "index-6", false]], "-?": [[455, "cmdoption-0", false]], "-a": [[122, "cmdoption-ast-a", false], [300, "cmdoption-pickletools-a", false]], "-b": [[163, "cmdoption-compileall-b", false], [388, "cmdoption-unittest-b", false], [455, "cmdoption-B", false], [455, "cmdoption-b", false]], "-c": [[150, "cmdoption-calendar-css", false], [358, "cmdoption-tarfile-c", false], [380, "cmdoption-trace-C", false], [380, "cmdoption-trace-c", false], [388, "cmdoption-unittest-c", false], [421, "cmdoption-zipapp-c", false], [422, "cmdoption-zipfile-c", false], [455, "cmdoption-c", false]], "-d": [[163, "cmdoption-compileall-d", false], [234, "cmdoption-gzip-d", false], [455, "cmdoption-d", false]], "-e": [[150, "cmdoption-calendar-encoding", false], [163, "cmdoption-compileall-e", false], [358, "cmdoption-tarfile-e", false], [378, "cmdoption-tokenize-e", false], [422, "cmdoption-zipfile-e", false], [455, "cmdoption-E", false]], "-f": [[163, "cmdoption-compileall-f", false], [380, "cmdoption-trace-f", false], [388, "cmdoption-unittest-f", false]], "-g": [[380, "cmdoption-trace-g", false]], "-h": [[122, "cmdoption-ast-h", false], [150, "cmdoption-calendar-help", false], [191, "cmdoption-dis-h", false], [234, "cmdoption-gzip-h", false], [262, "cmdoption-json.tool-h", false], [340, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", false], [367, "cmdoption-timeit-h", false], [378, "cmdoption-tokenize-h", false], [398, "cmdoption-uuid-h", false], [421, "cmdoption-zipapp-h", false], [455, "cmdoption-h", false]], "-i": [[122, "cmdoption-ast-i", false], [163, "cmdoption-compileall-i", false], [455, "cmdoption-I", false], [455, "cmdoption-i", false]], "-j": [[163, "cmdoption-compileall-j", false], [455, "cmdoption-J", false]], "-k": [[388, "cmdoption-unittest-k", false]], "-l": [[150, "cmdoption-calendar-locale", false], [150, "cmdoption-calendar-lines", false], [163, "cmdoption-compileall-l", false], [300, "cmdoption-pickletools-l", false], [358, "cmdoption-tarfile-l", false], [380, "cmdoption-trace-l", false], [422, "cmdoption-zipfile-l", false]], "-m": [[122, "cmdoption-ast-m", false], [150, "cmdoption-calendar-months", false], [300, "cmdoption-pickletools-m", false], [380, "cmdoption-trace-m", false], [421, "cmdoption-zipapp-m", false], [455, "cmdoption-m", false]], "-n": [[367, "cmdoption-timeit-n", false], [398, "cmdoption-uuid-N", false], [398, "cmdoption-uuid-n", false]], "-o": [[163, "cmdoption-compileall-o", false], [300, "cmdoption-pickletools-o", false], [421, "cmdoption-zipapp-o", false], [455, "cmdoption-O", false]], "-oo": [[455, "cmdoption-OO", false]], "-p": [[163, "cmdoption-compileall-p", false], [300, "cmdoption-pickletools-p", false], [367, "cmdoption-timeit-p", false], [388, "cmdoption-unittest-discover-p", false], [421, "cmdoption-zipapp-p", false], [455, "cmdoption-P", false]], "-q": [[163, "cmdoption-compileall-q", false], [311, "cmdoption-python-m-py_compile-q", false], [455, "cmdoption-q", false]], "-r": [[163, "cmdoption-compileall-r", false], [367, "cmdoption-timeit-r", false], [380, "cmdoption-trace-R", false], [380, "cmdoption-trace-r", false], [455, "cmdoption-R", false]], "-s": [[150, "cmdoption-calendar-spacing", false], [163, "cmdoption-compileall-s", false], [367, "cmdoption-timeit-s", false], [380, "cmdoption-trace-s", false], [388, "cmdoption-unittest-discover-s", false], [455, "cmdoption-S", false], [455, "cmdoption-s", false]], "-t": [[150, "cmdoption-calendar-type", false], [358, "cmdoption-tarfile-t", false], [380, "cmdoption-trace-T", false], [380, "cmdoption-trace-t", false], [388, "cmdoption-unittest-discover-t", false], [422, "cmdoption-zipfile-t", false]], "-u": [[367, "cmdoption-timeit-u", false], [398, "cmdoption-uuid-u", false], [455, "cmdoption-u", false]], "-v": [[340, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", false], [358, "cmdoption-tarfile-v", false], [367, "cmdoption-timeit-v", false], [388, "cmdoption-unittest-discover-v", false], [455, "cmdoption-V", false], [455, "cmdoption-v", false]], "-w": [[150, "cmdoption-calendar-width", false], [455, "cmdoption-W", false]], "-x": [[163, "cmdoption-compileall-x", false], [455, "cmdoption-X", false], [455, "cmdoption-x", false]], ". \uff08\u9ede\uff09": [[231, "index-1", false], [293, "index-45", false], [293, "index-50", false], [319, "index-0", false], [344, "index-36", false], [344, "index-46", false], [345, "index-2", false], [430, "index-39", false], [435, "index-29", false]], "..": [[293, "index-46", false]], "...": [[87, "term-...", true], [168, "index-0", false], [193, "index-0", false], [193, "index-3", false], [307, "index-1", false], [321, "index-0", false], [344, "index-66", false], [352, "index-27", false], [364, "index-0", false], [428, "index-8", false]], ".ini": [[167, "index-0", false]], ".pdbrc": [[297, "index-2", false]], "/ \uff08\u659c\u7dda\uff09": [[293, "index-47", false], [293, "index-49", false], [344, "index-13", false], [427, "index-32", false], [430, "index-67", false]], "//": [[344, "index-13", false], [430, "index-67", false]], "//=": [[436, "index-14", false]], "/=": [[436, "index-14", false]], "0b": [[435, "index-28", false]], "0o": [[435, "index-28", false]], "0x": [[435, "index-28", false]], "2-digit years\uff082 \u4f4d\u6578\u5e74\u4efd\uff09": [[366, "index-3", false]], "2to3": [[87, "term-2to3", true]], ": \uff08\u5192\u865f\uff09": [[293, "index-51", false], [340, "index-7", false], [345, "index-2", false], [427, "index-16", false], [427, "index-18", false], [427, "index-28", false], [427, "index-3", false], [427, "index-34", false], [427, "index-4", false], [427, "index-42", false], [427, "index-6", false], [427, "index-9", false], [430, "index-17", false], [430, "index-44", false], [430, "index-90", false], [435, "index-25", false], [436, "index-15", false], [441, "index-6", false]], ":= \uff08\u5192\u865f\u7b49\u65bc\uff09": [[430, "index-86", false]], "; \uff08\u5206\u865f\uff09": [[293, "index-51", false], [427, "index-1", false]], "< \uff08\u5c0f\u65bc\uff09": [[344, "index-7", false], [345, "index-3", false], [347, "index-1", false], [430, "index-77", false]], "<<": [[344, "index-16", false], [430, "index-71", false]], "<<=": [[436, "index-14", false]], "<=": [[344, "index-7", false], [430, "index-77", false]], "": [[193, "index-2", false]], "": [[311, "cmdoption-python-m-py_compile-arg-file", false]], "= \uff08\u7b49\u65bc\uff09": [[345, "index-3", false], [347, "index-1", false], [427, "index-31", false], [428, "index-86", false], [430, "index-47", false], [435, "index-25", false], [436, "index-4", false]], "==": [[344, "index-7", false], [430, "index-77", false]], "> \uff08\u5927\u65bc\uff09": [[344, "index-7", false], [345, "index-3", false], [347, "index-1", false], [430, "index-77", false]], ">=": [[344, "index-7", false], [430, "index-77", false]], ">>": [[344, "index-16", false], [430, "index-71", false]], ">>=": [[436, "index-14", false]], ">>>": [[87, "term-0", true], [193, "index-0", false], [352, "index-27", false]], "? \uff08\u554f\u865f\uff09": [[120, "index-0", false], [122, "index-0", false], [155, "index-0", false], [158, "index-1", false], [220, "index-2", false], [231, "index-1", false], [319, "index-5", false], [340, "index-6", false], [347, "index-2", false], [347, "index-3", false]], "?+": [[319, "index-7", false]], "??": [[319, "index-6", false]], "@ \uff08\u5728\uff09": [[347, "index-1", false], [427, "index-29", false], [427, "index-43", false], [430, "index-66", false]], "[] \uff08\u65b9\u62ec\u865f\uff09": [[220, "index-2", false], [231, "index-1", false], [319, "index-10", false], [345, "index-2", false], [430, "index-15", false], [430, "index-41", false], [436, "index-6", false]], "\\ \uff08\u53cd\u659c\u7dda\uff09": [[158, "index-1", false], [293, "index-48", false], [319, "index-12", false], [319, "index-26", false], [319, "index-9", false], [435, "index-23", false]], "\\\\": [[319, "index-37", false], [435, "index-23", false]], "\\a": [[319, "index-27", false], [319, "index-37", false], [435, "index-23", false]], "\\b": [[319, "index-29", false], [319, "index-28", false], [319, "index-37", false], [435, "index-23", false]], "\\d": [[319, "index-31", false], [319, "index-30", false]], "\\f": [[319, "index-37", false], [435, "index-23", false]], "\\g": [[319, "index-39", false]], "\\n": [[158, "index-3", false], [319, "index-37", false], [319, "index-37", false], [435, "index-23", false], [435, "index-23", false]], "\\r": [[319, "index-37", false], [435, "index-23", false]], "\\s": [[319, "index-33", false], [319, "index-32", false]], "\\t": [[319, "index-37", false], [435, "index-23", false]], "\\u": [[158, "index-1", false], [158, "index-1", false], [319, "index-37", false], [319, "index-37", false], [435, "index-23", false], [435, "index-23", false]], "\\v": [[319, "index-37", false], [435, "index-23", false]], "\\w": [[319, "index-35", false], [319, "index-34", false]], "\\x": [[158, "index-1", false], [319, "index-37", false], [435, "index-23", false]], "\\z": [[319, "index-36", false]], "^ \uff08\u63d2\u5165\u7b26\u865f\uff09": [[178, "index-0", false], [193, "index-1", false], [319, "index-1", false], [319, "index-13", false], [344, "index-16", false], [345, "index-3", false], [381, "index-1", false], [430, "index-75", false]], "^=": [[436, "index-14", false]], "_ \uff08\u5e95\u7dda\uff09": [[230, "index-4", false], [345, "index-10", false], [435, "index-28", false], [435, "index-29", false]], "_, identifiers\uff08\u8b58\u5225\u5668\uff09": [[435, "index-15", false]], "__, identifiers\uff08\u8b58\u5225\u5668\uff09": [[435, "index-15", false]], "__abs__() (object \u7684\u65b9\u6cd5)": [[428, "object.__abs__", false]], "__abs__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__abs__", false]], "__add__() (object \u7684\u65b9\u6cd5)": [[428, "object.__add__", false]], "__add__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__add__", false]], "__aenter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aenter__", false]], "__aexit__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aexit__", false]], "__aiter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__aiter__", false]], "__all__": [[31, "index-0", false], [450, "index-8", false]], "__all__\uff08\u53ef\u9078\u6a21\u7d44\u5c6c\u6027\uff09": [[436, "index-38", false]], "__all__\uff08\u5957\u4ef6\u8b8a\u6578\uff09": [[31, "index-0", false]], "__and__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__and__", false]], "__and__() (object \u7684\u65b9\u6cd5)": [[428, "object.__and__", false]], "__and__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__and__", false]], "__anext__() (agen \u7684\u65b9\u6cd5)": [[430, "agen.__anext__", false]], "__anext__() (object \u7684\u65b9\u6cd5)": [[428, "object.__anext__", false]], "__annotations__ (function \u7684\u5c6c\u6027)": [[428, "function.__annotations__", false]], "__annotations__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__annotations__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__annotations__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__args__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__args__", false]], "__await__() (object \u7684\u65b9\u6cd5)": [[428, "object.__await__", false]], "__bases__ (class \u7684\u5c6c\u6027)": [[344, "class.__bases__", false]], "__bases__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__bool__() (object \u7684\u65b9\u6cd5)": [[428, "object.__bool__", false]], "__bool__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-98", false]], "__bound__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__bound__", false]], "__breakpointhook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__breakpointhook__", false]], "__buffer__() (object \u7684\u65b9\u6cd5)": [[428, "object.__buffer__", false]], "__bytes__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__bytes__", false]], "__bytes__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__bytes__", false]], "__bytes__() (object \u7684\u65b9\u6cd5)": [[428, "object.__bytes__", false]], "__cached__": [[432, "cached__", false]], "__call__() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.__call__", false]], "__call__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__call__", false]], "__call__() (object \u7684\u65b9\u6cd5)": [[428, "object.__call__", false]], "__call__() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.__call__", false]], "__call__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__call__", false]], "__call__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[430, "index-56", false]], "__callback__ (weakref.ref \u7684\u5c6c\u6027)": [[402, "weakref.ref.__callback__", false]], "__cause__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__cause__", false]], "__cause__ (exception attribute)": [[213, "index-2", false]], "__cause__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__cause__", false]], "__cause__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-29", false]], "__ceil__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__ceil__", false]], "__ceil__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ceil__", false]], "__class__ (instance \u7684\u5c6c\u6027)": [[344, "instance.__class__", false]], "__class__ (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.__class__", false]], "__class__ \uff08\u5be6\u4f8b\u5c6c\u6027\uff09": [[428, "index-54", false]], "__class__ \uff08\u65b9\u6cd5 cell\uff09": [[428, "index-92", false]], "__class__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__class_getitem__() (object \u7684\u985e\u5225\u65b9\u6cd5)": [[428, "object.__class_getitem__", false]], "__classcell__ \uff08\u985e\u5225\u547d\u540d\u7a7a\u9593\u9805\u76ee\uff09": [[428, "index-92", false]], "__closure__ (function \u7684\u5c6c\u6027)": [[428, "function.__closure__", false]], "__closure__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-35", false]], "__code__ (function \u7684\u5c6c\u6027)": [[428, "function.__code__", false]], "__code__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__code__\uff08\u51fd\u5f0f\u7269\u4ef6\u5c6c\u6027\uff09": [[344, "index-63", false]], "__complex__() (object \u7684\u65b9\u6cd5)": [[428, "object.__complex__", false]], "__concat__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__concat__", false]], "__constraints__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__constraints__", false]], "__contains__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__contains__", false]], "__contains__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__contains__", false]], "__contains__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__contains__", false]], "__contains__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__contains__", false]], "__contains__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__contains__", false]], "__contains__() (object \u7684\u65b9\u6cd5)": [[428, "object.__contains__", false]], "__contains__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__contains__", false]], "__context__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__context__", false]], "__context__ (exception attribute)": [[213, "index-2", false]], "__context__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__context__", false]], "__context__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-29", false]], "__contravariant__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__contravariant__", false]], "__copy__() \uff08\u8907\u88fd\u5354\u5b9a\uff09": [[171, "index-1", false]], "__covariant__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__covariant__", false]], "__debug__": [[436, "index-19", false]], "__debug__ (\u5167\u5efa\u8b8a\u6578)": [[168, "debug__", false]], "__deepcopy__() \uff08\u8907\u88fd\u5354\u5b9a\uff09": [[171, "index-1", false]], "__defaults__ (function \u7684\u5c6c\u6027)": [[428, "function.__defaults__", false]], "__defaults__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__del__() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.__del__", false]], "__del__() (object \u7684\u65b9\u6cd5)": [[428, "object.__del__", false]], "__delattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delattr__", false]], "__delete__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delete__", false]], "__delitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__delitem__", false]], "__delitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__delitem__", false]], "__delitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__delitem__", false]], "__delitem__() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.__delitem__", false]], "__delitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__delitem__", false]], "__delitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__delitem__", false]], "__dict__ (function \u7684\u5c6c\u6027)": [[428, "function.__dict__", false]], "__dict__ (object \u7684\u5c6c\u6027)": [[344, "object.__dict__", false]], "__dict__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__dict__ \uff08\u5be6\u4f8b\u5c6c\u6027\uff09": [[428, "index-54", false]], "__dict__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-46", false]], "__dict__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__dict__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-3", false]], "__dir__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__dir__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__dir__", false]], "__dir__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__dir__", false]], "__dir__() (object \u7684\u65b9\u6cd5)": [[428, "object.__dir__", false]], "__dir__() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.__dir__", false]], "__displayhook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__displayhook__", false]], "__divmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__divmod__", false]], "__doc__ (function \u7684\u5c6c\u6027)": [[428, "function.__doc__", false]], "__doc__ (method \u7684\u5c6c\u6027)": [[428, "method.__doc__", false]], "__doc__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__doc__", false]], "__doc__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__doc__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__doc__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__doc__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__doc__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__enter__() (contextmanager \u7684\u65b9\u6cd5)": [[344, "contextmanager.__enter__", false]], "__enter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__enter__", false]], "__enter__() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.__enter__", false]], "__eq__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__eq__", false]], "__eq__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__eq__", false]], "__eq__() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.__eq__", false]], "__eq__() (object \u7684\u65b9\u6cd5)": [[428, "object.__eq__", false]], "__eq__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__eq__", false]], "__eq__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__excepthook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__excepthook__", false]], "__excepthook__ (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.__excepthook__", false]], "__exit__() (contextmanager \u7684\u65b9\u6cd5)": [[344, "contextmanager.__exit__", false]], "__exit__() (object \u7684\u65b9\u6cd5)": [[428, "object.__exit__", false]], "__exit__() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.__exit__", false]], "__file__": [[432, "file__", false]], "__file__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__file__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false], [45, "index-5", false]], "__float__() (object \u7684\u65b9\u6cd5)": [[428, "object.__float__", false]], "__floor__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__floor__", false]], "__floor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__floor__", false]], "__floordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__floordiv__", false]], "__floordiv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__floordiv__", false]], "__format__": [[225, "index-4", false]], "__format__() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.__format__", false]], "__format__() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.__format__", false]], "__format__() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.__format__", false]], "__format__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__format__", false]], "__format__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__format__", false]], "__format__() (ipaddress.ipv4address \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Address.__format__", false]], "__format__() (ipaddress.ipv6address \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Address.__format__", false]], "__format__() (object \u7684\u65b9\u6cd5)": [[428, "object.__format__", false]], "__format__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-78", false]], "__fspath__() (os.pathlike \u7684\u65b9\u6cd5)": [[293, "os.PathLike.__fspath__", false]], "__func__ (method \u7684\u5c6c\u6027)": [[428, "method.__func__", false]], "__func__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__future__": [[87, "term-__future__", true], [113, "module-__future__", false], [436, "index-40", false]], "__ge__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ge__", false]], "__ge__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ge__", false]], "__ge__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__get__() (object \u7684\u65b9\u6cd5)": [[428, "object.__get__", false]], "__getattr__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-83", false]], "__getattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getattr__", false]], "__getattribute__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getattribute__", false]], "__getitem__() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.__getitem__", false]], "__getitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__getitem__", false]], "__getitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__getitem__", false]], "__getitem__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__getitem__", false]], "__getitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__getitem__", false]], "__getitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__getitem__", false]], "__getitem__() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.__getitem__", false]], "__getitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__getitem__", false]], "__getitem__() \uff08\u5c0d\u6620\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-71", false]], "__getnewargs__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getnewargs__", false]], "__getnewargs_ex__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getnewargs_ex__", false]], "__getstate__() (object \u7684\u65b9\u6cd5)": [[299, "object.__getstate__", false]], "__getstate__()\uff08copy \u5354\u5b9a\uff09": [[299, "index-7", false]], "__globals__ (function \u7684\u5c6c\u6027)": [[428, "function.__globals__", false]], "__globals__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-35", false]], "__gt__() (object \u7684\u65b9\u6cd5)": [[428, "object.__gt__", false]], "__gt__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__gt__", false]], "__gt__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__hash__() (object \u7684\u65b9\u6cd5)": [[428, "object.__hash__", false]], "__iadd__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iadd__", false]], "__iadd__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iadd__", false]], "__iand__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iand__", false]], "__iand__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iand__", false]], "__iconcat__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__iconcat__", false]], "__ifloordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ifloordiv__", false]], "__ifloordiv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ifloordiv__", false]], "__ilshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ilshift__", false]], "__ilshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ilshift__", false]], "__imatmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imatmul__", false]], "__imatmul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imatmul__", false]], "__imod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imod__", false]], "__imod__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imod__", false]], "__import__": [[31, "index-1", false]], "__import__()": [[225, "import__", false]], "__import__() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.__import__", false]], "__imul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__imul__", false]], "__imul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__imul__", false]], "__index__() (object \u7684\u65b9\u6cd5)": [[428, "object.__index__", false]], "__index__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__index__", false]], "__infer_variance__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__infer_variance__", false]], "__init__() (asyncio.future \u7684\u65b9\u6cd5)": [[128, "asyncio.Future.__init__", false]], "__init__() (asyncio.task \u7684\u65b9\u6cd5)": [[128, "asyncio.Task.__init__", false]], "__init__() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.__init__", false]], "__init__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__init__", false]], "__init__() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.__init__", false]], "__init__() (logging.logging.formatter \u7684\u65b9\u6cd5)": [[101, "logging.logging.Formatter.__init__", false]], "__init__() (object \u7684\u65b9\u6cd5)": [[428, "object.__init__", false]], "__init_subclass__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__init_subclass__", false]], "__init_subclass__() (object \u7684\u985e\u5225\u65b9\u6cd5)": [[428, "object.__init_subclass__", false]], "__instancecheck__() (class \u7684\u65b9\u6cd5)": [[428, "class.__instancecheck__", false]], "__int__() (object \u7684\u65b9\u6cd5)": [[428, "object.__int__", false]], "__interactivehook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__interactivehook__", false]], "__inv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__inv__", false]], "__invert__() (object \u7684\u65b9\u6cd5)": [[428, "object.__invert__", false]], "__invert__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__invert__", false]], "__ior__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ior__", false]], "__ior__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ior__", false]], "__ipow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ipow__", false]], "__ipow__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ipow__", false]], "__irshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__irshift__", false]], "__irshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__irshift__", false]], "__isub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__isub__", false]], "__isub__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__isub__", false]], "__iter__() (container \u7684\u65b9\u6cd5)": [[344, "container.__iter__", false]], "__iter__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__iter__", false]], "__iter__() (iterator \u7684\u65b9\u6cd5)": [[344, "iterator.__iter__", false]], "__iter__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__iter__", false]], "__iter__() (object \u7684\u65b9\u6cd5)": [[428, "object.__iter__", false]], "__iter__() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.__iter__", false]], "__itruediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__itruediv__", false]], "__itruediv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__itruediv__", false]], "__ixor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ixor__", false]], "__ixor__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ixor__", false]], "__kwdefaults__ (function \u7684\u5c6c\u6027)": [[428, "function.__kwdefaults__", false]], "__kwdefaults__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__le__() (object \u7684\u65b9\u6cd5)": [[428, "object.__le__", false]], "__le__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__le__", false]], "__le__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__len__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__len__", false]], "__len__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__len__", false]], "__len__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__len__", false]], "__len__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__len__", false]], "__len__() (object \u7684\u65b9\u6cd5)": [[428, "object.__len__", false]], "__len__() \uff08\u5c0d\u6620\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-82", false]], "__length_hint__() (object \u7684\u65b9\u6cd5)": [[428, "object.__length_hint__", false]], "__loader__": [[432, "loader__", false]], "__loader__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__loader__", false]], "__loader__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__lshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__lshift__", false]], "__lshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__lshift__", false]], "__lt__() (object \u7684\u65b9\u6cd5)": [[428, "object.__lt__", false]], "__lt__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__lt__", false]], "__lt__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__main__": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [114, "module-__main__", false], [324, "index-0", false], [324, "index-4", false], [429, "index-10", false], [437, "index-2", false], [437, "index-3", false]], "__matmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__matmul__", false]], "__matmul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__matmul__", false]], "__members__ (enum.enumtype \u7684\u5c6c\u6027)": [[211, "enum.EnumType.__members__", false]], "__missing__()": [[344, "index-53", false]], "__missing__() (collections.defaultdict \u7684\u65b9\u6cd5)": [[160, "collections.defaultdict.__missing__", false]], "__missing__() (object \u7684\u65b9\u6cd5)": [[428, "object.__missing__", false]], "__mod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mod__", false]], "__mod__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__mod__", false]], "__module__ (function \u7684\u5c6c\u6027)": [[428, "function.__module__", false]], "__module__ (method \u7684\u5c6c\u6027)": [[428, "method.__module__", false]], "__module__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__module__", false]], "__module__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__module__", false]], "__module__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__module__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__module__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__mro__ (class \u7684\u5c6c\u6027)": [[344, "class.__mro__", false]], "__mro_entries__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mro_entries__", false]], "__mul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__mul__", false]], "__mul__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__mul__", false]], "__name__": [[432, "name__", false]], "__name__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__name__", false]], "__name__ (function \u7684\u5c6c\u6027)": [[428, "function.__name__", false]], "__name__ (method \u7684\u5c6c\u6027)": [[428, "method.__name__", false]], "__name__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__name__", false]], "__name__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__name__", false]], "__name__ (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.__name__", false]], "__name__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__name__", false]], "__name__ (typing.typevar \u7684\u5c6c\u6027)": [[386, "typing.TypeVar.__name__", false]], "__name__ (typing.typevartuple \u7684\u5c6c\u6027)": [[386, "typing.TypeVarTuple.__name__", false]], "__name__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__name__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__name__ \uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[428, "index-45", false]], "__name__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__name__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false], [45, "index-4", false]], "__ne__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__ne__", false]], "__ne__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__ne__", false]], "__ne__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ne__", false]], "__ne__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__ne__", false]], "__ne__()\uff08\u5be6\u4f8b\u65b9\u6cd5\uff09": [[344, "index-9", false]], "__neg__() (object \u7684\u65b9\u6cd5)": [[428, "object.__neg__", false]], "__neg__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__neg__", false]], "__new__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__new__", false]], "__new__() (object \u7684\u65b9\u6cd5)": [[428, "object.__new__", false]], "__next__() (csv.csvreader \u7684\u65b9\u6cd5)": [[175, "csv.csvreader.__next__", false]], "__next__() (generator \u7684\u65b9\u6cd5)": [[430, "generator.__next__", false]], "__next__() (iterator \u7684\u65b9\u6cd5)": [[344, "iterator.__next__", false]], "__not__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__not__", false]], "__notes__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__notes__", false]], "__notes__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__notes__", false]], "__objclass__ (object \u7684\u5c6c\u6027)": [[428, "object.__objclass__", false]], "__optional_keys__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__optional_keys__", false]], "__or__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__or__", false]], "__or__() (object \u7684\u65b9\u6cd5)": [[428, "object.__or__", false]], "__or__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__or__", false]], "__origin__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__origin__", false]], "__package__": [[432, "package__", false]], "__package__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__package__", false]], "__package__\uff08\u6a21\u7d44\u5c6c\u6027\uff09": [[45, "index-2", false]], "__parameters__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__parameters__", false]], "__path__": [[432, "path__", false]], "__pos__() (object \u7684\u65b9\u6cd5)": [[428, "object.__pos__", false]], "__pos__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__pos__", false]], "__post_init__() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.__post_init__", false]], "__pow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__pow__", false]], "__pow__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__pow__", false]], "__prepare__ \uff08\u5143\u985e\u5225\u65b9\u6cd5\uff09": [[428, "index-89", false]], "__pyvenv_launcher__": [[34, "index-24", false], [34, "index-4", false]], "__qualname__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__qualname__", false]], "__qualname__ (function \u7684\u5c6c\u6027)": [[428, "function.__qualname__", false]], "__radd__() (object \u7684\u65b9\u6cd5)": [[428, "object.__radd__", false]], "__rand__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rand__", false]], "__rdivmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rdivmod__", false]], "__reduce__() (object \u7684\u65b9\u6cd5)": [[299, "object.__reduce__", false]], "__reduce_ex__() (object \u7684\u65b9\u6cd5)": [[299, "object.__reduce_ex__", false]], "__release_buffer__() (object \u7684\u65b9\u6cd5)": [[428, "object.__release_buffer__", false]], "__repr__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__repr__", false]], "__repr__() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy.__repr__", false]], "__repr__() (netrc.netrc \u7684\u65b9\u6cd5)": [[286, "netrc.netrc.__repr__", false]], "__repr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__repr__", false]], "__repr__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-75", false]], "__required_keys__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__required_keys__", false]], "__reversed__() (enum.enumtype \u7684\u65b9\u6cd5)": [[211, "enum.EnumType.__reversed__", false]], "__reversed__() (object \u7684\u65b9\u6cd5)": [[428, "object.__reversed__", false]], "__rfloordiv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rfloordiv__", false]], "__rlshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rlshift__", false]], "__rmatmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmatmul__", false]], "__rmod__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmod__", false]], "__rmul__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rmul__", false]], "__ror__() (object \u7684\u65b9\u6cd5)": [[428, "object.__ror__", false]], "__round__() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.__round__", false]], "__round__() (object \u7684\u65b9\u6cd5)": [[428, "object.__round__", false]], "__rpow__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rpow__", false]], "__rrshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rrshift__", false]], "__rshift__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rshift__", false]], "__rshift__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__rshift__", false]], "__rsub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rsub__", false]], "__rtruediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rtruediv__", false]], "__rxor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__rxor__", false]], "__self__ (method \u7684\u5c6c\u6027)": [[428, "method.__self__", false]], "__self__ \uff08\u65b9\u6cd5\u5c6c\u6027\uff09": [[428, "index-38", false]], "__set__() (object \u7684\u65b9\u6cd5)": [[428, "object.__set__", false]], "__set_name__() (object \u7684\u65b9\u6cd5)": [[428, "object.__set_name__", false]], "__setattr__() (object \u7684\u65b9\u6cd5)": [[428, "object.__setattr__", false]], "__setitem__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__setitem__", false]], "__setitem__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__setitem__", false]], "__setitem__() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.__setitem__", false]], "__setitem__() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.__setitem__", false]], "__setitem__() (object \u7684\u65b9\u6cd5)": [[428, "object.__setitem__", false]], "__setitem__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__setitem__", false]], "__setstate__() (object \u7684\u65b9\u6cd5)": [[299, "object.__setstate__", false]], "__setstate__()\uff08copy \u5354\u5b9a\uff09": [[299, "index-7", false]], "__slots__": [[87, "term-__slots__", true]], "__spec__": [[432, "spec__", false]], "__spec__ (types.moduletype \u7684\u5c6c\u6027)": [[385, "types.ModuleType.__spec__", false]], "__stderr__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stderr__", false]], "__stdin__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stdin__", false]], "__stdout__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__stdout__", false]], "__str__() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.__str__", false]], "__str__() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.__str__", false]], "__str__() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.__str__", false]], "__str__() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.__str__", false]], "__str__() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.__str__", false]], "__str__() (email.headerregistry.address \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.Address.__str__", false]], "__str__() (email.headerregistry.group \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.Group.__str__", false]], "__str__() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.__str__", false]], "__str__() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.__str__", false]], "__str__() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum.__str__", false]], "__str__() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy.__str__", false]], "__str__() (object \u7684\u65b9\u6cd5)": [[428, "object.__str__", false]], "__str__() \uff08\u7269\u4ef6\u65b9\u6cd5\uff09": [[428, "index-76", false]], "__sub__() (object \u7684\u65b9\u6cd5)": [[428, "object.__sub__", false]], "__sub__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__sub__", false]], "__subclasscheck__() (class \u7684\u65b9\u6cd5)": [[428, "class.__subclasscheck__", false]], "__subclasses__() (class \u7684\u65b9\u6cd5)": [[344, "class.__subclasses__", false]], "__subclasshook__() (abc.abcmeta \u7684\u65b9\u6cd5)": [[116, "abc.ABCMeta.__subclasshook__", false]], "__supertype__ (typing.newtype \u7684\u5c6c\u6027)": [[386, "typing.NewType.__supertype__", false]], "__suppress_context__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__suppress_context__", false]], "__suppress_context__ (exception attribute)": [[213, "index-2", false]], "__suppress_context__ (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.__suppress_context__", false]], "__total__ (typing.typeddict \u7684\u5c6c\u6027)": [[386, "typing.TypedDict.__total__", false]], "__traceback__ (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.__traceback__", false]], "__traceback__\uff08\u4f8b\u5916\u5c6c\u6027\uff09": [[436, "index-27", false]], "__truediv__() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.__truediv__", false]], "__truediv__() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.__truediv__", false]], "__truediv__() (object \u7684\u65b9\u6cd5)": [[428, "object.__truediv__", false]], "__truediv__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__truediv__", false]], "__trunc__() (object \u7684\u65b9\u6cd5)": [[428, "object.__trunc__", false]], "__type_params__ (definition \u7684\u5c6c\u6027)": [[344, "definition.__type_params__", false]], "__type_params__ (function \u7684\u5c6c\u6027)": [[428, "function.__type_params__", false]], "__type_params__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__type_params__", false]], "__type_params__ \uff08\u51fd\u5f0f\u5c6c\u6027\uff09": [[428, "index-36", false]], "__type_params__ \uff08\u985e\u5225\u5c6c\u6027\uff09": [[428, "index-50", false]], "__unpacked__ (genericalias \u7684\u5c6c\u6027)": [[344, "genericalias.__unpacked__", false]], "__unraisablehook__ (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.__unraisablehook__", false]], "__value__ (typing.typealiastype \u7684\u5c6c\u6027)": [[386, "typing.TypeAliasType.__value__", false]], "__version__ (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.__version__", false]], "__xor__() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag.__xor__", false]], "__xor__() (object \u7684\u65b9\u6cd5)": [[428, "object.__xor__", false]], "__xor__() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.__xor__", false]], "_anonymous_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._anonymous_", false]], "_asdict() (collections.somenamedtuple \u7684\u65b9\u6cd5)": [[160, "collections.somenamedtuple._asdict", false]], "_b_base_ (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._b_base_", false]], "_b_needsfree_ (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._b_needsfree_", false]], "_callmethod() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy._callmethod", false]], "_cdata (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._CData", false]], "_clear_type_cache() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._clear_type_cache", false]], "_current_exceptions() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._current_exceptions", false]], "_current_frames() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._current_frames", false]], "_debugmallocstats() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._debugmallocstats", false]], "_emscripten_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._emscripten_info", false]], "_enablelegacywindowsfsencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._enablelegacywindowsfsencoding", false]], "_enter_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._enter_task", false]], "_exit() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os._exit", false]], "_feature (__future__ \u4e2d\u7684\u985e\u5225)": [[113, "future__._Feature", false]], "_field_defaults (collections.somenamedtuple \u7684\u5c6c\u6027)": [[160, "collections.somenamedtuple._field_defaults", false]], "_fields (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST._fields", false]], "_fields (collections.somenamedtuple \u7684\u5c6c\u6027)": [[160, "collections.somenamedtuple._fields", false]], "_fields_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._fields_", false]], "_flush() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler._flush", false]], "_frozen (c struct)": [[31, "c._frozen", false]], "_funcptr (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._FuncPtr", false]], "_generate_next_value_() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum._generate_next_value_", false]], "_get_child_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock._get_child_mock", false]], "_get_preferred_schemes() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig._get_preferred_schemes", false]], "_getframe() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._getframe", false]], "_getframemodulename() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._getframemodulename", false]], "_getvalue() (multiprocessing.managers.baseproxy \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseProxy._getvalue", false]], "_handle (ctypes.pydll \u7684\u5c6c\u6027)": [[176, "ctypes.PyDLL._handle", false]], "_ignore_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._ignore_", false]], "_incompatible_extension_module_restrictions() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util._incompatible_extension_module_restrictions", false]], "_inittab (c struct)": [[31, "c._inittab", false]], "_inittab.initfunc (c member)": [[31, "c._inittab.initfunc", false]], "_inittab.name (c member)": [[31, "c._inittab.name", false]], "_leave_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._leave_task", false]], "_length_ (ctypes.array \u7684\u5c6c\u6027)": [[176, "ctypes.Array._length_", false]], "_locale": [[266, "index-0", false]], "_log (logging.loggeradapter \u7684\u5c6c\u6027)": [[267, "logging.LoggerAdapter._log", false]], "_make() (collections.somenamedtuple \u7684\u985e\u5225\u65b9\u6cd5)": [[160, "collections.somenamedtuple._make", false]], "_makeresult() (unittest.texttestrunner \u7684\u65b9\u6cd5)": [[388, "unittest.TextTestRunner._makeResult", false]], "_missing_() (enum.enum \u7684\u65b9\u6cd5)": [[211, "enum.Enum._missing_", false]], "_name (ctypes.pydll \u7684\u5c6c\u6027)": [[176, "ctypes.PyDLL._name", false]], "_name_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._name_", false]], "_numeric_repr_() (enum.flag \u7684\u65b9\u6cd5)": [[211, "enum.Flag._numeric_repr_", false]], "_objects (ctypes._cdata \u7684\u5c6c\u6027)": [[176, "ctypes._CData._objects", false]], "_order_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._order_", false]], "_pack_ (ctypes.structure \u7684\u5c6c\u6027)": [[176, "ctypes.Structure._pack_", false]], "_parse() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations._parse", false]], "_pointer (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._Pointer", false]], "_py_c_diff (c function)": [[15, "c._Py_c_diff", false]], "_py_c_neg (c function)": [[15, "c._Py_c_neg", false]], "_py_c_pow (c function)": [[15, "c._Py_c_pow", false]], "_py_c_prod (c function)": [[15, "c._Py_c_prod", false]], "_py_c_quot (c function)": [[15, "c._Py_c_quot", false]], "_py_c_sum (c function)": [[15, "c._Py_c_sum", false]], "_py_initializemain (c function)": [[34, "c._Py_InitializeMain", false]], "_py_nonestruct (c var)": [[3, "c._Py_NoneStruct", false]], "_pybytes_resize (c function)": [[9, "c._PyBytes_Resize", false]], "_pycfunctionfast (c type)": [[58, "c._PyCFunctionFast", false]], "_pycfunctionfastwithkeywords (c type)": [[58, "c._PyCFunctionFastWithKeywords", false]], "_pycode_getextra\uff08c \u51fd\u5f0f\uff09": [[13, "index-4", false]], "_pycode_setextra\uff08c \u51fd\u5f0f\uff09": [[13, "index-5", false]], "_pyeval_requestcodeextraindex\uff08c \u51fd\u5f0f\uff09": [[13, "index-3", false]], "_pyframeevalfunction (c type)": [[33, "c._PyFrameEvalFunction", false]], "_pyinterpreterframe (c struct)": [[26, "c._PyInterpreterFrame", false]], "_pyinterpreterstate_getevalframefunc (c function)": [[33, "c._PyInterpreterState_GetEvalFrameFunc", false]], "_pyinterpreterstate_setevalframefunc (c function)": [[33, "c._PyInterpreterState_SetEvalFrameFunc", false]], "_pyobject_getdictptr (c function)": [[49, "c._PyObject_GetDictPtr", false]], "_pyobject_new (c function)": [[3, "c._PyObject_New", false]], "_pyobject_newvar (c function)": [[3, "c._PyObject_NewVar", false]], "_pytuple_resize (c function)": [[60, "c._PyTuple_Resize", false]], "_register_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._register_task", false]], "_replace() (collections.somenamedtuple \u7684\u65b9\u6cd5)": [[160, "collections.somenamedtuple._replace", false]], "_setroot() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree._setroot", false]], "_simplecdata (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes._SimpleCData", false]], "_structure() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators._structure", false]], "_thread": [[33, "index-38", false], [115, "module-_thread", false]], "_tkinter": [[369, "module-_tkinter", false]], "_type_ (ctypes._pointer \u7684\u5c6c\u6027)": [[176, "ctypes._Pointer._type_", false]], "_type_ (ctypes.array \u7684\u5c6c\u6027)": [[176, "ctypes.Array._type_", false]], "_unregister_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[128, "asyncio._unregister_task", false]], "_value_ (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum._value_", false]], "_write() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler._write", false]], "_xoptions (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys._xoptions", false]], "a (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.A", false]], "a-law": [[117, "index-2", false], [141, "index-1", false], [336, "index-0", false]], "a2b_base64() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_base64", false]], "a2b_hex() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_hex", false]], "a2b_qp() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_qp", false]], "a2b_uu() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.a2b_uu", false]], "a85decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.a85decode", false]], "a85encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.a85encode", false]], "a_altcharset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ALTCHARSET", false]], "a_attributes (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ATTRIBUTES", false]], "a_blink (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_BLINK", false]], "a_bold (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_BOLD", false]], "a_chartext (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_CHARTEXT", false]], "a_color (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_COLOR", false]], "a_dim (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_DIM", false]], "a_horizontal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_HORIZONTAL", false]], "a_invis (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_INVIS", false]], "a_italic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_ITALIC", false]], "a_left (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_LEFT", false]], "a_low (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_LOW", false]], "a_normal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_NORMAL", false]], "a_protect (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_PROTECT", false]], "a_reverse (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_REVERSE", false]], "a_right (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_RIGHT", false]], "a_standout (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_STANDOUT", false]], "a_top (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_TOP", false]], "a_underline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_UNDERLINE", false]], "a_vertical (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.A_VERTICAL", false]], "abc": [[116, "module-abc", false]], "abc (abc \u4e2d\u7684\u985e\u5225)": [[116, "abc.ABC", false]], "abcmeta (abc \u4e2d\u7684\u985e\u5225)": [[116, "abc.ABCMeta", false]], "abday_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_1", false]], "abday_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_2", false]], "abday_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_3", false]], "abday_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_4", false]], "abday_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_5", false]], "abday_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_6", false]], "abday_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABDAY_7", false]], "abiflags (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.abiflags", false]], "abmon_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_1", false]], "abmon_10 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_10", false]], "abmon_11 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_11", false]], "abmon_12 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_12", false]], "abmon_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_2", false]], "abmon_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_3", false]], "abmon_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_4", false]], "abmon_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_5", false]], "abmon_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_6", false]], "abmon_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_7", false]], "abmon_8 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_8", false]], "abmon_9 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ABMON_9", false]], "abort (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ABORT", false]], "abort() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.abort", false]], "abort() (asyncio.datagramtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramTransport.abort", false]], "abort() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.abort", false]], "abort() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.abort", false]], "abort() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.abort", false]], "abort() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.abort", false]], "abortretryignore (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ABORTRETRYIGNORE", false]], "abort\uff08c \u51fd\u5f0f\uff09": [[59, "index-2", false]], "above() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.above", false]], "above_normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.ABOVE_NORMAL_PRIORITY_CLASS", false]], "abs": [[47, "index-2", false], [428, "index-103", false]], "abs()": [[225, "abs", false]], "abs() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.abs", false]], "abs() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.abs", false]], "absolute() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.absolute", false]], "absolutelinkerror": [[358, "tarfile.AbsoluteLinkError", false]], "absolutepatherror": [[358, "tarfile.AbsolutePathError", false]], "abspath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.abspath", false]], "abstract base class\uff08\u62bd\u8c61\u57fa\u5e95\u985e\u5225\uff09": [[87, "term-abstract-base-class", true]], "abstractasynccontextmanager (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AbstractAsyncContextManager", false]], "abstractbasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.AbstractBasicAuthHandler", false]], "abstractchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.AbstractChildWatcher", false]], "abstractclassmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractclassmethod", false]], "abstractcontextmanager (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AbstractContextManager", false]], "abstractdigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.AbstractDigestAuthHandler", false]], "abstracteventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.AbstractEventLoop", false]], "abstracteventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.AbstractEventLoopPolicy", false]], "abstractmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractmethod", false]], "abstractproperty() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractproperty", false]], "abstractset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AbstractSet", false]], "abstractstaticmethod() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.abstractstaticmethod", false]], "accept() (multiprocessing.connection.listener \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Listener.accept", false]], "accept() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.accept", false]], "access() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.access", false]], "accumulate() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.accumulate", false]], "ack (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ACK", false]], "aclose() (agen \u7684\u65b9\u6cd5)": [[430, "agen.aclose", false]], "aclose() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.aclose", false]], "aclosing() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.aclosing", false]], "acos() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.acos", false]], "acos() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.acos", false]], "acosh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.acosh", false]], "acosh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.acosh", false]], "acquire() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.acquire", false]], "acquire() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.acquire", false]], "acquire() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.acquire", false]], "acquire() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.acquire", false]], "acquire() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.acquire", false]], "acquire() (multiprocessing.lock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Lock.acquire", false]], "acquire() (multiprocessing.rlock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.RLock.acquire", false]], "acquire() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.acquire", false]], "acquire() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.acquire", false]], "acquire() (threading.rlock \u7684\u65b9\u6cd5)": [[365, "threading.RLock.acquire", false]], "acquire() (threading.semaphore \u7684\u65b9\u6cd5)": [[365, "threading.Semaphore.acquire", false]], "acs_bbss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BBSS", false]], "acs_block (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BLOCK", false]], "acs_board (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BOARD", false]], "acs_bsbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSBS", false]], "acs_bssb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSSB", false]], "acs_bsss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BSSS", false]], "acs_btee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BTEE", false]], "acs_bullet (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_BULLET", false]], "acs_ckboard (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_CKBOARD", false]], "acs_darrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DARROW", false]], "acs_degree (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DEGREE", false]], "acs_diamond (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_DIAMOND", false]], "acs_gequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_GEQUAL", false]], "acs_hline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_HLINE", false]], "acs_lantern (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LANTERN", false]], "acs_larrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LARROW", false]], "acs_lequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LEQUAL", false]], "acs_llcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LLCORNER", false]], "acs_lrcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LRCORNER", false]], "acs_ltee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_LTEE", false]], "acs_nequal (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_NEQUAL", false]], "acs_pi (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PI", false]], "acs_plminus (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PLMINUS", false]], "acs_plus (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_PLUS", false]], "acs_rarrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_RARROW", false]], "acs_rtee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_RTEE", false]], "acs_s1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S1", false]], "acs_s3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S3", false]], "acs_s7 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S7", false]], "acs_s9 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_S9", false]], "acs_sbbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBBS", false]], "acs_sbsb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBSB", false]], "acs_sbss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SBSS", false]], "acs_ssbb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSBB", false]], "acs_ssbs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSBS", false]], "acs_sssb (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSSB", false]], "acs_ssss (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_SSSS", false]], "acs_sterling (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_STERLING", false]], "acs_ttee (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_TTEE", false]], "acs_uarrow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_UARROW", false]], "acs_ulcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_ULCORNER", false]], "acs_urcorner (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_URCORNER", false]], "acs_vline (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ACS_VLINE", false]], "action (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.Action", false]], "action (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.action", false]], "actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.ACTIONS", false]], "activate_stack_trampoline() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.activate_stack_trampoline", false]], "active_children() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.active_children", false]], "active_count() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.active_count", false]], "actual() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.actual", false]], "add (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Add", false]], "add() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.add", false]], "add() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.add", false]], "add() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.add", false]], "add() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.add", false]], "add() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.add", false]], "add() (msilib.radiobuttongroup \u7684\u65b9\u6cd5)": [[281, "msilib.RadioButtonGroup.add", false]], "add() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.add", false]], "add() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.add", false]], "add() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.add", false]], "add() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.add", false]], "add() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.add", false]], "add_alias() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_alias", false]], "add_alternative() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_alternative", false]], "add_argument() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_argument", false]], "add_argument_group() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_argument_group", false]], "add_attachment() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_attachment", false]], "add_cgi_vars() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.add_cgi_vars", false]], "add_charset() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_charset", false]], "add_child_handler() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.add_child_handler", false]], "add_codec() (\u65bc email.charset \u6a21\u7d44\u4e2d)": [[195, "email.charset.add_codec", false]], "add_cookie_header() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.add_cookie_header", false]], "add_data() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_data", false]], "add_dll_directory() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.add_dll_directory", false]], "add_done_callback() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.add_done_callback", false]], "add_done_callback() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.add_done_callback", false]], "add_done_callback() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.add_done_callback", false]], "add_fallback() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.add_fallback", false]], "add_file() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.add_file", false]], "add_flag() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.add_flag", false]], "add_flag() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.add_flag", false]], "add_flag() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.add_flag", false]], "add_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.add_folder", false]], "add_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.add_folder", false]], "add_get_handler() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.add_get_handler", false]], "add_handler() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.add_handler", false]], "add_header() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_header", false]], "add_header() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.add_header", false]], "add_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.add_header", false]], "add_header() (wsgiref.headers.headers \u7684\u65b9\u6cd5)": [[407, "wsgiref.headers.Headers.add_header", false]], "add_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.add_history", false]], "add_label() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.add_label", false]], "add_mutually_exclusive_group() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_mutually_exclusive_group", false]], "add_note() (baseexception \u7684\u65b9\u6cd5)": [[213, "BaseException.add_note", false]], "add_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.add_option", false]], "add_parent() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.add_parent", false]], "add_password() (urllib.request.httppasswordmgr \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgr.add_password", false]], "add_password() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.add_password", false]], "add_reader() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_reader", false]], "add_related() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.add_related", false]], "add_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.add_section", false]], "add_section() (configparser.rawconfigparser \u7684\u65b9\u6cd5)": [[167, "configparser.RawConfigParser.add_section", false]], "add_sequence() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.add_sequence", false]], "add_set_handler() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.add_set_handler", false]], "add_signal_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_signal_handler", false]], "add_stream() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_stream", false]], "add_subparsers() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.add_subparsers", false]], "add_tables() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.add_tables", false]], "add_type() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.add_type", false]], "add_unredirected_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.add_unredirected_header", false]], "add_writer() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.add_writer", false]], "addasynccleanup() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.addAsyncCleanup", false]], "addaudithook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.addaudithook", false]], "addch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addch", false]], "addclasscleanup() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.addClassCleanup", false]], "addcleanup() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.addCleanup", false]], "addcomponent() (turtle.shape \u7684\u65b9\u6cd5)": [[384, "turtle.Shape.addcomponent", false]], "addduration() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addDuration", false]], "adderror() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addError", false]], "addexpectedfailure() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addExpectedFailure", false]], "addfailure() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addFailure", false]], "addfile() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.addfile", false]], "addfilter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.addFilter", false]], "addfilter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.addFilter", false]], "addhandler() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.addHandler", false]], "addinfourl (urllib.response \u4e2d\u7684\u985e\u5225)": [[395, "urllib.response.addinfourl", false]], "addition\uff08\u52a0\uff09": [[430, "index-69", false]], "addlevelname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.addLevelName", false]], "addmodulecleanup() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.addModuleCleanup", false]], "addnstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addnstr", false]], "addpackagepath() (\u65bc modulefinder \u6a21\u7d44\u4e2d)": [[279, "modulefinder.AddPackagePath", false]], "addr_spec (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.addr_spec", false]], "address (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.Address", false]], "address (email.headerregistry.singleaddressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.SingleAddressHeader.address", false]], "address (multiprocessing.connection.listener \u7684\u5c6c\u6027)": [[283, "multiprocessing.connection.Listener.address", false]], "address (multiprocessing.managers.basemanager \u7684\u5c6c\u6027)": [[283, "multiprocessing.managers.BaseManager.address", false]], "address_exclude() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.address_exclude", false]], "address_exclude() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.address_exclude", false]], "address_family (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.address_family", false]], "address_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.address_string", false]], "addresses (email.headerregistry.addressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.AddressHeader.addresses", false]], "addresses (email.headerregistry.group \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Group.addresses", false]], "addressheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.AddressHeader", false]], "addressof() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.addressof", false]], "addressvalueerror": [[259, "ipaddress.AddressValueError", false]], "addshape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.addshape", false]], "addsitedir() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.addsitedir", false]], "addskip() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSkip", false]], "addstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.addstr", false]], "addsubtest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSubTest", false]], "addsuccess() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addSuccess", false]], "addtest() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.addTest", false]], "addtests() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.addTests", false]], "addtypeequalityfunc() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.addTypeEqualityFunc", false]], "addunexpectedsuccess() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.addUnexpectedSuccess", false]], "adjust_int_max_str_digits() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.adjust_int_max_str_digits", false]], "adjusted() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.adjusted", false]], "adler32() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.adler32", false]], "adpcm, intel/dvi": [[141, "index-1", false]], "adpcm2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.adpcm2lin", false]], "af_alg (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_ALG", false]], "af_can (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_CAN", false]], "af_divert (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_DIVERT", false]], "af_hyperv (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_HYPERV", false]], "af_inet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_INET", false]], "af_inet6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_INET6", false]], "af_link (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_LINK", false]], "af_packet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_PACKET", false]], "af_qipcrtr (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_QIPCRTR", false]], "af_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_RDS", false]], "af_unix (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_UNIX", false]], "af_unspec (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_UNSPEC", false]], "af_vsock (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.AF_VSOCK", false]], "aifc": [[117, "module-aifc", false]], "aifc() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.aifc", false]], "aiff": [[117, "index-0", false], [153, "index-0", false]], "aiff() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.aiff", false]], "aiff-c": [[117, "index-0", false], [153, "index-0", false]], "aiter()": [[225, "aiter", false]], "alarm() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.alarm", false]], "alaw2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.alaw2lin", false]], "alert_description_handshake_failure (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE", false]], "alert_description_internal_error (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.ALERT_DESCRIPTION_INTERNAL_ERROR", false]], "alertdescription (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.AlertDescription", false]], "algorithm (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.algorithm", false]], "algorithms_available (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.algorithms_available", false]], "algorithms_guaranteed (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.algorithms_guaranteed", false]], "alias (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.alias", false]], "alias (pdb command)": [[297, "pdbcommand-alias", false]], "alias\uff08\u5225\u540d\uff09": [[344, "index-56", false]], "alignment() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.alignment", false]], "alive (weakref.finalize \u7684\u5c6c\u6027)": [[402, "weakref.finalize.alive", false]], "all()": [[225, "all", false]], "all_completed (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.ALL_COMPLETED", false]], "all_completed (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.ALL_COMPLETED", false]], "all_errors (\u65bc ftplib \u6a21\u7d44\u4e2d)": [[223, "ftplib.all_errors", false]], "all_features (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.all_features", false]], "all_frames (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.all_frames", false]], "all_properties (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.all_properties", false]], "all_suffixes() (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.all_suffixes", false]], "all_tasks() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.all_tasks", false]], "allocate_lock() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.allocate_lock", false]], "allocfunc (c type)": [[63, "c.allocfunc", false]], "allow_reuse_address (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.allow_reuse_address", false]], "allowed_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.allowed_domains", false]], "alt() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.alt", false]], "alt_digits (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ALT_DIGITS", false]], "altsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.altsep", false]], "altzone (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.altzone", false]], "always_eq (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.ALWAYS_EQ", false]], "always_typed_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.ALWAYS_TYPED_ACTIONS", false]], "ambiguousoptionerror": [[292, "optparse.AmbiguousOptionError", false]], "amper (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AMPER", false]], "amperequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AMPEREQUAL", false]], "anchor (importlib.resources \u4e2d\u7684\u985e\u5225)": [[252, "importlib.resources.Anchor", false]], "anchor (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.anchor", false]], "and": [[344, "index-4", false], [344, "index-6", false], [430, "index-74", false], [430, "index-84", false]], "and (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.And", false]], "and_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.and_", false]], "anext()": [[225, "anext", false]], "annassign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AnnAssign", false]], "annotated (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Annotated", false]], "annotated variable\uff08\u8a3b\u91cb\u8b8a\u6578\uff09": [[436, "index-15", false]], "annotated\uff08\u8a3b\u91cb\uff09": [[436, "index-15", false]], "annotation (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.annotation", false]], "annotations\uff08\u8a3b\u91cb\uff09": [[427, "index-34", false], [441, "index-6", false]], "annotation\uff08\u8a3b\u8a18\uff09": [[344, "index-55", false]], "annotation\uff08\u8a3b\u91cb\uff09": [[87, "term-annotation", true]], "anonymous\uff08\u533f\u540d\uff09": [[430, "index-90", false]], "answer_challenge() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.answer_challenge", false]], "anticipate_failure() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.anticipate_failure", false]], "any (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Any", false]], "any (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.ANY", false]], "any()": [[225, "any", false]], "any_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.ANY_CONTIGUOUS", false]], "anystr (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.AnyStr", false]], "api_version (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.api_version", false]], "apilevel (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.apilevel", false]], "apop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.apop", false]], "appdata": [[468, "index-5", false]], "append() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.append", false]], "append() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.append", false]], "append() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.append", false]], "append() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.append", false]], "append() (msilib.cab \u7684\u65b9\u6cd5)": [[281, "msilib.CAB.append", false]], "append() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.append", false]], "append() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.append", false]], "append()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "append_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.append_history_file", false]], "appendchild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.appendChild", false]], "appendleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.appendleft", false]], "application_uri() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.application_uri", false]], "apply (2to3 fixer)": [[112, "to3fixer-apply", false]], "apply() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.apply", false]], "apply_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.apply_async", false]], "apply_defaults() (inspect.boundarguments \u7684\u65b9\u6cd5)": [[255, "inspect.BoundArguments.apply_defaults", false]], "april (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.APRIL", false]], "architecture() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.architecture", false]], "archive (zipimport.zipimporter \u7684\u5c6c\u6027)": [[423, "zipimport.zipimporter.archive", false]], "aregtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.AREGTYPE", false]], "arepr (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.aRepr", false]], "arg (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.arg", false]], "argparse": [[120, "module-argparse", false]], "args (baseexception \u7684\u5c6c\u6027)": [[213, "BaseException.args", false]], "args (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.args", false]], "args (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.args", false]], "args (pdb command)": [[297, "pdbcommand-args", false]], "args (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.args", false]], "args (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.args", false]], "args (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.args", false]], "args_from_interpreter_flags() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.args_from_interpreter_flags", false]], "argtypes (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.argtypes", false]], "argument list\uff08\u5f15\u6578\u5217\u8868\uff09": [[430, "index-47", false]], "argumentdefaultshelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.ArgumentDefaultsHelpFormatter", false]], "argumenterror": [[120, "argparse.ArgumentError", false], [176, "ctypes.ArgumentError", false]], "argumentparser (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.ArgumentParser", false]], "arguments (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.arguments", false]], "arguments (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.arguments", false]], "argumenttypeerror": [[120, "argparse.ArgumentTypeError", false]], "argument\uff08\u5f15\u6578\uff09": [[85, "index-1", false], [87, "term-argument", true], [427, "index-31", false], [428, "index-33", false], [430, "index-47", false]], "argv (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.argv", false]], "argv\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-29", false]], "arithmetic": [[430, "index-1", false], [430, "index-59", false], [430, "index-64", false]], "arithmeticerror": [[213, "ArithmeticError", false]], "arithmetic\uff08\u7b97\u8853\uff09": [[344, "index-13", false]], "array": [[121, "module-array", false]], "array (array \u4e2d\u7684\u985e\u5225)": [[121, "array.array", false]], "array (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Array", false]], "array() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Array", false]], "array() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Array", false]], "array() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.Array", false]], "arraysize (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.arraysize", false]], "arrays\uff08\u9663\u5217\uff09": [[121, "index-0", false]], "array\uff08\u9663\u5217\uff09": [[344, "index-40", false], [428, "index-23", false]], "article() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.article", false]], "as": [[427, "index-10", false], [427, "index-16", false], [427, "index-18", false], [427, "index-9", false], [436, "index-34", false], [436, "index-35", false]], "as pattern, or pattern, capture pattern, wildcard pattern": [[427, "index-23", false]], "as_bytes() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.as_bytes", false]], "as_bytes() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.as_bytes", false]], "as_completed() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.as_completed", false]], "as_completed() (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.as_completed", false]], "as_file() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.as_file", false]], "as_integer_ratio() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.as_integer_ratio", false]], "as_integer_ratio() (float \u7684\u65b9\u6cd5)": [[344, "float.as_integer_ratio", false]], "as_integer_ratio() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.as_integer_ratio", false]], "as_integer_ratio() (int \u7684\u65b9\u6cd5)": [[344, "int.as_integer_ratio", false]], "as_posix() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.as_posix", false]], "as_string() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.as_string", false]], "as_string() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.as_string", false]], "as_tuple() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.as_tuple", false]], "as_uri() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.as_uri", false]], "ascii": [[49, "index-1", false], [434, "index-1", false], [435, "index-17", false]], "ascii (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.ASCII", false]], "ascii()": [[225, "ascii", false]], "ascii() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ascii", false]], "ascii_letters (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_letters", false]], "ascii_lowercase (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_lowercase", false]], "ascii_uppercase (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.ascii_uppercase", false]], "asctime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.asctime", false]], "asdict() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.asdict", false]], "asend() (agen \u7684\u65b9\u6cd5)": [[430, "agen.asend", false]], "asin() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.asin", false]], "asin() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.asin", false]], "asinh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.asinh", false]], "asinh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.asinh", false]], "askcolor() (\u65bc tkinter.colorchooser \u6a21\u7d44\u4e2d)": [[370, "tkinter.colorchooser.askcolor", false]], "askdirectory() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askdirectory", false]], "askfloat() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askfloat", false]], "askinteger() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askinteger", false]], "askokcancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askokcancel", false]], "askopenfile() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfile", false]], "askopenfilename() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfilename", false]], "askopenfilenames() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfilenames", false]], "askopenfiles() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.askopenfiles", false]], "askquestion() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askquestion", false]], "askretrycancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askretrycancel", false]], "asksaveasfile() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.asksaveasfile", false]], "asksaveasfilename() (\u65bc tkinter.filedialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.filedialog.asksaveasfilename", false]], "askstring() (\u65bc tkinter.simpledialog \u6a21\u7d44\u4e2d)": [[189, "tkinter.simpledialog.askstring", false]], "askyesno() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askyesno", false]], "askyesnocancel() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.askyesnocancel", false]], "assert": [[213, "index-4", false], [436, "index-18", true]], "assert (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Assert", false]], "assert_any_await() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_any_await", false]], "assert_any_call() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_any_call", false]], "assert_awaited() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited", false]], "assert_awaited_once() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_once", false]], "assert_awaited_once_with() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_once_with", false]], "assert_awaited_with() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_awaited_with", false]], "assert_called() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called", false]], "assert_called_once() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_once", false]], "assert_called_once_with() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_once_with", false]], "assert_called_with() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_called_with", false]], "assert_has_awaits() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_has_awaits", false]], "assert_has_calls() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_has_calls", false]], "assert_never() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.assert_never", false]], "assert_not_awaited() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.assert_not_awaited", false]], "assert_not_called() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.assert_not_called", false]], "assert_python_failure() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.assert_python_failure", false]], "assert_python_ok() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.assert_python_ok", false]], "assert_type() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.assert_type", false]], "assertalmostequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertAlmostEqual", false]], "assertcountequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertCountEqual", false]], "assertdictequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertDictEqual", false]], "assertequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertEqual", false]], "assertfalse() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertFalse", false]], "assertgreater() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertGreater", false]], "assertgreaterequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertGreaterEqual", false]], "assertin() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIn", false]], "assertinbytecode() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.assertInBytecode", false]], "assertionerror": [[213, "AssertionError", false], [436, "index-19", false]], "assertions\uff08\u65b7\u8a00\uff09": [[436, "index-18", false]], "assertis() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIs", false]], "assertisinstance() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsInstance", false]], "assertisnone() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNone", false]], "assertisnot() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNot", false]], "assertisnotnone() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertIsNotNone", false]], "assertless() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLess", false]], "assertlessequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLessEqual", false]], "assertlistequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertListEqual", false]], "assertlogs() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertLogs", false]], "assertmultilineequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertMultiLineEqual", false]], "assertnologs() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNoLogs", false]], "assertnotalmostequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotAlmostEqual", false]], "assertnotequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotEqual", false]], "assertnotin() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotIn", false]], "assertnotinbytecode() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.assertNotInBytecode", false]], "assertnotisinstance() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotIsInstance", false]], "assertnotregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertNotRegex", false]], "assertraises() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRaises", false]], "assertraisesregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRaisesRegex", false]], "assertregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertRegex", false]], "asserts (2to3 fixer)": [[112, "to3fixer-asserts", false]], "assertsequenceequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertSequenceEqual", false]], "assertsetequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertSetEqual", false]], "asserttrue() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertTrue", false]], "asserttupleequal() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertTupleEqual", false]], "assertwarns() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertWarns", false]], "assertwarnsregex() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.assertWarnsRegex", false]], "assign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Assign", false]], "assignment expression\uff08\u8ce6\u503c\u904b\u7b97\u5f0f\uff09": [[430, "index-86", false]], "assignment statement\uff08\u8ce6\u503c\u9673\u8ff0\u5f0f\uff09": [[436, "index-4", false]], "assignment\uff08\u8ce6\u503c\uff09": [[344, "index-24", false], [428, "index-22", false], [428, "index-48", false], [428, "index-52", false], [436, "index-12", false], [436, "index-14", false], [436, "index-15", false], [436, "index-4", false], [436, "index-6", false], [436, "index-8", false], [436, "index-9", false]], "assignment\uff08\u8ce6\u503c\uff09\u3001annotated\uff08\u8a3b\u91cb\uff09": [[436, "index-15", false]], "assignment\uff08\u8ce6\u503c\uff09\u3001augmented\uff08\u589e\u5f37\uff09": [[436, "index-14", false]], "ast": [[122, "module-ast", false]], "ast (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AST", false]], "ast \u547d\u4ee4\u5217\u9078\u9805": [[122, "cmdoption-ast-a", false], [122, "cmdoption-ast-h", false], [122, "cmdoption-ast-i", false], [122, "cmdoption-ast-indent", false], [122, "cmdoption-ast-m", false], [122, "cmdoption-ast-mode", false], [122, "cmdoption-ast-no-type-comments", false]], "astimezone() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.astimezone", false]], "astuple() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.astuple", false]], "async": [[427, "index-49", false]], "async (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ASYNC", false]], "async def": [[427, "index-48", false]], "async for": [[427, "index-50", false], [430, "index-12", false]], "async with": [[427, "index-51", false]], "asynccontextdecorator (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AsyncContextDecorator", false]], "asynccontextmanager (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncContextManager", false]], "asynccontextmanager() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.asynccontextmanager", false]], "asyncexitstack (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.AsyncExitStack", false]], "asyncfor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncFor", false]], "asyncfunctiondef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncFunctionDef", false]], "asyncgenerator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncGenerator", false]], "asyncgenerator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncGenerator", false]], "asyncgeneratortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.AsyncGeneratorType", false]], "asynchronous context manager\uff08\u975e\u540c\u6b65\u60c5\u5883\u7ba1\u7406\u5668\uff09": [[87, "term-asynchronous-context-manager", true]], "asynchronous generator iterator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": [[87, "term-asynchronous-generator-iterator", true]], "asynchronous generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": [[87, "term-asynchronous-generator", true], [428, "index-41", false]], "asynchronous iterable\uff08\u975e\u540c\u6b65\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": [[87, "term-asynchronous-iterable", true]], "asynchronous iterator\uff08\u975e\u540c\u6b65\u758a\u4ee3\u5668\uff09": [[87, "term-asynchronous-iterator", true], [428, "index-41", false]], "asynchronous-generator\uff08\u975e\u540c\u6b65\u7522\u751f\u5668\uff09": [[430, "index-35", false]], "asyncio": [[123, "module-asyncio", false]], "asyncio.subprocess.devnull (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.DEVNULL", false]], "asyncio.subprocess.pipe (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.PIPE", false]], "asyncio.subprocess.process (\u5167\u5efa\u985e\u5225)": [[137, "asyncio.subprocess.Process", false]], "asyncio.subprocess.stdout (\u5167\u5efa\u8b8a\u6578)": [[137, "asyncio.subprocess.STDOUT", false]], "asynciterable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncIterable", false]], "asynciterable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncIterable", false]], "asynciterator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.AsyncIterator", false]], "asynciterator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.AsyncIterator", false]], "asyncmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.AsyncMock", false]], "asyncresult (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.AsyncResult", false]], "asyncsetup() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.asyncSetUp", false]], "asyncteardown() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.asyncTearDown", false]], "asyncwith (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AsyncWith", false]], "at (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AT", false]], "at_eof() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.at_eof", false]], "atan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.atan", false]], "atan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atan", false]], "atan2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atan2", false]], "atanh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.atanh", false]], "atanh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.atanh", false]], "atequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ATEQUAL", false]], "atexit": [[140, "module-atexit", false]], "atexit (weakref.finalize \u7684\u5c6c\u6027)": [[402, "weakref.finalize.atexit", false]], "athrow() (agen \u7684\u65b9\u6cd5)": [[430, "agen.athrow", false]], "atof() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.atof", false]], "atoi() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.atoi", false]], "atom": [[430, "index-2", false]], "attach() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.attach", false]], "attach_loop() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.attach_loop", false]], "attach_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.attach_mock", false]], "attlistdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.AttlistDeclHandler", false]], "attrgetter() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.attrgetter", false]], "attrib (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.attrib", false]], "attribute (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Attribute", false]], "attribute reference\uff08\u5c6c\u6027\u53c3\u7167\uff09": [[430, "index-39", false]], "attributeerror": [[213, "AttributeError", false], [430, "index-40", false]], "attributes (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.attributes", false]], "attributesimpl (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.AttributesImpl", false]], "attributesnsimpl (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.AttributesNSImpl", false]], "attribute\uff08\u5c6c\u6027\uff09": [[87, "term-attribute", true], [428, "index-47", false], [428, "index-48", false], [428, "index-5", false], [428, "index-51", false], [428, "index-52", false], [430, "index-39", false], [436, "index-23", false], [436, "index-4", false], [436, "index-8", false]], "attroff() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attroff", false]], "attron() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attron", false]], "attrset() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.attrset", false]], "audio interchange file format\uff08\u97f3\u8a0a\u4ea4\u63db\u6a94\u6848\u683c\u5f0f\uff09": [[117, "index-0", false], [153, "index-0", false]], "audio_file_encoding_adpcm_g721 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G721", false]], "audio_file_encoding_adpcm_g722 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G722", false]], "audio_file_encoding_adpcm_g723_3 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3", false]], "audio_file_encoding_adpcm_g723_5 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5", false]], "audio_file_encoding_alaw_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_ALAW_8", false]], "audio_file_encoding_double (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_DOUBLE", false]], "audio_file_encoding_float (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_FLOAT", false]], "audio_file_encoding_linear_16 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_16", false]], "audio_file_encoding_linear_24 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_24", false]], "audio_file_encoding_linear_32 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_32", false]], "audio_file_encoding_linear_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_LINEAR_8", false]], "audio_file_encoding_mulaw_8 (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_ENCODING_MULAW_8", false]], "audio_file_magic (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.AUDIO_FILE_MAGIC", false]], "audiodev": [[295, "index-1", false]], "audioop": [[141, "module-audioop", false]], "audit events\uff08\u7a3d\u6838\u4e8b\u4ef6\uff09": [[142, "index-0", false]], "audit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.audit", false]], "auditing": [[352, "index-2", false]], "augassign (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.AugAssign", false]], "augmented assignment\uff08\u589e\u5f37\u8ce6\u503c\uff09": [[436, "index-14", false]], "augmented\uff08\u589e\u5f37\uff09": [[436, "index-14", false]], "august (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.AUGUST", false]], "auth() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.auth", false]], "auth() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.auth", false]], "authenticate() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.authenticate", false]], "authenticationerror": [[283, "multiprocessing.AuthenticationError", false]], "authenticators() (netrc.netrc \u7684\u65b9\u6cd5)": [[286, "netrc.netrc.authenticators", false]], "authkey (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.authkey", false]], "auto (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.auto", false]], "autocommit (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.autocommit", false]], "autorange() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.autorange", false]], "available_timezones() (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.available_timezones", false]], "avg() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.avg", false]], "avgpp() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.avgpp", false]], "avoids_symlink_attacks (shutil.rmtree \u7684\u5c6c\u6027)": [[332, "shutil.rmtree.avoids_symlink_attacks", false]], "await": [[427, "index-49", false], [430, "index-13", false], [430, "index-57", false]], "await (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Await", false]], "await (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.AWAIT", false]], "await_args (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_args", false]], "await_args_list (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_args_list", false]], "await_count (unittest.mock.asyncmock \u7684\u5c6c\u6027)": [[389, "unittest.mock.AsyncMock.await_count", false]], "awaitable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Awaitable", false]], "awaitable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Awaitable", false]], "awaitable\uff08\u53ef\u7b49\u5f85\u7269\u4ef6\uff09": [[87, "term-awaitable", true]], "b\"": [[435, "index-19", false]], "b'": [[435, "index-19", false]], "b16decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b16decode", false]], "b16encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b16encode", false]], "b2a_base64() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_base64", false]], "b2a_hex() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_hex", false]], "b2a_qp() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_qp", false]], "b2a_uu() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.b2a_uu", false]], "b32decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32decode", false]], "b32encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32encode", false]], "b32hexdecode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32hexdecode", false]], "b32hexencode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b32hexencode", false]], "b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b64decode", false]], "b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b64encode", false]], "b85decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b85decode", false]], "b85encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.b85encode", false]], "babyl (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Babyl", false]], "babylmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.BabylMessage", false]], "back() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.back", false]], "backslash character\uff08\u53cd\u659c\u7dda\u5b57\u5143\uff09": [[435, "index-6", false]], "backslashreplace": [[158, "index-1", false]], "backslashreplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.backslashreplace_errors", false]], "backup() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.backup", false]], "backward() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.backward", false]], "badgzipfile": [[234, "gzip.BadGzipFile", false]], "badoptionerror": [[292, "optparse.BadOptionError", false]], "badstatusline": [[242, "http.client.BadStatusLine", false]], "badzipfile": [[422, "zipfile.BadZipFile", false], [422, "zipfile.BadZipfile", false]], "balloon (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Balloon", false]], "barrier (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Barrier", false]], "barrier (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Barrier", false]], "barrier (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Barrier", false]], "barrier() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Barrier", false]], "base64": [[143, "index-0", false], [143, "module-base64", false], [146, "index-0", false]], "base64 encoding\uff08base64 \u7de8\u78bc\uff09": [[143, "index-0", false]], "base_exec_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.base_exec_prefix", false]], "base_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.base_prefix", false]], "basecflags": [[456, "envvar-BASECFLAGS", false]], "basecgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.BaseCGIHandler", false]], "basecookie (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.BaseCookie", false]], "basecppflags": [[456, "envvar-BASECPPFLAGS", false]], "baseexception": [[213, "BaseException", false]], "baseexceptiongroup": [[213, "BaseExceptionGroup", false]], "basehandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.BaseHandler", false]], "basehandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.BaseHandler", false]], "baseheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.BaseHeader", false]], "basehttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.BaseHTTPRequestHandler", false]], "basemanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.BaseManager", false]], "basename() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.basename", false]], "baseprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BaseProtocol", false]], "baseproxy (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.BaseProxy", false]], "baserequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.BaseRequestHandler", false]], "baserotatinghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.BaseRotatingHandler", false]], "baseselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.BaseSelector", false]], "baseserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.BaseServer", false]], "basestring (2to3 fixer)": [[112, "to3fixer-basestring", false]], "basetransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BaseTransport", false]], "basicconfig() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.basicConfig", false]], "basiccontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.BasicContext", false]], "basicinterpolation (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.BasicInterpolation", false]], "batched() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.batched", false]], "baudrate() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.baudrate", false]], "bbox() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.bbox", false]], "bdaddr_any (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.BDADDR_ANY", false]], "bdaddr_local (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.BDADDR_LOCAL", false]], "bdb": [[144, "module-bdb", false], [297, "index-1", false]], "bdb (bdb \u4e2d\u7684\u985e\u5225)": [[144, "bdb.Bdb", false]], "bdbquit": [[144, "bdb.BdbQuit", false]], "bdfl": [[87, "term-BDFL", true]], "beep() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.beep", false]], "beep() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.Beep", false]], "before_async_with (opcode)": [[191, "opcode-BEFORE_ASYNC_WITH", false]], "before_with (opcode)": [[191, "opcode-BEFORE_WITH", false]], "begin_fill() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.begin_fill", false]], "begin_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.begin_poly", false]], "bel (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.BEL", false]], "below() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.below", false]], "below_normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.BELOW_NORMAL_PRIORITY_CLASS", false]], "benchmarking\uff08\u57fa\u6e96\u6e2c\u8a66\uff09": [[366, "index-12", false], [366, "index-6", false], [366, "index-7", false]], "betavariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.betavariate", false]], "bgcolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bgcolor", false]], "bgpic() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bgpic", false]], "bias() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.bias", false]], "bidirectional() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.bidirectional", false]], "bigaddrspacetest() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.bigaddrspacetest", false]], "bigendianstructure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.BigEndianStructure", false]], "bigendianunion (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.BigEndianUnion", false]], "bigmemtest() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.bigmemtest", false]], "bin()": [[225, "bin", false]], "binary (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Binary", false]], "binary (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.Binary", false]], "binary file\uff08\u4e8c\u9032\u4f4d\u6a94\u6848\uff09": [[87, "term-binary-file", true]], "binary literal\uff08\u4e8c\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "binary mode\uff08\u4e8c\u9032\u4f4d\u6a21\u5f0f\uff09": [[225, "index-8", false]], "binary operator\uff08\u4e8c\u5143\u904b\u7b97\u5b50\uff09": [[344, "index-13", false], [430, "index-69", false], [430, "index-70", false]], "binary semaphores": [[115, "index-0", false]], "binary sequence types\uff08\u4e8c\u9032\u4f4d\u5e8f\u5217\u578b\u5225\uff09": [[344, "index-39", false]], "binary_op (opcode)": [[191, "opcode-BINARY_OP", false]], "binary_slice (opcode)": [[191, "opcode-BINARY_SLICE", false]], "binary_subscr (opcode)": [[191, "opcode-BINARY_SUBSCR", false]], "binaryfunc (c type)": [[63, "c.binaryfunc", false]], "binaryio (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.BinaryIO", false]], "binary\uff08\u4e8c\u9032\u4f4d\uff09": [[344, "index-12", false], [347, "index-0", false], [430, "index-64", false], [430, "index-73", false]], "binascii": [[146, "module-binascii", false]], "bind (widgets)": [[369, "index-5", false]], "bind() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.bind", false]], "bind() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.bind", false]], "bind_partial() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.bind_partial", false]], "bind_port() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.bind_port", false]], "bind_textdomain_codeset() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.bind_textdomain_codeset", false]], "bind_unix_socket() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.bind_unix_socket", false]], "binding\uff08\u7d81\u5b9a\uff09": [[427, "index-28", false], [427, "index-42", false]], "binding\uff08\u7e6b\u7d50\uff09": [[429, "index-4", false], [436, "index-34", false], [436, "index-36", false], [436, "index-4", false], [436, "index-43", false]], "bindtextdomain() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.bindtextdomain", false]], "bindtextdomain() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.bindtextdomain", false]], "binomialvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.binomialvariate", false]], "binop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BinOp", false]], "bisect": [[147, "module-bisect", false]], "bisect() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect", false]], "bisect_left() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect_left", false]], "bisect_right() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.bisect_right", false]], "bit_count() (int \u7684\u65b9\u6cd5)": [[344, "int.bit_count", false]], "bit_length() (int \u7684\u65b9\u6cd5)": [[344, "int.bit_length", false]], "bitand (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitAnd", false]], "bitmap() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.bitmap", false]], "bitor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitOr", false]], "bits_per_digit (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.bits_per_digit", false]], "bitwise\uff08\u4f4d\u5143\uff09": [[344, "index-16", false], [430, "index-59", false], [430, "index-73", false], [430, "index-74", false], [430, "index-75", false], [430, "index-76", false]], "bitxor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BitXor", false]], "bk() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bk", false]], "bkgd() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.bkgd", false]], "bkgdset() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.bkgdset", false]], "blake2b() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b", false]], "blake2b, blake2s": [[235, "index-4", false]], "blake2b.max_digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.MAX_DIGEST_SIZE", false]], "blake2b.max_key_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.MAX_KEY_SIZE", false]], "blake2b.person_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.PERSON_SIZE", false]], "blake2b.salt_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2b.SALT_SIZE", false]], "blake2s() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s", false]], "blake2s.max_digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.MAX_DIGEST_SIZE", false]], "blake2s.max_key_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.MAX_KEY_SIZE", false]], "blake2s.person_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.PERSON_SIZE", false]], "blake2s.salt_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.blake2s.SALT_SIZE", false]], "blank line\uff08\u7a7a\u767d\u5217\uff09": [[435, "index-7", false]], "bldshared": [[456, "envvar-BLDSHARED", false]], "blktype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.BLKTYPE", false]], "blob (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Blob", false]], "blobopen() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.blobopen", false]], "block": [[429, "index-0", false], [429, "index-1", false]], "block_on_close (socketserver.threadingmixin \u7684\u5c6c\u6027)": [[338, "socketserver.ThreadingMixIn.block_on_close", false]], "block_size (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.block_size", false]], "blocked_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.blocked_domains", false]], "blockingioerror": [[213, "BlockingIOError", false], [258, "io.BlockingIOError", false]], "blocksize (http.client.httpconnection \u7684\u5c6c\u6027)": [[242, "http.client.HTTPConnection.blocksize", false]], "bnf": [[430, "index-0", false], [434, "index-0", false]], "body": [[428, "index-91", false]], "body() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.body", false]], "body() (tkinter.simpledialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.simpledialog.Dialog.body", false]], "body_encode() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.body_encode", false]], "body_encoding (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.body_encoding", false]], "body_line_iterator() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators.body_line_iterator", false]], "bold (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.BOLD", false]], "bom (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM", false]], "bom_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_BE", false]], "bom_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_LE", false]], "bom_utf16 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16", false]], "bom_utf16_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16_BE", false]], "bom_utf16_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF16_LE", false]], "bom_utf32 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32", false]], "bom_utf32_be (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32_BE", false]], "bom_utf32_le (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF32_LE", false]], "bom_utf8 (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.BOM_UTF8", false]], "bool (\u5167\u5efa\u985e\u5225)": [[225, "bool", false]], "boolean_states (configparser.configparser \u7684\u5c6c\u6027)": [[167, "configparser.ConfigParser.BOOLEAN_STATES", false]], "boolean\uff08\u5e03\u6797\u503c\uff09": [[225, "index-0", false]], "boolean\uff08\u5e03\u6797\uff09": [[344, "index-1", false], [344, "index-11", false], [344, "index-17", false], [344, "index-5", false], [428, "index-12", false], [430, "index-82", false]], "boolop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.BoolOp", false]], "bootstrap() (\u65bc ensurepip \u6a21\u7d44\u4e2d)": [[210, "ensurepip.bootstrap", false]], "border() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.border", false]], "borrowed reference\uff08\u501f\u7528\u53c3\u7167\uff09": [[87, "term-borrowed-reference", true]], "bottom() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.bottom", false]], "bottom_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.bottom_panel", false]], "boundarguments (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.BoundArguments", false]], "boundaryerror": [[199, "email.errors.BoundaryError", false]], "boundedsemaphore (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.BoundedSemaphore", false]], "boundedsemaphore (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.BoundedSemaphore", false]], "boundedsemaphore (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.BoundedSemaphore", false]], "boundedsemaphore() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.BoundedSemaphore", false]], "box() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.box", false]], "bpbynumber (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.bpbynumber", false]], "bpformat() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.bpformat", false]], "bplist (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.bplist", false]], "bpprint() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.bpprint", false]], "branch (monitoring event)": [[353, "monitoring-event-BRANCH", false]], "break": [[427, "index-13", false], [427, "index-15", false], [427, "index-5", false], [427, "index-7", false], [436, "index-30", true]], "break (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Break", false]], "break (pdb command)": [[297, "pdbcommand-break", false]], "break_anywhere() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.break_anywhere", false]], "break_here() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.break_here", false]], "break_long_words (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.break_long_words", false]], "break_on_hyphens (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.break_on_hyphens", false]], "breakpoint (bdb \u4e2d\u7684\u985e\u5225)": [[144, "bdb.Breakpoint", false]], "breakpoint()": [[225, "breakpoint", false]], "breakpointhook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.breakpointhook", false]], "breakpoints\uff08\u4e2d\u65b7\u9ede\uff09": [[247, "index-4", false]], "broadcast_address (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.broadcast_address", false]], "broadcast_address (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.broadcast_address", false]], "broken (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.broken", false]], "broken (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.broken", false]], "brokenbarriererror": [[138, "asyncio.BrokenBarrierError", false], [365, "threading.BrokenBarrierError", false]], "brokenexecutor": [[166, "concurrent.futures.BrokenExecutor", false]], "brokenpipeerror": [[213, "BrokenPipeError", false]], "brokenprocesspool": [[166, "concurrent.futures.process.BrokenProcessPool", false]], "brokenthreadpool": [[166, "concurrent.futures.thread.BrokenThreadPool", false]], "browser": [[403, "index-0", false], [403, "index-1", false]], "bs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.BS", false]], "bsddbshelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.BsdDbShelf", false]], "buf (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.buf", false]], "buffer (2to3 fixer)": [[112, "to3fixer-buffer", false]], "buffer (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Buffer", false]], "buffer (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.buffer", false]], "buffer (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.buffer", false]], "buffer interface\uff08\u7de9\u885d\u4ecb\u9762\uff09": [[7, "index-0", false]], "buffer object\uff08\u7de9\u885d\u7269\u4ef6\uff09": [[7, "index-0", false]], "buffer protocol\uff08\u7de9\u885d\u5340\u5354\u5b9a\uff09": [[344, "index-31", false], [344, "index-39", false]], "buffer protocol\uff08\u7de9\u885d\u5354\u5b9a\uff09": [[7, "index-0", false]], "buffer size, i/o\uff08\u7de9\u885d\u5340\u5927\u5c0f\u3001i/o\uff09": [[225, "index-8", false]], "buffer_info() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.buffer_info", false]], "buffer_size (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_size", false]], "buffer_text (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_text", false]], "buffer_updated() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.buffer_updated", false]], "buffer_used (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.buffer_used", false]], "bufferediobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedIOBase", false]], "bufferedprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.BufferedProtocol", false]], "bufferedrandom (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedRandom", false]], "bufferedreader (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedReader", false]], "bufferedrwpair (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedRWPair", false]], "bufferedwriter (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BufferedWriter", false]], "buffererror": [[213, "BufferError", false]], "bufferflags (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.BufferFlags", false]], "bufferingformatter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.BufferingFormatter", false]], "bufferinghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.BufferingHandler", false]], "buffering\uff08\u7de9\u885d\uff09": [[225, "index-8", false], [337, "index-6", false]], "buffertooshort": [[283, "multiprocessing.BufferTooShort", false]], "bufsize() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.bufsize", false]], "build_const_key_map (opcode)": [[191, "opcode-BUILD_CONST_KEY_MAP", false]], "build_list (opcode)": [[191, "opcode-BUILD_LIST", false]], "build_map (opcode)": [[191, "opcode-BUILD_MAP", false]], "build_opener() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.build_opener", false]], "build_set (opcode)": [[191, "opcode-BUILD_SET", false]], "build_slice (opcode)": [[191, "opcode-BUILD_SLICE", false]], "build_string (opcode)": [[191, "opcode-BUILD_STRING", false]], "build_tuple (opcode)": [[191, "opcode-BUILD_TUPLE", false]], "built-in function": [[225, "abs", false], [225, "aiter", false], [225, "all", false], [225, "anext", false], [225, "any", false], [225, "ascii", false], [225, "bin", false], [225, "breakpoint", false], [225, "callable", false], [225, "chr", false], [225, "classmethod", false], [225, "compile", false], [225, "delattr", false], [225, "dir", false], [225, "divmod", false], [225, "enumerate", false], [225, "eval", false], [225, "exec", false], [225, "filter", false], [225, "format", false], [225, "getattr", false], [225, "globals", false], [225, "hasattr", false], [225, "hash", false], [225, "help", false], [225, "hex", false], [225, "id", false], [225, "import__", false], [225, "input", false], [225, "isinstance", false], [225, "issubclass", false], [225, "iter", false], [225, "len", false], [225, "locals", false], [225, "map", false], [225, "max", false], [225, "min", false], [225, "next", false], [225, "oct", false], [225, "open", false], [225, "ord", false], [225, "pow", false], [225, "print", false], [225, "property.deleter", false], [225, "property.getter", false], [225, "property.setter", false], [225, "repr", false], [225, "reversed", false], [225, "round", false], [225, "setattr", false], [225, "sorted", false], [225, "staticmethod", false], [225, "sum", false], [225, "vars", false], [225, "zip", false], [283, "multiprocessing.Manager", false]], "built-in function\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[22, "index-1", false], [31, "index-1", false], [31, "index-2", false], [38, "index-1", false], [38, "index-2", false], [40, "index-0", false], [47, "index-0", false], [47, "index-1", false], [47, "index-2", false], [47, "index-3", false], [47, "index-4", false], [47, "index-5", false], [55, "index-1", false], [58, "index-0", false], [58, "index-1", false], [63, "index-1", false], [63, "index-2", false], [75, "index-3", false], [191, "index-1", false], [225, "index-2", false], [307, "index-0", false], [307, "index-2", false], [344, "index-13", false], [344, "index-20", false], [344, "index-22", false], [344, "index-52", false], [344, "index-63", false], [344, "index-64", false], [344, "index-65", false], [385, "index-4", false], [427, "index-8", false], [428, "index-1", false], [428, "index-100", false], [428, "index-101", false], [428, "index-102", false], [428, "index-103", false], [428, "index-104", false], [428, "index-105", false], [428, "index-15", false], [428, "index-19", false], [428, "index-27", false], [428, "index-30", false], [428, "index-42", false], [428, "index-55", false], [428, "index-69", false], [428, "index-77", false], [428, "index-78", false], [428, "index-80", false], [428, "index-86", false], [428, "index-98", false], [430, "index-53", false], [436, "index-3", false], [436, "index-44", false], [437, "index-6", false], [446, "index-0", false], [451, "index-0", false]], "built-in function\uff08\u5185\u5efa\u51fd\u5f0f\uff09": [[54, "index-0", false], [54, "index-1", false]], "built-in method\uff08\u5167\u5efa\u65b9\u6cd5\uff09": [[428, "index-43", false], [430, "index-53", false]], "built-in\uff08\u5167\u5efa\uff09": [[344, "index-0", false], [428, "index-43", false]], "builtin_module_names (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.builtin_module_names", false]], "builtinfunctiontype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.BuiltinFunctionType", false]], "builtinimporter (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.BuiltinImporter", false]], "builtinmethodtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.BuiltinMethodType", false]], "builtins": [[148, "module-builtins", false]], "builtins\uff08\u5167\u5efa\uff09": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [225, "index-13", false], [437, "index-2", false], [450, "index-7", false]], "bulit-in function\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[49, "index-0", false], [49, "index-1", false], [49, "index-3", false], [49, "index-6", false], [49, "index-7", false], [49, "index-8", false]], "busy_retry() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.busy_retry", false]], "button_alt (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_ALT", false]], "button_ctrl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_CTRL", false]], "button_shift (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTON_SHIFT", false]], "buttonbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ButtonBox", false]], "buttonbox() (tkinter.simpledialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.simpledialog.Dialog.buttonbox", false]], "buttonn_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_CLICKED", false]], "buttonn_double_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_DOUBLE_CLICKED", false]], "buttonn_pressed (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_PRESSED", false]], "buttonn_released (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_RELEASED", false]], "buttonn_triple_clicked (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.BUTTONn_TRIPLE_CLICKED", false]], "bye() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.bye", false]], "byref() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.byref", false]], "byte-code\uff08\u4f4d\u5143\u7d44\u78bc\uff09": [[311, "index-0", false]], "bytearray (%)": [[344, "index-45", false]], "bytearray (\u5167\u5efa\u985e\u5225)": [[344, "bytearray", false]], "bytearray.splitlines \u65b9\u6cd5": [[344, "index-44", false]], "bytearray\uff08\u4f4d\u5143\u7d44\u9663\u5217\uff09": [[8, "index-0", false], [344, "index-23", false], [344, "index-40", false], [344, "index-42", false], [344, "index-43", false], [344, "index-45", false], [428, "index-26", false]], "bytecode (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Bytecode", false]], "bytecode.codeobj (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Bytecode.codeobj", false]], "bytecode.first_line (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Bytecode.first_line", false]], "bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.BYTECODE_SUFFIXES", false]], "bytecodetestcase (test.support.bytecode_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.bytecode_helper.BytecodeTestCase", false]], "bytecode\uff08\u4f4d\u5143\u7d44\u78bc\uff09": [[87, "term-bytecode", true], [428, "index-57", false]], "byteorder (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.byteorder", false]], "bytes (%)": [[344, "index-45", false]], "bytes (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.bytes", false]], "bytes (\u5167\u5efa\u985e\u5225)": [[344, "bytes", false]], "bytes literal\uff08\u4f4d\u5143\u7d44\u5e38\u6578\uff09": [[435, "index-17", false], [435, "index-19", false]], "bytes-like object\uff08\u985e\u4f4d\u5143\u7d44\u4e32\u7269\u4ef6\uff09": [[87, "term-bytes-like-object", true]], "bytes.splitlines \u65b9\u6cd5": [[344, "index-44", false]], "bytes_le (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.bytes_le", false]], "bytes_warning (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.bytes_warning", false]], "bytesfeedparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesFeedParser", false]], "bytesgenerator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.BytesGenerator", false]], "bytesheaderparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesHeaderParser", false]], "bytesio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.BytesIO", false]], "bytesparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.BytesParser", false]], "bytestring (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ByteString", false]], "bytestring (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ByteString", false]], "byteswap() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.byteswap", false]], "byteswap() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.byteswap", false]], "byteswarning": [[213, "BytesWarning", false]], "bytes\uff08\u4f4d\u5143\u7d44\uff09": [[9, "index-0", false], [49, "index-3", false], [344, "index-31", false], [344, "index-40", false], [344, "index-41", false], [344, "index-43", false], [344, "index-45", false], [428, "index-21", false], [428, "index-77", false]], "byte\uff08\u4f4d\u5143\u7d44\uff09": [[428, "index-21", false]], "bz2": [[149, "module-bz2", false]], "bz2compressor (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2Compressor", false]], "bz2decompressor (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2Decompressor", false]], "bz2file (bz2 \u4e2d\u7684\u985e\u5225)": [[149, "bz2.BZ2File", false]], "c": [[344, "index-11", false], [347, "index-0", false], [428, "index-13", false], [428, "index-4", false], [428, "index-42", false], [430, "index-77", false], [435, "index-23", false]], "c-contiguous\uff08c \u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "index-10", false]], "c14nwritertarget (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.C14NWriterTarget", false]], "c_bool (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_bool", false]], "c_byte (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_byte", false]], "c_char (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_char", false]], "c_char_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_char_p", false]], "c_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.C_CONTIGUOUS", false]], "c_contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.c_contiguous", false]], "c_double (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_double", false]], "c_float (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_float", false]], "c_int (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int", false]], "c_int16 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int16", false]], "c_int32 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int32", false]], "c_int64 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int64", false]], "c_int8 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_int8", false]], "c_long (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_long", false]], "c_longdouble (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_longdouble", false]], "c_longlong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_longlong", false]], "c_raise (monitoring event)": [[353, "monitoring-event-C_RAISE", false]], "c_return (monitoring event)": [[353, "monitoring-event-C_RETURN", false]], "c_short (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_short", false]], "c_size_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_size_t", false]], "c_ssize_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ssize_t", false]], "c_time_t (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_time_t", false]], "c_ubyte (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ubyte", false]], "c_uint (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint", false]], "c_uint16 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint16", false]], "c_uint32 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint32", false]], "c_uint64 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint64", false]], "c_uint8 (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_uint8", false]], "c_ulong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ulong", false]], "c_ulonglong (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ulonglong", false]], "c_ushort (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_ushort", false]], "c_void_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_void_p", false]], "c_wchar (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_wchar", false]], "c_wchar_p (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.c_wchar_p", false]], "cab (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.CAB", false]], "cache (opcode)": [[191, "opcode-CACHE", false]], "cache() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cache", false]], "cache_from_source() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.cache_from_source", false]], "cached (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.cached", false]], "cached_property() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cached_property", false]], "cacheftphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.CacheFTPHandler", false]], "calcobjsize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.calcobjsize", false]], "calcsize() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.calcsize", false]], "calcvobjsize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.calcvobjsize", false]], "calendar": [[150, "module-calendar", false]], "calendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Calendar", false]], "calendar \u547d\u4ee4\u5217\u9078\u9805": [[150, "cmdoption-calendar-arg-month", false], [150, "cmdoption-calendar-arg-year", false], [150, "cmdoption-calendar-css", false], [150, "cmdoption-calendar-encoding", false], [150, "cmdoption-calendar-help", false], [150, "cmdoption-calendar-lines", false], [150, "cmdoption-calendar-locale", false], [150, "cmdoption-calendar-months", false], [150, "cmdoption-calendar-spacing", false], [150, "cmdoption-calendar-type", false], [150, "cmdoption-calendar-width", false]], "calendar() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.calendar", false]], "call": [[436, "index-3", false]], "call (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Call", false]], "call (monitoring event)": [[353, "monitoring-event-CALL", false]], "call (opcode)": [[191, "opcode-CALL", false]], "call semantics\uff08\u547c\u53eb\u8a9e\u610f\uff09": [[430, "index-47", false], [430, "index-48", false]], "call() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.call", false]], "call() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.call", false]], "call() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.call", false]], "call_args (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_args", false]], "call_args_list (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_args_list", false]], "call_at() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_at", false]], "call_count (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.call_count", false]], "call_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_exception_handler", false]], "call_function_ex (opcode)": [[191, "opcode-CALL_FUNCTION_EX", false]], "call_intrinsic_1 (opcode)": [[191, "opcode-CALL_INTRINSIC_1", false]], "call_intrinsic_2 (opcode)": [[191, "opcode-CALL_INTRINSIC_2", false]], "call_later() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_later", false]], "call_list() (unittest.mock.call \u7684\u65b9\u6cd5)": [[389, "unittest.mock.call.call_list", false]], "call_soon() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_soon", false]], "call_soon_threadsafe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.call_soon_threadsafe", false]], "call_tracing() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.call_tracing", false]], "callable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Callable", false]], "callable (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Callable", false]], "callable()": [[225, "callable", false]], "callableproxytype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.CallableProxyType", false]], "callable\uff08\u53ef\u547c\u53eb\u7269\u4ef6\uff09": [[87, "term-callable", true], [428, "index-33", false], [430, "index-47", false]], "callback (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback", false]], "callback() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.callback", false]], "callback_args (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback_args", false]], "callback_kwargs (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.callback_kwargs", false]], "callbacks (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.callbacks", false]], "callback\uff08\u56de\u547c\uff09": [[87, "term-callback", true]], "called (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.called", false]], "calledprocesserror": [[348, "subprocess.CalledProcessError", false]], "calloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "call\uff08\u547c\u53eb\uff09": [[428, "index-33", false], [428, "index-47", false], [428, "index-49", false], [428, "index-97", false], [430, "index-47", false], [430, "index-52", false], [430, "index-53", false], [430, "index-54", false], [430, "index-55", false], [430, "index-56", false]], "can (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.CAN", false]], "can_bcm (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_BCM", false]], "can_change_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.can_change_color", false]], "can_fetch() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.can_fetch", false]], "can_isotp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_ISOTP", false]], "can_j1939 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_J1939", false]], "can_raw_fd_frames (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_RAW_FD_FRAMES", false]], "can_raw_join_filters (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CAN_RAW_JOIN_FILTERS", false]], "can_symlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.can_symlink", false]], "can_write_eof() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.can_write_eof", false]], "can_write_eof() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.can_write_eof", false]], "can_xattr() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.can_xattr", false]], "cancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.CANCEL", false]], "cancel() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.cancel", false]], "cancel() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.cancel", false]], "cancel() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancel", false]], "cancel() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.cancel", false]], "cancel() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.cancel", false]], "cancel() (threading.timer \u7684\u65b9\u6cd5)": [[365, "threading.Timer.cancel", false]], "cancel() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.cancel", false]], "cancel_command() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.cancel_command", false]], "cancel_dump_traceback_later() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.cancel_dump_traceback_later", false]], "cancel_join_thread() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.cancel_join_thread", false]], "cancelled() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.cancelled", false]], "cancelled() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.cancelled", false]], "cancelled() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancelled", false]], "cancelled() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.cancelled", false]], "cancellederror": [[127, "asyncio.CancelledError", false], [166, "concurrent.futures.CancelledError", false]], "cancelling() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.cancelling", false]], "cannotsendheader": [[242, "http.client.CannotSendHeader", false]], "cannotsendrequest": [[242, "http.client.CannotSendRequest", false]], "canonic() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.canonic", false]], "canonical() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.canonical", false]], "canonical() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.canonical", false]], "canonicalize() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.canonicalize", false]], "capa() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.capa", false]], "capitalize() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.capitalize", false]], "capitalize() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.capitalize", false]], "capitalize() (str \u7684\u65b9\u6cd5)": [[344, "str.capitalize", false]], "capsule": [[11, "index-0", false]], "captured_stderr() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stderr", false]], "captured_stdin() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stdin", false]], "captured_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.captured_stdout", false]], "capturewarnings() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.captureWarnings", false]], "capwords() (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.capwords", false]], "case": [[427, "index-18", false], [427, "index-18", true]], "case block": [[427, "index-22", false]], "casefold() (str \u7684\u65b9\u6cd5)": [[344, "str.casefold", false]], "cast() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.cast", false]], "cast() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.cast", false]], "cast() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.cast", false]], "cat() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.cat", false]], "catch_threading_exception() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.catch_threading_exception", false]], "catch_unraisable_exception() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.catch_unraisable_exception", false]], "catch_warnings (warnings \u4e2d\u7684\u985e\u5225)": [[400, "warnings.catch_warnings", false]], "category() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.category", false]], "cbreak() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.cbreak", false]], "cbrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cbrt", false]], "cc": [[456, "envvar-CC", false], [465, "index-24", false]], "ccc() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.ccc", false]], "ccshared": [[456, "envvar-CCSHARED", false]], "cdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.cdf", false]], "cdll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.CDLL", false]], "ceil() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ceil", false]], "ceil()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "celltype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.CellType", false]], "center() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.center", false]], "center() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.center", false]], "center() (str \u7684\u65b9\u6cd5)": [[344, "str.center", false]], "cert_none (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_NONE", false]], "cert_optional (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_OPTIONAL", false]], "cert_required (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CERT_REQUIRED", false]], "cert_store_stats() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.cert_store_stats", false]], "cert_time_to_seconds() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.cert_time_to_seconds", false]], "certificateerror": [[341, "ssl.CertificateError", false]], "certificates\uff08\u6191\u8b49\uff09": [[341, "index-14", false]], "cflags": [[456, "envvar-CFLAGS", false], [456, "index-14", false], [456, "index-15", false], [456, "index-16", false], [456, "index-17", false], [456, "index-20", false], [456, "index-5", false], [465, "index-25", false]], "cflags_aliasing": [[456, "envvar-CFLAGS_ALIASING", false]], "cflags_nodist": [[456, "envvar-CFLAGS_NODIST", false], [456, "index-13", false], [456, "index-18", false], [456, "index-23", false]], "cflagsforshared": [[456, "envvar-CFLAGSFORSHARED", false]], "cfmakecbreak() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.cfmakecbreak", false]], "cfmakeraw() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.cfmakeraw", false]], "cfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.CFUNCTYPE", false]], "cget() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.cget", false]], "cgi": [[151, "index-0", false], [151, "index-2", false], [151, "index-5", false], [151, "module-cgi", false], [152, "index-0", false]], "cgi_directories (http.server.cgihttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.CGIHTTPRequestHandler.cgi_directories", false]], "cgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.CGIHandler", false]], "cgihttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.CGIHTTPRequestHandler", false]], "cgitb": [[152, "module-cgitb", false]], "cgixmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler", false]], "chain() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.chain", false]], "chaining": [[213, "index-2", false]], "chaining\uff08\u93c8\u63a5\uff09": [[430, "index-78", false]], "chaining\uff08\u93c8\u7d50\uff09": [[344, "index-7", false], [436, "index-29", false]], "chainmap (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.ChainMap", false]], "chainmap (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ChainMap", false]], "change_cwd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.change_cwd", false]], "changing\uff08\u6539\u8b8a\uff09": [[293, "index-26", false]], "channel_binding_types (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.CHANNEL_BINDING_TYPES", false]], "channels() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.channels", false]], "char_max (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CHAR_MAX", false]], "characterdatahandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.CharacterDataHandler", false]], "characters() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.characters", false]], "characters_written (blockingioerror \u7684\u5c6c\u6027)": [[213, "BlockingIOError.characters_written", false]], "character\uff08\u5b57\u5143\uff09": [[387, "index-0", false], [428, "index-19", false], [430, "index-43", false]], "charset (email.charset \u4e2d\u7684\u985e\u5225)": [[195, "email.charset.Charset", false]], "charset() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.charset", false]], "chdir() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.chdir", false]], "chdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chdir", false]], "check (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.check", false]], "check() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.check", false]], "check() (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.check", false]], "check__all__() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check__all__", false]], "check_call() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.check_call", false]], "check_disallow_instantiation() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_disallow_instantiation", false]], "check_eg_match (opcode)": [[191, "opcode-CHECK_EG_MATCH", false]], "check_exc_match (opcode)": [[191, "opcode-CHECK_EXC_MATCH", false]], "check_free_after_iterating() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_free_after_iterating", false]], "check_hostname (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.check_hostname", false]], "check_impl_detail() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_impl_detail", false]], "check_no_resource_warning() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_no_resource_warning", false]], "check_output() (doctest.outputchecker \u7684\u65b9\u6cd5)": [[193, "doctest.OutputChecker.check_output", false]], "check_output() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.check_output", false]], "check_returncode() (subprocess.completedprocess \u7684\u65b9\u6cd5)": [[348, "subprocess.CompletedProcess.check_returncode", false]], "check_syntax_error() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.check_syntax_error", false]], "check_syntax_warning() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_syntax_warning", false]], "check_unused_args() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.check_unused_args", false]], "check_warnings() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.check_warnings", false]], "checkbox() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.checkbox", false]], "checkcache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.checkcache", false]], "checked_hash (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.CHECKED_HASH", false]], "checkfuncname() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.checkfuncname", false]], "checklist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.CheckList", false]], "checksizeof() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.checksizeof", false]], "checksum\uff08\u6838\u5c0d\u548c\uff09": [[424, "index-0", false]], "chflags() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chflags", false]], "chgat() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.chgat", false]], "childnodes (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.childNodes", false]], "childprocesserror": [[213, "ChildProcessError", false]], "children (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.children", false]], "children (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.children", false]], "children (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.children", false]], "chksum (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.chksum", false]], "chmod() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.chmod", false]], "chmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chmod", false]], "choice() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.choice", false]], "choice() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.choice", false]], "choices (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.choices", false]], "choices() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.choices", false]], "chooser (tkinter.colorchooser \u4e2d\u7684\u985e\u5225)": [[370, "tkinter.colorchooser.Chooser", false]], "chown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chown", false]], "chown() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.chown", false]], "chr": [[428, "index-19", false]], "chr()": [[225, "chr", false]], "chroot() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.chroot", false]], "chrtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.CHRTYPE", false]], "chunk": [[153, "module-chunk", false]], "chunk (chunk \u4e2d\u7684\u985e\u5225)": [[153, "chunk.Chunk", false]], "cipher": [[173, "index-0", false]], "cipher() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.cipher", false]], "circle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.circle", false]], "circumflex (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.CIRCUMFLEX", false]], "circumflexequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.CIRCUMFLEXEQUAL", false]], "clamped (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Clamped", false]], "class (pyclbr \u4e2d\u7684\u985e\u5225)": [[312, "pyclbr.Class", false]], "class (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Class", false]], "class definition\uff08\u985e\u5225\u5b9a\u7fa9\uff09": [[427, "index-42", false], [427, "index-43", false], [428, "index-86", false]], "class instance\uff08\u985e\u5225\u5be6\u4f8b\uff09": [[428, "index-47", false], [428, "index-51", false], [428, "index-52", false], [430, "index-55", false]], "class object\uff08\u985e\u5225\u7269\u4ef6\uff09": [[428, "index-47", false], [428, "index-49", false], [430, "index-54", false]], "class variable\uff08\u985e\u5225\u8b8a\u6578\uff09": [[87, "term-class-variable", true]], "classdef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ClassDef", false]], "classmethod": [[58, "index-0", false]], "classmethod()": [[225, "classmethod", false]], "classmethoddescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.ClassMethodDescriptorType", false]], "classvar (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ClassVar", false]], "class\uff08\u985e\u5225\uff09": [[87, "term-class", true], [427, "index-42", false], [428, "index-47", false], [428, "index-48", false], [428, "index-51", false], [428, "index-73", false], [428, "index-91", false], [430, "index-54", false], [436, "index-24", false]], "clause\uff08\u5b50\u53e5\uff09": [[427, "index-1", false]], "cld_continued (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_CONTINUED", false]], "cld_dumped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_DUMPED", false]], "cld_exited (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_EXITED", false]], "cld_killed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_KILLED", false]], "cld_stopped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_STOPPED", false]], "cld_trapped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLD_TRAPPED", false]], "clean() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.clean", false]], "cleandoc() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.cleandoc", false]], "cleanimport (test.support.import_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.import_helper.CleanImport", false]], "cleanup functions\uff08\u6e05\u7406\u51fd\u5f0f\uff09": [[59, "index-4", false]], "cleanup() (tempfile.temporarydirectory \u7684\u65b9\u6cd5)": [[360, "tempfile.TemporaryDirectory.cleanup", false]], "cleanup_throw (opcode)": [[191, "opcode-CLEANUP_THROW", false]], "clear (pdb command)": [[297, "pdbcommand-clear", false]], "clear breakpoint": [[247, "index-4", false]], "clear() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.clear", false]], "clear() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.clear", false]], "clear() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clear", false]], "clear() (dict \u7684\u65b9\u6cd5)": [[344, "dict.clear", false]], "clear() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.clear", false]], "clear() (frame \u7684\u65b9\u6cd5)": [[428, "frame.clear", false]], "clear() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.clear", false]], "clear() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.clear", false]], "clear() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.clear", false]], "clear() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.clear", false]], "clear() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.clear", false]], "clear() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clear", false]], "clear()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "clear_all_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_all_breaks", false]], "clear_all_file_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_all_file_breaks", false]], "clear_bpbynumber() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_bpbynumber", false]], "clear_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.clear_break", false]], "clear_cache() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.clear_cache", false]], "clear_cache() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.clear_cache", false]], "clear_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.clear_content", false]], "clear_flags() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.clear_flags", false]], "clear_frames() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.clear_frames", false]], "clear_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.clear_history", false]], "clear_overloads() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.clear_overloads", false]], "clear_session_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.clear_session_cookies", false]], "clear_traces() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.clear_traces", false]], "clear_traps() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.clear_traps", false]], "clearcache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.clearcache", false]], "cleardata() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.ClearData", false]], "clearok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clearok", false]], "clearscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearscreen", false]], "clearstamp() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearstamp", false]], "clearstamps() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clearstamps", false]], "client() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.Client", false]], "client_address (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.client_address", false]], "client_address (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.client_address", false]], "clock_boottime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_BOOTTIME", false]], "clock_getres() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_getres", false]], "clock_gettime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_gettime", false]], "clock_gettime_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_gettime_ns", false]], "clock_highres (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_HIGHRES", false]], "clock_monotonic (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_MONOTONIC", false]], "clock_monotonic_raw (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_MONOTONIC_RAW", false]], "clock_process_cputime_id (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_PROCESS_CPUTIME_ID", false]], "clock_prof (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_PROF", false]], "clock_realtime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_REALTIME", false]], "clock_seq (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq", false]], "clock_seq_hi_variant (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq_hi_variant", false]], "clock_seq_low (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.clock_seq_low", false]], "clock_settime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_settime", false]], "clock_settime_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.clock_settime_ns", false]], "clock_tai (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_TAI", false]], "clock_thread_cputime_id (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_THREAD_CPUTIME_ID", false]], "clock_uptime (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_UPTIME", false]], "clock_uptime_raw (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.CLOCK_UPTIME_RAW", false]], "clone() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.clone", false]], "clone() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.clone", false]], "clone() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.clone", false]], "clone() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.clone", false]], "clone() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.clone", false]], "clone_files (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_FILES", false]], "clone_fs (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_FS", false]], "clone_newcgroup (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWCGROUP", false]], "clone_newipc (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWIPC", false]], "clone_newnet (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWNET", false]], "clone_newns (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWNS", false]], "clone_newpid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWPID", false]], "clone_newtime (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWTIME", false]], "clone_newuser (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWUSER", false]], "clone_newuts (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_NEWUTS", false]], "clone_sighand (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_SIGHAND", false]], "clone_sysvsem (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_SYSVSEM", false]], "clone_thread (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_THREAD", false]], "clone_vm (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.CLONE_VM", false]], "clonenode() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.cloneNode", false]], "close() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.close", false]], "close() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.close", false]], "close() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.close", false]], "close() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.close", false]], "close() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.close", false]], "close() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.close", false]], "close() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.close", false]], "close() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.close", false]], "close() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.close", false]], "close() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.close", false]], "close() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.close", false]], "close() (dbm.dumb.dumbdbm \u7684\u65b9\u6cd5)": [[184, "dbm.dumb.dumbdbm.close", false]], "close() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.close", false]], "close() (dbm.ndbm.ndbm \u7684\u65b9\u6cd5)": [[184, "dbm.ndbm.ndbm.close", false]], "close() (email.parser.bytesfeedparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesFeedParser.close", false]], "close() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.close", false]], "close() (generator \u7684\u65b9\u6cd5)": [[430, "generator.close", false]], "close() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.close", false]], "close() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.close", false]], "close() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.close", false]], "close() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.close", false]], "close() (logging.filehandler \u7684\u65b9\u6cd5)": [[269, "logging.FileHandler.close", false]], "close() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.close", false]], "close() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.close", false]], "close() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.close", false]], "close() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.close", false]], "close() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.close", false]], "close() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.close", false]], "close() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.close", false]], "close() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.close", false]], "close() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.close", false]], "close() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.Close", false]], "close() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Close", false]], "close() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.close", false]], "close() (multiprocessing.connection.listener \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Listener.close", false]], "close() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.close", false]], "close() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.close", false]], "close() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.close", false]], "close() (multiprocessing.shared_memory.sharedmemory \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.SharedMemory.close", false]], "close() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.close", false]], "close() (os.scandir \u7684\u65b9\u6cd5)": [[293, "os.scandir.close", false]], "close() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.close", false]], "close() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.close", false]], "close() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.close", false]], "close() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.close", false]], "close() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.close", false]], "close() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.close", false]], "close() (shelve.shelf \u7684\u65b9\u6cd5)": [[330, "shelve.Shelf.close", false]], "close() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.close", false]], "close() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.close", false]], "close() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.close", false]], "close() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.close", false]], "close() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.close", false]], "close() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.close", false]], "close() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.close", false]], "close() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.close", false]], "close() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.close", false]], "close() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.close", false]], "close() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.close", false]], "close() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.Close", false]], "close() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.close", false]], "close() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.close", false]], "close() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.close", false]], "close() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.close", false]], "close() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.close", false]], "close() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.close", false]], "close() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.close", false]], "close() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.close", false]], "close_connection (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.close_connection", false]], "closed (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.closed", false]], "closed (io.iobase \u7684\u5c6c\u6027)": [[258, "io.IOBase.closed", false]], "closed (mmap.mmap \u7684\u5c6c\u6027)": [[278, "mmap.mmap.closed", false]], "closed (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.closed", false]], "closed (select.devpoll \u7684\u5c6c\u6027)": [[328, "select.devpoll.closed", false]], "closed (select.epoll \u7684\u5c6c\u6027)": [[328, "select.epoll.closed", false]], "closed (select.kqueue \u7684\u5c6c\u6027)": [[328, "select.kqueue.closed", false]], "closekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CloseKey", false]], "closelog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.closelog", false]], "closerange() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.closerange", false]], "close\uff08os \u6a21\u7d44\u4e2d\uff09": [[33, "index-44", false]], "closing() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.closing", false]], "clrtobot() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clrtobot", false]], "clrtoeol() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.clrtoeol", false]], "cmath": [[154, "module-cmath", false]], "cmd": [[155, "module-cmd", false], [297, "index-1", false]], "cmd (cmd \u4e2d\u7684\u985e\u5225)": [[155, "cmd.Cmd", false]], "cmd (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.cmd", false]], "cmd (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.cmd", false]], "cmdloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.cmdloop", false]], "cmdqueue (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.cmdqueue", false]], "cmp() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.cmp", false]], "cmp_op (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.cmp_op", false]], "cmp_to_key() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.cmp_to_key", false]], "cmpfiles() (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.cmpfiles", false]], "cmsg_len() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CMSG_LEN", false]], "cmsg_space() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.CMSG_SPACE", false]], "co_argcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_argcount", false]], "co_argcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_async_generator (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_ASYNC_GENERATOR", false]], "co_cellvars (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_cellvars", false]], "co_cellvars \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_code (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_code", false]], "co_code \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_consts (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_consts", false]], "co_consts \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_coroutine (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_COROUTINE", false]], "co_filename (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_filename", false]], "co_filename \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_firstlineno (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_firstlineno", false]], "co_firstlineno \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_flags (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_flags", false]], "co_flags \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_freevars (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_freevars", false]], "co_freevars \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_future_division (c var)": [[66, "c.CO_FUTURE_DIVISION", false]], "co_generator (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_GENERATOR", false]], "co_iterable_coroutine (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_ITERABLE_COROUTINE", false]], "co_kwonlyargcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_kwonlyargcount", false]], "co_kwonlyargcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_lines() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.co_lines", false]], "co_lnotab (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_lnotab", false]], "co_lnotab \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_name (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_name", false]], "co_name \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_names (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_names", false]], "co_names \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_nested (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_NESTED", false]], "co_newlocals (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_NEWLOCALS", false]], "co_nlocals (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_nlocals", false]], "co_nlocals \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_optimized (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_OPTIMIZED", false]], "co_positions() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.co_positions", false]], "co_posonlyargcount (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_posonlyargcount", false]], "co_posonlyargcount \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_qualname (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_qualname", false]], "co_qualname \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_stacksize (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_stacksize", false]], "co_stacksize \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "co_varargs (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_VARARGS", false]], "co_varkeywords (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.CO_VARKEYWORDS", false]], "co_varnames (codeobject \u7684\u5c6c\u6027)": [[428, "codeobject.co_varnames", false]], "co_varnames \uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-58", false]], "code": [[157, "module-code", false]], "code (systemexit \u7684\u5c6c\u6027)": [[213, "SystemExit.code", false]], "code (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.code", false]], "code (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.code", false]], "code (xml.etree.elementtree.parseerror \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.ParseError.code", false]], "code (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.code", false]], "code object\uff08\u7a0b\u5f0f\u78bc\u7269\u4ef6\uff09": [[13, "index-0", false], [274, "index-1", false], [344, "index-62", false], [428, "index-57", false]], "code_context (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.code_context", false]], "code_context (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.code_context", false]], "code_info() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.code_info", false]], "codec (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.Codec", false]], "codecinfo (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.CodecInfo", false]], "codecs": [[158, "index-0", false], [158, "module-codecs", false]], "coded_value (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.coded_value", false]], "codeop": [[159, "module-codeop", false]], "codepoint2name (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.codepoint2name", false]], "codes (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.codes", false]], "codeset (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CODESET", false]], "codetype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.CodeType", false]], "code\uff08\u7a0b\u5f0f\u78bc\uff09": [[13, "index-0", false], [274, "index-1", false], [344, "index-62", false], [428, "index-57", false], [429, "index-0", false]], "coding\uff08\u7a0b\u5f0f\u7de8\u5beb\uff09": [[441, "index-9", false]], "col_offset (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.col_offset", false]], "collapse_addresses() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.collapse_addresses", false]], "collapse_rfc2231_value() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.collapse_rfc2231_value", false]], "collect() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.collect", false]], "collecteddurations (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.collectedDurations", false]], "collection (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Collection", false]], "collection (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Collection", false]], "collections": [[160, "module-collections", false], [428, "index-24", false]], "collections.abc": [[161, "module-collections.abc", false]], "colno (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.colno", false]], "colno (re.error \u7684\u5c6c\u6027)": [[319, "re.error.colno", false]], "colon (mailbox.maildir \u7684\u5c6c\u6027)": [[271, "mailbox.Maildir.colon", false]], "colon (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COLON", false]], "colonequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COLONEQUAL", false]], "color() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.color", false]], "color_black (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_BLACK", false]], "color_blue (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_BLUE", false]], "color_content() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.color_content", false]], "color_cyan (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_CYAN", false]], "color_green (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_GREEN", false]], "color_magenta (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_MAGENTA", false]], "color_pair() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.color_pair", false]], "color_pairs (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_PAIRS", false]], "color_red (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_RED", false]], "color_white (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_WHITE", false]], "color_yellow (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLOR_YELLOW", false]], "colormode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.colormode", false]], "colors (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLORS", false]], "colorsys": [[162, "module-colorsys", false]], "cols (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.COLS", false]], "column() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.column", false]], "columnize() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.columnize", false]], "columns": [[177, "index-4", false], [177, "index-6", false]], "columns (os.terminal_size \u7684\u5c6c\u6027)": [[293, "os.terminal_size.columns", false]], "comb() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.comb", false]], "combinations() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.combinations", false]], "combinations_with_replacement() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.combinations_with_replacement", false]], "combine() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.combine", false]], "combining() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.combining", false]], "combobox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ComboBox", false]], "combobox (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Combobox", false]], "comma": [[430, "index-10", false], [430, "index-95", false]], "comma (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COMMA", false]], "command (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.command", false]], "command line\uff08\u547d\u4ee4\u5217\uff09": [[437, "index-4", false]], "commandcompiler (codeop \u4e2d\u7684\u985e\u5225)": [[159, "codeop.CommandCompiler", false]], "commands (pdb command)": [[297, "pdbcommand-commands", false]], "comment (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.comment", false]], "comment (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.comment", false]], "comment (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.comment", false]], "comment (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.comment", false]], "comment (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.COMMENT", false]], "comment() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.comment", false]], "comment() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.comment", false]], "comment() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.Comment", false]], "comment_url (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.comment_url", false]], "commenters (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.commenters", false]], "commenthandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.CommentHandler", false]], "comment\uff08\u8a3b\u89e3\uff09": [[334, "index-2", false], [435, "index-4", false], [449, "index-0", false]], "commit() (msilib.cab \u7684\u65b9\u6cd5)": [[281, "msilib.CAB.commit", false]], "commit() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.Commit", false]], "commit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.commit", false]], "common (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common", false]], "common gateway interface\uff08\u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\uff09": [[151, "index-0", false]], "common_dirs (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_dirs", false]], "common_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_files", false]], "common_funny (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.common_funny", false]], "common_types (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.common_types", false]], "commonpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.commonpath", false]], "commonprefix() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.commonprefix", false]], "communicate() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.communicate", false]], "communicate() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.communicate", false]], "compare (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Compare", false]], "compare() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare", false]], "compare() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare", false]], "compare() (difflib.differ \u7684\u65b9\u6cd5)": [[190, "difflib.Differ.compare", false]], "compare_digest() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.compare_digest", false]], "compare_digest() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.compare_digest", false]], "compare_networks() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.compare_networks", false]], "compare_networks() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.compare_networks", false]], "compare_op (opcode)": [[191, "opcode-COMPARE_OP", false]], "compare_signal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_signal", false]], "compare_signal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_signal", false]], "compare_to() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.compare_to", false]], "compare_total() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_total", false]], "compare_total() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_total", false]], "compare_total_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.compare_total_mag", false]], "compare_total_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.compare_total_mag", false]], "comparing\uff08\u6bd4\u8f03\uff09": [[344, "index-8", false]], "comparison_flags (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.COMPARISON_FLAGS", false]], "comparisons\uff08\u6bd4\u8f03\uff09": [[344, "index-7", false], [430, "index-78", false]], "comparison\uff08\u6bd4\u8f03\uff09": [[344, "index-7", false], [428, "index-79", false], [430, "index-77", false]], "compat32 (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.Compat32", false]], "compat32 (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.compat32", false]], "compile (codeop \u4e2d\u7684\u985e\u5225)": [[159, "codeop.Compile", false]], "compile()": [[225, "compile", false]], "compile() (\u65bc py_compile \u6a21\u7d44\u4e2d)": [[311, "py_compile.compile", false]], "compile() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.compile", false]], "compile_command() (\u65bc code \u6a21\u7d44\u4e2d)": [[157, "code.compile_command", false]], "compile_command() (\u65bc codeop \u6a21\u7d44\u4e2d)": [[159, "codeop.compile_command", false]], "compile_dir() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_dir", false]], "compile_file() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_file", false]], "compile_path() (\u65bc compileall \u6a21\u7d44\u4e2d)": [[163, "compileall.compile_path", false]], "compileall": [[163, "module-compileall", false]], "compileall \u547d\u4ee4\u5217\u9078\u9805": [[163, "cmdoption-compileall-arg-directory", false], [163, "cmdoption-compileall-arg-file", false], [163, "cmdoption-compileall-b", false], [163, "cmdoption-compileall-d", false], [163, "cmdoption-compileall-e", false], [163, "cmdoption-compileall-f", false], [163, "cmdoption-compileall-hardlink-dupes", false], [163, "cmdoption-compileall-i", false], [163, "cmdoption-compileall-invalidation-mode", false], [163, "cmdoption-compileall-j", false], [163, "cmdoption-compileall-l", false], [163, "cmdoption-compileall-o", false], [163, "cmdoption-compileall-p", false], [163, "cmdoption-compileall-q", false], [163, "cmdoption-compileall-r", false], [163, "cmdoption-compileall-s", false], [163, "cmdoption-compileall-x", false]], "compileall_opts": [[456, "envvar-COMPILEALL_OPTS", false]], "compiler_flag (__future__._feature \u7684\u5c6c\u6027)": [[113, "future__._Feature.compiler_flag", false]], "compile\uff08\u7de8\u8b6f\uff09": [[31, "index-2", false], [344, "index-63", false], [385, "index-4", false], [436, "index-44", false]], "complete() (rlcompleter.completer \u7684\u65b9\u6cd5)": [[323, "rlcompleter.Completer.complete", false]], "complete_statement() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.complete_statement", false]], "completedefault() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.completedefault", false]], "completedprocess (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.CompletedProcess", false]], "completer (rlcompleter \u4e2d\u7684\u985e\u5225)": [[323, "rlcompleter.Completer", false]], "complex (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Complex", false]], "complex (\u5167\u5efa\u985e\u5225)": [[225, "complex", false]], "complex literal\uff08\u8907\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "complex number\uff08\u8907\u6578\uff09": [[15, "index-0", false], [87, "term-complex-number", true], [344, "index-11", false], [344, "index-12", false]], "complex\uff08\u8907\u6578\uff09": [[344, "index-13", false], [428, "index-104", false], [428, "index-14", false]], "compound statement\uff08\u8907\u5408\u9673\u8ff0\u5f0f\uff09": [[427, "index-16", false], [427, "index-18", false], [427, "index-28", false], [427, "index-3", false], [427, "index-4", false], [427, "index-42", false], [427, "index-6", false], [427, "index-9", false]], "compound\uff08\u8907\u5408\uff09": [[427, "index-0", false]], "comprehension (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.comprehension", false]], "comprehensions": [[430, "index-11", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false]], "compress() (bz2.bz2compressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Compressor.compress", false]], "compress() (lzma.lzmacompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMACompressor.compress", false]], "compress() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.compress", false]], "compress() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.compress", false]], "compress() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.compress", false]], "compress() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.compress", false]], "compress() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.compress", false]], "compress() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.compress", false]], "compress_size (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.compress_size", false]], "compress_type (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.compress_type", false]], "compressed (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.compressed", false]], "compressed (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.compressed", false]], "compressed (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.compressed", false]], "compressed (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.compressed", false]], "compression() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.compression", false]], "compressionerror": [[358, "tarfile.CompressionError", false]], "compressobj() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.compressobj", false]], "comspec": [[293, "index-43", false], [348, "index-3", false]], "concat() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.concat", false]], "concatenate (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Concatenate", false]], "concatenation\uff08\u4e32\u63a5\uff09": [[344, "index-20", false]], "concurrent.futures": [[166, "module-concurrent.futures", false]], "cond (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.cond", false]], "condition (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Condition", false]], "condition (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Condition", false]], "condition (pdb command)": [[297, "pdbcommand-condition", false]], "condition (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Condition", false]], "condition() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.condition", false]], "condition() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Condition", false]], "conditional expression\uff08\u689d\u4ef6\u904b\u7b97\u5f0f\uff09": [[430, "index-88", false]], "conditional\uff08\u689d\u4ef6\u5f0f\uff09": [[430, "index-82", false], [430, "index-88", false]], "config() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.config", false]], "config_site": [[456, "cmdoption-arg-CONFIG_SITE", false]], "configparser": [[167, "module-configparser", false]], "configparser (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.ConfigParser", false]], "configuration information\uff08\u8a2d\u5b9a\u8cc7\u8a0a\uff09": [[355, "index-0", false]], "configuration\uff08\u8a2d\u5b9a\uff09": [[167, "index-0", false], [297, "index-2", false], [334, "index-4", false]], "configure() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.configure", false]], "configure_cflags": [[456, "envvar-CONFIGURE_CFLAGS", false]], "configure_cflags_nodist": [[456, "envvar-CONFIGURE_CFLAGS_NODIST", false]], "configure_cppflags": [[456, "envvar-CONFIGURE_CPPFLAGS", false]], "configure_ldflags": [[456, "envvar-CONFIGURE_LDFLAGS", false]], "configure_ldflags_nodist": [[456, "envvar-CONFIGURE_LDFLAGS_NODIST", false]], "configure_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.configure_mock", false]], "conform (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.CONFORM", false]], "confstr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.confstr", false]], "confstr_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.confstr_names", false]], "conjugate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.conjugate", false]], "conjugate() (numbers.complex \u7684\u65b9\u6cd5)": [[289, "numbers.Complex.conjugate", false]], "conjugate()\uff08\u8907\u6578\u65b9\u6cd5\uff09": [[344, "index-14", false]], "connect() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.connect", false]], "connect() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.connect", false]], "connect() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.connect", false]], "connect() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.connect", false]], "connect() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.connect", false]], "connect() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.connect", false]], "connect_accepted_socket() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_accepted_socket", false]], "connect_ex() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.connect_ex", false]], "connect_read_pipe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_read_pipe", false]], "connect_write_pipe() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.connect_write_pipe", false]], "connection (multiprocessing.connection \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.connection.Connection", false]], "connection (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Connection", false]], "connection (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.connection", false]], "connection_lost() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.connection_lost", false]], "connection_made() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.connection_made", false]], "connectionabortederror": [[213, "ConnectionAbortedError", false]], "connectionerror": [[213, "ConnectionError", false]], "connectionrefusederror": [[213, "ConnectionRefusedError", false]], "connectionreseterror": [[213, "ConnectionResetError", false]], "connectregistry() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.ConnectRegistry", false]], "const (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.const", false]], "constant (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Constant", false]], "constant\uff08\u5e38\u6578\uff09": [[435, "index-16", false]], "constructor() (\u65bc copyreg \u6a21\u7d44\u4e2d)": [[172, "copyreg.constructor", false]], "constructor\uff08\u5efa\u69cb\u51fd\u5f0f\uff09": [[428, "index-73", false]], "consumed (asyncio.limitoverrunerror \u7684\u5c6c\u6027)": [[127, "asyncio.LimitOverrunError.consumed", false]], "container (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Container", false]], "container (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Container", false]], "container\uff08\u5bb9\u5668\uff09": [[344, "index-18", false], [428, "index-3", false], [428, "index-47", false]], "contains() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.contains", false]], "contains_op (opcode)": [[191, "opcode-CONTAINS_OP", false]], "content (urllib.error.contenttooshorterror \u7684\u5c6c\u6027)": [[393, "urllib.error.ContentTooShortError.content", false]], "content type\uff08\u5167\u5bb9\u985e\u578b\uff09": [[276, "index-0", false]], "content_disposition (email.headerregistry.contentdispositionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentDispositionHeader.content_disposition", false]], "content_manager (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.content_manager", false]], "content_type (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.content_type", false]], "contentdispositionheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentDispositionHeader", false]], "contenthandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.ContentHandler", false]], "contentmanager (email.contentmanager \u4e2d\u7684\u985e\u5225)": [[197, "email.contentmanager.ContentManager", false]], "contents (ctypes._pointer \u7684\u5c6c\u6027)": [[176, "ctypes._Pointer.contents", false]], "contents() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.contents", false]], "contents() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.contents", false]], "contents() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.contents", false]], "contenttooshorterror": [[393, "urllib.error.ContentTooShortError", false]], "contenttransferencoding (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentTransferEncoding", false]], "contenttypeheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ContentTypeHeader", false]], "context (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.Context", false]], "context (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Context", false]], "context (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.context", false]], "context management protocol\uff08\u60c5\u5883\u7ba1\u7406\u5354\u5b9a\uff09": [[344, "index-54", false]], "context management\uff08\u60c5\u5883\u7ba1\u7406\uff09": [[344, "index-54", false]], "context manager\uff08\u60c5\u5883\u7ba1\u7406\u5668\uff09": [[87, "term-context-manager", true], [344, "index-54", false], [428, "index-106", false]], "context variable\uff08\u60c5\u5883\u8b8a\u6578\uff09": [[87, "term-context-variable", true]], "context_diff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.context_diff", false]], "contextdecorator (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.ContextDecorator", false]], "contextlib": [[169, "module-contextlib", false]], "contextmanager (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ContextManager", false]], "contextmanager() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.contextmanager", false]], "contextvar (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.ContextVar", false]], "contextvars": [[170, "module-contextvars", false]], "contig (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.CONTIG", false]], "contig_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.CONTIG_RO", false]], "contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.contiguous", false]], "contiguous\uff08\u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "term-contiguous", true]], "continue": [[427, "index-13", false], [427, "index-15", false], [427, "index-5", false], [427, "index-7", false], [436, "index-33", true]], "continue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Continue", false]], "continue (pdb command)": [[297, "pdbcommand-continue", false]], "continuous (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.CONTINUOUS", false]], "control (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Control", false]], "control (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Control", false]], "control() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.control", false]], "control() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.control", false]], "controlnames (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.controlnames", false]], "controls() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.controls", false]], "conttype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.CONTTYPE", false]], "conversion": [[428, "index-78", false], [430, "index-1", false], [436, "index-3", false]], "conversionerror": [[408, "xdrlib.ConversionError", false]], "conversions\uff08\u8f49\u63db\uff09": [[344, "index-15", false]], "convert_arg_line_to_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.convert_arg_line_to_args", false]], "convert_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.convert_field", false]], "cookie (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.Cookie", false]], "cookieerror": [[244, "http.cookies.CookieError", false]], "cookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.CookieJar", false]], "cookiejar (urllib.request.httpcookieprocessor \u7684\u5c6c\u6027)": [[395, "urllib.request.HTTPCookieProcessor.cookiejar", false]], "cookiepolicy (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.CookiePolicy", false]], "coordinated universal time\uff08\u4e16\u754c\u5354\u8abf\u6642\u9593\uff09": [[366, "index-4", false]], "copy": [[171, "module-copy", false]], "copy (opcode)": [[191, "opcode-COPY", false]], "copy() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.copy", false]], "copy() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.copy", false]], "copy() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy", false]], "copy() (dict \u7684\u65b9\u6cd5)": [[344, "dict.copy", false]], "copy() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.copy", false]], "copy() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.copy", false]], "copy() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.copy", false]], "copy() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.copy", false]], "copy() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.copy", false]], "copy() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.copy", false]], "copy() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.copy", false]], "copy() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.copy", false]], "copy() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.copy", false]], "copy() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.copy", false]], "copy() (\u65bc copy \u6a21\u7d44\u4e2d)": [[171, "copy.copy", false]], "copy() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.copy", false]], "copy() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copy", false]], "copy()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "copy2() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copy2", false]], "copy_abs() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_abs", false]], "copy_abs() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_abs", false]], "copy_context() (\u65bc contextvars \u6a21\u7d44\u4e2d)": [[170, "contextvars.copy_context", false]], "copy_decimal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_decimal", false]], "copy_file_range() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.copy_file_range", false]], "copy_free_vars (opcode)": [[191, "opcode-COPY_FREE_VARS", false]], "copy_location() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.copy_location", false]], "copy_negate() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_negate", false]], "copy_negate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_negate", false]], "copy_sign() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.copy_sign", false]], "copy_sign() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.copy_sign", false]], "copyfile() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copyfile", false]], "copyfileobj() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copyfileobj", false]], "copying files\uff08\u8907\u88fd\u6a94\u6848\uff09": [[332, "index-0", false]], "copying\uff08\u8907\u88fd\uff09": [[332, "index-0", false]], "copymode() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copymode", false]], "copyreg": [[172, "module-copyreg", false]], "copyright (\u5167\u5efa\u8b8a\u6578)": [[168, "copyright", false]], "copyright (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.copyright", false]], "copyright\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-26", false]], "copysign() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.copysign", false]], "copystat() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copystat", false]], "copytree() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.copytree", false]], "copy\uff08\u8907\u88fd\uff09": [[172, "index-0", false], [247, "index-4", false], [299, "index-5", false]], "coroutine (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Coroutine", false]], "coroutine (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Coroutine", false]], "coroutine function\uff08\u5354\u7a0b\u51fd\u5f0f\uff09": [[87, "term-coroutine-function", true]], "coroutine() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.coroutine", false]], "coroutinetype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.CoroutineType", false]], "coroutine\uff08\u5354\u7a0b\uff09": [[87, "term-coroutine", true], [428, "index-110", false], [428, "index-40", false], [430, "index-24", false]], "correlation() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.correlation", false]], "cos() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.cos", false]], "cos() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cos", false]], "cosh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.cosh", false]], "cosh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.cosh", false]], "count (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.count", false]], "count (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.count", false]], "count() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.count", false]], "count() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.count", false]], "count() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.count", false]], "count() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.count", false]], "count() (multiprocessing.shared_memory.shareablelist \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.ShareableList.count", false]], "count() (str \u7684\u65b9\u6cd5)": [[344, "str.count", false]], "count() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.count", false]], "count()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-20", false]], "count_diff (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.count_diff", false]], "counter (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.Counter", false]], "counter (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Counter", false]], "countof() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.countOf", false]], "counttestcases() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.countTestCases", false]], "counttestcases() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.countTestCases", false]], "covariance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.covariance", false]], "coverageresults (trace \u4e2d\u7684\u985e\u5225)": [[380, "trace.CoverageResults", false]], "cppflags": [[456, "envvar-CPPFLAGS", false], [456, "index-10", false], [456, "index-11", false], [456, "index-28", false], [465, "index-27", false]], "cprofile": [[308, "module-cProfile", false]], "cpu time\uff08cpu \u6642\u9593\uff09": [[366, "index-12", false], [366, "index-7", false]], "cpu_count() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.cpu_count", false]], "cpu_count() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.cpu_count", false]], "cpython": [[87, "term-CPython", true]], "cpython_only() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.cpython_only", false]], "cr (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.CR", false]], "crawl_delay() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.crawl_delay", false]], "crc (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.CRC", false]], "crc32() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.crc32", false]], "crc32() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.crc32", false]], "crc_hqx() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.crc_hqx", false]], "create() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.create", false]], "create() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.create", false]], "create() (\u65bc venv \u6a21\u7d44\u4e2d)": [[399, "venv.create", false]], "create_aggregate() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_aggregate", false]], "create_archive() (\u65bc zipapp \u6a21\u7d44\u4e2d)": [[421, "zipapp.create_archive", false]], "create_autospec() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.create_autospec", false]], "create_breakaway_from_job (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_BREAKAWAY_FROM_JOB", false]], "create_collation() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_collation", false]], "create_configuration() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.create_configuration", false]], "create_connection() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_connection", false]], "create_connection() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.create_connection", false]], "create_datagram_endpoint() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_datagram_endpoint", false]], "create_decimal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.create_decimal", false]], "create_decimal_from_float() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.create_decimal_from_float", false]], "create_default_context() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.create_default_context", false]], "create_default_error_mode (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_DEFAULT_ERROR_MODE", false]], "create_eager_task_factory() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.create_eager_task_factory", false]], "create_empty_file() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.create_empty_file", false]], "create_function() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_function", false]], "create_future() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_future", false]], "create_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.create_module", false]], "create_module() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.create_module", false]], "create_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.create_module", false]], "create_new_console (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NEW_CONSOLE", false]], "create_new_process_group (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NEW_PROCESS_GROUP", false]], "create_no_window (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.CREATE_NO_WINDOW", false]], "create_server() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_server", false]], "create_server() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.create_server", false]], "create_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.create_stats", false]], "create_string_buffer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.create_string_buffer", false]], "create_subprocess_exec() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[137, "asyncio.create_subprocess_exec", false]], "create_subprocess_shell() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[137, "asyncio.create_subprocess_shell", false]], "create_system (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.create_system", false]], "create_task() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_task", false]], "create_task() (asyncio.taskgroup \u7684\u65b9\u6cd5)": [[139, "asyncio.TaskGroup.create_task", false]], "create_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.create_task", false]], "create_unicode_buffer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.create_unicode_buffer", false]], "create_unix_connection() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_unix_connection", false]], "create_unix_server() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.create_unix_server", false]], "create_version (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.create_version", false]], "create_window_function() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.create_window_function", false]], "createattribute() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createAttribute", false]], "createattributens() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createAttributeNS", false]], "createcomment() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createComment", false]], "createdocument() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.createDocument", false]], "createdocumenttype() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.createDocumentType", false]], "createelement() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createElement", false]], "createelementns() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createElementNS", false]], "createfilehandler() (_tkinter.widget.tk \u7684\u65b9\u6cd5)": [[369, "tkinter.Widget.tk.createfilehandler", false]], "createkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CreateKey", false]], "createkeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.CreateKeyEx", false]], "createlock() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.createLock", false]], "createlock() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.createLock", false]], "createprocessinginstruction() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createProcessingInstruction", false]], "createrecord() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.CreateRecord", false]], "createsocket() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.createSocket", false]], "createsocket() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.createSocket", false]], "createtextnode() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.createTextNode", false]], "creating\uff08\u5efa\u7acb\uff09": [[293, "index-28", false]], "credits (\u5167\u5efa\u8b8a\u6578)": [[168, "credits", false]], "critical (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.CRITICAL", false]], "critical() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.critical", false]], "critical() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.critical", false]], "crncystr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.CRNCYSTR", false]], "cross() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.cross", false]], "crt_assembly_version (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.CRT_ASSEMBLY_VERSION", false]], "crypt": [[173, "module-crypt", false], [310, "index-0", false]], "crypt() (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.crypt", false]], "crypt(3)": [[173, "index-0", false], [173, "index-2", false], [173, "index-3", false]], "cryptography\uff08\u5bc6\u78bc\u5b78\uff09": [[174, "index-0", false]], "cssclass_month (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_month", false]], "cssclass_month_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_month_head", false]], "cssclass_noday (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_noday", false]], "cssclass_year (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_year", false]], "cssclass_year_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclass_year_head", false]], "cssclasses (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclasses", false]], "cssclasses_weekday_head (calendar.htmlcalendar \u7684\u5c6c\u6027)": [[150, "calendar.HTMLCalendar.cssclasses_weekday_head", false]], "csv": [[175, "index-0", false], [175, "module-csv", false]], "csv.reader \u51fd\u5f0f": [[175, "index-3", false]], "cte (email.headerregistry.contenttransferencoding \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTransferEncoding.cte", false]], "cte_type (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.cte_type", false]], "ctermid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ctermid", false]], "ctime() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.ctime", false]], "ctime() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.ctime", false]], "ctime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.ctime", false]], "ctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ctrl", false]], "ctrl_break_event (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.CTRL_BREAK_EVENT", false]], "ctrl_c_event (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.CTRL_C_EVENT", false]], "ctypes": [[176, "module-ctypes", false]], "curdir (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.curdir", false]], "currency() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.currency", false]], "current() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.current", false]], "current_process() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.current_process", false]], "current_task() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.current_task", false]], "current_thread() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.current_thread", false]], "currentbyteindex (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentByteIndex", false]], "currentcolumnnumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentColumnNumber", false]], "currentframe() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.currentframe", false]], "currentlinenumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.CurrentLineNumber", false]], "curs_set() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.curs_set", false]], "curses": [[177, "module-curses", false]], "curses.ascii": [[178, "module-curses.ascii", false]], "curses.panel": [[179, "module-curses.panel", false]], "curses.textpad": [[177, "module-curses.textpad", false]], "cursor (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Cursor", false]], "cursor() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.cursor", false]], "cursyncup() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.cursyncup", false]], "cut\uff08\u526a\u4e0b\uff09": [[247, "index-4", false]], "cwd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.cwd", false]], "cwd() (pathlib.path \u7684\u985e\u5225\u65b9\u6cd5)": [[296, "pathlib.Path.cwd", false]], "cxx": [[456, "envvar-CXX", false]], "cycle() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.cycle", false]], "cycleerror": [[232, "graphlib.CycleError", false]], "cyclic redundancy check\uff08\u5faa\u74b0\u5197\u9918\u6838\u5c0d\uff09": [[424, "index-0", false]], "d_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.D_FMT", false]], "d_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.D_T_FMT", false]], "daemon (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.daemon", false]], "daemon (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.daemon", false]], "daemon_threads (socketserver.threadingmixin \u7684\u5c6c\u6027)": [[338, "socketserver.ThreadingMixIn.daemon_threads", false]], "dangling": [[427, "index-2", false]], "data (collections.userdict \u7684\u5c6c\u6027)": [[160, "collections.UserDict.data", false]], "data (collections.userlist \u7684\u5c6c\u6027)": [[160, "collections.UserList.data", false]], "data (collections.userstring \u7684\u5c6c\u6027)": [[160, "collections.UserString.data", false]], "data (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.data", false]], "data (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.data", false]], "data (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.data", false]], "data (xml.dom.comment \u7684\u5c6c\u6027)": [[410, "xml.dom.Comment.data", false]], "data (xml.dom.processinginstruction \u7684\u5c6c\u6027)": [[410, "xml.dom.ProcessingInstruction.data", false]], "data (xml.dom.text \u7684\u5c6c\u6027)": [[410, "xml.dom.Text.data", false]], "data (xmlrpc.client.binary \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Binary.data", false]], "data() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.data", false]], "data_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.data_filter", false]], "data_open() (urllib.request.datahandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.DataHandler.data_open", false]], "data_received() (asyncio.protocol \u7684\u65b9\u6cd5)": [[133, "asyncio.Protocol.data_received", false]], "databaseerror": [[340, "sqlite3.DatabaseError", false]], "databases\uff08\u8cc7\u6599\u5eab\uff09": [[184, "index-0", false]], "database\uff08\u8cc7\u6599\u5eab\uff09": [[387, "index-0", false]], "dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.dataclass", false]], "dataclass_transform() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.dataclass_transform", false]], "dataclasses": [[181, "module-dataclasses", false]], "dataerror": [[340, "sqlite3.DataError", false]], "datagram_received() (asyncio.datagramprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramProtocol.datagram_received", false]], "datagramhandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.DatagramHandler", false]], "datagramprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.DatagramProtocol", false]], "datagramrequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.DatagramRequestHandler", false]], "datagramtransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.DatagramTransport", false]], "datahandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.DataHandler", false]], "data\uff08\u8cc7\u6599\uff09": [[175, "index-0", false], [347, "index-0", false], [428, "index-0", false], [428, "index-4", false], [430, "index-7", false]], "date (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.date", false]], "date() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.date", false]], "date() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.date", false]], "date_time (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.date_time", false]], "date_time_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.date_time_string", false]], "dateheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.DateHeader", false]], "datetime": [[183, "module-datetime", false]], "datetime (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.datetime", false]], "datetime (email.headerregistry.dateheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.DateHeader.datetime", false]], "datetime (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.DateTime", false]], "datetime format\uff08\u65e5\u671f\u6642\u9593\u683c\u5f0f\uff09": [[183, "index-0", false], [366, "index-11", false], [366, "index-9", false]], "day (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Day", false]], "day (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.day", false]], "day (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.day", false]], "day_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_1", false]], "day_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_2", false]], "day_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_3", false]], "day_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_4", false]], "day_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_5", false]], "day_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_6", false]], "day_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.DAY_7", false]], "day_abbr (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.day_abbr", false]], "day_name (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.day_name", false]], "daylight (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.daylight", false]], "daylight saving time\uff08\u65e5\u5149\u7bc0\u7d04\u6642\u9593\uff09": [[366, "index-5", false]], "dbfilenameshelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.DbfilenameShelf", false]], "dbm": [[184, "module-dbm", false]], "dbm.dumb": [[184, "module-dbm.dumb", false]], "dbm.gnu": [[184, "module-dbm.gnu", false], [330, "index-1", false], [428, "index-32", false]], "dbm.ndbm": [[184, "module-dbm.ndbm", false], [330, "index-1", false], [428, "index-32", false]], "dc1 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC1", false]], "dc2 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC2", false]], "dc3 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC3", false]], "dc4 (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DC4", false]], "dcgettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.dcgettext", false]], "ddocumentation strings\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[441, "index-2", false], [441, "index-5", false]], "deactivate_stack_trampoline() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.deactivate_stack_trampoline", false]], "deallocation": [[75, "index-0", false]], "deallocation, object": [[75, "index-0", false]], "debug (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.debug", false]], "debug (pdb command)": [[297, "pdbcommand-debug", false]], "debug (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.debug", false]], "debug (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.debug", false]], "debug (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.debug", false]], "debug (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.DEBUG", false]], "debug (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.DEBUG", false]], "debug() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.debug", false]], "debug() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.debug", false]], "debug() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.debug", false]], "debug() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.debug", false]], "debug() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.debug", false]], "debug() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.debug", false]], "debug_bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.DEBUG_BYTECODE_SUFFIXES", false]], "debug_collectable (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_COLLECTABLE", false]], "debug_leak (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_LEAK", false]], "debug_saveall (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_SAVEALL", false]], "debug_src() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.debug_src", false]], "debug_stats (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_STATS", false]], "debug_uncollectable (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.DEBUG_UNCOLLECTABLE", false]], "debugger\uff08\u9664\u932f\u5668\uff09": [[247, "index-3", false], [297, "index-2", false], [352, "index-11", false], [352, "index-29", false], [365, "index-1", false]], "debugging\uff08\u9664\u932f\uff09": [[151, "index-5", false], [297, "index-0", false], [436, "index-18", false]], "debuglevel (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.debuglevel", false]], "debugrunner (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DebugRunner", false]], "december (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.DECEMBER", false]], "decimal": [[186, "module-decimal", false]], "decimal (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Decimal", false]], "decimal literal\uff08\u5341\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "decimal() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.decimal", false]], "decimalexception (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DecimalException", false]], "decode (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.decode", false]], "decode() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.decode", false]], "decode() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.decode", false]], "decode() (codecs.codec \u7684\u65b9\u6cd5)": [[158, "codecs.Codec.decode", false]], "decode() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.decode", false]], "decode() (json.jsondecoder \u7684\u65b9\u6cd5)": [[262, "json.JSONDecoder.decode", false]], "decode() (xmlrpc.client.binary \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.Binary.decode", false]], "decode() (xmlrpc.client.datetime \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.DateTime.decode", false]], "decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.decode", false]], "decode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.decode", false]], "decode() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.decode", false]], "decode() (\u65bc uu \u6a21\u7d44\u4e2d)": [[397, "uu.decode", false]], "decode_header() (\u65bc email.header \u6a21\u7d44\u4e2d)": [[202, "email.header.decode_header", false]], "decode_header() (\u65bc nntplib \u6a21\u7d44\u4e2d)": [[288, "nntplib.decode_header", false]], "decode_params() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.decode_params", false]], "decode_rfc2231() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.decode_rfc2231", false]], "decode_source() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.decode_source", false]], "decodebytes() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.decodebytes", false]], "decodedgenerator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.DecodedGenerator", false]], "decodestring() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.decodestring", false]], "decode\uff08\u89e3\u78bc\uff09": [[158, "index-0", false]], "decomposition() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.decomposition", false]], "decompress() (bz2.bz2decompressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Decompressor.decompress", false]], "decompress() (lzma.lzmadecompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMADecompressor.decompress", false]], "decompress() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.decompress", false]], "decompress() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.decompress", false]], "decompress() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.decompress", false]], "decompress() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.decompress", false]], "decompress() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.decompress", false]], "decompressobj() (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.decompressobj", false]], "decorator\uff08\u88dd\u98fe\u5668\uff09": [[87, "term-decorator", true]], "dedent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DEDENT", false]], "dedent token\uff08\u7e2e\u6392\u6a19\u8a8c\uff09": [[427, "index-2", false], [435, "index-9", false]], "dedent() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.dedent", false]], "deepcopy() (\u65bc copy \u6a21\u7d44\u4e2d)": [[171, "copy.deepcopy", false]], "def": [[427, "index-28", false]], "def_prog_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.def_prog_mode", false]], "def_shell_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.def_shell_mode", false]], "default (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.default", false]], "default (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.default", false]], "default (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.default", false]], "default (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.DEFAULT", false]], "default() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.default", false]], "default() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.default", false]], "default_buffer_size (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.DEFAULT_BUFFER_SIZE", false]], "default_bufsize (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.default_bufsize", false]], "default_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.default_exception_handler", false]], "default_factory (collections.defaultdict \u7684\u5c6c\u6027)": [[160, "collections.defaultdict.default_factory", false]], "default_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.DEFAULT_FORMAT", false]], "default_ignores (\u65bc filecmp \u6a21\u7d44\u4e2d)": [[216, "filecmp.DEFAULT_IGNORES", false]], "default_loader() (\u65bc xml.etree.elementinclude \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementInclude.default_loader", false]], "default_max_str_digits (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.default_max_str_digits", false]], "default_open() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.default_open", false]], "default_protocol (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.DEFAULT_PROTOCOL", false]], "default_timer() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.default_timer", false]], "defaultcontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DefaultContext", false]], "defaultcookiepolicy (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.DefaultCookiePolicy", false]], "defaultdict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.defaultdict", false]], "defaultdict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.DefaultDict", false]], "defaulteventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.DefaultEventLoopPolicy", false]], "defaulthandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.DefaultHandler", false]], "defaulthandlerexpand() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.DefaultHandlerExpand", false]], "defaults() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.defaults", false]], "defaultselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.DefaultSelector", false]], "defaulttestloader (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.defaultTestLoader", false]], "defaulttestresult() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.defaultTestResult", false]], "default\uff08\u9810\u8a2d\uff09": [[427, "index-31", false]], "defects (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.defects", false]], "defects (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.defects", false]], "defects (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.defects", false]], "definition\uff08\u5b9a\u7fa9\uff09": [[427, "index-28", false], [427, "index-42", false], [436, "index-24", false]], "defpath (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.defpath", false]], "defragresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.DefragResult", false]], "defragresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.DefragResultBytes", false]], "degrees() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.degrees", false]], "degrees() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.degrees", false]], "del": [[344, "index-24", false], [344, "index-52", false], [428, "index-74", false], [436, "index-21", true]], "del (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Del", false]], "del (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DEL", false]], "del_param() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.del_param", false]], "del_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.del_param", false]], "delattr()": [[225, "delattr", false]], "delay() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.delay", false]], "delay_output() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.delay_output", false]], "delayload (http.cookiejar.filecookiejar \u7684\u5c6c\u6027)": [[243, "http.cookiejar.FileCookieJar.delayload", false]], "delch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.delch", false]], "dele() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.dele", false]], "delete (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Delete", false]], "delete() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.delete", false]], "delete() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.delete", false]], "delete() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.delete", false]], "delete_attr (opcode)": [[191, "opcode-DELETE_ATTR", false]], "delete_deref (opcode)": [[191, "opcode-DELETE_DEREF", false]], "delete_fast (opcode)": [[191, "opcode-DELETE_FAST", false]], "delete_global (opcode)": [[191, "opcode-DELETE_GLOBAL", false]], "delete_name (opcode)": [[191, "opcode-DELETE_NAME", false]], "delete_subscr (opcode)": [[191, "opcode-DELETE_SUBSCR", false]], "deleteacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.deleteacl", false]], "deletefilehandler() (_tkinter.widget.tk \u7684\u65b9\u6cd5)": [[369, "tkinter.Widget.tk.deletefilehandler", false]], "deletekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteKey", false]], "deletekeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteKeyEx", false]], "deleteln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.deleteln", false]], "deleteme() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.deleteMe", false]], "deletevalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DeleteValue", false]], "deleting\uff08\u522a\u9664\uff09": [[293, "index-21", false], [293, "index-29", false], [332, "index-1", false]], "deletion\uff08\u522a\u9664\uff09": [[436, "index-21", false], [436, "index-23", false]], "delimiter (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.delimiter", false]], "delimiters\uff08\u5206\u9694\u7b26\u865f\uff09": [[435, "index-32", false]], "delitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.delitem", false]], "deliver_challenge() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.deliver_challenge", false]], "delocalize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.delocalize", false]], "demo_app() (\u65bc wsgiref.simple_server \u6a21\u7d44\u4e2d)": [[407, "wsgiref.simple_server.demo_app", false]], "denominator (fractions.fraction \u7684\u5c6c\u6027)": [[221, "fractions.Fraction.denominator", false]], "denominator (numbers.rational \u7684\u5c6c\u6027)": [[289, "numbers.Rational.denominator", false]], "deprecationwarning": [[213, "DeprecationWarning", false]], "deque (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.deque", false]], "deque (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Deque", false]], "dequeue() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.dequeue", false]], "der_cert_to_pem_cert() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.DER_cert_to_PEM_cert", false]], "derive() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.derive", false]], "derwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.derwin", false]], "des": [[173, "index-0", false]], "descrgetfunc (c type)": [[63, "c.descrgetfunc", false]], "description (inspect.parameter.kind \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.kind.description", false]], "description (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.description", false]], "description() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.description", false]], "descriptions() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.descriptions", false]], "descriptor\uff08\u63cf\u8ff0\u5668\uff09": [[87, "term-descriptor", true]], "descrsetfunc (c type)": [[63, "c.descrsetfunc", false]], "deserialize() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.deserialize", false]], "dest (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.dest", false]], "destructor (c type)": [[63, "c.destructor", false]], "destructor\uff08\u89e3\u69cb\u51fd\u5f0f\uff09": [[428, "index-74", false], [436, "index-7", false]], "detach() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.detach", false]], "detach() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.detach", false]], "detach() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.detach", false]], "detach() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.detach", false]], "detach() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.detach", false]], "detach() (winreg.pyhkey \u7684\u65b9\u6cd5)": [[405, "winreg.PyHKEY.Detach", false]], "detached_process (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.DETACHED_PROCESS", false]], "detect_api_mismatch() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.detect_api_mismatch", false]], "detect_encoding() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.detect_encoding", false]], "deterministic profiling": [[308, "index-0", false]], "dev_mode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.dev_mode", false]], "device_encoding() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.device_encoding", false]], "devmajor (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.devmajor", false]], "devminor (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.devminor", false]], "devnull (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.devnull", false]], "devnull (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.DEVNULL", false]], "devpoll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.devpoll", false]], "devpollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.DevpollSelector", false]], "dgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dgettext", false]], "dgettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.dgettext", false]], "dialect (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.Dialect", false]], "dialect (csv.csvreader \u7684\u5c6c\u6027)": [[175, "csv.csvreader.dialect", false]], "dialect (csv.csvwriter \u7684\u5c6c\u6027)": [[175, "csv.csvwriter.dialect", false]], "dialog (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Dialog", false]], "dialog (tkinter.commondialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.commondialog.Dialog", false]], "dialog (tkinter.simpledialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.simpledialog.Dialog", false]], "dict (2to3 fixer)": [[112, "to3fixer-dict", false]], "dict (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Dict", false]], "dict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Dict", false]], "dict (\u5167\u5efa\u985e\u5225)": [[344, "dict", false]], "dict() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.dict", false]], "dict_merge (opcode)": [[191, "opcode-DICT_MERGE", false]], "dict_update (opcode)": [[191, "opcode-DICT_UPDATE", false]], "dictcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.DictComp", false]], "dictconfig() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.dictConfig", false]], "dictionary comprehension\uff08\u5b57\u5178\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-dictionary-comprehension", true]], "dictionary expression\uff08\u5b57\u5178\u904b\u7b97\u5f0f\uff09": [[430, "index-17", false]], "dictionary view\uff08\u5b57\u5178\u6aa2\u8996\uff09": [[87, "term-dictionary-view", true]], "dictionary\uff08\u5b57\u5178\uff09": [[22, "index-0", false], [87, "term-dictionary", true], [344, "index-52", false], [428, "index-31", false], [428, "index-47", false], [428, "index-80", false], [430, "index-17", false], [430, "index-18", false], [430, "index-42", false], [436, "index-11", false]], "dictreader (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.DictReader", false]], "dictwriter (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.DictWriter", false]], "diff_bytes() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.diff_bytes", false]], "diff_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.diff_files", false]], "differ (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.Differ", false]], "difference() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.difference", false]], "difference_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.difference_update", false]], "difflib": [[190, "module-difflib", false]], "dig (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.dig", false]], "digest() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.digest", false]], "digest() (hashlib.shake \u7684\u65b9\u6cd5)": [[235, "hashlib.shake.digest", false]], "digest() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.digest", false]], "digest() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.digest", false]], "digest_size (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.digest_size", false]], "digit() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.digit", false]], "digits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.digits", false]], "dir()": [[225, "dir", false]], "dir() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.dir", false]], "dircmp (filecmp \u4e2d\u7684\u985e\u5225)": [[216, "filecmp.dircmp", false]], "directory": [[163, "cmdoption-compileall-arg-directory", false]], "directory (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Directory", false]], "directory (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.Directory", false]], "directory\uff08\u76ee\u9304\uff09": [[293, "index-26", false], [293, "index-28", false], [293, "index-29", false], [293, "index-31", false], [293, "index-32", false], [332, "index-1", false], [334, "index-1", false]], "direntry (os \u4e2d\u7684\u985e\u5225)": [[293, "os.DirEntry", false]], "dirlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirList", false]], "dirname() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.dirname", false]], "dirs_double_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.dirs_double_event", false]], "dirs_select_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.dirs_select_event", false]], "dirselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirSelectBox", false]], "dirselectdialog (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirSelectDialog", false]], "dirsonsyspath (test.support.import_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.import_helper.DirsOnSysPath", false]], "dirtree (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.DirTree", false]], "dirtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.DIRTYPE", false]], "dis": [[191, "module-dis", false]], "dis \u547d\u4ee4\u5217\u9078\u9805": [[191, "cmdoption-dis-h", false]], "dis() (dis.bytecode \u7684\u65b9\u6cd5)": [[191, "dis.Bytecode.dis", false]], "dis() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.dis", false]], "dis() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.dis", false]], "disable (pdb command)": [[297, "pdbcommand-disable", false]], "disable (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.DISABLE", false]], "disable() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.disable", false]], "disable() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.disable", false]], "disable() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.disable", false]], "disable() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.disable", false]], "disable() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.disable", false]], "disable_faulthandler() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.disable_faulthandler", false]], "disable_gc() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.disable_gc", false]], "disable_interspersed_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.disable_interspersed_args", false]], "disabled (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.disabled", false]], "disablereflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.DisableReflectionKey", false]], "disassemble() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.disassemble", false]], "discard (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.discard", false]], "discard() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.discard", false]], "discard() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.discard", false]], "discard() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.discard", false]], "disco() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.disco", false]], "discover() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.discover", false]], "disk_usage() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.disk_usage", false]], "dispatch_call() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_call", false]], "dispatch_exception() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_exception", false]], "dispatch_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_line", false]], "dispatch_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.dispatch_return", false]], "dispatch_table (pickle.pickler \u7684\u5c6c\u6027)": [[299, "pickle.Pickler.dispatch_table", false]], "display": [[369, "index-0", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false]], "display (pdb command)": [[297, "pdbcommand-display", false]], "display_name (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.display_name", false]], "display_name (email.headerregistry.group \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Group.display_name", false]], "displayhook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.displayhook", false]], "dist() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.dist", false]], "distance() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.distance", false]], "distb() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.distb", false]], "div (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Div", false]], "divide() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divide", false]], "divide_int() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divide_int", false]], "divisionbyzero (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.DivisionByZero", false]], "division\uff08\u9664\uff09": [[430, "index-67", false]], "divmod": [[47, "index-0", false], [428, "index-100", false], [428, "index-101", false]], "divmod()": [[225, "divmod", false]], "divmod() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.divmod", false]], "dle (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.DLE", false]], "dllcanunloadnow() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.DllCanUnloadNow", false]], "dllgetclassobject() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.DllGetClassObject", false]], "dllhandle (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.dllhandle", false]], "dnd_start() (\u65bc tkinter.dnd \u6a21\u7d44\u4e2d)": [[371, "tkinter.dnd.dnd_start", false]], "dndhandler (tkinter.dnd \u4e2d\u7684\u985e\u5225)": [[371, "tkinter.dnd.DndHandler", false]], "dngettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dngettext", false]], "dnpgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dnpgettext", false]], "do_clear() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.do_clear", false]], "do_command() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.do_command", false]], "do_get() (http.server.simplehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.SimpleHTTPRequestHandler.do_GET", false]], "do_handshake() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.do_handshake", false]], "do_head() (http.server.simplehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.SimpleHTTPRequestHandler.do_HEAD", false]], "do_help() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.do_help", false]], "do_post() (http.server.cgihttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.CGIHTTPRequestHandler.do_POST", false]], "doc (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.doc", false]], "doc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.doc_header", false]], "doccgixmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler", false]], "docfilesuite() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DocFileSuite", false]], "doclasscleanups() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.doClassCleanups", false]], "docleanups() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.doCleanups", false]], "docmd() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.docmd", false]], "docstring (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.docstring", false]], "docstrings\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[441, "index-2", false], [441, "index-5", false]], "docstring\uff08\u8aaa\u660e\u5b57\u4e32\uff09": [[87, "term-docstring", true], [427, "index-42", false]], "doctest": [[193, "module-doctest", false]], "doctest (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTest", false]], "doctestfailure": [[193, "doctest.DocTestFailure", false]], "doctestfinder (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestFinder", false]], "doctestparser (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestParser", false]], "doctestrunner (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.DocTestRunner", false]], "doctestsuite() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DocTestSuite", false]], "doctype() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.doctype", false]], "documentation string\uff08\u6587\u4ef6\u5b57\u4e32\uff09": [[428, "index-60", false]], "documentation\uff08\u6587\u4ef6\uff09": [[313, "index-0", false]], "documentelement (xml.dom.document \u7684\u5c6c\u6027)": [[410, "xml.dom.Document.documentElement", false]], "docxmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocXMLRPCRequestHandler", false]], "docxmlrpcserver (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.DocXMLRPCServer", false]], "domain (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.domain", false]], "domain (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain", false]], "domain (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.domain", false]], "domain (tracemalloc.domainfilter \u7684\u5c6c\u6027)": [[382, "tracemalloc.DomainFilter.domain", false]], "domain (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.domain", false]], "domain (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.domain", false]], "domain_initial_dot (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain_initial_dot", false]], "domain_return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.domain_return_ok", false]], "domain_specified (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.domain_specified", false]], "domainfilter (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.DomainFilter", false]], "domainliberal (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainLiberal", false]], "domainrfc2965match (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainRFC2965Match", false]], "domainstrict (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrict", false]], "domainstrictnodots (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrictNoDots", false]], "domainstrictnondomain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.DomainStrictNonDomain", false]], "domeventstream (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.DOMEventStream", false]], "domexception": [[410, "xml.dom.DOMException", false]], "domodulecleanups() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.doModuleCleanups", false]], "domstringsizeerr": [[410, "xml.dom.DomstringSizeErr", false]], "done() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.done", false]], "done() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.done", false]], "done() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.done", false]], "done() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.done", false]], "done() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.done", false]], "done() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.done", false]], "dont_accept_blankline (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DONT_ACCEPT_BLANKLINE", false]], "dont_accept_true_for_1 (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.DONT_ACCEPT_TRUE_FOR_1", false]], "dont_write_bytecode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.dont_write_bytecode", false]], "dont_write_bytecode (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.dont_write_bytecode", false]], "dorollover() (logging.handlers.rotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.RotatingFileHandler.doRollover", false]], "dorollover() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.doRollover", false]], "dot (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOT", false]], "dot() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.dot", false]], "dotall (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.DOTALL", false]], "doublequote (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.doublequote", false]], "doubleslash (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESLASH", false]], "doubleslashequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESLASHEQUAL", false]], "doublestar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESTAR", false]], "doublestarequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.DOUBLESTAREQUAL", false]], "doupdate() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.doupdate", false]], "down (pdb command)": [[297, "pdbcommand-down", false]], "down() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.down", false]], "dpgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.dpgettext", false]], "drain() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.drain", false]], "drive (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.drive", false]], "drop_whitespace (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.drop_whitespace", false]], "dropwhile() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.dropwhile", false]], "dst() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.dst", false]], "dst() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.dst", false]], "dst() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.dst", false]], "dst() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.dst", false]], "dtdhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.DTDHandler", false]], "duck-typing\uff08\u9d28\u5b50\u578b\u5225\uff09": [[87, "term-duck-typing", true]], "dump() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.dump", false]], "dump() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.dump", false]], "dump() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.dump", false]], "dump() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.dump", false]], "dump() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.dump", false]], "dump() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.dump", false]], "dump() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.dump", false]], "dump() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.dump", false]], "dump_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.dump_stats", false]], "dump_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.dump_stats", false]], "dump_traceback() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.dump_traceback", false]], "dump_traceback_later() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.dump_traceback_later", false]], "dumps() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.dumps", false]], "dumps() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.dumps", false]], "dumps() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.dumps", false]], "dumps() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.dumps", false]], "dumps() (\u65bc xmlrpc.client \u6a21\u7d44\u4e2d)": [[419, "xmlrpc.client.dumps", false]], "dup() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.dup", false]], "dup() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.dup", false]], "dup2() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.dup2", false]], "duplicateoptionerror": [[167, "configparser.DuplicateOptionError", false]], "duplicatesectionerror": [[167, "configparser.DuplicateSectionError", false]], "dwflags (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.dwFlags", false]], "dynamicclassattribute() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.DynamicClassAttribute", false]], "e": [[435, "index-29", false]], "e (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.e", false]], "e (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.e", false]], "e2big (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.E2BIG", false]], "eacces (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EACCES", false]], "eaddrinuse (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADDRINUSE", false]], "eaddrnotavail (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADDRNOTAVAIL", false]], "eadv (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EADV", false]], "eafnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EAFNOSUPPORT", false]], "eafp": [[87, "term-EAFP", true]], "eagain (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EAGAIN", false]], "eager_task_factory() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.eager_task_factory", false]], "ealready (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EALREADY", false]], "east_asian_width() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.east_asian_width", false]], "ebade (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADE", false]], "ebadf (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADF", false]], "ebadfd (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADFD", false]], "ebadmsg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADMSG", false]], "ebadr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADR", false]], "ebadrqc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADRQC", false]], "ebadslt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBADSLT", false]], "ebfont (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBFONT", false]], "ebusy (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EBUSY", false]], "ecanceled (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECANCELED", false]], "echild (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECHILD", false]], "echo() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.echo", false]], "echochar() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.echochar", false]], "echrng (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECHRNG", false]], "ecomm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECOMM", false]], "econnaborted (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNABORTED", false]], "econnrefused (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNREFUSED", false]], "econnreset (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ECONNRESET", false]], "edeadlk (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDEADLK", false]], "edeadlock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDEADLOCK", false]], "edestaddrreq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDESTADDRREQ", false]], "edit() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.edit", false]], "edom (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDOM", false]], "edotdot (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDOTDOT", false]], "edquot (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EDQUOT", false]], "eexist (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EEXIST", false]], "efault (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EFAULT", false]], "efbig (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EFBIG", false]], "efd_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_CLOEXEC", false]], "efd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_NONBLOCK", false]], "efd_semaphore (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EFD_SEMAPHORE", false]], "effective id": [[293, "index-8", false]], "effective() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.effective", false]], "ehlo() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.ehlo", false]], "ehlo_or_helo_if_needed() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.ehlo_or_helo_if_needed", false]], "ehostdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EHOSTDOWN", false]], "ehostunreach (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EHOSTUNREACH", false]], "eidrm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EIDRM", false]], "eilseq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EILSEQ", false]], "einprogress (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINPROGRESS", false]], "eintr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINTR", false]], "einval (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EINVAL", false]], "eio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EIO", false]], "eisconn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISCONN", false]], "eisdir (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISDIR", false]], "eisnam (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EISNAM", false]], "eject (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.EJECT", false]], "el2hlt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL2HLT", false]], "el2nsync (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL2NSYNC", false]], "el3hlt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL3HLT", false]], "el3rst (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EL3RST", false]], "element (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.Element", false]], "element_create() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_create", false]], "element_names() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_names", false]], "element_options() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.element_options", false]], "elementdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ElementDeclHandler", false]], "elements() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.elements", false]], "elementtree (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.ElementTree", false]], "elibacc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBACC", false]], "elibbad (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBBAD", false]], "elibexec (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBEXEC", false]], "elibmax (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBMAX", false]], "elibscn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELIBSCN", false]], "elif": [[427, "index-3", false]], "ellinghouse, lance": [[397, "index-1", false]], "ellipsis": [[428, "index-8", false]], "ellipsis (\u5167\u5efa\u8b8a\u6578)": [[168, "Ellipsis", false]], "ellipsis (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.ELLIPSIS", false]], "ellipsis (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ELLIPSIS", false]], "ellipsis literal\uff08\u522a\u7bc0\u865f\uff09": [[168, "index-0", false], [344, "index-66", false], [428, "index-8", false]], "ellipsistype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.EllipsisType", false]], "elnrng (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELNRNG", false]], "eloop (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ELOOP", false]], "else": [[427, "index-13", false], [427, "index-2", false], [427, "index-3", false], [427, "index-4", false], [427, "index-6", false], [427, "index-9", false], [430, "index-88", false], [436, "index-31", false]], "em (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.EM", false]], "email": [[194, "module-email", false]], "email.charset": [[195, "module-email.charset", false]], "email.contentmanager": [[197, "module-email.contentmanager", false]], "email.encoders": [[198, "module-email.encoders", false]], "email.errors": [[199, "module-email.errors", false]], "email.generator": [[201, "module-email.generator", false]], "email.header": [[202, "module-email.header", false]], "email.headerregistry": [[203, "module-email.headerregistry", false]], "email.iterators": [[204, "module-email.iterators", false]], "email.message": [[205, "module-email.message", false]], "email.mime": [[206, "module-email.mime", false]], "email.mime.application": [[206, "module-email.mime.application", false]], "email.mime.audio": [[206, "module-email.mime.audio", false]], "email.mime.base": [[206, "module-email.mime.base", false]], "email.mime.image": [[206, "module-email.mime.image", false]], "email.mime.message": [[206, "module-email.mime.message", false]], "email.mime.multipart": [[206, "module-email.mime.multipart", false]], "email.mime.nonmultipart": [[206, "module-email.mime.nonmultipart", false]], "email.mime.text": [[206, "module-email.mime.text", false]], "email.parser": [[207, "module-email.parser", false]], "email.policy": [[208, "module-email.policy", false]], "email.utils": [[209, "module-email.utils", false]], "emailmessage (email.message \u4e2d\u7684\u985e\u5225)": [[205, "email.message.EmailMessage", false]], "emailpolicy (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.EmailPolicy", false]], "emfile (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMFILE", false]], "emit() (logging.filehandler \u7684\u65b9\u6cd5)": [[269, "logging.FileHandler.emit", false]], "emit() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.emit", false]], "emit() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.emit", false]], "emit() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.emit", false]], "emit() (logging.handlers.httphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.HTTPHandler.emit", false]], "emit() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.emit", false]], "emit() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.emit", false]], "emit() (logging.handlers.rotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.RotatingFileHandler.emit", false]], "emit() (logging.handlers.smtphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SMTPHandler.emit", false]], "emit() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.emit", false]], "emit() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.emit", false]], "emit() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.emit", false]], "emit() (logging.handlers.watchedfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.WatchedFileHandler.emit", false]], "emit() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.emit", false]], "emit() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.emit", false]], "emlink (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMLINK", false]], "empty": [[316, "queue.Empty", false], [430, "index-15", false], [430, "index-9", false]], "empty (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.empty", false]], "empty (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.empty", false]], "empty() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.empty", false]], "empty() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.empty", false]], "empty() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.empty", false]], "empty() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.empty", false]], "empty() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.empty", false]], "empty() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.empty", false]], "empty_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.EMPTY_NAMESPACE", false]], "emptyline() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.emptyline", false]], "empty\uff08\u7a7a\u7684\uff09": [[428, "index-20", false]], "emscripten_version (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.emscripten_version", false]], "emsgsize (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMSGSIZE", false]], "emultihop (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EMULTIHOP", false]], "enable (pdb command)": [[297, "pdbcommand-enable", false]], "enable() (bdb.breakpoint \u7684\u65b9\u6cd5)": [[144, "bdb.Breakpoint.enable", false]], "enable() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.enable", false]], "enable() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.enable", false]], "enable() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.enable", false]], "enable() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.enable", false]], "enable() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.enable", false]], "enable_callback_tracebacks() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.enable_callback_tracebacks", false]], "enable_interspersed_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.enable_interspersed_args", false]], "enable_load_extension() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.enable_load_extension", false]], "enable_traversal() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.enable_traversal", false]], "enable_user_site (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.ENABLE_USER_SITE", false]], "enablecontrolflowguard": [[483, "index-95", false]], "enabled (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.enabled", false]], "enablereflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnableReflectionKey", false]], "enametoolong (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENAMETOOLONG", false]], "enavail (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENAVAIL", false]], "enclose() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.enclose", false]], "encode (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.encode", false]], "encode() (codecs.codec \u7684\u65b9\u6cd5)": [[158, "codecs.Codec.encode", false]], "encode() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.encode", false]], "encode() (email.header.header \u7684\u65b9\u6cd5)": [[202, "email.header.Header.encode", false]], "encode() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.encode", false]], "encode() (str \u7684\u65b9\u6cd5)": [[344, "str.encode", false]], "encode() (xmlrpc.client.binary \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.Binary.encode", false]], "encode() (xmlrpc.client.datetime \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.DateTime.encode", false]], "encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.encode", false]], "encode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.encode", false]], "encode() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.encode", false]], "encode() (\u65bc uu \u6a21\u7d44\u4e2d)": [[397, "uu.encode", false]], "encode_7or8bit() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_7or8bit", false]], "encode_base64() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_base64", false]], "encode_noop() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_noop", false]], "encode_quopri() (\u65bc email.encoders \u6a21\u7d44\u4e2d)": [[198, "email.encoders.encode_quopri", false]], "encode_rfc2231() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.encode_rfc2231", false]], "encodebytes() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.encodebytes", false]], "encodedfile() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.EncodedFile", false]], "encodepriority() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.encodePriority", false]], "encodestring() (\u65bc quopri \u6a21\u7d44\u4e2d)": [[317, "quopri.encodestring", false]], "encode\uff08\u7de8\u78bc\uff09": [[158, "index-0", false]], "encoding (curses.window \u7684\u5c6c\u6027)": [[177, "curses.window.encoding", false]], "encoding (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.encoding", false]], "encoding (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.encoding", false]], "encoding (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.ENCODING", false]], "encoding (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ENCODING", false]], "encoding declarations (source file)\uff08\u7de8\u78bc\u5ba3\u544a\uff08\u539f\u59cb\u6a94\u6848\uff09\uff09": [[435, "index-5", false]], "encodings.idna": [[158, "module-encodings.idna", false]], "encodings.mbcs": [[158, "module-encodings.mbcs", false]], "encodings.utf_8_sig": [[158, "module-encodings.utf_8_sig", false]], "encodings_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.encodings_map", false]], "encodings_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.encodings_map", false]], "encodingwarning": [[213, "EncodingWarning", false]], "encoding\uff08\u7de8\u78bc\uff09": [[143, "index-0", false], [317, "index-0", false]], "end (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.end", false]], "end() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.end", false]], "end() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.end", false]], "end_async_for (opcode)": [[191, "opcode-END_ASYNC_FOR", false]], "end_col_offset (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.end_col_offset", false]], "end_fill() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.end_fill", false]], "end_for (opcode)": [[191, "opcode-END_FOR", false]], "end_headers() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.end_headers", false]], "end_lineno (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.end_lineno", false]], "end_lineno (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.end_lineno", false]], "end_lineno (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.end_lineno", false]], "end_ns() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.end_ns", false]], "end_offset (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.end_offset", false]], "end_offset (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.end_offset", false]], "end_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.end_poly", false]], "end_send (opcode)": [[191, "opcode-END_SEND", false]], "endcdata() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.endCDATA", false]], "endcdatasectionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndCdataSectionHandler", false]], "enddoctypedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndDoctypeDeclHandler", false]], "enddocument() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endDocument", false]], "enddtd() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.endDTD", false]], "endelement() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endElement", false]], "endelementhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndElementHandler", false]], "endelementns() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endElementNS", false]], "endheaders() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.endheaders", false]], "endmarker (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ENDMARKER", false]], "endnamespacedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EndNamespaceDeclHandler", false]], "endpos (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.endpos", false]], "endprefixmapping() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.endPrefixMapping", false]], "endswith() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.endswith", false]], "endswith() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.endswith", false]], "endswith() (str \u7684\u65b9\u6cd5)": [[344, "str.endswith", false]], "endwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.endwin", false]], "enetdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETDOWN", false]], "enetreset (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETRESET", false]], "enetunreach (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENETUNREACH", false]], "enfile (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENFILE", false]], "enoano (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOANO", false]], "enobufs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOBUFS", false]], "enocsi (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOCSI", false]], "enodata (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENODATA", false]], "enodev (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENODEV", false]], "enoent (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOENT", false]], "enoexec (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOEXEC", false]], "enolck (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOLCK", false]], "enolink (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOLINK", false]], "enomem (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOMEM", false]], "enomsg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOMSG", false]], "enonet (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENONET", false]], "enopkg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOPKG", false]], "enoprotoopt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOPROTOOPT", false]], "enospc (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSPC", false]], "enosr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSR", false]], "enostr (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSTR", false]], "enosys (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOSYS", false]], "enotblk (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTBLK", false]], "enotcapable (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTCAPABLE", false]], "enotconn (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTCONN", false]], "enotdir (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTDIR", false]], "enotempty (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTEMPTY", false]], "enotnam (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTNAM", false]], "enotrecoverable (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTRECOVERABLE", false]], "enotsock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTSOCK", false]], "enotsup (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTSUP", false]], "enotty (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTTY", false]], "enotuniq (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENOTUNIQ", false]], "enq (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ENQ", false]], "enqueue() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.enqueue", false]], "enqueue_sentinel() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.enqueue_sentinel", false]], "ensure_directories() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.ensure_directories", false]], "ensure_future() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.ensure_future", false]], "ensurepip": [[210, "module-ensurepip", false]], "enter() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.enter", false]], "enter_async_context() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.enter_async_context", false]], "enter_context() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.enter_context", false]], "enterabs() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.enterabs", false]], "enterasynccontext() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.enterAsyncContext", false]], "enterclasscontext() (unittest.testcase \u7684\u985e\u5225\u65b9\u6cd5)": [[388, "unittest.TestCase.enterClassContext", false]], "entercontext() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.enterContext", false]], "entermodulecontext() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.enterModuleContext", false]], "entities (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.entities", false]], "entitydeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.EntityDeclHandler", false]], "entitydefs (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.entitydefs", false]], "entityresolver (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.EntityResolver", false]], "enum": [[211, "module-enum", false]], "enum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.Enum", false]], "enum_certificates() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.enum_certificates", false]], "enum_crls() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.enum_crls", false]], "enumcheck (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.EnumCheck", false]], "enumerate()": [[225, "enumerate", false]], "enumerate() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.enumerate", false]], "enumkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnumKey", false]], "enumtype (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.EnumType", false]], "enumvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.EnumValue", false]], "envbuilder (venv \u4e2d\u7684\u985e\u5225)": [[399, "venv.EnvBuilder", false]], "environ (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.environ", false]], "environ (\u65bc posix \u6a21\u7d44\u4e2d)": [[306, "posix.environ", false]], "environb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.environb", false]], "environment variables expansion (windows) \uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b (windows)\uff09": [[405, "index-0", false]], "environment variables expansion (windows)\uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b (windows)\uff09": [[294, "index-9", false]], "environment variables expansion\uff08\u74b0\u5883\u8b8a\u6578\u5c55\u958b\uff09": [[294, "index-9", false]], "environment variables\uff08\u74b0\u5883\u8b8a\u6578\uff09": [[293, "index-17", false], [293, "index-21", false]], "environmenterror": [[213, "EnvironmentError", false]], "environments \uff08\u74b0\u5883\uff09": [[399, "index-0", false]], "environmentvarguard (test.support.os_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.os_helper.EnvironmentVarGuard", false]], "environment\uff08\u74b0\u5883\uff09": [[429, "index-8", false]], "enxio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ENXIO", false]], "eof (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.eof", false]], "eof (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.eof", false]], "eof (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.eof", false]], "eof (ssl.memorybio \u7684\u5c6c\u6027)": [[341, "ssl.MemoryBIO.eof", false]], "eof (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.eof", false]], "eof_received() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.eof_received", false]], "eof_received() (asyncio.protocol \u7684\u65b9\u6cd5)": [[133, "asyncio.Protocol.eof_received", false]], "eoferror": [[213, "EOFError", false]], "eoferror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[24, "index-1", false]], "eopnotsupp (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOPNOTSUPP", false]], "eot (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.EOT", false]], "eoverflow (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOVERFLOW", false]], "eownerdead (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EOWNERDEAD", false]], "eperm (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPERM", false]], "epfnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPFNOSUPPORT", false]], "epilogue (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.epilogue", false]], "epilogue (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.epilogue", false]], "epipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPIPE", false]], "epoch\uff08\u7d00\u5143\uff09": [[366, "index-0", false]], "epoll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.epoll", false]], "epollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.EpollSelector", false]], "eproto (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTO", false]], "eprotonosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTONOSUPPORT", false]], "eprototype (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EPROTOTYPE", false]], "epsilon (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.epsilon", false]], "eq (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Eq", false]], "eq() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.eq", false]], "eqequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EQEQUAL", false]], "eqfull (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EQFULL", false]], "equal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EQUAL", false]], "era (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA", false]], "era_d_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_D_FMT", false]], "era_d_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_D_T_FMT", false]], "era_t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.ERA_T_FMT", false]], "erange (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ERANGE", false]], "erase() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.erase", false]], "erasechar() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.erasechar", false]], "eremchg (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMCHG", false]], "eremote (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMOTE", false]], "eremoteio (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EREMOTEIO", false]], "erestart (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ERESTART", false]], "erf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.erf", false]], "erfc() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.erfc", false]], "erofs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EROFS", false]], "err (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ERR", false]], "errcheck (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.errcheck", false]], "errcode (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.errcode", false]], "errmsg (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.errmsg", false]], "errno": [[212, "module-errno", false], [213, "index-5", false]], "errno (oserror \u7684\u5c6c\u6027)": [[213, "OSError.errno", false]], "error": [[115, "thread.error", false], [141, "audioop.error", false], [146, "binascii.Error", false], [167, "configparser.Error", false], [171, "copy.Error", false], [175, "csv.Error", false], [177, "curses.error", false], [184, "dbm.dumb.error", false], [184, "dbm.error", false], [184, "dbm.gnu.error", false], [184, "dbm.ndbm.error", false], [228, "getopt.error", false], [266, "locale.Error", false], [271, "mailbox.Error", false], [287, "nis.error", false], [293, "os.error", false], [314, "xml.parsers.expat.error", false], [319, "re.error", false], [322, "resource.error", false], [328, "select.error", false], [332, "shutil.Error", false], [337, "socket.error", false], [340, "sqlite3.Error", false], [347, "struct.error", false], [349, "sunau.Error", false], [397, "uu.Error", false], [401, "wave.Error", false], [403, "webbrowser.Error", false], [408, "xdrlib.Error", false], [424, "zlib.error", false]], "error (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.ERROR", false]], "error (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.ERROR", false]], "error handler's name\uff08\u932f\u8aa4\u8655\u7406\u5668\u540d\u7a31\uff09": [[158, "index-1", false], [158, "index-3", false], [158, "index-4", false]], "error handling\uff08\u932f\u8aa4\u8655\u7406\uff09": [[429, "index-15", false]], "error() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.error", false]], "error() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.error", false]], "error() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.error", false]], "error() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.error", false]], "error() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.error", false]], "error_body (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_body", false]], "error_content_type (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.error_content_type", false]], "error_headers (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_headers", false]], "error_leader() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.error_leader", false]], "error_message_format (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.error_message_format", false]], "error_output() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.error_output", false]], "error_perm": [[223, "ftplib.error_perm", false]], "error_proto": [[223, "ftplib.error_proto", false], [305, "poplib.error_proto", false]], "error_received() (asyncio.datagramprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramProtocol.error_received", false]], "error_reply": [[223, "ftplib.error_reply", false]], "error_status (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.error_status", false]], "error_temp": [[223, "ftplib.error_temp", false]], "errorbyteindex (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorByteIndex", false]], "errorcode (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorCode", false]], "errorcode (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.errorcode", false]], "errorcolumnnumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorColumnNumber", false]], "errorhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.ErrorHandler", false]], "errorlevel (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.errorlevel", false]], "errorlinenumber (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ErrorLineNumber", false]], "errors (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.errors", false]], "errors (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.errors", false]], "errors (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.errors", false]], "errorstream (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.ErrorStream", false]], "errorstring() (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.ErrorString", false]], "errors\uff08\u932f\u8aa4\uff09": [[267, "index-0", false], [429, "index-15", false]], "errortoken (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ERRORTOKEN", false]], "esc (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ESC", false]], "escape (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.escape", false]], "escape sequence\uff08\u8df3\u812b\u5e8f\u5217\uff09": [[158, "index-1", false], [158, "index-3", false], [435, "index-23", false]], "escape() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.escape", false]], "escape() (\u65bc html \u6a21\u7d44\u4e2d)": [[238, "html.escape", false]], "escape() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.escape", false]], "escape() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.escape", false]], "escapechar (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.escapechar", false]], "escapedquotes (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.escapedquotes", false]], "eshutdown (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESHUTDOWN", false]], "esocktnosupport (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESOCKTNOSUPPORT", false]], "espipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESPIPE", false]], "esrch (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESRCH", false]], "esrmnt (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESRMNT", false]], "estale (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESTALE", false]], "estrpipe (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ESTRPIPE", false]], "etb (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ETB", false]], "eth_p_all (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETH_P_ALL", false]], "ethertype_arp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_ARP", false]], "ethertype_ip (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_IP", false]], "ethertype_ipv6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_IPV6", false]], "ethertype_vlan (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ETHERTYPE_VLAN", false]], "etime (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETIME", false]], "etimedout (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETIMEDOUT", false]], "etiny() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.Etiny", false]], "etoomanyrefs (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETOOMANYREFS", false]], "etop() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.Etop", false]], "etx (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ETX", false]], "etxtbsy (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.ETXTBSY", false]], "euclean (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUCLEAN", false]], "eunatch (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUNATCH", false]], "eusers (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EUSERS", false]], "eval": [[307, "index-0", false], [307, "index-2", false], [344, "index-64", false], [436, "index-44", false], [437, "index-6", false]], "eval()": [[225, "eval", false]], "evaluation": [[430, "index-96", false]], "event (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Event", false]], "event (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Event", false]], "event (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Event", false]], "event scheduling\uff08\u4e8b\u4ef6\u6392\u7a0b\uff09": [[325, "index-0", false]], "event() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.event", false]], "event() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Event", false]], "event_read (\u65bc selectors \u6a21\u7d44\u4e2d)": [[329, "selectors.EVENT_READ", false]], "event_write (\u65bc selectors \u6a21\u7d44\u4e2d)": [[329, "selectors.EVENT_WRITE", false]], "eventfd() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd", false]], "eventfd_read() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd_read", false]], "eventfd_write() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.eventfd_write", false]], "events (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.events", false]], "events (widgets)": [[369, "index-5", false]], "ewouldblock (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EWOULDBLOCK", false]], "ex_cantcreat (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_CANTCREAT", false]], "ex_config (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_CONFIG", false]], "ex_dataerr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_DATAERR", false]], "ex_ioerr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_IOERR", false]], "ex_nohost (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOHOST", false]], "ex_noinput (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOINPUT", false]], "ex_noperm (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOPERM", false]], "ex_notfound (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOTFOUND", false]], "ex_nouser (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_NOUSER", false]], "ex_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OK", false]], "ex_oserr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OSERR", false]], "ex_osfile (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_OSFILE", false]], "ex_protocol (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_PROTOCOL", false]], "ex_software (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_SOFTWARE", false]], "ex_tempfail (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_TEMPFAIL", false]], "ex_unavailable (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_UNAVAILABLE", false]], "ex_usage (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.EX_USAGE", false]], "example (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.Example", false]], "example (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.example", false]], "example (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.example", false]], "examples (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.examples", false]], "exc_info (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.exc_info", false]], "exc_info \uff08sys \u6a21\u7d44\u4e2d\uff09": [[35, "index-13", false], [428, "index-66", false]], "exc_info() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exc_info", false]], "exc_msg (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.exc_msg", false]], "exc_type (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.exc_type", false]], "excel (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.excel", false]], "excel_tab (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.excel_tab", false]], "except": [[213, "index-0", false], [427, "index-9", false]], "except (2to3 fixer)": [[112, "to3fixer-except", false]], "except clause\uff08\u4f8b\u5916\u5b50\u53e5\uff09": [[427, "index-10", false]], "except_star": [[427, "index-12", false]], "excepthandler (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ExceptHandler", false]], "excepthook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.excepthook", false]], "excepthook() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.excepthook", false]], "excepthook() \uff08sys \u6a21\u7d44\u4e2d\uff09": [[152, "index-2", false]], "exception": [[213, "Exception", false], [430, "index-32", false], [430, "index-33", false], [430, "index-36", false], [430, "index-37", false], [430, "index-4", false], [430, "index-40", false], [430, "index-63", false], [430, "index-67", false], [430, "index-72", false]], "exception (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.EXCEPTION", false]], "exception handler\uff08\u4f8b\u5916\u8655\u7406\u5668\uff09": [[429, "index-15", false]], "exception() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.exception", false]], "exception() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.exception", false]], "exception() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.exception", false]], "exception() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.exception", false]], "exception() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.exception", false]], "exception() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exception", false]], "exception_handled (monitoring event)": [[353, "monitoring-event-EXCEPTION_HANDLED", false]], "exceptiongroup": [[213, "ExceptionGroup", false]], "exceptions (baseexceptiongroup \u7684\u5c6c\u6027)": [[213, "BaseExceptionGroup.exceptions", false]], "exceptions (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.exceptions", false]], "exceptions\uff08\u4f8b\u5916\uff09": [[152, "index-0", false]], "exception\uff08\u4f8b\u5916\uff09": [[213, "index-2", false], [428, "index-66", false], [429, "index-14", false], [436, "index-19", false], [436, "index-26", false], [436, "index-27", false], [436, "index-29", false], [436, "index-34", false]], "exclamation (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.EXCLAMATION", false]], "exclusive\uff08\u6392\u5916\uff09": [[430, "index-75", false]], "exdev (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EXDEV", false]], "exec": [[225, "index-2", false], [344, "index-64", false], [436, "index-44", false]], "exec (2to3 fixer)": [[112, "to3fixer-exec", false]], "exec()": [[225, "exec", false]], "exec_module() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.exec_module", false]], "exec_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.exec_module", false]], "exec_module() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.exec_module", false]], "exec_module() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.exec_module", false]], "exec_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.exec_module", false]], "exec_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exec_prefix", false]], "execfile (2to3 fixer)": [[112, "to3fixer-execfile", false]], "execl() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execl", false]], "execle() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execle", false]], "execlp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execlp", false]], "execlpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execlpe", false]], "executable (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.executable", false]], "executable zip files\uff08\u53ef\u57f7\u884c\u7684 zip \u6a94\u6848\uff09": [[421, "index-0", false]], "executable\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-21", false]], "execute() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Execute", false]], "execute() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.execute", false]], "execute() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.execute", false]], "executemany() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.executemany", false]], "executemany() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.executemany", false]], "executescript() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.executescript", false]], "executescript() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.executescript", false]], "execution model\uff08\u57f7\u884c\u6a21\u578b\uff09": [[429, "index-0", false]], "executionloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ExecutionLoader", false]], "execution\uff08\u57f7\u884c\uff09": [[427, "index-42", false], [428, "index-66", false], [429, "index-13", false], [429, "index-2", false]], "executor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.Executor", false]], "execv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execv", false]], "execve() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execve", false]], "execvp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execvp", false]], "execvpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.execvpe", false]], "exfileselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ExFileSelectBox", false]], "exfull (\u65bc errno \u6a21\u7d44\u4e2d)": [[212, "errno.EXFULL", false]], "exists() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.exists", false]], "exists() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.exists", false]], "exists() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.exists", false]], "exists() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.exists", false]], "exit (\u5167\u5efa\u8b8a\u6578)": [[168, "exit", false]], "exit() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.exit", false]], "exit() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.exit", false]], "exit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.exit", false]], "exitcode (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.exitcode", false]], "exitfunc (2to3 fixer)": [[112, "to3fixer-exitfunc", false]], "exitonclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.exitonclick", false]], "exitstack (contextlib \u4e2d\u7684\u985e\u5225)": [[169, "contextlib.ExitStack", false]], "exit\uff08c \u51fd\u5f0f\uff09": [[59, "index-3", false]], "exp() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.exp", false]], "exp() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.exp", false]], "exp() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.exp", false]], "exp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.exp", false]], "exp2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.exp2", false]], "expand() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.expand", false]], "expand_tabs (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.expand_tabs", false]], "expandenvironmentstrings() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.ExpandEnvironmentStrings", false]], "expandnode() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.expandNode", false]], "expandtabs() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.expandtabs", false]], "expandtabs() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.expandtabs", false]], "expandtabs() (str \u7684\u65b9\u6cd5)": [[344, "str.expandtabs", false]], "expanduser() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.expanduser", false]], "expanduser() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.expanduser", false]], "expandvars() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.expandvars", false]], "expat": [[314, "index-0", false]], "expaterror": [[314, "xml.parsers.expat.ExpatError", false]], "expect() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.expect", false]], "expected (asyncio.incompletereaderror \u7684\u5c6c\u6027)": [[127, "asyncio.IncompleteReadError.expected", false]], "expectedfailure() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.expectedFailure", false]], "expectedfailures (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.expectedFailures", false]], "expired() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.expired", false]], "expires (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.expires", false]], "expires (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.expires", false]], "exploded (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.exploded", false]], "exploded (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.exploded", false]], "exploded (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.exploded", false]], "exploded (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.exploded", false]], "expm1() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.expm1", false]], "expovariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.expovariate", false]], "expr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Expr", false]], "expression": [[430, "index-0", false], [430, "index-22", false], [430, "index-23", false], [430, "index-82", false], [430, "index-88", false], [430, "index-90", false], [430, "index-91", false], [436, "index-1", false], [436, "index-2", false]], "expression (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Expression", false]], "expression list\uff08\u8868\u9054\u5f0f\u5217\u8868\uff09": [[427, "index-42", false]], "expression list\uff08\u904b\u7b97\u5f0f\u4e32\u5217\uff09": [[430, "index-15", false], [430, "index-16", false], [430, "index-91", false]], "expression list\uff08\u904b\u7b97\u5f0f\u5217\u8868\uff09": [[436, "index-18", false]], "expression\uff08\u904b\u7b97\u5f0f\uff09": [[87, "term-expression", true], [427, "index-35", false]], "expunge() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.expunge", false]], "extend() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.extend", false]], "extend() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.extend", false]], "extend() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.extend", false]], "extend()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "extend_path() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.extend_path", false]], "extended_arg (opcode)": [[191, "opcode-EXTENDED_ARG", false]], "extendedcontext (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.ExtendedContext", false]], "extendedinterpolation (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.ExtendedInterpolation", false]], "extendleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.extendleft", false]], "extension module\uff08\u64f4\u5145\u6a21\u7d44\uff09": [[87, "term-extension-module", true]], "extension_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.EXTENSION_SUFFIXES", false]], "extensionfileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.ExtensionFileLoader", false]], "extensions_map (http.server.simplehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.SimpleHTTPRequestHandler.extensions_map", false]], "extension\uff08\u64f4\u5145\uff09": [[428, "index-4", false]], "external data representation \uff08\u5916\u90e8\u8cc7\u6599\u8868\u793a\uff09": [[408, "index-0", false]], "external data representation\uff08\u5916\u90e8\u8cc7\u6599\u8868\u793a\u6cd5\uff09": [[299, "index-1", false]], "external_attr (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.external_attr", false]], "externalclasherror": [[271, "mailbox.ExternalClashError", false]], "externalentityparsercreate() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ExternalEntityParserCreate", false]], "externalentityrefhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ExternalEntityRefHandler", false]], "extra (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.extra", false]], "extra_cflags": [[456, "envvar-EXTRA_CFLAGS", false]], "extract() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extract", false]], "extract() (traceback.stacksummary \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.StackSummary.extract", false]], "extract() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.extract", false]], "extract_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.extract_cookies", false]], "extract_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.extract_stack", false]], "extract_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.extract_tb", false]], "extract_version (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.extract_version", false]], "extractall() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extractall", false]], "extractall() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.extractall", false]], "extracterror": [[358, "tarfile.ExtractError", false]], "extractfile() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.extractfile", false]], "extraction_filter (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.extraction_filter", false]], "extsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.extsep", false]], "f\"": [[435, "index-22", false]], "f'": [[435, "index-22", false]], "f-string\uff08f \u5b57\u4e32\uff09": [[87, "term-f-string", true], [435, "index-25", false]], "f_back (frame \u7684\u5c6c\u6027)": [[428, "frame.f_back", false]], "f_back \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_builtins (frame \u7684\u5c6c\u6027)": [[428, "frame.f_builtins", false]], "f_builtins \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_code (frame \u7684\u5c6c\u6027)": [[428, "frame.f_code", false]], "f_code \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_contiguous (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.F_CONTIGUOUS", false]], "f_contiguous (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.f_contiguous", false]], "f_globals (frame \u7684\u5c6c\u6027)": [[428, "frame.f_globals", false]], "f_globals \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lasti (frame \u7684\u5c6c\u6027)": [[428, "frame.f_lasti", false]], "f_lasti \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lineno (frame \u7684\u5c6c\u6027)": [[428, "frame.f_lineno", false]], "f_lineno \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_locals (frame \u7684\u5c6c\u6027)": [[428, "frame.f_locals", false]], "f_locals \uff08frame \u5c6c\u6027\uff09": [[428, "index-64", false]], "f_lock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_LOCK", false]], "f_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_OK", false]], "f_test (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_TEST", false]], "f_tlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_TLOCK", false]], "f_trace (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace", false]], "f_trace \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_trace_lines (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace_lines", false]], "f_trace_lines \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_trace_opcodes (frame \u7684\u5c6c\u6027)": [[428, "frame.f_trace_opcodes", false]], "f_trace_opcodes \uff08frame \u5c6c\u6027\uff09": [[428, "index-65", false]], "f_ulock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.F_ULOCK", false]], "fabs() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fabs", false]], "factorial() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.factorial", false]], "factory() (importlib.util.lazyloader \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.util.LazyLoader.factory", false]], "fail() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.fail", false]], "fail_fast (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.FAIL_FAST", false]], "failfast (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.failfast", false]], "failureexception": [[193, "doctest.failureException", false]], "failureexception (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.failureException", false]], "failures (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.failures", false]], "fakepath (test.support.os_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.os_helper.FakePath", false]], "false": [[344, "index-17", false], [344, "index-4", false], [344, "index-1", false], [428, "index-12", false]], "false (\u5167\u5efa\u8b8a\u6578)": [[168, "False", false]], "false\uff08\u5167\u5efa\u7269\u4ef6\uff09": [[344, "index-3", false]], "families() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.families", false]], "family (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.family", false]], "fancyurlopener (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FancyURLopener", false]], "fast (pickle.pickler \u7684\u5c6c\u6027)": [[299, "pickle.Pickler.fast", false]], "fastchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.FastChildWatcher", false]], "fatalerror() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.fatalError", false]], "fault (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.Fault", false]], "faultcode (xmlrpc.client.fault \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Fault.faultCode", false]], "faulthandler": [[214, "module-faulthandler", false]], "faultstring (xmlrpc.client.fault \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.Fault.faultString", false]], "fchdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchdir", false]], "fchmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchmod", false]], "fchown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fchown", false]], "fcicreate() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.FCICreate", false]], "fcntl": [[215, "module-fcntl", false]], "fcntl() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.fcntl", false]], "fd (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.fd", false]], "fd() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.fd", false]], "fd_count() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.fd_count", false]], "fdatasync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fdatasync", false]], "fdopen() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fdopen", false]], "feature (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.Feature", false]], "feature_external_ges (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_external_ges", false]], "feature_external_pes (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_external_pes", false]], "feature_namespace_prefixes (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_namespace_prefixes", false]], "feature_namespaces (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_namespaces", false]], "feature_string_interning (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_string_interning", false]], "feature_validation (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.feature_validation", false]], "february (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.FEBRUARY", false]], "feed() (email.parser.bytesfeedparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesFeedParser.feed", false]], "feed() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.feed", false]], "feed() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.feed", false]], "feed() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.feed", false]], "feed() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.feed", false]], "feed_eof() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.feed_eof", false]], "feedparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.FeedParser", false]], "fetch() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.fetch", false]], "fetch() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Fetch", false]], "fetchall() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchall", false]], "fetchmany() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchmany", false]], "fetchone() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.fetchone", false]], "ff (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.FF", false]], "fflags (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.fflags", false]], "field (dataclasses \u4e2d\u7684\u985e\u5225)": [[181, "dataclasses.Field", false]], "field() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.field", false]], "field_size_limit() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.field_size_limit", false]], "fieldnames (csv.dictreader \u7684\u5c6c\u6027)": [[175, "csv.DictReader.fieldnames", false]], "fields (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.fields", false]], "fields() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.fields", false]], "fifotype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.FIFOTYPE", false]], "file": [[163, "cmdoption-compileall-arg-file", false], [234, "cmdoption-gzip-arg-file", false]], "file (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.file", false]], "file (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.file", false]], "file (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.file", false]], "file control\uff08\u6a94\u6848\u63a7\u5236\uff09": [[215, "index-0", false]], "file name\uff08\u6a94\u6848\u540d\u7a31\uff09": [[360, "index-0", false]], "file object\uff08\u6a94\u6848\u7269\u4ef6\uff09": [[87, "term-file-object", true], [225, "index-5", false], [258, "index-0", false]], "file-like object\uff08\u985e\u6a94\u6848\u7269\u4ef6\uff09": [[87, "term-file-like-object", true]], "file_attribute_archive (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_ARCHIVE", false]], "file_attribute_compressed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_COMPRESSED", false]], "file_attribute_device (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_DEVICE", false]], "file_attribute_directory (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_DIRECTORY", false]], "file_attribute_encrypted (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_ENCRYPTED", false]], "file_attribute_hidden (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_HIDDEN", false]], "file_attribute_integrity_stream (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_INTEGRITY_STREAM", false]], "file_attribute_no_scrub_data (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NO_SCRUB_DATA", false]], "file_attribute_normal (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NORMAL", false]], "file_attribute_not_content_indexed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED", false]], "file_attribute_offline (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_OFFLINE", false]], "file_attribute_readonly (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_READONLY", false]], "file_attribute_reparse_point (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_REPARSE_POINT", false]], "file_attribute_sparse_file (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_SPARSE_FILE", false]], "file_attribute_system (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_SYSTEM", false]], "file_attribute_temporary (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_TEMPORARY", false]], "file_attribute_virtual (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.FILE_ATTRIBUTE_VIRTUAL", false]], "file_digest() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.file_digest", false]], "file_open() (urllib.request.filehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.FileHandler.file_open", false]], "file_size (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.file_size", false]], "filecmp": [[216, "module-filecmp", false]], "fileconfig() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.fileConfig", false]], "filecookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.FileCookieJar", false]], "filedialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.FileDialog", false]], "fileentry (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.FileEntry", false]], "fileexistserror": [[213, "FileExistsError", false]], "filefinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.FileFinder", false]], "filehandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.FileHandler", false]], "filehandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FileHandler", false]], "fileinput": [[218, "module-fileinput", false]], "fileinput (fileinput \u4e2d\u7684\u985e\u5225)": [[218, "fileinput.FileInput", false]], "fileio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.FileIO", false]], "filelineno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.filelineno", false]], "fileloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.FileLoader", false]], "filemode() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.filemode", false]], "filename (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.filename", false]], "filename (http.cookiejar.filecookiejar \u7684\u5c6c\u6027)": [[243, "http.cookiejar.FileCookieJar.filename", false]], "filename (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.filename", false]], "filename (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.filename", false]], "filename (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.filename", false]], "filename (oserror \u7684\u5c6c\u6027)": [[213, "OSError.filename", false]], "filename (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.filename", false]], "filename (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.filename", false]], "filename (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.filename", false]], "filename (tracemalloc.frame \u7684\u5c6c\u6027)": [[382, "tracemalloc.Frame.filename", false]], "filename (zipfile.zipfile \u7684\u5c6c\u6027)": [[422, "zipfile.ZipFile.filename", false]], "filename (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.filename", false]], "filename() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.filename", false]], "filename2 (oserror \u7684\u5c6c\u6027)": [[213, "OSError.filename2", false]], "filename_only (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.filename_only", false]], "filename_pattern (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.filename_pattern", false]], "filenames\uff08\u6a94\u6848\u540d\u7a31\uff09": [[220, "index-0", false], [231, "index-0", false]], "fileno() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.fileno", false]], "fileno() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.fileno", false]], "fileno() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.fileno", false]], "fileno() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.fileno", false]], "fileno() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.fileno", false]], "fileno() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.fileno", false]], "fileno() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.fileno", false]], "fileno() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.fileno", false]], "fileno() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.fileno", false]], "fileno() (selectors.devpollselector \u7684\u65b9\u6cd5)": [[329, "selectors.DevpollSelector.fileno", false]], "fileno() (selectors.epollselector \u7684\u65b9\u6cd5)": [[329, "selectors.EpollSelector.fileno", false]], "fileno() (selectors.kqueueselector \u7684\u65b9\u6cd5)": [[329, "selectors.KqueueSelector.fileno", false]], "fileno() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.fileno", false]], "fileno() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.fileno", false]], "fileno() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.fileno", false]], "fileno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.fileno", false]], "filenotfounderror": [[213, "FileNotFoundError", false]], "fileobj (selectors.selectorkey \u7684\u5c6c\u6027)": [[329, "selectors.SelectorKey.fileobj", false]], "files() (importlib.abc.traversableresources \u7684\u65b9\u6cd5)": [[250, "importlib.abc.TraversableResources.files", false]], "files() (importlib.resources.abc.traversableresources \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.TraversableResources.files", false]], "files() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.files", false]], "files_double_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.files_double_event", false]], "files_select_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.files_select_event", false]], "fileselectbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.FileSelectBox", false]], "filesystem encoding and error handler\uff08\u6a94\u6848\u7cfb\u7d71\u7de8\u78bc\u548c\u932f\u8aa4\u8655\u7406\u51fd\u5f0f\uff09": [[87, "term-filesystem-encoding-and-error-handler", true]], "filetype (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.FileType", false]], "filewrapper (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.FileWrapper", false]], "filewrapper (wsgiref.util \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.util.FileWrapper", false]], "file\uff08\u6a94\u6848\uff09": [[24, "index-0", false], [167, "index-0", false], [225, "index-6", false], [276, "index-2", false], [297, "index-2", false], [304, "index-0", false], [306, "index-1", false], [311, "index-0", false], [332, "index-0", false], [334, "index-4", false], [360, "index-0", false], [446, "index-0", false]], "fill() (textwrap.textwrapper \u7684\u65b9\u6cd5)": [[364, "textwrap.TextWrapper.fill", false]], "fill() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.fill", false]], "fillcolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.fillcolor", false]], "filling() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.filling", false]], "fillvalue (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.fillvalue", false]], "filter (2to3 fixer)": [[112, "to3fixer-filter", false]], "filter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Filter", false]], "filter (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.filter", false]], "filter (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Filter", false]], "filter()": [[225, "filter", false]], "filter() (logging.filter \u7684\u65b9\u6cd5)": [[267, "logging.Filter.filter", false]], "filter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.filter", false]], "filter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.filter", false]], "filter() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.filter", false]], "filter() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.filter", false]], "filter_command() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.filter_command", false]], "filter_dir (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.FILTER_DIR", false]], "filter_traces() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.filter_traces", false]], "filtererror": [[358, "tarfile.FilterError", false]], "filterfalse() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.filterfalse", false]], "filterwarnings() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.filterwarnings", false]], "final (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Final", false]], "final() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.final", false]], "finalization": [[75, "index-0", false]], "finalization, of objects": [[75, "index-0", false]], "finalize (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.finalize", false]], "finalizer\uff08\u7d42\u7d50\u51fd\u5f0f\uff09": [[428, "index-74", false]], "finally": [[427, "index-14", false], [427, "index-9", false], [436, "index-25", false], [436, "index-32", false], [436, "index-33", false]], "find() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.find", false]], "find() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.find", false]], "find() (doctest.doctestfinder \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestFinder.find", false]], "find() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.find", false]], "find() (str \u7684\u65b9\u6cd5)": [[344, "str.find", false]], "find() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.find", false]], "find() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.find", false]], "find() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.find", false]], "find_class() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.find_class", false]], "find_class()\uff08pickle \u5354\u5b9a\uff09": [[299, "index-9", false]], "find_library() (\u65bc ctypes.util \u6a21\u7d44\u4e2d)": [[176, "ctypes.util.find_library", false]], "find_loader() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.find_loader", false]], "find_longest_match() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.find_longest_match", false]], "find_msvcrt() (\u65bc ctypes.util \u6a21\u7d44\u4e2d)": [[176, "ctypes.util.find_msvcrt", false]], "find_spec": [[432, "index-10", false]], "find_spec() (importlib.abc.metapathfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.MetaPathFinder.find_spec", false]], "find_spec() (importlib.abc.pathentryfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.PathEntryFinder.find_spec", false]], "find_spec() (importlib.machinery.filefinder \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.find_spec", false]], "find_spec() (importlib.machinery.pathfinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.PathFinder.find_spec", false]], "find_spec() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.find_spec", false]], "find_spec() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.find_spec", false]], "find_unused_port() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.find_unused_port", false]], "find_user_password() (urllib.request.httppasswordmgr \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgr.find_user_password", false]], "find_user_password() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.find_user_password", false]], "findall() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.findall", false]], "findall() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.findall", false]], "findall() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.findall", false]], "findall() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.findall", false]], "findcaller() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.findCaller", false]], "finder\uff08\u5c0b\u6aa2\u5668\uff09": [[87, "term-finder", true]], "finder\uff08\u641c\u5c0b\u5668\uff09": [[432, "index-10", false], [432, "index-8", false]], "findfactor() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findfactor", false]], "findfile() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.findfile", false]], "findfit() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findfit", false]], "finditer() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.finditer", false]], "finditer() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.finditer", false]], "findlabels() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.findlabels", false]], "findlinestarts() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.findlinestarts", false]], "findmatch() (\u65bc mailcap \u6a21\u7d44\u4e2d)": [[272, "mailcap.findmatch", false]], "findmax() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.findmax", false]], "findtext() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.findtext", false]], "findtext() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.findtext", false]], "finish() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.finish", false]], "finish() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.finish", false]], "finish_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.finish_request", false]], "first_completed (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.FIRST_COMPLETED", false]], "first_completed (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.FIRST_COMPLETED", false]], "first_exception (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.FIRST_EXCEPTION", false]], "first_exception (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.FIRST_EXCEPTION", false]], "firstchild (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.firstChild", false]], "firstkey() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.firstkey", false]], "firstweekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.firstweekday", false]], "fix_missing_locations() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.fix_missing_locations", false]], "fix_sentence_endings (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.fix_sentence_endings", false]], "flag (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.Flag", false]], "flag_bits (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.flag_bits", false]], "flagboundary (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.FlagBoundary", false]], "flags (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.flags", false]], "flags (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.flags", false]], "flags (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.flags", false]], "flash() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.flash", false]], "flatten() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.flatten", false]], "flatten() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.flatten", false]], "flattening\uff08\u6524\u5e73\uff09": [[299, "index-0", false]], "float": [[47, "index-5", false], [344, "index-13", false], [428, "index-104", false]], "float (\u5167\u5efa\u985e\u5225)": [[225, "float", false]], "float_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.float_info", false]], "float_repr_style (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.float_repr_style", false]], "floating point literal\uff08\u6d6e\u9ede\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "floating point\uff08\u6d6e\u9ede\u6578\uff09": [[344, "index-11", false], [344, "index-12", false]], "floating point\uff08\u6d6e\u9ede\uff09": [[25, "index-0", false], [428, "index-13", false]], "floatingpointerror": [[213, "FloatingPointError", false]], "floatoperation (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.FloatOperation", false]], "flock() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.flock", false]], "floor division\uff08\u5411\u4e0b\u53d6\u6574\u9664\u6cd5\uff09": [[87, "term-floor-division", true]], "floor() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.floor", false]], "floor()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "floordiv (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FloorDiv", false]], "floordiv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.floordiv", false]], "flush() (bz2.bz2compressor \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2Compressor.flush", false]], "flush() (io.bufferedwriter \u7684\u65b9\u6cd5)": [[258, "io.BufferedWriter.flush", false]], "flush() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.flush", false]], "flush() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.flush", false]], "flush() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.flush", false]], "flush() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.flush", false]], "flush() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.flush", false]], "flush() (lzma.lzmacompressor \u7684\u65b9\u6cd5)": [[270, "lzma.LZMACompressor.flush", false]], "flush() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.flush", false]], "flush() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.flush", false]], "flush() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.flush", false]], "flush() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.flush", false]], "flush() (xml.etree.elementtree.xmlparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLParser.flush", false]], "flush() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.flush", false]], "flush() (zlib.compress \u7684\u65b9\u6cd5)": [[424, "zlib.Compress.flush", false]], "flush() (zlib.decompress \u7684\u65b9\u6cd5)": [[424, "zlib.Decompress.flush", false]], "flush_headers() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.flush_headers", false]], "flush_std_streams() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.flush_std_streams", false]], "flushinp() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.flushinp", false]], "flushkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.FlushKey", false]], "fma() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.fma", false]], "fma() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.fma", false]], "fmean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.fmean", false]], "fmod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fmod", false]], "fmt_binary (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.FMT_BINARY", false]], "fmt_xml (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.FMT_XML", false]], "fnmatch": [[220, "module-fnmatch", false]], "fnmatch() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.fnmatch", false]], "fnmatchcase() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.fnmatchcase", false]], "focus() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.focus", false]], "fold (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.fold", false]], "fold (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.fold", false]], "fold() (email.headerregistry.baseheader \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.BaseHeader.fold", false]], "fold() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.fold", false]], "fold() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.fold", false]], "fold() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.fold", false]], "fold_binary() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.fold_binary", false]], "fold_binary() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.fold_binary", false]], "fold_binary() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.fold_binary", false]], "font (tkinter.font \u4e2d\u7684\u985e\u5225)": [[372, "tkinter.font.Font", false]], "for": [[427, "index-6", true], [430, "index-12", false], [436, "index-30", false], [436, "index-33", false], [441, "index-0", false]], "for (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.For", false]], "for help in debugging using string literals\uff08\u4f7f\u7528\u5b57\u4e32\u5e38\u6578\u9032\u884c\u9664\u932f\uff09": [[435, "index-25", false]], "for_iter (opcode)": [[191, "opcode-FOR_ITER", false]], "forget() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.forget", false]], "forget() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.forget", false]], "fork() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fork", false]], "fork() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.fork", false]], "forkingmixin (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingMixIn", false]], "forkingtcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingTCPServer", false]], "forkingudpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUDPServer", false]], "forkingunixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUnixDatagramServer", false]], "forkingunixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ForkingUnixStreamServer", false]], "forkpty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.forkpty", false]], "form": [[430, "index-90", false]], "form (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Form", false]], "format (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FORMAT", false]], "format (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.format", false]], "format (multiprocessing.shared_memory.shareablelist \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.ShareableList.format", false]], "format (struct.struct \u7684\u5c6c\u6027)": [[347, "struct.Struct.format", false]], "format()": [[225, "format", false]], "format() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.format", false]], "format() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.format", false]], "format() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.format", false]], "format() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.format", false]], "format() (str \u7684\u65b9\u6cd5)": [[344, "str.format", false]], "format() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.format", false]], "format() (traceback.stacksummary \u7684\u65b9\u6cd5)": [[381, "traceback.StackSummary.format", false]], "format() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.format", false]], "format() (tracemalloc.traceback \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Traceback.format", false]], "format() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-76", false]], "format()\uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[225, "index-4", false]], "format_datetime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.format_datetime", false]], "format_exc() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exc", false]], "format_exception() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exception", false]], "format_exception_only() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.format_exception_only", false]], "format_exception_only() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_exception_only", false]], "format_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.format_field", false]], "format_frame_summary() (traceback.stacksummary \u7684\u65b9\u6cd5)": [[381, "traceback.StackSummary.format_frame_summary", false]], "format_help() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.format_help", false]], "format_list() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_list", false]], "format_map() (str \u7684\u65b9\u6cd5)": [[344, "str.format_map", false]], "format_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_stack", false]], "format_stack_entry() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.format_stack_entry", false]], "format_string() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.format_string", false]], "format_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.format_tb", false]], "format_usage() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.format_usage", false]], "format_value (opcode)": [[191, "opcode-FORMAT_VALUE", false]], "formataddr() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.formataddr", false]], "formatargvalues() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.formatargvalues", false]], "formatdate() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.formatdate", false]], "formaterror": [[271, "mailbox.FormatError", false]], "formaterror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.FormatError", false]], "formatexception() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatException", false]], "formatfooter() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.formatFooter", false]], "formatheader() (logging.bufferingformatter \u7684\u65b9\u6cd5)": [[267, "logging.BufferingFormatter.formatHeader", false]], "formatmonth() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatmonth", false]], "formatmonth() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.formatmonth", false]], "formatmonthname() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatmonthname", false]], "formatstack() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatStack", false]], "formatted literal\uff08\u683c\u5f0f\u5316\u5e38\u6578\uff09": [[435, "index-25", false]], "formatted string literal\uff08\u683c\u5f0f\u5316\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-22", false], [435, "index-25", false]], "formattedvalue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FormattedValue", false]], "formatter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Formatter", false]], "formatter (string \u4e2d\u7684\u985e\u5225)": [[345, "string.Formatter", false]], "formattime() (logging.formatter \u7684\u65b9\u6cd5)": [[267, "logging.Formatter.formatTime", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09": [[344, "index-45", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09\u3001printf": [[344, "index-35", false]], "formatting\uff08\u683c\u5f0f\u5316\uff09\u3001\u5b57\u4e32 (%)": [[344, "index-35", false]], "formatwarning() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.formatwarning", false]], "formatyear() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatyear", false]], "formatyear() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.formatyear", false]], "formatyearpage() (calendar.htmlcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.HTMLCalendar.formatyearpage", false]], "fortran contiguous\uff08fortran \u9023\u7e8c\u7684\uff09": [[7, "index-2", false], [87, "index-10", false]], "forward() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.forward", false]], "forwardref (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ForwardRef", false]], "fp (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.fp", false]], "fpathconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fpathconf", false]], "fraction (fractions \u4e2d\u7684\u985e\u5225)": [[221, "fractions.Fraction", false]], "fractions": [[221, "module-fractions", false]], "frame": [[427, "index-42", false], [428, "index-63", false], [429, "index-2", false]], "frame (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.frame", false]], "frame (tkinter.scrolledtext.scrolledtext \u7684\u5c6c\u6027)": [[374, "tkinter.scrolledtext.ScrolledText.frame", false]], "frame (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Frame", false]], "frameinfo (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.FrameInfo", false]], "framesummary (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.FrameSummary", false]], "frametype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.FrameType", false]], "free": [[429, "index-6", false]], "free_tool_id() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.free_tool_id", false]], "freedesktop_os_release() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.freedesktop_os_release", false]], "freefunc (c type)": [[63, "c.freefunc", false]], "freeze utility\uff08\u51cd\u7d50\u5de5\u5177\uff09": [[31, "index-4", false]], "freeze() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.freeze", false]], "freeze_support() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.freeze_support", false]], "free\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "frexp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.frexp", false]], "friday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.FRIDAY", false]], "from": [[429, "index-5", false], [430, "index-23", false], [430, "index-25", false], [436, "index-34", false], [436, "index-36", false]], "from_address() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_address", false]], "from_buffer() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_buffer", false]], "from_buffer_copy() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_buffer_copy", false]], "from_bytes() (int \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "int.from_bytes", false]], "from_callable() (inspect.signature \u7684\u985e\u5225\u65b9\u6cd5)": [[255, "inspect.Signature.from_callable", false]], "from_decimal() (fractions.fraction \u7684\u985e\u5225\u65b9\u6cd5)": [[221, "fractions.Fraction.from_decimal", false]], "from_exception() (traceback.tracebackexception \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.TracebackException.from_exception", false]], "from_file() (zipfile.zipinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[422, "zipfile.ZipInfo.from_file", false]], "from_file() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.from_file", false]], "from_float() (decimal.decimal \u7684\u985e\u5225\u65b9\u6cd5)": [[186, "decimal.Decimal.from_float", false]], "from_float() (fractions.fraction \u7684\u985e\u5225\u65b9\u6cd5)": [[221, "fractions.Fraction.from_float", false]], "from_iterable() (itertools.chain \u7684\u985e\u5225\u65b9\u6cd5)": [[261, "itertools.chain.from_iterable", false]], "from_list() (traceback.stacksummary \u7684\u985e\u5225\u65b9\u6cd5)": [[381, "traceback.StackSummary.from_list", false]], "from_param() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.from_param", false]], "from_samples() (statistics.normaldist \u7684\u985e\u5225\u65b9\u6cd5)": [[343, "statistics.NormalDist.from_samples", false]], "from_traceback() (dis.bytecode \u7684\u985e\u5225\u65b9\u6cd5)": [[191, "dis.Bytecode.from_traceback", false]], "frombuf() (tarfile.tarinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarInfo.frombuf", false]], "frombytes() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.frombytes", false]], "fromfd() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.fromfd", false]], "fromfd() (select.kqueue \u7684\u65b9\u6cd5)": [[328, "select.kqueue.fromfd", false]], "fromfd() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.fromfd", false]], "fromfile() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromfile", false]], "fromhex() (bytearray \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "bytearray.fromhex", false]], "fromhex() (bytes \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "bytes.fromhex", false]], "fromhex() (float \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "float.fromhex", false]], "fromisocalendar() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromisocalendar", false]], "fromisocalendar() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromisocalendar", false]], "fromisoformat() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromisoformat", false]], "fromisoformat() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromisoformat", false]], "fromisoformat() (datetime.time \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.time.fromisoformat", false]], "fromkeys() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.fromkeys", false]], "fromkeys() (dict \u7684\u985e\u5225\u65b9\u6cd5)": [[344, "dict.fromkeys", false]], "fromlist() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromlist", false]], "fromordinal() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromordinal", false]], "fromordinal() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromordinal", false]], "fromshare() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.fromshare", false]], "fromstring() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.fromstring", false]], "fromstringlist() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.fromstringlist", false]], "fromtarfile() (tarfile.tarinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarInfo.fromtarfile", false]], "fromtimestamp() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.fromtimestamp", false]], "fromtimestamp() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.fromtimestamp", false]], "fromunicode() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.fromunicode", false]], "fromutc() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.fromutc", false]], "fromutc() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.fromutc", false]], "frozenimporter (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.FrozenImporter", false]], "frozeninstanceerror": [[181, "dataclasses.FrozenInstanceError", false]], "frozenset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.FrozenSet", false]], "frozenset (\u5167\u5efa\u985e\u5225)": [[344, "frozenset", false]], "frozenset\uff08\u51cd\u7d50\u96c6\u5408\uff09": [[55, "index-0", false], [428, "index-29", false]], "fs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.FS", false]], "fs_is_case_insensitive() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.fs_is_case_insensitive", false]], "fs_nonascii (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.FS_NONASCII", false]], "fsdecode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsdecode", false]], "fsencode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsencode", false]], "fspath() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fspath", false]], "fstat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fstat", false]], "fstatvfs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fstatvfs", false]], "fstring_end (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_END", false]], "fstring_middle (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_MIDDLE", false]], "fstring_start (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.FSTRING_START", false]], "fstring\uff08f \u5b57\u4e32\uff09": [[435, "index-25", false]], "fsum() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.fsum", false]], "fsync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fsync", false]], "ftp": [[223, "index-0", false], [395, "index-11", false], [395, "index-9", false]], "ftp (ftplib \u4e2d\u7684\u985e\u5225)": [[223, "ftplib.FTP", false]], "ftp_open() (urllib.request.ftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.FTPHandler.ftp_open", false]], "ftp_tls (ftplib \u4e2d\u7684\u985e\u5225)": [[223, "ftplib.FTP_TLS", false]], "ftphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.FTPHandler", false]], "ftplib": [[223, "module-ftplib", false]], "ftplib\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[223, "index-0", false]], "ftruncate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ftruncate", false]], "full": [[316, "queue.Full", false]], "full (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FULL", false]], "full() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.full", false]], "full() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.full", false]], "full() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.full", false]], "full_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.FULL_RO", false]], "full_url (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.full_url", false]], "fullmatch() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.fullmatch", false]], "fullmatch() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.fullmatch", false]], "fully_trusted_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.fully_trusted_filter", false]], "func (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.func", false]], "funcattrs (2to3 fixer)": [[112, "to3fixer-funcattrs", false]], "funcname (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.funcname", false]], "function (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.function", false]], "function (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.function", false]], "function (pyclbr \u4e2d\u7684\u985e\u5225)": [[312, "pyclbr.Function", false]], "function (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Function", false]], "function annotations\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": [[427, "index-34", false], [441, "index-6", false]], "function annotation\uff08\u51fd\u5f0f\u8a3b\u91cb\uff09": [[87, "term-function-annotation", true]], "function definition\uff08\u51fd\u5f0f\u5b9a\u7fa9\uff09": [[427, "index-27", false], [427, "index-28", false], [427, "index-29", false], [427, "index-31", false], [427, "index-32", false]], "function \uff08\u51fd\u5f0f\uff09": [[427, "index-28", false], [427, "index-34", false], [428, "index-33", false], [428, "index-34", false], [428, "index-39", false], [428, "index-40", false], [428, "index-41", false], [428, "index-42", false], [430, "index-23", false], [430, "index-52", false], [430, "index-53", false], [430, "index-90", false], [436, "index-24", false], [436, "index-26", false]], "functiondef (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FunctionDef", false]], "functiontestcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.FunctionTestCase", false]], "functiontype (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.FunctionType", false]], "functiontype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.FunctionType", false]], "function\uff08\u51fd\u5f0f\uff09": [[27, "index-0", false], [87, "term-function", true], [441, "index-6", false]], "functools": [[226, "module-functools", false]], "funny_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.funny_files", false]], "future": [[436, "index-40", false]], "future (2to3 fixer)": [[112, "to3fixer-future", false]], "future (asyncio \u4e2d\u7684\u985e\u5225)": [[129, "asyncio.Future", false]], "future (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.Future", false]], "future statement\uff08future \u9673\u8ff0\u5f0f\uff09": [[436, "index-40", false]], "futurewarning": [[213, "FutureWarning", false]], "fwalk() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.fwalk", false]], "g.722": [[117, "index-2", false]], "gaierror": [[337, "socket.gaierror", false]], "gamma() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.gamma", false]], "gammavariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.gammavariate", false]], "garbage (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.garbage", false]], "garbage collection\uff08\u5783\u573e\u56de\u6536\uff09": [[87, "term-garbage-collection", true], [428, "index-2", false]], "gather() (curses.textpad.textbox \u7684\u65b9\u6cd5)": [[177, "curses.textpad.Textbox.gather", false]], "gather() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.gather", false]], "gauss() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.gauss", false]], "gc": [[227, "module-gc", false]], "gc_collect() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.gc_collect", false]], "gcd() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.gcd", false]], "gcvisitobjects_t (c type)": [[28, "c.gcvisitobjects_t", false]], "ge() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ge", false]], "gen_uuid() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.gen_uuid", false]], "generate_tokens() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.generate_tokens", false]], "generation\uff08\u7522\u751f\uff09": [[313, "index-0", false]], "generator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Generator", false]], "generator (email.generator \u4e2d\u7684\u985e\u5225)": [[201, "email.generator.Generator", false]], "generator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Generator", false]], "generator expression\uff08\u7522\u751f\u5668\u904b\u7b97\u5f0f\uff09": [[87, "index-17", false], [87, "term-generator-expression", true], [430, "index-22", false]], "generator iterator\uff08\u7522\u751f\u5668\u758a\u4ee3\u5668\uff09": [[87, "term-generator-iterator", true]], "generatorexit": [[213, "GeneratorExit", false], [430, "index-33", false], [430, "index-37", false]], "generatorexp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.GeneratorExp", false]], "generatortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.GeneratorType", false]], "generator\uff08\u7522\u751f\u5668\uff09": [[87, "index-16", false], [87, "term-generator", true], [428, "index-39", false], [428, "index-59", false], [430, "index-22", false], [430, "index-23", false], [430, "index-31", false], [436, "index-26", false]], "generic (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Generic", false]], "generic function\uff08\u6cdb\u578b\u51fd\u5f0f\uff09": [[87, "term-generic-function", true]], "generic type\uff08\u6cdb\u578b\u578b\u5225\uff09": [[87, "term-generic-type", true]], "generic_visit() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.generic_visit", false]], "genericalias (types \u4e2d\u7684\u985e\u5225)": [[385, "types.GenericAlias", false]], "genericalias\uff08\u6cdb\u578b\u5225\u540d\uff09": [[344, "index-56", false]], "generic\uff08\u6cdb\u578b\uff09": [[344, "index-56", false], [428, "index-5", false]], "genops() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.genops", false]], "geometric_mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.geometric_mean", false]], "get() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.get", false]], "get() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.get", false]], "get() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.get", false]], "get() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.get", false]], "get() (dict \u7684\u65b9\u6cd5)": [[344, "dict.get", false]], "get() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get", false]], "get() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get", false]], "get() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get", false]], "get() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.get", false]], "get() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.get", false]], "get() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.get", false]], "get() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.get", false]], "get() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.get", false]], "get() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.get", false]], "get() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.get", false]], "get() (tkinter.ttk.spinbox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Spinbox.get", false]], "get() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.get", false]], "get() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.get", false]], "get() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.get", false]], "get_aiter (opcode)": [[191, "opcode-GET_AITER", false]], "get_all() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_all", false]], "get_all() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_all", false]], "get_all() (wsgiref.headers.headers \u7684\u65b9\u6cd5)": [[407, "wsgiref.headers.Headers.get_all", false]], "get_all_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_all_breaks", false]], "get_all_start_methods() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_all_start_methods", false]], "get_anext (opcode)": [[191, "opcode-GET_ANEXT", false]], "get_annotations() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.get_annotations", false]], "get_app() (wsgiref.simple_server.wsgiserver \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIServer.get_app", false]], "get_archive_formats() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_archive_formats", false]], "get_args() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_args", false]], "get_asyncgen_hooks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_asyncgen_hooks", false]], "get_attribute() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_attribute", false]], "get_awaitable (opcode)": [[191, "opcode-GET_AWAITABLE", false]], "get_begidx() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_begidx", false]], "get_blocking() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_blocking", false]], "get_body() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_body", false]], "get_body_encoding() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.get_body_encoding", false]], "get_boundary() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_boundary", false]], "get_boundary() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_boundary", false]], "get_bpbynumber() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_bpbynumber", false]], "get_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_break", false]], "get_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_breaks", false]], "get_buffer() (asyncio.bufferedprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BufferedProtocol.get_buffer", false]], "get_buffer() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.get_buffer", false]], "get_buffer() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.get_buffer", false]], "get_bytes() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_bytes", false]], "get_ca_certs() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.get_ca_certs", false]], "get_cache_token() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.get_cache_token", false]], "get_channel_binding() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.get_channel_binding", false]], "get_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_charset", false]], "get_charsets() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_charsets", false]], "get_charsets() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_charsets", false]], "get_child_watcher() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.get_child_watcher", false]], "get_child_watcher() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.get_child_watcher", false]], "get_children() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_children", false]], "get_children() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.get_children", false]], "get_ciphers() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.get_ciphers", false]], "get_clock_info() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.get_clock_info", false]], "get_close_matches() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.get_close_matches", false]], "get_code() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.get_code", false]], "get_code() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.get_code", false]], "get_code() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_code", false]], "get_code() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.get_code", false]], "get_code() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_code", false]], "get_completer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completer", false]], "get_completer_delims() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completer_delims", false]], "get_completion_type() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_completion_type", false]], "get_config_h_filename() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_h_filename", false]], "get_config_var() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_var", false]], "get_config_vars() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_config_vars", false]], "get_content() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.get_content", false]], "get_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content", false]], "get_content() (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.get_content", false]], "get_content_charset() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_charset", false]], "get_content_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_charset", false]], "get_content_disposition() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_disposition", false]], "get_content_disposition() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_disposition", false]], "get_content_maintype() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_maintype", false]], "get_content_maintype() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_maintype", false]], "get_content_subtype() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_subtype", false]], "get_content_subtype() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_subtype", false]], "get_content_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_content_type", false]], "get_content_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_content_type", false]], "get_context() (asyncio.handle \u7684\u65b9\u6cd5)": [[126, "asyncio.Handle.get_context", false]], "get_context() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_context", false]], "get_context() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_context", false]], "get_coro() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_coro", false]], "get_coroutine_origin_tracking_depth() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_coroutine_origin_tracking_depth", false]], "get_count() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_count", false]], "get_current_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_current_history_length", false]], "get_data() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.get_data", false]], "get_data() (importlib.abc.resourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceLoader.get_data", false]], "get_data() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_data", false]], "get_data() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_data", false]], "get_date() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_date", false]], "get_debug() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_debug", false]], "get_debug() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_debug", false]], "get_default() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.get_default", false]], "get_default_domain() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.get_default_domain", false]], "get_default_scheme() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_default_scheme", false]], "get_default_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_default_type", false]], "get_default_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_default_type", false]], "get_default_verify_paths() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.get_default_verify_paths", false]], "get_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.get_dialect", false]], "get_disassembly_as_string() (test.support.bytecode_helper.bytecodetestcase \u7684\u65b9\u6cd5)": [[362, "test.support.bytecode_helper.BytecodeTestCase.get_disassembly_as_string", false]], "get_docstring() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.get_docstring", false]], "get_doctest() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.get_doctest", false]], "get_endidx() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_endidx", false]], "get_environ() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.get_environ", false]], "get_errno() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.get_errno", false]], "get_escdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.get_escdelay", false]], "get_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.get_event_loop", false]], "get_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.get_event_loop", false]], "get_event_loop_policy() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.get_event_loop_policy", false]], "get_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_events", false]], "get_examples() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.get_examples", false]], "get_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_exception_handler", false]], "get_exec_path() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_exec_path", false]], "get_extra_info() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.get_extra_info", false]], "get_extra_info() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.get_extra_info", false]], "get_field() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.get_field", false]], "get_file() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.get_file", false]], "get_file() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_file", false]], "get_file() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.get_file", false]], "get_file() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.get_file", false]], "get_file() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_file", false]], "get_file() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.get_file", false]], "get_file_breaks() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_file_breaks", false]], "get_filename() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_filename", false]], "get_filename() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_filename", false]], "get_filename() (importlib.abc.executionloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ExecutionLoader.get_filename", false]], "get_filename() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.get_filename", false]], "get_filename() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_filename", false]], "get_filename() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_filename", false]], "get_filter() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.get_filter", false]], "get_flags() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_flags", false]], "get_flags() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.get_flags", false]], "get_flags() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.get_flags", false]], "get_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.get_folder", false]], "get_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_folder", false]], "get_frees() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_frees", false]], "get_freeze_count() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_freeze_count", false]], "get_from() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.get_from", false]], "get_from() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.get_from", false]], "get_full_url() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_full_url", false]], "get_globals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_globals", false]], "get_grouped_opcodes() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_grouped_opcodes", false]], "get_handle_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_handle_inheritable", false]], "get_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_header", false]], "get_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_history_item", false]], "get_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_history_length", false]], "get_id() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_id", false]], "get_ident() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.get_ident", false]], "get_ident() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.get_ident", false]], "get_identifiers() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.get_identifiers", false]], "get_identifiers() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_identifiers", false]], "get_importer() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_importer", false]], "get_info() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_info", false]], "get_inheritable() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.get_inheritable", false]], "get_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_inheritable", false]], "get_instructions() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.get_instructions", false]], "get_int_max_str_digits() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.get_int_max_str_digits", false]], "get_interpreter() (\u65bc zipapp \u6a21\u7d44\u4e2d)": [[421, "zipapp.get_interpreter", false]], "get_iter (opcode)": [[191, "opcode-GET_ITER", false]], "get_key() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.get_key", false]], "get_labels() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.get_labels", false]], "get_labels() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.get_labels", false]], "get_last_error() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.get_last_error", false]], "get_len (opcode)": [[191, "opcode-GET_LEN", false]], "get_line_buffer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.get_line_buffer", false]], "get_lineno() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_lineno", false]], "get_loader() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.get_loader", false]], "get_local_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_local_events", false]], "get_locals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_locals", false]], "get_logger() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_logger", false]], "get_loop() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.get_loop", false]], "get_loop() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.get_loop", false]], "get_loop() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.get_loop", false]], "get_makefile_filename() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_makefile_filename", false]], "get_map() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.get_map", false]], "get_matching_blocks() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_matching_blocks", false]], "get_message() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_message", false]], "get_method() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.get_method", false]], "get_methods() (symtable.class \u7684\u65b9\u6cd5)": [[351, "symtable.Class.get_methods", false]], "get_mixed_type_key() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.get_mixed_type_key", false]], "get_name() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_name", false]], "get_name() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_name", false]], "get_name() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_name", false]], "get_namespace() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_namespace", false]], "get_namespaces() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.get_namespaces", false]], "get_native_id() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.get_native_id", false]], "get_native_id() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.get_native_id", false]], "get_nonlocals() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_nonlocals", false]], "get_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.get_nonstandard_attr", false]], "get_nowait() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.get_nowait", false]], "get_nowait() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.get_nowait", false]], "get_nowait() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.get_nowait", false]], "get_nowait() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.get_nowait", false]], "get_object_traceback() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_object_traceback", false]], "get_objects() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_objects", false]], "get_opcodes() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.get_opcodes", false]], "get_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_option", false]], "get_option_group() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_option_group", false]], "get_origin() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_origin", false]], "get_original_bases() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.get_original_bases", false]], "get_original_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_original_stdout", false]], "get_osfhandle() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.get_osfhandle", false]], "get_output_charset() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.get_output_charset", false]], "get_overloads() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_overloads", false]], "get_pagesize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.get_pagesize", false]], "get_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_param", false]], "get_parameters() (symtable.function \u7684\u65b9\u6cd5)": [[351, "symtable.Function.get_parameters", false]], "get_params() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_params", false]], "get_path() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_path", false]], "get_path_names() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_path_names", false]], "get_paths() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_paths", false]], "get_payload() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_payload", false]], "get_pid() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_pid", false]], "get_pipe_transport() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_pipe_transport", false]], "get_platform() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_platform", false]], "get_poly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.get_poly", false]], "get_position() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.get_position", false]], "get_preferred_scheme() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_preferred_scheme", false]], "get_protocol() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.get_protocol", false]], "get_proxy_response_headers() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.get_proxy_response_headers", false]], "get_python_version() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_python_version", false]], "get_ready() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.get_ready", false]], "get_recsrc() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.get_recsrc", false]], "get_referents() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_referents", false]], "get_referrers() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_referrers", false]], "get_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.get_request", false]], "get_returncode() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.get_returncode", false]], "get_running_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.get_running_loop", false]], "get_scheme() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_scheme", false]], "get_scheme_names() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.get_scheme_names", false]], "get_selection() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.get_selection", false]], "get_sequences() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.get_sequences", false]], "get_sequences() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.get_sequences", false]], "get_server() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.get_server", false]], "get_server_certificate() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.get_server_certificate", false]], "get_shapepoly() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.get_shapepoly", false]], "get_socket() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.get_socket", false]], "get_source() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.get_source", false]], "get_source() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.get_source", false]], "get_source() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.get_source", false]], "get_source() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.get_source", false]], "get_source() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.get_source", false]], "get_source_segment() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.get_source_segment", false]], "get_stack() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.get_stack", false]], "get_stack() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.get_stack", false]], "get_start_method() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.get_start_method", false]], "get_starttag_text() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.get_starttag_text", false]], "get_stats() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_stats", false]], "get_stats_profile() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.get_stats_profile", false]], "get_stderr() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_stderr", false]], "get_stderr() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.get_stderr", false]], "get_stdin() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.get_stdin", false]], "get_string() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.get_string", false]], "get_subdir() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.get_subdir", false]], "get_symbols() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_symbols", false]], "get_tabsize() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.get_tabsize", false]], "get_task_factory() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.get_task_factory", false]], "get_terminal_size() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.get_terminal_size", false]], "get_terminal_size() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_terminal_size", false]], "get_threshold() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.get_threshold", false]], "get_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.get_token", false]], "get_tool() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.get_tool", false]], "get_traceback_limit() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_traceback_limit", false]], "get_traced_memory() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_traced_memory", false]], "get_tracemalloc_memory() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.get_tracemalloc_memory", false]], "get_type() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.get_type", false]], "get_type_hints() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.get_type_hints", false]], "get_unixfrom() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.get_unixfrom", false]], "get_unixfrom() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.get_unixfrom", false]], "get_unpack_formats() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.get_unpack_formats", false]], "get_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_usage", false]], "get_value() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.get_value", false]], "get_version() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.get_version", false]], "get_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.get_visible", false]], "get_wch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.get_wch", false]], "get_write_buffer_limits() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.get_write_buffer_limits", false]], "get_write_buffer_size() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.get_write_buffer_size", false]], "get_yield_from_iter (opcode)": [[191, "opcode-GET_YIELD_FROM_ITER", false]], "getacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getacl", false]], "getaddresses() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.getaddresses", false]], "getaddrinfo() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.getaddrinfo", false]], "getaddrinfo() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getaddrinfo", false]], "getallocatedblocks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getallocatedblocks", false]], "getandroidapilevel() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getandroidapilevel", false]], "getannotation() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getannotation", false]], "getargvalues() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getargvalues", false]], "getasyncgenlocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getasyncgenlocals", false]], "getasyncgenstate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getasyncgenstate", false]], "getatime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getatime", false]], "getattr()": [[225, "getattr", false]], "getattr_static() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getattr_static", false]], "getattrfunc (c type)": [[63, "c.getattrfunc", false]], "getattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttribute", false]], "getattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNode", false]], "getattributenodens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNodeNS", false]], "getattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getAttributeNS", false]], "getattrofunc (c type)": [[63, "c.getattrofunc", false]], "getbase() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetBase", false]], "getbegyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getbegyx", false]], "getbkgd() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getbkgd", false]], "getblocking() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getblocking", false]], "getboolean() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getboolean", false]], "getbuffer() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.getbuffer", false]], "getbufferproc (c type)": [[63, "c.getbufferproc", false]], "getbytestream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getByteStream", false]], "getcallargs() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcallargs", false]], "getcanvas() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getcanvas", false]], "getcapabilities() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.getcapabilities", false]], "getcaps() (\u65bc mailcap \u6a21\u7d44\u4e2d)": [[272, "mailcap.getcaps", false]], "getch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getch", false]], "getch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getch", false]], "getcharacterstream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getCharacterStream", false]], "getche() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getche", false]], "getchild() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getChild", false]], "getchildren() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getChildren", false]], "getclasstree() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getclasstree", false]], "getclosurevars() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getclosurevars", false]], "getcode() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getcode", false]], "getcode() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.getcode", false]], "getcolumninfo() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.GetColumnInfo", false]], "getcolumnnumber() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getColumnNumber", false]], "getcomments() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcomments", false]], "getcompname() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getcompname", false]], "getcompname() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getcompname", false]], "getcompname() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getcompname", false]], "getcomptype() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getcomptype", false]], "getcomptype() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getcomptype", false]], "getcomptype() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getcomptype", false]], "getconfig() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.getconfig", false]], "getcontenthandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getContentHandler", false]], "getcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.getcontext", false]], "getcoroutinelocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcoroutinelocals", false]], "getcoroutinestate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getcoroutinestate", false]], "getctime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getctime", false]], "getcwd() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getcwd", false]], "getcwdb() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getcwdb", false]], "getcwdu (2to3 fixer)": [[112, "to3fixer-getcwdu", false]], "getdecoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getdecoder", false]], "getdefaultencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getdefaultencoding", false]], "getdefaultlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getdefaultlocale", false]], "getdefaulttimeout() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getdefaulttimeout", false]], "getdlopenflags() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getdlopenflags", false]], "getdoc() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getdoc", false]], "getdomimplementation() (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.getDOMImplementation", false]], "getdtdhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getDTDHandler", false]], "geteffectivelevel() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.getEffectiveLevel", false]], "getegid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getegid", false]], "getelementsbytagname() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.getElementsByTagName", false]], "getelementsbytagname() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getElementsByTagName", false]], "getelementsbytagnamens() (xml.dom.document \u7684\u65b9\u6cd5)": [[410, "xml.dom.Document.getElementsByTagNameNS", false]], "getelementsbytagnamens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.getElementsByTagNameNS", false]], "getencoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getencoder", false]], "getencoding() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getEncoding", false]], "getencoding() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getencoding", false]], "getentityresolver() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getEntityResolver", false]], "getenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getenv", false]], "getenvb() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getenvb", false]], "geterrorhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getErrorHandler", false]], "geteuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.geteuid", false]], "getevent() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.getEvent", false]], "geteventcategory() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getEventCategory", false]], "geteventtype() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getEventType", false]], "getexception() (xml.sax.saxexception \u7684\u65b9\u6cd5)": [[414, "xml.sax.SAXException.getException", false]], "getfeature() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getFeature", false]], "getfieldcount() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetFieldCount", false]], "getfile() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getfile", false]], "getfilestodelete() (logging.handlers.timedrotatingfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.TimedRotatingFileHandler.getFilesToDelete", false]], "getfilesystemencodeerrors() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getfilesystemencodeerrors", false]], "getfilesystemencoding() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getfilesystemencoding", false]], "getfirst() (cgi.fieldstorage \u7684\u65b9\u6cd5)": [[151, "cgi.FieldStorage.getfirst", false]], "getfloat() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getfloat", false]], "getfmts() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.getfmts", false]], "getfqdn() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getfqdn", false]], "getframeinfo() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getframeinfo", false]], "getframerate() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getframerate", false]], "getframerate() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getframerate", false]], "getframerate() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getframerate", false]], "getfullargspec() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getfullargspec", false]], "getgeneratorlocals() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getgeneratorlocals", false]], "getgeneratorstate() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getgeneratorstate", false]], "getgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgid", false]], "getgrall() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrall", false]], "getgrgid() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrgid", false]], "getgrnam() (\u65bc grp \u6a21\u7d44\u4e2d)": [[233, "grp.getgrnam", false]], "getgrouplist() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgrouplist", false]], "getgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getgroups", false]], "gethandlerbyname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getHandlerByName", false]], "gethandlernames() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getHandlerNames", false]], "getheader() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getheader", false]], "getheaders() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.getheaders", false]], "gethostbyaddr() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyaddr", false]], "gethostbyaddr()\uff08\u65bc socket \u6a21\u7d44\uff09": [[293, "index-20", false]], "gethostbyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyname", false]], "gethostbyname_ex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostbyname_ex", false]], "gethostname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.gethostname", false]], "gethostname()\uff08\u65bc socket \u6a21\u7d44\uff09": [[293, "index-20", false]], "getincrementaldecoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getincrementaldecoder", false]], "getincrementalencoder() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getincrementalencoder", false]], "getinfo() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.getinfo", false]], "getinnerframes() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getinnerframes", false]], "getinputcontext() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetInputContext", false]], "getint() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.getint", false]], "getinteger() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetInteger", false]], "getitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.getitem", false]], "getiterfunc (c type)": [[63, "c.getiterfunc", false]], "getitimer() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.getitimer", false]], "getkey() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getkey", false]], "getlasterror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.GetLastError", false]], "getlength() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getLength", false]], "getlevelname() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLevelName", false]], "getlevelnamesmapping() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLevelNamesMapping", false]], "getlimit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.getlimit", false]], "getline() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.getline", false]], "getlinenumber() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getLineNumber", false]], "getlist() (cgi.fieldstorage \u7684\u65b9\u6cd5)": [[151, "cgi.FieldStorage.getlist", false]], "getloadavg() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getloadavg", false]], "getlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getlocale", false]], "getlogger() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLogger", false]], "getloggerclass() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLoggerClass", false]], "getlogin() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getlogin", false]], "getlogrecordfactory() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.getLogRecordFactory", false]], "getmandatoryrelease() (__future__._feature \u7684\u65b9\u6cd5)": [[113, "future__._Feature.getMandatoryRelease", false]], "getmark() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getmark", false]], "getmark() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getmark", false]], "getmark() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getmark", false]], "getmarkers() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getmarkers", false]], "getmarkers() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getmarkers", false]], "getmarkers() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getmarkers", false]], "getmaxyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getmaxyx", false]], "getmember() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getmember", false]], "getmembers() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getmembers", false]], "getmembers() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmembers", false]], "getmembers_static() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmembers_static", false]], "getmessage() (logging.logrecord \u7684\u65b9\u6cd5)": [[267, "logging.LogRecord.getMessage", false]], "getmessage() (xml.sax.saxexception \u7684\u65b9\u6cd5)": [[414, "xml.sax.SAXException.getMessage", false]], "getmessageid() (logging.handlers.nteventloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.NTEventLogHandler.getMessageID", false]], "getmodule() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmodule", false]], "getmodulename() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmodulename", false]], "getmouse() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getmouse", false]], "getmro() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getmro", false]], "getmtime() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getmtime", false]], "getname() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.getname", false]], "getname() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.getName", false]], "getnamebyqname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getNameByQName", false]], "getnameinfo() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.getnameinfo", false]], "getnameinfo() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getnameinfo", false]], "getnames() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.getnames", false]], "getnames() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getNames", false]], "getnchannels() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getnchannels", false]], "getnchannels() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getnchannels", false]], "getnchannels() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getnchannels", false]], "getnframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getnframes", false]], "getnframes() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getnframes", false]], "getnframes() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getnframes", false]], "getnode": [[398, "index-5", false]], "getnode() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.getnode", false]], "getopt": [[228, "module-getopt", false]], "getopt() (\u65bc getopt \u6a21\u7d44\u4e2d)": [[228, "getopt.getopt", false]], "getopterror": [[228, "getopt.GetoptError", false]], "getoptionalrelease() (__future__._feature \u7684\u65b9\u6cd5)": [[113, "future__._Feature.getOptionalRelease", false]], "getouterframes() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getouterframes", false]], "getoutput() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.getoutput", false]], "getpagesize() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getpagesize", false]], "getparams() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getparams", false]], "getparams() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getparams", false]], "getparams() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getparams", false]], "getparyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getparyx", false]], "getpass": [[229, "module-getpass", false]], "getpass() (\u65bc getpass \u6a21\u7d44\u4e2d)": [[229, "getpass.getpass", false]], "getpasswarning": [[229, "getpass.GetPassWarning", false]], "getpeercert() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.getpeercert", false]], "getpeername() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getpeername", false]], "getpen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getpen", false]], "getpgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpgid", false]], "getpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpgrp", false]], "getpid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpid", false]], "getpos() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.getpos", false]], "getppid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getppid", false]], "getpreferredencoding() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.getpreferredencoding", false]], "getpriority() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getpriority", false]], "getprofile() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getprofile", false]], "getprofile() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.getprofile", false]], "getproperty() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.GetProperty", false]], "getproperty() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.getProperty", false]], "getpropertycount() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.GetPropertyCount", false]], "getprotobyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getprotobyname", false]], "getproxies() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.getproxies", false]], "getpublicid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getPublicId", false]], "getpublicid() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getPublicId", false]], "getpwall() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwall", false]], "getpwnam() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwnam", false]], "getpwuid() (\u65bc pwd \u6a21\u7d44\u4e2d)": [[310, "pwd.getpwuid", false]], "getqnamebyname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getQNameByName", false]], "getqnames() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getQNames", false]], "getquota() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getquota", false]], "getquotaroot() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.getquotaroot", false]], "getrandbits() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.getrandbits", false]], "getrandbits() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.getrandbits", false]], "getrandom() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getrandom", false]], "getreader() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getreader", false]], "getrecursionlimit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getrecursionlimit", false]], "getrefcount() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getrefcount", false]], "getreparsedeferralenabled() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.GetReparseDeferralEnabled", false]], "getresgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getresgid", false]], "getresponse() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.getresponse", false]], "getresuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getresuid", false]], "getrlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getrlimit", false]], "getroot() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.getroot", false]], "getrusage() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.getrusage", false]], "getsample() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.getsample", false]], "getsampwidth() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.getsampwidth", false]], "getsampwidth() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.getsampwidth", false]], "getsampwidth() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.getsampwidth", false]], "getscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getscreen", false]], "getservbyname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getservbyname", false]], "getservbyport() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.getservbyport", false]], "getsetdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.GetSetDescriptorType", false]], "getshapes() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getshapes", false]], "getsid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getsid", false]], "getsignal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.getsignal", false]], "getsitepackages() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getsitepackages", false]], "getsize() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.getsize", false]], "getsize() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.getsize", false]], "getsizeof() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getsizeof", false]], "getsockname() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getsockname", false]], "getsockopt() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.getsockopt", false]], "getsource() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsource", false]], "getsourcefile() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsourcefile", false]], "getsourcelines() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.getsourcelines", false]], "getspall() (\u65bc spwd \u6a21\u7d44\u4e2d)": [[339, "spwd.getspall", false]], "getspnam() (\u65bc spwd \u6a21\u7d44\u4e2d)": [[339, "spwd.getspnam", false]], "getstate() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.getstate", false]], "getstate() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.getstate", false]], "getstate() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.getstate", false]], "getstate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.getstate", false]], "getstatusoutput() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.getstatusoutput", false]], "getstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getstr", false]], "getstring() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.GetString", false]], "getsubject() (logging.handlers.smtphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SMTPHandler.getSubject", false]], "getsummaryinformation() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.GetSummaryInformation", false]], "getswitchinterval() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getswitchinterval", false]], "getsystemid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.getSystemId", false]], "getsystemid() (xml.sax.xmlreader.locator \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Locator.getSystemId", false]], "getsyx() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getsyx", false]], "gettarinfo() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.gettarinfo", false]], "gettempdir() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempdir", false]], "gettempdirb() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempdirb", false]], "gettempprefix() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempprefix", false]], "gettempprefixb() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.gettempprefixb", false]], "getter (c type)": [[58, "c.getter", false]], "gettestcasenames() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.getTestCaseNames", false]], "gettext": [[230, "index-4", false], [230, "module-gettext", false]], "gettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.gettext", false]], "gettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.gettext", false]], "gettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.gettext", false]], "gettext() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.gettext", false]], "gettimeout() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.gettimeout", false]], "gettrace() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.gettrace", false]], "gettrace() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.gettrace", false]], "getturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.getturtle", false]], "gettype() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getType", false]], "getuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getuid", false]], "getunicodeinternedsize() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getunicodeinternedsize", false]], "geturl() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.geturl", false]], "geturl() (urllib.parse.urllib.parse.splitresult \u7684\u65b9\u6cd5)": [[394, "urllib.parse.urllib.parse.SplitResult.geturl", false]], "geturl() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.geturl", false]], "getuser() (\u65bc getpass \u6a21\u7d44\u4e2d)": [[229, "getpass.getuser", false]], "getuserbase() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getuserbase", false]], "getusersitepackages() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.getusersitepackages", false]], "getvalue() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.getvalue", false]], "getvalue() (io.stringio \u7684\u65b9\u6cd5)": [[258, "io.StringIO.getvalue", false]], "getvalue() (xml.sax.xmlreader.attributes \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.Attributes.getValue", false]], "getvaluebyqname() (xml.sax.xmlreader.attributesns \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.AttributesNS.getValueByQName", false]], "getwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getwch", false]], "getwche() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.getwche", false]], "getweakrefcount() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.getweakrefcount", false]], "getweakrefs() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.getweakrefs", false]], "getwelcome() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.getwelcome", false]], "getwelcome() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.getwelcome", false]], "getwelcome() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.getwelcome", false]], "getwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.getwin", false]], "getwindowsversion() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.getwindowsversion", false]], "getwriter() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.getwriter", false]], "getxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.getxattr", false]], "getyx() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.getyx", false]], "gid (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.gid", false]], "gil": [[87, "term-GIL", true]], "glob": [[220, "index-3", false], [231, "module-glob", false]], "glob() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.glob", false]], "glob() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.glob", false]], "glob() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.glob", false]], "global": [[436, "index-22", false], [436, "index-43", false], [436, "index-43", true]], "global (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Global", false]], "global interpreter lock\uff08\u5168\u57df\u76f4\u8b6f\u5668\u9396\uff09": [[33, "index-32", false], [87, "term-global-interpreter-lock", true]], "global_enum() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.global_enum", false]], "globals()": [[225, "globals", false]], "global\uff08\u5168\u57df\uff09": [[428, "index-35", false]], "globs (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.globs", false]], "gmtime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.gmtime", false]], "gname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.gname", false]], "gnome": [[230, "index-10", false]], "gnu_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNU_FORMAT", false]], "gnu_getopt() (\u65bc getopt \u6a21\u7d44\u4e2d)": [[228, "getopt.gnu_getopt", false]], "gnutranslations (gettext \u4e2d\u7684\u985e\u5225)": [[230, "gettext.GNUTranslations", false]], "gnutype_longlink (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_LONGLINK", false]], "gnutype_longname (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_LONGNAME", false]], "gnutype_sparse (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.GNUTYPE_SPARSE", false]], "go() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.go", false]], "got (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.got", false]], "goto() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.goto", false]], "grammar\uff08\u6587\u6cd5\uff09": [[434, "index-0", false]], "graphical user interface\uff08\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\uff09": [[368, "index-0", false]], "graphlib": [[232, "module-graphlib", false]], "greater (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.GREATER", false]], "greaterequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.GREATEREQUAL", false]], "greenwich mean time\uff08\u683c\u6797\u5a01\u6cbb\u6a19\u6e96\u6642\u9593\uff09": [[366, "index-4", false]], "grnd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.GRND_NONBLOCK", false]], "grnd_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.GRND_RANDOM", false]], "group (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.Group", false]], "group() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.group", false]], "group() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.group", false]], "group() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.group", false]], "groupby() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.groupby", false]], "groupdict() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.groupdict", false]], "groupindex (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.groupindex", false]], "grouping\uff08\u7fa4\u7d44\uff09": [[435, "index-8", false]], "groups (email.headerregistry.addressheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.AddressHeader.groups", false]], "groups (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.groups", false]], "groups() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.groups", false]], "group\uff08\u7fa4\u7d44\uff09": [[293, "index-12", false], [293, "index-9", false]], "grp": [[233, "module-grp", false]], "gs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.GS", false]], "gt (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Gt", false]], "gt() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.gt", false]], "gte (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.GtE", false]], "guard": [[427, "index-21", true]], "guess_all_extensions() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_all_extensions", false]], "guess_all_extensions() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_all_extensions", false]], "guess_extension() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_extension", false]], "guess_extension() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_extension", false]], "guess_scheme() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.guess_scheme", false]], "guess_type() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.guess_type", false]], "guess_type() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.guess_type", false]], "gui": [[368, "index-0", false]], "gzip": [[234, "module-gzip", false]], "gzip \u547d\u4ee4\u5217\u9078\u9805": [[234, "cmdoption-gzip-arg-file", false], [234, "cmdoption-gzip-best", false], [234, "cmdoption-gzip-d", false], [234, "cmdoption-gzip-fast", false], [234, "cmdoption-gzip-h", false]], "gzipfile (gzip \u4e2d\u7684\u985e\u5225)": [[234, "gzip.GzipFile", false]], "halfdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.halfdelay", false]], "handle (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.Handle", false]], "handle an exception\uff08\u8655\u7406\u4f8b\u5916\uff09": [[429, "index-15", false]], "handle() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle", false]], "handle() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.handle", false]], "handle() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.handle", false]], "handle() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.handle", false]], "handle() (logging.nullhandler \u7684\u65b9\u6cd5)": [[269, "logging.NullHandler.handle", false]], "handle() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.handle", false]], "handle() (wsgiref.simple_server.wsgirequesthandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIRequestHandler.handle", false]], "handle_charref() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_charref", false]], "handle_comment() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_comment", false]], "handle_data() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_data", false]], "handle_decl() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_decl", false]], "handle_defect() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.handle_defect", false]], "handle_endtag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_endtag", false]], "handle_entityref() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_entityref", false]], "handle_error() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_error", false]], "handle_expect_100() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle_expect_100", false]], "handle_one_request() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.handle_one_request", false]], "handle_pi() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_pi", false]], "handle_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_request", false]], "handle_request() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.handle_request", false]], "handle_startendtag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_startendtag", false]], "handle_starttag() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.handle_starttag", false]], "handle_timeout() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.handle_timeout", false]], "handleerror() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.handleError", false]], "handleerror() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.handleError", false]], "handler (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Handler", false]], "handler() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.handler", false]], "handlers (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.handlers", false]], "handlers (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Handlers", false]], "handler\uff08\u8655\u7406\u5668\uff09": [[428, "index-66", false]], "hardlink_to() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.hardlink_to", false]], "harmonic_mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.harmonic_mean", false]], "has_alpn (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_ALPN", false]], "has_children() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.has_children", false]], "has_colors() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_colors", false]], "has_dualstack_ipv6() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.has_dualstack_ipv6", false]], "has_ecdh (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_ECDH", false]], "has_extended_color_support() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_extended_color_support", false]], "has_extn() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.has_extn", false]], "has_header() (csv.sniffer \u7684\u65b9\u6cd5)": [[175, "csv.Sniffer.has_header", false]], "has_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.has_header", false]], "has_ic() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_ic", false]], "has_il() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_il", false]], "has_ipv6 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.has_ipv6", false]], "has_key (2to3 fixer)": [[112, "to3fixer-has_key", false]], "has_key() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.has_key", false]], "has_location (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.has_location", false]], "has_never_check_common_name (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_NEVER_CHECK_COMMON_NAME", false]], "has_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.has_nonstandard_attr", false]], "has_npn (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_NPN", false]], "has_option() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.has_option", false]], "has_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.has_option", false]], "has_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.has_section", false]], "has_sni (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SNI", false]], "has_sslv2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SSLv2", false]], "has_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_SSLv3", false]], "has_ticket (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.has_ticket", false]], "has_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1", false]], "has_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_1", false]], "has_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_2", false]], "has_tlsv1_3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.HAS_TLSv1_3", false]], "hasarg (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasarg", false]], "hasattr()": [[225, "hasattr", false]], "hasattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.hasAttribute", false]], "hasattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.hasAttributeNS", false]], "hasattributes() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.hasAttributes", false]], "haschildnodes() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.hasChildNodes", false]], "hascompare (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hascompare", false]], "hasconst (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasconst", false]], "hasexc (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasexc", false]], "hasfeature() (xml.dom.domimplementation \u7684\u65b9\u6cd5)": [[410, "xml.dom.DOMImplementation.hasFeature", false]], "hasfree (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasfree", false]], "hash character\uff08\u4e95\u5b57\u865f\uff09": [[435, "index-4", false]], "hash()": [[225, "hash", false]], "hash-based pyc\uff08\u96dc\u6e4a\u67b6\u69cb\u7684 pyc\uff09": [[87, "term-hash-based-pyc", true]], "hash.block_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.hash.block_size", false]], "hash.digest_size (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.hash.digest_size", false]], "hash_bits (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.hash_bits", false]], "hash_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.hash_info", false]], "hash_randomization (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.hash_randomization", false]], "hashable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Hashable", false]], "hashable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Hashable", false]], "hashable\uff08\u53ef\u96dc\u6e4a\u7684\uff09": [[87, "term-hashable", true]], "hashable\uff08\u53ef\u96dc\u6e4a\uff09": [[430, "index-20", false]], "hashandlers() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.hasHandlers", false]], "hashfunc (c type)": [[63, "c.hashfunc", false]], "hashlib": [[235, "module-hashlib", false]], "hash\uff08\u96dc\u6e4a\uff09": [[49, "index-6", false], [63, "index-2", false], [344, "index-22", false], [428, "index-80", false]], "hasjabs (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasjabs", false]], "hasjrel (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasjrel", false]], "haslocal (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.haslocal", false]], "hasname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.hasname", false]], "have_argument (opcode)": [[191, "opcode-HAVE_ARGUMENT", false]], "have_contextvar (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.HAVE_CONTEXTVAR", false]], "have_docstrings (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.HAVE_DOCSTRINGS", false]], "have_threads (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.HAVE_THREADS", false]], "hci_data_dir (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_DATA_DIR", false]], "hci_filter (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_FILTER", false]], "hci_time_stamp (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HCI_TIME_STAMP", false]], "head() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.head", false]], "header (email.header \u4e2d\u7684\u985e\u5225)": [[202, "email.header.Header", false]], "header_encode() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.header_encode", false]], "header_encode_lines() (email.charset.charset \u7684\u65b9\u6cd5)": [[195, "email.charset.Charset.header_encode_lines", false]], "header_encoding (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.header_encoding", false]], "header_factory (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.header_factory", false]], "header_fetch_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_fetch_parse", false]], "header_fetch_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_fetch_parse", false]], "header_fetch_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_fetch_parse", false]], "header_items() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.header_items", false]], "header_max_count() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_max_count", false]], "header_max_count() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_max_count", false]], "header_offset (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.header_offset", false]], "header_source_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_source_parse", false]], "header_source_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_source_parse", false]], "header_source_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_source_parse", false]], "header_store_parse() (email.policy.compat32 \u7684\u65b9\u6cd5)": [[208, "email.policy.Compat32.header_store_parse", false]], "header_store_parse() (email.policy.emailpolicy \u7684\u65b9\u6cd5)": [[208, "email.policy.EmailPolicy.header_store_parse", false]], "header_store_parse() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.header_store_parse", false]], "headerdefect": [[199, "email.errors.HeaderDefect", false]], "headererror": [[358, "tarfile.HeaderError", false]], "headerparseerror": [[199, "email.errors.HeaderParseError", false]], "headerparser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.HeaderParser", false]], "headerregistry (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.HeaderRegistry", false]], "headers (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.headers", false]], "headers (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.headers", false]], "headers (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.headers", false]], "headers (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.headers", false]], "headers (wsgiref.headers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.headers.Headers", false]], "headers (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.headers", false]], "headers\uff08\u6a19\u982d\uff09": [[151, "index-0", false], [276, "index-1", false]], "heading() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.heading", false]], "heading() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.heading", false]], "heapify() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heapify", false]], "heapmin() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.heapmin", false]], "heappop() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappop", false]], "heappush() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappush", false]], "heappushpop() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heappushpop", false]], "heapq": [[236, "module-heapq", false]], "heapreplace() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.heapreplace", false]], "helo() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.helo", false]], "help (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.help", false]], "help (pdb command)": [[297, "pdbcommand-help", false]], "help()": [[225, "help", false]], "help() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.help", false]], "help\uff08\u5e6b\u52a9\uff09": [[313, "index-0", false], [451, "index-0", false]], "herror": [[337, "socket.herror", false]], "hex (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.hex", false]], "hex()": [[225, "hex", false]], "hex() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.hex", false]], "hex() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.hex", false]], "hex() (float \u7684\u65b9\u6cd5)": [[344, "float.hex", false]], "hex() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.hex", false]], "hexadecimal literal\uff08\u5341\u516d\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "hexadecimal\uff08\u5341\u516d\u9032\u4f4d\uff09": [[344, "index-12", false]], "hexdigest() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.hexdigest", false]], "hexdigest() (hashlib.shake \u7684\u65b9\u6cd5)": [[235, "hashlib.shake.hexdigest", false]], "hexdigest() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.hexdigest", false]], "hexdigits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.hexdigits", false]], "hexlify() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.hexlify", false]], "hexversion (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.hexversion", false]], "hidden() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.hidden", false]], "hide() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.hide", false]], "hide() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.hide", false]], "hide_cookie2 (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.hide_cookie2", false]], "hideturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.hideturtle", false]], "hierarchyrequesterr": [[410, "xml.dom.HierarchyRequestErr", false]], "hierarchy\uff08\u968e\u5c64\uff09": [[428, "index-4", false]], "high_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.HIGH_PRIORITY_CLASS", false]], "highest_protocol (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.HIGHEST_PROTOCOL", false]], "hits (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.hits", false]], "hkey_classes_root (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CLASSES_ROOT", false]], "hkey_current_config (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CURRENT_CONFIG", false]], "hkey_current_user (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_CURRENT_USER", false]], "hkey_dyn_data (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_DYN_DATA", false]], "hkey_local_machine (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_LOCAL_MACHINE", false]], "hkey_performance_data (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_PERFORMANCE_DATA", false]], "hkey_users (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.HKEY_USERS", false]], "hline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.hline", false]], "hlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.HList", false]], "hls_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.hls_to_rgb", false]], "hmac": [[237, "module-hmac", false]], "home": [[294, "index-16", false], [294, "index-21", false], [369, "index-1", false], [481, "index-14", false], [481, "index-21", false], [483, "index-202", false], [483, "index-203", false]], "home directory expansion\uff08\u5bb6\u76ee\u9304\u5c55\u958b\uff09": [[294, "index-1", false]], "home() (pathlib.path \u7684\u985e\u5225\u65b9\u6cd5)": [[296, "pathlib.Path.home", false]], "home() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.home", false]], "homedrive": [[294, "index-19", false]], "homepath": [[294, "index-18", false]], "hook_compressed() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.hook_compressed", false]], "hook_encoded() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.hook_encoded", false]], "hooks": [[432, "index-9", false]], "host (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.host", false]], "hostmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.hostmask", false]], "hostmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.hostmask", false]], "hostname_checks_common_name (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.hostname_checks_common_name", false]], "hosts (netrc.netrc \u7684\u5c6c\u6027)": [[286, "netrc.netrc.hosts", false]], "hosts() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.hosts", false]], "hosts() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.hosts", false]], "hour (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.hour", false]], "hour (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.hour", false]], "hresult (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.HRESULT", false]], "hstderror (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdError", false]], "hstdinput (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdInput", false]], "hstdoutput (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.hStdOutput", false]], "hsv_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.hsv_to_rgb", false]], "ht (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.HT", false]], "ht() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ht", false]], "html": [[238, "module-html", false], [240, "index-0", false], [395, "index-10", false]], "html() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.html", false]], "html.entities": [[239, "module-html.entities", false]], "html.parser": [[240, "module-html.parser", false]], "html5 (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.html5", false]], "htmlcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.HTMLCalendar", false]], "htmldiff (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.HtmlDiff", false]], "htmlparser (html.parser \u4e2d\u7684\u985e\u5225)": [[240, "html.parser.HTMLParser", false]], "htonl() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.htonl", false]], "htons() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.htons", false]], "http": [[151, "index-0", false], [241, "index-0", false], [241, "module-http", false], [242, "index-0", false], [245, "index-0", false], [395, "index-10", false], [395, "index-9", false]], "http (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.HTTP", false]], "http.client": [[242, "module-http.client", false]], "http.client\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[242, "index-0", false]], "http.cookiejar": [[243, "module-http.cookiejar", false]], "http.cookies": [[244, "module-http.cookies", false]], "http.server": [[245, "index-3", false], [245, "module-http.server", false]], "http_error_301() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_301", false]], "http_error_302() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_302", false]], "http_error_303() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_303", false]], "http_error_307() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_307", false]], "http_error_308() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.http_error_308", false]], "http_error_401() (urllib.request.httpbasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPBasicAuthHandler.http_error_401", false]], "http_error_401() (urllib.request.httpdigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPDigestAuthHandler.http_error_401", false]], "http_error_407() (urllib.request.proxybasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.ProxyBasicAuthHandler.http_error_407", false]], "http_error_407() (urllib.request.proxydigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.ProxyDigestAuthHandler.http_error_407", false]], "http_error_auth_reqed() (urllib.request.abstractbasicauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed", false]], "http_error_auth_reqed() (urllib.request.abstractdigestauthhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed", false]], "http_error_default() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.http_error_default", false]], "http_open() (urllib.request.httphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPHandler.http_open", false]], "http_port (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.HTTP_PORT", false]], "http_response() (urllib.request.httperrorprocessor \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPErrorProcessor.http_response", false]], "http_version (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.http_version", false]], "httpbasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPBasicAuthHandler", false]], "httpconnection (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPConnection", false]], "httpcookieprocessor (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPCookieProcessor", false]], "httpd": [[245, "index-0", false]], "httpdefaulterrorhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPDefaultErrorHandler", false]], "httpdigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPDigestAuthHandler", false]], "httperror": [[393, "urllib.error.HTTPError", false]], "httperrorprocessor (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPErrorProcessor", false]], "httpexception": [[242, "http.client.HTTPException", false]], "httphandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.HTTPHandler", false]], "httphandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPHandler", false]], "httpmessage (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPMessage", false]], "httpmethod (http \u4e2d\u7684\u985e\u5225)": [[241, "http.HTTPMethod", false]], "httponly (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.httponly", false]], "httppasswordmgr (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgr", false]], "httppasswordmgrwithdefaultrealm (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgrWithDefaultRealm", false]], "httppasswordmgrwithpriorauth (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth", false]], "httpredirecthandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPRedirectHandler", false]], "httpresponse (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPResponse", false]], "https_open() (urllib.request.httpshandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPSHandler.https_open", false]], "https_port (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.HTTPS_PORT", false]], "https_response() (urllib.request.httperrorprocessor \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPErrorProcessor.https_response", false]], "httpsconnection (http.client \u4e2d\u7684\u985e\u5225)": [[242, "http.client.HTTPSConnection", false]], "httpserver (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.HTTPServer", false]], "httpshandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.HTTPSHandler", false]], "httpstatus (http \u4e2d\u7684\u985e\u5225)": [[241, "http.HTTPStatus", false]], "http\uff08\u6a19\u6e96\u6a21\u7d44\uff09": [[241, "index-0", false]], "hv_guid_broadcast (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_BROADCAST", false]], "hv_guid_children (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_CHILDREN", false]], "hv_guid_loopback (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_LOOPBACK", false]], "hv_guid_parent (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_PARENT", false]], "hv_guid_wildcard (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_WILDCARD", false]], "hv_guid_zero (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_GUID_ZERO", false]], "hv_protocol_raw (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HV_PROTOCOL_RAW", false]], "hvsocket_address_flag_passthru (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_ADDRESS_FLAG_PASSTHRU", false]], "hvsocket_connect_timeout (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECT_TIMEOUT", false]], "hvsocket_connect_timeout_max (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECT_TIMEOUT_MAX", false]], "hvsocket_connected_suspend (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.HVSOCKET_CONNECTED_SUSPEND", false]], "hypot() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.hypot", false]], "i (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.I", false]], "i/o control\uff08i/o \u63a7\u5236\uff09": [[215, "index-0", false], [225, "index-8", false], [337, "index-6", false], [361, "index-0", false]], "iadd() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iadd", false]], "iand() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iand", false]], "iconcat() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.iconcat", false]], "id": [[293, "index-13", false], [293, "index-16", false], [428, "index-1", false]], "id (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.id", false]], "id of parent": [[293, "index-14", false]], "id()": [[225, "id", false]], "id() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.id", false]], "id, setting\uff08\u8a2d\u5b9a\uff09": [[293, "index-19", false]], "idcok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.idcok", false]], "ident (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.ident", false]], "ident (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.ident", false]], "identchars (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.identchars", false]], "identifier": [[430, "index-3", false]], "identifier list\uff08\u8b58\u5225\u7b26\u865f\u6e05\u55ae\uff09": [[436, "index-43", false], [436, "index-45", false]], "identifier\uff08\u8b58\u5225\u5668\uff09": [[435, "index-10", false]], "identify() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.identify", false]], "identify() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify", false]], "identify() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.identify", false]], "identify_column() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_column", false]], "identify_element() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_element", false]], "identify_region() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_region", false]], "identify_row() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.identify_row", false]], "identity": [[430, "index-81", false]], "identity of an object\uff08\u7269\u4ef6\u7684\u8b58\u5225\uff09": [[428, "index-1", false]], "idioms (2to3 fixer)": [[112, "to3fixer-idioms", false]], "idle": [[87, "term-IDLE", true], [247, "index-0", false]], "idle_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.IDLE_PRIORITY_CLASS", false]], "idlelib": [[247, "module-idlelib", false]], "idlestartup": [[247, "index-5", false], [483, "index-227", false], [483, "index-232", false], [483, "index-257", false]], "idlok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.idlok", false]], "if": [[344, "index-1", false], [427, "index-18", false], [427, "index-3", true], [430, "index-12", false], [430, "index-88", false]], "if (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.If", false]], "if_indextoname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_indextoname", false]], "if_nameindex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_nameindex", false]], "if_nametoindex() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.if_nametoindex", false]], "ifexp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.IfExp", false]], "ifloordiv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ifloordiv", false]], "iglob() (\u65bc glob \u6a21\u7d44\u4e2d)": [[231, "glob.iglob", false]], "ignorablewhitespace() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.ignorableWhitespace", false]], "ignore": [[158, "index-1", false]], "ignore (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.ignore", false]], "ignore (pdb command)": [[297, "pdbcommand-ignore", false]], "ignore (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.IGNORE", false]], "ignore_environment (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.ignore_environment", false]], "ignore_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.ignore_errors", false]], "ignore_exception_detail (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.IGNORE_EXCEPTION_DETAIL", false]], "ignore_patterns() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.ignore_patterns", false]], "ignore_warnings() (\u65bc test.support.warnings_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.warnings_helper.ignore_warnings", false]], "ignorecase (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.IGNORECASE", false]], "ihave() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.ihave", false]], "iiscgihandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.IISCGIHandler", false]], "illegalmontherror": [[150, "calendar.IllegalMonthError", false]], "illegalweekdayerror": [[150, "calendar.IllegalWeekdayError", false]], "ilshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ilshift", false]], "imag (numbers.complex \u7684\u5c6c\u6027)": [[289, "numbers.Complex.imag", false]], "imag (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.imag", false]], "imaginary literal\uff08\u865b\u6578\u5e38\u6578\uff09": [[435, "index-27", false]], "imap() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.imap", false]], "imap4": [[248, "index-0", false]], "imap4 (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4", false]], "imap4.abort": [[248, "imaplib.IMAP4.abort", false]], "imap4.error": [[248, "imaplib.IMAP4.error", false]], "imap4.readonly": [[248, "imaplib.IMAP4.readonly", false]], "imap4_ssl": [[248, "index-0", false]], "imap4_ssl (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4_SSL", false]], "imap4_stream": [[248, "index-0", false]], "imap4_stream (imaplib \u4e2d\u7684\u985e\u5225)": [[248, "imaplib.IMAP4_stream", false]], "imap_unordered() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.imap_unordered", false]], "imaplib": [[248, "module-imaplib", false]], "imatmul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imatmul", false]], "imghdr": [[249, "module-imghdr", false]], "immedok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.immedok", false]], "immutable": [[430, "index-20", false], [430, "index-7", false]], "immutable object\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": [[428, "index-1", false]], "immutable sequences\uff08\u4e0d\u53ef\u8b8a\u5e8f\u5217\uff09": [[428, "index-18", false]], "immutable sequence\uff08\u4e0d\u53ef\u8b8a\u5e8f\u5217\uff09": [[428, "index-17", false]], "immutable types\uff08\u4e0d\u53ef\u8b8a\u578b\u5225\uff09": [[428, "index-72", false]], "immutable\uff08\u4e0d\u53ef\u8b8a\u7269\u4ef6\uff09": [[87, "term-immutable", true]], "immutable\uff08\u4e0d\u53ef\u8b8a\uff09": [[344, "index-22", false], [428, "index-17", false]], "imod() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imod", false]], "impl_detail() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.impl_detail", false]], "implementation (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.implementation", false]], "import (2to3 fixer)": [[112, "to3fixer-import", false]], "import (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Import", false]], "import hooks": [[432, "index-9", false]], "import machinery\uff08\u5f15\u5165\u6a5f\u5236\uff09": [[432, "index-0", false]], "import path\uff08\u5f15\u5165\u8def\u5f91\uff09": [[87, "term-import-path", true]], "import statement\uff08\u5f15\u5165\u9673\u8ff0\u5f0f\uff09": [[429, "index-5", false], [436, "index-34", false], [436, "index-35", false], [436, "index-36", false], [436, "index-37", false]], "import_fresh_module() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.import_fresh_module", false]], "import_from (opcode)": [[191, "opcode-IMPORT_FROM", false]], "import_module() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.import_module", false]], "import_module() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.import_module", false]], "import_name (opcode)": [[191, "opcode-IMPORT_NAME", false]], "importerror": [[213, "ImportError", false], [436, "index-34", false]], "importer\uff08\u5f15\u5165\u5668\uff09": [[87, "term-importer", true]], "importfrom (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ImportFrom", false]], "importing\uff08\u5f15\u5165\uff09": [[87, "term-importing", true], [436, "index-34", false]], "importlib": [[250, "module-importlib", false]], "importlib.abc": [[250, "module-importlib.abc", false]], "importlib.abc.inspectloader.get_source \u65b9\u6cd5": [[250, "index-15", false]], "importlib.machinery": [[250, "module-importlib.machinery", false]], "importlib.metadata": [[251, "module-importlib.metadata", false]], "importlib.resources": [[252, "module-importlib.resources", false]], "importlib.resources.abc": [[253, "module-importlib.resources.abc", false]], "importlib.util": [[250, "module-importlib.util", false]], "imports (2to3 fixer)": [[112, "to3fixer-imports", false]], "imports2 (2to3 fixer)": [[112, "to3fixer-imports2", false]], "importwarning": [[213, "ImportWarning", false]], "import\uff08\u5f15\u5165\uff09": [[225, "index-13", false], [334, "index-2", false], [428, "index-44", false], [432, "index-9", false], [436, "index-34", true], [436, "index-39", false]], "improperconnectionstate": [[242, "http.client.ImproperConnectionState", false]], "imul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.imul", false]], "in": [[344, "index-10", false], [344, "index-20", false], [427, "index-6", false], [430, "index-80", false]], "in (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.In", false]], "in pathnames (windows)\uff08\u5728\u8def\u5f91\u540d\u7a31\u4e2d (windows)\uff09": [[293, "index-48", false]], "in_dll() (ctypes._cdata \u7684\u65b9\u6cd5)": [[176, "ctypes._CData.in_dll", false]], "in_table_a1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_a1", false]], "in_table_b1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_b1", false]], "in_table_c11() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c11", false]], "in_table_c11_c12() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c11_c12", false]], "in_table_c12() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c12", false]], "in_table_c21() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c21", false]], "in_table_c21_c22() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c21_c22", false]], "in_table_c22() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c22", false]], "in_table_c3() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c3", false]], "in_table_c4() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c4", false]], "in_table_c5() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c5", false]], "in_table_c6() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c6", false]], "in_table_c7() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c7", false]], "in_table_c8() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c8", false]], "in_table_c9() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_c9", false]], "in_table_d1() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_d1", false]], "in_table_d2() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.in_table_d2", false]], "in_transaction (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.in_transaction", false]], "inch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.inch", false]], "include() (\u65bc xml.etree.elementinclude \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementInclude.include", false]], "inclusive (tracemalloc.domainfilter \u7684\u5c6c\u6027)": [[382, "tracemalloc.DomainFilter.inclusive", false]], "inclusive (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.inclusive", false]], "inclusive\uff08\u5305\u542b\uff09": [[430, "index-76", false]], "incomplete": [[146, "binascii.Incomplete", false]], "incompleteread": [[242, "http.client.IncompleteRead", false]], "incompletereaderror": [[127, "asyncio.IncompleteReadError", false]], "incr_item()": [[35, "index-15", false], [35, "index-16", false]], "increment_lineno() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.increment_lineno", false]], "incrementaldecoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.IncrementalDecoder", false]], "incrementaldecoder (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.incrementaldecoder", false]], "incrementalencoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.IncrementalEncoder", false]], "incrementalencoder (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.incrementalencoder", false]], "incrementalnewlinedecoder (io \u4e2d\u7684\u985e\u5225)": [[258, "io.IncrementalNewlineDecoder", false]], "incrementalparser (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.IncrementalParser", false]], "indent (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.indent", false]], "indent (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.indent", false]], "indent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.INDENT", false]], "indent token\uff08\u7e2e\u6392\u6a19\u8a8c\uff09": [[435, "index-9", false]], "indent() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.indent", false]], "indent() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.indent", false]], "indentationerror": [[213, "IndentationError", false]], "indentation\uff08\u7e2e\u6392\uff09": [[435, "index-8", false]], "index (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.index", false]], "index (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.index", false]], "index operation\uff08\u7d22\u5f15\u64cd\u4f5c\uff09": [[428, "index-15", false]], "index() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.index", false]], "index() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.index", false]], "index() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.index", false]], "index() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.index", false]], "index() (multiprocessing.shared_memory.shareablelist \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.ShareableList.index", false]], "index() (str \u7684\u65b9\u6cd5)": [[344, "str.index", false]], "index() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.index", false]], "index() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.index", false]], "index() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.index", false]], "index()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-20", false]], "indexerror": [[213, "IndexError", false]], "indexof() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.indexOf", false]], "indexsizeerr": [[410, "xml.dom.IndexSizeErr", false]], "indices() (slice \u7684\u65b9\u6cd5)": [[428, "slice.indices", false]], "indirect (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.INDIRECT", false]], "inet_aton() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_aton", false]], "inet_ntoa() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_ntoa", false]], "inet_ntop() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_ntop", false]], "inet_pton() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.inet_pton", false]], "inexact (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Inexact", false]], "inf (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.inf", false]], "inf (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.inf", false]], "inf (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.inf", false]], "infile": [[262, "cmdoption-json.tool-arg-infile", false]], "infile (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.infile", false]], "infinity\uff08\u7121\u7aae\uff09": [[225, "index-3", false]], "infj (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.infj", false]], "info (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.INFO", false]], "info (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.INFO", false]], "info() (dis.bytecode \u7684\u65b9\u6cd5)": [[191, "dis.Bytecode.info", false]], "info() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.info", false]], "info() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.info", false]], "info() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.info", false]], "info() (urllib.response.addinfourl \u7684\u65b9\u6cd5)": [[395, "urllib.response.addinfourl.info", false]], "info() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.info", false]], "infolist() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.infolist", false]], "inheritance\uff08\u7e7c\u627f\uff09": [[427, "index-42", false]], "ini file\uff08ini \u6a94\u6848\uff09": [[167, "index-0", false]], "init() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.init", false]], "init_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.init_color", false]], "init_database() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.init_database", false]], "init_pair() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.init_pair", false]], "inited (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.inited", false]], "initgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.initgroups", false]], "initial_indent (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.initial_indent", false]], "initproc (c type)": [[63, "c.initproc", false]], "initscr() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.initscr", false]], "inode() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.inode", false]], "input (2to3 fixer)": [[112, "to3fixer-input", false]], "input()": [[225, "input", false]], "input() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.input", false]], "input_charset (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.input_charset", false]], "input_codec (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.input_codec", false]], "inputonly (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.InputOnly", false]], "inputsource (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.InputSource", false]], "inputstream (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.InputStream", false]], "input\uff08\u8f38\u5165\uff09": [[437, "index-5", false]], "inquiry (c type)": [[28, "c.inquiry", false]], "insch() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insch", false]], "insdelln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insdelln", false]], "insert() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.insert", false]], "insert() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.insert", false]], "insert() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.insert", false]], "insert() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.insert", false]], "insert() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.insert", false]], "insert()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "insert_text() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.insert_text", false]], "insertbefore() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.insertBefore", false]], "insertln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insertln", false]], "insnstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insnstr", false]], "insort() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort", false]], "insort_left() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort_left", false]], "insort_right() (\u65bc bisect \u6a21\u7d44\u4e2d)": [[147, "bisect.insort_right", false]], "inspect": [[255, "module-inspect", false]], "inspect (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.inspect", false]], "inspect \u547d\u4ee4\u5217\u9078\u9805": [[255, "cmdoption-inspect-details", false]], "inspectloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.InspectLoader", false]], "insstr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.insstr", false]], "install() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.install", false]], "install() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.install", false]], "install_opener() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.install_opener", false]], "install_scripts() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.install_scripts", false]], "installhandler() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.installHandler", false]], "instancemethod": [[44, "index-0", false]], "instance\uff08\u5be6\u4f8b\uff09": [[428, "index-47", false], [428, "index-51", false], [428, "index-97", false], [430, "index-55", false], [430, "index-56", false]], "instate() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.instate", false]], "instr() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.instr", false]], "instream (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.instream", false]], "instruction (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Instruction", false]], "instruction (monitoring event)": [[353, "monitoring-event-INSTRUCTION", false]], "instruction.arg (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.arg", false]], "instruction.argrepr (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.argrepr", false]], "instruction.argval (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.argval", false]], "instruction.is_jump_target (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.is_jump_target", false]], "instruction.offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.offset", false]], "instruction.opcode (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.opcode", false]], "instruction.opname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.opname", false]], "instruction.positions (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.positions", false]], "instruction.starts_line (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Instruction.starts_line", false]], "int": [[47, "index-4", false], [344, "index-13", false], [428, "index-104", false]], "int (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.int", false]], "int (\u5167\u5efa\u985e\u5225)": [[225, "int", false]], "int2ap() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Int2AP", false]], "int_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.int_info", false]], "int_max_str_digits (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.int_max_str_digits", false]], "integer literal\uff08\u6574\u6578\u5e38\u6578\uff09": [[435, "index-27", false], [435, "index-28", false]], "integer\uff08\u6574\u6570\uff09": [[39, "index-0", false]], "integer\uff08\u6574\u6578\uff09": [[344, "index-11", false], [344, "index-12", false], [344, "index-16", false], [428, "index-10", false], [428, "index-11", false], [428, "index-19", false]], "integral (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Integral", false]], "integrated development environment\uff08\u6574\u5408\u958b\u767c\u74b0\u5883\uff09": [[247, "index-0", false]], "integrityerror": [[340, "sqlite3.IntegrityError", false]], "intel/dvi adpcm": [[141, "index-1", false]], "intenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.IntEnum", false]], "interact (pdb command)": [[297, "pdbcommand-interact", false]], "interact() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.interact", false]], "interact() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.interact", false]], "interact() (\u65bc code \u6a21\u7d44\u4e2d)": [[157, "code.interact", false]], "interactive (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Interactive", false]], "interactive (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.interactive", false]], "interactive mode\uff08\u4e92\u52d5\u6a21\u5f0f\uff09": [[437, "index-3", false]], "interactiveconsole (code \u4e2d\u7684\u985e\u5225)": [[157, "code.InteractiveConsole", false]], "interactiveinterpreter (code \u4e2d\u7684\u985e\u5225)": [[157, "code.InteractiveInterpreter", false]], "interactive\uff08\u4e92\u52d5\u7684\uff09": [[87, "term-interactive", true]], "interfaceerror": [[340, "sqlite3.InterfaceError", false]], "intern (2to3 fixer)": [[112, "to3fixer-intern", false]], "intern() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.intern", false]], "internal type\uff08\u5167\u90e8\u578b\u5225\uff09": [[428, "index-56", false]], "internal_attr (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.internal_attr", false]], "internaldate2tuple() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Internaldate2tuple", false]], "internalerror": [[340, "sqlite3.InternalError", false]], "internalsubset (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.internalSubset", false]], "internet_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.INTERNET_TIMEOUT", false]], "internet\uff08\u7db2\u969b\u7db2\u8def\uff09": [[256, "index-0", false]], "interpolated literal\uff08\u63d2\u503c\u5e38\u6578\uff09": [[435, "index-25", false]], "interpolated string literal\uff08\u63d2\u503c\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-25", false]], "interpolation in configuration files\uff08\u8a2d\u5b9a\u6a94\u4e2d\u7684\u63d2\u503c\uff09": [[167, "index-1", false], [167, "index-2", false]], "interpolationdeptherror": [[167, "configparser.InterpolationDepthError", false]], "interpolationerror": [[167, "configparser.InterpolationError", false]], "interpolationmissingoptionerror": [[167, "configparser.InterpolationMissingOptionError", false]], "interpolationsyntaxerror": [[167, "configparser.InterpolationSyntaxError", false]], "interpolation\uff08\u63d2\u503c\uff09": [[344, "index-45", false]], "interpolation\uff08\u63d2\u503c\uff09\u3001printf": [[344, "index-35", false]], "interpolation\uff08\u63d2\u503c\uff09\u3001\u5b57\u4e32 (%)": [[344, "index-35", false]], "interpreted\uff08\u76f4\u8b6f\u7684\uff09": [[87, "term-interpreted", true]], "interpreter lock\uff08\u76f4\u8b6f\u5668\u9396\uff09": [[33, "index-32", false]], "interpreter prompts\uff08\u76f4\u8b6f\u5668\u63d0\u793a\uff09": [[352, "index-27", false]], "interpreter prompt\uff08\u76f4\u8b6f\u5668\u63d0\u793a\uff09": [[193, "index-0", false], [352, "index-27", false]], "interpreter shutdown\uff08\u76f4\u8b6f\u5668\u95dc\u9589\uff09": [[87, "term-interpreter-shutdown", true]], "interpreter_requires_environment() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.interpreter_requires_environment", false]], "interpreter\uff08\u76f4\u8b6f\u5668\uff09": [[437, "index-0", false]], "interrupt() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.interrupt", false]], "interrupt_main() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.interrupt_main", false]], "interruptederror": [[213, "InterruptedError", false]], "intersection() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.intersection", false]], "intersection_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.intersection_update", false]], "intflag (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.IntFlag", false]], "intro (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.intro", false]], "inuseattributeerr": [[410, "xml.dom.InuseAttributeErr", false]], "inv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.inv", false]], "inv_cdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.inv_cdf", false]], "invalidaccesserr": [[410, "xml.dom.InvalidAccessErr", false]], "invalidate_caches() (importlib.abc.metapathfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.MetaPathFinder.invalidate_caches", false]], "invalidate_caches() (importlib.abc.pathentryfinder \u7684\u65b9\u6cd5)": [[250, "importlib.abc.PathEntryFinder.invalidate_caches", false]], "invalidate_caches() (importlib.machinery.filefinder \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.invalidate_caches", false]], "invalidate_caches() (importlib.machinery.pathfinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.PathFinder.invalidate_caches", false]], "invalidate_caches() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.invalidate_caches", false]], "invalidate_caches() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.invalidate_caches", false]], "invalidcharactererr": [[410, "xml.dom.InvalidCharacterErr", false]], "invalidmodificationerr": [[410, "xml.dom.InvalidModificationErr", false]], "invalidoperation (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.InvalidOperation", false]], "invalidstateerr": [[410, "xml.dom.InvalidStateErr", false]], "invalidstateerror": [[127, "asyncio.InvalidStateError", false], [166, "concurrent.futures.InvalidStateError", false]], "invalidtzpathwarning": [[425, "zoneinfo.InvalidTZPathWarning", false]], "invalidurl": [[242, "http.client.InvalidURL", false]], "inversion\uff08\u53cd\u8f49\uff09": [[430, "index-62", false]], "invert (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Invert", false]], "invert() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.invert", false]], "invocation\uff08\u8abf\u7528\uff09": [[428, "index-33", false]], "io": [[258, "module-io", false], [428, "index-55", false]], "io (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.IO", false]], "io \u6a21\u7d44": [[258, "index-0", false]], "io.incrementalnewlinedecoder \u985e\u5225": [[258, "index-5", false]], "io.stringio": [[344, "index-29", false]], "io.textiowrapper \u985e\u5225": [[258, "index-4", false]], "io_reparse_tag_appexeclink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_APPEXECLINK", false]], "io_reparse_tag_mount_point (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_MOUNT_POINT", false]], "io_reparse_tag_symlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.IO_REPARSE_TAG_SYMLINK", false]], "iobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.IOBase", false]], "ioctl() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.ioctl", false]], "ioctl() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.ioctl", false]], "ioctl_vm_sockets_get_local_cid (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.IOCTL_VM_SOCKETS_GET_LOCAL_CID", false]], "ioerror": [[213, "IOError", false]], "ior() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ior", false]], "ip (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.ip", false]], "ip (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.ip", false]], "ip_address() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_address", false]], "ip_interface() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_interface", false]], "ip_network() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.ip_network", false]], "ipaddress": [[259, "module-ipaddress", false]], "ipow() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ipow", false]], "ipv4_mapped (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.ipv4_mapped", false]], "ipv4address (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Address", false]], "ipv4interface (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Interface", false]], "ipv4network (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv4Network", false]], "ipv6_enabled (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.IPV6_ENABLED", false]], "ipv6address (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Address", false]], "ipv6interface (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Interface", false]], "ipv6network (ipaddress \u4e2d\u7684\u985e\u5225)": [[259, "ipaddress.IPv6Network", false]], "irrefutable case block": [[427, "index-22", false]], "irshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.irshift", false]], "is": [[344, "index-7", false], [430, "index-81", false]], "is (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Is", false]], "is not": [[344, "index-7", false], [430, "index-81", false]], "is_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.is_", false]], "is_absolute() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_absolute", false]], "is_active() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.is_active", false]], "is_active() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.is_active", false]], "is_alive() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.is_alive", false]], "is_alive() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.is_alive", false]], "is_android (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_android", false]], "is_annotated() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_annotated", false]], "is_assigned() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_assigned", false]], "is_async (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.is_async", false]], "is_attachment() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.is_attachment", false]], "is_authenticated() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated", false]], "is_block_device() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_block_device", false]], "is_blocked() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.is_blocked", false]], "is_canonical() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_canonical", false]], "is_canonical() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_canonical", false]], "is_char_device() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_char_device", false]], "is_character_junk() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.IS_CHARACTER_JUNK", false]], "is_check_supported() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.is_check_supported", false]], "is_closed() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.is_closed", false]], "is_closing() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.is_closing", false]], "is_closing() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.is_closing", false]], "is_dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.is_dataclass", false]], "is_declared_global() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_declared_global", false]], "is_dir() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.is_dir", false]], "is_dir() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.is_dir", false]], "is_dir() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_dir", false]], "is_dir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_dir", false]], "is_dir() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.is_dir", false]], "is_dir() (zipfile.zipinfo \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipInfo.is_dir", false]], "is_enabled() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.is_enabled", false]], "is_expired() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.is_expired", false]], "is_fifo() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_fifo", false]], "is_file() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.is_file", false]], "is_file() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.is_file", false]], "is_file() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_file", false]], "is_file() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_file", false]], "is_file() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.is_file", false]], "is_finalized() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.is_finalized", false]], "is_finalizing() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.is_finalizing", false]], "is_finite() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_finite", false]], "is_finite() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_finite", false]], "is_free() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_free", false]], "is_global (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_global", false]], "is_global (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_global", false]], "is_global() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_global", false]], "is_hop_by_hop() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.is_hop_by_hop", false]], "is_imported() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_imported", false]], "is_infinite() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_infinite", false]], "is_infinite() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_infinite", false]], "is_integer() (float \u7684\u65b9\u6cd5)": [[344, "float.is_integer", false]], "is_integer() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.is_integer", false]], "is_integer() (int \u7684\u65b9\u6cd5)": [[344, "int.is_integer", false]], "is_junction() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_junction", false]], "is_junction() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_junction", false]], "is_jython (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_jython", false]], "is_line_junk() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.IS_LINE_JUNK", false]], "is_linetouched() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.is_linetouched", false]], "is_link_local (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_link_local", false]], "is_link_local (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_link_local", false]], "is_link_local (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_link_local", false]], "is_link_local (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_link_local", false]], "is_local() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_local", false]], "is_loopback (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_loopback", false]], "is_loopback (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_loopback", false]], "is_loopback (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_loopback", false]], "is_loopback (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_loopback", false]], "is_mount() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_mount", false]], "is_multicast (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_multicast", false]], "is_multicast (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_multicast", false]], "is_multicast (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_multicast", false]], "is_multicast (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_multicast", false]], "is_multipart() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.is_multipart", false]], "is_multipart() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.is_multipart", false]], "is_namespace() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_namespace", false]], "is_nan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_nan", false]], "is_nan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_nan", false]], "is_nested() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.is_nested", false]], "is_nonlocal() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_nonlocal", false]], "is_normal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_normal", false]], "is_normal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_normal", false]], "is_normalized() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.is_normalized", false]], "is_not() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.is_not", false]], "is_not_allowed() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.is_not_allowed", false]], "is_op (opcode)": [[191, "opcode-IS_OP", false]], "is_optimized() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.is_optimized", false]], "is_package() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.is_package", false]], "is_package() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.is_package", false]], "is_package() (importlib.machinery.extensionfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.ExtensionFileLoader.is_package", false]], "is_package() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.is_package", false]], "is_package() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.is_package", false]], "is_package() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.is_package", false]], "is_parameter() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_parameter", false]], "is_private (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_private", false]], "is_private (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_private", false]], "is_private (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_private", false]], "is_private (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_private", false]], "is_python_build() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.is_python_build", false]], "is_qnan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_qnan", false]], "is_qnan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_qnan", false]], "is_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.is_reading", false]], "is_referenced() (symtable.symbol \u7684\u65b9\u6cd5)": [[351, "symtable.Symbol.is_referenced", false]], "is_relative_to() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_relative_to", false]], "is_reserved (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_reserved", false]], "is_reserved (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_reserved", false]], "is_reserved (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_reserved", false]], "is_reserved (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_reserved", false]], "is_reserved() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.is_reserved", false]], "is_resource() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.is_resource", false]], "is_resource() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.is_resource", false]], "is_resource() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.is_resource", false]], "is_resource_enabled() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.is_resource_enabled", false]], "is_running() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.is_running", false]], "is_safe (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.is_safe", false]], "is_serving() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.is_serving", false]], "is_set() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.is_set", false]], "is_set() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.is_set", false]], "is_signed() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_signed", false]], "is_signed() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_signed", false]], "is_site_local (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_site_local", false]], "is_site_local (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_site_local", false]], "is_skipped_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.is_skipped_line", false]], "is_snan() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_snan", false]], "is_snan() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_snan", false]], "is_socket() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_socket", false]], "is_stack_trampoline_active() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.is_stack_trampoline_active", false]], "is_subnormal() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_subnormal", false]], "is_subnormal() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_subnormal", false]], "is_symlink() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.is_symlink", false]], "is_symlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.is_symlink", false]], "is_tarfile() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.is_tarfile", false]], "is_term_resized() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.is_term_resized", false]], "is_tracing() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.is_tracing", false]], "is_tracked() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.is_tracked", false]], "is_typeddict() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.is_typeddict", false]], "is_unspecified (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.is_unspecified", false]], "is_unspecified (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.is_unspecified", false]], "is_unspecified (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.is_unspecified", false]], "is_unspecified (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.is_unspecified", false]], "is_valid() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.is_valid", false]], "is_wintouched() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.is_wintouched", false]], "is_zero() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.is_zero", false]], "is_zero() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.is_zero", false]], "is_zipfile() (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.is_zipfile", false]], "isabs() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isabs", false]], "isabstract() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isabstract", false]], "isadirectoryerror": [[213, "IsADirectoryError", false]], "isalnum() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isalnum", false]], "isalnum() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isalnum", false]], "isalnum() (str \u7684\u65b9\u6cd5)": [[344, "str.isalnum", false]], "isalnum() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isalnum", false]], "isalpha() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isalpha", false]], "isalpha() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isalpha", false]], "isalpha() (str \u7684\u65b9\u6cd5)": [[344, "str.isalpha", false]], "isalpha() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isalpha", false]], "isascii() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isascii", false]], "isascii() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isascii", false]], "isascii() (str \u7684\u65b9\u6cd5)": [[344, "str.isascii", false]], "isascii() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isascii", false]], "isasyncgen() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isasyncgen", false]], "isasyncgenfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isasyncgenfunction", false]], "isatty() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.isatty", false]], "isatty() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.isatty", false]], "isatty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.isatty", false]], "isawaitable() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isawaitable", false]], "isblank() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isblank", false]], "isblk() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isblk", false]], "isbuiltin() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isbuiltin", false]], "ischr() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.ischr", false]], "isclass() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isclass", false]], "isclose() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isclose", false]], "isclose() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isclose", false]], "iscntrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.iscntrl", false]], "iscode() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscode", false]], "iscoroutine() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.iscoroutine", false]], "iscoroutine() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscoroutine", false]], "iscoroutinefunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.iscoroutinefunction", false]], "isctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isctrl", false]], "isdaemon() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.isDaemon", false]], "isdatadescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isdatadescriptor", false]], "isdecimal() (str \u7684\u65b9\u6cd5)": [[344, "str.isdecimal", false]], "isdev() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isdev", false]], "isdevdrive() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isdevdrive", false]], "isdigit() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isdigit", false]], "isdigit() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isdigit", false]], "isdigit() (str \u7684\u65b9\u6cd5)": [[344, "str.isdigit", false]], "isdigit() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isdigit", false]], "isdir() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isdir", false]], "isdir() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isdir", false]], "isdisjoint() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.isdisjoint", false]], "isdown() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.isdown", false]], "iselement() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.iselement", false]], "isenabled() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.isenabled", false]], "isenabledfor() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.isEnabledFor", false]], "isendwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.isendwin", false]], "iseof() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISEOF", false]], "isfifo() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isfifo", false]], "isfile() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isfile", false]], "isfile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isfile", false]], "isfinite() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isfinite", false]], "isfinite() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isfinite", false]], "isfirstline() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.isfirstline", false]], "isframe() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isframe", false]], "isfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isfunction", false]], "isfuture() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.isfuture", false]], "isgenerator() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgenerator", false]], "isgeneratorfunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgeneratorfunction", false]], "isgetsetdescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isgetsetdescriptor", false]], "isgraph() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isgraph", false]], "isidentifier() (str \u7684\u65b9\u6cd5)": [[344, "str.isidentifier", false]], "isinf() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isinf", false]], "isinf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isinf", false]], "isinstance (2to3 fixer)": [[112, "to3fixer-isinstance", false]], "isinstance()": [[225, "isinstance", false]], "isjunction() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.isjunction", false]], "iskeyword() (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.iskeyword", false]], "isleap() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.isleap", false]], "islice() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.islice", false]], "islink() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.islink", false]], "islnk() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.islnk", false]], "islower() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.islower", false]], "islower() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.islower", false]], "islower() (str \u7684\u65b9\u6cd5)": [[344, "str.islower", false]], "islower() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.islower", false]], "ismemberdescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismemberdescriptor", false]], "ismeta() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ismeta", false]], "ismethod() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethod", false]], "ismethoddescriptor() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethoddescriptor", false]], "ismethodwrapper() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismethodwrapper", false]], "ismodule() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.ismodule", false]], "ismount() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.ismount", false]], "isnan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.isnan", false]], "isnan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isnan", false]], "isnonterminal() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISNONTERMINAL", false]], "isnot (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.IsNot", false]], "isnumeric() (str \u7684\u65b9\u6cd5)": [[344, "str.isnumeric", false]], "isocalendar() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isocalendar", false]], "isocalendar() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isocalendar", false]], "isoformat() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isoformat", false]], "isoformat() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isoformat", false]], "isoformat() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.isoformat", false]], "isolated (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.isolated", false]], "isolatedasynciotestcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.IsolatedAsyncioTestCase", false]], "isolation_level (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.isolation_level", false]], "isoweekday() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.isoweekday", false]], "isoweekday() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.isoweekday", false]], "isprint() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isprint", false]], "isprintable() (str \u7684\u65b9\u6cd5)": [[344, "str.isprintable", false]], "ispunct() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.ispunct", false]], "isqrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.isqrt", false]], "isreadable() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.isreadable", false]], "isreadable() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.isreadable", false]], "isrecursive() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.isrecursive", false]], "isrecursive() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.isrecursive", false]], "isreg() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.isreg", false]], "isreservedkey() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.isReservedKey", false]], "isroutine() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.isroutine", false]], "issamenode() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.isSameNode", false]], "issoftkeyword() (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.issoftkeyword", false]], "isspace() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isspace", false]], "isspace() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isspace", false]], "isspace() (str \u7684\u65b9\u6cd5)": [[344, "str.isspace", false]], "isspace() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isspace", false]], "isstdin() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.isstdin", false]], "issubclass()": [[225, "issubclass", false]], "issubset() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.issubset", false]], "issuperset() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.issuperset", false]], "issym() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.issym", false]], "isterminal() (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.ISTERMINAL", false]], "istitle() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.istitle", false]], "istitle() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.istitle", false]], "istitle() (str \u7684\u65b9\u6cd5)": [[344, "str.istitle", false]], "istraceback() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.istraceback", false]], "isub() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.isub", false]], "isupper() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.isupper", false]], "isupper() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.isupper", false]], "isupper() (str \u7684\u65b9\u6cd5)": [[344, "str.isupper", false]], "isupper() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isupper", false]], "isvisible() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.isvisible", false]], "isxdigit() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.isxdigit", false]], "italic (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.ITALIC", false]], "item selection\uff08\u9805\u76ee\u9078\u53d6\uff09": [[428, "index-15", false]], "item() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.item", false]], "item() (xml.dom.namednodemap \u7684\u65b9\u6cd5)": [[410, "xml.dom.NamedNodeMap.item", false]], "item() (xml.dom.nodelist \u7684\u65b9\u6cd5)": [[410, "xml.dom.NodeList.item", false]], "itemgetter() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.itemgetter", false]], "items() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.items", false]], "items() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.items", false]], "items() (dict \u7684\u65b9\u6cd5)": [[344, "dict.items", false]], "items() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.items", false]], "items() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.items", false]], "items() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.items", false]], "items() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.items", false]], "items() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.items", false]], "itemsize (array.array \u7684\u5c6c\u6027)": [[121, "array.array.itemsize", false]], "itemsize (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.itemsize", false]], "itemsview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ItemsView", false]], "itemsview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ItemsView", false]], "item\uff08\u9805\u76ee\uff09": [[430, "index-42", false], [430, "index-43", false]], "iter()": [[225, "iter", false]], "iter() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.iter", false]], "iter() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.iter", false]], "iter_attachments() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.iter_attachments", false]], "iter_child_nodes() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.iter_child_nodes", false]], "iter_fields() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.iter_fields", false]], "iter_importers() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.iter_importers", false]], "iter_modules() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.iter_modules", false]], "iter_parts() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.iter_parts", false]], "iter_unpack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.iter_unpack", false]], "iter_unpack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.iter_unpack", false]], "iterable (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Iterable", false]], "iterable (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Iterable", false]], "iterable\uff08\u53ef\u758a\u4ee3\u7269\u4ef6\uff09": [[87, "term-iterable", true]], "iterable\uff08\u53ef\u758a\u4ee3\uff09": [[430, "index-93", false]], "iteration over\uff08\u758a\u4ee3\u65bc\uff09": [[344, "index-18", false]], "iteration\uff08\u758a\u4ee3\uff09": [[344, "index-18", false]], "iterator (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Iterator", false]], "iterator (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Iterator", false]], "iterator protocol\uff08\u758a\u4ee3\u5668\u5354\u5b9a\uff09": [[344, "index-18", false]], "iterator\uff08\u758a\u4ee3\u5668\uff09": [[87, "term-iterator", true], [344, "index-18", false], [436, "index-26", false]], "iterdecode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.iterdecode", false]], "iterdir() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.iterdir", false]], "iterdir() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.iterdir", false]], "iterdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.iterdir", false]], "iterdir() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.iterdir", false]], "iterdump() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.iterdump", false]], "iterencode() (json.jsonencoder \u7684\u65b9\u6cd5)": [[262, "json.JSONEncoder.iterencode", false]], "iterencode() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.iterencode", false]], "iterfind() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.iterfind", false]], "iterfind() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.iterfind", false]], "iteritems() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.iteritems", false]], "iterkeys() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.iterkeys", false]], "itermonthdates() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdates", false]], "itermonthdays() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays", false]], "itermonthdays2() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays2", false]], "itermonthdays3() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays3", false]], "itermonthdays4() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.itermonthdays4", false]], "iternextfunc (c type)": [[63, "c.iternextfunc", false]], "iterparse() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.iterparse", false]], "itertext() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.itertext", false]], "itertools": [[261, "module-itertools", false]], "itertools (2to3 fixer)": [[112, "to3fixer-itertools", false]], "itertools_imports (2to3 fixer)": [[112, "to3fixer-itertools_imports", false]], "itervalues() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.itervalues", false]], "iterweekdays() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.iterweekdays", false]], "itimer_prof (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_PROF", false]], "itimer_real (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_REAL", false]], "itimer_virtual (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.ITIMER_VIRTUAL", false]], "itimererror": [[333, "signal.ItimerError", false]], "itorator\uff08\u758a\u4ee3\u5668\uff09": [[428, "index-39", false]], "itruediv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.itruediv", false]], "ixor() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ixor", false]], "j": [[435, "index-30", false]], "jansen, jack": [[397, "index-1", false]], "january (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JANUARY", false]], "java": [[428, "index-13", false]], "java_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.java_ver", false]], "join() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.join", false]], "join() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.join", false]], "join() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.join", false]], "join() (multiprocessing.joinablequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.JoinableQueue.join", false]], "join() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.join", false]], "join() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.join", false]], "join() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.join", false]], "join() (str \u7684\u65b9\u6cd5)": [[344, "str.join", false]], "join() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.join", false]], "join() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.join", false]], "join() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.join", false]], "join_thread() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.join_thread", false]], "join_thread() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.join_thread", false]], "joinablequeue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.JoinableQueue", false]], "joinedstr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.JoinedStr", false]], "joinpath() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.joinpath", false]], "joinpath() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.joinpath", false]], "joinpath() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.joinpath", false]], "joinpath() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.joinpath", false]], "js_output() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.js_output", false]], "js_output() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.js_output", false]], "json": [[262, "module-json", false], [446, "index-1", false]], "json.tool": [[262, "module-json.tool", false]], "json.tool \u547d\u4ee4\u5217\u9078\u9805": [[262, "cmdoption-json.tool-arg-infile", false], [262, "cmdoption-json.tool-arg-outfile", false], [262, "cmdoption-json.tool-h", false], [262, "cmdoption-json.tool-indent", false], [262, "cmdoption-json.tool-json-lines", false], [262, "cmdoption-json.tool-no-ensure-ascii", false], [262, "cmdoption-json.tool-sort-keys", false]], "jsondecodeerror": [[262, "json.JSONDecodeError", false]], "jsondecoder (json \u4e2d\u7684\u985e\u5225)": [[262, "json.JSONDecoder", false]], "jsonencoder (json \u4e2d\u7684\u985e\u5225)": [[262, "json.JSONEncoder", false]], "july (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JULY", false]], "jump (monitoring event)": [[353, "monitoring-event-JUMP", false]], "jump (opcode)": [[191, "opcode-JUMP", false]], "jump (pdb command)": [[297, "pdbcommand-jump", false]], "jump_backward (opcode)": [[191, "opcode-JUMP_BACKWARD", false]], "jump_backward_no_interrupt (opcode)": [[191, "opcode-JUMP_BACKWARD_NO_INTERRUPT", false]], "jump_forward (opcode)": [[191, "opcode-JUMP_FORWARD", false]], "jump_no_interrupt (opcode)": [[191, "opcode-JUMP_NO_INTERRUPT", false]], "june (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.JUNE", false]], "kbhit() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.kbhit", false]], "kdedir": [[403, "index-2", false]], "keep (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.KEEP", false]], "kevent() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.kevent", false]], "key (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.key", false]], "key (zoneinfo.zoneinfo \u7684\u5c6c\u6027)": [[425, "zoneinfo.ZoneInfo.key", false]], "key function\uff08\u9375\u51fd\u5f0f\uff09": [[87, "term-key-function", true]], "key/value pair\uff08\u9375/\u503c\u5c0d\uff09": [[430, "index-17", false]], "key_a1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_A1", false]], "key_a3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_A3", false]], "key_all_access (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_ALL_ACCESS", false]], "key_b2 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_B2", false]], "key_backspace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BACKSPACE", false]], "key_beg (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BEG", false]], "key_break (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BREAK", false]], "key_btab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_BTAB", false]], "key_c1 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_C1", false]], "key_c3 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_C3", false]], "key_cancel (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CANCEL", false]], "key_catab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CATAB", false]], "key_clear (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CLEAR", false]], "key_close (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CLOSE", false]], "key_command (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_COMMAND", false]], "key_copy (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_COPY", false]], "key_create (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CREATE", false]], "key_create_link (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_CREATE_LINK", false]], "key_create_sub_key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_CREATE_SUB_KEY", false]], "key_ctab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_CTAB", false]], "key_dc (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DC", false]], "key_dl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DL", false]], "key_down (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_DOWN", false]], "key_eic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EIC", false]], "key_end (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_END", false]], "key_enter (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_ENTER", false]], "key_enumerate_sub_keys (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_ENUMERATE_SUB_KEYS", false]], "key_eol (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EOL", false]], "key_eos (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EOS", false]], "key_execute (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_EXECUTE", false]], "key_exit (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_EXIT", false]], "key_f0 (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_F0", false]], "key_find (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_FIND", false]], "key_fn (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_Fn", false]], "key_help (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_HELP", false]], "key_home (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_HOME", false]], "key_ic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_IC", false]], "key_il (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_IL", false]], "key_left (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_LEFT", false]], "key_ll (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_LL", false]], "key_mark (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MARK", false]], "key_max (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MAX", false]], "key_message (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MESSAGE", false]], "key_min (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MIN", false]], "key_mouse (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MOUSE", false]], "key_move (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_MOVE", false]], "key_next (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_NEXT", false]], "key_notify (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_NOTIFY", false]], "key_npage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_NPAGE", false]], "key_open (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_OPEN", false]], "key_options (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_OPTIONS", false]], "key_ppage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PPAGE", false]], "key_previous (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PREVIOUS", false]], "key_print (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_PRINT", false]], "key_query_value (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_QUERY_VALUE", false]], "key_read (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_READ", false]], "key_redo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REDO", false]], "key_reference (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REFERENCE", false]], "key_refresh (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REFRESH", false]], "key_replace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_REPLACE", false]], "key_reset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESET", false]], "key_resize (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESIZE", false]], "key_restart (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESTART", false]], "key_resume (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RESUME", false]], "key_right (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_RIGHT", false]], "key_save (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SAVE", false]], "key_sbeg (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SBEG", false]], "key_scancel (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCANCEL", false]], "key_scommand (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCOMMAND", false]], "key_scopy (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCOPY", false]], "key_screate (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SCREATE", false]], "key_sdc (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SDC", false]], "key_sdl (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SDL", false]], "key_select (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SELECT", false]], "key_send (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEND", false]], "key_seol (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEOL", false]], "key_set_value (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_SET_VALUE", false]], "key_sexit (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SEXIT", false]], "key_sf (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SF", false]], "key_sfind (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SFIND", false]], "key_shelp (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SHELP", false]], "key_shome (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SHOME", false]], "key_sic (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SIC", false]], "key_sleft (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SLEFT", false]], "key_smessage (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SMESSAGE", false]], "key_smove (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SMOVE", false]], "key_snext (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SNEXT", false]], "key_soptions (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SOPTIONS", false]], "key_sprevious (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SPREVIOUS", false]], "key_sprint (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SPRINT", false]], "key_sr (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SR", false]], "key_sredo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SREDO", false]], "key_sreplace (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SREPLACE", false]], "key_sreset (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRESET", false]], "key_sright (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRIGHT", false]], "key_srsume (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SRSUME", false]], "key_ssave (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SSAVE", false]], "key_ssuspend (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SSUSPEND", false]], "key_stab (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_STAB", false]], "key_sundo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SUNDO", false]], "key_suspend (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_SUSPEND", false]], "key_undo (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_UNDO", false]], "key_up (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.KEY_UP", false]], "key_wow64_32key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WOW64_32KEY", false]], "key_wow64_64key (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WOW64_64KEY", false]], "key_write (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.KEY_WRITE", false]], "keyboardinterrupt": [[213, "KeyboardInterrupt", false]], "keyboardinterrupt\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false]], "keyerror": [[213, "KeyError", false]], "keylog_filename (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.keylog_filename", false]], "keyname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.keyname", false]], "keypad() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.keypad", false]], "keyrefs() (weakref.weakkeydictionary \u7684\u65b9\u6cd5)": [[402, "weakref.WeakKeyDictionary.keyrefs", false]], "keys() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.keys", false]], "keys() (dict \u7684\u65b9\u6cd5)": [[344, "dict.keys", false]], "keys() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.keys", false]], "keys() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.keys", false]], "keys() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.keys", false]], "keys() (sqlite3.row \u7684\u65b9\u6cd5)": [[340, "sqlite3.Row.keys", false]], "keys() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.keys", false]], "keys() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.keys", false]], "keysview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.KeysView", false]], "keysview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.KeysView", false]], "keyword": [[263, "module-keyword", false]], "keyword (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.keyword", false]], "keyword argument\uff08\u95dc\u9375\u5b57\u5f15\u6578\uff09": [[87, "term-keyword-argument", true]], "keywords (functools.partial \u7684\u5c6c\u6027)": [[226, "functools.partial.keywords", false]], "keyword\uff08\u95dc\u9375\u5b57\uff09": [[427, "index-12", false], [427, "index-13", false], [427, "index-14", false], [427, "index-16", false], [427, "index-18", false], [427, "index-18", true], [427, "index-3", false], [427, "index-4", false], [427, "index-49", false], [427, "index-6", false], [427, "index-9", false], [430, "index-23", false], [430, "index-57", false], [435, "index-13", false], [435, "index-14", false], [436, "index-25", false], [436, "index-31", false], [436, "index-32", false], [436, "index-33", false], [436, "index-34", false]], "key\uff08\u9375\uff09": [[430, "index-17", false]], "kill() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.kill", false]], "kill() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.kill", false]], "kill() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.kill", false]], "kill() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.kill", false]], "kill() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.kill", false]], "kill_python() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.kill_python", false]], "killchar() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.killchar", false]], "killing": [[293, "index-37", false], [293, "index-38", false]], "killpg() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.killpg", false]], "kind (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.kind", false]], "knownfiles (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.knownfiles", false]], "kqueue() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.kqueue", false]], "kqueueselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.KqueueSelector", false]], "kw_names (opcode)": [[191, "opcode-KW_NAMES", false]], "kw_only (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.KW_ONLY", false]], "kwargs (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.kwargs", false]], "kwargs (typing.paramspec \u7684\u5c6c\u6027)": [[386, "typing.ParamSpec.kwargs", false]], "kwlist (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.kwlist", false]], "l (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.L", false]], "labelentry (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.LabelEntry", false]], "labelframe (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.LabelFrame", false]], "lambda": [[87, "term-lambda", true], [427, "index-35", false], [430, "index-90", false]], "lambda (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Lambda", false]], "lambda expression\uff08lambda \u904b\u7b97\u5f0f\uff09": [[430, "index-90", false]], "lambdatype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.LambdaType", false]], "lang": [[230, "index-3", false], [230, "index-8", false], [266, "index-1", false], [266, "index-2", false], [266, "index-3", false]], "language": [[230, "index-0", false], [230, "index-5", false]], "language\uff08\u8a9e\u8a00\uff09": [[344, "index-11", false], [428, "index-13", false], [428, "index-4", false], [428, "index-42", false], [430, "index-77", false]], "large files\uff08\u5927\u578b\u6a94\u6848\uff09": [[306, "index-1", false]], "largest (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LARGEST", false]], "largezipfile": [[422, "zipfile.LargeZipFile", false]], "last() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.last", false]], "last_accepted (multiprocessing.connection.listener \u7684\u5c6c\u6027)": [[283, "multiprocessing.connection.Listener.last_accepted", false]], "last_exc (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_exc", false]], "last_traceback (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_traceback", false]], "last_traceback \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-66", false]], "last_type (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_type", false]], "last_value (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.last_value", false]], "lastchild (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.lastChild", false]], "lastcmd (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.lastcmd", false]], "lastgroup (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.lastgroup", false]], "lastindex (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.lastindex", false]], "lastresort (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.lastResort", false]], "lastrowid (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.lastrowid", false]], "layout() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.layout", false]], "lazycache() (\u65bc linecache \u6a21\u7d44\u4e2d)": [[265, "linecache.lazycache", false]], "lazyloader (importlib.util \u4e2d\u7684\u985e\u5225)": [[250, "importlib.util.LazyLoader", false]], "lbrace (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LBRACE", false]], "lbyl": [[87, "term-LBYL", true]], "lc_all": [[230, "index-1", false], [230, "index-6", false]], "lc_all (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_ALL", false]], "lc_collate (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_COLLATE", false]], "lc_ctype (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_CTYPE", false]], "lc_messages": [[230, "index-2", false], [230, "index-7", false]], "lc_messages (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_MESSAGES", false]], "lc_monetary (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_MONETARY", false]], "lc_numeric (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_NUMERIC", false]], "lc_time (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.LC_TIME", false]], "lchflags() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchflags", false]], "lchmod() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.lchmod", false]], "lchmod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchmod", false]], "lchown() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lchown", false]], "lcm() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.lcm", false]], "ldcxxshared": [[469, "index-11", false]], "ldexp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ldexp", false]], "ldflags": [[456, "envvar-LDFLAGS", false], [456, "index-12", false], [456, "index-19", false], [456, "index-21", false], [456, "index-24", false], [456, "index-25", false], [456, "index-26", false], [456, "index-29", false], [465, "index-26", false]], "ldflags_nodist": [[456, "envvar-LDFLAGS_NODIST", false], [456, "index-22", false], [456, "index-27", false]], "ldshared": [[456, "envvar-LDSHARED", false]], "le() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.le", false]], "leading whitespace\uff08\u524d\u7f6e\u7a7a\u767d\uff09": [[435, "index-8", false]], "leapdays() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.leapdays", false]], "leaveok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.leaveok", false]], "left (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left", false]], "left() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.left", false]], "left_list (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left_list", false]], "left_only (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.left_only", false]], "leftshift (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LEFTSHIFT", false]], "leftshiftequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LEFTSHIFTEQUAL", false]], "legacy_transaction_control (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.LEGACY_TRANSACTION_CONTROL", false]], "len": [[22, "index-1", false], [38, "index-1", false], [40, "index-0", false], [49, "index-8", false], [54, "index-0", false], [55, "index-1", false], [344, "index-20", false], [344, "index-52", false], [428, "index-15", false], [428, "index-27", false], [428, "index-30", false], [428, "index-98", false]], "len()": [[225, "len", false]], "lenfunc (c type)": [[63, "c.lenfunc", false]], "length (xml.dom.namednodemap \u7684\u5c6c\u6027)": [[410, "xml.dom.NamedNodeMap.length", false]], "length (xml.dom.nodelist \u7684\u5c6c\u6027)": [[410, "xml.dom.NodeList.length", false]], "length_hint() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.length_hint", false]], "less (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LESS", false]], "lessequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LESSEQUAL", false]], "level (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.level", false]], "lexical analysis\uff08\u8a5e\u6cd5\u5206\u6790\uff09": [[435, "index-0", false]], "lexical definitions\uff08\u8a5e\u6cd5\u5b9a\u7fa9\uff09": [[434, "index-1", false]], "lexicalhandler (xml.sax.handler \u4e2d\u7684\u985e\u5225)": [[415, "xml.sax.handler.LexicalHandler", false]], "lexists() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.lexists", false]], "lf (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.LF", false]], "lgamma() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.lgamma", false]], "lib2to3": [[112, "module-lib2to3", false]], "libc_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.libc_ver", false]], "libraries_assembly_name_prefix (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LIBRARIES_ASSEMBLY_NAME_PREFIX", false]], "library (ssl.sslerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLError.library", false]], "library (\u65bc dbm.ndbm \u6a21\u7d44\u4e2d)": [[184, "dbm.ndbm.library", false]], "libraryloader (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LibraryLoader", false]], "libs": [[456, "envvar-LIBS", false]], "license (\u5167\u5efa\u8b8a\u6578)": [[168, "license", false]], "lifoqueue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.LifoQueue", false]], "lifoqueue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.LifoQueue", false]], "light-weight processes": [[115, "index-0", false]], "limit_denominator() (fractions.fraction \u7684\u65b9\u6cd5)": [[221, "fractions.Fraction.limit_denominator", false]], "limitoverrunerror": [[127, "asyncio.LimitOverrunError", false]], "lin2adpcm() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2adpcm", false]], "lin2alaw() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2alaw", false]], "lin2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2lin", false]], "lin2ulaw() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.lin2ulaw", false]], "line (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.line", false]], "line (monitoring event)": [[353, "monitoring-event-LINE", false]], "line (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.line", false]], "line continuation\uff08\u5217\u5ef6\u7e8c\uff09": [[435, "index-6", false]], "line joining\uff08\u5217\u9023\u63a5\uff09": [[435, "index-3", false], [435, "index-6", false]], "line structure\uff08\u5217\u7d50\u69cb\uff09": [[435, "index-2", false]], "line() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.line", false]], "line-buffered i/o\uff08\u5217\u7de9\u885d i/o\uff09": [[225, "index-8", false]], "line_buffering (io.textiowrapper \u7684\u5c6c\u6027)": [[258, "io.TextIOWrapper.line_buffering", false]], "line_num (csv.csvreader \u7684\u5c6c\u6027)": [[175, "csv.csvreader.line_num", false]], "linear_regression() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.linear_regression", false]], "linecache": [[265, "module-linecache", false]], "lineno (ast.ast \u7684\u5c6c\u6027)": [[122, "ast.AST.lineno", false]], "lineno (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.lineno", false]], "lineno (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.lineno", false]], "lineno (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.lineno", false]], "lineno (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.lineno", false]], "lineno (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.lineno", false]], "lineno (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.lineno", false]], "lineno (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.lineno", false]], "lineno (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.lineno", false]], "lineno (re.error \u7684\u5c6c\u6027)": [[319, "re.error.lineno", false]], "lineno (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.lineno", false]], "lineno (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.lineno", false]], "lineno (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.lineno", false]], "lineno (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.lineno", false]], "lineno (tracemalloc.filter \u7684\u5c6c\u6027)": [[382, "tracemalloc.Filter.lineno", false]], "lineno (tracemalloc.frame \u7684\u5c6c\u6027)": [[382, "tracemalloc.Frame.lineno", false]], "lineno (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.lineno", false]], "lineno() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.lineno", false]], "lines": [[177, "index-0", false], [177, "index-3", false], [177, "index-5", false]], "lines (os.terminal_size \u7684\u5c6c\u6027)": [[293, "os.terminal_size.lines", false]], "lines (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.LINES", false]], "linesep (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.linesep", false]], "linesep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.linesep", false]], "lineterminator (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.lineterminator", false]], "linetoolong": [[242, "http.client.LineTooLong", false]], "link() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.link", false]], "linkcc": [[456, "envvar-LINKCC", false]], "linkname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.linkname", false]], "linkoutsidedestinationerror": [[358, "tarfile.LinkOutsideDestinationError", false]], "list (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.List", false]], "list (pdb command)": [[297, "pdbcommand-list", false]], "list (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.List", false]], "list (\u5167\u5efa\u985e\u5225)": [[344, "list", false]], "list comprehension\uff08\u4e32\u5217\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-list-comprehension", true]], "list expression\uff08\u4e32\u5217\u904b\u7b97\u5f0f\uff09": [[430, "index-15", false]], "list() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.list", false]], "list() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.list", false]], "list() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.list", false]], "list() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.list", false]], "list() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.list", false]], "list_append (opcode)": [[191, "opcode-LIST_APPEND", false]], "list_dialects() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.list_dialects", false]], "list_extend (opcode)": [[191, "opcode-LIST_EXTEND", false]], "list_folders() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.list_folders", false]], "list_folders() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.list_folders", false]], "listcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ListComp", false]], "listdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listdir", false]], "listdrives() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listdrives", false]], "listen() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.listen", false]], "listen() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.listen", false]], "listen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.listen", false]], "listener (logging.handlers.queuehandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.QueueHandler.listener", false]], "listener (multiprocessing.connection \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.connection.Listener", false]], "listmethods() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.listMethods", false]], "listmounts() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listmounts", false]], "listnotebook (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.ListNoteBook", false]], "listvolumes() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listvolumes", false]], "listxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.listxattr", false]], "list\uff08\u4e32\u5217\uff09": [[38, "index-0", false], [87, "term-list", true], [344, "index-23", false], [344, "index-24", false], [344, "index-25", false], [427, "index-6", false], [428, "index-25", false], [430, "index-15", false], [430, "index-40", false], [430, "index-42", false], [430, "index-45", false], [430, "index-91", false], [436, "index-1", false], [436, "index-10", false], [436, "index-2", false], [436, "index-21", false], [436, "index-5", false], [436, "index-6", false]], "literal": [[430, "index-6", false]], "literal (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Literal", false]], "literal_eval() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.literal_eval", false]], "literalstring (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.LiteralString", false]], "literals\uff08\u5b57\u9762\u503c\uff09": [[344, "index-12", false]], "literal\uff08\u5e38\u6578\uff09": [[435, "index-16", false]], "littleendianstructure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LittleEndianStructure", false]], "littleendianunion (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.LittleEndianUnion", false]], "ljust() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.ljust", false]], "ljust() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.ljust", false]], "ljust() (str \u7684\u65b9\u6cd5)": [[344, "str.ljust", false]], "lk_lock (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_LOCK", false]], "lk_nblck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_NBLCK", false]], "lk_nbrlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_NBRLCK", false]], "lk_rlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_RLCK", false]], "lk_unlck (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.LK_UNLCK", false]], "ll (pdb command)": [[297, "pdbcommand-ll", false]], "lmtp (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.LMTP", false]], "ln() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.ln", false]], "ln() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.ln", false]], "lnktype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.LNKTYPE", false]], "load (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Load", false]], "load() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.load", false]], "load() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.load", false]], "load() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.load", false]], "load() (tracemalloc.snapshot \u7684\u985e\u5225\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.load", false]], "load() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.load", false]], "load() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.load", false]], "load() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.load", false]], "load() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.load", false]], "load() (\u65bc tomllib \u6a21\u7d44\u4e2d)": [[379, "tomllib.load", false]], "load_assertion_error (opcode)": [[191, "opcode-LOAD_ASSERTION_ERROR", false]], "load_attr (opcode)": [[191, "opcode-LOAD_ATTR", false]], "load_build_class (opcode)": [[191, "opcode-LOAD_BUILD_CLASS", false]], "load_cert_chain() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_cert_chain", false]], "load_closure (opcode)": [[191, "opcode-LOAD_CLOSURE", false]], "load_const (opcode)": [[191, "opcode-LOAD_CONST", false]], "load_default_certs() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_default_certs", false]], "load_deref (opcode)": [[191, "opcode-LOAD_DEREF", false]], "load_dh_params() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_dh_params", false]], "load_extension() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.load_extension", false]], "load_fast (opcode)": [[191, "opcode-LOAD_FAST", false]], "load_fast_and_clear (opcode)": [[191, "opcode-LOAD_FAST_AND_CLEAR", false]], "load_fast_check (opcode)": [[191, "opcode-LOAD_FAST_CHECK", false]], "load_from_dict_or_deref (opcode)": [[191, "opcode-LOAD_FROM_DICT_OR_DEREF", false]], "load_from_dict_or_globals (opcode)": [[191, "opcode-LOAD_FROM_DICT_OR_GLOBALS", false]], "load_global (opcode)": [[191, "opcode-LOAD_GLOBAL", false]], "load_locals (opcode)": [[191, "opcode-LOAD_LOCALS", false]], "load_method (opcode)": [[191, "opcode-LOAD_METHOD", false]], "load_module() (importlib.abc.fileloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.FileLoader.load_module", false]], "load_module() (importlib.abc.inspectloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.load_module", false]], "load_module() (importlib.abc.loader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Loader.load_module", false]], "load_module() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.load_module", false]], "load_module() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.load_module", false]], "load_module() (importlib.machinery.sourcelessfileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourcelessFileLoader.load_module", false]], "load_module() (zipimport.zipimporter \u7684\u65b9\u6cd5)": [[423, "zipimport.zipimporter.load_module", false]], "load_name (opcode)": [[191, "opcode-LOAD_NAME", false]], "load_package_tests() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.load_package_tests", false]], "load_super_attr (opcode)": [[191, "opcode-LOAD_SUPER_ATTR", false]], "load_verify_locations() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.load_verify_locations", false]], "loader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.Loader", false]], "loader (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.loader", false]], "loader_state (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.loader_state", false]], "loaderror": [[243, "http.cookiejar.LoadError", false]], "loader\uff08\u8f09\u5165\u5668\uff09": [[87, "term-loader", true], [432, "index-8", false]], "loadfiledialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.LoadFileDialog", false]], "loadkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.LoadKey", false]], "loadlibrary() (ctypes.libraryloader \u7684\u65b9\u6cd5)": [[176, "ctypes.LibraryLoader.LoadLibrary", false]], "loads() (\u65bc json \u6a21\u7d44\u4e2d)": [[262, "json.loads", false]], "loads() (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.loads", false]], "loads() (\u65bc pickle \u6a21\u7d44\u4e2d)": [[299, "pickle.loads", false]], "loads() (\u65bc plistlib \u6a21\u7d44\u4e2d)": [[304, "plistlib.loads", false]], "loads() (\u65bc tomllib \u6a21\u7d44\u4e2d)": [[379, "tomllib.loads", false]], "loads() (\u65bc xmlrpc.client \u6a21\u7d44\u4e2d)": [[419, "xmlrpc.client.loads", false]], "loadtestsfrommodule() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromModule", false]], "loadtestsfromname() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromName", false]], "loadtestsfromnames() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromNames", false]], "loadtestsfromtestcase() (unittest.testloader \u7684\u65b9\u6cd5)": [[388, "unittest.TestLoader.loadTestsFromTestCase", false]], "local (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.local", false]], "local_creds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.LOCAL_CREDS", false]], "local_creds_persistent (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.LOCAL_CREDS_PERSISTENT", false]], "localcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.localcontext", false]], "locale": [[266, "module-locale", false]], "locale (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.LOCALE", false]], "locale encoding\uff08\u5340\u57df\u7de8\u78bc\uff09": [[87, "term-locale-encoding", true]], "localeconv() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.localeconv", false]], "localehtmlcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.LocaleHTMLCalendar", false]], "localetextcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.LocaleTextCalendar", false]], "localize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.localize", false]], "localname (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.localName", false]], "localname (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.localName", false]], "locals()": [[225, "locals", false]], "localtime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.localtime", false]], "localtime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.localtime", false]], "locator (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.Locator", false]], "lock (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Lock", false]], "lock (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Lock", false]], "lock (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.lock", false]], "lock (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Lock", false]], "lock() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.lock", false]], "lock() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.lock", false]], "lock() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.lock", false]], "lock() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.lock", false]], "lock() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.lock", false]], "lock() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.lock", false]], "lock() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Lock", false]], "lock, interpreter\uff08\u9396\u3001\u76f4\u8b6f\u5668\uff09": [[33, "index-32", false]], "lock_ex (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_EX", false]], "lock_nb (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_NB", false]], "lock_sh (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_SH", false]], "lock_un (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.LOCK_UN", false]], "locked() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.locked", false]], "locked() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.locked", false]], "locked() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.locked", false]], "locked() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.locked", false]], "locked() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.locked", false]], "lockf() (\u65bc fcntl \u6a21\u7d44\u4e2d)": [[215, "fcntl.lockf", false]], "lockf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lockf", false]], "locking() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.locking", false]], "locktype (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.LockType", false]], "log() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.log", false]], "log() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.log", false]], "log() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.log", false]], "log() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log", false]], "log10() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.log10", false]], "log10() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.log10", false]], "log10() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.log10", false]], "log10() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log10", false]], "log1p() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log1p", false]], "log2() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.log2", false]], "log_date_time_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_date_time_string", false]], "log_error() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_error", false]], "log_exception() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.log_exception", false]], "log_message() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_message", false]], "log_request() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.log_request", false]], "log_to_stderr() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.log_to_stderr", false]], "logb() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logb", false]], "logb() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logb", false]], "logger (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.Logger", false]], "loggeradapter (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.LoggerAdapter", false]], "logging": [[267, "module-logging", false]], "logging.config": [[268, "module-logging.config", false]], "logging.handlers": [[269, "module-logging.handlers", false]], "logging\uff08\u65e5\u8a8c\uff09": [[267, "index-0", false]], "logical line\uff08\u908f\u8f2f\u5217\uff09": [[435, "index-3", false]], "logical_and() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_and", false]], "logical_and() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_and", false]], "logical_invert() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_invert", false]], "logical_invert() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_invert", false]], "logical_or() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_or", false]], "logical_or() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_or", false]], "logical_xor() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.logical_xor", false]], "logical_xor() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.logical_xor", false]], "login() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.login", false]], "login() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.login", false]], "login() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.login", false]], "login() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.login", false]], "login_cram_md5() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.login_cram_md5", false]], "login_tty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.login_tty", false]], "logname": [[229, "index-6", false], [293, "index-10", false]], "lognormvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.lognormvariate", false]], "logout() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.logout", false]], "logrecord (logging \u4e2d\u7684\u985e\u5225)": [[267, "logging.LogRecord", false]], "long (2to3 fixer)": [[112, "to3fixer-long", false]], "long integer\uff08\u9577\u6574\u6570\uff09": [[39, "index-0", false]], "long_max\uff08c \u5de8\u96c6\uff09": [[39, "index-1", false]], "long_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LONG_TIMEOUT", false]], "longmessage (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.longMessage", false]], "longname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.longname", false]], "lookup() (symtable.symboltable \u7684\u65b9\u6cd5)": [[351, "symtable.SymbolTable.lookup", false]], "lookup() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.lookup", false]], "lookup() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.lookup", false]], "lookup() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.lookup", false]], "lookup_error() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.lookup_error", false]], "lookuperror": [[213, "LookupError", false]], "loop control\uff08\u8ff4\u5708\u63a7\u5236\uff09": [[436, "index-31", false]], "loop over\uff08\u8ff4\u5708\uff09": [[344, "index-21", false]], "loopback_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.LOOPBACK_TIMEOUT", false]], "loop\uff08\u8ff4\u5708\uff09": [[344, "index-21", false], [427, "index-4", false], [427, "index-6", false], [436, "index-30", false], [436, "index-33", false]], "lower() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.lower", false]], "lower() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.lower", false]], "lower() (str \u7684\u65b9\u6cd5)": [[344, "str.lower", false]], "lpar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LPAR", false]], "lpattributelist (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.lpAttributeList", false]], "lru_cache() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.lru_cache", false]], "lseek() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lseek", false]], "lshift (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.LShift", false]], "lshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.lshift", false]], "lsqb (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.LSQB", false]], "lstat() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.lstat", false]], "lstat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.lstat", false]], "lstrip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.lstrip", false]], "lstrip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.lstrip", false]], "lstrip() (str \u7684\u65b9\u6cd5)": [[344, "str.lstrip", false]], "lsub() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.lsub", false]], "lt (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Lt", false]], "lt() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.lt", false]], "lt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.lt", false]], "lte (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.LtE", false]], "lwpcookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.LWPCookieJar", false]], "lzma": [[270, "module-lzma", false]], "lzmacompressor (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMACompressor", false]], "lzmadecompressor (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMADecompressor", false]], "lzmaerror": [[270, "lzma.LZMAError", false]], "lzmafile (lzma \u4e2d\u7684\u985e\u5225)": [[270, "lzma.LZMAFile", false]], "m (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.M", false]], "mac_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.mac_ver", false]], "machine() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.machine", false]], "macros (netrc.netrc \u7684\u5c6c\u6027)": [[286, "netrc.netrc.macros", false]], "madv_autosync (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_AUTOSYNC", false]], "madv_core (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_CORE", false]], "madv_dodump (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DODUMP", false]], "madv_dofork (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DOFORK", false]], "madv_dontdump (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTDUMP", false]], "madv_dontfork (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTFORK", false]], "madv_dontneed (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_DONTNEED", false]], "madv_free (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE", false]], "madv_free_reusable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE_REUSABLE", false]], "madv_free_reuse (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_FREE_REUSE", false]], "madv_hugepage (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_HUGEPAGE", false]], "madv_hwpoison (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_HWPOISON", false]], "madv_mergeable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_MERGEABLE", false]], "madv_nocore (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOCORE", false]], "madv_nohugepage (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOHUGEPAGE", false]], "madv_normal (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NORMAL", false]], "madv_nosync (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_NOSYNC", false]], "madv_protect (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_PROTECT", false]], "madv_random (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_RANDOM", false]], "madv_remove (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_REMOVE", false]], "madv_sequential (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_SEQUENTIAL", false]], "madv_soft_offline (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_SOFT_OFFLINE", false]], "madv_unmergeable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_UNMERGEABLE", false]], "madv_willneed (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MADV_WILLNEED", false]], "madvise() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.madvise", false]], "magic": [[87, "index-23", false]], "magic method\uff08\u9b54\u8853\u65b9\u6cd5\uff09": [[87, "term-magic-method", true]], "magic_number (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.MAGIC_NUMBER", false]], "magicmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.MagicMock", false]], "mailbox": [[271, "module-mailbox", false]], "mailbox (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Mailbox", false]], "mailcap": [[272, "module-mailcap", false]], "maildir (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Maildir", false]], "maildirmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MaildirMessage", false]], "main()": [[33, "index-16", false], [33, "index-19", false], [33, "index-29", false]], "main() (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.main", false]], "main() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.main", false]], "main_thread() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.main_thread", false]], "mainloop() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.mainloop", false]], "maintype (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.maintype", false]], "major (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.major", false]], "major() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.major", false]], "make_alternative() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_alternative", false]], "make_archive() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.make_archive", false]], "make_bad_fd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.make_bad_fd", false]], "make_cell (opcode)": [[191, "opcode-MAKE_CELL", false]], "make_cookies() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.make_cookies", false]], "make_dataclass() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.make_dataclass", false]], "make_file() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.make_file", false]], "make_function (opcode)": [[191, "opcode-MAKE_FUNCTION", false]], "make_header() (\u65bc email.header \u6a21\u7d44\u4e2d)": [[202, "email.header.make_header", false]], "make_legacy_pyc() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.make_legacy_pyc", false]], "make_mixed() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_mixed", false]], "make_msgid() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.make_msgid", false]], "make_parser() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.make_parser", false]], "make_pkg() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_pkg", false]], "make_related() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.make_related", false]], "make_script() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_script", false]], "make_server() (\u65bc wsgiref.simple_server \u6a21\u7d44\u4e2d)": [[407, "wsgiref.simple_server.make_server", false]], "make_table() (difflib.htmldiff \u7684\u65b9\u6cd5)": [[190, "difflib.HtmlDiff.make_table", false]], "make_zip_pkg() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_zip_pkg", false]], "make_zip_script() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.make_zip_script", false]], "makedev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.makedev", false]], "makedirs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.makedirs", false]], "makeelement() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.makeelement", false]], "makefile() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.makefile", false]], "makefile() \uff08socket \u65b9\u6cd5\uff09": [[428, "index-55", false]], "makelogrecord() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.makeLogRecord", false]], "makepickle() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.makePickle", false]], "makerecord() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.makeRecord", false]], "makesocket() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.makeSocket", false]], "makesocket() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.makeSocket", false]], "maketrans() (bytearray \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "bytearray.maketrans", false]], "maketrans() (bytes \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "bytes.maketrans", false]], "maketrans() (str \u7684\u975c\u614b\u65b9\u6cd5)": [[344, "str.maketrans", false]], "malloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "manager (logging.loggeradapter \u7684\u5c6c\u6027)": [[267, "logging.LoggerAdapter.manager", false]], "mangle_from_ (email.policy.compat32 \u7684\u5c6c\u6027)": [[208, "email.policy.Compat32.mangle_from_", false]], "mangle_from_ (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.mangle_from_", false]], "mangling": [[430, "index-5", false]], "mangling\uff08\u4fee\u98fe\uff09": [[440, "index-1", false]], "mant_dig (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.mant_dig", false]], "map (2to3 fixer)": [[112, "to3fixer-map", false]], "map()": [[225, "map", false]], "map() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.map", false]], "map() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.map", false]], "map() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.map", false]], "map_add (opcode)": [[191, "opcode-MAP_ADD", false]], "map_aligned_super (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ALIGNED_SUPER", false]], "map_anon (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ANON", false]], "map_anonymous (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_ANONYMOUS", false]], "map_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.map_async", false]], "map_conceal (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_CONCEAL", false]], "map_denywrite (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_DENYWRITE", false]], "map_executable (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_EXECUTABLE", false]], "map_populate (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_POPULATE", false]], "map_private (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_PRIVATE", false]], "map_shared (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_SHARED", false]], "map_stack (\u65bc mmap \u6a21\u7d44\u4e2d)": [[278, "mmap.MAP_STACK", false]], "map_table_b2() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.map_table_b2", false]], "map_table_b3() (\u65bc stringprep \u6a21\u7d44\u4e2d)": [[346, "stringprep.map_table_b3", false]], "map_to_type() (email.headerregistry.headerregistry \u7684\u65b9\u6cd5)": [[203, "email.headerregistry.HeaderRegistry.map_to_type", false]], "maplogrecord() (logging.handlers.httphandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.HTTPHandler.mapLogRecord", false]], "mapping (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Mapping", false]], "mapping (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Mapping", false]], "mapping() (msilib.control \u7684\u65b9\u6cd5)": [[281, "msilib.Control.mapping", false]], "mappingproxytype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.MappingProxyType", false]], "mappingview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MappingView", false]], "mappingview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MappingView", false]], "mapping\uff08\u5c0d\u6620\uff09": [[16, "index-2", false], [87, "term-mapping", true], [344, "index-52", false], [428, "index-30", false], [428, "index-53", false], [430, "index-42", false], [436, "index-11", false]], "mappriority() (logging.handlers.sysloghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SysLogHandler.mapPriority", false]], "maps (collections.chainmap \u7684\u5c6c\u6027)": [[160, "collections.ChainMap.maps", false]], "maps() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.maps", false]], "march (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MARCH", false]], "markcoroutinefunction() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.markcoroutinefunction", false]], "marker\uff08\u6a19\u8a18\uff09": [[193, "index-1", false], [381, "index-1", false]], "marshal": [[274, "module-marshal", false]], "marshalling": [[299, "index-0", false]], "masking\uff08\u906e\u7f69\uff09": [[344, "index-16", false]], "master (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.master", false]], "match": [[427, "index-18", false], [427, "index-18", true]], "match (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Match", false]], "match (re \u4e2d\u7684\u985e\u5225)": [[319, "re.Match", false]], "match (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Match", false]], "match statement\uff08\u5339\u914d\u9673\u8ff0\u5f0f\uff09": [[427, "index-18", false]], "match() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.match", false]], "match() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.match", false]], "match() (\u65bc nis \u6a21\u7d44\u4e2d)": [[287, "nis.match", false]], "match() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.match", false]], "match_case (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.match_case", false]], "match_class (opcode)": [[191, "opcode-MATCH_CLASS", false]], "match_keys (opcode)": [[191, "opcode-MATCH_KEYS", false]], "match_mapping (opcode)": [[191, "opcode-MATCH_MAPPING", false]], "match_sequence (opcode)": [[191, "opcode-MATCH_SEQUENCE", false]], "match_value() (test.support.matcher \u7684\u65b9\u6cd5)": [[362, "test.support.Matcher.match_value", false]], "matchas (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchAs", false]], "matchclass (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchClass", false]], "matcher (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.Matcher", false]], "matches() (test.support.matcher \u7684\u65b9\u6cd5)": [[362, "test.support.Matcher.matches", false]], "matchmapping (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchMapping", false]], "matchor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchOr", false]], "matchsequence (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchSequence", false]], "matchsingleton (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchSingleton", false]], "matchstar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchStar", false]], "matchvalue (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatchValue", false]], "math": [[275, "module-math", false], [344, "index-15", false]], "math\uff08\u6578\u5b78\uff09": [[154, "index-1", false]], "matmul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.matmul", false]], "matmult (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.MatMult", false]], "matrix multiplication\uff08\u77e9\u9663\u4e58\u6cd5\uff09": [[430, "index-66", false]], "max": [[344, "index-20", false]], "max (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.max", false]], "max (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.max", false]], "max (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.max", false]], "max (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.max", false]], "max (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max", false]], "max()": [[225, "max", false]], "max() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.max", false]], "max() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.max", false]], "max() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.max", false]], "max_10_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max_10_exp", false]], "max_count (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.max_count", false]], "max_emax (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MAX_EMAX", false]], "max_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.max_exp", false]], "max_interpolation_depth (\u65bc configparser \u6a21\u7d44\u4e2d)": [[167, "configparser.MAX_INTERPOLATION_DEPTH", false]], "max_line_length (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.max_line_length", false]], "max_lines (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.max_lines", false]], "max_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.max_mag", false]], "max_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.max_mag", false]], "max_memuse (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.max_memuse", false]], "max_prec (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MAX_PREC", false]], "max_prefixlen (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.max_prefixlen", false]], "max_prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.max_prefixlen", false]], "max_py_ssize_t (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.MAX_Py_ssize_t", false]], "maxarray (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxarray", false]], "maxdeque (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxdeque", false]], "maxdict (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxdict", false]], "maxdiff (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.maxDiff", false]], "maxfrozenset (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxfrozenset", false]], "maximum_supported (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.MAXIMUM_SUPPORTED", false]], "maximum_version (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.maximum_version", false]], "maxlen (collections.deque \u7684\u5c6c\u6027)": [[160, "collections.deque.maxlen", false]], "maxlevel (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlevel", false]], "maxlist (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlist", false]], "maxlong (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxlong", false]], "maxother (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxother", false]], "maxpp() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.maxpp", false]], "maxset (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxset", false]], "maxsize (asyncio.queue \u7684\u5c6c\u6027)": [[134, "asyncio.Queue.maxsize", false]], "maxsize (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.maxsize", false]], "maxstring (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxstring", false]], "maxtuple (reprlib.repr \u7684\u5c6c\u6027)": [[321, "reprlib.Repr.maxtuple", false]], "maxunicode (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.maxunicode", false]], "maxyear (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.MAXYEAR", false]], "may (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MAY", false]], "mb_iconasterisk (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONASTERISK", false]], "mb_iconexclamation (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONEXCLAMATION", false]], "mb_iconhand (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONHAND", false]], "mb_iconquestion (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_ICONQUESTION", false]], "mb_ok (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MB_OK", false]], "mbox (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.mbox", false]], "mboxmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.mboxMessage", false]], "md5() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.md5", false]], "mean (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.mean", false]], "mean() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.mean", false]], "measure() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.measure", false]], "median (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.median", false]], "median() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median", false]], "median_grouped() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_grouped", false]], "median_high() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_high", false]], "median_low() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.median_low", false]], "member() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.member", false]], "memberdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MemberDescriptorType", false]], "membership\uff08\u6210\u54e1\uff09": [[430, "index-80", false]], "memfd_create() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.memfd_create", false]], "memmove() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.memmove", false]], "memorybio (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.MemoryBIO", false]], "memoryerror": [[213, "MemoryError", false]], "memoryhandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.MemoryHandler", false]], "memoryview (\u5167\u5efa\u985e\u5225)": [[344, "memoryview", false]], "memoryview\uff08\u8a18\u61b6\u9ad4\u8996\u5716\uff09": [[43, "index-0", false], [344, "index-40", false]], "memset() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.memset", false]], "merge() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.merge", false]], "message (baseexceptiongroup \u7684\u5c6c\u6027)": [[213, "BaseExceptionGroup.message", false]], "message (email.message \u4e2d\u7684\u985e\u5225)": [[196, "email.message.Message", false]], "message (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.Message", false]], "message (tkinter.messagebox \u4e2d\u7684\u985e\u5225)": [[373, "tkinter.messagebox.Message", false]], "message digest, md5": [[235, "index-0", false]], "message_factory (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.message_factory", false]], "message_from_binary_file() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_binary_file", false]], "message_from_bytes() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_bytes", false]], "message_from_file() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_file", false]], "message_from_string() (\u65bc email \u6a21\u7d44\u4e2d)": [[207, "email.message_from_string", false]], "messagebeep() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.MessageBeep", false]], "messageclass (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.MessageClass", false]], "messagedefect": [[199, "email.errors.MessageDefect", false]], "messageerror": [[199, "email.errors.MessageError", false]], "messageparseerror": [[199, "email.errors.MessageParseError", false]], "messages (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.messages", false]], "meta": [[432, "index-9", false]], "meta hooks": [[432, "index-9", false]], "meta path finder\uff08\u5143\u8def\u5f91\u5c0b\u6aa2\u5668\uff09": [[87, "term-meta-path-finder", true]], "meta() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.meta", false]], "meta_path (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.meta_path", false]], "metaclass (2to3 fixer)": [[112, "to3fixer-metaclass", false]], "metaclass hint\uff08\u5143\u985e\u5225\u63d0\u793a\uff09": [[428, "index-88", false]], "metaclass\uff08\u5143\u985e\u5225\uff09": [[87, "term-metaclass", true], [428, "index-86", false]], "metapathfinder (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.MetaPathFinder", false]], "metavar (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.metavar", false]], "metavartypehelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.MetavarTypeHelpFormatter", false]], "meter (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Meter", false]], "meth_class (c macro)": [[58, "c.METH_CLASS", false]], "meth_coexist (c macro)": [[58, "c.METH_COEXIST", false]], "meth_fastcall (c macro)": [[58, "c.METH_FASTCALL", false]], "meth_keywords (c macro)": [[58, "c.METH_KEYWORDS", false]], "meth_method (c macro)": [[58, "c.METH_METHOD", false]], "meth_noargs (c macro)": [[58, "c.METH_NOARGS", false]], "meth_o (c macro)": [[58, "c.METH_O", false]], "meth_static (c macro)": [[58, "c.METH_STATIC", false]], "meth_varargs (c macro)": [[58, "c.METH_VARARGS", false]], "method (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.method", false]], "method resolution order\uff08\u65b9\u6cd5\u89e3\u6790\u9806\u5e8f\uff09": [[87, "term-method-resolution-order", true]], "method_blowfish (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_BLOWFISH", false]], "method_calls (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.method_calls", false]], "method_crypt (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_CRYPT", false]], "method_md5 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_MD5", false]], "method_sha256 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_SHA256", false]], "method_sha512 (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.METHOD_SHA512", false]], "methodattrs (2to3 fixer)": [[112, "to3fixer-methodattrs", false]], "methodcaller() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.methodcaller", false]], "methoddescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodDescriptorType", false]], "methodhelp() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.methodHelp", false]], "methods (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.methods", false]], "methods (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.methods", false]], "methodsignature() (xmlrpc.client.serverproxy.system \u7684\u65b9\u6cd5)": [[419, "xmlrpc.client.ServerProxy.system.methodSignature", false]], "methods\uff08\u65b9\u6cd5\uff09": [[344, "index-32", false], [344, "index-43", false]], "methodtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodType", false]], "methodtype\uff08types \u6a21\u7d44\u4e2d\uff09": [[27, "index-1", false], [44, "index-2", false], [45, "index-1", false]], "methodwrappertype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.MethodWrapperType", false]], "method\uff08\u65b9\u6cd5\uff09": [[44, "index-1", false], [87, "index-23", false], [87, "index-31", false], [87, "term-method", true], [344, "index-61", false], [428, "index-37", false], [428, "index-43", false], [430, "index-53", false], [440, "index-0", false]], "metrics() (tkinter.font.font \u7684\u65b9\u6cd5)": [[372, "tkinter.font.Font.metrics", false]], "mfd_allow_sealing (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_ALLOW_SEALING", false]], "mfd_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_CLOEXEC", false]], "mfd_huge_16gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_16GB", false]], "mfd_huge_16mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_16MB", false]], "mfd_huge_1gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_1GB", false]], "mfd_huge_1mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_1MB", false]], "mfd_huge_256mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_256MB", false]], "mfd_huge_2gb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_2GB", false]], "mfd_huge_2mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_2MB", false]], "mfd_huge_32mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_32MB", false]], "mfd_huge_512kb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_512KB", false]], "mfd_huge_512mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_512MB", false]], "mfd_huge_64kb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_64KB", false]], "mfd_huge_8mb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_8MB", false]], "mfd_huge_mask (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_MASK", false]], "mfd_huge_shift (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGE_SHIFT", false]], "mfd_hugetlb (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.MFD_HUGETLB", false]], "mh (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MH", false]], "mhmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MHMessage", false]], "microsecond (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.microsecond", false]], "microsecond (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.microsecond", false]], "mime": [[143, "index-0", false], [151, "index-0", false], [276, "index-0", false], [276, "index-1", false], [317, "index-0", false]], "mime.types": [[276, "index-2", false]], "mimeapplication (email.mime.application \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.application.MIMEApplication", false]], "mimeaudio (email.mime.audio \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.audio.MIMEAudio", false]], "mimebase (email.mime.base \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.base.MIMEBase", false]], "mimeimage (email.mime.image \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.image.MIMEImage", false]], "mimemessage (email.mime.message \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.message.MIMEMessage", false]], "mimemultipart (email.mime.multipart \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.multipart.MIMEMultipart", false]], "mimenonmultipart (email.mime.nonmultipart \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.nonmultipart.MIMENonMultipart", false]], "mimepart (email.message \u4e2d\u7684\u985e\u5225)": [[205, "email.message.MIMEPart", false]], "mimetext (email.mime.text \u4e2d\u7684\u985e\u5225)": [[206, "email.mime.text.MIMEText", false]], "mimetypes": [[276, "module-mimetypes", false]], "mimetypes (mimetypes \u4e2d\u7684\u985e\u5225)": [[276, "mimetypes.MimeTypes", false]], "mimeversionheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.MIMEVersionHeader", false]], "min": [[344, "index-20", false]], "min (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.min", false]], "min (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.min", false]], "min (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.min", false]], "min (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.min", false]], "min (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min", false]], "min()": [[225, "min", false]], "min() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.min", false]], "min() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.min", false]], "min_10_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min_10_exp", false]], "min_emin (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MIN_EMIN", false]], "min_etiny (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.MIN_ETINY", false]], "min_exp (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.min_exp", false]], "min_mag() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.min_mag", false]], "min_mag() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.min_mag", false]], "minequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.MINEQUAL", false]], "minimum_supported (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.MINIMUM_SUPPORTED", false]], "minimum_version (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.minimum_version", false]], "minmax() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.minmax", false]], "minor (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.minor", false]], "minor() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.minor", false]], "minus (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.MINUS", false]], "minus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.minus", false]], "minus\uff08\u6e1b\uff09": [[430, "index-60", false]], "minute (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.minute", false]], "minute (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.minute", false]], "minyear (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.MINYEAR", false]], "mirrored() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.mirrored", false]], "misc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.misc_header", false]], "missing (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.MISSING", false]], "missing (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.MISSING", false]], "missing (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.MISSING", false]], "missing_c_docstrings (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.MISSING_C_DOCSTRINGS", false]], "missing_compiler_executable() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.missing_compiler_executable", false]], "missingsectionheadererror": [[167, "configparser.MissingSectionHeaderError", false]], "mixerdev": [[295, "index-2", false]], "mkd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.mkd", false]], "mkdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.mkdir", false]], "mkdir() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.mkdir", false]], "mkdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mkdir", false]], "mkdtemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mkdtemp", false]], "mkfifo() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mkfifo", false]], "mknod() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.mknod", false]], "mksalt() (\u65bc crypt \u6a21\u7d44\u4e2d)": [[173, "crypt.mksalt", false]], "mkstemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mkstemp", false]], "mktemp() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.mktemp", false]], "mktime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.mktime", false]], "mktime_tz() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.mktime_tz", false]], "mlsd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.mlsd", false]], "mmap": [[278, "module-mmap", false]], "mmap (mmap \u4e2d\u7684\u985e\u5225)": [[278, "mmap.mmap", false]], "mmdf (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MMDF", false]], "mmdfmessage (mailbox \u4e2d\u7684\u985e\u5225)": [[271, "mailbox.MMDFMessage", false]], "mock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.Mock", false]], "mock_add_spec() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.mock_add_spec", false]], "mock_calls (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.mock_calls", false]], "mock_open() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.mock_open", false]], "mod (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Mod", false]], "mod() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.mod", false]], "mode (io.fileio \u7684\u5c6c\u6027)": [[258, "io.FileIO.mode", false]], "mode (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.mode", false]], "mode (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.mode", false]], "mode (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.mode", false]], "mode() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.mode", false]], "mode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.mode", false]], "modes\uff08\u6a21\u5f0f\uff09": [[225, "index-6", false]], "modf() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.modf", false]], "modified() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.modified", false]], "modify() (msilib.view \u7684\u65b9\u6cd5)": [[281, "msilib.View.Modify", false]], "modify() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.modify", false]], "modify() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.modify", false]], "modify() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.modify", false]], "modify() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.modify", false]], "module": [[112, "module-lib2to3", false], [113, "module-__future__", false], [114, "module-__main__", false], [115, "module-_thread", false], [116, "module-abc", false], [117, "module-aifc", false], [120, "module-argparse", false], [121, "module-array", false], [122, "module-ast", false], [123, "module-asyncio", false], [140, "module-atexit", false], [141, "module-audioop", false], [143, "module-base64", false], [144, "module-bdb", false], [146, "module-binascii", false], [147, "module-bisect", false], [148, "module-builtins", false], [149, "module-bz2", false], [150, "module-calendar", false], [151, "module-cgi", false], [152, "module-cgitb", false], [153, "module-chunk", false], [154, "module-cmath", false], [155, "module-cmd", false], [157, "module-code", false], [158, "module-codecs", false], [158, "module-encodings.idna", false], [158, "module-encodings.mbcs", false], [158, "module-encodings.utf_8_sig", false], [159, "module-codeop", false], [160, "module-collections", false], [161, "module-collections.abc", false], [162, "module-colorsys", false], [163, "module-compileall", false], [166, "module-concurrent.futures", false], [167, "module-configparser", false], [169, "module-contextlib", false], [170, "module-contextvars", false], [171, "module-copy", false], [172, "module-copyreg", false], [173, "module-crypt", false], [175, "module-csv", false], [176, "module-ctypes", false], [177, "module-curses", false], [177, "module-curses.textpad", false], [178, "module-curses.ascii", false], [179, "module-curses.panel", false], [181, "module-dataclasses", false], [183, "module-datetime", false], [184, "module-dbm", false], [184, "module-dbm.dumb", false], [184, "module-dbm.gnu", false], [184, "module-dbm.ndbm", false], [186, "module-decimal", false], [189, "module-tkinter.commondialog", false], [189, "module-tkinter.filedialog", false], [189, "module-tkinter.simpledialog", false], [190, "module-difflib", false], [191, "module-dis", false], [193, "module-doctest", false], [194, "module-email", false], [195, "module-email.charset", false], [197, "module-email.contentmanager", false], [198, "module-email.encoders", false], [199, "module-email.errors", false], [201, "module-email.generator", false], [202, "module-email.header", false], [203, "module-email.headerregistry", false], [204, "module-email.iterators", false], [205, "module-email.message", false], [206, "module-email.mime", false], [206, "module-email.mime.application", false], [206, "module-email.mime.audio", false], [206, "module-email.mime.base", false], [206, "module-email.mime.image", false], [206, "module-email.mime.message", false], [206, "module-email.mime.multipart", false], [206, "module-email.mime.nonmultipart", false], [206, "module-email.mime.text", false], [207, "module-email.parser", false], [208, "module-email.policy", false], [209, "module-email.utils", false], [210, "module-ensurepip", false], [211, "module-enum", false], [212, "module-errno", false], [214, "module-faulthandler", false], [215, "module-fcntl", false], [216, "module-filecmp", false], [218, "module-fileinput", false], [220, "module-fnmatch", false], [221, "module-fractions", false], [223, "module-ftplib", false], [226, "module-functools", false], [227, "module-gc", false], [228, "module-getopt", false], [229, "module-getpass", false], [230, "module-gettext", false], [231, "module-glob", false], [232, "module-graphlib", false], [233, "module-grp", false], [234, "module-gzip", false], [235, "module-hashlib", false], [236, "module-heapq", false], [237, "module-hmac", false], [238, "module-html", false], [239, "module-html.entities", false], [240, "module-html.parser", false], [241, "module-http", false], [242, "module-http.client", false], [243, "module-http.cookiejar", false], [244, "module-http.cookies", false], [245, "module-http.server", false], [247, "module-idlelib", false], [248, "module-imaplib", false], [249, "module-imghdr", false], [250, "module-importlib", false], [250, "module-importlib.abc", false], [250, "module-importlib.machinery", false], [250, "module-importlib.util", false], [251, "module-importlib.metadata", false], [252, "module-importlib.resources", false], [253, "module-importlib.resources.abc", false], [255, "module-inspect", false], [258, "module-io", false], [259, "module-ipaddress", false], [261, "module-itertools", false], [262, "module-json", false], [262, "module-json.tool", false], [263, "module-keyword", false], [265, "module-linecache", false], [266, "module-locale", false], [267, "module-logging", false], [268, "module-logging.config", false], [269, "module-logging.handlers", false], [270, "module-lzma", false], [271, "module-mailbox", false], [272, "module-mailcap", false], [274, "module-marshal", false], [275, "module-math", false], [276, "module-mimetypes", false], [278, "module-mmap", false], [279, "module-modulefinder", false], [281, "module-msilib", false], [282, "module-msvcrt", false], [283, "module-multiprocessing", false], [283, "module-multiprocessing.connection", false], [283, "module-multiprocessing.dummy", false], [283, "module-multiprocessing.managers", false], [283, "module-multiprocessing.pool", false], [283, "module-multiprocessing.sharedctypes", false], [284, "module-multiprocessing.shared_memory", false], [286, "module-netrc", false], [287, "module-nis", false], [288, "module-nntplib", false], [289, "module-numbers", false], [291, "module-operator", false], [292, "module-optparse", false], [293, "module-os", false], [294, "module-os.path", false], [295, "module-ossaudiodev", false], [296, "module-pathlib", false], [297, "module-pdb", false], [299, "module-pickle", false], [300, "module-pickletools", false], [301, "module-pipes", false], [302, "module-pkgutil", false], [303, "module-platform", false], [304, "module-plistlib", false], [305, "module-poplib", false], [306, "module-posix", false], [307, "module-pprint", false], [308, "module-cProfile", false], [308, "module-profile", false], [308, "module-pstats", false], [309, "module-pty", false], [310, "module-pwd", false], [311, "module-py_compile", false], [312, "module-pyclbr", false], [313, "module-pydoc", false], [314, "module-xml.parsers.expat", false], [314, "module-xml.parsers.expat.errors", false], [314, "module-xml.parsers.expat.model", false], [316, "module-queue", false], [317, "module-quopri", false], [318, "module-random", false], [319, "module-re", false], [320, "module-readline", false], [321, "module-reprlib", false], [322, "module-resource", false], [323, "module-rlcompleter", false], [324, "module-runpy", false], [325, "module-sched", false], [326, "module-secrets", false], [328, "module-select", false], [329, "module-selectors", false], [330, "module-shelve", false], [331, "module-shlex", false], [332, "module-shutil", false], [333, "module-signal", false], [334, "module-site", false], [334, "module-sitecustomize", false], [334, "module-usercustomize", false], [335, "module-smtplib", false], [336, "module-sndhdr", false], [337, "module-socket", false], [338, "module-socketserver", false], [339, "module-spwd", false], [340, "module-sqlite3", false], [341, "module-ssl", false], [342, "module-stat", false], [343, "module-statistics", false], [345, "module-string", false], [346, "module-stringprep", false], [347, "module-struct", false], [348, "module-subprocess", false], [349, "module-sunau", false], [351, "module-symtable", false], [352, "module-sys", false], [353, "module-sys.monitoring", false], [355, "module-sysconfig", false], [356, "module-syslog", false], [357, "module-tabnanny", false], [358, "module-tarfile", false], [359, "module-telnetlib", false], [360, "module-tempfile", false], [361, "module-termios", false], [362, "module-test", false], [362, "module-test.regrtest", false], [362, "module-test.support", false], [362, "module-test.support.bytecode_helper", false], [362, "module-test.support.import_helper", false], [362, "module-test.support.os_helper", false], [362, "module-test.support.script_helper", false], [362, "module-test.support.socket_helper", false], [362, "module-test.support.threading_helper", false], [362, "module-test.support.warnings_helper", false], [364, "module-textwrap", false], [365, "module-threading", false], [366, "module-time", false], [367, "module-timeit", false], [369, "module-_tkinter", false], [369, "module-tkinter", false], [370, "module-tkinter.colorchooser", false], [371, "module-tkinter.dnd", false], [372, "module-tkinter.font", false], [373, "module-tkinter.messagebox", false], [374, "module-tkinter.scrolledtext", false], [375, "module-tkinter.tix", false], [376, "module-tkinter.ttk", false], [377, "module-token", false], [378, "module-tokenize", false], [379, "module-tomllib", false], [380, "module-trace", false], [381, "module-traceback", false], [382, "module-tracemalloc", false], [383, "module-tty", false], [384, "module-turtle", false], [384, "module-turtledemo", false], [385, "module-types", false], [386, "module-typing", false], [387, "module-unicodedata", false], [388, "module-unittest", false], [389, "module-unittest.mock", false], [392, "module-urllib", false], [393, "module-urllib.error", false], [394, "module-urllib.parse", false], [395, "module-urllib.request", false], [395, "module-urllib.response", false], [396, "module-urllib.robotparser", false], [397, "module-uu", false], [398, "module-uuid", false], [399, "module-venv", false], [400, "module-warnings", false], [401, "module-wave", false], [402, "module-weakref", false], [403, "module-webbrowser", false], [405, "module-winreg", false], [406, "module-winsound", false], [407, "module-wsgiref", false], [407, "module-wsgiref.handlers", false], [407, "module-wsgiref.headers", false], [407, "module-wsgiref.simple_server", false], [407, "module-wsgiref.types", false], [407, "module-wsgiref.util", false], [407, "module-wsgiref.validate", false], [408, "module-xdrlib", false], [409, "module-xml", false], [410, "module-xml.dom", false], [411, "module-xml.dom.minidom", false], [412, "module-xml.dom.pulldom", false], [413, "module-xml.etree.ElementInclude", false], [413, "module-xml.etree.ElementTree", false], [414, "module-xml.sax", false], [415, "module-xml.sax.handler", false], [416, "module-xml.sax.xmlreader", false], [417, "module-xml.sax.saxutils", false], [419, "module-xmlrpc.client", false], [420, "module-xmlrpc.server", false], [421, "module-zipapp", false], [422, "module-zipfile", false], [423, "module-zipimport", false], [424, "module-zlib", false], [425, "module-zoneinfo", false]], "module (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Module", false]], "module (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.module", false]], "module (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.module", false]], "module browser\uff08\u6a21\u7d44\u700f\u89bd\u5668\uff09": [[247, "index-1", false]], "module spec": [[432, "index-8", false]], "module spec\uff08\u6a21\u7d44\u898f\u683c\uff09": [[87, "term-module-spec", true]], "module_from_spec() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.module_from_spec", false]], "modulefinder": [[279, "module-modulefinder", false]], "modulefinder (modulefinder \u4e2d\u7684\u985e\u5225)": [[279, "modulefinder.ModuleFinder", false]], "moduleinfo (pkgutil \u4e2d\u7684\u985e\u5225)": [[302, "pkgutil.ModuleInfo", false]], "modulenotfounderror": [[213, "ModuleNotFoundError", false]], "modules (modulefinder.modulefinder \u7684\u5c6c\u6027)": [[279, "modulefinder.ModuleFinder.modules", false]], "modules (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.modules", false]], "modules_cleanup() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.modules_cleanup", false]], "modules_setup() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.modules_setup", false]], "modulespec (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.ModuleSpec", false]], "modules\uff08sys \u6a21\u7d44\u4e2d\uff09": [[31, "index-0", false], [33, "index-15", false]], "moduletype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.ModuleType", false]], "module\uff08\u6a21\u7d44\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false], [35, "index-18", false], [45, "index-0", false], [87, "term-module", true], [115, "index-2", false], [146, "index-0", false], [154, "index-1", false], [171, "index-0", false], [172, "index-0", false], [213, "index-5", false], [220, "index-1", false], [220, "index-3", false], [225, "index-13", false], [225, "index-8", false], [242, "index-1", false], [256, "index-1", false], [265, "index-0", false], [266, "index-0", false], [274, "index-0", false], [293, "index-23", false], [293, "index-30", false], [294, "index-2", false], [297, "index-1", false], [306, "index-0", false], [310, "index-0", false], [314, "index-1", false], [324, "index-0", false], [324, "index-4", false], [330, "index-0", false], [330, "index-1", false], [334, "index-0", false], [337, "index-14", false], [352, "index-21", false], [427, "index-11", false], [428, "index-23", false], [428, "index-24", false], [428, "index-32", false], [428, "index-4", false], [428, "index-44", false], [428, "index-45", false], [428, "index-55", false], [429, "index-10", false], [430, "index-40", false], [436, "index-34", false], [437, "index-2", false], [437, "index-3", false], [446, "index-1", false], [450, "index-0", false], [450, "index-4", false], [450, "index-7", false]], "modulo\uff08\u9918\u6578\uff09": [[430, "index-68", false]], "modulus (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.modulus", false]], "mon_1 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_1", false]], "mon_10 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_10", false]], "mon_11 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_11", false]], "mon_12 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_12", false]], "mon_2 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_2", false]], "mon_3 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_3", false]], "mon_4 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_4", false]], "mon_5 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_5", false]], "mon_6 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_6", false]], "mon_7 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_7", false]], "mon_8 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_8", false]], "mon_9 (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.MON_9", false]], "monday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.MONDAY", false]], "monotonic() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.monotonic", false]], "monotonic_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.monotonic_ns", false]], "month": [[150, "cmdoption-calendar-arg-month", false]], "month (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.Month", false]], "month (calendar.illegalmontherror \u7684\u5c6c\u6027)": [[150, "calendar.IllegalMonthError.month", false]], "month (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.month", false]], "month (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.month", false]], "month() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month", false]], "month_abbr (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month_abbr", false]], "month_name (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.month_name", false]], "monthcalendar() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.monthcalendar", false]], "monthdatescalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdatescalendar", false]], "monthdays2calendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdays2calendar", false]], "monthdayscalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.monthdayscalendar", false]], "monthrange() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.monthrange", false]], "morsel (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.Morsel", false]], "most_common() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.most_common", false]], "mouseinterval() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.mouseinterval", false]], "mousemask() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.mousemask", false]], "move() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.move", false]], "move() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.move", false]], "move() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.move", false]], "move() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.move", false]], "move() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.move", false]], "move_to_end() (collections.ordereddict \u7684\u65b9\u6cd5)": [[160, "collections.OrderedDict.move_to_end", false]], "mozillacookiejar (http.cookiejar \u4e2d\u7684\u985e\u5225)": [[243, "http.cookiejar.MozillaCookieJar", false]], "mro": [[87, "term-MRO", true]], "mro() (class \u7684\u65b9\u6cd5)": [[344, "class.mro", false]], "msg (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.msg", false]], "msg (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.msg", false]], "msg (netrc.netrcparseerror \u7684\u5c6c\u6027)": [[286, "netrc.NetrcParseError.msg", false]], "msg (re.error \u7684\u5c6c\u6027)": [[319, "re.error.msg", false]], "msg (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.msg", false]], "msg() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.msg", false]], "msi": [[281, "index-0", false]], "msilib": [[281, "module-msilib", false]], "msvcrt": [[282, "module-msvcrt", false]], "mt_interact() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.mt_interact", false]], "mtime (gzip.gzipfile \u7684\u5c6c\u6027)": [[234, "gzip.GzipFile.mtime", false]], "mtime (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.mtime", false]], "mtime() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.mtime", false]], "mul() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.mul", false]], "mul() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.mul", false]], "mult (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Mult", false]], "multicall (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.MultiCall", false]], "multiline (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.MULTILINE", false]], "multiloopchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.MultiLoopChildWatcher", false]], "multimode() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.multimode", false]], "multipartconversionerror": [[199, "email.errors.MultipartConversionError", false]], "multiplication\uff08\u4e58\uff09": [[430, "index-65", false]], "multiply() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.multiply", false]], "multiprocessing": [[283, "module-multiprocessing", false]], "multiprocessing.connection": [[283, "module-multiprocessing.connection", false]], "multiprocessing.dummy": [[283, "module-multiprocessing.dummy", false]], "multiprocessing.manager()": [[283, "multiprocessing.Manager", false]], "multiprocessing.managers": [[283, "module-multiprocessing.managers", false]], "multiprocessing.pool": [[283, "module-multiprocessing.pool", false]], "multiprocessing.shared_memory": [[284, "module-multiprocessing.shared_memory", false]], "multiprocessing.sharedctypes": [[283, "module-multiprocessing.sharedctypes", false]], "mutable object\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": [[428, "index-1", false]], "mutable sequence\uff08\u53ef\u8b8a\u5e8f\u5217\uff09": [[344, "index-21", false], [428, "index-22", false]], "mutablemapping (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableMapping", false]], "mutablemapping (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableMapping", false]], "mutablesequence (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableSequence", false]], "mutablesequence (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableSequence", false]], "mutableset (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.MutableSet", false]], "mutableset (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.MutableSet", false]], "mutable\uff08\u53ef\u8b8a\u7269\u4ef6\uff09": [[87, "term-mutable", true]], "mutable\uff08\u53ef\u8b8a\u7684\uff09": [[428, "index-22", false], [436, "index-4", false], [436, "index-9", false]], "mutable\uff08\u53ef\u8b8a\uff09": [[344, "index-23", false]], "mvderwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.mvderwin", false]], "mvwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.mvwin", false]], "myrights() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.myrights", false]], "n_tokens (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.N_TOKENS", false]], "n_waiting (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.n_waiting", false]], "n_waiting (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.n_waiting", false]], "nak (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NAK", false]], "name (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Name", false]], "name (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.name", false]], "name (contextvars.contextvar \u7684\u5c6c\u6027)": [[170, "contextvars.ContextVar.name", false]], "name (doctest.doctest \u7684\u5c6c\u6027)": [[193, "doctest.DocTest.name", false]], "name (email.headerregistry.baseheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.BaseHeader.name", false]], "name (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum.name", false]], "name (gzip.gzipfile \u7684\u5c6c\u6027)": [[234, "gzip.GzipFile.name", false]], "name (hashlib.hash \u7684\u5c6c\u6027)": [[235, "hashlib.hash.name", false]], "name (hmac.hmac \u7684\u5c6c\u6027)": [[237, "hmac.HMAC.name", false]], "name (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.name", false]], "name (importerror \u7684\u5c6c\u6027)": [[213, "ImportError.name", false]], "name (importlib.abc.fileloader \u7684\u5c6c\u6027)": [[250, "importlib.abc.FileLoader.name", false]], "name (importlib.abc.traversable \u7684\u5c6c\u6027)": [[250, "importlib.abc.Traversable.name", false]], "name (importlib.machinery.extensionfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ExtensionFileLoader.name", false]], "name (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.name", false]], "name (importlib.machinery.sourcefileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourceFileLoader.name", false]], "name (importlib.machinery.sourcelessfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourcelessFileLoader.name", false]], "name (importlib.resources.abc.traversable \u7684\u5c6c\u6027)": [[253, "importlib.resources.abc.Traversable.name", false]], "name (inspect.parameter \u7684\u5c6c\u6027)": [[255, "inspect.Parameter.name", false]], "name (io.fileio \u7684\u5c6c\u6027)": [[258, "io.FileIO.name", false]], "name (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.name", false]], "name (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.name", false]], "name (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.name", false]], "name (os.direntry \u7684\u5c6c\u6027)": [[293, "os.DirEntry.name", false]], "name (ossaudiodev.oss_audio_device \u7684\u5c6c\u6027)": [[295, "ossaudiodev.oss_audio_device.name", false]], "name (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.name", false]], "name (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.name", false]], "name (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.name", false]], "name (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.name", false]], "name (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.name", false]], "name (tempfile.temporarydirectory \u7684\u5c6c\u6027)": [[360, "tempfile.TemporaryDirectory.name", false]], "name (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.name", false]], "name (traceback.framesummary \u7684\u5c6c\u6027)": [[381, "traceback.FrameSummary.name", false]], "name (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.name", false]], "name (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.name", false]], "name (zipfile.path \u7684\u5c6c\u6027)": [[422, "zipfile.Path.name", false]], "name (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.name", false]], "name (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NAME", false]], "name (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.name", false]], "name() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.name", false]], "name2codepoint (\u65bc html.entities \u6a21\u7d44\u4e2d)": [[239, "html.entities.name2codepoint", false]], "named expression\uff08\u9644\u540d\u904b\u7b97\u5f0f\uff09": [[430, "index-86", false]], "named shared memory\uff08\u9644\u540d\u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "named tuple\uff08\u9644\u540d\u5143\u7d44\uff09": [[87, "term-named-tuple", true]], "named_flags (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.NAMED_FLAGS", false]], "namedexpr (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NamedExpr", false]], "namedtemporaryfile() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.NamedTemporaryFile", false]], "namedtuple (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.NamedTuple", false]], "namedtuple() (\u65bc collections \u6a21\u7d44\u4e2d)": [[160, "collections.namedtuple", false]], "nameerror": [[213, "NameError", false], [430, "index-4", false]], "nameerror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[429, "index-9", false]], "namelist() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.namelist", false]], "nameprep() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.nameprep", false]], "namer (logging.handlers.baserotatinghandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.BaseRotatingHandler.namer", false]], "namereplace": [[158, "index-3", false]], "namereplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.namereplace_errors", false]], "names": [[430, "index-5", false]], "names() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.names", false]], "namespace (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.Namespace", false]], "namespace (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.Namespace", false]], "namespace package\uff08\u547d\u540d\u7a7a\u9593\u5957\u4ef6\uff09": [[87, "term-namespace-package", true]], "namespace() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.namespace", false]], "namespace() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Namespace", false]], "namespace_dns (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_DNS", false]], "namespace_oid (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_OID", false]], "namespace_url (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_URL", false]], "namespace_x500 (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.NAMESPACE_X500", false]], "namespaceerr": [[410, "xml.dom.NamespaceErr", false]], "namespaceloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.NamespaceLoader", false]], "namespaceuri (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.namespaceURI", false]], "namespace\uff08\u547d\u540d\u7a7a\u9593\uff09": [[87, "term-namespace", true], [428, "index-35", false], [428, "index-45", false], [429, "index-3", false], [432, "index-5", false]], "nametofont() (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.nametofont", false]], "name\uff08\u540d\u7a31\uff09": [[427, "index-28", false], [427, "index-42", false], [429, "index-4", false], [430, "index-3", false], [430, "index-5", false], [435, "index-10", false], [436, "index-22", false], [436, "index-34", false], [436, "index-36", false], [436, "index-4", false], [436, "index-43", false], [440, "index-1", false]], "nan": [[225, "index-3", false]], "nan (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.nan", false]], "nan (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.nan", false]], "nan (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.nan", false]], "nanj (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.nanj", false]], "nannynag": [[357, "tabnanny.NannyNag", false]], "napms() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.napms", false]], "nargs (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.nargs", false]], "native_id (threading.thread \u7684\u5c6c\u6027)": [[365, "threading.Thread.native_id", false]], "nbytes (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.nbytes", false]], "ncurses_version (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ncurses_version", false]], "nd (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.ND", false]], "ndiff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.ndiff", false]], "ndim (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.ndim", false]], "ne (2to3 fixer)": [[112, "to3fixer-ne", false]], "ne() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.ne", false]], "needs_input (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.needs_input", false]], "needs_input (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.needs_input", false]], "neg() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.neg", false]], "negation\uff08\u5426\u5b9a\uff09": [[430, "index-60", false]], "nested scope\uff08\u5de2\u72c0\u4f5c\u7528\u57df\uff09": [[87, "term-nested-scope", true]], "netmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.netmask", false]], "netmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.netmask", false]], "netmaskvalueerror": [[259, "ipaddress.NetmaskValueError", false]], "netrc": [[286, "module-netrc", false]], "netrc (netrc \u4e2d\u7684\u985e\u5225)": [[286, "netrc.netrc", false]], "netrcparseerror": [[286, "netrc.NetrcParseError", false]], "netscape (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.netscape", false]], "network (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.network", false]], "network (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.network", false]], "network news transfer protocol\uff08\u7db2\u8def\u65b0\u805e\u50b3\u8f38\u5354\u5b9a\uff09": [[288, "index-0", false]], "network_address (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.network_address", false]], "network_address (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.network_address", false]], "never (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Never", false]], "never_eq (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.NEVER_EQ", false]], "new() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.new", false]], "new() (\u65bc hmac \u6a21\u7d44\u4e2d)": [[237, "hmac.new", false]], "new-style class\uff08\u65b0\u5f0f\u985e\u5225\uff09": [[87, "term-new-style-class", true]], "new_child() (collections.chainmap \u7684\u65b9\u6cd5)": [[160, "collections.ChainMap.new_child", false]], "new_class() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.new_class", false]], "new_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.new_event_loop", false]], "new_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.new_event_loop", false]], "new_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.new_panel", false]], "newfunc (c type)": [[63, "c.newfunc", false]], "newgroups() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.newgroups", false]], "newline (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NEWLINE", false]], "newline token\uff08\u63db\u884c\u6a19\u8a8c\uff09": [[427, "index-2", false], [435, "index-3", false]], "newlines (io.textiobase \u7684\u5c6c\u6027)": [[258, "io.TextIOBase.newlines", false]], "newnews() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.newnews", false]], "newpad() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.newpad", false]], "newtype (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.NewType", false]], "newwin() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.newwin", false]], "next (2to3 fixer)": [[112, "to3fixer-next", false]], "next (pdb command)": [[297, "pdbcommand-next", false]], "next()": [[225, "next", false]], "next() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.next", false]], "next() (tarfile.tarfile \u7684\u65b9\u6cd5)": [[358, "tarfile.TarFile.next", false]], "next() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.next", false]], "next_minus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_minus", false]], "next_minus() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_minus", false]], "next_plus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_plus", false]], "next_plus() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_plus", false]], "next_toward() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.next_toward", false]], "next_toward() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.next_toward", false]], "nextafter() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.nextafter", false]], "nextfile() (\u65bc fileinput \u6a21\u7d44\u4e2d)": [[218, "fileinput.nextfile", false]], "nextkey() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.nextkey", false]], "nextsibling (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nextSibling", false]], "ngettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.ngettext", false]], "ngettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.ngettext", false]], "ngettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.ngettext", false]], "nice() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.nice", false]], "nis": [[287, "module-nis", false]], "nl (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NL", false]], "nl (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NL", false]], "nl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nl", false]], "nl_langinfo() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.nl_langinfo", false]], "nlargest() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.nlargest", false]], "nlst() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.nlst", false]], "nntp": [[288, "index-0", false]], "nntp (nntplib \u4e2d\u7684\u985e\u5225)": [[288, "nntplib.NNTP", false]], "nntp_implementation (nntplib.nntp \u7684\u5c6c\u6027)": [[288, "nntplib.NNTP.nntp_implementation", false]], "nntp_ssl (nntplib \u4e2d\u7684\u985e\u5225)": [[288, "nntplib.NNTP_SSL", false]], "nntp_version (nntplib.nntp \u7684\u5c6c\u6027)": [[288, "nntplib.NNTP.nntp_version", false]], "nntpdataerror": [[288, "nntplib.NNTPDataError", false]], "nntperror": [[288, "nntplib.NNTPError", false]], "nntplib": [[288, "module-nntplib", false]], "nntppermanenterror": [[288, "nntplib.NNTPPermanentError", false]], "nntpprotocolerror": [[288, "nntplib.NNTPProtocolError", false]], "nntpreplyerror": [[288, "nntplib.NNTPReplyError", false]], "nntptemporaryerror": [[288, "nntplib.NNTPTemporaryError", false]], "no (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.NO", false]], "no_cache() (zoneinfo.zoneinfo \u7684\u985e\u5225\u65b9\u6cd5)": [[425, "zoneinfo.ZoneInfo.no_cache", false]], "no_events (monitoring event)": [[353, "monitoring-event-NO_EVENTS", false]], "no_proxy": [[395, "index-3", false]], "no_site (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.no_site", false]], "no_tracing() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.no_tracing", false]], "no_type_check() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.no_type_check", false]], "no_type_check_decorator() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.no_type_check_decorator", false]], "no_user_site (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.no_user_site", false]], "nocbreak() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nocbreak", false]], "nodataallowederr": [[410, "xml.dom.NoDataAllowedErr", false]], "node (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.node", false]], "node() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.node", false]], "nodelay() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.nodelay", false]], "nodename (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeName", false]], "nodetransformer (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NodeTransformer", false]], "nodetype (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeType", false]], "nodevalue (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.nodeValue", false]], "nodevisitor (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NodeVisitor", false]], "noecho() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noecho", false]], "noexpr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.NOEXPR", false]], "noflag (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.NOFLAG", false]], "nomodificationallowederr": [[410, "xml.dom.NoModificationAllowedErr", false]], "nonblock() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.nonblock", false]], "noncallablemagicmock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.NonCallableMagicMock", false]], "noncallablemock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.NonCallableMock", false]], "none": [[46, "index-0", false], [428, "index-6", false], [436, "index-3", false]], "none (\u5167\u5efa\u8b8a\u6578)": [[168, "None", false]], "nonetype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.NoneType", false]], "none\uff08\u5167\u5efa\u7269\u4ef6\uff09": [[344, "index-3", false]], "nonl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.nonl", false]], "nonlocal": [[436, "index-45", false]], "nonlocal (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Nonlocal", false]], "nonmember() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.nonmember", false]], "nonzero (2to3 fixer)": [[112, "to3fixer-nonzero", false]], "noop() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.noop", false]], "noop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.noop", false]], "nooptionerror": [[167, "configparser.NoOptionError", false]], "nop (opcode)": [[191, "opcode-NOP", false]], "noqiflush() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noqiflush", false]], "noraw() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.noraw", false]], "noreturn (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.NoReturn", false]], "normal (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.NORMAL", false]], "normal_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.NORMAL_PRIORITY_CLASS", false]], "normaldist (statistics \u4e2d\u7684\u985e\u5225)": [[343, "statistics.NormalDist", false]], "normalize() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.normalize", false]], "normalize() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.normalize", false]], "normalize() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.normalize", false]], "normalize() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.normalize", false]], "normalize() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.normalize", false]], "normalize_whitespace (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.NORMALIZE_WHITESPACE", false]], "normalvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.normalvariate", false]], "normcase() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.normcase", false]], "normpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.normpath", false]], "nosectionerror": [[167, "configparser.NoSectionError", false]], "nosuchmailboxerror": [[271, "mailbox.NoSuchMailboxError", false]], "not": [[344, "index-6", false], [430, "index-83", false]], "not (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Not", false]], "not in": [[344, "index-10", false], [344, "index-20", false], [430, "index-80", false]], "not_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.not_", false]], "notadirectoryerror": [[213, "NotADirectoryError", false]], "notationdecl() (xml.sax.handler.dtdhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.DTDHandler.notationDecl", false]], "notationdeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.NotationDeclHandler", false]], "notations (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.notations", false]], "notation\uff08\u6a19\u8a18\u6cd5\uff09": [[434, "index-0", false]], "notconnected": [[242, "http.client.NotConnected", false]], "notebook (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.NoteBook", false]], "notebook (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Notebook", false]], "notemptyerror": [[271, "mailbox.NotEmptyError", false]], "noteq (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NotEq", false]], "notequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NOTEQUAL", false]], "notfounderr": [[410, "xml.dom.NotFoundErr", false]], "notify() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.notify", false]], "notify() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.notify", false]], "notify_all() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.notify_all", false]], "notify_all() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.notify_all", false]], "notimeout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.notimeout", false]], "notimplemented": [[428, "index-7", false]], "notimplemented (\u5167\u5efa\u8b8a\u6578)": [[168, "NotImplemented", false]], "notimplementederror": [[213, "NotImplementedError", false]], "notimplementedtype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.NotImplementedType", false]], "notin (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.NotIn", false]], "notrequired (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.NotRequired", false]], "notset (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.NOTSET", false]], "notstandalonehandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.NotStandaloneHandler", false]], "notsupportederr": [[410, "xml.dom.NotSupportedErr", false]], "notsupportederror": [[340, "sqlite3.NotSupportedError", false]], "noutrefresh() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.noutrefresh", false]], "november (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.NOVEMBER", false]], "now() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.now", false]], "npgettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.npgettext", false]], "npgettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.npgettext", false]], "npgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.npgettext", false]], "nsig (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.NSIG", false]], "nsmallest() (\u65bc heapq \u6a21\u7d44\u4e2d)": [[236, "heapq.nsmallest", false]], "nt_offset (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NT_OFFSET", false]], "nteventloghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.NTEventLogHandler", false]], "ntohl() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ntohl", false]], "ntohs() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.ntohs", false]], "ntransfercmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.ntransfercmd", false]], "nul (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.NUL", false]], "null": [[436, "index-20", false]], "nullcontext() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.nullcontext", false]], "nullhandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.NullHandler", false]], "nulltranslations (gettext \u4e2d\u7684\u985e\u5225)": [[230, "gettext.NullTranslations", false]], "num_addresses (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.num_addresses", false]], "num_addresses (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.num_addresses", false]], "num_tickets (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.num_tickets", false]], "number (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Number", false]], "number (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.NUMBER", false]], "number_class() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.number_class", false]], "number_class() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.number_class", false]], "numbers": [[289, "module-numbers", false]], "number\uff08\u6578\u5b57\uff09": [[428, "index-13", false], [428, "index-14", false], [435, "index-27", false]], "numerator (fractions.fraction \u7684\u5c6c\u6027)": [[221, "fractions.Fraction.numerator", false]], "numerator (numbers.rational \u7684\u5c6c\u6027)": [[289, "numbers.Rational.numerator", false]], "numeric literal\uff08\u6578\u503c\u5e38\u6578\uff09": [[435, "index-27", false]], "numeric() (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.numeric", false]], "numeric\uff08\u6578\u503c\uff09": [[16, "index-0", false], [344, "index-11", false], [344, "index-12", false], [344, "index-14", false], [344, "index-15", false], [344, "index-8", false], [428, "index-53", false], [428, "index-9", false]], "numinput() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.numinput", false]], "numliterals (2to3 fixer)": [[112, "to3fixer-numliterals", false]], "o_append (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_APPEND", false]], "o_async (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_ASYNC", false]], "o_binary (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_BINARY", false]], "o_cloexec (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_CLOEXEC", false]], "o_creat (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_CREAT", false]], "o_direct (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DIRECT", false]], "o_directory (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DIRECTORY", false]], "o_dsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_DSYNC", false]], "o_evtonly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EVTONLY", false]], "o_excl (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EXCL", false]], "o_exlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_EXLOCK", false]], "o_fsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_FSYNC", false]], "o_ndelay (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NDELAY", false]], "o_noatime (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOATIME", false]], "o_noctty (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOCTTY", false]], "o_nofollow (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOFOLLOW", false]], "o_nofollow_any (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOFOLLOW_ANY", false]], "o_noinherit (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NOINHERIT", false]], "o_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_NONBLOCK", false]], "o_path (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_PATH", false]], "o_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RANDOM", false]], "o_rdonly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RDONLY", false]], "o_rdwr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RDWR", false]], "o_rsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_RSYNC", false]], "o_sequential (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SEQUENTIAL", false]], "o_shlock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SHLOCK", false]], "o_short_lived (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SHORT_LIVED", false]], "o_symlink (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SYMLINK", false]], "o_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_SYNC", false]], "o_temporary (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TEMPORARY", false]], "o_text (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TEXT", false]], "o_tmpfile (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TMPFILE", false]], "o_trunc (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_TRUNC", false]], "o_wronly (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.O_WRONLY", false]], "obj (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.obj", false]], "object (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.object", false]], "object (\u5167\u5efa\u985e\u5225)": [[225, "object", false]], "object representation\uff08\u7269\u4ef6\u8868\u793a\uff09": [[75, "index-3", false]], "object.__match_args__ (\u5167\u5efa\u8b8a\u6578)": [[428, "object.__match_args__", false]], "object.__slots__ (\u5167\u5efa\u8b8a\u6578)": [[428, "object.__slots__", false]], "objects\uff08\u7269\u4ef6\uff09": [[299, "index-0", false], [344, "index-8", false]], "object\uff08\u6a21\u7d44\uff09": [[45, "index-0", false]], "object\uff08\u7269\u4ef6\uff09": [[8, "index-0", false], [9, "index-0", false], [11, "index-0", false], [13, "index-0", false], [15, "index-0", false], [16, "index-0", false], [16, "index-1", false], [16, "index-2", false], [22, "index-0", false], [24, "index-0", false], [25, "index-0", false], [27, "index-0", false], [35, "index-3", false], [38, "index-0", false], [39, "index-0", false], [43, "index-0", false], [44, "index-0", false], [44, "index-1", false], [46, "index-0", false], [55, "index-0", false], [60, "index-0", false], [61, "index-0", false], [75, "index-0", false], [87, "term-object", true], [225, "index-12", false], [274, "index-1", false], [337, "index-0", false], [344, "index-11", false], [344, "index-19", false], [344, "index-22", false], [344, "index-23", false], [344, "index-25", false], [344, "index-26", false], [344, "index-27", false], [344, "index-28", false], [344, "index-29", false], [344, "index-40", false], [344, "index-41", false], [344, "index-42", false], [344, "index-51", false], [344, "index-52", false], [344, "index-56", false], [344, "index-59", false], [344, "index-61", false], [344, "index-62", false], [344, "index-8", false], [352, "index-8", false], [381, "index-0", false], [427, "index-11", false], [427, "index-28", false], [427, "index-42", false], [427, "index-6", false], [428, "index-0", false], [428, "index-10", false], [428, "index-12", false], [428, "index-13", false], [428, "index-14", false], [428, "index-15", false], [428, "index-17", false], [428, "index-20", false], [428, "index-22", false], [428, "index-25", false], [428, "index-27", false], [428, "index-28", false], [428, "index-29", false], [428, "index-30", false], [428, "index-31", false], [428, "index-33", false], [428, "index-34", false], [428, "index-37", false], [428, "index-42", false], [428, "index-43", false], [428, "index-44", false], [428, "index-47", false], [428, "index-51", false], [428, "index-53", false], [428, "index-57", false], [428, "index-59", false], [428, "index-6", false], [428, "index-63", false], [428, "index-66", false], [428, "index-7", false], [428, "index-8", false], [428, "index-80", false], [428, "index-9", false], [428, "index-99", false], [430, "index-15", false], [430, "index-16", false], [430, "index-17", false], [430, "index-20", false], [430, "index-22", false], [430, "index-31", false], [430, "index-35", false], [430, "index-40", false], [430, "index-42", false], [430, "index-45", false], [430, "index-47", false], [430, "index-52", false], [430, "index-53", false], [430, "index-54", false], [430, "index-55", false], [430, "index-7", false], [430, "index-80", false], [430, "index-92", false], [436, "index-10", false], [436, "index-11", false], [436, "index-28", false], [436, "index-3", false], [436, "index-4", false], [436, "index-9", false], [440, "index-0", false], [446, "index-0", false]], "objobjargproc (c type)": [[63, "c.objobjargproc", false]], "objobjproc (c type)": [[63, "c.objobjproc", false]], "obufcount() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.obufcount", false]], "obuffree() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.obuffree", false]], "oct()": [[225, "oct", false]], "octal literal\uff08\u516b\u9032\u4f4d\u5e38\u6578\uff09": [[435, "index-27", false]], "octal\uff08\u516b\u9032\u4f4d\uff09": [[344, "index-12", false]], "octdigits (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.octdigits", false]], "october (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.OCTOBER", false]], "offset (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.offset", false]], "offset (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.offset", false]], "offset (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.offset", false]], "offset (xml.parsers.expat.expaterror \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.ExpatError.offset", false]], "offset_data (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.offset_data", false]], "ok (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.OK", false]], "ok (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.OK", false]], "ok_command() (tkinter.filedialog.loadfiledialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.LoadFileDialog.ok_command", false]], "ok_command() (tkinter.filedialog.savefiledialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.SaveFileDialog.ok_command", false]], "ok_event() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.ok_event", false]], "okcancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.OKCANCEL", false]], "old_value (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.old_value", false]], "oledll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.OleDLL", false]], "on_motion() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.on_motion", false]], "on_release() (tkinter.dnd.dndhandler \u7684\u65b9\u6cd5)": [[371, "tkinter.dnd.DndHandler.on_release", false]], "onclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onclick", false]], "ondrag() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ondrag", false]], "onecmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.onecmd", false]], "onkey() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkey", false]], "onkeypress() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkeypress", false]], "onkeyrelease() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onkeyrelease", false]], "online\uff08\u7dda\u4e0a\uff09": [[313, "index-0", false]], "onrelease() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onrelease", false]], "onscreenclick() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.onscreenclick", false]], "ontimer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ontimer", false]], "op (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.OP", false]], "op_all (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ALL", false]], "op_cipher_server_preference (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_CIPHER_SERVER_PREFERENCE", false]], "op_enable_ktls (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ENABLE_KTLS", false]], "op_enable_middlebox_compat (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_ENABLE_MIDDLEBOX_COMPAT", false]], "op_ignore_unexpected_eof (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_IGNORE_UNEXPECTED_EOF", false]], "op_legacy_server_connect (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_LEGACY_SERVER_CONNECT", false]], "op_no_compression (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_COMPRESSION", false]], "op_no_renegotiation (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_RENEGOTIATION", false]], "op_no_sslv2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_SSLv2", false]], "op_no_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_SSLv3", false]], "op_no_ticket (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TICKET", false]], "op_no_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1", false]], "op_no_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_1", false]], "op_no_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_2", false]], "op_no_tlsv1_3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_NO_TLSv1_3", false]], "op_single_dh_use (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_SINGLE_DH_USE", false]], "op_single_ecdh_use (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OP_SINGLE_ECDH_USE", false]], "open": [[428, "index-55", false], [446, "index-0", false]], "open (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.Open", false]], "open()": [[225, "open", false]], "open() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.open", false]], "open() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.open", false]], "open() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.open", false]], "open() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.open", false]], "open() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.open", false]], "open() (tarfile.tarfile \u7684\u985e\u5225\u65b9\u6cd5)": [[358, "tarfile.TarFile.open", false]], "open() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.open", false]], "open() (urllib.request.openerdirector \u7684\u65b9\u6cd5)": [[395, "urllib.request.OpenerDirector.open", false]], "open() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.open", false]], "open() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open", false]], "open() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.open", false]], "open() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.open", false]], "open() (\u65bc aifc \u6a21\u7d44\u4e2d)": [[117, "aifc.open", false]], "open() (\u65bc bz2 \u6a21\u7d44\u4e2d)": [[149, "bz2.open", false]], "open() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.open", false]], "open() (\u65bc dbm \u6a21\u7d44\u4e2d)": [[184, "dbm.open", false]], "open() (\u65bc dbm.dumb \u6a21\u7d44\u4e2d)": [[184, "dbm.dumb.open", false]], "open() (\u65bc dbm.gnu \u6a21\u7d44\u4e2d)": [[184, "dbm.gnu.open", false]], "open() (\u65bc dbm.ndbm \u6a21\u7d44\u4e2d)": [[184, "dbm.ndbm.open", false]], "open() (\u65bc gzip \u6a21\u7d44\u4e2d)": [[234, "gzip.open", false]], "open() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.open", false]], "open() (\u65bc lzma \u6a21\u7d44\u4e2d)": [[270, "lzma.open", false]], "open() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.open", false]], "open() (\u65bc ossaudiodev \u6a21\u7d44\u4e2d)": [[295, "ossaudiodev.open", false]], "open() (\u65bc shelve \u6a21\u7d44\u4e2d)": [[330, "shelve.open", false]], "open() (\u65bc sunau \u6a21\u7d44\u4e2d)": [[349, "sunau.open", false]], "open() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.open", false]], "open() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.open", false]], "open() (\u65bc wave \u6a21\u7d44\u4e2d)": [[401, "wave.open", false]], "open() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open", false]], "open() \u5167\u5efa\u51fd\u5f0f": [[225, "index-5", false], [225, "index-7", false]], "open_binary() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.open_binary", false]], "open_code() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.open_code", false]], "open_connection() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.open_connection", false]], "open_flags (\u65bc dbm.gnu \u6a21\u7d44\u4e2d)": [[184, "dbm.gnu.open_flags", false]], "open_new() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open_new", false]], "open_new() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open_new", false]], "open_new_tab() (webbrowser.controller \u7684\u65b9\u6cd5)": [[403, "webbrowser.controller.open_new_tab", false]], "open_new_tab() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.open_new_tab", false]], "open_osfhandle() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.open_osfhandle", false]], "open_resource() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.open_resource", false]], "open_resource() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.open_resource", false]], "open_text() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.open_text", false]], "open_unix_connection() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.open_unix_connection", false]], "open_unknown() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.open_unknown", false]], "open_urlresource() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.open_urlresource", false]], "opendatabase() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.OpenDatabase", false]], "openerdirector (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.OpenerDirector", false]], "openkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.OpenKey", false]], "openkeyex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.OpenKeyEx", false]], "openlog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.openlog", false]], "openmixer() (\u65bc ossaudiodev \u6a21\u7d44\u4e2d)": [[295, "ossaudiodev.openmixer", false]], "openpty() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.openpty", false]], "openpty() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.openpty", false]], "openssl": [[235, "index-2", false], [341, "index-0", false]], "openssl_version (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION", false]], "openssl_version_info (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION_INFO", false]], "openssl_version_number (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.OPENSSL_VERSION_NUMBER", false]], "openview() (msilib.database \u7684\u65b9\u6cd5)": [[281, "msilib.Database.OpenView", false]], "operationalerror": [[340, "sqlite3.OperationalError", false]], "operations on\uff08\u64cd\u4f5c\u65bc\uff09": [[344, "index-14", false], [344, "index-16", false], [344, "index-20", false], [344, "index-24", false], [344, "index-52", false]], "operations\uff08\u64cd\u4f5c\uff09": [[294, "index-0", false], [296, "index-0", false], [344, "index-1", false], [344, "index-16", false], [344, "index-5", false]], "operation\uff08\u64cd\u4f5c\uff09": [[344, "index-20", false], [430, "index-58", false], [430, "index-59", false], [430, "index-64", false], [430, "index-71", false], [430, "index-73", false], [430, "index-82", false], [436, "index-20", false]], "operator": [[291, "module-operator", false]], "operator (2to3 fixer)": [[112, "to3fixer-operator", false]], "operators\uff08\u904b\u7b97\u5b50\uff09": [[435, "index-31", false]], "operator\uff08\u904b\u7b97\u5b50\uff09": [[344, "index-10", false], [344, "index-13", false], [344, "index-16", false], [344, "index-20", false], [344, "index-4", false], [344, "index-6", false], [344, "index-7", false], [428, "index-71", false], [430, "index-58", false], [430, "index-60", false], [430, "index-61", false], [430, "index-62", false], [430, "index-65", false], [430, "index-66", false], [430, "index-67", false], [430, "index-68", false], [430, "index-69", false], [430, "index-70", false], [430, "index-71", false], [430, "index-74", false], [430, "index-75", false], [430, "index-76", false], [430, "index-77", false], [430, "index-80", false], [430, "index-81", false], [430, "index-83", false], [430, "index-84", false], [430, "index-85", false], [430, "index-88", false], [430, "index-97", false]], "opmap (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.opmap", false]], "opname (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.opname", false]], "opt": [[456, "envvar-OPT", false], [456, "index-9", false]], "optim_args_from_interpreter_flags() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.optim_args_from_interpreter_flags", false]], "optimize (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.optimize", false]], "optimize() (\u65bc pickletools \u6a21\u7d44\u4e2d)": [[300, "pickletools.optimize", false]], "optimized_bytecode_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES", false]], "option (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.Option", false]], "optional (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Optional", false]], "optionconflicterror": [[292, "optparse.OptionConflictError", false]], "optionerror": [[292, "optparse.OptionError", false]], "optiongroup (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.OptionGroup", false]], "optionmenu (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.OptionMenu", false]], "optionparser (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.OptionParser", false]], "options (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.options", false]], "options (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.Options", false]], "options (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.options", false]], "options() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.options", false]], "optionvalueerror": [[292, "optparse.OptionValueError", false]], "optionxform() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.optionxform", false]], "optparse": [[292, "module-optparse", false]], "or": [[344, "index-4", false], [344, "index-6", false], [430, "index-75", false], [430, "index-76", false], [430, "index-85", false]], "or (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Or", false]], "or_() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.or_", false]], "ord": [[428, "index-19", false]], "ord()": [[225, "ord", false]], "ordered_attributes (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.ordered_attributes", false]], "ordereddict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.OrderedDict", false]], "ordereddict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.OrderedDict", false]], "order\uff08\u9806\u5e8f\uff09": [[430, "index-96", false]], "orig_argv (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.orig_argv", false]], "origin (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.origin", false]], "origin_req_host (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.origin_req_host", false]], "origin_server (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.origin_server", false]], "os": [[293, "module-os", false], [306, "index-0", false]], "os.path": [[294, "module-os.path", false]], "os_environ (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.os_environ", false]], "oserror": [[213, "OSError", false]], "ossaudiodev": [[295, "module-ossaudiodev", false]], "ossaudioerror": [[295, "ossaudiodev.OSSAudioError", false]], "outfile": [[262, "cmdoption-json.tool-arg-outfile", false]], "output": [[436, "index-3", false]], "output (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.output", false]], "output (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.output", false]], "output (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.output", false]], "output() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.output", false]], "output() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.output", false]], "output_charset (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.output_charset", false]], "output_codec (email.charset.charset \u7684\u5c6c\u6027)": [[195, "email.charset.Charset.output_codec", false]], "output_difference() (doctest.outputchecker \u7684\u65b9\u6cd5)": [[193, "doctest.OutputChecker.output_difference", false]], "outputchecker (doctest \u4e2d\u7684\u985e\u5225)": [[193, "doctest.OutputChecker", false]], "outputstring() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.OutputString", false]], "outsidedestinationerror": [[358, "tarfile.OutsideDestinationError", false]], "over mutable sequence\uff08\u65bc\u53ef\u8b8a\u5e8f\u5217\uff09": [[344, "index-21", false]], "over() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.over", false]], "overflow (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Overflow", false]], "overflowerror": [[213, "OverflowError", false]], "overflowerror\uff08\u5185\u5efa\u4f8b\u5916\uff09": [[39, "index-1", false], [39, "index-2", false], [39, "index-3", false], [39, "index-4", false], [39, "index-5", false], [39, "index-6", false]], "overlap() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.overlap", false]], "overlaps() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.overlaps", false]], "overlaps() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.overlaps", false]], "overlay() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.overlay", false]], "overload() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.overload", false]], "overloading\uff08\u591a\u8f09\uff09": [[428, "index-71", false]], "override() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.override", false]], "overwrite() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.overwrite", false]], "owner() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.owner", false]], "p (pdb command)": [[297, "pdbcommand-p", false]], "p_all (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_ALL", false]], "p_detach (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_DETACH", false]], "p_nowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_NOWAIT", false]], "p_nowaito (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_NOWAITO", false]], "p_overlay (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_OVERLAY", false]], "p_pgid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PGID", false]], "p_pid (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PID", false]], "p_pidfd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_PIDFD", false]], "p_wait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.P_WAIT", false]], "pack() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.pack", false]], "pack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.pack", false]], "pack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.pack", false]], "pack_array() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_array", false]], "pack_bytes() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_bytes", false]], "pack_double() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_double", false]], "pack_farray() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_farray", false]], "pack_float() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_float", false]], "pack_fopaque() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_fopaque", false]], "pack_fstring() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_fstring", false]], "pack_into() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.pack_into", false]], "pack_into() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.pack_into", false]], "pack_list() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_list", false]], "pack_opaque() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_opaque", false]], "pack_string() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.pack_string", false]], "package (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.Package", false]], "package variable\uff08\u5957\u4ef6\u8b8a\u6578\uff09": [[31, "index-0", false]], "package\uff08\u5957\u4ef6\uff09": [[87, "term-package", true], [334, "index-4", false], [432, "index-3", false], [432, "index-4", false], [432, "index-5", false]], "packed (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.packed", false]], "packed (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.packed", false]], "packer (xdrlib \u4e2d\u7684\u985e\u5225)": [[408, "xdrlib.Packer", false]], "packing (widgets)": [[369, "index-2", false]], "packing\uff08\u6253\u5305\uff09": [[347, "index-0", false]], "pager": [[313, "index-1", false]], "pair_content() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.pair_content", false]], "pair_number() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.pair_number", false]], "pairwise() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.pairwise", false]], "panedwindow (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.PanedWindow", false]], "parameter (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Parameter", false]], "parameter list\uff08\u53c3\u6578\u5217\u8868\uff09": [[427, "index-28", false]], "parameterizedmimeheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.ParameterizedMIMEHeader", false]], "parameters (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.parameters", false]], "parameter\uff08\u53c3\u6578\uff09": [[85, "index-1", false], [87, "term-parameter", true], [427, "index-27", false], [427, "index-31", false], [430, "index-48", false]], "params (email.headerregistry.parameterizedmimeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ParameterizedMIMEHeader.params", false]], "paramspec (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.ParamSpec", false]], "paramspec (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ParamSpec", false]], "paramspecargs (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ParamSpecArgs", false]], "paramspeckwargs (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.ParamSpecKwargs", false]], "paramstyle (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.paramstyle", false]], "pardir (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pardir", false]], "paren (2to3 fixer)": [[112, "to3fixer-paren", false]], "parent (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.parent", false]], "parent (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.parent", false]], "parent (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parent", false]], "parent (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.parent", false]], "parent (pyclbr.function \u7684\u5c6c\u6027)": [[312, "pyclbr.Function.parent", false]], "parent (urllib.request.basehandler \u7684\u5c6c\u6027)": [[395, "urllib.request.BaseHandler.parent", false]], "parent() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.parent", false]], "parent_process() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.parent_process", false]], "parenthesized form": [[430, "index-8", false]], "parentnode (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.parentNode", false]], "parents (collections.chainmap \u7684\u5c6c\u6027)": [[160, "collections.ChainMap.parents", false]], "parents (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parents", false]], "paretovariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.paretovariate", false]], "parse() (doctest.doctestparser \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestParser.parse", false]], "parse() (email.parser.bytesparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesParser.parse", false]], "parse() (email.parser.parser \u7684\u65b9\u6cd5)": [[207, "email.parser.Parser.parse", false]], "parse() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.parse", false]], "parse() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.parse", false]], "parse() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.parse", false]], "parse() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.Parse", false]], "parse() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.parse", false]], "parse() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.parse", false]], "parse() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse", false]], "parse() (\u65bc xml.dom.minidom \u6a21\u7d44\u4e2d)": [[411, "xml.dom.minidom.parse", false]], "parse() (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.parse", false]], "parse() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.parse", false]], "parse() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.parse", false]], "parse_and_bind() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.parse_and_bind", false]], "parse_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_args", false]], "parse_args() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.parse_args", false]], "parse_colnames (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.PARSE_COLNAMES", false]], "parse_config_h() (\u65bc sysconfig \u6a21\u7d44\u4e2d)": [[355, "sysconfig.parse_config_h", false]], "parse_decltypes (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.PARSE_DECLTYPES", false]], "parse_header() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse_header", false]], "parse_headers() (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.parse_headers", false]], "parse_intermixed_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_intermixed_args", false]], "parse_known_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_known_args", false]], "parse_known_intermixed_args() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.parse_known_intermixed_args", false]], "parse_multipart() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.parse_multipart", false]], "parse_qs() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.parse_qs", false]], "parse_qsl() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.parse_qsl", false]], "parseaddr() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parseaddr", false]], "parsebytes() (email.parser.bytesparser \u7684\u65b9\u6cd5)": [[207, "email.parser.BytesParser.parsebytes", false]], "parsedate() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate", false]], "parsedate_to_datetime() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate_to_datetime", false]], "parsedate_tz() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.parsedate_tz", false]], "parseerror (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.ParseError", false]], "parsefile() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ParseFile", false]], "parseflags() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.ParseFlags", false]], "parser (email.parser \u4e2d\u7684\u985e\u5225)": [[207, "email.parser.Parser", false]], "parsercreate() (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.ParserCreate", false]], "parseresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.ParseResult", false]], "parseresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.ParseResultBytes", false]], "parser\uff08\u5256\u6790\u5668\uff09": [[435, "index-0", false]], "parsestr() (email.parser.parser \u7684\u65b9\u6cd5)": [[207, "email.parser.Parser.parsestr", false]], "parsestring() (\u65bc xml.dom.minidom \u6a21\u7d44\u4e2d)": [[411, "xml.dom.minidom.parseString", false]], "parsestring() (\u65bc xml.dom.pulldom \u6a21\u7d44\u4e2d)": [[412, "xml.dom.pulldom.parseString", false]], "parsestring() (\u65bc xml.sax \u6a21\u7d44\u4e2d)": [[414, "xml.sax.parseString", false]], "parsingerror": [[167, "configparser.ParsingError", false]], "parsing\uff08\u5256\u6790\uff09": [[394, "index-0", false]], "partial (asyncio.incompletereaderror \u7684\u5c6c\u6027)": [[127, "asyncio.IncompleteReadError.partial", false]], "partial() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.partial", false]], "partial() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.partial", false]], "partialmethod (functools \u4e2d\u7684\u985e\u5225)": [[226, "functools.partialmethod", false]], "parties (asyncio.barrier \u7684\u5c6c\u6027)": [[138, "asyncio.Barrier.parties", false]], "parties (threading.barrier \u7684\u5c6c\u6027)": [[365, "threading.Barrier.parties", false]], "partition() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.partition", false]], "partition() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.partition", false]], "partition() (str \u7684\u65b9\u6cd5)": [[344, "str.partition", false]], "parts (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.parts", false]], "pass": [[436, "index-20", false]], "pass (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Pass", false]], "pass_() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.pass_", false]], "paste\uff08\u8cbc\u4e0a\uff09": [[247, "index-4", false]], "patch() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.patch", false]], "patch() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch", false]], "patch.dict() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.dict", false]], "patch.multiple() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.multiple", false]], "patch.object() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.object", false]], "patch.stopall() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.patch.stopall", false]], "path": [[35, "index-41", false], [35, "index-42", false], [84, "index-0", false], [84, "index-1", false], [151, "index-3", false], [151, "index-6", false], [293, "index-33", false], [293, "index-34", false], [293, "index-35", false], [293, "index-36", false], [293, "index-39", false], [293, "index-40", false], [293, "index-41", false], [293, "index-42", false], [293, "index-52", false], [334, "index-3", false], [348, "index-2", false], [399, "index-10", false], [399, "index-11", false], [399, "index-12", false], [403, "index-3", false], [438, "index-12", false], [450, "index-15", false], [455, "index-32", false], [460, "index-2", false], [461, "index-10", false], [461, "index-12", false], [461, "index-13", false], [461, "index-14", false], [461, "index-18", false], [461, "index-2", false], [461, "index-20", false], [461, "index-22", false], [461, "index-23", false], [461, "index-25", false], [461, "index-3", false], [461, "index-40", false], [461, "index-5", false], [461, "index-9", false], [477, "index-54", false], [477, "index-57", false], [477, "index-58", false], [481, "index-22", false], [483, "index-213", false], [483, "index-214", false], [483, "index-55", false], [483, "index-80", false]], "path (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.path", false]], "path (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.path", false]], "path (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.path", false]], "path (importerror \u7684\u5c6c\u6027)": [[213, "ImportError.path", false]], "path (importlib.abc.fileloader \u7684\u5c6c\u6027)": [[250, "importlib.abc.FileLoader.path", false]], "path (importlib.machinery.extensionfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ExtensionFileLoader.path", false]], "path (importlib.machinery.filefinder \u7684\u5c6c\u6027)": [[250, "importlib.machinery.FileFinder.path", false]], "path (importlib.machinery.sourcefileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourceFileLoader.path", false]], "path (importlib.machinery.sourcelessfileloader \u7684\u5c6c\u6027)": [[250, "importlib.machinery.SourcelessFileLoader.path", false]], "path (os.direntry \u7684\u5c6c\u6027)": [[293, "os.DirEntry.path", false]], "path (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.Path", false]], "path (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.Path", false]], "path (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path", false]], "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u5c0b\u6aa2\u5668\uff09": [[87, "term-path-based-finder", true]], "path based finder\uff08\u57fa\u65bc\u8def\u5f91\u7684\u641c\u5c0b\u5668\uff09": [[432, "index-16", false]], "path browser\uff08\u8def\u5f91\u700f\u89bd\u5668\uff09": [[247, "index-1", false]], "path entry finder\uff08\u8def\u5f91\u9805\u76ee\u5c0b\u6aa2\u5668\uff09": [[87, "term-path-entry-finder", true]], "path entry hook\uff08\u8def\u5f91\u9805\u76ee\u9264\uff09": [[87, "term-path-entry-hook", true]], "path entry\uff08\u8def\u5f91\u9805\u76ee\uff09": [[87, "term-path-entry", true]], "path hooks": [[432, "index-9", false]], "path separator (posix)\uff08\u8def\u5f91\u5206\u9694\u5668 (posix)\uff09": [[293, "index-51", false]], "path() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.path", false]], "path-like object\uff08\u985e\u8def\u5f91\u7269\u4ef6\uff09": [[87, "term-path-like-object", true]], "path.stem (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.stem", false]], "path.suffix (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.suffix", false]], "path.suffixes (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.Path.suffixes", false]], "path_hook() (importlib.machinery.filefinder \u7684\u985e\u5225\u65b9\u6cd5)": [[250, "importlib.machinery.FileFinder.path_hook", false]], "path_hooks (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path_hooks", false]], "path_importer_cache (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.path_importer_cache", false]], "path_mtime() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.path_mtime", false]], "path_return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.path_return_ok", false]], "path_stats() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.path_stats", false]], "path_stats() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.path_stats", false]], "pathconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathconf", false]], "pathconf_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathconf_names", false]], "pathentryfinder (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.PathEntryFinder", false]], "pathext": [[461, "index-4", false], [461, "index-6", false], [477, "index-50", false], [483, "index-138", false]], "pathfinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.PathFinder", false]], "pathlib": [[296, "module-pathlib", false]], "pathlike (os \u4e2d\u7684\u985e\u5225)": [[293, "os.PathLike", false]], "pathname expansion\uff08\u8def\u5f91\u540d\u7a31\u5c55\u958b\uff09": [[231, "index-0", false]], "pathname2url() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.pathname2url", false]], "pathsep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pathsep", false]], "path\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false]], "path\uff08\u8def\u5f91\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false], [265, "index-0", false], [294, "index-0", false], [296, "index-0", false], [334, "index-0", false], [334, "index-4", false], [352, "index-21", false], [432, "index-9", false], [450, "index-0", false]], "pattern (re \u4e2d\u7684\u985e\u5225)": [[319, "re.Pattern", false]], "pattern (re.error \u7684\u5c6c\u6027)": [[319, "re.error.pattern", false]], "pattern (re.pattern \u7684\u5c6c\u6027)": [[319, "re.Pattern.pattern", false]], "pattern (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Pattern", false]], "pattern matching\uff08\u6a21\u5f0f\u5339\u914d\uff09": [[427, "index-18", true]], "pause() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pause", false]], "pause_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.pause_reading", false]], "pause_writing() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.pause_writing", false]], "pax_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.PAX_FORMAT", false]], "pax_headers (tarfile.tarfile \u7684\u5c6c\u6027)": [[358, "tarfile.TarFile.pax_headers", false]], "pax_headers (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.pax_headers", false]], "pbkdf2_hmac() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.pbkdf2_hmac", false]], "pd() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pd", false]], "pdb": [[297, "module-pdb", false]], "pdb (pdb \u4e2d\u7684\u985e\u5225)": [[297, "pdb.Pdb", false]], "pdb\uff08pdb \u4e2d\u7684\u985e\u5225\uff09": [[297, "index-1", false]], "pdf() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.pdf", false]], "peek() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.peek", false]], "peek() (gzip.gzipfile \u7684\u65b9\u6cd5)": [[234, "gzip.GzipFile.peek", false]], "peek() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.peek", false]], "peek() (lzma.lzmafile \u7684\u65b9\u6cd5)": [[270, "lzma.LZMAFile.peek", false]], "peek() (weakref.finalize \u7684\u65b9\u6cd5)": [[402, "weakref.finalize.peek", false]], "pem_cert_to_der_cert() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PEM_cert_to_DER_cert", false]], "pen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pen", false]], "pencolor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pencolor", false]], "pending (ssl.memorybio \u7684\u5c6c\u6027)": [[341, "ssl.MemoryBIO.pending", false]], "pending() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.pending", false]], "pendingdeprecationwarning": [[213, "PendingDeprecationWarning", false]], "pendown() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pendown", false]], "pensize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pensize", false]], "penup() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.penup", false]], "pep": [[87, "term-PEP", true]], "pep 1": [[87, "index-94", false], [462, "index-0", false], [462, "index-1", false]], "pep 100": [[462, "index-3", false]], "pep 11": [[456, "index-1", false], [461, "index-0", false], [461, "index-38", false], [470, "index-19", false], [473, "index-115", false], [478, "index-48", false], [480, "index-5", false], [483, "index-254", false], [483, "index-53", false], [483, "index-54", false]], "pep 11#tier-3": [[473, "index-116", false]], "pep 201": [[462, "index-2", false]], "pep 205": [[402, "index-8", false], [463, "index-9", false]], "pep 207": [[463, "index-4", false], [463, "index-5", false]], "pep 208": [[463, "index-13", false]], "pep 217": [[463, "index-12", false]], "pep 218": [[465, "index-0", false], [466, "index-0", false], [466, "index-13", false]], "pep 227": [[113, "index-24", false], [463, "index-2", false], [464, "index-16", false]], "pep 229": [[463, "index-8", false]], "pep 230": [[463, "index-7", false]], "pep 232": [[463, "index-10", false]], "pep 234": [[464, "index-25", false]], "pep 235": [[250, "index-0", false]], "pep 236": [[113, "index-35", false], [436, "index-42", false], [463, "index-0", false], [463, "index-1", false], [463, "index-3", false]], "pep 237": [[344, "index-71", false], [344, "index-72", false], [464, "index-10", false], [466, "index-1", false], [466, "index-16", false], [470, "index-1", false]], "pep 238": [[66, "index-3", false], [87, "index-84", false], [113, "index-26", false], [464, "index-11", false], [464, "index-12", false], [464, "index-13", false], [470, "index-2", false]], "pep 241": [[463, "index-14", false], [463, "index-15", false], [463, "index-16", false]], "pep 243": [[463, "index-17", false]], "pep 246": [[340, "index-8", false], [483, "index-50", false]], "pep 247": [[477, "index-37", false]], "pep 249": [[340, "index-0", false], [340, "index-10", false], [340, "index-11", false], [340, "index-12", false], [340, "index-14", false], [340, "index-2", false], [340, "index-3", false], [340, "index-4", false], [340, "index-5", false], [340, "index-9", false], [467, "index-24", false], [467, "index-25", false], [474, "index-24", false], [483, "index-41", false], [483, "index-73", false]], "pep 252": [[428, "index-85", false], [464, "index-2", false], [464, "index-4", false]], "pep 253": [[464, "index-0", false], [464, "index-1", false], [464, "index-3", false], [464, "index-5", false], [464, "index-6", false]], "pep 255": [[113, "index-25", false], [430, "index-26", false], [464, "index-8", false], [464, "index-9", false], [465, "index-1", false], [465, "index-2", false]], "pep 261": [[464, "index-14", false], [464, "index-26", false]], "pep 263": [[109, "index-0", false], [250, "index-1", false], [378, "index-0", false], [378, "index-1", false], [465, "index-3", false], [467, "index-19", false], [483, "index-82", false]], "pep 264": [[464, "index-22", false]], "pep 273": [[423, "index-0", false], [423, "index-1", false], [465, "index-4", false], [465, "index-5", false]], "pep 274": [[470, "index-10", false]], "pep 277": [[465, "index-7", false]], "pep 278": [[87, "index-100", false], [465, "index-9", false]], "pep 279": [[465, "index-10", false]], "pep 282": [[267, "index-1", false], [332, "index-2", false], [465, "index-11", false], [465, "index-12", false]], "pep 285": [[465, "index-13", false], [465, "index-14", false]], "pep 288": [[467, "index-12", false]], "pep 289": [[95, "index-4", false], [466, "index-15", false], [466, "index-2", false]], "pep 292": [[345, "index-23", false], [466, "index-3", false]], "pep 293": [[465, "index-15", false]], "pep 3000": [[468, "index-1", false]], "pep 301": [[465, "index-16", false]], "pep 302": [[87, "index-90", false], [225, "index-14", false], [250, "index-12", false], [250, "index-13", false], [250, "index-14", false], [250, "index-16", false], [250, "index-2", false], [265, "index-1", false], [302, "index-0", false], [302, "index-2", false], [302, "index-3", false], [302, "index-5", false], [302, "index-6", false], [302, "index-7", false], [324, "index-1", false], [352, "index-25", false], [352, "index-26", false], [423, "index-2", false], [432, "index-1", false], [432, "index-19", false], [465, "index-17", false], [465, "index-18", false], [465, "index-19", false], [465, "index-6", false], [467, "index-21", false], [471, "index-2", false], [476, "index-20", false], [476, "index-21", false], [476, "index-37", false]], "pep 305": [[175, "index-7", false], [465, "index-20", false]], "pep 307": [[299, "index-2", false], [465, "index-21", false], [465, "index-22", false], [465, "index-23", false]], "pep 308": [[430, "index-89", false], [467, "index-1", false], [467, "index-2", false]], "pep 309": [[467, "index-3", false]], "pep 3100": [[468, "index-2", false]], "pep 3101": [[68, "index-23", false], [345, "index-1", false], [345, "index-19", false], [468, "index-9", false], [470, "index-23", false], [470, "index-24", false], [484, "index-23", false]], "pep 3102": [[470, "index-7", false]], "pep 3104": [[436, "index-46", false], [470, "index-8", false]], "pep 3105": [[113, "index-29", false], [468, "index-10", false], [470, "index-0", false]], "pep 3106": [[469, "index-6", false]], "pep 3107": [[427, "index-36", false], [441, "index-16", false], [470, "index-6", false], [478, "index-9", false], [480, "index-0", false]], "pep 3108": [[470, "index-17", false], [470, "index-20", false], [470, "index-22", false]], "pep 3109": [[470, "index-11", false], [470, "index-26", false]], "pep 3110": [[468, "index-11", false], [470, "index-13", false], [470, "index-27", false]], "pep 3111": [[470, "index-32", false]], "pep 3112": [[113, "index-30", false], [468, "index-12", false]], "pep 3113": [[470, "index-15", false]], "pep 3114": [[470, "index-30", false]], "pep 3115": [[385, "index-0", false], [427, "index-45", false], [428, "index-90", false], [470, "index-14", false], [476, "index-29", false]], "pep 3116": [[87, "index-101", false], [468, "index-14", false], [471, "index-3", false]], "pep 3118": [[344, "index-50", false], [468, "index-15", false], [470, "index-39", false], [476, "index-4", false], [476, "index-53", false], [476, "index-61", false], [481, "index-8", false], [483, "index-252", false], [483, "index-259", false], [483, "index-304", false]], "pep 3119": [[49, "index-4", false], [49, "index-5", false], [116, "index-4", false], [161, "index-7", false], [428, "index-94", false], [468, "index-16", false]], "pep 3120": [[250, "index-10", false], [435, "index-1", false], [470, "index-4", false]], "pep 3121": [[45, "index-10", false], [470, "index-34", false], [483, "index-153", false]], "pep 3123": [[470, "index-35", false]], "pep 3127": [[468, "index-17", false]], "pep 3129": [[427, "index-41", false], [427, "index-46", false], [468, "index-18", false]], "pep 3131": [[435, "index-11", false], [435, "index-12", false], [470, "index-5", false], [483, "index-221", false]], "pep 3132": [[436, "index-13", false], [470, "index-9", false]], "pep 3134": [[213, "index-14", false], [470, "index-12", false], [470, "index-28", false], [470, "index-29", false], [483, "index-67", false]], "pep 3135": [[428, "index-93", false], [470, "index-31", false]], "pep 3137": [[469, "index-7", false]], "pep 3138": [[470, "index-3", false]], "pep 314": [[467, "index-4", false]], "pep 3141": [[116, "index-5", false], [289, "index-2", false], [468, "index-19", false]], "pep 3144": [[476, "index-59", false]], "pep 3147": [[31, "index-3", false], [85, "index-3", false], [163, "index-0", false], [163, "index-2", false], [163, "index-3", false], [250, "index-11", false], [250, "index-21", false], [250, "index-23", false], [250, "index-24", false], [311, "index-1", false], [311, "index-4", false], [324, "index-2", false], [362, "index-3", false], [432, "index-13", false], [450, "index-16", false], [475, "index-5", false], [476, "index-18", false]], "pep 3148": [[166, "index-2", false], [475, "index-4", false]], "pep 3149": [[352, "index-0", false], [475, "index-6", false], [483, "index-299", false]], "pep 3151": [[23, "index-9", false], [213, "index-9", false], [322, "index-0", false], [328, "index-0", false], [337, "index-2", false], [476, "index-10", false]], "pep 3154": [[299, "index-3", false], [477, "index-12", false], [477, "index-39", false], [483, "index-224", false]], "pep 3155": [[87, "index-97", false], [476, "index-15", false]], "pep 3156": [[477, "index-25", false], [477, "index-26", false], [477, "index-31", false], [477, "index-4", false], [477, "index-8", false]], "pep 318": [[427, "index-40", false], [427, "index-47", false], [466, "index-12", false], [466, "index-4", false], [466, "index-5", false]], "pep 322": [[466, "index-14", false], [466, "index-6", false]], "pep 324": [[348, "index-0", false], [466, "index-8", false]], "pep 325": [[467, "index-13", false]], "pep 327": [[466, "index-9", false]], "pep 328": [[113, "index-27", false], [225, "index-15", false], [250, "index-3", false], [432, "index-24", false], [466, "index-10", false], [466, "index-17", false], [467, "index-5", false], [467, "index-6", false], [470, "index-16", false], [476, "index-36", false]], "pep 331": [[466, "index-11", false]], "pep 333": [[467, "index-26", false], [467, "index-27", false]], "pep 3333": [[407, "index-38", false], [407, "index-39", false], [407, "index-40", false], [407, "index-41", false], [407, "index-42", false], [407, "index-44", false], [407, "index-45", false], [407, "index-46", false], [407, "index-47", false], [407, "index-49", false], [407, "index-50", false], [407, "index-51", false], [407, "index-52", false], [407, "index-53", false], [407, "index-54", false], [407, "index-55", false], [407, "index-56", false], [473, "index-107", false], [475, "index-9", false]], "pep 338": [[324, "index-6", false], [432, "index-26", false], [455, "index-0", false], [467, "index-7", false]], "pep 339": [[467, "index-30", false]], "pep 341": [[467, "index-8", false]], "pep 342": [[95, "index-0", false], [95, "index-2", false], [161, "index-1", false], [430, "index-27", false], [467, "index-11", false], [467, "index-31", false], [467, "index-9", false]], "pep 343": [[87, "index-80", false], [113, "index-28", false], [169, "index-2", false], [427, "index-17", false], [428, "index-107", false], [467, "index-10", false], [467, "index-14", false], [468, "index-3", false]], "pep 347": [[467, "index-28", false]], "pep 352": [[467, "index-15", false], [468, "index-25", false], [470, "index-25", false]], "pep 353": [[35, "index-40", false], [467, "index-16", false], [467, "index-17", false], [467, "index-29", false], [472, "index-116", false], [483, "index-159", false]], "pep 356": [[467, "index-0", false]], "pep 357": [[467, "index-18", false]], "pep 361": [[468, "index-0", false]], "pep 362": [[87, "index-73", false], [87, "index-92", false], [255, "index-0", false], [476, "index-57", false]], "pep 366": [[250, "index-4", false], [324, "index-7", false], [432, "index-11", false], [432, "index-12", false], [432, "index-23", false], [432, "index-25", false], [476, "index-22", false]], "pep 370": [[334, "index-9", false], [455, "index-16", false], [455, "index-39", false], [455, "index-40", false], [468, "index-7", false], [483, "index-48", false]], "pep 371": [[468, "index-8", false]], "pep 372": [[68, "index-4", false], [469, "index-2", false], [471, "index-4", false], [471, "index-6", false], [484, "index-4", false]], "pep 373": [[105, "index-0", false], [469, "index-0", false]], "pep 378": [[345, "index-21", false], [469, "index-3", false], [471, "index-1", false]], "pep 380": [[430, "index-28", false], [476, "index-12", false]], "pep 380#use-of-stopiteration-to-return-values": [[353, "index-0", false]], "pep 383": [[64, "index-2", false], [64, "index-3", false], [64, "index-4", false], [158, "index-2", false], [337, "index-1", false], [483, "index-63", false]], "pep 384": [[472, "index-118", false], [475, "index-1", false], [483, "index-109", false]], "pep 385": [[475, "index-14", false]], "pep 387": [[57, "index-3", false], [80, "index-0", false], [213, "index-11", false], [213, "index-12", false]], "pep 389": [[469, "index-4", false], [475, "index-2", false]], "pep 391": [[469, "index-5", false], [475, "index-3", false]], "pep 392": [[475, "index-0", false]], "pep 393": [[64, "index-0", false], [158, "index-5", false], [352, "index-19", false], [472, "index-117", false], [476, "index-30", false], [476, "index-32", false], [476, "index-33", false], [476, "index-38", false], [476, "index-54", false], [476, "index-6", false], [476, "index-62", false], [476, "index-8", false], [482, "index-25", false], [482, "index-26", false], [483, "index-97", false]], "pep 397": [[461, "index-19", false], [476, "index-55", false], [478, "index-22", false]], "pep 398": [[476, "index-51", false]], "pep 4": [[470, "index-18", false]], "pep 405": [[399, "index-9", false], [476, "index-52", false]], "pep 409": [[476, "index-13", false]], "pep 411": [[87, "index-96", false], [352, "index-13", false], [352, "index-14", false], [352, "index-31", false], [352, "index-32", false]], "pep 412": [[226, "index-0", false], [476, "index-56", false]], "pep 414": [[435, "index-21", false], [476, "index-14", false]], "pep 418": [[476, "index-60", false]], "pep 420": [[87, "index-91", false], [87, "index-95", false], [250, "index-5", false], [432, "index-14", false], [432, "index-15", false], [432, "index-2", false], [432, "index-20", false], [432, "index-21", false], [432, "index-22", false], [432, "index-6", false], [476, "index-2", false], [476, "index-3", false], [483, "index-285", false], [483, "index-292", false]], "pep 421": [[352, "index-15", false], [352, "index-16", false], [476, "index-58", false]], "pep 424": [[477, "index-24", false], [477, "index-38", false]], "pep 428": [[296, "index-3", false], [477, "index-30", false], [477, "index-7", false]], "pep 429": [[477, "index-0", false]], "pep 432": [[34, "index-37", false], [34, "index-38", false], [480, "index-38", false], [483, "index-251", false]], "pep 434": [[247, "index-7", false], [469, "index-13", false]], "pep 435": [[477, "index-28", false], [477, "index-29", false], [477, "index-6", false]], "pep 436": [[477, "index-18", false], [477, "index-48", false], [477, "index-49", false]], "pep 441": [[478, "index-29", false], [478, "index-30", false]], "pep 442": [[63, "index-5", false], [75, "index-2", false], [227, "index-2", false], [477, "index-15", false], [477, "index-16", false], [477, "index-45", false], [477, "index-46", false], [482, "index-20", false], [483, "index-210", false]], "pep 443": [[87, "index-86", false], [477, "index-11", false], [477, "index-36", false]], "pep 445": [[477, "index-17", false], [477, "index-43", false], [477, "index-44", false], [477, "index-51", false]], "pep 446": [[477, "index-14", false], [477, "index-2", false], [477, "index-21", false], [477, "index-22", false]], "pep 448": [[430, "index-19", false], [430, "index-51", false], [430, "index-94", false], [478, "index-5", false], [478, "index-6", false], [483, "index-283", false], [483, "index-294", false], [483, "index-295", false], [483, "index-296", false]], "pep 450": [[477, "index-32", false], [477, "index-33", false], [477, "index-9", false]], "pep 451": [[45, "index-7", false], [250, "index-6", false], [302, "index-10", false], [302, "index-11", false], [324, "index-3", false], [324, "index-5", false], [324, "index-8", false], [352, "index-20", false], [432, "index-27", false], [472, "index-112", false], [474, "index-36", false], [477, "index-23", false], [477, "index-3", false], [478, "index-27", false], [483, "index-286", false], [483, "index-46", false]], "pep 453": [[210, "index-2", false], [469, "index-19", false], [469, "index-20", false], [469, "index-21", false], [477, "index-1", false], [477, "index-19", false], [477, "index-20", false], [477, "index-27", false], [477, "index-42", false], [477, "index-5", false], [477, "index-52", false]], "pep 454": [[477, "index-10", false], [477, "index-34", false], [477, "index-35", false]], "pep 456": [[30, "index-2", false], [477, "index-13", false], [477, "index-47", false]], "pep 461": [[344, "index-49", false], [478, "index-7", false], [478, "index-8", false]], "pep 465": [[478, "index-3", false], [478, "index-4", false], [478, "index-46", false], [483, "index-306", false]], "pep 466": [[469, "index-14", false], [469, "index-15", false], [469, "index-16", false], [469, "index-17", false]], "pep 468": [[160, "index-10", false], [479, "index-24", false], [483, "index-261", false]], "pep 471": [[478, "index-13", false], [478, "index-14", false], [483, "index-302", false]], "pep 475": [[213, "index-8", false], [225, "index-20", false], [293, "index-22", false], [293, "index-24", false], [293, "index-25", false], [293, "index-44", false], [328, "index-3", false], [328, "index-4", false], [328, "index-5", false], [328, "index-6", false], [328, "index-7", false], [329, "index-0", false], [333, "index-0", false], [333, "index-1", false], [337, "index-10", false], [337, "index-11", false], [337, "index-12", false], [337, "index-13", false], [337, "index-4", false], [337, "index-5", false], [337, "index-7", false], [337, "index-8", false], [337, "index-9", false], [366, "index-8", false], [478, "index-15", false], [478, "index-16", false], [478, "index-49", false], [483, "index-244", false], [483, "index-301", false]], "pep 476": [[469, "index-22", false]], "pep 477": [[469, "index-18", false]], "pep 478": [[478, "index-0", false]], "pep 479": [[113, "index-31", false], [213, "index-6", false], [213, "index-7", false], [478, "index-17", false], [478, "index-18", false], [480, "index-37", false], [483, "index-223", false], [483, "index-231", false], [483, "index-234", false], [483, "index-256", false], [483, "index-277", false], [483, "index-291", false]], "pep 483": [[87, "index-87", false], [478, "index-12", false]], "pep 484": [[87, "index-102", false], [87, "index-71", false], [87, "index-85", false], [87, "index-88", false], [87, "index-98", false], [87, "index-99", false], [122, "index-14", false], [122, "index-15", false], [122, "index-17", false], [122, "index-18", false], [344, "index-57", false], [386, "index-18", false], [386, "index-31", false], [386, "index-92", false], [386, "index-95", false], [386, "index-96", false], [427, "index-37", false], [428, "index-95", false], [436, "index-17", false], [441, "index-17", false], [472, "index-101", false], [472, "index-103", false], [472, "index-99", false], [473, "index-93", false], [473, "index-94", false], [474, "index-15", false], [474, "index-16", false], [474, "index-3", false], [478, "index-10", false], [478, "index-11", false], [479, "index-5", false], [480, "index-20", false], [481, "index-10", false], [481, "index-12", false]], "pep 484#annotating-instance-and-class-methods": [[473, "index-98", false]], "pep 485": [[154, "index-3", false], [275, "index-2", false], [478, "index-19", false], [478, "index-20", false], [483, "index-298", false]], "pep 486": [[478, "index-21", false], [478, "index-23", false], [483, "index-303", false]], "pep 487": [[479, "index-13", false], [479, "index-14", false], [479, "index-15", false], [479, "index-37", false], [483, "index-253", false], [483, "index-263", false], [483, "index-272", false]], "pep 488": [[250, "index-22", false], [250, "index-25", false], [250, "index-7", false], [311, "index-2", false], [362, "index-4", false], [455, "index-10", false], [455, "index-53", false], [455, "index-54", false], [455, "index-7", false], [478, "index-24", false], [478, "index-25", false], [478, "index-50", false], [483, "index-300", false]], "pep 489": [[33, "index-41", false], [45, "index-8", false], [71, "index-1", false], [73, "index-0", false], [250, "index-17", false], [250, "index-18", false], [250, "index-19", false], [250, "index-20", false], [250, "index-26", false], [250, "index-8", false], [478, "index-26", false], [478, "index-28", false], [478, "index-45", false], [483, "index-113", false], [483, "index-114", false], [483, "index-116", false], [483, "index-119", false], [483, "index-121", false], [483, "index-122", false], [483, "index-123", false], [483, "index-124", false], [483, "index-125", false], [483, "index-126", false], [483, "index-127", false], [483, "index-128", false], [483, "index-129", false], [483, "index-130", false], [483, "index-131", false], [483, "index-132", false], [483, "index-133", false], [483, "index-134", false], [483, "index-136", false], [483, "index-141", false], [483, "index-142", false], [483, "index-143", false], [483, "index-144", false], [483, "index-145", false], [483, "index-146", false], [483, "index-147", false], [483, "index-148", false], [483, "index-149", false], [483, "index-150", false], [483, "index-151", false], [483, "index-155", false], [483, "index-156", false], [483, "index-157", false], [483, "index-161", false], [483, "index-162", false], [483, "index-163", false], [483, "index-167", false], [483, "index-168", false], [483, "index-169", false], [483, "index-170", false], [483, "index-171", false], [483, "index-179", false], [483, "index-180", false], [483, "index-181", false], [483, "index-184", false], [483, "index-186", false], [483, "index-188", false], [483, "index-195", false], [483, "index-196", false], [483, "index-197", false], [483, "index-198", false], [483, "index-199", false], [483, "index-204", false], [483, "index-31", false]], "pep 492": [[87, "index-74", false], [87, "index-75", false], [87, "index-77", false], [87, "index-78", false], [87, "index-79", false], [87, "index-81", false], [87, "index-82", false], [161, "index-3", false], [255, "index-1", false], [255, "index-2", false], [427, "index-52", false], [428, "index-111", false], [430, "index-30", false], [478, "index-1", false], [478, "index-2", false], [478, "index-47", false], [478, "index-52", false], [479, "index-35", false], [479, "index-9", false], [483, "index-248", false], [483, "index-282", false], [483, "index-293", false], [483, "index-297", false]], "pep 493": [[469, "index-23", false]], "pep 494": [[479, "index-0", false]], "pep 495": [[425, "index-1", false], [479, "index-17", false], [479, "index-18", false], [483, "index-275", false]], "pep 498": [[87, "index-83", false], [435, "index-26", false], [479, "index-3", false], [479, "index-4", false], [483, "index-289", false]], "pep 5": [[80, "index-6", false], [463, "index-6", false]], "pep 506": [[326, "index-0", false], [479, "index-28", false], [483, "index-290", false]], "pep 511": [[479, "index-36", false]], "pep 514": [[461, "index-21", false], [473, "index-92", false], [483, "index-276", false], [483, "index-76", false]], "pep 515": [[221, "index-0", false], [345, "index-22", false], [473, "index-108", false], [479, "index-7", false], [479, "index-8", false], [483, "index-264", false], [483, "index-265", false]], "pep 519": [[87, "index-93", false], [479, "index-16", false], [483, "index-273", false], [483, "index-278", false], [483, "index-279", false], [483, "index-280", false], [483, "index-281", false], [483, "index-284", false]], "pep 520": [[479, "index-23", false]], "pep 523": [[26, "index-0", false], [33, "index-39", false], [33, "index-40", false], [473, "index-118", false], [474, "index-41", false], [479, "index-25", false], [479, "index-26", false], [482, "index-24", false], [483, "index-255", false], [483, "index-260", false], [483, "index-268", false], [483, "index-8", false]], "pep 524": [[293, "index-53", false], [479, "index-1", false], [479, "index-31", false], [479, "index-32", false], [483, "index-270", false], [483, "index-271", false]], "pep 525": [[87, "index-76", false], [161, "index-2", false], [255, "index-3", false], [352, "index-30", false], [352, "index-43", false], [430, "index-29", false], [479, "index-10", false], [483, "index-266", false]], "pep 526": [[87, "index-103", false], [87, "index-72", false], [122, "index-16", false], [122, "index-19", false], [181, "index-1", false], [181, "index-2", false], [386, "index-11", false], [386, "index-25", false], [386, "index-27", false], [427, "index-38", false], [436, "index-16", false], [472, "index-107", false], [479, "index-33", false], [479, "index-6", false], [480, "index-1", false], [481, "index-11", false], [483, "index-267", false]], "pep 528": [[33, "index-70", false], [34, "index-17", false], [461, "index-16", false], [479, "index-22", false]], "pep 529": [[33, "index-69", false], [64, "index-5", false], [293, "index-27", false], [352, "index-44", false], [352, "index-9", false], [455, "index-58", false], [461, "index-17", false], [479, "index-20", false], [481, "index-19", false], [483, "index-208", false], [483, "index-262", false], [483, "index-64", false]], "pep 530": [[430, "index-14", false], [479, "index-11", false], [479, "index-12", false], [483, "index-269", false]], "pep 538": [[34, "index-33", false], [266, "index-6", false], [455, "index-59", false], [456, "index-35", false], [480, "index-10", false], [480, "index-3", false], [480, "index-6", false], [480, "index-7", false], [483, "index-225", false], [483, "index-229", false], [483, "index-250", false]], "pep 539": [[33, "index-48", false], [480, "index-14", false], [480, "index-15", false], [483, "index-249", false]], "pep 540": [[34, "index-34", false], [266, "index-7", false], [293, "index-55", false], [480, "index-11", false], [480, "index-9", false], [483, "index-239", false]], "pep 544": [[386, "index-26", false], [386, "index-97", false], [481, "index-18", false]], "pep 545": [[480, "index-24", false], [480, "index-42", false]], "pep 552": [[34, "index-7", false], [250, "index-9", false], [311, "index-5", false], [473, "index-105", false], [480, "index-22", false], [480, "index-23", false], [483, "index-222", false], [483, "index-242", false]], "pep 553": [[480, "index-13", false], [483, "index-247", false]], "pep 554": [[33, "index-47", false], [474, "index-10", false]], "pep 557": [[181, "index-0", false], [480, "index-29", false]], "pep 560": [[385, "index-1", false], [385, "index-2", false], [385, "index-3", false], [428, "index-87", false], [428, "index-96", false], [480, "index-21", false], [480, "index-33", false], [483, "index-240", false]], "pep 562": [[428, "index-115", false], [480, "index-41", false], [483, "index-236", false], [483, "index-241", false]], "pep 563": [[113, "index-32", false], [113, "index-33", false], [386, "index-36", false], [427, "index-39", false], [436, "index-41", false], [473, "index-102", false], [480, "index-2", false], [483, "index-102", false], [483, "index-135", false]], "pep 564": [[480, "index-17", false], [480, "index-18", false], [480, "index-32", false], [483, "index-245", false]], "pep 565": [[213, "index-10", false], [480, "index-19", false]], "pep 566": [[251, "index-0", false]], "pep 567": [[126, "index-12", false], [126, "index-13", false], [126, "index-14", false], [129, "index-2", false], [170, "index-2", false], [480, "index-28", false], [480, "index-30", false], [483, "index-226", false], [483, "index-230", false], [483, "index-235", false]], "pep 570": [[427, "index-33", false], [481, "index-23", false], [481, "index-34", false], [483, "index-215", false]], "pep 572": [[78, "index-2", false], [427, "index-24", false], [430, "index-21", false], [430, "index-87", false], [474, "index-20", false], [481, "index-24", false], [481, "index-33", false], [483, "index-194", false], [483, "index-207", false], [483, "index-217", false], [483, "index-33", false]], "pep 573": [[482, "index-23", false], [482, "index-6", false], [483, "index-160", false], [483, "index-165", false]], "pep 574": [[299, "index-4", false], [299, "index-8", false], [481, "index-38", false]], "pep 578": [[59, "index-1", false], [142, "index-3", false], [352, "index-42", false], [481, "index-35", false]], "pep 584": [[160, "index-11", false], [160, "index-8", false], [160, "index-9", false], [293, "index-6", false], [293, "index-7", false], [385, "index-6", false], [402, "index-6", false], [402, "index-7", false], [482, "index-1", false], [482, "index-11", false], [483, "index-175", false], [483, "index-176", false], [483, "index-177", false], [483, "index-189", false], [483, "index-190", false], [483, "index-191", false], [483, "index-192", false]], "pep 585": [[87, "index-89", false], [161, "index-0", false], [344, "index-58", false], [385, "index-5", false], [386, "index-35", false], [386, "index-37", false], [386, "index-38", false], [386, "index-39", false], [386, "index-40", false], [386, "index-41", false], [386, "index-42", false], [386, "index-43", false], [386, "index-44", false], [386, "index-45", false], [386, "index-46", false], [386, "index-47", false], [386, "index-48", false], [386, "index-49", false], [386, "index-50", false], [386, "index-51", false], [386, "index-52", false], [386, "index-53", false], [386, "index-54", false], [386, "index-55", false], [386, "index-56", false], [386, "index-57", false], [386, "index-58", false], [386, "index-59", false], [386, "index-60", false], [386, "index-61", false], [386, "index-62", false], [386, "index-63", false], [386, "index-64", false], [386, "index-65", false], [386, "index-66", false], [386, "index-67", false], [386, "index-68", false], [386, "index-69", false], [386, "index-71", false], [386, "index-72", false], [386, "index-73", false], [386, "index-74", false], [386, "index-75", false], [482, "index-13", false], [482, "index-2", false], [483, "index-34", false], [483, "index-83", false], [483, "index-87", false]], "pep 586": [[386, "index-10", false], [472, "index-111", false], [481, "index-16", false], [482, "index-27", false]], "pep 587": [[34, "index-0", false], [481, "index-36", false], [481, "index-5", false], [483, "index-206", false], [483, "index-211", false], [483, "index-96", false]], "pep 589": [[386, "index-28", false], [481, "index-15", false]], "pep 590": [[10, "index-2", false], [472, "index-113", false], [473, "index-119", false], [481, "index-37", false], [482, "index-18", false], [482, "index-8", false], [483, "index-105", false], [483, "index-106", false], [483, "index-139", false], [483, "index-140", false], [483, "index-166", false], [483, "index-173", false], [483, "index-182", false], [483, "index-183", false], [483, "index-185", false], [483, "index-212", false], [483, "index-38", false], [483, "index-69", false], [483, "index-79", false], [483, "index-85", false], [483, "index-90", false]], "pep 591": [[386, "index-12", false], [386, "index-32", false], [481, "index-17", false]], "pep 593": [[386, "index-105", false], [386, "index-15", false], [482, "index-17", false], [482, "index-5", false], [483, "index-200", false]], "pep 594": [[288, "index-12", false], [473, "index-113", false], [473, "index-84", false], [474, "index-31", false], [474, "index-32", false], [474, "index-35", false], [483, "index-40", false], [483, "index-49", false], [483, "index-59", false], [483, "index-70", false], [483, "index-71", false], [483, "index-75", false]], "pep 594#aifc": [[117, "index-4", false]], "pep 594#audioop": [[141, "index-3", false]], "pep 594#cgi": [[151, "index-8", false]], "pep 594#cgitb": [[152, "index-4", false]], "pep 594#chunk": [[153, "index-3", false]], "pep 594#crypt": [[173, "index-1", false]], "pep 594#imghdr": [[249, "index-2", false]], "pep 594#mailcap": [[272, "index-0", false]], "pep 594#msilib": [[281, "index-3", false]], "pep 594#nis": [[287, "index-2", false]], "pep 594#ossaudiodev": [[295, "index-4", false]], "pep 594#pipes": [[301, "index-2", false]], "pep 594#sndhdr": [[336, "index-3", false]], "pep 594#spwd": [[339, "index-2", false]], "pep 594#sunau": [[349, "index-2", false]], "pep 594#telnetlib": [[359, "index-5", false]], "pep 594#uu-and-the-uu-encoding": [[397, "index-3", false]], "pep 594#xdrlib": [[408, "index-7", false]], "pep 596": [[482, "index-0", false]], "pep 597": [[258, "index-8", false], [472, "index-93", false], [483, "index-107", false]], "pep 602": [[80, "index-5", false], [482, "index-10", false]], "pep 604": [[88, "index-2", false], [344, "index-60", false], [472, "index-100", false], [472, "index-85", false], [483, "index-117", false], [483, "index-158", false]], "pep 612": [[386, "index-106", false], [386, "index-24", false], [386, "index-9", false], [386, "index-93", false], [386, "index-94", false], [472, "index-102", false], [472, "index-86", false], [483, "index-100", false], [483, "index-115", false], [483, "index-118", false], [483, "index-120", false], [483, "index-93", false]], "pep 613": [[386, "index-100", false], [472, "index-104", false], [472, "index-87", false], [483, "index-137", false]], "pep 614": [[427, "index-30", false], [427, "index-44", false], [482, "index-15", false], [482, "index-3", false], [483, "index-187", false]], "pep 615": [[425, "index-0", false], [482, "index-16", false], [482, "index-9", false], [483, "index-164", false]], "pep 616": [[482, "index-12", false], [482, "index-4", false], [483, "index-172", false]], "pep 617": [[112, "index-0", false], [431, "index-0", false], [472, "index-94", false], [473, "index-114", false], [474, "index-8", false], [482, "index-14", false], [482, "index-19", false], [482, "index-7", false], [483, "index-174", false], [483, "index-91", false]], "pep 618": [[472, "index-106", false], [472, "index-83", false], [483, "index-152", false]], "pep 623": [[64, "index-1", false], [472, "index-91", false], [474, "index-1", false], [474, "index-26", false], [474, "index-48", false], [483, "index-110", false], [483, "index-112", false], [483, "index-66", false]], "pep 624": [[472, "index-92", false], [473, "index-120", false], [473, "index-85", false], [483, "index-98", false]], "pep 624#alternative-apis": [[473, "index-121", false]], "pep 626": [[191, "index-0", false], [428, "index-62", false], [472, "index-84", false], [474, "index-30", false], [483, "index-44", false]], "pep 628": [[479, "index-29", false], [479, "index-30", false], [483, "index-274", false]], "pep 632": [[472, "index-108", false], [472, "index-90", false], [474, "index-2", false], [474, "index-33", false], [483, "index-39", false]], "pep 634": [[63, "index-3", false], [63, "index-4", false], [112, "index-1", false], [427, "index-19", false], [427, "index-25", false], [428, "index-108", false], [472, "index-80", false], [472, "index-95", false], [483, "index-111", false], [483, "index-57", false], [483, "index-99", false]], "pep 635": [[472, "index-81", false], [472, "index-96", false]], "pep 636": [[427, "index-20", false], [427, "index-26", false], [441, "index-15", false], [472, "index-82", false], [472, "index-97", false]], "pep 644": [[341, "index-31", false], [472, "index-109", false], [472, "index-110", false], [472, "index-114", false], [472, "index-89", false], [474, "index-34", false], [483, "index-103", false], [483, "index-47", false]], "pep 646": [[386, "index-21", false], [473, "index-95", false], [473, "index-96", false]], "pep 647": [[386, "index-16", false], [472, "index-105", false], [472, "index-88", false], [483, "index-101", false]], "pep 649": [[113, "index-34", false], [429, "index-11", false]], "pep 652": [[472, "index-115", false], [483, "index-104", false]], "pep 654": [[473, "index-112", false], [473, "index-89", false], [473, "index-90", false], [483, "index-43", false], [483, "index-81", false], [483, "index-84", false]], "pep 655": [[386, "index-101", false], [386, "index-102", false], [386, "index-29", false], [473, "index-97", false], [483, "index-62", false]], "pep 657": [[473, "index-109", false], [473, "index-87", false], [483, "index-61", false], [483, "index-89", false]], "pep 659": [[473, "index-110", false], [473, "index-111", false]], "pep 669": [[474, "index-11", false], [483, "index-12", false]], "pep 670": [[473, "index-117", false], [473, "index-86", false]], "pep 673": [[386, "index-99", false], [473, "index-99", false], [483, "index-78", false]], "pep 675": [[386, "index-98", false], [473, "index-100", false], [483, "index-68", false]], "pep 676": [[483, "index-74", false]], "pep 678": [[473, "index-91", false], [474, "index-21", false], [483, "index-11", false], [483, "index-25", false], [483, "index-58", false]], "pep 680": [[473, "index-106", false], [473, "index-82", false], [483, "index-72", false]], "pep 681": [[386, "index-103", false], [473, "index-101", false], [483, "index-60", false]], "pep 682": [[345, "index-20", false], [473, "index-104", false]], "pep 683": [[474, "index-43", false], [483, "index-9", false]], "pep 684": [[474, "index-44", false], [474, "index-9", false]], "pep 686": [[258, "index-1", false], [293, "index-5", false]], "pep 687": [[483, "index-17", false], [483, "index-18", false], [483, "index-19", false], [483, "index-20", false], [483, "index-21", false], [483, "index-22", false], [483, "index-26", false], [483, "index-28", false], [483, "index-29", false]], "pep 688": [[161, "index-4", false], [428, "index-109", false], [474, "index-12", false], [483, "index-13", false]], "pep 689": [[483, "index-30", false]], "pep 692": [[386, "index-17", false], [474, "index-17", false], [474, "index-60", false], [483, "index-16", false], [483, "index-23", false]], "pep 693": [[474, "index-56", false]], "pep 695": [[386, "index-19", false], [386, "index-20", false], [386, "index-22", false], [386, "index-23", false], [386, "index-76", false], [429, "index-12", false], [436, "index-48", false], [474, "index-29", false], [474, "index-4", false], [474, "index-57", false], [483, "index-0", false], [483, "index-10", false], [483, "index-15", false], [483, "index-3", false], [483, "index-4", false], [483, "index-5", false], [483, "index-6", false], [483, "index-7", false]], "pep 697": [[474, "index-40", false], [474, "index-42", false], [483, "index-24", false]], "pep 698": [[386, "index-104", false], [474, "index-61", false], [483, "index-27", false]], "pep 699": [[474, "index-45", false], [474, "index-46", false], [483, "index-32", false]], "pep 7": [[35, "index-37", false], [35, "index-38", false], [35, "index-39", false], [456, "index-0", false], [479, "index-34", false]], "pep 701": [[474, "index-25", false], [474, "index-27", false], [474, "index-37", false], [474, "index-38", false], [474, "index-39", false], [474, "index-58", false], [474, "index-6", false]], "pep 706": [[358, "index-0", false], [472, "index-40", false], [473, "index-41", false], [474, "index-22", false], [481, "index-26", false], [482, "index-29", false]], "pep 709": [[474, "index-13", false], [474, "index-28", false], [474, "index-59", false], [483, "index-14", false]], "pep 8": [[85, "index-2", false], [85, "index-7", false], [86, "index-2", false], [108, "index-0", false], [225, "index-10", false], [430, "index-79", false], [441, "index-18", false], [457, "index-0", false], [470, "index-38", false], [483, "index-243", false], [483, "index-305", false]], "percent (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PERCENT", false]], "percentequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PERCENTEQUAL", false]], "perf_counter() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.perf_counter", false]], "perf_counter_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.perf_counter_ns", false]], "perm() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.perm", false]], "permissionerror": [[213, "PermissionError", false]], "permutations() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.permutations", false]], "persist() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.Persist", false]], "persistence\uff08\u6301\u7e8c\u6027\uff09": [[299, "index-0", false]], "persistent_id() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.persistent_id", false]], "persistent_id\uff08pickle \u5354\u5b9a\uff09": [[299, "index-6", false]], "persistent_load() (pickle.unpickler \u7684\u65b9\u6cd5)": [[299, "pickle.Unpickler.persistent_load", false]], "persistent_load\uff08pickle \u5354\u5b9a\uff09": [[299, "index-6", false]], "persistent\uff08\u6301\u7e8c\uff09": [[299, "index-0", false]], "pf_can (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_CAN", false]], "pf_divert (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_DIVERT", false]], "pf_packet (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_PACKET", false]], "pf_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.PF_RDS", false]], "pformat() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.pformat", false]], "pformat() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pformat", false]], "pgettext() (gettext.gnutranslations \u7684\u65b9\u6cd5)": [[230, "gettext.GNUTranslations.pgettext", false]], "pgettext() (gettext.nulltranslations \u7684\u65b9\u6cd5)": [[230, "gettext.NullTranslations.pgettext", false]], "pgettext() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.pgettext", false]], "pgo (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.PGO", false]], "phase() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.phase", false]], "philbrick, geoff": [[73, "index-4", false]], "physical line\uff08\u7269\u7406\u5217\uff09": [[435, "index-23", false], [435, "index-3", false], [435, "index-6", false]], "pi (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.pi", false]], "pi (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.pi", false]], "pi() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.pi", false]], "pickle": [[171, "index-0", false], [172, "index-0", false], [274, "index-0", false], [299, "module-pickle", false], [330, "index-0", false]], "pickle() (\u65bc copyreg \u6a21\u7d44\u4e2d)": [[172, "copyreg.pickle", false]], "picklebuffer (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.PickleBuffer", false]], "pickleerror": [[299, "pickle.PickleError", false]], "pickler (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.Pickler", false]], "pickletools": [[300, "module-pickletools", false]], "pickletools \u547d\u4ee4\u5217\u9078\u9805": [[300, "cmdoption-pickletools-a", false], [300, "cmdoption-pickletools-l", false], [300, "cmdoption-pickletools-m", false], [300, "cmdoption-pickletools-o", false], [300, "cmdoption-pickletools-p", false]], "pickling": [[299, "index-0", false]], "picklingerror": [[299, "pickle.PicklingError", false]], "pid (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.pid", false]], "pid (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.pid", false]], "pid (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.pid", false]], "pidfd_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PIDFD_NONBLOCK", false]], "pidfd_open() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pidfd_open", false]], "pidfd_send_signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pidfd_send_signal", false]], "pidfdchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.PidfdChildWatcher", false]], "pip_user": [[483, "index-209", false]], "pipe (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.PIPE", false]], "pipe() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Pipe", false]], "pipe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pipe", false]], "pipe2() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pipe2", false]], "pipe_buf (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.PIPE_BUF", false]], "pipe_connection_lost() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.pipe_connection_lost", false]], "pipe_data_received() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.pipe_data_received", false]], "pipe_max_size (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.PIPE_MAX_SIZE", false]], "pipes": [[301, "module-pipes", false]], "pkgutil": [[302, "module-pkgutil", false]], "placeholder (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.placeholder", false]], "placeholder\uff08\u4f54\u4f4d\u7b26\u865f\uff09": [[307, "index-1", false], [321, "index-0", false], [364, "index-0", false]], "platform": [[303, "module-platform", false]], "platform (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.platform", false]], "platform() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.platform", false]], "platform\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-25", false]], "platlibdir (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.platlibdir", false]], "playsound() (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.PlaySound", false]], "plist": [[304, "index-0", false]], "plistlib": [[304, "module-plistlib", false]], "plock() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.plock", false]], "plus (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PLUS", false]], "plus() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.plus", false]], "plusequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.PLUSEQUAL", false]], "plus\uff08\u52a0\uff09": [[430, "index-61", false]], "pm() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.pm", false]], "pointer() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.POINTER", false], [176, "ctypes.pointer", false]], "polar() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.polar", false]], "policy (email.policy \u4e2d\u7684\u985e\u5225)": [[208, "email.policy.Policy", false]], "poll() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.poll", false]], "poll() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.poll", false]], "poll() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.poll", false]], "poll() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.poll", false]], "poll() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.poll", false]], "poll() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.poll", false]], "pollselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.PollSelector", false]], "pool (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.Pool", false]], "pop() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.pop", false]], "pop() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.pop", false]], "pop() (dict \u7684\u65b9\u6cd5)": [[344, "dict.pop", false]], "pop() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.pop", false]], "pop() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.pop", false]], "pop()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "pop3": [[305, "index-0", false]], "pop3 (poplib \u4e2d\u7684\u985e\u5225)": [[305, "poplib.POP3", false]], "pop3_ssl (poplib \u4e2d\u7684\u985e\u5225)": [[305, "poplib.POP3_SSL", false]], "pop_all() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.pop_all", false]], "pop_block (opcode)": [[191, "opcode-POP_BLOCK", false]], "pop_except (opcode)": [[191, "opcode-POP_EXCEPT", false]], "pop_jump_if_false (opcode)": [[191, "opcode-POP_JUMP_IF_FALSE", false]], "pop_jump_if_none (opcode)": [[191, "opcode-POP_JUMP_IF_NONE", false]], "pop_jump_if_not_none (opcode)": [[191, "opcode-POP_JUMP_IF_NOT_NONE", false]], "pop_jump_if_true (opcode)": [[191, "opcode-POP_JUMP_IF_TRUE", false]], "pop_source() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.pop_source", false]], "pop_top (opcode)": [[191, "opcode-POP_TOP", false]], "popen (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.Popen", false]], "popen() (\u65bc os \u6a21\u7d44)": [[328, "index-1", false]], "popen() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.popen", false]], "popen() \uff08\u65bc os \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "popitem() (collections.ordereddict \u7684\u65b9\u6cd5)": [[160, "collections.OrderedDict.popitem", false]], "popitem() (dict \u7684\u65b9\u6cd5)": [[344, "dict.popitem", false]], "popitem() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.popitem", false]], "popleft() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.popleft", false]], "poplib": [[305, "module-poplib", false]], "popupmenu (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.PopupMenu", false]], "port (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.port", false]], "port_specified (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.port_specified", false]], "portion\uff08\u90e8\u5206\uff09": [[87, "term-portion", true], [432, "index-5", false]], "pos (json.jsondecodeerror \u7684\u5c6c\u6027)": [[262, "json.JSONDecodeError.pos", false]], "pos (re.error \u7684\u5c6c\u6027)": [[319, "re.error.pos", false]], "pos (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.pos", false]], "pos() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.pos", false]], "pos() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pos", false]], "position (xml.etree.elementtree.parseerror \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.ParseError.position", false]], "position() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.position", false]], "positional argument\uff08\u4f4d\u7f6e\u5f15\u6578\uff09": [[87, "term-positional-argument", true]], "positions (dis \u4e2d\u7684\u985e\u5225)": [[191, "dis.Positions", false]], "positions (inspect.frameinfo \u7684\u5c6c\u6027)": [[255, "inspect.FrameInfo.positions", false]], "positions (inspect.traceback \u7684\u5c6c\u6027)": [[255, "inspect.Traceback.positions", false]], "positions.col_offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.col_offset", false]], "positions.end_col_offset (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.end_col_offset", false]], "positions.end_lineno (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.end_lineno", false]], "positions.lineno (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.Positions.lineno", false]], "posix": [[115, "index-1", false], [306, "module-posix", false], [361, "index-0", false]], "posix shared memory\uff08posix \u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "posix_fadv_dontneed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_DONTNEED", false]], "posix_fadv_noreuse (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_NOREUSE", false]], "posix_fadv_normal (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_NORMAL", false]], "posix_fadv_random (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_RANDOM", false]], "posix_fadv_sequential (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_SEQUENTIAL", false]], "posix_fadv_willneed (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_FADV_WILLNEED", false]], "posix_fadvise() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_fadvise", false]], "posix_fallocate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_fallocate", false]], "posix_spawn() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_spawn", false]], "posix_spawn_close (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_CLOSE", false]], "posix_spawn_dup2 (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_DUP2", false]], "posix_spawn_open (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.POSIX_SPAWN_OPEN", false]], "posix_spawnp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.posix_spawnp", false]], "posixly_correct": [[228, "index-0", false]], "posixpath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PosixPath", false]], "post() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.post", false]], "post() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.post", false]], "post_handshake_auth (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.post_handshake_auth", false]], "post_mortem() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.post_mortem", false]], "post_setup() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.post_setup", false]], "postcmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.postcmd", false]], "postloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.postloop", false]], "pow": [[47, "index-1", false], [47, "index-3", false], [428, "index-100", false], [428, "index-101", false], [428, "index-102", false]], "pow (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Pow", false]], "pow()": [[225, "pow", false]], "pow() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.pow", false]], "pow() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.pow", false]], "power() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.power", false]], "power\uff08\u6b21\u65b9\uff09": [[430, "index-58", false]], "pp (pdb command)": [[297, "pdbcommand-pp", false]], "pp() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pp", false]], "pprint": [[307, "module-pprint", false]], "pprint() (pprint.prettyprinter \u7684\u65b9\u6cd5)": [[307, "pprint.PrettyPrinter.pprint", false]], "pprint() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.pprint", false]], "prcal() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.prcal", false]], "pread() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pread", false]], "preadv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.preadv", false]], "preamble (email.message.emailmessage \u7684\u5c6c\u6027)": [[205, "email.message.EmailMessage.preamble", false]], "preamble (email.message.message \u7684\u5c6c\u6027)": [[196, "email.message.Message.preamble", false]], "precedence\uff08\u512a\u5148\u9806\u5e8f\uff09": [[430, "index-97", false]], "precmd() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.precmd", false]], "prefix (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.prefix", false]], "prefix (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.prefix", false]], "prefix (zipimport.zipimporter \u7684\u5c6c\u6027)": [[423, "zipimport.zipimporter.prefix", false]], "prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.prefix", false]], "prefixes (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.PREFIXES", false]], "prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.prefixlen", false]], "prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.prefixlen", false]], "preloop() (cmd.cmd \u7684\u65b9\u6cd5)": [[155, "cmd.Cmd.preloop", false]], "prepare() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.prepare", false]], "prepare() (logging.handlers.queuehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueHandler.prepare", false]], "prepare() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.prepare", false]], "prepare_class() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.prepare_class", false]], "prepare_input_source() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.prepare_input_source", false]], "prepareprotocol (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.PrepareProtocol", false]], "prepend() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.prepend", false]], "prettyprinter (pprint \u4e2d\u7684\u985e\u5225)": [[307, "pprint.PrettyPrinter", false]], "prev() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.prev", false]], "previoussibling (xml.dom.node \u7684\u5c6c\u6027)": [[410, "xml.dom.Node.previousSibling", false]], "primary\uff08\u4e3b\u8981\uff09": [[430, "index-38", false]], "print": [[428, "index-78", false]], "print (2to3 fixer)": [[112, "to3fixer-print", false]], "print()": [[225, "print", false]], "print() (traceback.tracebackexception \u7684\u65b9\u6cd5)": [[381, "traceback.TracebackException.print", false]], "print() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-76", false]], "print_callees() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_callees", false]], "print_callers() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_callers", false]], "print_directory() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_directory", false]], "print_environ() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_environ", false]], "print_environ_usage() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_environ_usage", false]], "print_exc() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.print_exc", false]], "print_exc() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_exc", false]], "print_exception() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_exception", false]], "print_form() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.print_form", false]], "print_help() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.print_help", false]], "print_last() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_last", false]], "print_stack() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.print_stack", false]], "print_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_stack", false]], "print_stats() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.print_stats", false]], "print_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.print_stats", false]], "print_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.print_tb", false]], "print_usage() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.print_usage", false]], "print_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.print_usage", false]], "print_version() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.print_version", false]], "print_warning() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.print_warning", false]], "printable (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.printable", false]], "printdir() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.printdir", false]], "printf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-35", false], [344, "index-45", false]], "prio_darwin_bg (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_BG", false]], "prio_darwin_nonui (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_NONUI", false]], "prio_darwin_process (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_PROCESS", false]], "prio_darwin_thread (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_DARWIN_THREAD", false]], "prio_pgrp (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_PGRP", false]], "prio_process (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_PROCESS", false]], "prio_user (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.PRIO_USER", false]], "priorityqueue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.PriorityQueue", false]], "priorityqueue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.PriorityQueue", false]], "private": [[430, "index-5", false]], "prlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.prlimit", false]], "prmonth() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.prmonth", false]], "prmonth() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.prmonth", false]], "proactoreventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.ProactorEventLoop", false]], "procedure": [[436, "index-3", false]], "process": [[293, "index-12", false], [293, "index-13", false], [293, "index-14", false], [293, "index-15", false], [293, "index-18", false], [293, "index-37", false], [293, "index-38", false], [293, "index-9", false]], "process (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Process", false]], "process() (logging.loggeradapter \u7684\u65b9\u6cd5)": [[267, "logging.LoggerAdapter.process", false]], "process_exited() (asyncio.subprocessprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessProtocol.process_exited", false]], "process_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.process_request", false]], "process_time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.process_time", false]], "process_time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.process_time_ns", false]], "process_tokens() (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.process_tokens", false]], "processerror": [[283, "multiprocessing.ProcessError", false]], "processes, light-weight": [[115, "index-0", false]], "processinginstruction() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.processingInstruction", false]], "processinginstruction() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.ProcessingInstruction", false]], "processinginstructionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.ProcessingInstructionHandler", false]], "processlookuperror": [[213, "ProcessLookupError", false]], "processor time\uff08\u8655\u7406\u5668\u6642\u9593\uff09": [[366, "index-12", false], [366, "index-7", false]], "processor() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.processor", false]], "processpoolexecutor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.ProcessPoolExecutor", false]], "prod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.prod", false]], "product() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.product", false]], "profile": [[308, "module-profile", false]], "profile (profile \u4e2d\u7684\u985e\u5225)": [[308, "profile.Profile", false]], "profile function": [[352, "index-10", false], [352, "index-28", false], [365, "index-2", false], [365, "index-3", false]], "profile_task": [[456, "envvar-PROFILE_TASK", false], [456, "index-4", false]], "profiler": [[352, "index-10", false], [352, "index-28", false]], "profiling, deterministic": [[308, "index-0", false]], "programmingerror": [[340, "sqlite3.ProgrammingError", false]], "program\uff08\u7a0b\u5f0f\uff09": [[437, "index-1", false]], "progressbar (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Progressbar", false]], "prompt (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.prompt", false]], "prompt_user_passwd() (urllib.request.fancyurlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.FancyURLopener.prompt_user_passwd", false]], "prompts, interpreter\uff08\u63d0\u793a\u3001\u76f4\u8b6f\u5668\uff09": [[352, "index-27", false]], "propagate (logging.logger \u7684\u5c6c\u6027)": [[267, "logging.Logger.propagate", false]], "property (\u5167\u5efa\u985e\u5225)": [[225, "property", false]], "property list\uff08\u5c6c\u6027\u6e05\u55ae\uff09": [[304, "index-0", false]], "property() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.property", false]], "property.deleter()": [[225, "property.deleter", false]], "property.getter()": [[225, "property.getter", false]], "property.setter()": [[225, "property.setter", false]], "property_declaration_handler (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_declaration_handler", false]], "property_dom_node (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_dom_node", false]], "property_lexical_handler (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_lexical_handler", false]], "property_xml_string (\u65bc xml.sax.handler \u6a21\u7d44\u4e2d)": [[415, "xml.sax.handler.property_xml_string", false]], "propertymock (unittest.mock \u4e2d\u7684\u985e\u5225)": [[389, "unittest.mock.PropertyMock", false]], "prot_c() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.prot_c", false]], "prot_p() (ftplib.ftp_tls \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP_TLS.prot_p", false]], "proto (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.proto", false]], "protocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.Protocol", false]], "protocol (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.protocol", false]], "protocol (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Protocol", false]], "protocol_sslv23 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_SSLv23", false]], "protocol_sslv3 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_SSLv3", false]], "protocol_tls (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS", false]], "protocol_tls_client (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS_CLIENT", false]], "protocol_tls_server (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLS_SERVER", false]], "protocol_tlsv1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1", false]], "protocol_tlsv1_1 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1_1", false]], "protocol_tlsv1_2 (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.PROTOCOL_TLSv1_2", false]], "protocol_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.protocol_version", false]], "protocol_version (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.PROTOCOL_VERSION", false]], "protocolerror (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.ProtocolError", false]], "protocol\uff08\u5354\u5b9a\uff09": [[151, "index-0", false], [223, "index-0", false], [241, "index-0", false], [242, "index-0", false], [245, "index-0", false], [248, "index-0", false], [288, "index-0", false], [299, "index-5", false], [305, "index-0", false], [335, "index-0", false], [344, "index-18", false], [344, "index-54", false], [359, "index-0", false], [395, "index-10", false], [395, "index-9", false]], "provisional api\uff08\u66ab\u884c api\uff09": [[87, "term-provisional-API", true]], "provisional package\uff08\u66ab\u884c\u5957\u4ef6\uff09": [[87, "term-provisional-package", true]], "proxy() (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.proxy", false]], "proxyauth() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.proxyauth", false]], "proxybasicauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyBasicAuthHandler", false]], "proxydigestauthhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyDigestAuthHandler", false]], "proxyhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.ProxyHandler", false]], "proxytype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ProxyType", false]], "proxytypes (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ProxyTypes", false]], "pryear() (calendar.textcalendar \u7684\u65b9\u6cd5)": [[150, "calendar.TextCalendar.pryear", false]], "ps1 (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.ps1", false]], "ps2 (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.ps2", false]], "pstats": [[308, "module-pstats", false]], "pstdev() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.pstdev", false]], "pthread_getcpuclockid() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.pthread_getcpuclockid", false]], "pthread_kill() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pthread_kill", false]], "pthread_sigmask() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.pthread_sigmask", false]], "pthreads": [[115, "index-1", false]], "pthreads (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.pthreads", false]], "pty": [[293, "index-23", false], [309, "module-pty", false]], "pu() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.pu", false]], "publicid (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.publicId", false]], "pulldom (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.PullDom", false]], "punctuation (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.punctuation", false]], "punctuation_chars (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.punctuation_chars", false]], "purepath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PurePath", false]], "pureposixpath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PurePosixPath", false]], "purewindowspath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.PureWindowsPath", false]], "purge() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.purge", false]], "purify": [[456, "envvar-PURIFY", false]], "purpose.client_auth (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.Purpose.CLIENT_AUTH", false]], "purpose.server_auth (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.Purpose.SERVER_AUTH", false]], "push() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.push", false]], "push() (contextlib.exitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.ExitStack.push", false]], "push_async_callback() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.push_async_callback", false]], "push_async_exit() (contextlib.asyncexitstack \u7684\u65b9\u6cd5)": [[169, "contextlib.AsyncExitStack.push_async_exit", false]], "push_exc_info (opcode)": [[191, "opcode-PUSH_EXC_INFO", false]], "push_null (opcode)": [[191, "opcode-PUSH_NULL", false]], "push_source() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.push_source", false]], "push_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.push_token", false]], "pushbutton() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.pushbutton", false]], "put() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.put", false]], "put() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.put", false]], "put() (multiprocessing.simplequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.SimpleQueue.put", false]], "put() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.put", false]], "put() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.put", false]], "put_nowait() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.put_nowait", false]], "put_nowait() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.put_nowait", false]], "put_nowait() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.put_nowait", false]], "put_nowait() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.put_nowait", false]], "putch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.putch", false]], "putenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.putenv", false]], "putheader() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.putheader", false]], "putp() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.putp", false]], "putrequest() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.putrequest", false]], "putwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.putwch", false]], "putwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.putwin", false]], "pvariance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.pvariance", false]], "pwd": [[294, "index-2", false], [310, "module-pwd", false]], "pwd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.pwd", false]], "pwrite() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pwrite", false]], "pwritev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.pwritev", false]], "py_abs (c macro)": [[35, "c.Py_ABS", false]], "py_addpendingcall (c function)": [[33, "c.Py_AddPendingCall", false]], "py_always_inline (c macro)": [[35, "c.Py_ALWAYS_INLINE", false]], "py_atexit (c function)": [[59, "c.Py_AtExit", false]], "py_audit_read (c macro)": [[58, "c.Py_AUDIT_READ", false]], "py_audithookfunction (c type)": [[59, "c.Py_AuditHookFunction", false]], "py_begin_allow_threads (c macro)": [[33, "c.Py_BEGIN_ALLOW_THREADS", false]], "py_begin_allow_threads\uff08c \u5de8\u96c6\uff09": [[33, "index-35", false]], "py_block_threads (c macro)": [[33, "c.Py_BLOCK_THREADS", false]], "py_buffer (c type)": [[7, "c.Py_buffer", false]], "py_buffer.buf (c member)": [[7, "c.Py_buffer.buf", false]], "py_buffer.format (c member)": [[7, "c.Py_buffer.format", false]], "py_buffer.internal (c member)": [[7, "c.Py_buffer.internal", false]], "py_buffer.itemsize (c member)": [[7, "c.Py_buffer.itemsize", false]], "py_buffer.len (c member)": [[7, "c.Py_buffer.len", false]], "py_buffer.ndim (c member)": [[7, "c.Py_buffer.ndim", false]], "py_buffer.obj (c member)": [[7, "c.Py_buffer.obj", false]], "py_buffer.readonly (c member)": [[7, "c.Py_buffer.readonly", false]], "py_buffer.shape (c member)": [[7, "c.Py_buffer.shape", false]], "py_buffer.strides (c member)": [[7, "c.Py_buffer.strides", false]], "py_buffer.suboffsets (c member)": [[7, "c.Py_buffer.suboffsets", false]], "py_buildvalue (c function)": [[5, "c.Py_BuildValue", false]], "py_builtin_module_cflags": [[456, "envvar-PY_BUILTIN_MODULE_CFLAGS", false]], "py_bytesmain (c function)": [[66, "c.Py_BytesMain", false]], "py_byteswarningflag (c var)": [[33, "c.Py_BytesWarningFlag", false]], "py_cflags": [[456, "envvar-PY_CFLAGS", false]], "py_cflags_nodist": [[456, "envvar-PY_CFLAGS_NODIST", false]], "py_charmask (c macro)": [[35, "c.Py_CHARMASK", false]], "py_clear (c function)": [[52, "c.Py_CLEAR", false]], "py_compile": [[311, "module-py_compile", false]], "py_compilestring (c function)": [[66, "c.Py_CompileString", false]], "py_compilestringexflags (c function)": [[66, "c.Py_CompileStringExFlags", false]], "py_compilestringflags (c function)": [[66, "c.Py_CompileStringFlags", false]], "py_compilestringobject (c function)": [[66, "c.Py_CompileStringObject", false]], "py_compilestring\uff08c \u51fd\u5f0f\uff09": [[66, "index-0", false], [66, "index-1", false], [66, "index-2", false]], "py_complex (c type)": [[15, "c.Py_complex", false]], "py_core_cflags": [[456, "envvar-PY_CORE_CFLAGS", false]], "py_core_ldflags": [[456, "envvar-PY_CORE_LDFLAGS", false]], "py_cppflags": [[456, "envvar-PY_CPPFLAGS", false]], "py_debug (c macro)": [[35, "c.Py_DEBUG", false]], "py_debug (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.Py_DEBUG", false]], "py_debugflag (c var)": [[33, "c.Py_DebugFlag", false]], "py_decodelocale (c function)": [[59, "c.Py_DecodeLocale", false]], "py_decref (c function)": [[52, "c.Py_DECREF", false], [52, "c.Py_DecRef", false]], "py_decref\uff08c \u51fd\u5f0f\uff09": [[35, "index-4", false]], "py_deprecated (c macro)": [[35, "c.Py_DEPRECATED", false]], "py_dontwritebytecodeflag (c var)": [[33, "c.Py_DontWriteBytecodeFlag", false]], "py_ellipsis (c var)": [[56, "c.Py_Ellipsis", false]], "py_encodelocale (c function)": [[59, "c.Py_EncodeLocale", false]], "py_end_allow_threads (c macro)": [[33, "c.Py_END_ALLOW_THREADS", false]], "py_end_allow_threads\uff08c \u5de8\u96c6\uff09": [[33, "index-35", false]], "py_endinterpreter (c function)": [[33, "c.Py_EndInterpreter", false]], "py_enterrecursivecall (c function)": [[23, "c.Py_EnterRecursiveCall", false]], "py_eq (c macro)": [[63, "c.Py_EQ", false]], "py_eval_input (c var)": [[66, "c.Py_eval_input", false]], "py_exit (c function)": [[59, "c.Py_Exit", false]], "py_exitstatusexception (c function)": [[34, "c.Py_ExitStatusException", false]], "py_false (c var)": [[6, "c.Py_False", false]], "py_fatalerror (c function)": [[59, "c.Py_FatalError", false]], "py_fatalerror()": [[33, "index-29", false]], "py_fdisinteractive (c function)": [[59, "c.Py_FdIsInteractive", false]], "py_file_input (c var)": [[66, "c.Py_file_input", false]], "py_finalize (c function)": [[33, "c.Py_Finalize", false]], "py_finalizeex (c function)": [[33, "c.Py_FinalizeEx", false]], "py_finalizeex\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false], [33, "index-43", false], [33, "index-46", false], [59, "index-3", false], [59, "index-4", false]], "py_frozenflag (c var)": [[33, "c.Py_FrozenFlag", false]], "py_ge (c macro)": [[63, "c.Py_GE", false]], "py_genericalias (c function)": [[62, "c.Py_GenericAlias", false]], "py_genericaliastype (c var)": [[62, "c.Py_GenericAliasType", false]], "py_getargcargv (c function)": [[34, "c.Py_GetArgcArgv", false]], "py_getbuildinfo (c function)": [[33, "c.Py_GetBuildInfo", false]], "py_getcompiler (c function)": [[33, "c.Py_GetCompiler", false]], "py_getcopyright (c function)": [[33, "c.Py_GetCopyright", false]], "py_getenv (c macro)": [[35, "c.Py_GETENV", false]], "py_getexecprefix (c function)": [[33, "c.Py_GetExecPrefix", false]], "py_getexecprefix\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getpath (c function)": [[33, "c.Py_GetPath", false]], "py_getpath()": [[33, "index-19", false], [33, "index-23", false]], "py_getpath\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getplatform (c function)": [[33, "c.Py_GetPlatform", false]], "py_getprefix (c function)": [[33, "c.Py_GetPrefix", false]], "py_getprefix\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getprogramfullpath (c function)": [[33, "c.Py_GetProgramFullPath", false]], "py_getprogramfullpath\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_getprogramname (c function)": [[33, "c.Py_GetProgramName", false]], "py_getpythonhome (c function)": [[33, "c.Py_GetPythonHome", false]], "py_getversion (c function)": [[33, "c.Py_GetVersion", false]], "py_gt (c macro)": [[63, "c.Py_GT", false]], "py_hash_t (c type)": [[30, "c.Py_hash_t", false]], "py_hashrandomizationflag (c var)": [[33, "c.Py_HashRandomizationFlag", false]], "py_ignoreenvironmentflag (c var)": [[33, "c.Py_IgnoreEnvironmentFlag", false]], "py_incref (c function)": [[52, "c.Py_INCREF", false], [52, "c.Py_IncRef", false]], "py_incref\uff08c \u51fd\u5f0f\uff09": [[35, "index-4", false]], "py_initialize (c function)": [[33, "c.Py_Initialize", false]], "py_initialize()": [[33, "index-16", false], [33, "index-19", false]], "py_initializeex (c function)": [[33, "c.Py_InitializeEx", false]], "py_initializefromconfig (c function)": [[34, "c.Py_InitializeFromConfig", false]], "py_initialize\uff08c \u51fd\u5f0f\uff09": [[33, "index-43", false], [35, "index-18", false]], "py_inspectflag (c var)": [[33, "c.Py_InspectFlag", false]], "py_interactiveflag (c var)": [[33, "c.Py_InteractiveFlag", false]], "py_is (c function)": [[58, "c.Py_Is", false]], "py_is_type (c function)": [[58, "c.Py_IS_TYPE", false]], "py_isfalse (c function)": [[58, "c.Py_IsFalse", false]], "py_isinitialized (c function)": [[33, "c.Py_IsInitialized", false]], "py_isinitialized\uff08c \u51fd\u5f0f\uff09": [[35, "index-26", false]], "py_isnone (c function)": [[58, "c.Py_IsNone", false]], "py_isolatedflag (c var)": [[33, "c.Py_IsolatedFlag", false]], "py_istrue (c function)": [[58, "c.Py_IsTrue", false]], "py_ldflags": [[456, "envvar-PY_LDFLAGS", false]], "py_ldflags_nodist": [[456, "envvar-PY_LDFLAGS_NODIST", false]], "py_le (c macro)": [[63, "c.Py_LE", false]], "py_leaverecursivecall (c function)": [[23, "c.Py_LeaveRecursiveCall", false]], "py_legacywindowsfsencodingflag (c var)": [[33, "c.Py_LegacyWindowsFSEncodingFlag", false]], "py_legacywindowsstdioflag (c var)": [[33, "c.Py_LegacyWindowsStdioFlag", false]], "py_limited_api (c macro)": [[57, "c.Py_LIMITED_API", false]], "py_lt (c macro)": [[63, "c.Py_LT", false]], "py_main (c function)": [[66, "c.Py_Main", false]], "py_major_version (c macro)": [[4, "c.PY_MAJOR_VERSION", false]], "py_max (c macro)": [[35, "c.Py_MAX", false]], "py_member_size (c macro)": [[35, "c.Py_MEMBER_SIZE", false]], "py_micro_version (c macro)": [[4, "c.PY_MICRO_VERSION", false]], "py_min (c macro)": [[35, "c.Py_MIN", false]], "py_minor_version (c macro)": [[4, "c.PY_MINOR_VERSION", false]], "py_mod_create (c macro)": [[45, "c.Py_mod_create", false]], "py_mod_exec (c macro)": [[45, "c.Py_mod_exec", false]], "py_mod_multiple_interpreters (c macro)": [[45, "c.Py_mod_multiple_interpreters", false]], "py_mod_multiple_interpreters_not_supported (c macro)": [[45, "c.Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED", false]], "py_mod_multiple_interpreters_supported (c macro)": [[45, "c.Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED", false]], "py_mod_per_interpreter_gil_supported (c macro)": [[45, "c.Py_MOD_PER_INTERPRETER_GIL_SUPPORTED", false]], "py_ne (c macro)": [[63, "c.Py_NE", false]], "py_newinterpreter (c function)": [[33, "c.Py_NewInterpreter", false]], "py_newinterpreterfromconfig (c function)": [[33, "c.Py_NewInterpreterFromConfig", false]], "py_newref (c function)": [[52, "c.Py_NewRef", false]], "py_no_inline (c macro)": [[35, "c.Py_NO_INLINE", false]], "py_none (c var)": [[46, "c.Py_None", false]], "py_nositeflag (c var)": [[33, "c.Py_NoSiteFlag", false]], "py_notimplemented (c var)": [[49, "c.Py_NotImplemented", false]], "py_nousersitedirectory (c var)": [[33, "c.Py_NoUserSiteDirectory", false]], "py_object (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.py_object", false]], "py_optimizeflag (c var)": [[33, "c.Py_OptimizeFlag", false]], "py_preinitialize (c function)": [[34, "c.Py_PreInitialize", false]], "py_preinitializefromargs (c function)": [[34, "c.Py_PreInitializeFromArgs", false]], "py_preinitializefrombytesargs (c function)": [[34, "c.Py_PreInitializeFromBytesArgs", false]], "py_print_raw (c macro)": [[49, "c.Py_PRINT_RAW", false]], "py_print_raw\uff08c \u5de8\u96c6\uff09": [[24, "index-2", false]], "py_python": [[461, "index-26", false]], "py_quietflag (c var)": [[33, "c.Py_QuietFlag", false]], "py_readonly (c macro)": [[58, "c.Py_READONLY", false]], "py_refcnt (c function)": [[52, "c.Py_REFCNT", false]], "py_relative_offset (c macro)": [[58, "c.Py_RELATIVE_OFFSET", false]], "py_release_level (c macro)": [[4, "c.PY_RELEASE_LEVEL", false]], "py_release_serial (c macro)": [[4, "c.PY_RELEASE_SERIAL", false]], "py_reprenter (c function)": [[23, "c.Py_ReprEnter", false]], "py_reprleave (c function)": [[23, "c.Py_ReprLeave", false]], "py_resume (monitoring event)": [[353, "monitoring-event-PY_RESUME", false]], "py_return (monitoring event)": [[353, "monitoring-event-PY_RETURN", false]], "py_return_false (c macro)": [[6, "c.Py_RETURN_FALSE", false]], "py_return_none (c macro)": [[46, "c.Py_RETURN_NONE", false]], "py_return_notimplemented (c macro)": [[49, "c.Py_RETURN_NOTIMPLEMENTED", false]], "py_return_richcompare (c macro)": [[63, "c.Py_RETURN_RICHCOMPARE", false]], "py_return_true (c macro)": [[6, "c.Py_RETURN_TRUE", false]], "py_runmain (c function)": [[34, "c.Py_RunMain", false]], "py_set_refcnt (c function)": [[52, "c.Py_SET_REFCNT", false]], "py_set_size (c function)": [[58, "c.Py_SET_SIZE", false]], "py_set_type (c function)": [[58, "c.Py_SET_TYPE", false]], "py_setpath (c function)": [[33, "c.Py_SetPath", false]], "py_setpath()": [[33, "index-22", false]], "py_setprogramname (c function)": [[33, "c.Py_SetProgramName", false]], "py_setprogramname()": [[33, "index-15", false], [33, "index-20", false], [33, "index-21", false]], "py_setprogramname\uff08c \u51fd\u5f0f\uff09": [[35, "index-23", false]], "py_setpythonhome (c function)": [[33, "c.Py_SetPythonHome", false]], "py_setref (c macro)": [[52, "c.Py_SETREF", false]], "py_setstandardstreamencoding (c function)": [[33, "c.Py_SetStandardStreamEncoding", false]], "py_single_input (c var)": [[66, "c.Py_single_input", false]], "py_size (c function)": [[58, "c.Py_SIZE", false]], "py_ssize_t (c type)": [[35, "c.Py_ssize_t", false]], "py_ssize_t_max\uff08c \u5de8\u96c6\uff09": [[39, "index-3", false]], "py_start (monitoring event)": [[353, "monitoring-event-PY_START", false]], "py_stdmodule_cflags": [[456, "envvar-PY_STDMODULE_CFLAGS", false]], "py_stringify (c macro)": [[35, "c.Py_STRINGIFY", false]], "py_t_bool (c macro)": [[58, "c.Py_T_BOOL", false]], "py_t_byte (c macro)": [[58, "c.Py_T_BYTE", false]], "py_t_char (c macro)": [[58, "c.Py_T_CHAR", false]], "py_t_double (c macro)": [[58, "c.Py_T_DOUBLE", false]], "py_t_float (c macro)": [[58, "c.Py_T_FLOAT", false]], "py_t_int (c macro)": [[58, "c.Py_T_INT", false]], "py_t_long (c macro)": [[58, "c.Py_T_LONG", false]], "py_t_longlong (c macro)": [[58, "c.Py_T_LONGLONG", false]], "py_t_object_ex (c macro)": [[58, "c.Py_T_OBJECT_EX", false]], "py_t_pyssizet (c macro)": [[58, "c.Py_T_PYSSIZET", false]], "py_t_short (c macro)": [[58, "c.Py_T_SHORT", false]], "py_t_string (c macro)": [[58, "c.Py_T_STRING", false]], "py_t_string_inplace (c macro)": [[58, "c.Py_T_STRING_INPLACE", false]], "py_t_ubyte (c macro)": [[58, "c.Py_T_UBYTE", false]], "py_t_uint (c macro)": [[58, "c.Py_T_UINT", false]], "py_t_ulong (c macro)": [[58, "c.Py_T_ULONG", false]], "py_t_ulonglong (c macro)": [[58, "c.Py_T_ULONGLONG", false]], "py_t_ushort (c macro)": [[58, "c.Py_T_USHORT", false]], "py_throw (monitoring event)": [[353, "monitoring-event-PY_THROW", false]], "py_tpflags_base_exc_subclass (c macro)": [[63, "c.Py_TPFLAGS_BASE_EXC_SUBCLASS", false]], "py_tpflags_basetype (c macro)": [[63, "c.Py_TPFLAGS_BASETYPE", false]], "py_tpflags_bytes_subclass (c macro)": [[63, "c.Py_TPFLAGS_BYTES_SUBCLASS", false]], "py_tpflags_default (c macro)": [[63, "c.Py_TPFLAGS_DEFAULT", false]], "py_tpflags_dict_subclass (c macro)": [[63, "c.Py_TPFLAGS_DICT_SUBCLASS", false]], "py_tpflags_disallow_instantiation (c macro)": [[63, "c.Py_TPFLAGS_DISALLOW_INSTANTIATION", false]], "py_tpflags_have_finalize (c macro)": [[63, "c.Py_TPFLAGS_HAVE_FINALIZE", false]], "py_tpflags_have_gc (c macro)": [[63, "c.Py_TPFLAGS_HAVE_GC", false]], "py_tpflags_have_vectorcall (c macro)": [[63, "c.Py_TPFLAGS_HAVE_VECTORCALL", false]], "py_tpflags_heaptype (c macro)": [[63, "c.Py_TPFLAGS_HEAPTYPE", false]], "py_tpflags_immutabletype (c macro)": [[63, "c.Py_TPFLAGS_IMMUTABLETYPE", false]], "py_tpflags_items_at_end (c macro)": [[63, "c.Py_TPFLAGS_ITEMS_AT_END", false]], "py_tpflags_list_subclass (c macro)": [[63, "c.Py_TPFLAGS_LIST_SUBCLASS", false]], "py_tpflags_long_subclass (c macro)": [[63, "c.Py_TPFLAGS_LONG_SUBCLASS", false]], "py_tpflags_managed_dict (c macro)": [[63, "c.Py_TPFLAGS_MANAGED_DICT", false]], "py_tpflags_managed_weakref (c macro)": [[63, "c.Py_TPFLAGS_MANAGED_WEAKREF", false]], "py_tpflags_mapping (c macro)": [[63, "c.Py_TPFLAGS_MAPPING", false]], "py_tpflags_method_descriptor (c macro)": [[63, "c.Py_TPFLAGS_METHOD_DESCRIPTOR", false]], "py_tpflags_ready (c macro)": [[63, "c.Py_TPFLAGS_READY", false]], "py_tpflags_readying (c macro)": [[63, "c.Py_TPFLAGS_READYING", false]], "py_tpflags_sequence (c macro)": [[63, "c.Py_TPFLAGS_SEQUENCE", false]], "py_tpflags_tuple_subclass (c macro)": [[63, "c.Py_TPFLAGS_TUPLE_SUBCLASS", false]], "py_tpflags_type_subclass (c macro)": [[63, "c.Py_TPFLAGS_TYPE_SUBCLASS", false]], "py_tpflags_unicode_subclass (c macro)": [[63, "c.Py_TPFLAGS_UNICODE_SUBCLASS", false]], "py_tpflags_valid_version_tag (c macro)": [[63, "c.Py_TPFLAGS_VALID_VERSION_TAG", false]], "py_tracefunc (c type)": [[33, "c.Py_tracefunc", false]], "py_true (c var)": [[6, "c.Py_True", false]], "py_tss_needs_init (c macro)": [[33, "c.Py_tss_NEEDS_INIT", false]], "py_tss_t (c type)": [[33, "c.Py_tss_t", false]], "py_type (c function)": [[58, "c.Py_TYPE", false]], "py_ucs1 (c type)": [[64, "c.Py_UCS1", false]], "py_ucs2 (c type)": [[64, "c.Py_UCS2", false]], "py_ucs4 (c type)": [[64, "c.Py_UCS4", false]], "py_uhash_t (c type)": [[30, "c.Py_uhash_t", false]], "py_unblock_threads (c macro)": [[33, "c.Py_UNBLOCK_THREADS", false]], "py_unbufferedstdioflag (c var)": [[33, "c.Py_UnbufferedStdioFlag", false]], "py_unicode (c type)": [[64, "c.Py_UNICODE", false]], "py_unicode_is_high_surrogate (c function)": [[64, "c.Py_UNICODE_IS_HIGH_SURROGATE", false]], "py_unicode_is_low_surrogate (c function)": [[64, "c.Py_UNICODE_IS_LOW_SURROGATE", false]], "py_unicode_is_surrogate (c function)": [[64, "c.Py_UNICODE_IS_SURROGATE", false]], "py_unicode_isalnum (c function)": [[64, "c.Py_UNICODE_ISALNUM", false]], "py_unicode_isalpha (c function)": [[64, "c.Py_UNICODE_ISALPHA", false]], "py_unicode_isdecimal (c function)": [[64, "c.Py_UNICODE_ISDECIMAL", false]], "py_unicode_isdigit (c function)": [[64, "c.Py_UNICODE_ISDIGIT", false]], "py_unicode_islinebreak (c function)": [[64, "c.Py_UNICODE_ISLINEBREAK", false]], "py_unicode_islower (c function)": [[64, "c.Py_UNICODE_ISLOWER", false]], "py_unicode_isnumeric (c function)": [[64, "c.Py_UNICODE_ISNUMERIC", false]], "py_unicode_isprintable (c function)": [[64, "c.Py_UNICODE_ISPRINTABLE", false]], "py_unicode_isspace (c function)": [[64, "c.Py_UNICODE_ISSPACE", false]], "py_unicode_istitle (c function)": [[64, "c.Py_UNICODE_ISTITLE", false]], "py_unicode_isupper (c function)": [[64, "c.Py_UNICODE_ISUPPER", false]], "py_unicode_join_surrogates (c function)": [[64, "c.Py_UNICODE_JOIN_SURROGATES", false]], "py_unicode_todecimal (c function)": [[64, "c.Py_UNICODE_TODECIMAL", false]], "py_unicode_todigit (c function)": [[64, "c.Py_UNICODE_TODIGIT", false]], "py_unicode_tolower (c function)": [[64, "c.Py_UNICODE_TOLOWER", false]], "py_unicode_tonumeric (c function)": [[64, "c.Py_UNICODE_TONUMERIC", false]], "py_unicode_totitle (c function)": [[64, "c.Py_UNICODE_TOTITLE", false]], "py_unicode_toupper (c function)": [[64, "c.Py_UNICODE_TOUPPER", false]], "py_unreachable (c macro)": [[35, "c.Py_UNREACHABLE", false]], "py_unused (c macro)": [[35, "c.Py_UNUSED", false]], "py_unwind (monitoring event)": [[353, "monitoring-event-PY_UNWIND", false]], "py_vabuildvalue (c function)": [[5, "c.Py_VaBuildValue", false]], "py_vectorcall_arguments_offset (c macro)": [[10, "c.PY_VECTORCALL_ARGUMENTS_OFFSET", false]], "py_verboseflag (c var)": [[33, "c.Py_VerboseFlag", false]], "py_version (c var)": [[4, "c.Py_Version", false]], "py_version_hex (c macro)": [[4, "c.PY_VERSION_HEX", false]], "py_visit (c function)": [[28, "c.Py_VISIT", false]], "py_xdecref (c function)": [[52, "c.Py_XDECREF", false]], "py_xdecref\uff08c \u51fd\u5f0f\uff09": [[35, "index-17", false]], "py_xincref (c function)": [[52, "c.Py_XINCREF", false]], "py_xnewref (c function)": [[52, "c.Py_XNewRef", false]], "py_xsetref (c macro)": [[52, "c.Py_XSETREF", false]], "py_yield (monitoring event)": [[353, "monitoring-event-PY_YIELD", false]], "pyaiter_check (c function)": [[36, "c.PyAIter_Check", false]], "pyanyset_check (c function)": [[55, "c.PyAnySet_Check", false]], "pyanyset_checkexact (c function)": [[55, "c.PyAnySet_CheckExact", false]], "pyarg_parse (c function)": [[5, "c.PyArg_Parse", false]], "pyarg_parsetuple (c function)": [[5, "c.PyArg_ParseTuple", false]], "pyarg_parsetupleandkeywords (c function)": [[5, "c.PyArg_ParseTupleAndKeywords", false]], "pyarg_parsetupleandkeywords\uff08c \u51fd\u5f0f\uff09": [[73, "index-3", false]], "pyarg_parsetuple\uff08c \u51fd\u5f0f\uff09": [[73, "index-2", false]], "pyarg_unpacktuple (c function)": [[5, "c.PyArg_UnpackTuple", false]], "pyarg_validatekeywordarguments (c function)": [[5, "c.PyArg_ValidateKeywordArguments", false]], "pyarg_vaparse (c function)": [[5, "c.PyArg_VaParse", false]], "pyarg_vaparsetupleandkeywords (c function)": [[5, "c.PyArg_VaParseTupleAndKeywords", false]], "pyasciiobject (c type)": [[64, "c.PyASCIIObject", false]], "pyasyncmethods (c type)": [[63, "c.PyAsyncMethods", false]], "pyasyncmethods.am_aiter (c member)": [[63, "c.PyAsyncMethods.am_aiter", false]], "pyasyncmethods.am_anext (c member)": [[63, "c.PyAsyncMethods.am_anext", false]], "pyasyncmethods.am_await (c member)": [[63, "c.PyAsyncMethods.am_await", false]], "pyasyncmethods.am_send (c member)": [[63, "c.PyAsyncMethods.am_send", false]], "pybool_check (c function)": [[6, "c.PyBool_Check", false]], "pybool_fromlong (c function)": [[6, "c.PyBool_FromLong", false]], "pybool_type (c var)": [[6, "c.PyBool_Type", false]], "pybuf_any_contiguous (c macro)": [[7, "c.PyBUF_ANY_CONTIGUOUS", false]], "pybuf_c_contiguous (c macro)": [[7, "c.PyBUF_C_CONTIGUOUS", false]], "pybuf_contig (c macro)": [[7, "c.PyBUF_CONTIG", false]], "pybuf_contig_ro (c macro)": [[7, "c.PyBUF_CONTIG_RO", false]], "pybuf_f_contiguous (c macro)": [[7, "c.PyBUF_F_CONTIGUOUS", false]], "pybuf_format (c macro)": [[7, "c.PyBUF_FORMAT", false]], "pybuf_full (c macro)": [[7, "c.PyBUF_FULL", false]], "pybuf_full_ro (c macro)": [[7, "c.PyBUF_FULL_RO", false]], "pybuf_indirect (c macro)": [[7, "c.PyBUF_INDIRECT", false]], "pybuf_max_ndim (c macro)": [[7, "c.PyBUF_MAX_NDIM", false]], "pybuf_nd (c macro)": [[7, "c.PyBUF_ND", false]], "pybuf_read (c macro)": [[43, "c.PyBUF_READ", false]], "pybuf_records (c macro)": [[7, "c.PyBUF_RECORDS", false]], "pybuf_records_ro (c macro)": [[7, "c.PyBUF_RECORDS_RO", false]], "pybuf_simple (c macro)": [[7, "c.PyBUF_SIMPLE", false]], "pybuf_strided (c macro)": [[7, "c.PyBUF_STRIDED", false]], "pybuf_strided_ro (c macro)": [[7, "c.PyBUF_STRIDED_RO", false]], "pybuf_strides (c macro)": [[7, "c.PyBUF_STRIDES", false]], "pybuf_writable (c macro)": [[7, "c.PyBUF_WRITABLE", false]], "pybuf_write (c macro)": [[43, "c.PyBUF_WRITE", false]], "pybuffer_fillcontiguousstrides (c function)": [[7, "c.PyBuffer_FillContiguousStrides", false]], "pybuffer_fillinfo (c function)": [[7, "c.PyBuffer_FillInfo", false]], "pybuffer_fromcontiguous (c function)": [[7, "c.PyBuffer_FromContiguous", false]], "pybuffer_getpointer (c function)": [[7, "c.PyBuffer_GetPointer", false]], "pybuffer_iscontiguous (c function)": [[7, "c.PyBuffer_IsContiguous", false]], "pybuffer_release (c function)": [[7, "c.PyBuffer_Release", false]], "pybuffer_sizefromformat (c function)": [[7, "c.PyBuffer_SizeFromFormat", false]], "pybuffer_tocontiguous (c function)": [[7, "c.PyBuffer_ToContiguous", false]], "pybufferprocs (c type)": [[63, "c.PyBufferProcs", false]], "pybufferprocs.bf_getbuffer (c member)": [[63, "c.PyBufferProcs.bf_getbuffer", false]], "pybufferprocs.bf_releasebuffer (c member)": [[63, "c.PyBufferProcs.bf_releasebuffer", false]], "pybufferprocs\uff08c \u578b\u5225\uff09": [[7, "index-1", false]], "pybytearray_as_string (c function)": [[8, "c.PyByteArray_AS_STRING", false]], "pybytearray_asstring (c function)": [[8, "c.PyByteArray_AsString", false]], "pybytearray_check (c function)": [[8, "c.PyByteArray_Check", false]], "pybytearray_checkexact (c function)": [[8, "c.PyByteArray_CheckExact", false]], "pybytearray_concat (c function)": [[8, "c.PyByteArray_Concat", false]], "pybytearray_fromobject (c function)": [[8, "c.PyByteArray_FromObject", false]], "pybytearray_fromstringandsize (c function)": [[8, "c.PyByteArray_FromStringAndSize", false]], "pybytearray_get_size (c function)": [[8, "c.PyByteArray_GET_SIZE", false]], "pybytearray_resize (c function)": [[8, "c.PyByteArray_Resize", false]], "pybytearray_size (c function)": [[8, "c.PyByteArray_Size", false]], "pybytearray_type (c var)": [[8, "c.PyByteArray_Type", false]], "pybytearrayobject (c type)": [[8, "c.PyByteArrayObject", false]], "pybytes_as_string (c function)": [[9, "c.PyBytes_AS_STRING", false]], "pybytes_asstring (c function)": [[9, "c.PyBytes_AsString", false]], "pybytes_asstringandsize (c function)": [[9, "c.PyBytes_AsStringAndSize", false]], "pybytes_check (c function)": [[9, "c.PyBytes_Check", false]], "pybytes_checkexact (c function)": [[9, "c.PyBytes_CheckExact", false]], "pybytes_concat (c function)": [[9, "c.PyBytes_Concat", false]], "pybytes_concatanddel (c function)": [[9, "c.PyBytes_ConcatAndDel", false]], "pybytes_fromformat (c function)": [[9, "c.PyBytes_FromFormat", false]], "pybytes_fromformatv (c function)": [[9, "c.PyBytes_FromFormatV", false]], "pybytes_fromobject (c function)": [[9, "c.PyBytes_FromObject", false]], "pybytes_fromstring (c function)": [[9, "c.PyBytes_FromString", false]], "pybytes_fromstringandsize (c function)": [[9, "c.PyBytes_FromStringAndSize", false]], "pybytes_get_size (c function)": [[9, "c.PyBytes_GET_SIZE", false]], "pybytes_size (c function)": [[9, "c.PyBytes_Size", false]], "pybytes_type (c var)": [[9, "c.PyBytes_Type", false]], "pybytesobject (c type)": [[9, "c.PyBytesObject", false]], "pycache_prefix (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.pycache_prefix", false]], "pycallable_check (c function)": [[10, "c.PyCallable_Check", false]], "pycalliter_check (c function)": [[37, "c.PyCallIter_Check", false]], "pycalliter_new (c function)": [[37, "c.PyCallIter_New", false]], "pycalliter_type (c var)": [[37, "c.PyCallIter_Type", false]], "pycapsule (c type)": [[11, "c.PyCapsule", false]], "pycapsule_checkexact (c function)": [[11, "c.PyCapsule_CheckExact", false]], "pycapsule_destructor (c type)": [[11, "c.PyCapsule_Destructor", false]], "pycapsule_getcontext (c function)": [[11, "c.PyCapsule_GetContext", false]], "pycapsule_getdestructor (c function)": [[11, "c.PyCapsule_GetDestructor", false]], "pycapsule_getname (c function)": [[11, "c.PyCapsule_GetName", false]], "pycapsule_getpointer (c function)": [[11, "c.PyCapsule_GetPointer", false]], "pycapsule_import (c function)": [[11, "c.PyCapsule_Import", false]], "pycapsule_isvalid (c function)": [[11, "c.PyCapsule_IsValid", false]], "pycapsule_new (c function)": [[11, "c.PyCapsule_New", false]], "pycapsule_setcontext (c function)": [[11, "c.PyCapsule_SetContext", false]], "pycapsule_setdestructor (c function)": [[11, "c.PyCapsule_SetDestructor", false]], "pycapsule_setname (c function)": [[11, "c.PyCapsule_SetName", false]], "pycapsule_setpointer (c function)": [[11, "c.PyCapsule_SetPointer", false]], "pycell_check (c function)": [[12, "c.PyCell_Check", false]], "pycell_get (c function)": [[12, "c.PyCell_GET", false], [12, "c.PyCell_Get", false]], "pycell_new (c function)": [[12, "c.PyCell_New", false]], "pycell_set (c function)": [[12, "c.PyCell_SET", false], [12, "c.PyCell_Set", false]], "pycell_type (c var)": [[12, "c.PyCell_Type", false]], "pycellobject (c type)": [[12, "c.PyCellObject", false]], "pycf_allow_top_level_await (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_ALLOW_TOP_LEVEL_AWAIT", false]], "pycf_only_ast (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_ONLY_AST", false]], "pycf_type_comments (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.PyCF_TYPE_COMMENTS", false]], "pycfunction (c type)": [[58, "c.PyCFunction", false]], "pycfunction_new (c function)": [[58, "c.PyCFunction_New", false]], "pycfunction_newex (c function)": [[58, "c.PyCFunction_NewEx", false]], "pycfunctionwithkeywords (c type)": [[58, "c.PyCFunctionWithKeywords", false]], "pycinvalidationmode (py_compile \u4e2d\u7684\u985e\u5225)": [[311, "py_compile.PycInvalidationMode", false]], "pyclbr": [[312, "module-pyclbr", false]], "pycmethod (c type)": [[58, "c.PyCMethod", false]], "pycmethod_new (c function)": [[58, "c.PyCMethod_New", false]], "pycode_addr2line (c function)": [[13, "c.PyCode_Addr2Line", false]], "pycode_addr2location (c function)": [[13, "c.PyCode_Addr2Location", false]], "pycode_addwatcher (c function)": [[13, "c.PyCode_AddWatcher", false]], "pycode_check (c function)": [[13, "c.PyCode_Check", false]], "pycode_clearwatcher (c function)": [[13, "c.PyCode_ClearWatcher", false]], "pycode_getcellvars (c function)": [[13, "c.PyCode_GetCellvars", false]], "pycode_getcode (c function)": [[13, "c.PyCode_GetCode", false]], "pycode_getfirstfree (c function)": [[13, "c.PyCode_GetFirstFree", false]], "pycode_getfreevars (c function)": [[13, "c.PyCode_GetFreevars", false]], "pycode_getnumfree (c function)": [[13, "c.PyCode_GetNumFree", false]], "pycode_getvarnames (c function)": [[13, "c.PyCode_GetVarnames", false]], "pycode_newempty (c function)": [[13, "c.PyCode_NewEmpty", false]], "pycode_newwithposonlyargs\uff08c \u51fd\u5f0f\uff09": [[13, "index-2", false]], "pycode_new\uff08c \u51fd\u5f0f\uff09": [[13, "index-1", false]], "pycode_type (c var)": [[13, "c.PyCode_Type", false]], "pycode_watchcallback (c type)": [[13, "c.PyCode_WatchCallback", false]], "pycodec_backslashreplaceerrors (c function)": [[14, "c.PyCodec_BackslashReplaceErrors", false]], "pycodec_decode (c function)": [[14, "c.PyCodec_Decode", false]], "pycodec_decoder (c function)": [[14, "c.PyCodec_Decoder", false]], "pycodec_encode (c function)": [[14, "c.PyCodec_Encode", false]], "pycodec_encoder (c function)": [[14, "c.PyCodec_Encoder", false]], "pycodec_ignoreerrors (c function)": [[14, "c.PyCodec_IgnoreErrors", false]], "pycodec_incrementaldecoder (c function)": [[14, "c.PyCodec_IncrementalDecoder", false]], "pycodec_incrementalencoder (c function)": [[14, "c.PyCodec_IncrementalEncoder", false]], "pycodec_knownencoding (c function)": [[14, "c.PyCodec_KnownEncoding", false]], "pycodec_lookuperror (c function)": [[14, "c.PyCodec_LookupError", false]], "pycodec_namereplaceerrors (c function)": [[14, "c.PyCodec_NameReplaceErrors", false]], "pycodec_register (c function)": [[14, "c.PyCodec_Register", false]], "pycodec_registererror (c function)": [[14, "c.PyCodec_RegisterError", false]], "pycodec_replaceerrors (c function)": [[14, "c.PyCodec_ReplaceErrors", false]], "pycodec_streamreader (c function)": [[14, "c.PyCodec_StreamReader", false]], "pycodec_streamwriter (c function)": [[14, "c.PyCodec_StreamWriter", false]], "pycodec_stricterrors (c function)": [[14, "c.PyCodec_StrictErrors", false]], "pycodec_unregister (c function)": [[14, "c.PyCodec_Unregister", false]], "pycodec_xmlcharrefreplaceerrors (c function)": [[14, "c.PyCodec_XMLCharRefReplaceErrors", false]], "pycodeevent (c type)": [[13, "c.PyCodeEvent", false]], "pycodeobject (c type)": [[13, "c.PyCodeObject", false]], "pycompactunicodeobject (c type)": [[64, "c.PyCompactUnicodeObject", false]], "pycompileerror": [[311, "py_compile.PyCompileError", false]], "pycompilerflags (c struct)": [[66, "c.PyCompilerFlags", false]], "pycompilerflags.cf_feature_version (c member)": [[66, "c.PyCompilerFlags.cf_feature_version", false]], "pycompilerflags.cf_flags (c member)": [[66, "c.PyCompilerFlags.cf_flags", false]], "pycomplex_asccomplex (c function)": [[15, "c.PyComplex_AsCComplex", false]], "pycomplex_check (c function)": [[15, "c.PyComplex_Check", false]], "pycomplex_checkexact (c function)": [[15, "c.PyComplex_CheckExact", false]], "pycomplex_fromccomplex (c function)": [[15, "c.PyComplex_FromCComplex", false]], "pycomplex_fromdoubles (c function)": [[15, "c.PyComplex_FromDoubles", false]], "pycomplex_imagasdouble (c function)": [[15, "c.PyComplex_ImagAsDouble", false]], "pycomplex_realasdouble (c function)": [[15, "c.PyComplex_RealAsDouble", false]], "pycomplex_type (c var)": [[15, "c.PyComplex_Type", false]], "pycomplexobject (c type)": [[15, "c.PyComplexObject", false]], "pyconfig (c type)": [[34, "c.PyConfig", false]], "pyconfig.argv (c member)": [[34, "c.PyConfig.argv", false]], "pyconfig.base_exec_prefix (c member)": [[34, "c.PyConfig.base_exec_prefix", false]], "pyconfig.base_executable (c member)": [[34, "c.PyConfig.base_executable", false]], "pyconfig.base_prefix (c member)": [[34, "c.PyConfig.base_prefix", false]], "pyconfig.buffered_stdio (c member)": [[34, "c.PyConfig.buffered_stdio", false]], "pyconfig.bytes_warning (c member)": [[34, "c.PyConfig.bytes_warning", false]], "pyconfig.check_hash_pycs_mode (c member)": [[34, "c.PyConfig.check_hash_pycs_mode", false]], "pyconfig.code_debug_ranges (c member)": [[34, "c.PyConfig.code_debug_ranges", false]], "pyconfig.configure_c_stdio (c member)": [[34, "c.PyConfig.configure_c_stdio", false]], "pyconfig.dev_mode (c member)": [[34, "c.PyConfig.dev_mode", false]], "pyconfig.dump_refs (c member)": [[34, "c.PyConfig.dump_refs", false]], "pyconfig.exec_prefix (c member)": [[34, "c.PyConfig.exec_prefix", false]], "pyconfig.executable (c member)": [[34, "c.PyConfig.executable", false]], "pyconfig.faulthandler (c member)": [[34, "c.PyConfig.faulthandler", false]], "pyconfig.filesystem_encoding (c member)": [[34, "c.PyConfig.filesystem_encoding", false]], "pyconfig.filesystem_errors (c member)": [[34, "c.PyConfig.filesystem_errors", false]], "pyconfig.hash_seed (c member)": [[34, "c.PyConfig.hash_seed", false]], "pyconfig.home (c member)": [[34, "c.PyConfig.home", false]], "pyconfig.import_time (c member)": [[34, "c.PyConfig.import_time", false]], "pyconfig.inspect (c member)": [[34, "c.PyConfig.inspect", false]], "pyconfig.install_signal_handlers (c member)": [[34, "c.PyConfig.install_signal_handlers", false]], "pyconfig.int_max_str_digits (c member)": [[34, "c.PyConfig.int_max_str_digits", false]], "pyconfig.interactive (c member)": [[34, "c.PyConfig.interactive", false]], "pyconfig.isolated (c member)": [[34, "c.PyConfig.isolated", false]], "pyconfig.legacy_windows_stdio (c member)": [[34, "c.PyConfig.legacy_windows_stdio", false]], "pyconfig.malloc_stats (c member)": [[34, "c.PyConfig.malloc_stats", false]], "pyconfig.module_search_paths (c member)": [[34, "c.PyConfig.module_search_paths", false]], "pyconfig.module_search_paths_set (c member)": [[34, "c.PyConfig.module_search_paths_set", false]], "pyconfig.optimization_level (c member)": [[34, "c.PyConfig.optimization_level", false]], "pyconfig.orig_argv (c member)": [[34, "c.PyConfig.orig_argv", false]], "pyconfig.parse_argv (c member)": [[34, "c.PyConfig.parse_argv", false]], "pyconfig.parser_debug (c member)": [[34, "c.PyConfig.parser_debug", false]], "pyconfig.pathconfig_warnings (c member)": [[34, "c.PyConfig.pathconfig_warnings", false]], "pyconfig.perf_profiling (c member)": [[34, "c.PyConfig.perf_profiling", false]], "pyconfig.platlibdir (c member)": [[34, "c.PyConfig.platlibdir", false]], "pyconfig.prefix (c member)": [[34, "c.PyConfig.prefix", false]], "pyconfig.program_name (c member)": [[34, "c.PyConfig.program_name", false]], "pyconfig.pycache_prefix (c member)": [[34, "c.PyConfig.pycache_prefix", false]], "pyconfig.pythonpath_env (c member)": [[34, "c.PyConfig.pythonpath_env", false]], "pyconfig.quiet (c member)": [[34, "c.PyConfig.quiet", false]], "pyconfig.run_command (c member)": [[34, "c.PyConfig.run_command", false]], "pyconfig.run_filename (c member)": [[34, "c.PyConfig.run_filename", false]], "pyconfig.run_module (c member)": [[34, "c.PyConfig.run_module", false]], "pyconfig.safe_path (c member)": [[34, "c.PyConfig.safe_path", false]], "pyconfig.show_ref_count (c member)": [[34, "c.PyConfig.show_ref_count", false]], "pyconfig.site_import (c member)": [[34, "c.PyConfig.site_import", false]], "pyconfig.skip_source_first_line (c member)": [[34, "c.PyConfig.skip_source_first_line", false]], "pyconfig.stdio_encoding (c member)": [[34, "c.PyConfig.stdio_encoding", false]], "pyconfig.stdio_errors (c member)": [[34, "c.PyConfig.stdio_errors", false]], "pyconfig.tracemalloc (c member)": [[34, "c.PyConfig.tracemalloc", false]], "pyconfig.use_environment (c member)": [[34, "c.PyConfig.use_environment", false]], "pyconfig.use_hash_seed (c member)": [[34, "c.PyConfig.use_hash_seed", false]], "pyconfig.user_site_directory (c member)": [[34, "c.PyConfig.user_site_directory", false]], "pyconfig.verbose (c member)": [[34, "c.PyConfig.verbose", false]], "pyconfig.warn_default_encoding (c member)": [[34, "c.PyConfig.warn_default_encoding", false]], "pyconfig.warnoptions (c member)": [[34, "c.PyConfig.warnoptions", false]], "pyconfig.write_bytecode (c member)": [[34, "c.PyConfig.write_bytecode", false]], "pyconfig.xoptions (c member)": [[34, "c.PyConfig.xoptions", false]], "pyconfig_clear (c function)": [[34, "c.PyConfig_Clear", false]], "pyconfig_initisolatedconfig (c function)": [[34, "c.PyConfig_InitIsolatedConfig", false]], "pyconfig_initpythonconfig (c function)": [[34, "c.PyConfig_InitPythonConfig", false]], "pyconfig_read (c function)": [[34, "c.PyConfig_Read", false]], "pyconfig_setargv (c function)": [[34, "c.PyConfig_SetArgv", false]], "pyconfig_setbytesargv (c function)": [[34, "c.PyConfig_SetBytesArgv", false]], "pyconfig_setbytesstring (c function)": [[34, "c.PyConfig_SetBytesString", false]], "pyconfig_setstring (c function)": [[34, "c.PyConfig_SetString", false]], "pyconfig_setwidestringlist (c function)": [[34, "c.PyConfig_SetWideStringList", false]], "pycontext (c type)": [[17, "c.PyContext", false]], "pycontext_checkexact (c function)": [[17, "c.PyContext_CheckExact", false]], "pycontext_copy (c function)": [[17, "c.PyContext_Copy", false]], "pycontext_copycurrent (c function)": [[17, "c.PyContext_CopyCurrent", false]], "pycontext_enter (c function)": [[17, "c.PyContext_Enter", false]], "pycontext_exit (c function)": [[17, "c.PyContext_Exit", false]], "pycontext_new (c function)": [[17, "c.PyContext_New", false]], "pycontext_type (c var)": [[17, "c.PyContext_Type", false]], "pycontexttoken (c type)": [[17, "c.PyContextToken", false]], "pycontexttoken_checkexact (c function)": [[17, "c.PyContextToken_CheckExact", false]], "pycontexttoken_type (c var)": [[17, "c.PyContextToken_Type", false]], "pycontextvar (c type)": [[17, "c.PyContextVar", false]], "pycontextvar_checkexact (c function)": [[17, "c.PyContextVar_CheckExact", false]], "pycontextvar_get (c function)": [[17, "c.PyContextVar_Get", false]], "pycontextvar_new (c function)": [[17, "c.PyContextVar_New", false]], "pycontextvar_reset (c function)": [[17, "c.PyContextVar_Reset", false]], "pycontextvar_set (c function)": [[17, "c.PyContextVar_Set", false]], "pycontextvar_type (c var)": [[17, "c.PyContextVar_Type", false]], "pycoro_checkexact (c function)": [[19, "c.PyCoro_CheckExact", false]], "pycoro_new (c function)": [[19, "c.PyCoro_New", false]], "pycoro_type (c var)": [[19, "c.PyCoro_Type", false]], "pycoroobject (c type)": [[19, "c.PyCoroObject", false]], "pydate_check (c function)": [[20, "c.PyDate_Check", false]], "pydate_checkexact (c function)": [[20, "c.PyDate_CheckExact", false]], "pydate_fromdate (c function)": [[20, "c.PyDate_FromDate", false]], "pydate_fromtimestamp (c function)": [[20, "c.PyDate_FromTimestamp", false]], "pydatetime_check (c function)": [[20, "c.PyDateTime_Check", false]], "pydatetime_checkexact (c function)": [[20, "c.PyDateTime_CheckExact", false]], "pydatetime_date (c type)": [[20, "c.PyDateTime_Date", false]], "pydatetime_date_get_fold (c function)": [[20, "c.PyDateTime_DATE_GET_FOLD", false]], "pydatetime_date_get_hour (c function)": [[20, "c.PyDateTime_DATE_GET_HOUR", false]], "pydatetime_date_get_microsecond (c function)": [[20, "c.PyDateTime_DATE_GET_MICROSECOND", false]], "pydatetime_date_get_minute (c function)": [[20, "c.PyDateTime_DATE_GET_MINUTE", false]], "pydatetime_date_get_second (c function)": [[20, "c.PyDateTime_DATE_GET_SECOND", false]], "pydatetime_date_get_tzinfo (c function)": [[20, "c.PyDateTime_DATE_GET_TZINFO", false]], "pydatetime_datetime (c type)": [[20, "c.PyDateTime_DateTime", false]], "pydatetime_datetimetype (c var)": [[20, "c.PyDateTime_DateTimeType", false]], "pydatetime_datetype (c var)": [[20, "c.PyDateTime_DateType", false]], "pydatetime_delta (c type)": [[20, "c.PyDateTime_Delta", false]], "pydatetime_delta_get_days (c function)": [[20, "c.PyDateTime_DELTA_GET_DAYS", false]], "pydatetime_delta_get_microseconds (c function)": [[20, "c.PyDateTime_DELTA_GET_MICROSECONDS", false]], "pydatetime_delta_get_seconds (c function)": [[20, "c.PyDateTime_DELTA_GET_SECONDS", false]], "pydatetime_deltatype (c var)": [[20, "c.PyDateTime_DeltaType", false]], "pydatetime_fromdateandtime (c function)": [[20, "c.PyDateTime_FromDateAndTime", false]], "pydatetime_fromdateandtimeandfold (c function)": [[20, "c.PyDateTime_FromDateAndTimeAndFold", false]], "pydatetime_fromtimestamp (c function)": [[20, "c.PyDateTime_FromTimestamp", false]], "pydatetime_get_day (c function)": [[20, "c.PyDateTime_GET_DAY", false]], "pydatetime_get_month (c function)": [[20, "c.PyDateTime_GET_MONTH", false]], "pydatetime_get_year (c function)": [[20, "c.PyDateTime_GET_YEAR", false]], "pydatetime_time (c type)": [[20, "c.PyDateTime_Time", false]], "pydatetime_time_get_fold (c function)": [[20, "c.PyDateTime_TIME_GET_FOLD", false]], "pydatetime_time_get_hour (c function)": [[20, "c.PyDateTime_TIME_GET_HOUR", false]], "pydatetime_time_get_microsecond (c function)": [[20, "c.PyDateTime_TIME_GET_MICROSECOND", false]], "pydatetime_time_get_minute (c function)": [[20, "c.PyDateTime_TIME_GET_MINUTE", false]], "pydatetime_time_get_second (c function)": [[20, "c.PyDateTime_TIME_GET_SECOND", false]], "pydatetime_time_get_tzinfo (c function)": [[20, "c.PyDateTime_TIME_GET_TZINFO", false]], "pydatetime_timetype (c var)": [[20, "c.PyDateTime_TimeType", false]], "pydatetime_timezone_utc (c var)": [[20, "c.PyDateTime_TimeZone_UTC", false]], "pydatetime_tzinfotype (c var)": [[20, "c.PyDateTime_TZInfoType", false]], "pydelta_check (c function)": [[20, "c.PyDelta_Check", false]], "pydelta_checkexact (c function)": [[20, "c.PyDelta_CheckExact", false]], "pydelta_fromdsu (c function)": [[20, "c.PyDelta_FromDSU", false]], "pydescr_isdata (c function)": [[21, "c.PyDescr_IsData", false]], "pydescr_newclassmethod (c function)": [[21, "c.PyDescr_NewClassMethod", false]], "pydescr_newgetset (c function)": [[21, "c.PyDescr_NewGetSet", false]], "pydescr_newmember (c function)": [[21, "c.PyDescr_NewMember", false]], "pydescr_newmethod (c function)": [[21, "c.PyDescr_NewMethod", false]], "pydescr_newwrapper (c function)": [[21, "c.PyDescr_NewWrapper", false]], "pydict_addwatcher (c function)": [[22, "c.PyDict_AddWatcher", false]], "pydict_check (c function)": [[22, "c.PyDict_Check", false]], "pydict_checkexact (c function)": [[22, "c.PyDict_CheckExact", false]], "pydict_clear (c function)": [[22, "c.PyDict_Clear", false]], "pydict_clearwatcher (c function)": [[22, "c.PyDict_ClearWatcher", false]], "pydict_contains (c function)": [[22, "c.PyDict_Contains", false]], "pydict_copy (c function)": [[22, "c.PyDict_Copy", false]], "pydict_delitem (c function)": [[22, "c.PyDict_DelItem", false]], "pydict_delitemstring (c function)": [[22, "c.PyDict_DelItemString", false]], "pydict_getitem (c function)": [[22, "c.PyDict_GetItem", false]], "pydict_getitemstring (c function)": [[22, "c.PyDict_GetItemString", false]], "pydict_getitemwitherror (c function)": [[22, "c.PyDict_GetItemWithError", false]], "pydict_items (c function)": [[22, "c.PyDict_Items", false]], "pydict_keys (c function)": [[22, "c.PyDict_Keys", false]], "pydict_merge (c function)": [[22, "c.PyDict_Merge", false]], "pydict_mergefromseq2 (c function)": [[22, "c.PyDict_MergeFromSeq2", false]], "pydict_new (c function)": [[22, "c.PyDict_New", false]], "pydict_next (c function)": [[22, "c.PyDict_Next", false]], "pydict_setdefault (c function)": [[22, "c.PyDict_SetDefault", false]], "pydict_setitem (c function)": [[22, "c.PyDict_SetItem", false]], "pydict_setitemstring (c function)": [[22, "c.PyDict_SetItemString", false]], "pydict_size (c function)": [[22, "c.PyDict_Size", false]], "pydict_type (c var)": [[22, "c.PyDict_Type", false]], "pydict_unwatch (c function)": [[22, "c.PyDict_Unwatch", false]], "pydict_update (c function)": [[22, "c.PyDict_Update", false]], "pydict_values (c function)": [[22, "c.PyDict_Values", false]], "pydict_watch (c function)": [[22, "c.PyDict_Watch", false]], "pydict_watchcallback (c type)": [[22, "c.PyDict_WatchCallback", false]], "pydict_watchevent (c type)": [[22, "c.PyDict_WatchEvent", false]], "pydictobject (c type)": [[22, "c.PyDictObject", false]], "pydictproxy_new (c function)": [[22, "c.PyDictProxy_New", false]], "pydll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.PyDLL", false]], "pydoc": [[313, "module-pydoc", false]], "pydoc_str (c macro)": [[35, "c.PyDoc_STR", false]], "pydoc_strvar (c macro)": [[35, "c.PyDoc_STRVAR", false]], "pyerr_badargument (c function)": [[23, "c.PyErr_BadArgument", false]], "pyerr_badinternalcall (c function)": [[23, "c.PyErr_BadInternalCall", false]], "pyerr_checksignals (c function)": [[23, "c.PyErr_CheckSignals", false]], "pyerr_clear (c function)": [[23, "c.PyErr_Clear", false]], "pyerr_clear\uff08c \u51fd\u5f0f\uff09": [[35, "index-12", false], [35, "index-17", false]], "pyerr_displayexception (c function)": [[23, "c.PyErr_DisplayException", false]], "pyerr_exceptionmatches (c function)": [[23, "c.PyErr_ExceptionMatches", false]], "pyerr_exceptionmatches\uff08c \u51fd\u5f0f\uff09": [[35, "index-17", false]], "pyerr_fetch (c function)": [[23, "c.PyErr_Fetch", false]], "pyerr_fetch\uff08c \u51fd\u5f0f\uff09": [[75, "index-1", false]], "pyerr_format (c function)": [[23, "c.PyErr_Format", false]], "pyerr_formatv (c function)": [[23, "c.PyErr_FormatV", false]], "pyerr_getexcinfo (c function)": [[23, "c.PyErr_GetExcInfo", false]], "pyerr_gethandledexception (c function)": [[23, "c.PyErr_GetHandledException", false]], "pyerr_getraisedexception (c function)": [[23, "c.PyErr_GetRaisedException", false]], "pyerr_givenexceptionmatches (c function)": [[23, "c.PyErr_GivenExceptionMatches", false]], "pyerr_newexception (c function)": [[23, "c.PyErr_NewException", false]], "pyerr_newexceptionwithdoc (c function)": [[23, "c.PyErr_NewExceptionWithDoc", false]], "pyerr_nomemory (c function)": [[23, "c.PyErr_NoMemory", false]], "pyerr_normalizeexception (c function)": [[23, "c.PyErr_NormalizeException", false]], "pyerr_occurred (c function)": [[23, "c.PyErr_Occurred", false]], "pyerr_occurred\uff08c \u51fd\u5f0f\uff09": [[35, "index-11", false]], "pyerr_print (c function)": [[23, "c.PyErr_Print", false]], "pyerr_printex (c function)": [[23, "c.PyErr_PrintEx", false]], "pyerr_resourcewarning (c function)": [[23, "c.PyErr_ResourceWarning", false]], "pyerr_restore (c function)": [[23, "c.PyErr_Restore", false]], "pyerr_restore\uff08c \u51fd\u5f0f\uff09": [[75, "index-1", false]], "pyerr_setexcfromwindowserr (c function)": [[23, "c.PyErr_SetExcFromWindowsErr", false]], "pyerr_setexcfromwindowserrwithfilename (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilename", false]], "pyerr_setexcfromwindowserrwithfilenameobject (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", false]], "pyerr_setexcfromwindowserrwithfilenameobjects (c function)": [[23, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", false]], "pyerr_setexcinfo (c function)": [[23, "c.PyErr_SetExcInfo", false]], "pyerr_setfromerrno (c function)": [[23, "c.PyErr_SetFromErrno", false]], "pyerr_setfromerrnowithfilename (c function)": [[23, "c.PyErr_SetFromErrnoWithFilename", false]], "pyerr_setfromerrnowithfilenameobject (c function)": [[23, "c.PyErr_SetFromErrnoWithFilenameObject", false]], "pyerr_setfromerrnowithfilenameobjects (c function)": [[23, "c.PyErr_SetFromErrnoWithFilenameObjects", false]], "pyerr_setfromwindowserr (c function)": [[23, "c.PyErr_SetFromWindowsErr", false]], "pyerr_setfromwindowserrwithfilename (c function)": [[23, "c.PyErr_SetFromWindowsErrWithFilename", false]], "pyerr_sethandledexception (c function)": [[23, "c.PyErr_SetHandledException", false]], "pyerr_setimporterror (c function)": [[23, "c.PyErr_SetImportError", false]], "pyerr_setimporterrorsubclass (c function)": [[23, "c.PyErr_SetImportErrorSubclass", false]], "pyerr_setinterrupt (c function)": [[23, "c.PyErr_SetInterrupt", false]], "pyerr_setinterruptex (c function)": [[23, "c.PyErr_SetInterruptEx", false]], "pyerr_setnone (c function)": [[23, "c.PyErr_SetNone", false]], "pyerr_setobject (c function)": [[23, "c.PyErr_SetObject", false]], "pyerr_setraisedexception (c function)": [[23, "c.PyErr_SetRaisedException", false]], "pyerr_setstring (c function)": [[23, "c.PyErr_SetString", false]], "pyerr_setstring\uff08c \u51fd\u5f0f\uff09": [[35, "index-12", false]], "pyerr_syntaxlocation (c function)": [[23, "c.PyErr_SyntaxLocation", false]], "pyerr_syntaxlocationex (c function)": [[23, "c.PyErr_SyntaxLocationEx", false]], "pyerr_syntaxlocationobject (c function)": [[23, "c.PyErr_SyntaxLocationObject", false]], "pyerr_warnex (c function)": [[23, "c.PyErr_WarnEx", false]], "pyerr_warnexplicit (c function)": [[23, "c.PyErr_WarnExplicit", false]], "pyerr_warnexplicitobject (c function)": [[23, "c.PyErr_WarnExplicitObject", false]], "pyerr_warnformat (c function)": [[23, "c.PyErr_WarnFormat", false]], "pyerr_writeunraisable (c function)": [[23, "c.PyErr_WriteUnraisable", false]], "pyeval_acquirelock (c function)": [[33, "c.PyEval_AcquireLock", false]], "pyeval_acquirethread (c function)": [[33, "c.PyEval_AcquireThread", false]], "pyeval_acquirethread()": [[33, "index-37", false]], "pyeval_evalcode (c function)": [[66, "c.PyEval_EvalCode", false]], "pyeval_evalcodeex (c function)": [[66, "c.PyEval_EvalCodeEx", false]], "pyeval_evalframe (c function)": [[66, "c.PyEval_EvalFrame", false]], "pyeval_evalframeex (c function)": [[66, "c.PyEval_EvalFrameEx", false]], "pyeval_getbuiltins (c function)": [[53, "c.PyEval_GetBuiltins", false]], "pyeval_getframe (c function)": [[53, "c.PyEval_GetFrame", false]], "pyeval_getfuncdesc (c function)": [[53, "c.PyEval_GetFuncDesc", false]], "pyeval_getfuncname (c function)": [[53, "c.PyEval_GetFuncName", false]], "pyeval_getglobals (c function)": [[53, "c.PyEval_GetGlobals", false]], "pyeval_getlocals (c function)": [[53, "c.PyEval_GetLocals", false]], "pyeval_initthreads (c function)": [[33, "c.PyEval_InitThreads", false]], "pyeval_initthreads()": [[33, "index-15", false]], "pyeval_mergecompilerflags (c function)": [[66, "c.PyEval_MergeCompilerFlags", false]], "pyeval_releaselock (c function)": [[33, "c.PyEval_ReleaseLock", false]], "pyeval_releasethread (c function)": [[33, "c.PyEval_ReleaseThread", false]], "pyeval_releasethread()": [[33, "index-37", false]], "pyeval_restorethread (c function)": [[33, "c.PyEval_RestoreThread", false]], "pyeval_restorethread()": [[33, "index-37", false]], "pyeval_restorethread\uff08c \u51fd\u5f0f\uff09": [[33, "index-36", false]], "pyeval_savethread (c function)": [[33, "c.PyEval_SaveThread", false]], "pyeval_savethread()": [[33, "index-37", false]], "pyeval_savethread\uff08c \u51fd\u5f0f\uff09": [[33, "index-36", false]], "pyeval_setprofile (c function)": [[33, "c.PyEval_SetProfile", false]], "pyeval_setprofileallthreads (c function)": [[33, "c.PyEval_SetProfileAllThreads", false]], "pyeval_settrace (c function)": [[33, "c.PyEval_SetTrace", false]], "pyeval_settraceallthreads (c function)": [[33, "c.PyEval_SetTraceAllThreads", false]], "pyeval_threadsinitialized (c function)": [[33, "c.PyEval_ThreadsInitialized", false]], "pyexc_arithmeticerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_assertionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_attributeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_baseexception\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_blockingioerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_brokenpipeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_buffererror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_byteswarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_childprocesserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionabortederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionrefusederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_connectionreseterror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_deprecationwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_environmenterror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_eoferror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_exception\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_fileexistserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_filenotfounderror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_floatingpointerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_futurewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_generatorexit\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_importerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_importwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_indentationerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_indexerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_interruptederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_ioerror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_isadirectoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_keyboardinterrupt\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_keyerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_lookuperror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_memoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_modulenotfounderror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_nameerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_notadirectoryerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_notimplementederror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_oserror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_overflowerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_pendingdeprecationwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_permissionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_processlookuperror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_recursionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_referenceerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_resourcewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_runtimeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_runtimewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_stopasynciteration\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_stopiteration\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_syntaxerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_syntaxwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_systemerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_systemexit\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_taberror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_timeouterror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_typeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unboundlocalerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodedecodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodeencodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodeerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodetranslateerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_unicodewarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_userwarning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_valueerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexc_warning\uff08c \u8b8a\u6578\uff09": [[23, "index-7", false]], "pyexc_windowserror\uff08c \u8b8a\u6578\uff09": [[23, "index-6", false]], "pyexc_zerodivisionerror\uff08c \u8b8a\u6578\uff09": [[23, "index-4", false]], "pyexception_getargs (c function)": [[23, "c.PyException_GetArgs", false]], "pyexception_getcause (c function)": [[23, "c.PyException_GetCause", false]], "pyexception_getcontext (c function)": [[23, "c.PyException_GetContext", false]], "pyexception_gettraceback (c function)": [[23, "c.PyException_GetTraceback", false]], "pyexception_setargs (c function)": [[23, "c.PyException_SetArgs", false]], "pyexception_setcause (c function)": [[23, "c.PyException_SetCause", false]], "pyexception_setcontext (c function)": [[23, "c.PyException_SetContext", false]], "pyexception_settraceback (c function)": [[23, "c.PyException_SetTraceback", false]], "pyexpat": [[314, "index-1", false]], "pyfile_fromfd (c function)": [[24, "c.PyFile_FromFd", false]], "pyfile_getline (c function)": [[24, "c.PyFile_GetLine", false]], "pyfile_setopencodehook (c function)": [[24, "c.PyFile_SetOpenCodeHook", false]], "pyfile_setopencodehook.py_opencodehookfunction (c type)": [[24, "c.PyFile_SetOpenCodeHook.Py_OpenCodeHookFunction", false]], "pyfile_writeobject (c function)": [[24, "c.PyFile_WriteObject", false]], "pyfile_writestring (c function)": [[24, "c.PyFile_WriteString", false]], "pyfloat_as_double (c function)": [[25, "c.PyFloat_AS_DOUBLE", false]], "pyfloat_asdouble (c function)": [[25, "c.PyFloat_AsDouble", false]], "pyfloat_check (c function)": [[25, "c.PyFloat_Check", false]], "pyfloat_checkexact (c function)": [[25, "c.PyFloat_CheckExact", false]], "pyfloat_fromdouble (c function)": [[25, "c.PyFloat_FromDouble", false]], "pyfloat_fromstring (c function)": [[25, "c.PyFloat_FromString", false]], "pyfloat_getinfo (c function)": [[25, "c.PyFloat_GetInfo", false]], "pyfloat_getmax (c function)": [[25, "c.PyFloat_GetMax", false]], "pyfloat_getmin (c function)": [[25, "c.PyFloat_GetMin", false]], "pyfloat_pack2 (c function)": [[25, "c.PyFloat_Pack2", false]], "pyfloat_pack4 (c function)": [[25, "c.PyFloat_Pack4", false]], "pyfloat_pack8 (c function)": [[25, "c.PyFloat_Pack8", false]], "pyfloat_type (c var)": [[25, "c.PyFloat_Type", false]], "pyfloat_unpack2 (c function)": [[25, "c.PyFloat_Unpack2", false]], "pyfloat_unpack4 (c function)": [[25, "c.PyFloat_Unpack4", false]], "pyfloat_unpack8 (c function)": [[25, "c.PyFloat_Unpack8", false]], "pyfloatobject (c type)": [[25, "c.PyFloatObject", false]], "pyframe_check (c function)": [[26, "c.PyFrame_Check", false]], "pyframe_getback (c function)": [[26, "c.PyFrame_GetBack", false]], "pyframe_getbuiltins (c function)": [[26, "c.PyFrame_GetBuiltins", false]], "pyframe_getcode (c function)": [[26, "c.PyFrame_GetCode", false]], "pyframe_getgenerator (c function)": [[26, "c.PyFrame_GetGenerator", false]], "pyframe_getglobals (c function)": [[26, "c.PyFrame_GetGlobals", false]], "pyframe_getlasti (c function)": [[26, "c.PyFrame_GetLasti", false]], "pyframe_getlinenumber (c function)": [[26, "c.PyFrame_GetLineNumber", false]], "pyframe_getlocals (c function)": [[26, "c.PyFrame_GetLocals", false]], "pyframe_getvar (c function)": [[26, "c.PyFrame_GetVar", false]], "pyframe_getvarstring (c function)": [[26, "c.PyFrame_GetVarString", false]], "pyframe_type (c var)": [[26, "c.PyFrame_Type", false]], "pyframeobject (c type)": [[26, "c.PyFrameObject", false]], "pyfrozenset_check (c function)": [[55, "c.PyFrozenSet_Check", false]], "pyfrozenset_checkexact (c function)": [[55, "c.PyFrozenSet_CheckExact", false]], "pyfrozenset_new (c function)": [[55, "c.PyFrozenSet_New", false]], "pyfrozenset_type (c var)": [[55, "c.PyFrozenSet_Type", false]], "pyfunction_addwatcher (c function)": [[27, "c.PyFunction_AddWatcher", false]], "pyfunction_check (c function)": [[27, "c.PyFunction_Check", false]], "pyfunction_clearwatcher (c function)": [[27, "c.PyFunction_ClearWatcher", false]], "pyfunction_getannotations (c function)": [[27, "c.PyFunction_GetAnnotations", false]], "pyfunction_getclosure (c function)": [[27, "c.PyFunction_GetClosure", false]], "pyfunction_getcode (c function)": [[27, "c.PyFunction_GetCode", false]], "pyfunction_getdefaults (c function)": [[27, "c.PyFunction_GetDefaults", false]], "pyfunction_getglobals (c function)": [[27, "c.PyFunction_GetGlobals", false]], "pyfunction_getmodule (c function)": [[27, "c.PyFunction_GetModule", false]], "pyfunction_new (c function)": [[27, "c.PyFunction_New", false]], "pyfunction_newwithqualname (c function)": [[27, "c.PyFunction_NewWithQualName", false]], "pyfunction_setannotations (c function)": [[27, "c.PyFunction_SetAnnotations", false]], "pyfunction_setclosure (c function)": [[27, "c.PyFunction_SetClosure", false]], "pyfunction_setdefaults (c function)": [[27, "c.PyFunction_SetDefaults", false]], "pyfunction_setvectorcall (c function)": [[27, "c.PyFunction_SetVectorcall", false]], "pyfunction_type (c var)": [[27, "c.PyFunction_Type", false]], "pyfunction_watchcallback (c type)": [[27, "c.PyFunction_WatchCallback", false]], "pyfunction_watchevent (c type)": [[27, "c.PyFunction_WatchEvent", false]], "pyfunctionobject (c type)": [[27, "c.PyFunctionObject", false]], "pyfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.PYFUNCTYPE", false]], "pygc_collect (c function)": [[28, "c.PyGC_Collect", false]], "pygc_disable (c function)": [[28, "c.PyGC_Disable", false]], "pygc_enable (c function)": [[28, "c.PyGC_Enable", false]], "pygc_isenabled (c function)": [[28, "c.PyGC_IsEnabled", false]], "pygen_check (c function)": [[29, "c.PyGen_Check", false]], "pygen_checkexact (c function)": [[29, "c.PyGen_CheckExact", false]], "pygen_new (c function)": [[29, "c.PyGen_New", false]], "pygen_newwithqualname (c function)": [[29, "c.PyGen_NewWithQualName", false]], "pygen_type (c var)": [[29, "c.PyGen_Type", false]], "pygenobject (c type)": [[29, "c.PyGenObject", false]], "pygetsetdef (c type)": [[58, "c.PyGetSetDef", false]], "pygetsetdef.closure (c member)": [[58, "c.PyGetSetDef.closure", false]], "pygetsetdef.doc (c member)": [[58, "c.PyGetSetDef.doc", false]], "pygetsetdef.get (c member)": [[58, "c.PyGetSetDef.get", false]], "pygetsetdef.name (c member)": [[58, "c.PyGetSetDef.name", false]], "pygetsetdef.set (c member)": [[58, "c.PyGetSetDef.set", false]], "pygilstate_check (c function)": [[33, "c.PyGILState_Check", false]], "pygilstate_ensure (c function)": [[33, "c.PyGILState_Ensure", false]], "pygilstate_getthisthreadstate (c function)": [[33, "c.PyGILState_GetThisThreadState", false]], "pygilstate_release (c function)": [[33, "c.PyGILState_Release", false]], "pyhash_funcdef (c type)": [[30, "c.PyHash_FuncDef", false]], "pyhash_funcdef.hash_bits (c member)": [[30, "c.PyHash_FuncDef.hash_bits", false]], "pyhash_funcdef.name (c member)": [[30, "c.PyHash_FuncDef.name", false]], "pyhash_funcdef.seed_bits (c member)": [[30, "c.PyHash_FuncDef.seed_bits", false]], "pyhash_getfuncdef (c function)": [[30, "c.PyHash_GetFuncDef", false]], "pyimport_addmodule (c function)": [[31, "c.PyImport_AddModule", false]], "pyimport_addmoduleobject (c function)": [[31, "c.PyImport_AddModuleObject", false]], "pyimport_appendinittab (c function)": [[31, "c.PyImport_AppendInittab", false]], "pyimport_execcodemodule (c function)": [[31, "c.PyImport_ExecCodeModule", false]], "pyimport_execcodemoduleex (c function)": [[31, "c.PyImport_ExecCodeModuleEx", false]], "pyimport_execcodemoduleobject (c function)": [[31, "c.PyImport_ExecCodeModuleObject", false]], "pyimport_execcodemodulewithpathnames (c function)": [[31, "c.PyImport_ExecCodeModuleWithPathnames", false]], "pyimport_extendinittab (c function)": [[31, "c.PyImport_ExtendInittab", false]], "pyimport_frozenmodules (c var)": [[31, "c.PyImport_FrozenModules", false]], "pyimport_getimporter (c function)": [[31, "c.PyImport_GetImporter", false]], "pyimport_getmagicnumber (c function)": [[31, "c.PyImport_GetMagicNumber", false]], "pyimport_getmagictag (c function)": [[31, "c.PyImport_GetMagicTag", false]], "pyimport_getmodule (c function)": [[31, "c.PyImport_GetModule", false]], "pyimport_getmoduledict (c function)": [[31, "c.PyImport_GetModuleDict", false]], "pyimport_import (c function)": [[31, "c.PyImport_Import", false]], "pyimport_importfrozenmodule (c function)": [[31, "c.PyImport_ImportFrozenModule", false]], "pyimport_importfrozenmoduleobject (c function)": [[31, "c.PyImport_ImportFrozenModuleObject", false]], "pyimport_importmodule (c function)": [[31, "c.PyImport_ImportModule", false]], "pyimport_importmoduleex (c function)": [[31, "c.PyImport_ImportModuleEx", false]], "pyimport_importmodulelevel (c function)": [[31, "c.PyImport_ImportModuleLevel", false]], "pyimport_importmodulelevelobject (c function)": [[31, "c.PyImport_ImportModuleLevelObject", false]], "pyimport_importmodulenoblock (c function)": [[31, "c.PyImport_ImportModuleNoBlock", false]], "pyimport_reloadmodule (c function)": [[31, "c.PyImport_ReloadModule", false]], "pyindex_check (c function)": [[47, "c.PyIndex_Check", false]], "pyinit_modulename (c function)": [[71, "c.PyInit_modulename", false]], "pyinstancemethod_check (c function)": [[44, "c.PyInstanceMethod_Check", false]], "pyinstancemethod_function (c function)": [[44, "c.PyInstanceMethod_Function", false]], "pyinstancemethod_get_function (c function)": [[44, "c.PyInstanceMethod_GET_FUNCTION", false]], "pyinstancemethod_new (c function)": [[44, "c.PyInstanceMethod_New", false]], "pyinstancemethod_type (c var)": [[44, "c.PyInstanceMethod_Type", false]], "pyinterpreterconfig (c type)": [[33, "c.PyInterpreterConfig", false]], "pyinterpreterconfig.allow_daemon_threads (c member)": [[33, "c.PyInterpreterConfig.allow_daemon_threads", false]], "pyinterpreterconfig.allow_exec (c member)": [[33, "c.PyInterpreterConfig.allow_exec", false]], "pyinterpreterconfig.allow_fork (c member)": [[33, "c.PyInterpreterConfig.allow_fork", false]], "pyinterpreterconfig.allow_threads (c member)": [[33, "c.PyInterpreterConfig.allow_threads", false]], "pyinterpreterconfig.check_multi_interp_extensions (c member)": [[33, "c.PyInterpreterConfig.check_multi_interp_extensions", false]], "pyinterpreterconfig.gil (c member)": [[33, "c.PyInterpreterConfig.gil", false]], "pyinterpreterconfig.use_main_obmalloc (c member)": [[33, "c.PyInterpreterConfig.use_main_obmalloc", false]], "pyinterpreterconfig_default_gil (c macro)": [[33, "c.PyInterpreterConfig_DEFAULT_GIL", false]], "pyinterpreterconfig_own_gil (c macro)": [[33, "c.PyInterpreterConfig_OWN_GIL", false]], "pyinterpreterconfig_shared_gil (c macro)": [[33, "c.PyInterpreterConfig_SHARED_GIL", false]], "pyinterpreterstate (c type)": [[33, "c.PyInterpreterState", false]], "pyinterpreterstate_clear (c function)": [[33, "c.PyInterpreterState_Clear", false]], "pyinterpreterstate_delete (c function)": [[33, "c.PyInterpreterState_Delete", false]], "pyinterpreterstate_get (c function)": [[33, "c.PyInterpreterState_Get", false]], "pyinterpreterstate_getdict (c function)": [[33, "c.PyInterpreterState_GetDict", false]], "pyinterpreterstate_getid (c function)": [[33, "c.PyInterpreterState_GetID", false]], "pyinterpreterstate_head (c function)": [[33, "c.PyInterpreterState_Head", false]], "pyinterpreterstate_main (c function)": [[33, "c.PyInterpreterState_Main", false]], "pyinterpreterstate_new (c function)": [[33, "c.PyInterpreterState_New", false]], "pyinterpreterstate_next (c function)": [[33, "c.PyInterpreterState_Next", false]], "pyinterpreterstate_threadhead (c function)": [[33, "c.PyInterpreterState_ThreadHead", false]], "pyiter_check (c function)": [[36, "c.PyIter_Check", false]], "pyiter_next (c function)": [[36, "c.PyIter_Next", false]], "pyiter_send (c function)": [[36, "c.PyIter_Send", false]], "pylauncher_allow_install": [[461, "index-29", false], [483, "index-2", false], [483, "index-77", false]], "pylauncher_always_install": [[461, "index-30", false]], "pylauncher_debug": [[461, "index-27", false]], "pylauncher_dryrun": [[461, "index-28", false], [461, "index-31", false]], "pylauncher_no_search_path": [[461, "index-24", false]], "pylist_append (c function)": [[38, "c.PyList_Append", false]], "pylist_astuple (c function)": [[38, "c.PyList_AsTuple", false]], "pylist_check (c function)": [[38, "c.PyList_Check", false]], "pylist_checkexact (c function)": [[38, "c.PyList_CheckExact", false]], "pylist_get_item (c function)": [[38, "c.PyList_GET_ITEM", false]], "pylist_get_size (c function)": [[38, "c.PyList_GET_SIZE", false]], "pylist_getitem (c function)": [[38, "c.PyList_GetItem", false]], "pylist_getitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-7", false]], "pylist_getslice (c function)": [[38, "c.PyList_GetSlice", false]], "pylist_insert (c function)": [[38, "c.PyList_Insert", false]], "pylist_new (c function)": [[38, "c.PyList_New", false]], "pylist_reverse (c function)": [[38, "c.PyList_Reverse", false]], "pylist_set_item (c function)": [[38, "c.PyList_SET_ITEM", false]], "pylist_setitem (c function)": [[38, "c.PyList_SetItem", false]], "pylist_setitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-5", false]], "pylist_setslice (c function)": [[38, "c.PyList_SetSlice", false]], "pylist_size (c function)": [[38, "c.PyList_Size", false]], "pylist_sort (c function)": [[38, "c.PyList_Sort", false]], "pylist_type (c var)": [[38, "c.PyList_Type", false]], "pylistobject (c type)": [[38, "c.PyListObject", false]], "pylong_asdouble (c function)": [[39, "c.PyLong_AsDouble", false]], "pylong_aslong (c function)": [[39, "c.PyLong_AsLong", false]], "pylong_aslongandoverflow (c function)": [[39, "c.PyLong_AsLongAndOverflow", false]], "pylong_aslonglong (c function)": [[39, "c.PyLong_AsLongLong", false]], "pylong_aslonglongandoverflow (c function)": [[39, "c.PyLong_AsLongLongAndOverflow", false]], "pylong_assize_t (c function)": [[39, "c.PyLong_AsSize_t", false]], "pylong_asssize_t (c function)": [[39, "c.PyLong_AsSsize_t", false]], "pylong_asunsignedlong (c function)": [[39, "c.PyLong_AsUnsignedLong", false]], "pylong_asunsignedlonglong (c function)": [[39, "c.PyLong_AsUnsignedLongLong", false]], "pylong_asunsignedlonglongmask (c function)": [[39, "c.PyLong_AsUnsignedLongLongMask", false]], "pylong_asunsignedlongmask (c function)": [[39, "c.PyLong_AsUnsignedLongMask", false]], "pylong_asvoidptr (c function)": [[39, "c.PyLong_AsVoidPtr", false]], "pylong_check (c function)": [[39, "c.PyLong_Check", false]], "pylong_checkexact (c function)": [[39, "c.PyLong_CheckExact", false]], "pylong_fromdouble (c function)": [[39, "c.PyLong_FromDouble", false]], "pylong_fromlong (c function)": [[39, "c.PyLong_FromLong", false]], "pylong_fromlonglong (c function)": [[39, "c.PyLong_FromLongLong", false]], "pylong_fromsize_t (c function)": [[39, "c.PyLong_FromSize_t", false]], "pylong_fromssize_t (c function)": [[39, "c.PyLong_FromSsize_t", false]], "pylong_fromstring (c function)": [[39, "c.PyLong_FromString", false]], "pylong_fromunicodeobject (c function)": [[39, "c.PyLong_FromUnicodeObject", false]], "pylong_fromunsignedlong (c function)": [[39, "c.PyLong_FromUnsignedLong", false]], "pylong_fromunsignedlonglong (c function)": [[39, "c.PyLong_FromUnsignedLongLong", false]], "pylong_fromvoidptr (c function)": [[39, "c.PyLong_FromVoidPtr", false]], "pylong_type (c var)": [[39, "c.PyLong_Type", false]], "pylongobject (c type)": [[39, "c.PyLongObject", false]], "pymapping_check (c function)": [[40, "c.PyMapping_Check", false]], "pymapping_delitem (c function)": [[40, "c.PyMapping_DelItem", false]], "pymapping_delitemstring (c function)": [[40, "c.PyMapping_DelItemString", false]], "pymapping_getitemstring (c function)": [[40, "c.PyMapping_GetItemString", false]], "pymapping_haskey (c function)": [[40, "c.PyMapping_HasKey", false]], "pymapping_haskeystring (c function)": [[40, "c.PyMapping_HasKeyString", false]], "pymapping_items (c function)": [[40, "c.PyMapping_Items", false]], "pymapping_keys (c function)": [[40, "c.PyMapping_Keys", false]], "pymapping_length (c function)": [[40, "c.PyMapping_Length", false]], "pymapping_setitemstring (c function)": [[40, "c.PyMapping_SetItemString", false]], "pymapping_size (c function)": [[40, "c.PyMapping_Size", false]], "pymapping_values (c function)": [[40, "c.PyMapping_Values", false]], "pymappingmethods (c type)": [[63, "c.PyMappingMethods", false]], "pymappingmethods.mp_ass_subscript (c member)": [[63, "c.PyMappingMethods.mp_ass_subscript", false]], "pymappingmethods.mp_length (c member)": [[63, "c.PyMappingMethods.mp_length", false]], "pymappingmethods.mp_subscript (c member)": [[63, "c.PyMappingMethods.mp_subscript", false]], "pymarshal_readlastobjectfromfile (c function)": [[41, "c.PyMarshal_ReadLastObjectFromFile", false]], "pymarshal_readlongfromfile (c function)": [[41, "c.PyMarshal_ReadLongFromFile", false]], "pymarshal_readobjectfromfile (c function)": [[41, "c.PyMarshal_ReadObjectFromFile", false]], "pymarshal_readobjectfromstring (c function)": [[41, "c.PyMarshal_ReadObjectFromString", false]], "pymarshal_readshortfromfile (c function)": [[41, "c.PyMarshal_ReadShortFromFile", false]], "pymarshal_writelongtofile (c function)": [[41, "c.PyMarshal_WriteLongToFile", false]], "pymarshal_writeobjecttofile (c function)": [[41, "c.PyMarshal_WriteObjectToFile", false]], "pymarshal_writeobjecttostring (c function)": [[41, "c.PyMarshal_WriteObjectToString", false]], "pymem_calloc (c function)": [[42, "c.PyMem_Calloc", false]], "pymem_del (c function)": [[42, "c.PyMem_Del", false]], "pymem_domain_mem (c macro)": [[42, "c.PYMEM_DOMAIN_MEM", false]], "pymem_domain_obj (c macro)": [[42, "c.PYMEM_DOMAIN_OBJ", false]], "pymem_domain_raw (c macro)": [[42, "c.PYMEM_DOMAIN_RAW", false]], "pymem_free (c function)": [[42, "c.PyMem_Free", false]], "pymem_getallocator (c function)": [[42, "c.PyMem_GetAllocator", false]], "pymem_malloc (c function)": [[42, "c.PyMem_Malloc", false]], "pymem_new (c macro)": [[42, "c.PyMem_New", false]], "pymem_rawcalloc (c function)": [[42, "c.PyMem_RawCalloc", false]], "pymem_rawfree (c function)": [[42, "c.PyMem_RawFree", false]], "pymem_rawmalloc (c function)": [[42, "c.PyMem_RawMalloc", false]], "pymem_rawrealloc (c function)": [[42, "c.PyMem_RawRealloc", false]], "pymem_realloc (c function)": [[42, "c.PyMem_Realloc", false]], "pymem_resize (c macro)": [[42, "c.PyMem_Resize", false]], "pymem_setallocator (c function)": [[42, "c.PyMem_SetAllocator", false]], "pymem_setupdebughooks (c function)": [[42, "c.PyMem_SetupDebugHooks", false]], "pymemallocatordomain (c type)": [[42, "c.PyMemAllocatorDomain", false]], "pymemallocatorex (c type)": [[42, "c.PyMemAllocatorEx", false]], "pymember_getone (c function)": [[58, "c.PyMember_GetOne", false]], "pymember_setone (c function)": [[58, "c.PyMember_SetOne", false]], "pymemberdef (c type)": [[58, "c.PyMemberDef", false]], "pymemberdef.doc (c member)": [[58, "c.PyMemberDef.doc", false]], "pymemberdef.flags (c member)": [[58, "c.PyMemberDef.flags", false]], "pymemberdef.name (c member)": [[58, "c.PyMemberDef.name", false]], "pymemberdef.offset (c member)": [[58, "c.PyMemberDef.offset", false]], "pymemberdef.type (c member)": [[58, "c.PyMemberDef.type", false]], "pymemoryview_check (c function)": [[43, "c.PyMemoryView_Check", false]], "pymemoryview_frombuffer (c function)": [[43, "c.PyMemoryView_FromBuffer", false]], "pymemoryview_frommemory (c function)": [[43, "c.PyMemoryView_FromMemory", false]], "pymemoryview_fromobject (c function)": [[43, "c.PyMemoryView_FromObject", false]], "pymemoryview_get_base (c function)": [[43, "c.PyMemoryView_GET_BASE", false]], "pymemoryview_get_buffer (c function)": [[43, "c.PyMemoryView_GET_BUFFER", false]], "pymemoryview_getcontiguous (c function)": [[43, "c.PyMemoryView_GetContiguous", false]], "pymethod_check (c function)": [[44, "c.PyMethod_Check", false]], "pymethod_function (c function)": [[44, "c.PyMethod_Function", false]], "pymethod_get_function (c function)": [[44, "c.PyMethod_GET_FUNCTION", false]], "pymethod_get_self (c function)": [[44, "c.PyMethod_GET_SELF", false]], "pymethod_new (c function)": [[44, "c.PyMethod_New", false]], "pymethod_self (c function)": [[44, "c.PyMethod_Self", false]], "pymethod_type (c var)": [[44, "c.PyMethod_Type", false]], "pymethoddef (c type)": [[58, "c.PyMethodDef", false]], "pymethoddef.ml_doc (c member)": [[58, "c.PyMethodDef.ml_doc", false]], "pymethoddef.ml_flags (c member)": [[58, "c.PyMethodDef.ml_flags", false]], "pymethoddef.ml_meth (c member)": [[58, "c.PyMethodDef.ml_meth", false]], "pymethoddef.ml_name (c member)": [[58, "c.PyMethodDef.ml_name", false]], "pymodinit_func (c macro)": [[35, "c.PyMODINIT_FUNC", false]], "pymodule_addfunctions (c function)": [[45, "c.PyModule_AddFunctions", false]], "pymodule_addintconstant (c function)": [[45, "c.PyModule_AddIntConstant", false]], "pymodule_addintmacro (c macro)": [[45, "c.PyModule_AddIntMacro", false]], "pymodule_addobject (c function)": [[45, "c.PyModule_AddObject", false]], "pymodule_addobjectref (c function)": [[45, "c.PyModule_AddObjectRef", false]], "pymodule_addstringconstant (c function)": [[45, "c.PyModule_AddStringConstant", false]], "pymodule_addstringmacro (c macro)": [[45, "c.PyModule_AddStringMacro", false]], "pymodule_addtype (c function)": [[45, "c.PyModule_AddType", false]], "pymodule_check (c function)": [[45, "c.PyModule_Check", false]], "pymodule_checkexact (c function)": [[45, "c.PyModule_CheckExact", false]], "pymodule_create (c function)": [[45, "c.PyModule_Create", false]], "pymodule_create2 (c function)": [[45, "c.PyModule_Create2", false]], "pymodule_execdef (c function)": [[45, "c.PyModule_ExecDef", false]], "pymodule_fromdefandspec (c function)": [[45, "c.PyModule_FromDefAndSpec", false]], "pymodule_fromdefandspec2 (c function)": [[45, "c.PyModule_FromDefAndSpec2", false]], "pymodule_getdef (c function)": [[45, "c.PyModule_GetDef", false]], "pymodule_getdict (c function)": [[45, "c.PyModule_GetDict", false]], "pymodule_getfilename (c function)": [[45, "c.PyModule_GetFilename", false]], "pymodule_getfilenameobject (c function)": [[45, "c.PyModule_GetFilenameObject", false]], "pymodule_getname (c function)": [[45, "c.PyModule_GetName", false]], "pymodule_getnameobject (c function)": [[45, "c.PyModule_GetNameObject", false]], "pymodule_getstate (c function)": [[45, "c.PyModule_GetState", false]], "pymodule_new (c function)": [[45, "c.PyModule_New", false]], "pymodule_newobject (c function)": [[45, "c.PyModule_NewObject", false]], "pymodule_setdocstring (c function)": [[45, "c.PyModule_SetDocString", false]], "pymodule_type (c var)": [[45, "c.PyModule_Type", false]], "pymoduledef (c type)": [[45, "c.PyModuleDef", false]], "pymoduledef.m_base (c member)": [[45, "c.PyModuleDef.m_base", false]], "pymoduledef.m_clear (c member)": [[45, "c.PyModuleDef.m_clear", false]], "pymoduledef.m_doc (c member)": [[45, "c.PyModuleDef.m_doc", false]], "pymoduledef.m_free (c member)": [[45, "c.PyModuleDef.m_free", false]], "pymoduledef.m_methods (c member)": [[45, "c.PyModuleDef.m_methods", false]], "pymoduledef.m_name (c member)": [[45, "c.PyModuleDef.m_name", false]], "pymoduledef.m_size (c member)": [[45, "c.PyModuleDef.m_size", false]], "pymoduledef.m_slots (c member)": [[45, "c.PyModuleDef.m_slots", false]], "pymoduledef.m_slots.m_reload (c member)": [[45, "c.PyModuleDef.m_slots.m_reload", false]], "pymoduledef.m_traverse (c member)": [[45, "c.PyModuleDef.m_traverse", false]], "pymoduledef_init (c function)": [[45, "c.PyModuleDef_Init", false]], "pymoduledef_slot (c type)": [[45, "c.PyModuleDef_Slot", false]], "pymoduledef_slot.slot (c member)": [[45, "c.PyModuleDef_Slot.slot", false]], "pymoduledef_slot.value (c member)": [[45, "c.PyModuleDef_Slot.value", false]], "pynumber_absolute (c function)": [[47, "c.PyNumber_Absolute", false]], "pynumber_add (c function)": [[47, "c.PyNumber_Add", false]], "pynumber_and (c function)": [[47, "c.PyNumber_And", false]], "pynumber_asssize_t (c function)": [[47, "c.PyNumber_AsSsize_t", false]], "pynumber_check (c function)": [[47, "c.PyNumber_Check", false]], "pynumber_divmod (c function)": [[47, "c.PyNumber_Divmod", false]], "pynumber_float (c function)": [[47, "c.PyNumber_Float", false]], "pynumber_floordivide (c function)": [[47, "c.PyNumber_FloorDivide", false]], "pynumber_index (c function)": [[47, "c.PyNumber_Index", false]], "pynumber_inplaceadd (c function)": [[47, "c.PyNumber_InPlaceAdd", false]], "pynumber_inplaceand (c function)": [[47, "c.PyNumber_InPlaceAnd", false]], "pynumber_inplacefloordivide (c function)": [[47, "c.PyNumber_InPlaceFloorDivide", false]], "pynumber_inplacelshift (c function)": [[47, "c.PyNumber_InPlaceLshift", false]], "pynumber_inplacematrixmultiply (c function)": [[47, "c.PyNumber_InPlaceMatrixMultiply", false]], "pynumber_inplacemultiply (c function)": [[47, "c.PyNumber_InPlaceMultiply", false]], "pynumber_inplaceor (c function)": [[47, "c.PyNumber_InPlaceOr", false]], "pynumber_inplacepower (c function)": [[47, "c.PyNumber_InPlacePower", false]], "pynumber_inplaceremainder (c function)": [[47, "c.PyNumber_InPlaceRemainder", false]], "pynumber_inplacershift (c function)": [[47, "c.PyNumber_InPlaceRshift", false]], "pynumber_inplacesubtract (c function)": [[47, "c.PyNumber_InPlaceSubtract", false]], "pynumber_inplacetruedivide (c function)": [[47, "c.PyNumber_InPlaceTrueDivide", false]], "pynumber_inplacexor (c function)": [[47, "c.PyNumber_InPlaceXor", false]], "pynumber_invert (c function)": [[47, "c.PyNumber_Invert", false]], "pynumber_long (c function)": [[47, "c.PyNumber_Long", false]], "pynumber_lshift (c function)": [[47, "c.PyNumber_Lshift", false]], "pynumber_matrixmultiply (c function)": [[47, "c.PyNumber_MatrixMultiply", false]], "pynumber_multiply (c function)": [[47, "c.PyNumber_Multiply", false]], "pynumber_negative (c function)": [[47, "c.PyNumber_Negative", false]], "pynumber_or (c function)": [[47, "c.PyNumber_Or", false]], "pynumber_positive (c function)": [[47, "c.PyNumber_Positive", false]], "pynumber_power (c function)": [[47, "c.PyNumber_Power", false]], "pynumber_remainder (c function)": [[47, "c.PyNumber_Remainder", false]], "pynumber_rshift (c function)": [[47, "c.PyNumber_Rshift", false]], "pynumber_subtract (c function)": [[47, "c.PyNumber_Subtract", false]], "pynumber_tobase (c function)": [[47, "c.PyNumber_ToBase", false]], "pynumber_truedivide (c function)": [[47, "c.PyNumber_TrueDivide", false]], "pynumber_xor (c function)": [[47, "c.PyNumber_Xor", false]], "pynumbermethods (c type)": [[63, "c.PyNumberMethods", false]], "pynumbermethods.nb_absolute (c member)": [[63, "c.PyNumberMethods.nb_absolute", false]], "pynumbermethods.nb_add (c member)": [[63, "c.PyNumberMethods.nb_add", false]], "pynumbermethods.nb_and (c member)": [[63, "c.PyNumberMethods.nb_and", false]], "pynumbermethods.nb_bool (c member)": [[63, "c.PyNumberMethods.nb_bool", false]], "pynumbermethods.nb_divmod (c member)": [[63, "c.PyNumberMethods.nb_divmod", false]], "pynumbermethods.nb_float (c member)": [[63, "c.PyNumberMethods.nb_float", false]], "pynumbermethods.nb_floor_divide (c member)": [[63, "c.PyNumberMethods.nb_floor_divide", false]], "pynumbermethods.nb_index (c member)": [[63, "c.PyNumberMethods.nb_index", false]], "pynumbermethods.nb_inplace_add (c member)": [[63, "c.PyNumberMethods.nb_inplace_add", false]], "pynumbermethods.nb_inplace_and (c member)": [[63, "c.PyNumberMethods.nb_inplace_and", false]], "pynumbermethods.nb_inplace_floor_divide (c member)": [[63, "c.PyNumberMethods.nb_inplace_floor_divide", false]], "pynumbermethods.nb_inplace_lshift (c member)": [[63, "c.PyNumberMethods.nb_inplace_lshift", false]], "pynumbermethods.nb_inplace_matrix_multiply (c member)": [[63, "c.PyNumberMethods.nb_inplace_matrix_multiply", false]], "pynumbermethods.nb_inplace_multiply (c member)": [[63, "c.PyNumberMethods.nb_inplace_multiply", false]], "pynumbermethods.nb_inplace_or (c member)": [[63, "c.PyNumberMethods.nb_inplace_or", false]], "pynumbermethods.nb_inplace_power (c member)": [[63, "c.PyNumberMethods.nb_inplace_power", false]], "pynumbermethods.nb_inplace_remainder (c member)": [[63, "c.PyNumberMethods.nb_inplace_remainder", false]], "pynumbermethods.nb_inplace_rshift (c member)": [[63, "c.PyNumberMethods.nb_inplace_rshift", false]], "pynumbermethods.nb_inplace_subtract (c member)": [[63, "c.PyNumberMethods.nb_inplace_subtract", false]], "pynumbermethods.nb_inplace_true_divide (c member)": [[63, "c.PyNumberMethods.nb_inplace_true_divide", false]], "pynumbermethods.nb_inplace_xor (c member)": [[63, "c.PyNumberMethods.nb_inplace_xor", false]], "pynumbermethods.nb_int (c member)": [[63, "c.PyNumberMethods.nb_int", false]], "pynumbermethods.nb_invert (c member)": [[63, "c.PyNumberMethods.nb_invert", false]], "pynumbermethods.nb_lshift (c member)": [[63, "c.PyNumberMethods.nb_lshift", false]], "pynumbermethods.nb_matrix_multiply (c member)": [[63, "c.PyNumberMethods.nb_matrix_multiply", false]], "pynumbermethods.nb_multiply (c member)": [[63, "c.PyNumberMethods.nb_multiply", false]], "pynumbermethods.nb_negative (c member)": [[63, "c.PyNumberMethods.nb_negative", false]], "pynumbermethods.nb_or (c member)": [[63, "c.PyNumberMethods.nb_or", false]], "pynumbermethods.nb_positive (c member)": [[63, "c.PyNumberMethods.nb_positive", false]], "pynumbermethods.nb_power (c member)": [[63, "c.PyNumberMethods.nb_power", false]], "pynumbermethods.nb_remainder (c member)": [[63, "c.PyNumberMethods.nb_remainder", false]], "pynumbermethods.nb_reserved (c member)": [[63, "c.PyNumberMethods.nb_reserved", false]], "pynumbermethods.nb_rshift (c member)": [[63, "c.PyNumberMethods.nb_rshift", false]], "pynumbermethods.nb_subtract (c member)": [[63, "c.PyNumberMethods.nb_subtract", false]], "pynumbermethods.nb_true_divide (c member)": [[63, "c.PyNumberMethods.nb_true_divide", false]], "pynumbermethods.nb_xor (c member)": [[63, "c.PyNumberMethods.nb_xor", false]], "pyobject (c type)": [[58, "c.PyObject", false]], "pyobject._ob_next (c member)": [[63, "c.PyObject._ob_next", false]], "pyobject._ob_prev (c member)": [[63, "c.PyObject._ob_prev", false]], "pyobject.ob_refcnt (c member)": [[63, "c.PyObject.ob_refcnt", false]], "pyobject.ob_type (c member)": [[63, "c.PyObject.ob_type", false]], "pyobject_ascharbuffer (c function)": [[48, "c.PyObject_AsCharBuffer", false]], "pyobject_ascii (c function)": [[49, "c.PyObject_ASCII", false]], "pyobject_asfiledescriptor (c function)": [[24, "c.PyObject_AsFileDescriptor", false]], "pyobject_asreadbuffer (c function)": [[48, "c.PyObject_AsReadBuffer", false]], "pyobject_aswritebuffer (c function)": [[48, "c.PyObject_AsWriteBuffer", false]], "pyobject_bytes (c function)": [[49, "c.PyObject_Bytes", false]], "pyobject_call (c function)": [[10, "c.PyObject_Call", false]], "pyobject_callfunction (c function)": [[10, "c.PyObject_CallFunction", false]], "pyobject_callfunctionobjargs (c function)": [[10, "c.PyObject_CallFunctionObjArgs", false]], "pyobject_callmethod (c function)": [[10, "c.PyObject_CallMethod", false]], "pyobject_callmethodnoargs (c function)": [[10, "c.PyObject_CallMethodNoArgs", false]], "pyobject_callmethodobjargs (c function)": [[10, "c.PyObject_CallMethodObjArgs", false]], "pyobject_callmethodonearg (c function)": [[10, "c.PyObject_CallMethodOneArg", false]], "pyobject_callnoargs (c function)": [[10, "c.PyObject_CallNoArgs", false]], "pyobject_callobject (c function)": [[10, "c.PyObject_CallObject", false]], "pyobject_callobject\uff08c \u51fd\u5f0f\uff09": [[73, "index-1", false]], "pyobject_calloc (c function)": [[42, "c.PyObject_Calloc", false]], "pyobject_callonearg (c function)": [[10, "c.PyObject_CallOneArg", false]], "pyobject_checkbuffer (c function)": [[7, "c.PyObject_CheckBuffer", false]], "pyobject_checkreadbuffer (c function)": [[48, "c.PyObject_CheckReadBuffer", false]], "pyobject_clearweakrefs (c function)": [[67, "c.PyObject_ClearWeakRefs", false]], "pyobject_copydata (c function)": [[7, "c.PyObject_CopyData", false]], "pyobject_del (c function)": [[3, "c.PyObject_Del", false]], "pyobject_delattr (c function)": [[49, "c.PyObject_DelAttr", false]], "pyobject_delattrstring (c function)": [[49, "c.PyObject_DelAttrString", false]], "pyobject_delitem (c function)": [[49, "c.PyObject_DelItem", false]], "pyobject_dir (c function)": [[49, "c.PyObject_Dir", false]], "pyobject_format (c function)": [[49, "c.PyObject_Format", false]], "pyobject_free (c function)": [[42, "c.PyObject_Free", false]], "pyobject_gc_del (c function)": [[28, "c.PyObject_GC_Del", false]], "pyobject_gc_isfinalized (c function)": [[28, "c.PyObject_GC_IsFinalized", false]], "pyobject_gc_istracked (c function)": [[28, "c.PyObject_GC_IsTracked", false]], "pyobject_gc_new (c macro)": [[28, "c.PyObject_GC_New", false]], "pyobject_gc_newvar (c macro)": [[28, "c.PyObject_GC_NewVar", false]], "pyobject_gc_resize (c macro)": [[28, "c.PyObject_GC_Resize", false]], "pyobject_gc_track (c function)": [[28, "c.PyObject_GC_Track", false]], "pyobject_gc_untrack (c function)": [[28, "c.PyObject_GC_UnTrack", false]], "pyobject_genericgetattr (c function)": [[49, "c.PyObject_GenericGetAttr", false]], "pyobject_genericgetdict (c function)": [[49, "c.PyObject_GenericGetDict", false]], "pyobject_genericsetattr (c function)": [[49, "c.PyObject_GenericSetAttr", false]], "pyobject_genericsetdict (c function)": [[49, "c.PyObject_GenericSetDict", false]], "pyobject_getaiter (c function)": [[49, "c.PyObject_GetAIter", false]], "pyobject_getarenaallocator (c function)": [[42, "c.PyObject_GetArenaAllocator", false]], "pyobject_getattr (c function)": [[49, "c.PyObject_GetAttr", false]], "pyobject_getattrstring (c function)": [[49, "c.PyObject_GetAttrString", false]], "pyobject_getbuffer (c function)": [[7, "c.PyObject_GetBuffer", false]], "pyobject_getitem (c function)": [[49, "c.PyObject_GetItem", false]], "pyobject_getitemdata (c function)": [[49, "c.PyObject_GetItemData", false]], "pyobject_getiter (c function)": [[49, "c.PyObject_GetIter", false]], "pyobject_gettypedata (c function)": [[49, "c.PyObject_GetTypeData", false]], "pyobject_hasattr (c function)": [[49, "c.PyObject_HasAttr", false]], "pyobject_hasattrstring (c function)": [[49, "c.PyObject_HasAttrString", false]], "pyobject_hash (c function)": [[49, "c.PyObject_Hash", false]], "pyobject_hashnotimplemented (c function)": [[49, "c.PyObject_HashNotImplemented", false]], "pyobject_head (c macro)": [[58, "c.PyObject_HEAD", false]], "pyobject_head_init (c macro)": [[58, "c.PyObject_HEAD_INIT", false]], "pyobject_init (c function)": [[3, "c.PyObject_Init", false]], "pyobject_initvar (c function)": [[3, "c.PyObject_InitVar", false]], "pyobject_is_gc (c function)": [[28, "c.PyObject_IS_GC", false]], "pyobject_isinstance (c function)": [[49, "c.PyObject_IsInstance", false]], "pyobject_issubclass (c function)": [[49, "c.PyObject_IsSubclass", false]], "pyobject_istrue (c function)": [[49, "c.PyObject_IsTrue", false]], "pyobject_length (c function)": [[49, "c.PyObject_Length", false]], "pyobject_lengthhint (c function)": [[49, "c.PyObject_LengthHint", false]], "pyobject_malloc (c function)": [[42, "c.PyObject_Malloc", false]], "pyobject_new (c macro)": [[3, "c.PyObject_New", false]], "pyobject_newvar (c macro)": [[3, "c.PyObject_NewVar", false]], "pyobject_not (c function)": [[49, "c.PyObject_Not", false]], "pyobject_print (c function)": [[49, "c.PyObject_Print", false]], "pyobject_realloc (c function)": [[42, "c.PyObject_Realloc", false]], "pyobject_repr (c function)": [[49, "c.PyObject_Repr", false]], "pyobject_richcompare (c function)": [[49, "c.PyObject_RichCompare", false]], "pyobject_richcomparebool (c function)": [[49, "c.PyObject_RichCompareBool", false]], "pyobject_setarenaallocator (c function)": [[42, "c.PyObject_SetArenaAllocator", false]], "pyobject_setattr (c function)": [[49, "c.PyObject_SetAttr", false]], "pyobject_setattrstring (c function)": [[49, "c.PyObject_SetAttrString", false]], "pyobject_setitem (c function)": [[49, "c.PyObject_SetItem", false]], "pyobject_size (c function)": [[49, "c.PyObject_Size", false]], "pyobject_str (c function)": [[49, "c.PyObject_Str", false]], "pyobject_str\uff08c \u51fd\u5f0f\uff09": [[49, "index-2", false]], "pyobject_type (c function)": [[49, "c.PyObject_Type", false]], "pyobject_typecheck (c function)": [[49, "c.PyObject_TypeCheck", false]], "pyobject_var_head (c macro)": [[58, "c.PyObject_VAR_HEAD", false]], "pyobject_vectorcall (c function)": [[10, "c.PyObject_Vectorcall", false]], "pyobject_vectorcalldict (c function)": [[10, "c.PyObject_VectorcallDict", false]], "pyobject_vectorcallmethod (c function)": [[10, "c.PyObject_VectorcallMethod", false]], "pyobjectarenaallocator (c type)": [[42, "c.PyObjectArenaAllocator", false]], "pyos_afterfork (c function)": [[59, "c.PyOS_AfterFork", false]], "pyos_afterfork_child (c function)": [[59, "c.PyOS_AfterFork_Child", false]], "pyos_afterfork_parent (c function)": [[59, "c.PyOS_AfterFork_Parent", false]], "pyos_beforefork (c function)": [[59, "c.PyOS_BeforeFork", false]], "pyos_checkstack (c function)": [[59, "c.PyOS_CheckStack", false]], "pyos_double_to_string (c function)": [[18, "c.PyOS_double_to_string", false]], "pyos_fspath (c function)": [[59, "c.PyOS_FSPath", false]], "pyos_getsig (c function)": [[59, "c.PyOS_getsig", false]], "pyos_inputhook (c var)": [[66, "c.PyOS_InputHook", false]], "pyos_readlinefunctionpointer (c var)": [[66, "c.PyOS_ReadlineFunctionPointer", false]], "pyos_setsig (c function)": [[59, "c.PyOS_setsig", false]], "pyos_sighandler_t (c type)": [[59, "c.PyOS_sighandler_t", false]], "pyos_snprintf (c function)": [[18, "c.PyOS_snprintf", false]], "pyos_stricmp (c function)": [[18, "c.PyOS_stricmp", false]], "pyos_string_to_double (c function)": [[18, "c.PyOS_string_to_double", false]], "pyos_strnicmp (c function)": [[18, "c.PyOS_strnicmp", false]], "pyos_strtol (c function)": [[18, "c.PyOS_strtol", false]], "pyos_strtoul (c function)": [[18, "c.PyOS_strtoul", false]], "pyos_vsnprintf (c function)": [[18, "c.PyOS_vsnprintf", false]], "pypreconfig (c type)": [[34, "c.PyPreConfig", false]], "pypreconfig.allocator (c member)": [[34, "c.PyPreConfig.allocator", false]], "pypreconfig.coerce_c_locale (c member)": [[34, "c.PyPreConfig.coerce_c_locale", false]], "pypreconfig.coerce_c_locale_warn (c member)": [[34, "c.PyPreConfig.coerce_c_locale_warn", false]], "pypreconfig.configure_locale (c member)": [[34, "c.PyPreConfig.configure_locale", false]], "pypreconfig.dev_mode (c member)": [[34, "c.PyPreConfig.dev_mode", false]], "pypreconfig.isolated (c member)": [[34, "c.PyPreConfig.isolated", false]], "pypreconfig.legacy_windows_fs_encoding (c member)": [[34, "c.PyPreConfig.legacy_windows_fs_encoding", false]], "pypreconfig.parse_argv (c member)": [[34, "c.PyPreConfig.parse_argv", false]], "pypreconfig.use_environment (c member)": [[34, "c.PyPreConfig.use_environment", false]], "pypreconfig.utf8_mode (c member)": [[34, "c.PyPreConfig.utf8_mode", false]], "pypreconfig_initisolatedconfig (c function)": [[34, "c.PyPreConfig_InitIsolatedConfig", false]], "pypreconfig_initpythonconfig (c function)": [[34, "c.PyPreConfig_InitPythonConfig", false]], "pyproperty_type (c var)": [[21, "c.PyProperty_Type", false]], "pyrun_anyfile (c function)": [[66, "c.PyRun_AnyFile", false]], "pyrun_anyfileex (c function)": [[66, "c.PyRun_AnyFileEx", false]], "pyrun_anyfileexflags (c function)": [[66, "c.PyRun_AnyFileExFlags", false]], "pyrun_anyfileflags (c function)": [[66, "c.PyRun_AnyFileFlags", false]], "pyrun_file (c function)": [[66, "c.PyRun_File", false]], "pyrun_fileex (c function)": [[66, "c.PyRun_FileEx", false]], "pyrun_fileexflags (c function)": [[66, "c.PyRun_FileExFlags", false]], "pyrun_fileflags (c function)": [[66, "c.PyRun_FileFlags", false]], "pyrun_interactiveloop (c function)": [[66, "c.PyRun_InteractiveLoop", false]], "pyrun_interactiveloopflags (c function)": [[66, "c.PyRun_InteractiveLoopFlags", false]], "pyrun_interactiveone (c function)": [[66, "c.PyRun_InteractiveOne", false]], "pyrun_interactiveoneflags (c function)": [[66, "c.PyRun_InteractiveOneFlags", false]], "pyrun_simplefile (c function)": [[66, "c.PyRun_SimpleFile", false]], "pyrun_simplefileex (c function)": [[66, "c.PyRun_SimpleFileEx", false]], "pyrun_simplefileexflags (c function)": [[66, "c.PyRun_SimpleFileExFlags", false]], "pyrun_simplestring (c function)": [[66, "c.PyRun_SimpleString", false]], "pyrun_simplestringflags (c function)": [[66, "c.PyRun_SimpleStringFlags", false]], "pyrun_string (c function)": [[66, "c.PyRun_String", false]], "pyrun_stringflags (c function)": [[66, "c.PyRun_StringFlags", false]], "pysendresult (c type)": [[36, "c.PySendResult", false]], "pyseqiter_check (c function)": [[37, "c.PySeqIter_Check", false]], "pyseqiter_new (c function)": [[37, "c.PySeqIter_New", false]], "pyseqiter_type (c var)": [[37, "c.PySeqIter_Type", false]], "pysequence_check (c function)": [[54, "c.PySequence_Check", false]], "pysequence_concat (c function)": [[54, "c.PySequence_Concat", false]], "pysequence_contains (c function)": [[54, "c.PySequence_Contains", false]], "pysequence_count (c function)": [[54, "c.PySequence_Count", false]], "pysequence_delitem (c function)": [[54, "c.PySequence_DelItem", false]], "pysequence_delslice (c function)": [[54, "c.PySequence_DelSlice", false]], "pysequence_fast (c function)": [[54, "c.PySequence_Fast", false]], "pysequence_fast_get_item (c function)": [[54, "c.PySequence_Fast_GET_ITEM", false]], "pysequence_fast_get_size (c function)": [[54, "c.PySequence_Fast_GET_SIZE", false]], "pysequence_fast_items (c function)": [[54, "c.PySequence_Fast_ITEMS", false]], "pysequence_getitem (c function)": [[54, "c.PySequence_GetItem", false]], "pysequence_getitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-7", false]], "pysequence_getslice (c function)": [[54, "c.PySequence_GetSlice", false]], "pysequence_index (c function)": [[54, "c.PySequence_Index", false]], "pysequence_inplaceconcat (c function)": [[54, "c.PySequence_InPlaceConcat", false]], "pysequence_inplacerepeat (c function)": [[54, "c.PySequence_InPlaceRepeat", false]], "pysequence_item (c function)": [[54, "c.PySequence_ITEM", false]], "pysequence_length (c function)": [[54, "c.PySequence_Length", false]], "pysequence_list (c function)": [[54, "c.PySequence_List", false]], "pysequence_repeat (c function)": [[54, "c.PySequence_Repeat", false]], "pysequence_setitem (c function)": [[54, "c.PySequence_SetItem", false]], "pysequence_setslice (c function)": [[54, "c.PySequence_SetSlice", false]], "pysequence_size (c function)": [[54, "c.PySequence_Size", false]], "pysequence_tuple (c function)": [[54, "c.PySequence_Tuple", false]], "pysequencemethods (c type)": [[63, "c.PySequenceMethods", false]], "pysequencemethods.sq_ass_item (c member)": [[63, "c.PySequenceMethods.sq_ass_item", false]], "pysequencemethods.sq_concat (c member)": [[63, "c.PySequenceMethods.sq_concat", false]], "pysequencemethods.sq_contains (c member)": [[63, "c.PySequenceMethods.sq_contains", false]], "pysequencemethods.sq_inplace_concat (c member)": [[63, "c.PySequenceMethods.sq_inplace_concat", false]], "pysequencemethods.sq_inplace_repeat (c member)": [[63, "c.PySequenceMethods.sq_inplace_repeat", false]], "pysequencemethods.sq_item (c member)": [[63, "c.PySequenceMethods.sq_item", false]], "pysequencemethods.sq_length (c member)": [[63, "c.PySequenceMethods.sq_length", false]], "pysequencemethods.sq_repeat (c member)": [[63, "c.PySequenceMethods.sq_repeat", false]], "pyset_add (c function)": [[55, "c.PySet_Add", false]], "pyset_check (c function)": [[55, "c.PySet_Check", false]], "pyset_checkexact (c function)": [[55, "c.PySet_CheckExact", false]], "pyset_clear (c function)": [[55, "c.PySet_Clear", false]], "pyset_contains (c function)": [[55, "c.PySet_Contains", false]], "pyset_discard (c function)": [[55, "c.PySet_Discard", false]], "pyset_get_size (c function)": [[55, "c.PySet_GET_SIZE", false]], "pyset_new (c function)": [[55, "c.PySet_New", false]], "pyset_pop (c function)": [[55, "c.PySet_Pop", false]], "pyset_size (c function)": [[55, "c.PySet_Size", false]], "pyset_type (c var)": [[55, "c.PySet_Type", false]], "pysetobject (c type)": [[55, "c.PySetObject", false]], "pysignal_setwakeupfd (c function)": [[23, "c.PySignal_SetWakeupFd", false]], "pyslice_adjustindices (c function)": [[56, "c.PySlice_AdjustIndices", false]], "pyslice_check (c function)": [[56, "c.PySlice_Check", false]], "pyslice_getindices (c function)": [[56, "c.PySlice_GetIndices", false]], "pyslice_getindicesex (c function)": [[56, "c.PySlice_GetIndicesEx", false]], "pyslice_new (c function)": [[56, "c.PySlice_New", false]], "pyslice_type (c var)": [[56, "c.PySlice_Type", false]], "pyslice_unpack (c function)": [[56, "c.PySlice_Unpack", false]], "pystate_addmodule (c function)": [[45, "c.PyState_AddModule", false]], "pystate_findmodule (c function)": [[45, "c.PyState_FindModule", false]], "pystate_removemodule (c function)": [[45, "c.PyState_RemoveModule", false]], "pystatus (c type)": [[34, "c.PyStatus", false]], "pystatus.err_msg (c member)": [[34, "c.PyStatus.err_msg", false]], "pystatus.exitcode (c member)": [[34, "c.PyStatus.exitcode", false]], "pystatus.func (c member)": [[34, "c.PyStatus.func", false]], "pystatus_error (c function)": [[34, "c.PyStatus_Error", false]], "pystatus_exception (c function)": [[34, "c.PyStatus_Exception", false]], "pystatus_exit (c function)": [[34, "c.PyStatus_Exit", false]], "pystatus_iserror (c function)": [[34, "c.PyStatus_IsError", false]], "pystatus_isexit (c function)": [[34, "c.PyStatus_IsExit", false]], "pystatus_nomemory (c function)": [[34, "c.PyStatus_NoMemory", false]], "pystatus_ok (c function)": [[34, "c.PyStatus_Ok", false]], "pystructsequence_desc (c type)": [[60, "c.PyStructSequence_Desc", false]], "pystructsequence_desc.doc (c member)": [[60, "c.PyStructSequence_Desc.doc", false]], "pystructsequence_desc.fields (c member)": [[60, "c.PyStructSequence_Desc.fields", false]], "pystructsequence_desc.n_in_sequence (c member)": [[60, "c.PyStructSequence_Desc.n_in_sequence", false]], "pystructsequence_desc.name (c member)": [[60, "c.PyStructSequence_Desc.name", false]], "pystructsequence_field (c type)": [[60, "c.PyStructSequence_Field", false]], "pystructsequence_field.doc (c member)": [[60, "c.PyStructSequence_Field.doc", false]], "pystructsequence_field.name (c member)": [[60, "c.PyStructSequence_Field.name", false]], "pystructsequence_get_item (c function)": [[60, "c.PyStructSequence_GET_ITEM", false]], "pystructsequence_getitem (c function)": [[60, "c.PyStructSequence_GetItem", false]], "pystructsequence_inittype (c function)": [[60, "c.PyStructSequence_InitType", false]], "pystructsequence_inittype2 (c function)": [[60, "c.PyStructSequence_InitType2", false]], "pystructsequence_new (c function)": [[60, "c.PyStructSequence_New", false]], "pystructsequence_newtype (c function)": [[60, "c.PyStructSequence_NewType", false]], "pystructsequence_set_item (c function)": [[60, "c.PyStructSequence_SET_ITEM", false]], "pystructsequence_setitem (c function)": [[60, "c.PyStructSequence_SetItem", false]], "pystructsequence_unnamedfield (c var)": [[60, "c.PyStructSequence_UnnamedField", false]], "pysys_addaudithook (c function)": [[59, "c.PySys_AddAuditHook", false]], "pysys_addwarnoption (c function)": [[59, "c.PySys_AddWarnOption", false]], "pysys_addwarnoptionunicode (c function)": [[59, "c.PySys_AddWarnOptionUnicode", false]], "pysys_addxoption (c function)": [[59, "c.PySys_AddXOption", false]], "pysys_audit (c function)": [[59, "c.PySys_Audit", false]], "pysys_formatstderr (c function)": [[59, "c.PySys_FormatStderr", false]], "pysys_formatstdout (c function)": [[59, "c.PySys_FormatStdout", false]], "pysys_getobject (c function)": [[59, "c.PySys_GetObject", false]], "pysys_getxoptions (c function)": [[59, "c.PySys_GetXOptions", false]], "pysys_resetwarnoptions (c function)": [[59, "c.PySys_ResetWarnOptions", false]], "pysys_setargv (c function)": [[33, "c.PySys_SetArgv", false]], "pysys_setargvex (c function)": [[33, "c.PySys_SetArgvEx", false]], "pysys_setargvex\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false]], "pysys_setargv\uff08c \u51fd\u5f0f\uff09": [[33, "index-15", false]], "pysys_setobject (c function)": [[59, "c.PySys_SetObject", false]], "pysys_setpath (c function)": [[59, "c.PySys_SetPath", false]], "pysys_writestderr (c function)": [[59, "c.PySys_WriteStderr", false]], "pysys_writestdout (c function)": [[59, "c.PySys_WriteStdout", false]], "python 3000": [[87, "term-Python-3000", true]], "python editor\uff08python \u7de8\u8f2f\u5668\uff09": [[247, "index-0", false]], "python enhancement proposals": [[10, "index-2", false], [23, "index-9", false], [26, "index-0", false], [30, "index-2", false], [31, "index-3", false], [33, "index-39", false], [33, "index-40", false], [33, "index-41", false], [33, "index-47", false], [33, "index-48", false], [33, "index-69", false], [33, "index-70", false], [34, "index-0", false], [34, "index-17", false], [34, "index-33", false], [34, "index-34", false], [34, "index-37", false], [34, "index-38", false], [34, "index-7", false], [35, "index-37", false], [35, "index-38", false], [35, "index-39", false], [35, "index-40", false], [45, "index-10", false], [45, "index-7", false], [45, "index-8", false], [49, "index-4", false], [49, "index-5", false], [57, "index-3", false], [59, "index-1", false], [63, "index-3", false], [63, "index-4", false], [63, "index-5", false], [64, "index-0", false], [64, "index-1", false], [64, "index-2", false], [64, "index-3", false], [64, "index-4", false], [64, "index-5", false], [66, "index-3", false], [68, "index-23", false], [68, "index-4", false], [71, "index-1", false], [73, "index-0", false], [75, "index-2", false], [78, "index-2", false], [80, "index-0", false], [80, "index-5", false], [80, "index-6", false], [85, "index-2", false], [85, "index-3", false], [85, "index-7", false], [86, "index-2", false], [87, "index-100", false], [87, "index-101", false], [87, "index-102", false], [87, "index-103", false], [87, "index-71", false], [87, "index-72", false], [87, "index-73", false], [87, "index-74", false], [87, "index-75", false], [87, "index-76", false], [87, "index-77", false], [87, "index-78", false], [87, "index-79", false], [87, "index-80", false], [87, "index-81", false], [87, "index-82", false], [87, "index-83", false], [87, "index-84", false], [87, "index-85", false], [87, "index-86", false], [87, "index-87", false], [87, "index-88", false], [87, "index-89", false], [87, "index-90", false], [87, "index-91", false], [87, "index-92", false], [87, "index-93", false], [87, "index-94", false], [87, "index-95", false], [87, "index-96", false], [87, "index-97", false], [87, "index-98", false], [87, "index-99", false], [88, "index-2", false], [95, "index-0", false], [95, "index-2", false], [95, "index-4", false], [105, "index-0", false], [108, "index-0", false], [109, "index-0", false], [112, "index-0", false], [112, "index-1", false], [113, "index-24", false], [113, "index-25", false], [113, "index-26", false], [113, "index-27", false], [113, "index-28", false], [113, "index-29", false], [113, "index-30", false], [113, "index-31", false], [113, "index-32", false], [113, "index-33", false], [113, "index-34", false], [113, "index-35", false], [116, "index-4", false], [116, "index-5", false], [117, "index-4", false], [122, "index-14", false], [122, "index-15", false], [122, "index-16", false], [122, "index-17", false], [122, "index-18", false], [122, "index-19", false], [126, "index-12", false], [126, "index-13", false], [126, "index-14", false], [129, "index-2", false], [141, "index-3", false], [142, "index-3", false], [151, "index-8", false], [152, "index-4", false], [153, "index-3", false], [154, "index-3", false], [158, "index-2", false], [158, "index-5", false], [160, "index-10", false], [160, "index-11", false], [160, "index-8", false], [160, "index-9", false], [161, "index-0", false], [161, "index-1", false], [161, "index-2", false], [161, "index-3", false], [161, "index-4", false], [161, "index-7", false], [163, "index-0", false], [163, "index-2", false], [163, "index-3", false], [166, "index-2", false], [169, "index-2", false], [170, "index-2", false], [173, "index-1", false], [175, "index-7", false], [181, "index-0", false], [181, "index-1", false], [181, "index-2", false], [191, "index-0", false], [210, "index-2", false], [213, "index-10", false], [213, "index-11", false], [213, "index-12", false], [213, "index-14", false], [213, "index-6", false], [213, "index-7", false], [213, "index-8", false], [213, "index-9", false], [221, "index-0", false], [225, "index-10", false], [225, "index-14", false], [225, "index-15", false], [225, "index-20", false], [226, "index-0", false], [227, "index-2", false], [247, "index-7", false], [249, "index-2", false], [250, "index-0", false], [250, "index-1", false], [250, "index-10", false], [250, "index-11", false], [250, "index-12", false], [250, "index-13", false], [250, "index-14", false], [250, "index-16", false], [250, "index-17", false], [250, "index-18", false], [250, "index-19", false], [250, "index-2", false], [250, "index-20", false], [250, "index-21", false], [250, "index-22", false], [250, "index-23", false], [250, "index-24", false], [250, "index-25", false], [250, "index-26", false], [250, "index-3", false], [250, "index-4", false], [250, "index-5", false], [250, "index-6", false], [250, "index-7", false], [250, "index-8", false], [250, "index-9", false], [251, "index-0", false], [255, "index-0", false], [255, "index-1", false], [255, "index-2", false], [255, "index-3", false], [258, "index-1", false], [258, "index-8", false], [265, "index-1", false], [266, "index-6", false], [266, "index-7", false], [267, "index-1", false], [272, "index-0", false], [275, "index-2", false], [281, "index-3", false], [287, "index-2", false], [288, "index-12", false], [289, "index-2", false], [293, "index-22", false], [293, "index-24", false], [293, "index-25", false], [293, "index-27", false], [293, "index-44", false], [293, "index-5", false], [293, "index-53", false], [293, "index-55", false], [293, "index-6", false], [293, "index-7", false], [295, "index-4", false], [296, "index-3", false], [299, "index-2", false], [299, "index-3", false], [299, "index-4", false], [299, "index-8", false], [301, "index-2", false], [302, "index-0", false], [302, "index-10", false], [302, "index-11", false], [302, "index-2", false], [302, "index-3", false], [302, "index-5", false], [302, "index-6", false], [302, "index-7", false], [311, "index-1", false], [311, "index-2", false], [311, "index-4", false], [311, "index-5", false], [322, "index-0", false], [324, "index-1", false], [324, "index-2", false], [324, "index-3", false], [324, "index-5", false], [324, "index-6", false], [324, "index-7", false], [324, "index-8", false], [326, "index-0", false], [328, "index-0", false], [328, "index-3", false], [328, "index-4", false], [328, "index-5", false], [328, "index-6", false], [328, "index-7", false], [329, "index-0", false], [332, "index-2", false], [333, "index-0", false], [333, "index-1", false], [334, "index-9", false], [336, "index-3", false], [337, "index-1", false], [337, "index-10", false], [337, "index-11", false], [337, "index-12", false], [337, "index-13", false], [337, "index-2", false], [337, "index-4", false], [337, "index-5", false], [337, "index-7", false], [337, "index-8", false], [337, "index-9", false], [339, "index-2", false], [340, "index-0", false], [340, "index-10", false], [340, "index-11", false], [340, "index-12", false], [340, "index-14", false], [340, "index-2", false], [340, "index-3", false], [340, "index-4", false], [340, "index-5", false], [340, "index-8", false], [340, "index-9", false], [341, "index-31", false], [344, "index-49", false], [344, "index-50", false], [344, "index-57", false], [344, "index-58", false], [344, "index-60", false], [344, "index-71", false], [344, "index-72", false], [345, "index-1", false], [345, "index-19", false], [345, "index-20", false], [345, "index-21", false], [345, "index-22", false], [345, "index-23", false], [348, "index-0", false], [349, "index-2", false], [352, "index-0", false], [352, "index-13", false], [352, "index-14", false], [352, "index-15", false], [352, "index-16", false], [352, "index-19", false], [352, "index-20", false], [352, "index-25", false], [352, "index-26", false], [352, "index-30", false], [352, "index-31", false], [352, "index-32", false], [352, "index-42", false], [352, "index-43", false], [352, "index-44", false], [352, "index-9", false], [353, "index-0", false], [358, "index-0", false], [359, "index-5", false], [362, "index-3", false], [362, "index-4", false], [366, "index-8", false], [378, "index-0", false], [378, "index-1", false], [385, "index-0", false], [385, "index-1", false], [385, "index-2", false], [385, "index-3", false], [385, "index-5", false], [385, "index-6", false], [386, "index-10", false], [386, "index-100", false], [386, "index-101", false], [386, "index-102", false], [386, "index-103", false], [386, "index-104", false], [386, "index-105", false], [386, "index-106", false], [386, "index-11", false], [386, "index-12", false], [386, "index-15", false], [386, "index-16", false], [386, "index-17", false], [386, "index-18", false], [386, "index-19", false], [386, "index-20", false], [386, "index-21", false], [386, "index-22", false], [386, "index-23", false], [386, "index-24", false], [386, "index-25", false], [386, "index-26", false], [386, "index-27", false], [386, "index-28", false], [386, "index-29", false], [386, "index-31", false], [386, "index-32", false], [386, "index-35", false], [386, "index-36", false], [386, "index-37", false], [386, "index-38", false], [386, "index-39", false], [386, "index-40", false], [386, "index-41", false], [386, "index-42", false], [386, "index-43", false], [386, "index-44", false], [386, "index-45", false], [386, "index-46", false], [386, "index-47", false], [386, "index-48", false], [386, "index-49", false], [386, "index-50", false], [386, "index-51", false], [386, "index-52", false], [386, "index-53", false], [386, "index-54", false], [386, "index-55", false], [386, "index-56", false], [386, "index-57", false], [386, "index-58", false], [386, "index-59", false], [386, "index-60", false], [386, "index-61", false], [386, "index-62", false], [386, "index-63", false], [386, "index-64", false], [386, "index-65", false], [386, "index-66", false], [386, "index-67", false], [386, "index-68", false], [386, "index-69", false], [386, "index-71", false], [386, "index-72", false], [386, "index-73", false], [386, "index-74", false], [386, "index-75", false], [386, "index-76", false], [386, "index-9", false], [386, "index-92", false], [386, "index-93", false], [386, "index-94", false], [386, "index-95", false], [386, "index-96", false], [386, "index-97", false], [386, "index-98", false], [386, "index-99", false], [397, "index-3", false], [399, "index-9", false], [402, "index-6", false], [402, "index-7", false], [402, "index-8", false], [407, "index-38", false], [407, "index-39", false], [407, "index-40", false], [407, "index-41", false], [407, "index-42", false], [407, "index-44", false], [407, "index-45", false], [407, "index-46", false], [407, "index-47", false], [407, "index-49", false], [407, "index-50", false], [407, "index-51", false], [407, "index-52", false], [407, "index-53", false], [407, "index-54", false], [407, "index-55", false], [407, "index-56", false], [408, "index-7", false], [423, "index-0", false], [423, "index-1", false], [423, "index-2", false], [425, "index-0", false], [425, "index-1", false], [427, "index-17", false], [427, "index-19", false], [427, "index-20", false], [427, "index-24", false], [427, "index-25", false], [427, "index-26", false], [427, "index-30", false], [427, "index-33", false], [427, "index-36", false], [427, "index-37", false], [427, "index-38", false], [427, "index-39", false], [427, "index-40", false], [427, "index-41", false], [427, "index-44", false], [427, "index-45", false], [427, "index-46", false], [427, "index-47", false], [427, "index-52", false], [428, "index-107", false], [428, "index-108", false], [428, "index-109", false], [428, "index-111", false], [428, "index-115", false], [428, "index-62", false], [428, "index-85", false], [428, "index-87", false], [428, "index-90", false], [428, "index-93", false], [428, "index-94", false], [428, "index-95", false], [428, "index-96", false], [429, "index-11", false], [429, "index-12", false], [430, "index-14", false], [430, "index-19", false], [430, "index-21", false], [430, "index-26", false], [430, "index-27", false], [430, "index-28", false], [430, "index-29", false], [430, "index-30", false], [430, "index-51", false], [430, "index-79", false], [430, "index-87", false], [430, "index-89", false], [430, "index-94", false], [431, "index-0", false], [432, "index-1", false], [432, "index-11", false], [432, "index-12", false], [432, "index-13", false], [432, "index-14", false], [432, "index-15", false], [432, "index-19", false], [432, "index-2", false], [432, "index-20", false], [432, "index-21", false], [432, "index-22", false], [432, "index-23", false], [432, "index-24", false], [432, "index-25", false], [432, "index-26", false], [432, "index-27", false], [432, "index-6", false], [435, "index-1", false], [435, "index-11", false], [435, "index-12", false], [435, "index-21", false], [435, "index-26", false], [436, "index-13", false], [436, "index-16", false], [436, "index-17", false], [436, "index-41", false], [436, "index-42", false], [436, "index-46", false], [436, "index-48", false], [441, "index-15", false], [441, "index-16", false], [441, "index-17", false], [441, "index-18", false], [450, "index-16", false], [455, "index-0", false], [455, "index-10", false], [455, "index-16", false], [455, "index-39", false], [455, "index-40", false], [455, "index-53", false], [455, "index-54", false], [455, "index-58", false], [455, "index-59", false], [455, "index-7", false], [456, "index-0", false], [456, "index-1", false], [456, "index-35", false], [457, "index-0", false], [461, "index-0", false], [461, "index-16", false], [461, "index-17", false], [461, "index-19", false], [461, "index-21", false], [461, "index-38", false], [462, "index-0", false], [462, "index-1", false], [462, "index-2", false], [462, "index-3", false], [463, "index-0", false], [463, "index-1", false], [463, "index-10", false], [463, "index-12", false], [463, "index-13", false], [463, "index-14", false], [463, "index-15", false], [463, "index-16", false], [463, "index-17", false], [463, "index-2", false], [463, "index-3", false], [463, "index-4", false], [463, "index-5", false], [463, "index-6", false], [463, "index-7", false], [463, "index-8", false], [463, "index-9", false], [464, "index-0", false], [464, "index-1", false], [464, "index-10", false], [464, "index-11", false], [464, "index-12", false], [464, "index-13", false], [464, "index-14", false], [464, "index-16", false], [464, "index-2", false], [464, "index-22", false], [464, "index-25", false], [464, "index-26", false], [464, "index-3", false], [464, "index-4", false], [464, "index-5", false], [464, "index-6", false], [464, "index-8", false], [464, "index-9", false], [465, "index-0", false], [465, "index-1", false], [465, "index-10", false], [465, "index-11", false], [465, "index-12", false], [465, "index-13", false], [465, "index-14", false], [465, "index-15", false], [465, "index-16", false], [465, "index-17", false], [465, "index-18", false], [465, "index-19", false], [465, "index-2", false], [465, "index-20", false], [465, "index-21", false], [465, "index-22", false], [465, "index-23", false], [465, "index-3", false], [465, "index-4", false], [465, "index-5", false], [465, "index-6", false], [465, "index-7", false], [465, "index-9", false], [466, "index-0", false], [466, "index-1", false], [466, "index-10", false], [466, "index-11", false], [466, "index-12", false], [466, "index-13", false], [466, "index-14", false], [466, "index-15", false], [466, "index-16", false], [466, "index-17", false], [466, "index-2", false], [466, "index-3", false], [466, "index-4", false], [466, "index-5", false], [466, "index-6", false], [466, "index-8", false], [466, "index-9", false], [467, "index-0", false], [467, "index-1", false], [467, "index-10", false], [467, "index-11", false], [467, "index-12", false], [467, "index-13", false], [467, "index-14", false], [467, "index-15", false], [467, "index-16", false], [467, "index-17", false], [467, "index-18", false], [467, "index-19", false], [467, "index-2", false], [467, "index-21", false], [467, "index-24", false], [467, "index-25", false], [467, "index-26", false], [467, "index-27", false], [467, "index-28", false], [467, "index-29", false], [467, "index-3", false], [467, "index-30", false], [467, "index-31", false], [467, "index-4", false], [467, "index-5", false], [467, "index-6", false], [467, "index-7", false], [467, "index-8", false], [467, "index-9", false], [468, "index-0", false], [468, "index-1", false], [468, "index-10", false], [468, "index-11", false], [468, "index-12", false], [468, "index-14", false], [468, "index-15", false], [468, "index-16", false], [468, "index-17", false], [468, "index-18", false], [468, "index-19", false], [468, "index-2", false], [468, "index-25", false], [468, "index-3", false], [468, "index-7", false], [468, "index-8", false], [468, "index-9", false], [469, "index-0", false], [469, "index-13", false], [469, "index-14", false], [469, "index-15", false], [469, "index-16", false], [469, "index-17", false], [469, "index-18", false], [469, "index-19", false], [469, "index-2", false], [469, "index-20", false], [469, "index-21", false], [469, "index-22", false], [469, "index-23", false], [469, "index-3", false], [469, "index-4", false], [469, "index-5", false], [469, "index-6", false], [469, "index-7", false], [470, "index-0", false], [470, "index-1", false], [470, "index-10", false], [470, "index-11", false], [470, "index-12", false], [470, "index-13", false], [470, "index-14", false], [470, "index-15", false], [470, "index-16", false], [470, "index-17", false], [470, "index-18", false], [470, "index-19", false], [470, "index-2", false], [470, "index-20", false], [470, "index-22", false], [470, "index-23", false], [470, "index-24", false], [470, "index-25", false], [470, "index-26", false], [470, "index-27", false], [470, "index-28", false], [470, "index-29", false], [470, "index-3", false], [470, "index-30", false], [470, "index-31", false], [470, "index-32", false], [470, "index-34", false], [470, "index-35", false], [470, "index-38", false], [470, "index-39", false], [470, "index-4", false], [470, "index-5", false], [470, "index-6", false], [470, "index-7", false], [470, "index-8", false], [470, "index-9", false], [471, "index-1", false], [471, "index-2", false], [471, "index-3", false], [471, "index-4", false], [471, "index-6", false], [472, "index-100", false], [472, "index-101", false], [472, "index-102", false], [472, "index-103", false], [472, "index-104", false], [472, "index-105", false], [472, "index-106", false], [472, "index-107", false], [472, "index-108", false], [472, "index-109", false], [472, "index-110", false], [472, "index-111", false], [472, "index-112", false], [472, "index-113", false], [472, "index-114", false], [472, "index-115", false], [472, "index-116", false], [472, "index-117", false], [472, "index-118", false], [472, "index-40", false], [472, "index-80", false], [472, "index-81", false], [472, "index-82", false], [472, "index-83", false], [472, "index-84", false], [472, "index-85", false], [472, "index-86", false], [472, "index-87", false], [472, "index-88", false], [472, "index-89", false], [472, "index-90", false], [472, "index-91", false], [472, "index-92", false], [472, "index-93", false], [472, "index-94", false], [472, "index-95", false], [472, "index-96", false], [472, "index-97", false], [472, "index-99", false], [473, "index-100", false], [473, "index-101", false], [473, "index-102", false], [473, "index-104", false], [473, "index-105", false], [473, "index-106", false], [473, "index-107", false], [473, "index-108", false], [473, "index-109", false], [473, "index-110", false], [473, "index-111", false], [473, "index-112", false], [473, "index-113", false], [473, "index-114", false], [473, "index-115", false], [473, "index-116", false], [473, "index-117", false], [473, "index-118", false], [473, "index-119", false], [473, "index-120", false], [473, "index-121", false], [473, "index-41", false], [473, "index-82", false], [473, "index-84", false], [473, "index-85", false], [473, "index-86", false], [473, "index-87", false], [473, "index-89", false], [473, "index-90", false], [473, "index-91", false], [473, "index-92", false], [473, "index-93", false], [473, "index-94", false], [473, "index-95", false], [473, "index-96", false], [473, "index-97", false], [473, "index-98", false], [473, "index-99", false], [474, "index-1", false], [474, "index-10", false], [474, "index-11", false], [474, "index-12", false], [474, "index-13", false], [474, "index-15", false], [474, "index-16", false], [474, "index-17", false], [474, "index-2", false], [474, "index-20", false], [474, "index-21", false], [474, "index-22", false], [474, "index-24", false], [474, "index-25", false], [474, "index-26", false], [474, "index-27", false], [474, "index-28", false], [474, "index-29", false], [474, "index-3", false], [474, "index-30", false], [474, "index-31", false], [474, "index-32", false], [474, "index-33", false], [474, "index-34", false], [474, "index-35", false], [474, "index-36", false], [474, "index-37", false], [474, "index-38", false], [474, "index-39", false], [474, "index-4", false], [474, "index-40", false], [474, "index-41", false], [474, "index-42", false], [474, "index-43", false], [474, "index-44", false], [474, "index-45", false], [474, "index-46", false], [474, "index-48", false], [474, "index-56", false], [474, "index-57", false], [474, "index-58", false], [474, "index-59", false], [474, "index-6", false], [474, "index-60", false], [474, "index-61", false], [474, "index-8", false], [474, "index-9", false], [475, "index-0", false], [475, "index-1", false], [475, "index-14", false], [475, "index-2", false], [475, "index-3", false], [475, "index-4", false], [475, "index-5", false], [475, "index-6", false], [475, "index-9", false], [476, "index-10", false], [476, "index-12", false], [476, "index-13", false], [476, "index-14", false], [476, "index-15", false], [476, "index-18", false], [476, "index-2", false], [476, "index-20", false], [476, "index-21", false], [476, "index-22", false], [476, "index-29", false], [476, "index-3", false], [476, "index-30", false], [476, "index-32", false], [476, "index-33", false], [476, "index-36", false], [476, "index-37", false], [476, "index-38", false], [476, "index-4", false], [476, "index-51", false], [476, "index-52", false], [476, "index-53", false], [476, "index-54", false], [476, "index-55", false], [476, "index-56", false], [476, "index-57", false], [476, "index-58", false], [476, "index-59", false], [476, "index-6", false], [476, "index-60", false], [476, "index-61", false], [476, "index-62", false], [476, "index-8", false], [477, "index-0", false], [477, "index-1", false], [477, "index-10", false], [477, "index-11", false], [477, "index-12", false], [477, "index-13", false], [477, "index-14", false], [477, "index-15", false], [477, "index-16", false], [477, "index-17", false], [477, "index-18", false], [477, "index-19", false], [477, "index-2", false], [477, "index-20", false], [477, "index-21", false], [477, "index-22", false], [477, "index-23", false], [477, "index-24", false], [477, "index-25", false], [477, "index-26", false], [477, "index-27", false], [477, "index-28", false], [477, "index-29", false], [477, "index-3", false], [477, "index-30", false], [477, "index-31", false], [477, "index-32", false], [477, "index-33", false], [477, "index-34", false], [477, "index-35", false], [477, "index-36", false], [477, "index-37", false], [477, "index-38", false], [477, "index-39", false], [477, "index-4", false], [477, "index-42", false], [477, "index-43", false], [477, "index-44", false], [477, "index-45", false], [477, "index-46", false], [477, "index-47", false], [477, "index-48", false], [477, "index-49", false], [477, "index-5", false], [477, "index-51", false], [477, "index-52", false], [477, "index-6", false], [477, "index-7", false], [477, "index-8", false], [477, "index-9", false], [478, "index-0", false], [478, "index-1", false], [478, "index-10", false], [478, "index-11", false], [478, "index-12", false], [478, "index-13", false], [478, "index-14", false], [478, "index-15", false], [478, "index-16", false], [478, "index-17", false], [478, "index-18", false], [478, "index-19", false], [478, "index-2", false], [478, "index-20", false], [478, "index-21", false], [478, "index-22", false], [478, "index-23", false], [478, "index-24", false], [478, "index-25", false], [478, "index-26", false], [478, "index-27", false], [478, "index-28", false], [478, "index-29", false], [478, "index-3", false], [478, "index-30", false], [478, "index-4", false], [478, "index-45", false], [478, "index-46", false], [478, "index-47", false], [478, "index-48", false], [478, "index-49", false], [478, "index-5", false], [478, "index-50", false], [478, "index-52", false], [478, "index-6", false], [478, "index-7", false], [478, "index-8", false], [478, "index-9", false], [479, "index-0", false], [479, "index-1", false], [479, "index-10", false], [479, "index-11", false], [479, "index-12", false], [479, "index-13", false], [479, "index-14", false], [479, "index-15", false], [479, "index-16", false], [479, "index-17", false], [479, "index-18", false], [479, "index-20", false], [479, "index-22", false], [479, "index-23", false], [479, "index-24", false], [479, "index-25", false], [479, "index-26", false], [479, "index-28", false], [479, "index-29", false], [479, "index-3", false], [479, "index-30", false], [479, "index-31", false], [479, "index-32", false], [479, "index-33", false], [479, "index-34", false], [479, "index-35", false], [479, "index-36", false], [479, "index-37", false], [479, "index-4", false], [479, "index-5", false], [479, "index-6", false], [479, "index-7", false], [479, "index-8", false], [479, "index-9", false], [480, "index-0", false], [480, "index-1", false], [480, "index-10", false], [480, "index-11", false], [480, "index-13", false], [480, "index-14", false], [480, "index-15", false], [480, "index-17", false], [480, "index-18", false], [480, "index-19", false], [480, "index-2", false], [480, "index-20", false], [480, "index-21", false], [480, "index-22", false], [480, "index-23", false], [480, "index-24", false], [480, "index-28", false], [480, "index-29", false], [480, "index-3", false], [480, "index-30", false], [480, "index-32", false], [480, "index-33", false], [480, "index-37", false], [480, "index-38", false], [480, "index-41", false], [480, "index-42", false], [480, "index-5", false], [480, "index-6", false], [480, "index-7", false], [480, "index-9", false], [481, "index-10", false], [481, "index-11", false], [481, "index-12", false], [481, "index-15", false], [481, "index-16", false], [481, "index-17", false], [481, "index-18", false], [481, "index-19", false], [481, "index-23", false], [481, "index-24", false], [481, "index-26", false], [481, "index-33", false], [481, "index-34", false], [481, "index-35", false], [481, "index-36", false], [481, "index-37", false], [481, "index-38", false], [481, "index-5", false], [481, "index-8", false], [482, "index-0", false], [482, "index-1", false], [482, "index-10", false], [482, "index-11", false], [482, "index-12", false], [482, "index-13", false], [482, "index-14", false], [482, "index-15", false], [482, "index-16", false], [482, "index-17", false], [482, "index-18", false], [482, "index-19", false], [482, "index-2", false], [482, "index-20", false], [482, "index-23", false], [482, "index-24", false], [482, "index-25", false], [482, "index-26", false], [482, "index-27", false], [482, "index-29", false], [482, "index-3", false], [482, "index-4", false], [482, "index-5", false], [482, "index-6", false], [482, "index-7", false], [482, "index-8", false], [482, "index-9", false], [483, "index-0", false], [483, "index-10", false], [483, "index-100", false], [483, "index-101", false], [483, "index-102", false], [483, "index-103", false], [483, "index-104", false], [483, "index-105", false], [483, "index-106", false], [483, "index-107", false], [483, "index-109", false], [483, "index-11", false], [483, "index-110", false], [483, "index-111", false], [483, "index-112", false], [483, "index-113", false], [483, "index-114", false], [483, "index-115", false], [483, "index-116", false], [483, "index-117", false], [483, "index-118", false], [483, "index-119", false], [483, "index-12", false], [483, "index-120", false], [483, "index-121", false], [483, "index-122", false], [483, "index-123", false], [483, "index-124", false], [483, "index-125", false], [483, "index-126", false], [483, "index-127", false], [483, "index-128", false], [483, "index-129", false], [483, "index-13", false], [483, "index-130", false], [483, "index-131", false], [483, "index-132", false], [483, "index-133", false], [483, "index-134", false], [483, "index-135", false], [483, "index-136", false], [483, "index-137", false], [483, "index-139", false], [483, "index-14", false], [483, "index-140", false], [483, "index-141", false], [483, "index-142", false], [483, "index-143", false], [483, "index-144", false], [483, "index-145", false], [483, "index-146", false], [483, "index-147", false], [483, "index-148", false], [483, "index-149", false], [483, "index-15", false], [483, "index-150", false], [483, "index-151", false], [483, "index-152", false], [483, "index-153", false], [483, "index-155", false], [483, "index-156", false], [483, "index-157", false], [483, "index-158", false], [483, "index-159", false], [483, "index-16", false], [483, "index-160", false], [483, "index-161", false], [483, "index-162", false], [483, "index-163", false], [483, "index-164", false], [483, "index-165", false], [483, "index-166", false], [483, "index-167", false], [483, "index-168", false], [483, "index-169", false], [483, "index-17", false], [483, "index-170", false], [483, "index-171", false], [483, "index-172", false], [483, "index-173", false], [483, "index-174", false], [483, "index-175", false], [483, "index-176", false], [483, "index-177", false], [483, "index-179", false], [483, "index-18", false], [483, "index-180", false], [483, "index-181", false], [483, "index-182", false], [483, "index-183", false], [483, "index-184", false], [483, "index-185", false], [483, "index-186", false], [483, "index-187", false], [483, "index-188", false], [483, "index-189", false], [483, "index-19", false], [483, "index-190", false], [483, "index-191", false], [483, "index-192", false], [483, "index-194", false], [483, "index-195", false], [483, "index-196", false], [483, "index-197", false], [483, "index-198", false], [483, "index-199", false], [483, "index-20", false], [483, "index-200", false], [483, "index-204", false], [483, "index-206", false], [483, "index-207", false], [483, "index-208", false], [483, "index-21", false], [483, "index-210", false], [483, "index-211", false], [483, "index-212", false], [483, "index-215", false], [483, "index-217", false], [483, "index-22", false], [483, "index-221", false], [483, "index-222", false], [483, "index-223", false], [483, "index-224", false], [483, "index-225", false], [483, "index-226", false], [483, "index-229", false], [483, "index-23", false], [483, "index-230", false], [483, "index-231", false], [483, "index-234", false], [483, "index-235", false], [483, "index-236", false], [483, "index-239", false], [483, "index-24", false], [483, "index-240", false], [483, "index-241", false], [483, "index-242", false], [483, "index-243", false], [483, "index-244", false], [483, "index-245", false], [483, "index-247", false], [483, "index-248", false], [483, "index-249", false], [483, "index-25", false], [483, "index-250", false], [483, "index-251", false], [483, "index-252", false], [483, "index-253", false], [483, "index-254", false], [483, "index-255", false], [483, "index-256", false], [483, "index-259", false], [483, "index-26", false], [483, "index-260", false], [483, "index-261", false], [483, "index-262", false], [483, "index-263", false], [483, "index-264", false], [483, "index-265", false], [483, "index-266", false], [483, "index-267", false], [483, "index-268", false], [483, "index-269", false], [483, "index-27", false], [483, "index-270", false], [483, "index-271", false], [483, "index-272", false], [483, "index-273", false], [483, "index-274", false], [483, "index-275", false], [483, "index-276", false], [483, "index-277", false], [483, "index-278", false], [483, "index-279", false], [483, "index-28", false], [483, "index-280", false], [483, "index-281", false], [483, "index-282", false], [483, "index-283", false], [483, "index-284", false], [483, "index-285", false], [483, "index-286", false], [483, "index-289", false], [483, "index-29", false], [483, "index-290", false], [483, "index-291", false], [483, "index-292", false], [483, "index-293", false], [483, "index-294", false], [483, "index-295", false], [483, "index-296", false], [483, "index-297", false], [483, "index-298", false], [483, "index-299", false], [483, "index-3", false], [483, "index-30", false], [483, "index-300", false], [483, "index-301", false], [483, "index-302", false], [483, "index-303", false], [483, "index-304", false], [483, "index-305", false], [483, "index-306", false], [483, "index-31", false], [483, "index-32", false], [483, "index-33", false], [483, "index-34", false], [483, "index-38", false], [483, "index-39", false], [483, "index-4", false], [483, "index-40", false], [483, "index-41", false], [483, "index-43", false], [483, "index-44", false], [483, "index-46", false], [483, "index-47", false], [483, "index-48", false], [483, "index-49", false], [483, "index-5", false], [483, "index-50", false], [483, "index-53", false], [483, "index-54", false], [483, "index-57", false], [483, "index-58", false], [483, "index-59", false], [483, "index-6", false], [483, "index-60", false], [483, "index-61", false], [483, "index-62", false], [483, "index-63", false], [483, "index-64", false], [483, "index-66", false], [483, "index-67", false], [483, "index-68", false], [483, "index-69", false], [483, "index-7", false], [483, "index-70", false], [483, "index-71", false], [483, "index-72", false], [483, "index-73", false], [483, "index-74", false], [483, "index-75", false], [483, "index-76", false], [483, "index-78", false], [483, "index-79", false], [483, "index-8", false], [483, "index-81", false], [483, "index-82", false], [483, "index-83", false], [483, "index-84", false], [483, "index-85", false], [483, "index-87", false], [483, "index-89", false], [483, "index-9", false], [483, "index-90", false], [483, "index-91", false], [483, "index-93", false], [483, "index-96", false], [483, "index-97", false], [483, "index-98", false], [483, "index-99", false], [484, "index-23", false], [484, "index-4", false]], "python--m-py_compile \u547d\u4ee4\u5217\u9078\u9805": [[311, "cmdoption-python-m-py_compile", false], [311, "cmdoption-python-m-py_compile-arg-file", false], [311, "cmdoption-python-m-py_compile-q", false]], "python--m-sqlite3-[-h]-[-v]-[filename]-[sql] \u547d\u4ee4\u5217\u9078\u9805": [[340, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", false], [340, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", false]], "python_branch() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_branch", false]], "python_build() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_build", false]], "python_compiler() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_compiler", false]], "python_dom": [[410, "index-0", false]], "python_implementation() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_implementation", false]], "python_is_optimized() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.python_is_optimized", false]], "python_revision() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_revision", false]], "python_version() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_version", false]], "python_version_tuple() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.python_version_tuple", false]], "pythonasynciodebug": [[125, "index-2", false], [126, "index-17", false], [188, "index-17", false], [455, "envvar-PYTHONASYNCIODEBUG", false]], "pythonbreakpoint": [[225, "index-19", false], [352, "index-3", false], [352, "index-4", false], [352, "index-5", false], [455, "envvar-PYTHONBREAKPOINT", false], [480, "index-12", false]], "pythoncaseok": [[225, "index-16", false], [455, "envvar-PYTHONCASEOK", false], [463, "index-11", false], [482, "index-21", false], [483, "index-193", false]], "pythoncoerceclocale": [[34, "index-36", false], [293, "index-4", false], [455, "envvar-PYTHONCOERCECLOCALE", false], [456, "index-34", false], [480, "index-4", false]], "pythondebug": [[33, "index-62", false], [34, "index-22", false], [455, "envvar-PYTHONDEBUG", false], [455, "index-2", false], [456, "index-7", false]], "pythondevmode": [[34, "index-8", false], [188, "index-12", false], [455, "envvar-PYTHONDEVMODE", false], [455, "index-24", false], [480, "index-26", false]], "pythondontwritebytecode": [[33, "index-63", false], [34, "index-32", false], [85, "index-4", false], [352, "index-6", false], [455, "envvar-PYTHONDONTWRITEBYTECODE", false], [455, "index-1", false], [468, "index-20", false], [468, "index-24", false]], "pythondumprefs": [[34, "index-9", false], [63, "index-0", false], [455, "envvar-PYTHONDUMPREFS", false], [456, "index-37", false], [481, "index-3", false], [483, "index-216", false]], "pythondumprefsfile": [[483, "index-88", false]], "pythondumprefsfile=filename": [[455, "envvar-PYTHONDUMPREFSFILE-FILENAME", false]], "pythonexecutable": [[34, "index-23", false], [455, "envvar-PYTHONEXECUTABLE", false]], "pythonfaulthandler": [[34, "index-10", false], [188, "index-16", false], [214, "index-0", false], [455, "envvar-PYTHONFAULTHANDLER", false], [455, "index-20", false], [476, "index-24", false]], "pythonhashseed": [[33, "index-3", false], [33, "index-64", false], [34, "index-11", false], [428, "index-114", false], [455, "envvar-PYTHONHASHSEED", false], [455, "index-13", false], [455, "index-14", false], [455, "index-37", false], [476, "index-23", false], [476, "index-35", false], [483, "index-238", false]], "pythonhome": [[33, "index-30", false], [33, "index-31", false], [33, "index-66", false], [34, "index-12", false], [35, "index-43", false], [35, "index-45", false], [354, "index-2", false], [354, "index-4", false], [362, "index-0", false], [455, "envvar-PYTHONHOME", false], [455, "index-30", false], [455, "index-31", false], [455, "index-34", false], [455, "index-4", false], [461, "index-33", false], [461, "index-35", false], [461, "index-37", false], [474, "index-62", false], [479, "index-2", false]], "pythonic\uff08python \u98a8\u683c\u7684\uff09": [[87, "term-Pythonic", true]], "pythoninspect": [[33, "index-67", false], [34, "index-14", false], [455, "envvar-PYTHONINSPECT", false], [455, "index-6", false], [465, "index-28", false]], "pythonintmaxstrdigits": [[34, "index-15", false], [344, "index-67", false], [344, "index-68", false], [352, "index-17", false], [455, "envvar-PYTHONINTMAXSTRDIGITS", false], [455, "index-22", false], [483, "index-42", false]], "pythonioencoding": [[33, "index-17", false], [33, "index-18", false], [34, "index-26", false], [293, "index-1", false], [352, "index-35", false], [455, "envvar-PYTHONIOENCODING", false], [455, "index-43", false], [468, "index-21", false], [477, "index-53", false]], "pythonlegacywindowsfsencoding": [[33, "index-68", false], [34, "index-1", false], [352, "index-33", false], [455, "envvar-PYTHONLEGACYWINDOWSFSENCODING", false], [479, "index-19", false]], "pythonlegacywindowsstdio": [[33, "index-9", false], [34, "index-16", false], [352, "index-37", false], [455, "envvar-PYTHONLEGACYWINDOWSSTDIO", false], [455, "index-38", false], [479, "index-21", false]], "pythonmalloc": [[42, "index-1", false], [42, "index-3", false], [42, "index-4", false], [42, "index-5", false], [188, "index-14", false], [188, "index-15", false], [455, "envvar-PYTHONMALLOC", false], [455, "index-41", false], [456, "index-36", false], [479, "index-27", false], [479, "index-38", false], [483, "index-287", false]], "pythonmallocstats": [[34, "index-18", false], [42, "index-2", false], [455, "envvar-PYTHONMALLOCSTATS", false], [483, "index-288", false]], "pythonnodebugranges": [[34, "index-6", false], [428, "index-61", false], [455, "envvar-PYTHONNODEBUGRANGES", false], [455, "index-28", false], [473, "index-88", false]], "pythonnousersite": [[33, "index-71", false], [34, "index-29", false], [334, "index-6", false], [455, "envvar-PYTHONNOUSERSITE", false], [455, "index-55", false], [468, "index-6", false]], "pythonoptimize": [[33, "index-72", false], [34, "index-21", false], [455, "envvar-PYTHONOPTIMIZE", false], [455, "index-8", false]], "pythonpath": [[33, "index-65", false], [34, "index-20", false], [35, "index-44", false], [35, "index-46", false], [71, "index-0", false], [151, "index-4", false], [352, "index-22", false], [352, "index-23", false], [354, "index-0", false], [354, "index-1", false], [362, "index-1", false], [432, "index-17", false], [432, "index-18", false], [450, "index-14", false], [450, "index-17", false], [450, "index-18", false], [455, "envvar-PYTHONPATH", false], [455, "index-3", false], [455, "index-33", false], [455, "index-35", false], [455, "index-36", false], [459, "index-2", false], [461, "index-11", false], [461, "index-32", false], [461, "index-34", false], [461, "index-36", false], [477, "index-55", false], [477, "index-56", false]], "pythonperfsupport": [[34, "index-28", false], [104, "index-2", false], [455, "envvar-PYTHONPERFSUPPORT", false], [455, "index-29", false], [474, "index-23", false]], "pythonplatlibdir": [[34, "index-19", false], [354, "index-3", false], [455, "envvar-PYTHONPLATLIBDIR", false], [483, "index-154", false]], "pythonprofileimporttime": [[34, "index-13", false], [455, "envvar-PYTHONPROFILEIMPORTTIME", false], [455, "index-23", false], [480, "index-27", false], [483, "index-246", false]], "pythonpycacheprefix": [[34, "index-25", false], [352, "index-7", false], [455, "envvar-PYTHONPYCACHEPREFIX", false], [455, "index-26", false], [481, "index-2", false], [483, "index-218", false]], "pythonregrtest_unicode_guard": [[483, "index-65", false]], "pythonsafepath": [[34, "index-3", false], [327, "index-6", false], [352, "index-24", false], [455, "envvar-PYTHONSAFEPATH", false], [455, "index-12", false], [473, "index-103", false], [473, "index-83", false], [483, "index-56", false]], "pythonstartup": [[247, "index-6", false], [320, "index-0", false], [334, "index-5", false], [352, "index-18", false], [438, "index-13", false], [455, "envvar-PYTHONSTARTUP", false], [455, "index-5", false], [477, "index-40", false], [477, "index-41", false], [483, "index-228", false], [483, "index-233", false], [483, "index-258", false]], "pythontracemalloc": [[34, "index-27", false], [382, "index-0", false], [382, "index-1", false], [382, "index-2", false], [455, "envvar-PYTHONTRACEMALLOC", false], [455, "index-21", false]], "pythontzpath": [[425, "envvar-PYTHONTZPATH", false], [425, "index-2", false]], "pythonunbuffered": [[33, "index-73", false], [34, "index-5", false], [352, "index-38", false], [455, "envvar-PYTHONUNBUFFERED", false], [455, "index-56", false], [483, "index-205", false]], "pythonuserbase": [[334, "index-7", false], [334, "index-8", false], [455, "envvar-PYTHONUSERBASE", false], [468, "index-4", false]], "pythonusersite": [[362, "index-2", false]], "pythonutf8": [[34, "index-2", false], [34, "index-35", false], [293, "index-2", false], [293, "index-3", false], [352, "index-36", false], [455, "envvar-PYTHONUTF8", false], [455, "index-25", false], [455, "index-44", false], [461, "index-15", false], [480, "index-8", false]], "pythonverbose": [[33, "index-74", false], [34, "index-30", false], [455, "envvar-PYTHONVERBOSE", false], [455, "index-57", false]], "pythonwarndefaultencoding": [[258, "index-9", false], [455, "envvar-PYTHONWARNDEFAULTENCODING", false], [455, "index-27", false], [472, "index-98", false], [483, "index-108", false]], "pythonwarnings": [[34, "index-31", false], [188, "index-13", false], [400, "index-1", false], [400, "index-2", false], [400, "index-3", false], [400, "index-4", false], [400, "index-5", false], [455, "envvar-PYTHONWARNINGS", false], [455, "index-19", false], [469, "index-1", false], [469, "index-8", false], [475, "index-10", false], [480, "index-36", false], [483, "index-51", false]], "pythread_create_key (c function)": [[33, "c.PyThread_create_key", false]], "pythread_delete_key (c function)": [[33, "c.PyThread_delete_key", false]], "pythread_delete_key_value (c function)": [[33, "c.PyThread_delete_key_value", false]], "pythread_get_key_value (c function)": [[33, "c.PyThread_get_key_value", false]], "pythread_reinittls (c function)": [[33, "c.PyThread_ReInitTLS", false]], "pythread_set_key_value (c function)": [[33, "c.PyThread_set_key_value", false]], "pythread_tss_alloc (c function)": [[33, "c.PyThread_tss_alloc", false]], "pythread_tss_create (c function)": [[33, "c.PyThread_tss_create", false]], "pythread_tss_delete (c function)": [[33, "c.PyThread_tss_delete", false]], "pythread_tss_free (c function)": [[33, "c.PyThread_tss_free", false]], "pythread_tss_get (c function)": [[33, "c.PyThread_tss_get", false]], "pythread_tss_is_created (c function)": [[33, "c.PyThread_tss_is_created", false]], "pythread_tss_set (c function)": [[33, "c.PyThread_tss_set", false]], "pythreadstate (c type)": [[33, "c.PyThreadState", false]], "pythreadstate.interp (c member)": [[33, "c.PyThreadState.interp", false]], "pythreadstate_clear (c function)": [[33, "c.PyThreadState_Clear", false]], "pythreadstate_delete (c function)": [[33, "c.PyThreadState_Delete", false]], "pythreadstate_deletecurrent (c function)": [[33, "c.PyThreadState_DeleteCurrent", false]], "pythreadstate_entertracing (c function)": [[33, "c.PyThreadState_EnterTracing", false]], "pythreadstate_get (c function)": [[33, "c.PyThreadState_Get", false]], "pythreadstate_getdict (c function)": [[33, "c.PyThreadState_GetDict", false]], "pythreadstate_getframe (c function)": [[33, "c.PyThreadState_GetFrame", false]], "pythreadstate_getid (c function)": [[33, "c.PyThreadState_GetID", false]], "pythreadstate_getinterpreter (c function)": [[33, "c.PyThreadState_GetInterpreter", false]], "pythreadstate_leavetracing (c function)": [[33, "c.PyThreadState_LeaveTracing", false]], "pythreadstate_new (c function)": [[33, "c.PyThreadState_New", false]], "pythreadstate_next (c function)": [[33, "c.PyThreadState_Next", false]], "pythreadstate_setasyncexc (c function)": [[33, "c.PyThreadState_SetAsyncExc", false]], "pythreadstate_swap (c function)": [[33, "c.PyThreadState_Swap", false]], "pythreadstate\uff08c \u578b\u5225\uff09": [[33, "index-34", false]], "pytime_check (c function)": [[20, "c.PyTime_Check", false]], "pytime_checkexact (c function)": [[20, "c.PyTime_CheckExact", false]], "pytime_fromtime (c function)": [[20, "c.PyTime_FromTime", false]], "pytime_fromtimeandfold (c function)": [[20, "c.PyTime_FromTimeAndFold", false]], "pytimezone_fromoffset (c function)": [[20, "c.PyTimeZone_FromOffset", false]], "pytimezone_fromoffsetandname (c function)": [[20, "c.PyTimeZone_FromOffsetAndName", false]], "pytrace_c_call (c var)": [[33, "c.PyTrace_C_CALL", false]], "pytrace_c_exception (c var)": [[33, "c.PyTrace_C_EXCEPTION", false]], "pytrace_c_return (c var)": [[33, "c.PyTrace_C_RETURN", false]], "pytrace_call (c var)": [[33, "c.PyTrace_CALL", false]], "pytrace_exception (c var)": [[33, "c.PyTrace_EXCEPTION", false]], "pytrace_line (c var)": [[33, "c.PyTrace_LINE", false]], "pytrace_opcode (c var)": [[33, "c.PyTrace_OPCODE", false]], "pytrace_return (c var)": [[33, "c.PyTrace_RETURN", false]], "pytracemalloc_track (c function)": [[42, "c.PyTraceMalloc_Track", false]], "pytracemalloc_untrack (c function)": [[42, "c.PyTraceMalloc_Untrack", false]], "pytuple_check (c function)": [[60, "c.PyTuple_Check", false]], "pytuple_checkexact (c function)": [[60, "c.PyTuple_CheckExact", false]], "pytuple_get_item (c function)": [[60, "c.PyTuple_GET_ITEM", false]], "pytuple_get_size (c function)": [[60, "c.PyTuple_GET_SIZE", false]], "pytuple_getitem (c function)": [[60, "c.PyTuple_GetItem", false]], "pytuple_getslice (c function)": [[60, "c.PyTuple_GetSlice", false]], "pytuple_new (c function)": [[60, "c.PyTuple_New", false]], "pytuple_pack (c function)": [[60, "c.PyTuple_Pack", false]], "pytuple_set_item (c function)": [[60, "c.PyTuple_SET_ITEM", false]], "pytuple_setitem (c function)": [[60, "c.PyTuple_SetItem", false]], "pytuple_setitem\uff08c \u51fd\u5f0f\uff09": [[35, "index-5", false]], "pytuple_size (c function)": [[60, "c.PyTuple_Size", false]], "pytuple_type (c var)": [[60, "c.PyTuple_Type", false]], "pytupleobject (c type)": [[60, "c.PyTupleObject", false]], "pytype_addwatcher (c function)": [[61, "c.PyType_AddWatcher", false]], "pytype_check (c function)": [[61, "c.PyType_Check", false]], "pytype_checkexact (c function)": [[61, "c.PyType_CheckExact", false]], "pytype_clearcache (c function)": [[61, "c.PyType_ClearCache", false]], "pytype_clearwatcher (c function)": [[61, "c.PyType_ClearWatcher", false]], "pytype_frommetaclass (c function)": [[61, "c.PyType_FromMetaclass", false]], "pytype_frommoduleandspec (c function)": [[61, "c.PyType_FromModuleAndSpec", false]], "pytype_fromspec (c function)": [[61, "c.PyType_FromSpec", false]], "pytype_fromspecwithbases (c function)": [[61, "c.PyType_FromSpecWithBases", false]], "pytype_genericalloc (c function)": [[61, "c.PyType_GenericAlloc", false]], "pytype_genericnew (c function)": [[61, "c.PyType_GenericNew", false]], "pytype_getdict (c function)": [[61, "c.PyType_GetDict", false]], "pytype_getflags (c function)": [[61, "c.PyType_GetFlags", false]], "pytype_getmodule (c function)": [[61, "c.PyType_GetModule", false]], "pytype_getmodulebydef (c function)": [[61, "c.PyType_GetModuleByDef", false]], "pytype_getmodulestate (c function)": [[61, "c.PyType_GetModuleState", false]], "pytype_getname (c function)": [[61, "c.PyType_GetName", false]], "pytype_getqualname (c function)": [[61, "c.PyType_GetQualName", false]], "pytype_getslot (c function)": [[61, "c.PyType_GetSlot", false]], "pytype_gettypedatasize (c function)": [[49, "c.PyType_GetTypeDataSize", false]], "pytype_hasfeature (c function)": [[61, "c.PyType_HasFeature", false]], "pytype_is_gc (c function)": [[61, "c.PyType_IS_GC", false]], "pytype_issubtype (c function)": [[61, "c.PyType_IsSubtype", false]], "pytype_modified (c function)": [[61, "c.PyType_Modified", false]], "pytype_ready (c function)": [[61, "c.PyType_Ready", false]], "pytype_slot (c type)": [[61, "c.PyType_Slot", false]], "pytype_slot.pfunc (c member)": [[61, "c.PyType_Slot.pfunc", false]], "pytype_slot.slot (c member)": [[61, "c.PyType_Slot.slot", false]], "pytype_spec (c type)": [[61, "c.PyType_Spec", false]], "pytype_spec.basicsize (c member)": [[61, "c.PyType_Spec.basicsize", false]], "pytype_spec.flags (c member)": [[61, "c.PyType_Spec.flags", false]], "pytype_spec.itemsize (c member)": [[61, "c.PyType_Spec.itemsize", false]], "pytype_spec.name (c member)": [[61, "c.PyType_Spec.name", false]], "pytype_spec.slots (c member)": [[61, "c.PyType_Spec.slots", false]], "pytype_type (c var)": [[61, "c.PyType_Type", false]], "pytype_watch (c function)": [[61, "c.PyType_Watch", false]], "pytype_watchcallback (c type)": [[61, "c.PyType_WatchCallback", false]], "pytypeobject (c type)": [[61, "c.PyTypeObject", false]], "pytypeobject.tp_alloc (c member)": [[63, "c.PyTypeObject.tp_alloc", false]], "pytypeobject.tp_as_async (c member)": [[63, "c.PyTypeObject.tp_as_async", false]], "pytypeobject.tp_as_buffer (c member)": [[63, "c.PyTypeObject.tp_as_buffer", false]], "pytypeobject.tp_as_mapping (c member)": [[63, "c.PyTypeObject.tp_as_mapping", false]], "pytypeobject.tp_as_number (c member)": [[63, "c.PyTypeObject.tp_as_number", false]], "pytypeobject.tp_as_sequence (c member)": [[63, "c.PyTypeObject.tp_as_sequence", false]], "pytypeobject.tp_base (c member)": [[63, "c.PyTypeObject.tp_base", false]], "pytypeobject.tp_bases (c member)": [[63, "c.PyTypeObject.tp_bases", false]], "pytypeobject.tp_basicsize (c member)": [[63, "c.PyTypeObject.tp_basicsize", false]], "pytypeobject.tp_cache (c member)": [[63, "c.PyTypeObject.tp_cache", false]], "pytypeobject.tp_call (c member)": [[63, "c.PyTypeObject.tp_call", false]], "pytypeobject.tp_clear (c member)": [[63, "c.PyTypeObject.tp_clear", false]], "pytypeobject.tp_dealloc (c member)": [[63, "c.PyTypeObject.tp_dealloc", false]], "pytypeobject.tp_del (c member)": [[63, "c.PyTypeObject.tp_del", false]], "pytypeobject.tp_descr_get (c member)": [[63, "c.PyTypeObject.tp_descr_get", false]], "pytypeobject.tp_descr_set (c member)": [[63, "c.PyTypeObject.tp_descr_set", false]], "pytypeobject.tp_dict (c member)": [[63, "c.PyTypeObject.tp_dict", false]], "pytypeobject.tp_dictoffset (c member)": [[63, "c.PyTypeObject.tp_dictoffset", false]], "pytypeobject.tp_doc (c member)": [[63, "c.PyTypeObject.tp_doc", false]], "pytypeobject.tp_finalize (c member)": [[63, "c.PyTypeObject.tp_finalize", false]], "pytypeobject.tp_flags (c member)": [[63, "c.PyTypeObject.tp_flags", false]], "pytypeobject.tp_free (c member)": [[63, "c.PyTypeObject.tp_free", false]], "pytypeobject.tp_getattr (c member)": [[63, "c.PyTypeObject.tp_getattr", false]], "pytypeobject.tp_getattro (c member)": [[63, "c.PyTypeObject.tp_getattro", false]], "pytypeobject.tp_getset (c member)": [[63, "c.PyTypeObject.tp_getset", false]], "pytypeobject.tp_hash (c member)": [[63, "c.PyTypeObject.tp_hash", false]], "pytypeobject.tp_init (c member)": [[63, "c.PyTypeObject.tp_init", false]], "pytypeobject.tp_is_gc (c member)": [[63, "c.PyTypeObject.tp_is_gc", false]], "pytypeobject.tp_itemsize (c member)": [[63, "c.PyTypeObject.tp_itemsize", false]], "pytypeobject.tp_iter (c member)": [[63, "c.PyTypeObject.tp_iter", false]], "pytypeobject.tp_iternext (c member)": [[63, "c.PyTypeObject.tp_iternext", false]], "pytypeobject.tp_members (c member)": [[63, "c.PyTypeObject.tp_members", false]], "pytypeobject.tp_methods (c member)": [[63, "c.PyTypeObject.tp_methods", false]], "pytypeobject.tp_mro (c member)": [[63, "c.PyTypeObject.tp_mro", false]], "pytypeobject.tp_name (c member)": [[63, "c.PyTypeObject.tp_name", false]], "pytypeobject.tp_new (c member)": [[63, "c.PyTypeObject.tp_new", false]], "pytypeobject.tp_repr (c member)": [[63, "c.PyTypeObject.tp_repr", false]], "pytypeobject.tp_richcompare (c member)": [[63, "c.PyTypeObject.tp_richcompare", false]], "pytypeobject.tp_setattr (c member)": [[63, "c.PyTypeObject.tp_setattr", false]], "pytypeobject.tp_setattro (c member)": [[63, "c.PyTypeObject.tp_setattro", false]], "pytypeobject.tp_str (c member)": [[63, "c.PyTypeObject.tp_str", false]], "pytypeobject.tp_subclasses (c member)": [[63, "c.PyTypeObject.tp_subclasses", false]], "pytypeobject.tp_traverse (c member)": [[63, "c.PyTypeObject.tp_traverse", false]], "pytypeobject.tp_vectorcall (c member)": [[63, "c.PyTypeObject.tp_vectorcall", false]], "pytypeobject.tp_vectorcall_offset (c member)": [[63, "c.PyTypeObject.tp_vectorcall_offset", false]], "pytypeobject.tp_version_tag (c member)": [[63, "c.PyTypeObject.tp_version_tag", false]], "pytypeobject.tp_watched (c member)": [[63, "c.PyTypeObject.tp_watched", false]], "pytypeobject.tp_weaklist (c member)": [[63, "c.PyTypeObject.tp_weaklist", false]], "pytypeobject.tp_weaklistoffset (c member)": [[63, "c.PyTypeObject.tp_weaklistoffset", false]], "pytzinfo_check (c function)": [[20, "c.PyTZInfo_Check", false]], "pytzinfo_checkexact (c function)": [[20, "c.PyTZInfo_CheckExact", false]], "pyunicode_1byte_data (c function)": [[64, "c.PyUnicode_1BYTE_DATA", false]], "pyunicode_1byte_kind (c macro)": [[64, "c.PyUnicode_1BYTE_KIND", false]], "pyunicode_2byte_data (c function)": [[64, "c.PyUnicode_2BYTE_DATA", false]], "pyunicode_2byte_kind (c macro)": [[64, "c.PyUnicode_2BYTE_KIND", false]], "pyunicode_4byte_data (c function)": [[64, "c.PyUnicode_4BYTE_DATA", false]], "pyunicode_4byte_kind (c macro)": [[64, "c.PyUnicode_4BYTE_KIND", false]], "pyunicode_asasciistring (c function)": [[64, "c.PyUnicode_AsASCIIString", false]], "pyunicode_ascharmapstring (c function)": [[64, "c.PyUnicode_AsCharmapString", false]], "pyunicode_asencodedstring (c function)": [[64, "c.PyUnicode_AsEncodedString", false]], "pyunicode_aslatin1string (c function)": [[64, "c.PyUnicode_AsLatin1String", false]], "pyunicode_asmbcsstring (c function)": [[64, "c.PyUnicode_AsMBCSString", false]], "pyunicode_asrawunicodeescapestring (c function)": [[64, "c.PyUnicode_AsRawUnicodeEscapeString", false]], "pyunicode_asucs4 (c function)": [[64, "c.PyUnicode_AsUCS4", false]], "pyunicode_asucs4copy (c function)": [[64, "c.PyUnicode_AsUCS4Copy", false]], "pyunicode_asunicodeescapestring (c function)": [[64, "c.PyUnicode_AsUnicodeEscapeString", false]], "pyunicode_asutf16string (c function)": [[64, "c.PyUnicode_AsUTF16String", false]], "pyunicode_asutf32string (c function)": [[64, "c.PyUnicode_AsUTF32String", false]], "pyunicode_asutf8 (c function)": [[64, "c.PyUnicode_AsUTF8", false]], "pyunicode_asutf8andsize (c function)": [[64, "c.PyUnicode_AsUTF8AndSize", false]], "pyunicode_asutf8string (c function)": [[64, "c.PyUnicode_AsUTF8String", false]], "pyunicode_aswidechar (c function)": [[64, "c.PyUnicode_AsWideChar", false]], "pyunicode_aswidecharstring (c function)": [[64, "c.PyUnicode_AsWideCharString", false]], "pyunicode_check (c function)": [[64, "c.PyUnicode_Check", false]], "pyunicode_checkexact (c function)": [[64, "c.PyUnicode_CheckExact", false]], "pyunicode_compare (c function)": [[64, "c.PyUnicode_Compare", false]], "pyunicode_comparewithasciistring (c function)": [[64, "c.PyUnicode_CompareWithASCIIString", false]], "pyunicode_concat (c function)": [[64, "c.PyUnicode_Concat", false]], "pyunicode_contains (c function)": [[64, "c.PyUnicode_Contains", false]], "pyunicode_copycharacters (c function)": [[64, "c.PyUnicode_CopyCharacters", false]], "pyunicode_count (c function)": [[64, "c.PyUnicode_Count", false]], "pyunicode_data (c function)": [[64, "c.PyUnicode_DATA", false]], "pyunicode_decode (c function)": [[64, "c.PyUnicode_Decode", false]], "pyunicode_decodeascii (c function)": [[64, "c.PyUnicode_DecodeASCII", false]], "pyunicode_decodecharmap (c function)": [[64, "c.PyUnicode_DecodeCharmap", false]], "pyunicode_decodefsdefault (c function)": [[64, "c.PyUnicode_DecodeFSDefault", false]], "pyunicode_decodefsdefaultandsize (c function)": [[64, "c.PyUnicode_DecodeFSDefaultAndSize", false]], "pyunicode_decodelatin1 (c function)": [[64, "c.PyUnicode_DecodeLatin1", false]], "pyunicode_decodelocale (c function)": [[64, "c.PyUnicode_DecodeLocale", false]], "pyunicode_decodelocaleandsize (c function)": [[64, "c.PyUnicode_DecodeLocaleAndSize", false]], "pyunicode_decodembcs (c function)": [[64, "c.PyUnicode_DecodeMBCS", false]], "pyunicode_decodembcsstateful (c function)": [[64, "c.PyUnicode_DecodeMBCSStateful", false]], "pyunicode_decoderawunicodeescape (c function)": [[64, "c.PyUnicode_DecodeRawUnicodeEscape", false]], "pyunicode_decodeunicodeescape (c function)": [[64, "c.PyUnicode_DecodeUnicodeEscape", false]], "pyunicode_decodeutf16 (c function)": [[64, "c.PyUnicode_DecodeUTF16", false]], "pyunicode_decodeutf16stateful (c function)": [[64, "c.PyUnicode_DecodeUTF16Stateful", false]], "pyunicode_decodeutf32 (c function)": [[64, "c.PyUnicode_DecodeUTF32", false]], "pyunicode_decodeutf32stateful (c function)": [[64, "c.PyUnicode_DecodeUTF32Stateful", false]], "pyunicode_decodeutf7 (c function)": [[64, "c.PyUnicode_DecodeUTF7", false]], "pyunicode_decodeutf7stateful (c function)": [[64, "c.PyUnicode_DecodeUTF7Stateful", false]], "pyunicode_decodeutf8 (c function)": [[64, "c.PyUnicode_DecodeUTF8", false]], "pyunicode_decodeutf8stateful (c function)": [[64, "c.PyUnicode_DecodeUTF8Stateful", false]], "pyunicode_encodecodepage (c function)": [[64, "c.PyUnicode_EncodeCodePage", false]], "pyunicode_encodefsdefault (c function)": [[64, "c.PyUnicode_EncodeFSDefault", false]], "pyunicode_encodelocale (c function)": [[64, "c.PyUnicode_EncodeLocale", false]], "pyunicode_fill (c function)": [[64, "c.PyUnicode_Fill", false]], "pyunicode_find (c function)": [[64, "c.PyUnicode_Find", false]], "pyunicode_findchar (c function)": [[64, "c.PyUnicode_FindChar", false]], "pyunicode_format (c function)": [[64, "c.PyUnicode_Format", false]], "pyunicode_fromencodedobject (c function)": [[64, "c.PyUnicode_FromEncodedObject", false]], "pyunicode_fromformat (c function)": [[64, "c.PyUnicode_FromFormat", false]], "pyunicode_fromformatv (c function)": [[64, "c.PyUnicode_FromFormatV", false]], "pyunicode_fromkindanddata (c function)": [[64, "c.PyUnicode_FromKindAndData", false]], "pyunicode_fromobject (c function)": [[64, "c.PyUnicode_FromObject", false]], "pyunicode_fromstring (c function)": [[64, "c.PyUnicode_FromString", false]], "pyunicode_fromstringandsize (c function)": [[64, "c.PyUnicode_FromStringAndSize", false]], "pyunicode_fromwidechar (c function)": [[64, "c.PyUnicode_FromWideChar", false]], "pyunicode_fsconverter (c function)": [[64, "c.PyUnicode_FSConverter", false]], "pyunicode_fsdecoder (c function)": [[64, "c.PyUnicode_FSDecoder", false]], "pyunicode_get_length (c function)": [[64, "c.PyUnicode_GET_LENGTH", false]], "pyunicode_getlength (c function)": [[64, "c.PyUnicode_GetLength", false]], "pyunicode_internfromstring (c function)": [[64, "c.PyUnicode_InternFromString", false]], "pyunicode_interninplace (c function)": [[64, "c.PyUnicode_InternInPlace", false]], "pyunicode_isidentifier (c function)": [[64, "c.PyUnicode_IsIdentifier", false]], "pyunicode_join (c function)": [[64, "c.PyUnicode_Join", false]], "pyunicode_kind (c function)": [[64, "c.PyUnicode_KIND", false]], "pyunicode_max_char_value (c function)": [[64, "c.PyUnicode_MAX_CHAR_VALUE", false]], "pyunicode_new (c function)": [[64, "c.PyUnicode_New", false]], "pyunicode_read (c function)": [[64, "c.PyUnicode_READ", false]], "pyunicode_read_char (c function)": [[64, "c.PyUnicode_READ_CHAR", false]], "pyunicode_readchar (c function)": [[64, "c.PyUnicode_ReadChar", false]], "pyunicode_ready (c function)": [[64, "c.PyUnicode_READY", false]], "pyunicode_replace (c function)": [[64, "c.PyUnicode_Replace", false]], "pyunicode_richcompare (c function)": [[64, "c.PyUnicode_RichCompare", false]], "pyunicode_split (c function)": [[64, "c.PyUnicode_Split", false]], "pyunicode_splitlines (c function)": [[64, "c.PyUnicode_Splitlines", false]], "pyunicode_substring (c function)": [[64, "c.PyUnicode_Substring", false]], "pyunicode_tailmatch (c function)": [[64, "c.PyUnicode_Tailmatch", false]], "pyunicode_translate (c function)": [[64, "c.PyUnicode_Translate", false]], "pyunicode_type (c var)": [[64, "c.PyUnicode_Type", false]], "pyunicode_write (c function)": [[64, "c.PyUnicode_WRITE", false]], "pyunicode_writechar (c function)": [[64, "c.PyUnicode_WriteChar", false]], "pyunicodedecodeerror_create (c function)": [[23, "c.PyUnicodeDecodeError_Create", false]], "pyunicodedecodeerror_getencoding (c function)": [[23, "c.PyUnicodeDecodeError_GetEncoding", false]], "pyunicodedecodeerror_getend (c function)": [[23, "c.PyUnicodeDecodeError_GetEnd", false]], "pyunicodedecodeerror_getobject (c function)": [[23, "c.PyUnicodeDecodeError_GetObject", false]], "pyunicodedecodeerror_getreason (c function)": [[23, "c.PyUnicodeDecodeError_GetReason", false]], "pyunicodedecodeerror_getstart (c function)": [[23, "c.PyUnicodeDecodeError_GetStart", false]], "pyunicodedecodeerror_setend (c function)": [[23, "c.PyUnicodeDecodeError_SetEnd", false]], "pyunicodedecodeerror_setreason (c function)": [[23, "c.PyUnicodeDecodeError_SetReason", false]], "pyunicodedecodeerror_setstart (c function)": [[23, "c.PyUnicodeDecodeError_SetStart", false]], "pyunicodeencodeerror_getencoding (c function)": [[23, "c.PyUnicodeEncodeError_GetEncoding", false]], "pyunicodeencodeerror_getend (c function)": [[23, "c.PyUnicodeEncodeError_GetEnd", false]], "pyunicodeencodeerror_getobject (c function)": [[23, "c.PyUnicodeEncodeError_GetObject", false]], "pyunicodeencodeerror_getreason (c function)": [[23, "c.PyUnicodeEncodeError_GetReason", false]], "pyunicodeencodeerror_getstart (c function)": [[23, "c.PyUnicodeEncodeError_GetStart", false]], "pyunicodeencodeerror_setend (c function)": [[23, "c.PyUnicodeEncodeError_SetEnd", false]], "pyunicodeencodeerror_setreason (c function)": [[23, "c.PyUnicodeEncodeError_SetReason", false]], "pyunicodeencodeerror_setstart (c function)": [[23, "c.PyUnicodeEncodeError_SetStart", false]], "pyunicodeobject (c type)": [[64, "c.PyUnicodeObject", false]], "pyunicodetranslateerror_getend (c function)": [[23, "c.PyUnicodeTranslateError_GetEnd", false]], "pyunicodetranslateerror_getobject (c function)": [[23, "c.PyUnicodeTranslateError_GetObject", false]], "pyunicodetranslateerror_getreason (c function)": [[23, "c.PyUnicodeTranslateError_GetReason", false]], "pyunicodetranslateerror_getstart (c function)": [[23, "c.PyUnicodeTranslateError_GetStart", false]], "pyunicodetranslateerror_setend (c function)": [[23, "c.PyUnicodeTranslateError_SetEnd", false]], "pyunicodetranslateerror_setreason (c function)": [[23, "c.PyUnicodeTranslateError_SetReason", false]], "pyunicodetranslateerror_setstart (c function)": [[23, "c.PyUnicodeTranslateError_SetStart", false]], "pyunstable": [[57, "index-1", false]], "pyunstable_code_getextra (c function)": [[13, "c.PyUnstable_Code_GetExtra", false]], "pyunstable_code_new (c function)": [[13, "c.PyUnstable_Code_New", false]], "pyunstable_code_newwithposonlyargs (c function)": [[13, "c.PyUnstable_Code_NewWithPosOnlyArgs", false]], "pyunstable_code_setextra (c function)": [[13, "c.PyUnstable_Code_SetExtra", false]], "pyunstable_eval_requestcodeextraindex (c function)": [[13, "c.PyUnstable_Eval_RequestCodeExtraIndex", false]], "pyunstable_exc_prepreraisestar (c function)": [[23, "c.PyUnstable_Exc_PrepReraiseStar", false]], "pyunstable_gc_visitobjects (c function)": [[28, "c.PyUnstable_GC_VisitObjects", false]], "pyunstable_interpreterframe_getcode (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetCode", false]], "pyunstable_interpreterframe_getlasti (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetLasti", false]], "pyunstable_interpreterframe_getline (c function)": [[26, "c.PyUnstable_InterpreterFrame_GetLine", false]], "pyunstable_long_compactvalue (c function)": [[39, "c.PyUnstable_Long_CompactValue", false]], "pyunstable_long_iscompact (c function)": [[39, "c.PyUnstable_Long_IsCompact", false]], "pyunstable_object_gc_newwithextradata (c function)": [[28, "c.PyUnstable_Object_GC_NewWithExtraData", false]], "pyunstable_perfmapstate_fini (c function)": [[51, "c.PyUnstable_PerfMapState_Fini", false]], "pyunstable_perfmapstate_init (c function)": [[51, "c.PyUnstable_PerfMapState_Init", false]], "pyunstable_type_assignversiontag (c function)": [[61, "c.PyUnstable_Type_AssignVersionTag", false]], "pyunstable_writeperfmapentry (c function)": [[51, "c.PyUnstable_WritePerfMapEntry", false]], "pyvarobject (c type)": [[58, "c.PyVarObject", false]], "pyvarobject.ob_size (c member)": [[63, "c.PyVarObject.ob_size", false]], "pyvarobject_head_init (c macro)": [[58, "c.PyVarObject_HEAD_INIT", false]], "pyvectorcall_call (c function)": [[10, "c.PyVectorcall_Call", false]], "pyvectorcall_function (c function)": [[10, "c.PyVectorcall_Function", false]], "pyvectorcall_nargs (c function)": [[10, "c.PyVectorcall_NARGS", false]], "pyweakref_check (c function)": [[67, "c.PyWeakref_Check", false]], "pyweakref_checkproxy (c function)": [[67, "c.PyWeakref_CheckProxy", false]], "pyweakref_checkref (c function)": [[67, "c.PyWeakref_CheckRef", false]], "pyweakref_get_object (c function)": [[67, "c.PyWeakref_GET_OBJECT", false]], "pyweakref_getobject (c function)": [[67, "c.PyWeakref_GetObject", false]], "pyweakref_newproxy (c function)": [[67, "c.PyWeakref_NewProxy", false]], "pyweakref_newref (c function)": [[67, "c.PyWeakref_NewRef", false]], "pywidestringlist (c type)": [[34, "c.PyWideStringList", false]], "pywidestringlist.items (c member)": [[34, "c.PyWideStringList.items", false]], "pywidestringlist.length (c member)": [[34, "c.PyWideStringList.length", false]], "pywidestringlist_append (c function)": [[34, "c.PyWideStringList_Append", false]], "pywidestringlist_insert (c function)": [[34, "c.PyWideStringList_Insert", false]], "pywrapper_new (c function)": [[21, "c.PyWrapper_New", false]], "pyzipfile (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.PyZipFile", false]], "qiflush() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.qiflush", false]], "qname (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.QName", false]], "qsize() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.qsize", false]], "qsize() (multiprocessing.queue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Queue.qsize", false]], "qsize() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.qsize", false]], "qsize() (queue.simplequeue \u7684\u65b9\u6cd5)": [[316, "queue.SimpleQueue.qsize", false]], "qualified name\uff08\u9650\u5b9a\u540d\u7a31\uff09": [[87, "term-qualified-name", true]], "quantiles() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.quantiles", false]], "quantiles() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.quantiles", false]], "quantize() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.quantize", false]], "quantize() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.quantize", false]], "queryinfokey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryInfoKey", false]], "queryreflectionkey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryReflectionKey", false]], "queryvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryValue", false]], "queryvalueex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.QueryValueEx", false]], "question (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.QUESTION", false]], "queue": [[316, "module-queue", false]], "queue (asyncio \u4e2d\u7684\u985e\u5225)": [[134, "asyncio.Queue", false]], "queue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Queue", false]], "queue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.Queue", false]], "queue (sched.scheduler \u7684\u5c6c\u6027)": [[325, "sched.scheduler.queue", false]], "queue() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Queue", false]], "queueempty": [[134, "asyncio.QueueEmpty", false]], "queuefull": [[134, "asyncio.QueueFull", false]], "queuehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.QueueHandler", false]], "queuelistener (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.QueueListener", false]], "quick_ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.quick_ratio", false]], "quiet (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.quiet", false]], "quit (pdb command)": [[297, "pdbcommand-quit", false]], "quit (\u5167\u5efa\u8b8a\u6578)": [[168, "quit", false]], "quit() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.quit", false]], "quit() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.quit", false]], "quit() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.quit", false]], "quit() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.quit", false]], "quit() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.quit", false]], "quitting (bdb.bdb attribute)": [[144, "index-0", false]], "quopri": [[317, "module-quopri", false]], "quote() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.quote", false]], "quote() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.quote", false]], "quote() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote", false]], "quote_all (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_ALL", false]], "quote_from_bytes() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote_from_bytes", false]], "quote_minimal (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_MINIMAL", false]], "quote_none (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NONE", false]], "quote_nonnumeric (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NONNUMERIC", false]], "quote_notnull (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_NOTNULL", false]], "quote_plus() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.quote_plus", false]], "quote_strings (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.QUOTE_STRINGS", false]], "quoteattr() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.quoteattr", false]], "quotechar (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.quotechar", false]], "quoted-printable encoding\uff08\u53ef\u5217\u5370\u5b57\u5143\u7de8\u78bc\uff09": [[317, "index-0", false]], "quoted-printable\uff08\u53ef\u5217\u5370\u5b57\u5143\uff09": [[317, "index-0", false]], "quotes (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.quotes", false]], "quoting (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.quoting", false]], "r\"": [[435, "index-20", false]], "r'": [[435, "index-20", false]], "r_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.R_OK", false]], "radians() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.radians", false]], "radians() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.radians", false]], "radiobuttongroup (msilib \u4e2d\u7684\u985e\u5225)": [[281, "msilib.RadioButtonGroup", false]], "radiogroup() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.radiogroup", false]], "radix (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.radix", false]], "radix() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.radix", false]], "radix() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.radix", false]], "radixchar (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.RADIXCHAR", false]], "raise": [[213, "index-1", false], [436, "index-27", true]], "raise (2to3 fixer)": [[112, "to3fixer-raise", false]], "raise (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Raise", false]], "raise (monitoring event)": [[353, "monitoring-event-RAISE", false]], "raise an exception\uff08\u5f15\u767c\u4f8b\u5916\uff09": [[429, "index-15", false]], "raise_on_defect (email.policy.policy \u7684\u5c6c\u6027)": [[208, "email.policy.Policy.raise_on_defect", false]], "raise_signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.raise_signal", false]], "raise_varargs (opcode)": [[191, "opcode-RAISE_VARARGS", false]], "raiseexceptions (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.raiseExceptions", false]], "raiseing": [[436, "index-27", false]], "rand_add() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_add", false]], "rand_bytes() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_bytes", false]], "rand_status() (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.RAND_status", false]], "randbelow() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.randbelow", false]], "randbits() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.randbits", false]], "randbytes() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randbytes", false]], "randint() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randint", false]], "random": [[318, "module-random", false]], "random (random \u4e2d\u7684\u985e\u5225)": [[318, "random.Random", false]], "random() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.random", false]], "random() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.random", false]], "randrange() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.randrange", false]], "range": [[344, "index-27", false], [427, "index-8", false]], "range (\u5167\u5efa\u985e\u5225)": [[344, "range", false]], "rarrow (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RARROW", false]], "ratecv() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.ratecv", false]], "ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.ratio", false]], "rational (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Rational", false]], "raw (io.bufferediobase \u7684\u5c6c\u6027)": [[258, "io.BufferedIOBase.raw", false]], "raw string literal\uff08\u539f\u59cb\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-20", false]], "raw string\uff08\u539f\u59cb\u5b57\u4e32\uff09": [[435, "index-18", false]], "raw() (pickle.picklebuffer \u7684\u65b9\u6cd5)": [[299, "pickle.PickleBuffer.raw", false]], "raw() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.raw", false]], "raw_data_manager (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.raw_data_manager", false]], "raw_decode() (json.jsondecoder \u7684\u65b9\u6cd5)": [[262, "json.JSONDecoder.raw_decode", false]], "raw_input (2to3 fixer)": [[112, "to3fixer-raw_input", false]], "raw_input() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.raw_input", false]], "rawarray() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.RawArray", false]], "rawconfigparser (configparser \u4e2d\u7684\u985e\u5225)": [[167, "configparser.RawConfigParser", false]], "rawdescriptionhelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.RawDescriptionHelpFormatter", false]], "rawiobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.RawIOBase", false]], "rawpen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.RawPen", false]], "rawtexthelpformatter (argparse \u4e2d\u7684\u985e\u5225)": [[120, "argparse.RawTextHelpFormatter", false]], "rawturtle (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.RawTurtle", false]], "rawvalue() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.RawValue", false]], "rbrace (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RBRACE", false]], "re": [[220, "index-1", false], [319, "module-re", false], [344, "index-33", false]], "re (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.re", false]], "read (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.READ", false]], "read() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.read", false]], "read() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.read", false]], "read() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.read", false]], "read() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read", false]], "read() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.read", false]], "read() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.read", false]], "read() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.read", false]], "read() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.read", false]], "read() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.read", false]], "read() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.read", false]], "read() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.read", false]], "read() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.read", false]], "read() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.read", false]], "read() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.read", false]], "read() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.read", false]], "read() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.read", false]], "read() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.read", false]], "read() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.read", false]], "read() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.read", false]], "read1() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.read1", false]], "read1() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.read1", false]], "read1() (io.bufferedreader \u7684\u65b9\u6cd5)": [[258, "io.BufferedReader.read1", false]], "read1() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.read1", false]], "read_all() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_all", false]], "read_binary() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.read_binary", false]], "read_byte() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.read_byte", false]], "read_bytes() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.read_bytes", false]], "read_bytes() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.read_bytes", false]], "read_bytes() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.read_bytes", false]], "read_bytes() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.read_bytes", false]], "read_dict() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_dict", false]], "read_eager() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_eager", false]], "read_environ() (\u65bc wsgiref.handlers \u6a21\u7d44\u4e2d)": [[407, "wsgiref.handlers.read_environ", false]], "read_events() (xml.etree.elementtree.xmlpullparser \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.XMLPullParser.read_events", false]], "read_file() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_file", false]], "read_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.read_history_file", false]], "read_init_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.read_init_file", false]], "read_lazy() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_lazy", false]], "read_mime_types() (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.read_mime_types", false]], "read_restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "read_sb_data() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_sb_data", false]], "read_some() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_some", false]], "read_string() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.read_string", false]], "read_text() (importlib.abc.traversable \u7684\u65b9\u6cd5)": [[250, "importlib.abc.Traversable.read_text", false]], "read_text() (importlib.resources.abc.traversable \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.Traversable.read_text", false]], "read_text() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.read_text", false]], "read_text() (zipfile.path \u7684\u65b9\u6cd5)": [[422, "zipfile.Path.read_text", false]], "read_text() (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.read_text", false]], "read_token() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.read_token", false]], "read_until() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_until", false]], "read_very_eager() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_very_eager", false]], "read_very_lazy() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.read_very_lazy", false]], "read_windows_registry() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.read_windows_registry", false]], "readable (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.READABLE", false]], "readable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.readable", false]], "readable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readable", false]], "readall() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.readall", false]], "reader() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.reader", false]], "readerror": [[358, "tarfile.ReadError", false]], "readexactly() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readexactly", false]], "readfp() (mimetypes.mimetypes \u7684\u65b9\u6cd5)": [[276, "mimetypes.MimeTypes.readfp", false]], "readframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.readframes", false]], "readframes() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.readframes", false]], "readframes() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.readframes", false]], "readinto() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.readinto", false]], "readinto() (http.client.httpresponse \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPResponse.readinto", false]], "readinto() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.readinto", false]], "readinto() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.readinto", false]], "readinto1() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.readinto1", false]], "readinto1() (io.bytesio \u7684\u65b9\u6cd5)": [[258, "io.BytesIO.readinto1", false]], "readline": [[320, "module-readline", false]], "readline() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readline", false]], "readline() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.readline", false]], "readline() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.readline", false]], "readline() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readline", false]], "readline() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.readline", false]], "readline() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.readline", false]], "readlines() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.readlines", false]], "readlines() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.readlines", false]], "readlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.readlink", false]], "readlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.readlink", false]], "readmodule() (\u65bc pyclbr \u6a21\u7d44\u4e2d)": [[312, "pyclbr.readmodule", false]], "readmodule_ex() (\u65bc pyclbr \u6a21\u7d44\u4e2d)": [[312, "pyclbr.readmodule_ex", false]], "readonly (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.readonly", false]], "readonly\uff08c \u5de8\u96c6\uff09": [[58, "index-3", false]], "readtransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.ReadTransport", false]], "readuntil() (asyncio.streamreader \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamReader.readuntil", false]], "readv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.readv", false]], "ready() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.ready", false]], "real (numbers \u4e2d\u7684\u985e\u5225)": [[289, "numbers.Real", false]], "real (numbers.complex \u7684\u5c6c\u6027)": [[289, "numbers.Complex.real", false]], "real media file format\uff08real media \u6a94\u6848\u683c\u5f0f\uff09": [[153, "index-0", false]], "real_max_memuse (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.real_max_memuse", false]], "real_quick_ratio() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.real_quick_ratio", false]], "realloc\uff08c \u51fd\u5f0f\uff09": [[42, "index-0", false]], "realpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.realpath", false]], "realtime_priority_class (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.REALTIME_PRIORITY_CLASS", false]], "reap_children() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.reap_children", false]], "reap_threads() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.reap_threads", false]], "reason (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.reason", false]], "reason (ssl.sslerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLError.reason", false]], "reason (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.reason", false]], "reason (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.reason", false]], "reason (urllib.error.urlerror \u7684\u5c6c\u6027)": [[393, "urllib.error.URLError.reason", false]], "reattach() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.reattach", false]], "rebinding\uff08\u91cd\u65b0\u7e6b\u7d50\uff09": [[436, "index-4", false]], "reccontrols() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.reccontrols", false]], "recent() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.recent", false]], "reconfigure() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.reconfigure", false]], "record_original_stdout() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.record_original_stdout", false]], "records (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.RECORDS", false]], "records (unittest.testcase \u7684\u5c6c\u6027)": [[388, "unittest.TestCase.records", false]], "records_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.RECORDS_RO", false]], "rect() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.rect", false]], "rectangle() (\u65bc curses.textpad \u6a21\u7d44\u4e2d)": [[177, "curses.textpad.rectangle", false]], "recursionerror": [[213, "RecursionError", false]], "recursive_repr() (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.recursive_repr", false]], "recv() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv", false]], "recv() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recv", false]], "recv_bytes() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv_bytes", false]], "recv_bytes_into() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.recv_bytes_into", false]], "recv_fds() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.recv_fds", false]], "recv_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recv_into", false]], "recvfrom() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvfrom", false]], "recvfrom_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvfrom_into", false]], "recvmsg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvmsg", false]], "recvmsg_into() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.recvmsg_into", false]], "redirect_request() (urllib.request.httpredirecthandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPRedirectHandler.redirect_request", false]], "redirect_stderr() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.redirect_stderr", false]], "redirect_stdout() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.redirect_stdout", false]], "redisplay() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.redisplay", false]], "redrawln() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.redrawln", false]], "redrawwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.redrawwin", false]], "reduce (2to3 fixer)": [[112, "to3fixer-reduce", false]], "reduce() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.reduce", false]], "reducer_override() (pickle.pickler \u7684\u65b9\u6cd5)": [[299, "pickle.Pickler.reducer_override", false]], "ref (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.ref", false]], "refcount_test() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.refcount_test", false]], "reference counting\uff08\u53c3\u7167\u8a08\u6578\uff09": [[428, "index-2", false]], "reference count\uff08\u53c3\u7167\u8a08\u6578\uff09": [[87, "term-reference-count", true]], "referenceerror": [[213, "ReferenceError", false]], "referencetype (\u65bc weakref \u6a21\u7d44\u4e2d)": [[402, "weakref.ReferenceType", false]], "reference\uff08\u53c3\u7167\uff09": [[430, "index-39", false]], "refold_source (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.refold_source", false]], "refresh() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.refresh", false]], "reg_binary (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_BINARY", false]], "reg_dword (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD", false]], "reg_dword_big_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD_BIG_ENDIAN", false]], "reg_dword_little_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_DWORD_LITTLE_ENDIAN", false]], "reg_expand_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_EXPAND_SZ", false]], "reg_full_resource_descriptor (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_FULL_RESOURCE_DESCRIPTOR", false]], "reg_link (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_LINK", false]], "reg_multi_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_MULTI_SZ", false]], "reg_none (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_NONE", false]], "reg_qword (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_QWORD", false]], "reg_qword_little_endian (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_QWORD_LITTLE_ENDIAN", false]], "reg_resource_list (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_RESOURCE_LIST", false]], "reg_resource_requirements_list (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_RESOURCE_REQUIREMENTS_LIST", false]], "reg_sz (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.REG_SZ", false]], "regexflag (re \u4e2d\u7684\u985e\u5225)": [[319, "re.RegexFlag", false]], "register() (abc.abcmeta \u7684\u65b9\u6cd5)": [[116, "abc.ABCMeta.register", false]], "register() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.register", false]], "register() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.register", false]], "register() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.register", false]], "register() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.register", false]], "register() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.register", false]], "register() (\u65bc atexit \u6a21\u7d44\u4e2d)": [[140, "atexit.register", false]], "register() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.register", false]], "register() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.register", false]], "register() (\u65bc webbrowser \u6a21\u7d44\u4e2d)": [[403, "webbrowser.register", false]], "register_adapter() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.register_adapter", false]], "register_archive_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.register_archive_format", false]], "register_at_fork() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.register_at_fork", false]], "register_callback() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.register_callback", false]], "register_converter() (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.register_converter", false]], "register_defect() (email.policy.policy \u7684\u65b9\u6cd5)": [[208, "email.policy.Policy.register_defect", false]], "register_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.register_dialect", false]], "register_error() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.register_error", false]], "register_function() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_function", false]], "register_function() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_function", false]], "register_instance() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_instance", false]], "register_instance() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_instance", false]], "register_introspection_functions() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_introspection_functions", false]], "register_introspection_functions() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_introspection_functions", false]], "register_multicall_functions() (xmlrpc.server.cgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.CGIXMLRPCRequestHandler.register_multicall_functions", false]], "register_multicall_functions() (xmlrpc.server.simplexmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.SimpleXMLRPCServer.register_multicall_functions", false]], "register_namespace() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.register_namespace", false]], "register_optionflag() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.register_optionflag", false]], "register_shape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.register_shape", false]], "register_unpack_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.register_unpack_format", false]], "registerdomimplementation() (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.registerDOMImplementation", false]], "registerresult() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.registerResult", false]], "regtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.REGTYPE", false]], "regular package\uff08\u6b63\u898f\u5957\u4ef6\uff09": [[87, "term-regular-package", true]], "regular\uff08\u4e00\u822c\uff09": [[432, "index-4", false]], "relative_to() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.relative_to", false]], "relative\uff08\u76f8\u5c0d\uff09": [[394, "index-0", false], [436, "index-39", false]], "release() (_thread.lock \u7684\u65b9\u6cd5)": [[115, "thread.lock.release", false]], "release() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.release", false]], "release() (asyncio.lock \u7684\u65b9\u6cd5)": [[138, "asyncio.Lock.release", false]], "release() (asyncio.semaphore \u7684\u65b9\u6cd5)": [[138, "asyncio.Semaphore.release", false]], "release() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.release", false]], "release() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.release", false]], "release() (multiprocessing.lock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Lock.release", false]], "release() (multiprocessing.rlock \u7684\u65b9\u6cd5)": [[283, "multiprocessing.RLock.release", false]], "release() (pickle.picklebuffer \u7684\u65b9\u6cd5)": [[299, "pickle.PickleBuffer.release", false]], "release() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.release", false]], "release() (threading.lock \u7684\u65b9\u6cd5)": [[365, "threading.Lock.release", false]], "release() (threading.rlock \u7684\u65b9\u6cd5)": [[365, "threading.RLock.release", false]], "release() (threading.semaphore \u7684\u65b9\u6cd5)": [[365, "threading.Semaphore.release", false]], "release() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.release", false]], "releasebufferproc (c type)": [[63, "c.releasebufferproc", false]], "reload (2to3 fixer)": [[112, "to3fixer-reload", false]], "reload() (\u65bc importlib \u6a21\u7d44\u4e2d)": [[250, "importlib.reload", false]], "relpath() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.relpath", false]], "remainder() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.remainder", false]], "remainder() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.remainder", false]], "remainder_near() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.remainder_near", false]], "remainder_near() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.remainder_near", false]], "remotedisconnected": [[242, "http.client.RemoteDisconnected", false]], "remove() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.remove", false]], "remove() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.remove", false]], "remove() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.remove", false]], "remove() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.remove", false]], "remove() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.remove", false]], "remove() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.remove", false]], "remove() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.remove", false]], "remove()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "remove_child_handler() (asyncio.abstractchildwatcher \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractChildWatcher.remove_child_handler", false]], "remove_done_callback() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.remove_done_callback", false]], "remove_done_callback() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.remove_done_callback", false]], "remove_flag() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.remove_flag", false]], "remove_flag() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.remove_flag", false]], "remove_flag() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.remove_flag", false]], "remove_folder() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.remove_folder", false]], "remove_folder() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.remove_folder", false]], "remove_header() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.remove_header", false]], "remove_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.remove_history_item", false]], "remove_label() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.remove_label", false]], "remove_option() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.remove_option", false]], "remove_option() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.remove_option", false]], "remove_pyc() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.remove_pyc", false]], "remove_reader() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_reader", false]], "remove_section() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.remove_section", false]], "remove_sequence() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.remove_sequence", false]], "remove_signal_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_signal_handler", false]], "remove_writer() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.remove_writer", false]], "removeattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttribute", false]], "removeattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttributeNode", false]], "removeattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.removeAttributeNS", false]], "removechild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.removeChild", false]], "removedirs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.removedirs", false]], "removefilter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.removeFilter", false]], "removefilter() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.removeFilter", false]], "removehandler() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.removeHandler", false]], "removehandler() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.removeHandler", false]], "removeprefix() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.removeprefix", false]], "removeprefix() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.removeprefix", false]], "removeprefix() (str \u7684\u65b9\u6cd5)": [[344, "str.removeprefix", false]], "removeresult() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.removeResult", false]], "removesuffix() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.removesuffix", false]], "removesuffix() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.removesuffix", false]], "removesuffix() (str \u7684\u65b9\u6cd5)": [[344, "str.removesuffix", false]], "removexattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.removexattr", false]], "rename() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.rename", false]], "rename() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.rename", false]], "rename() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rename", false]], "rename() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.rename", false]], "renames (2to3 fixer)": [[112, "to3fixer-renames", false]], "renames() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.renames", false]], "reopenifneeded() (logging.handlers.watchedfilehandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.WatchedFileHandler.reopenIfNeeded", false]], "reorganize() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.reorganize", false]], "repeat() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.repeat", false]], "repeat() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.repeat", false]], "repeat() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.repeat", false]], "repetition\uff08\u91cd\u8907\uff09": [[344, "index-20", false]], "replace": [[158, "index-1", false]], "replace() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.replace", false]], "replace() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.replace", false]], "replace() (codeobject \u7684\u65b9\u6cd5)": [[428, "codeobject.replace", false]], "replace() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.replace", false]], "replace() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.replace", false]], "replace() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.replace", false]], "replace() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.replace", false]], "replace() (inspect.parameter \u7684\u65b9\u6cd5)": [[255, "inspect.Parameter.replace", false]], "replace() (inspect.signature \u7684\u65b9\u6cd5)": [[255, "inspect.Signature.replace", false]], "replace() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.replace", false]], "replace() (str \u7684\u65b9\u6cd5)": [[344, "str.replace", false]], "replace() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.replace", false]], "replace() (\u65bc dataclasses \u6a21\u7d44\u4e2d)": [[181, "dataclasses.replace", false]], "replace() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.replace", false]], "replace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.replace_errors", false]], "replace_header() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.replace_header", false]], "replace_header() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.replace_header", false]], "replace_history_item() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.replace_history_item", false]], "replace_whitespace (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.replace_whitespace", false]], "replacechild() (xml.dom.node \u7684\u65b9\u6cd5)": [[410, "xml.dom.Node.replaceChild", false]], "replacement character\uff08\u66ff\u4ee3\u5b57\u5143\uff09": [[158, "index-1", false]], "replacepackage() (\u65bc modulefinder \u6a21\u7d44\u4e2d)": [[279, "modulefinder.ReplacePackage", false]], "report() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report", false]], "report() (modulefinder.modulefinder \u7684\u65b9\u6cd5)": [[279, "modulefinder.ModuleFinder.report", false]], "report_cdiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_CDIFF", false]], "report_failure() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_failure", false]], "report_full_closure() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report_full_closure", false]], "report_ndiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_NDIFF", false]], "report_only_first_failure (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_ONLY_FIRST_FAILURE", false]], "report_partial_closure() (filecmp.dircmp \u7684\u65b9\u6cd5)": [[216, "filecmp.dircmp.report_partial_closure", false]], "report_start() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_start", false]], "report_success() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_success", false]], "report_udiff (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORT_UDIFF", false]], "report_unexpected_exception() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.report_unexpected_exception", false]], "reporting_flags (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.REPORTING_FLAGS", false]], "repr": [[49, "index-0", false], [63, "index-1", false], [75, "index-3", false], [436, "index-3", false]], "repr (2to3 fixer)": [[112, "to3fixer-repr", false]], "repr (reprlib \u4e2d\u7684\u985e\u5225)": [[321, "reprlib.Repr", false]], "repr()": [[225, "repr", false]], "repr() (reprlib.repr \u7684\u65b9\u6cd5)": [[321, "reprlib.Repr.repr", false]], "repr() (\u65bc reprlib \u6a21\u7d44\u4e2d)": [[321, "reprlib.repr", false]], "repr() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[428, "index-75", false]], "repr1() (reprlib.repr \u7684\u65b9\u6cd5)": [[321, "reprlib.Repr.repr1", false]], "reprenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.ReprEnum", false]], "representation\uff08\u8868\u793a\uff09": [[428, "index-11", false]], "reprfunc (c type)": [[63, "c.reprfunc", false]], "reprlib": [[321, "module-reprlib", false]], "request (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.request", false]], "request (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.Request", false]], "request() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.request", false]], "request_queue_size (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.request_queue_size", false]], "request_rate() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.request_rate", false]], "request_uri() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.request_uri", false]], "request_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.request_version", false]], "requesthandlerclass (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.RequestHandlerClass", false]], "requestline (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.requestline", false]], "required (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Required", false]], "requires() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires", false]], "requires_bz2() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_bz2", false]], "requires_docstrings() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_docstrings", false]], "requires_freebsd_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_freebsd_version", false]], "requires_gzip() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_gzip", false]], "requires_ieee_754() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_IEEE_754", false]], "requires_limited_api() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_limited_api", false]], "requires_linux_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_linux_version", false]], "requires_lzma() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_lzma", false]], "requires_mac_version() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_mac_version", false]], "requires_resource() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_resource", false]], "requires_zlib() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.requires_zlib", false]], "reraise (monitoring event)": [[353, "monitoring-event-RERAISE", false]], "reraise (opcode)": [[191, "opcode-RERAISE", false]], "reschedule() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.reschedule", false]], "reserved (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.reserved", false]], "reserved word\uff08\u4fdd\u7559\u5b57\uff09": [[435, "index-13", false]], "reserved_future (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_FUTURE", false]], "reserved_microsoft (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_MICROSOFT", false]], "reserved_ncs (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RESERVED_NCS", false]], "reset() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.reset", false]], "reset() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.reset", false]], "reset() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.reset", false]], "reset() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.reset", false]], "reset() (codecs.streamreader \u7684\u65b9\u6cd5)": [[158, "codecs.StreamReader.reset", false]], "reset() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.reset", false]], "reset() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.reset", false]], "reset() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.reset", false]], "reset() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.reset", false]], "reset() (pipes.template \u7684\u65b9\u6cd5)": [[301, "pipes.Template.reset", false]], "reset() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.reset", false]], "reset() (xdrlib.packer \u7684\u65b9\u6cd5)": [[408, "xdrlib.Packer.reset", false]], "reset() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.reset", false]], "reset() (xml.dom.pulldom.domeventstream \u7684\u65b9\u6cd5)": [[412, "xml.dom.pulldom.DOMEventStream.reset", false]], "reset() (xml.sax.xmlreader.incrementalparser \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.IncrementalParser.reset", false]], "reset() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.reset", false]], "reset_mock() (unittest.mock.asyncmock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.AsyncMock.reset_mock", false]], "reset_mock() (unittest.mock.mock \u7684\u65b9\u6cd5)": [[389, "unittest.mock.Mock.reset_mock", false]], "reset_peak() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.reset_peak", false]], "reset_prog_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.reset_prog_mode", false]], "reset_shell_mode() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.reset_shell_mode", false]], "reset_tzpath() (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.reset_tzpath", false]], "resetbuffer() (code.interactiveconsole \u7684\u65b9\u6cd5)": [[157, "code.InteractiveConsole.resetbuffer", false]], "resetlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.resetlocale", false]], "resetscreen() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.resetscreen", false]], "resetty() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resetty", false]], "resetwarnings() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.resetwarnings", false]], "resize() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.resize", false]], "resize() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.resize", false]], "resize() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.resize", false]], "resize_term() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resize_term", false]], "resizemode() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.resizemode", false]], "resizeterm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.resizeterm", false]], "resolution (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.resolution", false]], "resolution (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.resolution", false]], "resolution (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.resolution", false]], "resolution (datetime.timedelta \u7684\u5c6c\u6027)": [[183, "datetime.timedelta.resolution", false]], "resolve() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.resolve", false]], "resolve_bases() (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.resolve_bases", false]], "resolve_name() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.resolve_name", false]], "resolve_name() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.resolve_name", false]], "resolveentity() (xml.sax.handler.entityresolver \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.EntityResolver.resolveEntity", false]], "resource": [[322, "module-resource", false]], "resource (\u65bc importlib.resources \u6a21\u7d44\u4e2d)": [[252, "importlib.resources.Resource", false]], "resource_path() (importlib.abc.resourcereader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.ResourceReader.resource_path", false]], "resource_path() (importlib.resources.abc.resourcereader \u7684\u65b9\u6cd5)": [[253, "importlib.resources.abc.ResourceReader.resource_path", false]], "resourcedenied": [[362, "test.support.ResourceDenied", false]], "resourceloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ResourceLoader", false]], "resourcereader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.ResourceReader", false]], "resourcereader (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.ResourceReader", false]], "resourcewarning": [[213, "ResourceWarning", false]], "response (nntplib.nntperror \u7684\u5c6c\u6027)": [[288, "nntplib.NNTPError.response", false]], "response() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.response", false]], "responsenotready": [[242, "http.client.ResponseNotReady", false]], "responses (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.responses", false]], "responses (\u65bc http.client \u6a21\u7d44\u4e2d)": [[242, "http.client.responses", false]], "restart (pdb command)": [[297, "pdbcommand-restart", false]], "restart_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.restart_events", false]], "restore() (test.support.savesignals \u7684\u65b9\u6cd5)": [[362, "test.support.SaveSignals.restore", false]], "restore() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.restore", false]], "restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "restricted\uff08\u53d7\u9650\uff09": [[429, "index-13", false]], "restype (ctypes._funcptr \u7684\u5c6c\u6027)": [[176, "ctypes._FuncPtr.restype", false]], "result() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.result", false]], "result() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.result", false]], "result() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.result", false]], "results() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.results", false]], "resume (opcode)": [[191, "opcode-RESUME", false]], "resume_reading() (asyncio.readtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.ReadTransport.resume_reading", false]], "resume_writing() (asyncio.baseprotocol \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseProtocol.resume_writing", false]], "retr() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.retr", false]], "retrbinary() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.retrbinary", false]], "retrieve() (urllib.request.urlopener \u7684\u65b9\u6cd5)": [[395, "urllib.request.URLopener.retrieve", false]], "retrlines() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.retrlines", false]], "retry (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.RETRY", false]], "retrycancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.RETRYCANCEL", false]], "return (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Return", false]], "return (pdb command)": [[297, "pdbcommand-return", false]], "return \uff08\u56de\u50b3\uff09": [[427, "index-13", false], [427, "index-15", false], [436, "index-24", true]], "return_annotation (inspect.signature \u7684\u5c6c\u6027)": [[255, "inspect.Signature.return_annotation", false]], "return_const (opcode)": [[191, "opcode-RETURN_CONST", false]], "return_generator (opcode)": [[191, "opcode-RETURN_GENERATOR", false]], "return_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.return_ok", false]], "return_value (opcode)": [[191, "opcode-RETURN_VALUE", false]], "return_value (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.return_value", false]], "returncode (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.returncode", false]], "returncode (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.returncode", false]], "returncode (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.returncode", false]], "returncode (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.returncode", false]], "retval (pdb command)": [[297, "pdbcommand-retval", false]], "reveal_type() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.reveal_type", false]], "reverse() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.reverse", false]], "reverse() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.reverse", false]], "reverse() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.reverse", false]], "reverse()\uff08\u5e8f\u5217\u65b9\u6cd5\uff09": [[344, "index-24", false]], "reverse_order() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.reverse_order", false]], "reverse_pointer (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.reverse_pointer", false]], "reverse_pointer (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.reverse_pointer", false]], "reversed()": [[225, "reversed", false]], "reversible (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Reversible", false]], "reversible (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Reversible", false]], "revert() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.revert", false]], "rewind() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.rewind", false]], "rewind() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.rewind", false]], "rewind() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.rewind", false]], "rfc": [[68, "index-12", false], [101, "index-0", false], [102, "index-0", false], [102, "index-1", false], [102, "index-2", false], [102, "index-3", false], [102, "index-4", false], [102, "index-5", false], [110, "index-1", false], [110, "index-2", false], [110, "index-4", false], [126, "index-15", false], [126, "index-16", false], [143, "index-25", false], [143, "index-26", false], [143, "index-27", false], [143, "index-28", false], [143, "index-29", false], [143, "index-30", false], [143, "index-31", false], [143, "index-32", false], [143, "index-33", false], [143, "index-34", false], [143, "index-35", false], [143, "index-36", false], [146, "index-1", false], [146, "index-2", false], [146, "index-3", false], [158, "index-10", false], [158, "index-11", false], [158, "index-12", false], [158, "index-13", false], [158, "index-14", false], [158, "index-6", false], [158, "index-7", false], [158, "index-8", false], [158, "index-9", false], [175, "index-6", false], [194, "index-0", false], [194, "index-1", false], [194, "index-2", false], [194, "index-3", false], [194, "index-4", false], [194, "index-5", false], [194, "index-6", false], [194, "index-7", false], [196, "index-0", false], [196, "index-1", false], [196, "index-10", false], [196, "index-11", false], [196, "index-2", false], [196, "index-3", false], [196, "index-4", false], [196, "index-5", false], [196, "index-6", false], [196, "index-7", false], [196, "index-8", false], [196, "index-9", false], [197, "index-0", false], [199, "index-0", false], [200, "index-0", false], [201, "index-0", false], [201, "index-1", false], [202, "index-0", false], [202, "index-1", false], [202, "index-10", false], [202, "index-11", false], [202, "index-12", false], [202, "index-13", false], [202, "index-2", false], [202, "index-3", false], [202, "index-4", false], [202, "index-5", false], [202, "index-6", false], [202, "index-7", false], [202, "index-8", false], [202, "index-9", false], [203, "index-0", false], [203, "index-1", false], [203, "index-10", false], [203, "index-11", false], [203, "index-12", false], [203, "index-13", false], [203, "index-14", false], [203, "index-2", false], [203, "index-3", false], [203, "index-4", false], [203, "index-5", false], [203, "index-6", false], [203, "index-7", false], [203, "index-8", false], [203, "index-9", false], [205, "index-0", false], [205, "index-1", false], [205, "index-10", false], [205, "index-2", false], [205, "index-3", false], [205, "index-4", false], [205, "index-5", false], [205, "index-6", false], [205, "index-7", false], [205, "index-8", false], [205, "index-9", false], [207, "index-0", false], [207, "index-1", false], [208, "index-0", false], [208, "index-1", false], [208, "index-2", false], [208, "index-3", false], [208, "index-4", false], [208, "index-5", false], [208, "index-6", false], [208, "index-7", false], [208, "index-8", false], [208, "index-9", false], [209, "index-0", false], [209, "index-1", false], [209, "index-10", false], [209, "index-2", false], [209, "index-3", false], [209, "index-4", false], [209, "index-5", false], [209, "index-6", false], [209, "index-7", false], [209, "index-8", false], [209, "index-9", false], [223, "index-12", false], [223, "index-13", false], [223, "index-14", false], [223, "index-15", false], [223, "index-16", false], [223, "index-5", false], [230, "index-9", false], [235, "index-1", false], [235, "index-3", false], [235, "index-5", false], [237, "index-2", false], [241, "index-152", false], [241, "index-153", false], [241, "index-154", false], [241, "index-155", false], [241, "index-156", false], [241, "index-157", false], [241, "index-158", false], [241, "index-159", false], [241, "index-160", false], [241, "index-161", false], [241, "index-162", false], [241, "index-163", false], [241, "index-164", false], [241, "index-165", false], [241, "index-166", false], [241, "index-167", false], [241, "index-168", false], [241, "index-169", false], [241, "index-170", false], [241, "index-171", false], [241, "index-172", false], [241, "index-173", false], [241, "index-174", false], [241, "index-175", false], [241, "index-176", false], [241, "index-177", false], [241, "index-178", false], [241, "index-179", false], [241, "index-180", false], [241, "index-181", false], [241, "index-182", false], [241, "index-183", false], [241, "index-184", false], [241, "index-185", false], [241, "index-186", false], [241, "index-187", false], [241, "index-188", false], [241, "index-189", false], [241, "index-190", false], [241, "index-191", false], [241, "index-192", false], [241, "index-193", false], [241, "index-194", false], [241, "index-195", false], [241, "index-196", false], [241, "index-197", false], [241, "index-198", false], [241, "index-199", false], [241, "index-200", false], [241, "index-201", false], [241, "index-202", false], [241, "index-203", false], [241, "index-204", false], [241, "index-205", false], [241, "index-206", false], [241, "index-207", false], [241, "index-208", false], [241, "index-209", false], [241, "index-210", false], [241, "index-211", false], [241, "index-212", false], [241, "index-213", false], [241, "index-214", false], [241, "index-215", false], [241, "index-216", false], [241, "index-217", false], [241, "index-218", false], [241, "index-219", false], [241, "index-220", false], [241, "index-221", false], [241, "index-222", false], [241, "index-223", false], [241, "index-224", false], [241, "index-225", false], [241, "index-226", false], [241, "index-76", false], [242, "index-2", false], [242, "index-3", false], [242, "index-4", false], [242, "index-5", false], [242, "index-6", false], [242, "index-7", false], [243, "index-0", false], [243, "index-1", false], [243, "index-10", false], [243, "index-11", false], [243, "index-12", false], [243, "index-13", false], [243, "index-14", false], [243, "index-15", false], [243, "index-16", false], [243, "index-17", false], [243, "index-18", false], [243, "index-19", false], [243, "index-2", false], [243, "index-20", false], [243, "index-21", false], [243, "index-22", false], [243, "index-23", false], [243, "index-24", false], [243, "index-25", false], [243, "index-3", false], [243, "index-4", false], [243, "index-5", false], [243, "index-6", false], [243, "index-7", false], [243, "index-8", false], [243, "index-9", false], [244, "index-0", false], [244, "index-1", false], [244, "index-2", false], [244, "index-3", false], [244, "index-4", false], [244, "index-5", false], [244, "index-6", false], [244, "index-7", false], [245, "index-1", false], [245, "index-2", false], [248, "index-1", false], [248, "index-2", false], [248, "index-3", false], [248, "index-4", false], [248, "index-5", false], [248, "index-6", false], [248, "index-7", false], [248, "index-8", false], [254, "index-12", false], [256, "index-12", false], [259, "index-0", false], [259, "index-1", false], [259, "index-10", false], [259, "index-11", false], [259, "index-12", false], [259, "index-13", false], [259, "index-2", false], [259, "index-3", false], [259, "index-4", false], [259, "index-5", false], [259, "index-6", false], [259, "index-7", false], [259, "index-8", false], [259, "index-9", false], [262, "index-2", false], [262, "index-3", false], [262, "index-4", false], [262, "index-7", false], [262, "index-8", false], [266, "index-4", false], [266, "index-5", false], [269, "index-0", false], [271, "index-0", false], [272, "index-1", false], [272, "index-2", false], [288, "index-10", false], [288, "index-2", false], [288, "index-3", false], [288, "index-4", false], [288, "index-5", false], [288, "index-6", false], [288, "index-7", false], [288, "index-8", false], [288, "index-9", false], [305, "index-1", false], [305, "index-2", false], [305, "index-3", false], [305, "index-4", false], [305, "index-5", false], [305, "index-6", false], [317, "index-10", false], [317, "index-11", false], [317, "index-12", false], [317, "index-9", false], [327, "index-5", false], [335, "index-1", false], [335, "index-10", false], [335, "index-11", false], [335, "index-12", false], [335, "index-2", false], [335, "index-3", false], [335, "index-4", false], [335, "index-5", false], [335, "index-6", false], [335, "index-7", false], [335, "index-8", false], [335, "index-9", false], [337, "index-15", false], [337, "index-3", false], [341, "index-10", false], [341, "index-11", false], [341, "index-12", false], [341, "index-13", false], [341, "index-16", false], [341, "index-17", false], [341, "index-18", false], [341, "index-19", false], [341, "index-20", false], [341, "index-21", false], [341, "index-22", false], [341, "index-34", false], [341, "index-35", false], [341, "index-36", false], [341, "index-37", false], [341, "index-38", false], [346, "index-0", false], [346, "index-1", false], [359, "index-2", false], [359, "index-3", false], [366, "index-10", false], [366, "index-19", false], [366, "index-20", false], [366, "index-21", false], [366, "index-22", false], [393, "index-2", false], [394, "index-1", false], [394, "index-10", false], [394, "index-11", false], [394, "index-12", false], [394, "index-13", false], [394, "index-18", false], [394, "index-19", false], [394, "index-2", false], [394, "index-3", false], [394, "index-4", false], [394, "index-5", false], [394, "index-6", false], [394, "index-7", false], [394, "index-8", false], [394, "index-9", false], [395, "index-15", false], [395, "index-16", false], [395, "index-17", false], [395, "index-4", false], [395, "index-5", false], [395, "index-6", false], [395, "index-7", false], [395, "index-8", false], [398, "index-12", false], [398, "index-19", false], [398, "index-20", false], [398, "index-21", false], [398, "index-22", false], [398, "index-23", false], [398, "index-24", false], [407, "index-43", false], [407, "index-48", false], [408, "index-2", false], [408, "index-3", false], [408, "index-4", false], [408, "index-5", false], [419, "index-0", false], [451, "index-3", false], [464, "index-17", false], [464, "index-18", false], [464, "index-19", false], [464, "index-20", false], [464, "index-21", false], [466, "index-18", false], [467, "index-22", false], [467, "index-23", false], [468, "index-22", false], [468, "index-23", false], [469, "index-10", false], [469, "index-12", false], [469, "index-9", false], [472, "index-32", false], [475, "index-11", false], [475, "index-12", false], [475, "index-13", false], [475, "index-7", false], [475, "index-8", false], [476, "index-26", false], [476, "index-27", false], [478, "index-31", false], [478, "index-32", false], [478, "index-33", false], [478, "index-34", false], [478, "index-35", false], [478, "index-36", false], [478, "index-37", false], [478, "index-38", false], [478, "index-39", false], [478, "index-40", false], [478, "index-41", false], [478, "index-42", false], [478, "index-43", false], [478, "index-44", false], [478, "index-51", false], [480, "index-34", false], [480, "index-35", false], [481, "index-25", false], [482, "index-22", false], [482, "index-28", false], [483, "index-1", false], [483, "index-178", false], [483, "index-219", false], [483, "index-35", false], [483, "index-36", false], [483, "index-37", false], [483, "index-45", false], [483, "index-86", false], [483, "index-92", false], [483, "index-94", false]], "rfc 1014": [[408, "index-2", false], [408, "index-3", false]], "rfc 1123": [[366, "index-21", false]], "rfc 1321": [[235, "index-1", false]], "rfc 1422": [[341, "index-16", false], [341, "index-17", false]], "rfc 1521": [[143, "index-36", false], [317, "index-11", false], [317, "index-9", false]], "rfc 1522": [[146, "index-3", false], [317, "index-10", false], [317, "index-12", false]], "rfc 1524": [[272, "index-1", false], [272, "index-2", false]], "rfc 1730": [[248, "index-2", false]], "rfc 1738": [[394, "index-19", false]], "rfc 1750": [[341, "index-34", false]], "rfc 1766": [[266, "index-4", false], [266, "index-5", false]], "rfc 1808": [[394, "index-1", false], [394, "index-18", false], [394, "index-3", false], [478, "index-43", false]], "rfc 1832": [[408, "index-4", false], [408, "index-5", false]], "rfc 1869": [[335, "index-2", false], [335, "index-5", false]], "rfc 1870": [[476, "index-27", false]], "rfc 1939": [[305, "index-1", false], [305, "index-2", false]], "rfc 2014": [[237, "index-2", false]], "rfc 2033": [[468, "index-22", false]], "rfc 2045": [[143, "index-28", false], [143, "index-29", false], [143, "index-33", false], [143, "index-34", false], [194, "index-3", false], [196, "index-4", false], [196, "index-5", false], [196, "index-6", false], [196, "index-9", false], [202, "index-4", false], [203, "index-10", false], [203, "index-9", false], [205, "index-6", false], [205, "index-7", false], [205, "index-8", false]], "rfc 2045#section-6.8": [[419, "index-0", false]], "rfc 2046": [[194, "index-4", false], [197, "index-0", false], [202, "index-5", false]], "rfc 2047": [[194, "index-5", false], [202, "index-11", false], [202, "index-13", false], [202, "index-6", false], [202, "index-8", false], [203, "index-1", false], [203, "index-4", false], [203, "index-6", false], [208, "index-3", false], [208, "index-4", false], [209, "index-1", false], [475, "index-11", false], [475, "index-8", false]], "rfc 2060": [[248, "index-1", false], [248, "index-7", false]], "rfc 2068": [[244, "index-1", false]], "rfc 2104": [[464, "index-17", false]], "rfc 2109": [[243, "index-1", false], [243, "index-15", false], [243, "index-21", false], [243, "index-23", false], [243, "index-24", false], [243, "index-3", false], [243, "index-4", false], [243, "index-6", false], [244, "index-0", false], [244, "index-2", false], [244, "index-3", false], [244, "index-4", false], [244, "index-5", false], [244, "index-6", false], [244, "index-7", false]], "rfc 2183": [[194, "index-6", false], [196, "index-11", false], [205, "index-10", false]], "rfc 2231": [[194, "index-7", false], [196, "index-10", false], [196, "index-2", false], [196, "index-3", false], [196, "index-7", false], [196, "index-8", false], [202, "index-7", false], [205, "index-4", false], [205, "index-5", false], [205, "index-9", false], [209, "index-5", false], [209, "index-6", false], [209, "index-7", false], [209, "index-8", false], [209, "index-9", false], [483, "index-1", false]], "rfc 2295": [[241, "index-209", false]], "rfc 2324": [[241, "index-192", false]], "rfc 2342": [[248, "index-6", false], [464, "index-19", false]], "rfc 2368": [[394, "index-13", false]], "rfc 2373": [[259, "index-1", false], [259, "index-3", false], [259, "index-5", false]], "rfc 2396": [[394, "index-12", false], [394, "index-5", false], [394, "index-8", false], [478, "index-44", false], [480, "index-34", false]], "rfc 2397": [[395, "index-7", false]], "rfc 2449": [[305, "index-4", false]], "rfc 2487": [[464, "index-18", false]], "rfc 2518": [[241, "index-154", false]], "rfc 2595": [[305, "index-3", false], [305, "index-6", false]], "rfc 2616": [[110, "index-1", false], [110, "index-2", false], [110, "index-4", false], [393, "index-2", false], [395, "index-5", false], [395, "index-6", false], [395, "index-8", false], [407, "index-43", false], [407, "index-48", false], [475, "index-7", false]], "rfc 2616#section-14.23": [[242, "index-4", false]], "rfc 2616#section-5.1.2": [[242, "index-3", false], [242, "index-5", false]], "rfc 2640": [[223, "index-13", false], [223, "index-14", false], [223, "index-16", false], [482, "index-22", false], [483, "index-178", false]], "rfc 2732": [[394, "index-11", false], [469, "index-10", false], [475, "index-13", false]], "rfc 2774": [[241, "index-212", false]], "rfc 2818": [[475, "index-12", false]], "rfc 2821": [[194, "index-0", false]], "rfc 2822": [[196, "index-1", false], [202, "index-0", false], [202, "index-10", false], [202, "index-12", false], [202, "index-2", false], [202, "index-3", false], [202, "index-9", false], [209, "index-0", false], [209, "index-10", false], [209, "index-2", false], [209, "index-3", false], [209, "index-4", false], [242, "index-2", false], [245, "index-2", false], [271, "index-0", false], [366, "index-10", false], [366, "index-22", false], [451, "index-3", false], [464, "index-20", false]], "rfc 2964": [[243, "index-10", false]], "rfc 2965": [[243, "index-0", false], [243, "index-11", false], [243, "index-12", false], [243, "index-13", false], [243, "index-14", false], [243, "index-16", false], [243, "index-17", false], [243, "index-18", false], [243, "index-19", false], [243, "index-2", false], [243, "index-20", false], [243, "index-22", false], [243, "index-25", false], [243, "index-5", false], [243, "index-7", false], [243, "index-8", false], [243, "index-9", false], [395, "index-16", false], [395, "index-17", false], [395, "index-4", false]], "rfc 2980": [[288, "index-4", false], [288, "index-9", false]], "rfc 3056": [[259, "index-12", false]], "rfc 3164": [[102, "index-5", false]], "rfc 3171": [[259, "index-0", false]], "rfc 3207": [[468, "index-23", false]], "rfc 3229": [[241, "index-165", false]], "rfc 3280": [[341, "index-10", false]], "rfc 3330": [[259, "index-4", false]], "rfc 3339": [[101, "index-0", false]], "rfc 3454": [[346, "index-0", false], [346, "index-1", false], [483, "index-35", false]], "rfc 3490": [[158, "index-13", false], [158, "index-14", false], [158, "index-6", false], [158, "index-8", false]], "rfc 3490#section-3.1": [[158, "index-12", false]], "rfc 3491": [[483, "index-37", false]], "rfc 3492": [[158, "index-7", false], [158, "index-9", false]], "rfc 3493": [[337, "index-15", false]], "rfc 3501": [[248, "index-8", false]], "rfc 3542": [[337, "index-3", false], [483, "index-219", false]], "rfc 3548": [[146, "index-1", false], [146, "index-2", false], [466, "index-18", false]], "rfc 3659": [[223, "index-15", false]], "rfc 3879": [[259, "index-9", false]], "rfc 3927": [[259, "index-6", false]], "rfc 3977": [[288, "index-10", false], [288, "index-2", false], [288, "index-6", false], [288, "index-7", false], [288, "index-8", false]], "rfc 3986": [[245, "index-1", false], [394, "index-10", false], [394, "index-2", false], [394, "index-4", false], [394, "index-6", false], [394, "index-7", false], [394, "index-9", false], [469, "index-12", false], [469, "index-9", false], [472, "index-32", false], [478, "index-42", false], [480, "index-35", false], [481, "index-25", false], [482, "index-28", false]], "rfc 4007": [[259, "index-11", false], [259, "index-8", false]], "rfc 4086": [[341, "index-18", false]], "rfc 4122": [[68, "index-12", false], [254, "index-12", false], [256, "index-12", false], [398, "index-12", false], [398, "index-19", false], [398, "index-20", false], [398, "index-21", false], [398, "index-22", false], [398, "index-23", false], [398, "index-24", false], [467, "index-22", false], [467, "index-23", false]], "rfc 4180": [[175, "index-6", false]], "rfc 4193": [[259, "index-10", false]], "rfc 4217": [[223, "index-5", false]], "rfc 4291": [[259, "index-7", false], [483, "index-92", false]], "rfc 4380": [[259, "index-13", false]], "rfc 4627": [[262, "index-3", false], [262, "index-8", false]], "rfc 4642": [[288, "index-5", false]], "rfc 4648": [[143, "index-25", false], [143, "index-26", false], [143, "index-27", false], [143, "index-30", false], [143, "index-31", false], [143, "index-32", false], [143, "index-35", false], [327, "index-5", false], [483, "index-94", false]], "rfc 4918": [[241, "index-163", false], [241, "index-194", false], [241, "index-195", false], [241, "index-196", false], [241, "index-210", false]], "rfc 4954": [[335, "index-7", false], [335, "index-8", false]], "rfc 5161": [[248, "index-3", false], [478, "index-33", false]], "rfc 5246": [[341, "index-20", false], [341, "index-38", false]], "rfc 5280": [[341, "index-19", false], [341, "index-35", false], [478, "index-41", false], [478, "index-51", false]], "rfc 5321": [[203, "index-13", false], [476, "index-26", false]], "rfc 5322": [[194, "index-1", false], [196, "index-0", false], [199, "index-0", false], [201, "index-0", false], [201, "index-1", false], [203, "index-0", false], [203, "index-11", false], [203, "index-12", false], [203, "index-14", false], [203, "index-2", false], [203, "index-3", false], [203, "index-5", false], [203, "index-7", false], [203, "index-8", false], [205, "index-0", false], [205, "index-2", false], [207, "index-0", false], [208, "index-0", false], [208, "index-1", false], [208, "index-2", false], [208, "index-5", false], [208, "index-6", false], [208, "index-9", false], [335, "index-11", false]], "rfc 5424": [[102, "index-0", false], [102, "index-2", false], [102, "index-3", false], [102, "index-4", false], [269, "index-0", false]], "rfc 5424#section-6": [[102, "index-1", false]], "rfc 5735": [[259, "index-2", false]], "rfc 5789": [[241, "index-76", false]], "rfc 5842": [[241, "index-164", false], [241, "index-211", false]], "rfc 5891": [[158, "index-10", false]], "rfc 5894": [[483, "index-36", false]], "rfc 5895": [[158, "index-11", false]], "rfc 5929": [[341, "index-11", false]], "rfc 6066": [[341, "index-13", false], [341, "index-21", false], [341, "index-37", false]], "rfc 6152": [[478, "index-37", false]], "rfc 6531": [[205, "index-3", false], [208, "index-8", false], [335, "index-3", false], [478, "index-32", false], [478, "index-38", false], [478, "index-39", false]], "rfc 6532": [[194, "index-2", false], [205, "index-1", false], [207, "index-1", false], [208, "index-7", false], [478, "index-31", false]], "rfc 6585": [[241, "index-199", false], [241, "index-200", false], [241, "index-201", false], [241, "index-213", false]], "rfc 6855": [[248, "index-4", false], [248, "index-5", false], [478, "index-34", false], [478, "index-35", false]], "rfc 6856": [[305, "index-5", false], [478, "index-36", false]], "rfc 7159": [[262, "index-2", false], [262, "index-4", false], [262, "index-7", false]], "rfc 7230": [[242, "index-7", false], [395, "index-15", false]], "rfc 7231": [[241, "index-152", false], [241, "index-153", false], [241, "index-156", false], [241, "index-157", false], [241, "index-158", false], [241, "index-159", false], [241, "index-160", false], [241, "index-161", false], [241, "index-166", false], [241, "index-167", false], [241, "index-168", false], [241, "index-169", false], [241, "index-171", false], [241, "index-172", false], [241, "index-174", false], [241, "index-176", false], [241, "index-177", false], [241, "index-178", false], [241, "index-179", false], [241, "index-180", false], [241, "index-182", false], [241, "index-183", false], [241, "index-184", false], [241, "index-185", false], [241, "index-187", false], [241, "index-188", false], [241, "index-189", false], [241, "index-191", false], [241, "index-198", false], [241, "index-203", false], [241, "index-204", false], [241, "index-205", false], [241, "index-206", false], [241, "index-207", false], [241, "index-208", false], [241, "index-214", false], [241, "index-215", false], [241, "index-216", false], [241, "index-217", false], [241, "index-218", false], [241, "index-219", false], [241, "index-220", false], [241, "index-221", false], [241, "index-222", false], [241, "index-223", false], [241, "index-224", false], [241, "index-225", false], [241, "index-226", false]], "rfc 7232": [[241, "index-170", false], [241, "index-186", false]], "rfc 7233": [[241, "index-162", false], [241, "index-190", false]], "rfc 7235": [[241, "index-175", false], [241, "index-181", false]], "rfc 7238": [[241, "index-173", false]], "rfc 7301": [[341, "index-12", false], [341, "index-36", false], [478, "index-40", false]], "rfc 7525": [[341, "index-22", false]], "rfc 7538": [[483, "index-86", false]], "rfc 7540": [[241, "index-193", false]], "rfc 7693": [[235, "index-5", false]], "rfc 7725": [[241, "index-202", false]], "rfc 7914": [[235, "index-3", false]], "rfc 821": [[335, "index-1", false], [335, "index-4", false]], "rfc 822": [[200, "index-0", false], [202, "index-1", false], [230, "index-9", false], [242, "index-6", false], [335, "index-10", false], [335, "index-12", false], [335, "index-6", false], [335, "index-9", false], [366, "index-19", false], [366, "index-20", false], [464, "index-21", false]], "rfc 8297": [[241, "index-155", false]], "rfc 8305": [[126, "index-15", false], [126, "index-16", false]], "rfc 8470": [[241, "index-197", false]], "rfc 854": [[359, "index-2", false], [359, "index-3", false]], "rfc 9239": [[483, "index-45", false]], "rfc 959": [[223, "index-12", false]], "rfc 977": [[288, "index-3", false]], "rfc2109 (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.rfc2109", false]], "rfc2109_as_netscape (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape", false]], "rfc2965 (http.cookiejar.cookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.CookiePolicy.rfc2965", false]], "rfc_4122 (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.RFC_4122", false]], "rfile (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.rfile", false]], "rfile (socketserver.datagramrequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.DatagramRequestHandler.rfile", false]], "rfind() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rfind", false]], "rfind() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rfind", false]], "rfind() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.rfind", false]], "rfind() (str \u7684\u65b9\u6cd5)": [[344, "str.rfind", false]], "rgb_to_hls() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_hls", false]], "rgb_to_hsv() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_hsv", false]], "rgb_to_yiq() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.rgb_to_yiq", false]], "rglob() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rglob", false]], "richcmpfunc (c type)": [[63, "c.richcmpfunc", false]], "right (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right", false]], "right() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.right", false]], "right_list (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right_list", false]], "right_only (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.right_only", false]], "rightshift (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RIGHTSHIFT", false]], "rightshiftequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RIGHTSHIFTEQUAL", false]], "rindex() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rindex", false]], "rindex() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rindex", false]], "rindex() (str \u7684\u65b9\u6cd5)": [[344, "str.rindex", false]], "rjust() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rjust", false]], "rjust() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rjust", false]], "rjust() (str \u7684\u65b9\u6cd5)": [[344, "str.rjust", false]], "rlcompleter": [[323, "module-rlcompleter", false]], "rlim_infinity (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIM_INFINITY", false]], "rlimit_as (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_AS", false]], "rlimit_core (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_CORE", false]], "rlimit_cpu (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_CPU", false]], "rlimit_data (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_DATA", false]], "rlimit_fsize (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_FSIZE", false]], "rlimit_kqueues (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_KQUEUES", false]], "rlimit_memlock (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_MEMLOCK", false]], "rlimit_msgqueue (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_MSGQUEUE", false]], "rlimit_nice (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NICE", false]], "rlimit_nofile (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NOFILE", false]], "rlimit_nproc (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NPROC", false]], "rlimit_npts (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_NPTS", false]], "rlimit_ofile (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_OFILE", false]], "rlimit_rss (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RSS", false]], "rlimit_rtprio (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RTPRIO", false]], "rlimit_rttime (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_RTTIME", false]], "rlimit_sbsize (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SBSIZE", false]], "rlimit_sigpending (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SIGPENDING", false]], "rlimit_stack (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_STACK", false]], "rlimit_swap (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_SWAP", false]], "rlimit_vmem (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RLIMIT_VMEM", false]], "rlock (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.RLock", false]], "rlock (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.RLock", false]], "rlock() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.RLock", false]], "rmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.rmd", false]], "rmdir() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.rmdir", false]], "rmdir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.rmdir", false]], "rmdir() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.rmdir", false]], "rmff": [[153, "index-0", false]], "rms() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.rms", false]], "rmtree() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.rmtree", false]], "rmtree() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.rmtree", false]], "robotfileparser (urllib.robotparser \u4e2d\u7684\u985e\u5225)": [[396, "urllib.robotparser.RobotFileParser", false]], "robots.txt": [[396, "index-0", false]], "rollback() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.rollback", false]], "rollover() (tempfile.spooledtemporaryfile \u7684\u65b9\u6cd5)": [[360, "tempfile.SpooledTemporaryFile.rollover", false]], "roman (\u65bc tkinter.font \u6a21\u7d44\u4e2d)": [[372, "tkinter.font.ROMAN", false]], "root (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.root", false]], "rotate() (collections.deque \u7684\u65b9\u6cd5)": [[160, "collections.deque.rotate", false]], "rotate() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.rotate", false]], "rotate() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.rotate", false]], "rotate() (logging.handlers.baserotatinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BaseRotatingHandler.rotate", false]], "rotatingfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.RotatingFileHandler", false]], "rotation_filename() (logging.handlers.baserotatinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BaseRotatingHandler.rotation_filename", false]], "rotator (logging.handlers.baserotatinghandler \u7684\u5c6c\u6027)": [[269, "logging.handlers.BaseRotatingHandler.rotator", false]], "round": [[428, "index-105", false]], "round()": [[225, "round", false]], "round_05up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_05UP", false]], "round_ceiling (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_CEILING", false]], "round_down (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_DOWN", false]], "round_floor (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_FLOOR", false]], "round_half_down (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_DOWN", false]], "round_half_even (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_EVEN", false]], "round_half_up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_HALF_UP", false]], "round_up (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.ROUND_UP", false]], "rounded (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Rounded", false]], "rounds (sys.float_info \u7684\u5c6c\u6027)": [[352, "sys.float_info.rounds", false]], "row (sqlite3 \u4e2d\u7684\u985e\u5225)": [[340, "sqlite3.Row", false]], "row_factory (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.row_factory", false]], "row_factory (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.row_factory", false]], "rowcount (sqlite3.cursor \u7684\u5c6c\u6027)": [[340, "sqlite3.Cursor.rowcount", false]], "rpar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RPAR", false]], "rpartition() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rpartition", false]], "rpartition() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rpartition", false]], "rpartition() (str \u7684\u65b9\u6cd5)": [[344, "str.rpartition", false]], "rpc_paths (xmlrpc.server.simplexmlrpcrequesthandler \u7684\u5c6c\u6027)": [[420, "xmlrpc.server.SimpleXMLRPCRequestHandler.rpc_paths", false]], "rpop() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.rpop", false]], "rs (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.RS", false]], "rset() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.rset", false]], "rshift (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.RShift", false]], "rshift() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.rshift", false]], "rsplit() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rsplit", false]], "rsplit() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rsplit", false]], "rsplit() (str \u7684\u65b9\u6cd5)": [[344, "str.rsplit", false]], "rsqb (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.RSQB", false]], "rstrip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.rstrip", false]], "rstrip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.rstrip", false]], "rstrip() (str \u7684\u65b9\u6cd5)": [[344, "str.rstrip", false]], "rt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.rt", false]], "rtld_deepbind (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_DEEPBIND", false]], "rtld_global (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_GLOBAL", false]], "rtld_lazy (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_LAZY", false]], "rtld_local (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_LOCAL", false]], "rtld_nodelete (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NODELETE", false]], "rtld_noload (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NOLOAD", false]], "rtld_now (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RTLD_NOW", false]], "ruler (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.ruler", false]], "run (pdb command)": [[297, "pdbcommand-run", false]], "run script\uff08\u57f7\u884c\u8173\u672c\uff09": [[247, "index-2", false]], "run() (asyncio.runner \u7684\u65b9\u6cd5)": [[135, "asyncio.Runner.run", false]], "run() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.run", false]], "run() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.run", false]], "run() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.run", false]], "run() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.run", false]], "run() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.run", false]], "run() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.run", false]], "run() (sched.scheduler \u7684\u65b9\u6cd5)": [[325, "sched.scheduler.run", false]], "run() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.run", false]], "run() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.run", false]], "run() (unittest.isolatedasynciotestcase \u7684\u65b9\u6cd5)": [[388, "unittest.IsolatedAsyncioTestCase.run", false]], "run() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.run", false]], "run() (unittest.testsuite \u7684\u65b9\u6cd5)": [[388, "unittest.TestSuite.run", false]], "run() (unittest.texttestrunner \u7684\u65b9\u6cd5)": [[388, "unittest.TextTestRunner.run", false]], "run() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.run", false]], "run() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[135, "asyncio.run", false]], "run() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.run", false]], "run() (\u65bc profile \u6a21\u7d44\u4e2d)": [[308, "profile.run", false]], "run() (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.run", false]], "run_coroutine_threadsafe() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.run_coroutine_threadsafe", false]], "run_docstring_examples() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.run_docstring_examples", false]], "run_forever() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_forever", false]], "run_in_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_in_executor", false]], "run_in_subinterp() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_in_subinterp", false]], "run_module() (\u65bc runpy \u6a21\u7d44\u4e2d)": [[324, "runpy.run_module", false]], "run_path() (\u65bc runpy \u6a21\u7d44\u4e2d)": [[324, "runpy.run_path", false]], "run_python_until_end() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.run_python_until_end", false]], "run_script() (modulefinder.modulefinder \u7684\u65b9\u6cd5)": [[279, "modulefinder.ModuleFinder.run_script", false]], "run_until_complete() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.run_until_complete", false]], "run_with_locale() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_with_locale", false]], "run_with_tz() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.run_with_tz", false]], "runcall() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runcall", false]], "runcall() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.runcall", false]], "runcall() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.runcall", false]], "runcall() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.runcall", false]], "runcode() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.runcode", false]], "runctx() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runctx", false]], "runctx() (profile.profile \u7684\u65b9\u6cd5)": [[308, "profile.Profile.runctx", false]], "runctx() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.runctx", false]], "runctx() (\u65bc profile \u6a21\u7d44\u4e2d)": [[308, "profile.runctx", false]], "runeval() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.runeval", false]], "runeval() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.runeval", false]], "runeval() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.runeval", false]], "runfunc() (trace.trace \u7684\u65b9\u6cd5)": [[380, "trace.Trace.runfunc", false]], "runner (asyncio \u4e2d\u7684\u985e\u5225)": [[135, "asyncio.Runner", false]], "running() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.running", false]], "runpy": [[324, "module-runpy", false]], "runsource() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.runsource", false]], "runtime (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.runtime", false]], "runtime_checkable() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.runtime_checkable", false]], "runtimeerror": [[213, "RuntimeError", false]], "runtimewarning": [[213, "RuntimeWarning", false]], "rusage_both (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_BOTH", false]], "rusage_children (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_CHILDREN", false]], "rusage_self (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_SELF", false]], "rusage_thread (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.RUSAGE_THREAD", false]], "rwf_append (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_APPEND", false]], "rwf_dsync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_DSYNC", false]], "rwf_hipri (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_HIPRI", false]], "rwf_nowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_NOWAIT", false]], "rwf_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.RWF_SYNC", false]], "s (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.S", false]], "s_enfmt (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ENFMT", false]], "s_iexec (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IEXEC", false]], "s_ifblk (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFBLK", false]], "s_ifchr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFCHR", false]], "s_ifdir (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFDIR", false]], "s_ifdoor (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFDOOR", false]], "s_ififo (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFIFO", false]], "s_iflnk (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFLNK", false]], "s_ifmt() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFMT", false]], "s_ifport (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFPORT", false]], "s_ifreg (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFREG", false]], "s_ifsock (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFSOCK", false]], "s_ifwht (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IFWHT", false]], "s_imode() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IMODE", false]], "s_iread (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IREAD", false]], "s_irgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRGRP", false]], "s_iroth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IROTH", false]], "s_irusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRUSR", false]], "s_irwxg (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXG", false]], "s_irwxo (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXO", false]], "s_irwxu (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IRWXU", false]], "s_isblk() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISBLK", false]], "s_ischr() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISCHR", false]], "s_isdir() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISDIR", false]], "s_isdoor() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISDOOR", false]], "s_isfifo() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISFIFO", false]], "s_isgid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISGID", false]], "s_islnk() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISLNK", false]], "s_isport() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISPORT", false]], "s_isreg() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISREG", false]], "s_issock() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISSOCK", false]], "s_isuid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISUID", false]], "s_isvtx (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISVTX", false]], "s_iswht() (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_ISWHT", false]], "s_iwgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWGRP", false]], "s_iwoth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWOTH", false]], "s_iwrite (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWRITE", false]], "s_iwusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IWUSR", false]], "s_ixgrp (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXGRP", false]], "s_ixoth (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXOTH", false]], "s_ixusr (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.S_IXUSR", false]], "safe (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.safe", false]], "safe_path (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.safe_path", false]], "safe_substitute() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.safe_substitute", false]], "safechildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.SafeChildWatcher", false]], "saferepr() (\u65bc pprint \u6a21\u7d44\u4e2d)": [[307, "pprint.saferepr", false]], "safeuuid (uuid \u4e2d\u7684\u985e\u5225)": [[398, "uuid.SafeUUID", false]], "same_files (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.same_files", false]], "same_quantum() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.same_quantum", false]], "same_quantum() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.same_quantum", false]], "samefile() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.samefile", false]], "samefile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.samefile", false]], "samefileerror": [[332, "shutil.SameFileError", false]], "sameopenfile() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.sameopenfile", false]], "samesite (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.samesite", false]], "samestat() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.samestat", false]], "sample() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.sample", false]], "samples() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.samples", false]], "saturday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SATURDAY", false]], "save() (http.cookiejar.filecookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.FileCookieJar.save", false]], "save() (test.support.savesignals \u7684\u65b9\u6cd5)": [[362, "test.support.SaveSignals.save", false]], "saveas (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.SaveAs", false]], "savedcwd (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.SAVEDCWD", false]], "savefiledialog (tkinter.filedialog \u4e2d\u7684\u985e\u5225)": [[189, "tkinter.filedialog.SaveFileDialog", false]], "savekey() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SaveKey", false]], "savesignals (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.SaveSignals", false]], "savetty() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.savetty", false]], "sax2dom (xml.dom.pulldom \u4e2d\u7684\u985e\u5225)": [[412, "xml.dom.pulldom.SAX2DOM", false]], "saxexception": [[414, "xml.sax.SAXException", false]], "saxnotrecognizedexception": [[414, "xml.sax.SAXNotRecognizedException", false]], "saxnotsupportedexception": [[414, "xml.sax.SAXNotSupportedException", false]], "saxparseexception": [[414, "xml.sax.SAXParseException", false]], "scaleb() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.scaleb", false]], "scaleb() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.scaleb", false]], "scandir() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.scandir", false]], "scanf\uff08c \u51fd\u5f0f\uff09": [[319, "index-40", false]], "sched": [[325, "module-sched", false]], "sched_batch (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_BATCH", false]], "sched_fifo (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_FIFO", false]], "sched_get_priority_max() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_get_priority_max", false]], "sched_get_priority_min() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_get_priority_min", false]], "sched_getaffinity() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getaffinity", false]], "sched_getparam() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getparam", false]], "sched_getscheduler() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_getscheduler", false]], "sched_idle (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_IDLE", false]], "sched_other (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_OTHER", false]], "sched_param (os \u4e2d\u7684\u985e\u5225)": [[293, "os.sched_param", false]], "sched_priority (os.sched_param \u7684\u5c6c\u6027)": [[293, "os.sched_param.sched_priority", false]], "sched_reset_on_fork (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_RESET_ON_FORK", false]], "sched_rr (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_RR", false]], "sched_rr_get_interval() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_rr_get_interval", false]], "sched_setaffinity() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setaffinity", false]], "sched_setparam() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setparam", false]], "sched_setscheduler() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_setscheduler", false]], "sched_sporadic (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SCHED_SPORADIC", false]], "sched_yield() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sched_yield", false]], "scheduler (sched \u4e2d\u7684\u985e\u5225)": [[325, "sched.scheduler", false]], "scheduling priority\uff08\u6392\u7a0b\u512a\u5148\u6b0a\uff09": [[293, "index-15", false], [293, "index-18", false]], "schema (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.schema", false]], "scm_creds2 (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SCM_CREDS2", false]], "scope_id (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.scope_id", false]], "scope\uff08\u4f5c\u7528\u57df\uff09": [[429, "index-3", false], [429, "index-7", false]], "screen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Screen", false]], "screensize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.screensize", false]], "script_from_examples() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.script_from_examples", false]], "scroll() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.scroll", false]], "scrolledcanvas (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.ScrolledCanvas", false]], "scrolledtext (tkinter.scrolledtext \u4e2d\u7684\u985e\u5225)": [[374, "tkinter.scrolledtext.ScrolledText", false]], "scrollok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.scrollok", false]], "scrypt() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.scrypt", false]], "sdterr": [[33, "index-16", false]], "seal() (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.seal", false]], "search() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.search", false]], "search() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.search", false]], "search() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.search", false]], "search\uff08\u641c\u5c0b\uff09": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [35, "index-18", false], [265, "index-0", false], [334, "index-0", false], [352, "index-21", false], [450, "index-0", false]], "second (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.second", false]], "second (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.second", false]], "seconds since the epoch": [[366, "index-1", false]], "secrets": [[326, "module-secrets", false]], "sectcre (configparser.configparser \u7684\u5c6c\u6027)": [[167, "configparser.ConfigParser.SECTCRE", false]], "sections() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.sections", false]], "secure (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.secure", false]], "secure (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.secure", false]], "secure hash algorithm, sha1, sha2, sha224, sha256, sha384, sha512, sha3, shake, blake2": [[235, "index-0", false]], "secure sockets layer\uff08\u5b89\u5168 socket \u5c64\uff09": [[341, "index-1", false]], "security considerations\uff08\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805\uff09": [[327, "index-0", false]], "security_level (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.security_level", false]], "security\uff08\u5b89\u5168\uff09": [[151, "index-2", false], [245, "index-3", false]], "see() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.see", false]], "seed() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.seed", false]], "seed() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.seed", false]], "seed_bits (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.seed_bits", false]], "seek() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.seek", false]], "seek() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.seek", false]], "seek() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.seek", false]], "seek() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.seek", false]], "seek() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.seek", false]], "seek() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.seek", false]], "seek_cur (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_CUR", false]], "seek_data (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_DATA", false]], "seek_end (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_END", false]], "seek_hole (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_HOLE", false]], "seek_set (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SEEK_SET", false]], "seekable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.seekable", false]], "seekable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.seekable", false]], "select": [[328, "module-select", false]], "select (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Select", false]], "select() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.select", false]], "select() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.select", false]], "select() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.select", false]], "select() (\u65bc select \u6a21\u7d44\u4e2d)": [[328, "select.select", false]], "selected_alpn_protocol() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.selected_alpn_protocol", false]], "selected_npn_protocol() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.selected_npn_protocol", false]], "selection() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection", false]], "selection_add() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_add", false]], "selection_remove() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_remove", false]], "selection_set() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_set", false]], "selection_toggle() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.selection_toggle", false]], "selector (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.selector", false]], "selectoreventloop (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.SelectorEventLoop", false]], "selectorkey (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.SelectorKey", false]], "selectors": [[329, "module-selectors", false]], "selectselector (selectors \u4e2d\u7684\u985e\u5225)": [[329, "selectors.SelectSelector", false]], "self (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Self", false]], "semaphore (asyncio \u4e2d\u7684\u985e\u5225)": [[138, "asyncio.Semaphore", false]], "semaphore (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.Semaphore", false]], "semaphore (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Semaphore", false]], "semaphore() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Semaphore", false]], "semaphores, binary": [[115, "index-0", false]], "semi (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SEMI", false]], "send (opcode)": [[191, "opcode-SEND", false]], "send() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.send", false]], "send() (generator \u7684\u65b9\u6cd5)": [[430, "generator.send", false]], "send() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.send", false]], "send() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.send", false]], "send() (logging.handlers.datagramhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.DatagramHandler.send", false]], "send() (logging.handlers.sockethandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.SocketHandler.send", false]], "send() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.send", false]], "send() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.send", false]], "send_bytes() (multiprocessing.connection.connection \u7684\u65b9\u6cd5)": [[283, "multiprocessing.connection.Connection.send_bytes", false]], "send_error() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_error", false]], "send_fds() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.send_fds", false]], "send_header() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_header", false]], "send_message() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.send_message", false]], "send_response() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_response", false]], "send_response_only() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.send_response_only", false]], "send_signal() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.send_signal", false]], "send_signal() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.send_signal", false]], "send_signal() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.send_signal", false]], "sendall() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendall", false]], "sendcmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.sendcmd", false]], "sendfile() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sendfile", false]], "sendfile() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendfile", false]], "sendfile() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.sendfile", false]], "sendfile() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sendfile", false]], "sendfilenotavailableerror": [[127, "asyncio.SendfileNotAvailableError", false]], "sendfunc (c type)": [[63, "c.sendfunc", false]], "sendmail() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.sendmail", false]], "sendmsg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendmsg", false]], "sendmsg_afalg() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendmsg_afalg", false]], "sendto() (asyncio.datagramtransport \u7684\u65b9\u6cd5)": [[133, "asyncio.DatagramTransport.sendto", false]], "sendto() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.sendto", false]], "sentinel (multiprocessing.process \u7684\u5c6c\u6027)": [[283, "multiprocessing.Process.sentinel", false]], "sentinel (\u65bc unittest.mock \u6a21\u7d44\u4e2d)": [[389, "unittest.mock.sentinel", false]], "sep (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sep", false]], "september (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SEPTEMBER", false]], "sequence (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Sequence", false]], "sequence (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Sequence", false]], "sequence (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.sequence", false]], "sequencematcher (difflib \u4e2d\u7684\u985e\u5225)": [[190, "difflib.SequenceMatcher", false]], "sequence\uff08\u5e8f\u5217\uff09": [[16, "index-1", false], [87, "term-sequence", true], [344, "index-18", false], [344, "index-19", false], [344, "index-20", false], [344, "index-22", false], [344, "index-23", false], [344, "index-24", false], [427, "index-6", false], [428, "index-15", false], [428, "index-53", false], [430, "index-42", false], [430, "index-45", false], [430, "index-80", false], [436, "index-10", false]], "serialize() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.serialize", false]], "serializing\uff08\u5e8f\u5217\u5316\uff09": [[299, "index-0", false]], "serve_forever() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.serve_forever", false]], "serve_forever() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.serve_forever", false]], "server (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.Server", false]], "server (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.server", false]], "server (socketserver.baserequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.BaseRequestHandler.server", false]], "server_activate() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_activate", false]], "server_address (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.server_address", false]], "server_bind() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_bind", false]], "server_close() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.server_close", false]], "server_hostname (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.server_hostname", false]], "server_side (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.server_side", false]], "server_software (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.server_software", false]], "server_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.server_version", false]], "server_version (http.server.simplehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.SimpleHTTPRequestHandler.server_version", false]], "serverproxy (xmlrpc.client \u4e2d\u7684\u985e\u5225)": [[419, "xmlrpc.client.ServerProxy", false]], "server\uff08\u4f3a\u670d\u5668\uff09": [[151, "index-0", false], [245, "index-0", false]], "service_actions() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.service_actions", false]], "session (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.session", false]], "session_reused (ssl.sslsocket \u7684\u5c6c\u6027)": [[341, "ssl.SSLSocket.session_reused", false]], "session_stats() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.session_stats", false]], "set (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Set", false]], "set (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Set", false]], "set (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Set", false]], "set (\u5167\u5efa\u985e\u5225)": [[344, "set", false]], "set breakpoint": [[247, "index-4", false]], "set comprehension\uff08\u96c6\u5408\u7d9c\u5408\u904b\u7b97\uff09": [[87, "term-set-comprehension", true]], "set expression\uff08\u96c6\u5408\u904b\u7b97\u5f0f\uff09": [[430, "index-16", false]], "set type\uff08\u96c6\u5408\u578b\u5225\uff09": [[428, "index-27", false]], "set() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.set", false]], "set() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.set", false]], "set() (configparser.rawconfigparser \u7684\u65b9\u6cd5)": [[167, "configparser.RawConfigParser.set", false]], "set() (contextvars.contextvar \u7684\u65b9\u6cd5)": [[170, "contextvars.ContextVar.set", false]], "set() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.set", false]], "set() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.set", false]], "set() (test.support.os_helper.environmentvarguard \u7684\u65b9\u6cd5)": [[362, "test.support.os_helper.EnvironmentVarGuard.set", false]], "set() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.set", false]], "set() (tkinter.ttk.combobox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Combobox.set", false]], "set() (tkinter.ttk.spinbox \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Spinbox.set", false]], "set() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.set", false]], "set() (xml.etree.elementtree.element \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.Element.set", false]], "set_add (opcode)": [[191, "opcode-SET_ADD", false]], "set_all()": [[35, "index-6", false]], "set_allowed_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.set_allowed_domains", false]], "set_alpn_protocols() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_alpn_protocols", false]], "set_app() (wsgiref.simple_server.wsgiserver \u7684\u65b9\u6cd5)": [[407, "wsgiref.simple_server.WSGIServer.set_app", false]], "set_asyncgen_hooks() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_asyncgen_hooks", false]], "set_authorizer() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_authorizer", false]], "set_auto_history() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_auto_history", false]], "set_blocked_domains() (http.cookiejar.defaultcookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.DefaultCookiePolicy.set_blocked_domains", false]], "set_blocking() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_blocking", false]], "set_boundary() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_boundary", false]], "set_boundary() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_boundary", false]], "set_break() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_break", false]], "set_charset() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_charset", false]], "set_child_watcher() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.set_child_watcher", false]], "set_child_watcher() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.set_child_watcher", false]], "set_children() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.set_children", false]], "set_ciphers() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_ciphers", false]], "set_completer() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completer", false]], "set_completer_delims() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completer_delims", false]], "set_completion_display_matches_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_completion_display_matches_hook", false]], "set_content() (email.contentmanager.contentmanager \u7684\u65b9\u6cd5)": [[197, "email.contentmanager.ContentManager.set_content", false]], "set_content() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_content", false]], "set_content() (\u65bc email.contentmanager \u6a21\u7d44\u4e2d)": [[197, "email.contentmanager.set_content", false]], "set_continue() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_continue", false]], "set_cookie() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_cookie", false]], "set_cookie_if_ok() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_cookie_if_ok", false]], "set_coroutine_origin_tracking_depth() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_coroutine_origin_tracking_depth", false]], "set_current() (msilib.feature \u7684\u65b9\u6cd5)": [[281, "msilib.Feature.set_current", false]], "set_data() (importlib.abc.sourceloader \u7684\u65b9\u6cd5)": [[250, "importlib.abc.SourceLoader.set_data", false]], "set_data() (importlib.machinery.sourcefileloader \u7684\u65b9\u6cd5)": [[250, "importlib.machinery.SourceFileLoader.set_data", false]], "set_date() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_date", false]], "set_debug() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_debug", false]], "set_debug() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.set_debug", false]], "set_debuglevel() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.set_debuglevel", false]], "set_debuglevel() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.set_debuglevel", false]], "set_debuglevel() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.set_debuglevel", false]], "set_debuglevel() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.set_debuglevel", false]], "set_debuglevel() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.set_debuglevel", false]], "set_debuglevel() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.set_debuglevel", false]], "set_default_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_default_executor", false]], "set_default_type() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_default_type", false]], "set_default_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_default_type", false]], "set_default_verify_paths() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_default_verify_paths", false]], "set_defaults() (argparse.argumentparser \u7684\u65b9\u6cd5)": [[120, "argparse.ArgumentParser.set_defaults", false]], "set_defaults() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.set_defaults", false]], "set_ecdh_curve() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_ecdh_curve", false]], "set_errno() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.set_errno", false]], "set_escdelay() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.set_escdelay", false]], "set_event_loop() (asyncio.abstracteventlooppolicy \u7684\u65b9\u6cd5)": [[132, "asyncio.AbstractEventLoopPolicy.set_event_loop", false]], "set_event_loop() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[126, "asyncio.set_event_loop", false]], "set_event_loop_policy() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[132, "asyncio.set_event_loop_policy", false]], "set_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.set_events", false]], "set_exception() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.set_exception", false]], "set_exception() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_exception", false]], "set_exception_handler() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_exception_handler", false]], "set_executable() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_executable", false]], "set_filter() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.set_filter", false]], "set_flags() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_flags", false]], "set_flags() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.set_flags", false]], "set_flags() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.set_flags", false]], "set_forkserver_preload() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_forkserver_preload", false]], "set_from() (mailbox.mboxmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.mboxMessage.set_from", false]], "set_from() (mailbox.mmdfmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDFMessage.set_from", false]], "set_handle_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_handle_inheritable", false]], "set_history_length() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_history_length", false]], "set_info() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_info", false]], "set_inheritable() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.set_inheritable", false]], "set_inheritable() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.set_inheritable", false]], "set_int_max_str_digits() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.set_int_max_str_digits", false]], "set_labels() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.set_labels", false]], "set_last_error() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.set_last_error", false]], "set_literal (2to3 fixer)": [[112, "to3fixer-set_literal", false]], "set_local_events() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.set_local_events", false]], "set_memlimit() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.set_memlimit", false]], "set_name() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.set_name", false]], "set_next() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_next", false]], "set_nonstandard_attr() (http.cookiejar.cookie \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.Cookie.set_nonstandard_attr", false]], "set_npn_protocols() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.set_npn_protocols", false]], "set_ok() (http.cookiejar.cookiepolicy \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookiePolicy.set_ok", false]], "set_option_negotiation_callback() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.set_option_negotiation_callback", false]], "set_param() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_param", false]], "set_param() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_param", false]], "set_pasv() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.set_pasv", false]], "set_payload() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_payload", false]], "set_policy() (http.cookiejar.cookiejar \u7684\u65b9\u6cd5)": [[243, "http.cookiejar.CookieJar.set_policy", false]], "set_position() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.set_position", false]], "set_pre_input_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_pre_input_hook", false]], "set_progress_handler() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_progress_handler", false]], "set_protocol() (asyncio.basetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.BaseTransport.set_protocol", false]], "set_proxy() (urllib.request.request \u7684\u65b9\u6cd5)": [[395, "urllib.request.Request.set_proxy", false]], "set_quit() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_quit", false]], "set_recsrc() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.set_recsrc", false]], "set_result() (asyncio.future \u7684\u65b9\u6cd5)": [[129, "asyncio.Future.set_result", false]], "set_result() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_result", false]], "set_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_return", false]], "set_running_or_notify_cancel() (concurrent.futures.future \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Future.set_running_or_notify_cancel", false]], "set_selection() (tkinter.filedialog.filedialog \u7684\u65b9\u6cd5)": [[189, "tkinter.filedialog.FileDialog.set_selection", false]], "set_seq1() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seq1", false]], "set_seq2() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seq2", false]], "set_seqs() (difflib.sequencematcher \u7684\u65b9\u6cd5)": [[190, "difflib.SequenceMatcher.set_seqs", false]], "set_sequences() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.set_sequences", false]], "set_sequences() (mailbox.mhmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MHMessage.set_sequences", false]], "set_server_documentation() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_documentation", false]], "set_server_documentation() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_documentation", false]], "set_server_name() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_name", false]], "set_server_name() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_name", false]], "set_server_title() (xmlrpc.server.doccgixmlrpcrequesthandler \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_title", false]], "set_server_title() (xmlrpc.server.docxmlrpcserver \u7684\u65b9\u6cd5)": [[420, "xmlrpc.server.DocXMLRPCServer.set_server_title", false]], "set_servername_callback (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.set_servername_callback", false]], "set_start_method() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.set_start_method", false]], "set_startup_hook() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.set_startup_hook", false]], "set_step() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_step", false]], "set_subdir() (mailbox.maildirmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.MaildirMessage.set_subdir", false]], "set_tabsize() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.set_tabsize", false]], "set_task_factory() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.set_task_factory", false]], "set_threshold() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.set_threshold", false]], "set_trace() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_trace", false]], "set_trace() (pdb.pdb \u7684\u65b9\u6cd5)": [[297, "pdb.Pdb.set_trace", false]], "set_trace() (\u65bc bdb \u6a21\u7d44\u4e2d)": [[144, "bdb.set_trace", false]], "set_trace() (\u65bc pdb \u6a21\u7d44\u4e2d)": [[297, "pdb.set_trace", false]], "set_trace_callback() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.set_trace_callback", false]], "set_tunnel() (http.client.httpconnection \u7684\u65b9\u6cd5)": [[242, "http.client.HTTPConnection.set_tunnel", false]], "set_type() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_type", false]], "set_unittest_reportflags() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.set_unittest_reportflags", false]], "set_unixfrom() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.set_unixfrom", false]], "set_unixfrom() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.set_unixfrom", false]], "set_until() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.set_until", false]], "set_update (opcode)": [[191, "opcode-SET_UPDATE", false]], "set_url() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.set_url", false]], "set_usage() (optparse.optionparser \u7684\u65b9\u6cd5)": [[292, "optparse.OptionParser.set_usage", false]], "set_userptr() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.set_userptr", false]], "set_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.set_visible", false]], "set_wakeup_fd() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.set_wakeup_fd", false]], "set_write_buffer_limits() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.set_write_buffer_limits", false]], "setacl() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setacl", false]], "setannotation() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setannotation", false]], "setattr()": [[225, "setattr", false]], "setattrfunc (c type)": [[63, "c.setattrfunc", false]], "setattribute() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttribute", false]], "setattributenode() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNode", false]], "setattributenodens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNodeNS", false]], "setattributens() (xml.dom.element \u7684\u65b9\u6cd5)": [[410, "xml.dom.Element.setAttributeNS", false]], "setattrofunc (c type)": [[63, "c.setattrofunc", false]], "setbase() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetBase", false]], "setblocking() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.setblocking", false]], "setbytestream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setByteStream", false]], "setcbreak() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.setcbreak", false]], "setcharacterstream() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setCharacterStream", false]], "setcomp (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.SetComp", false]], "setcomptype() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setcomptype", false]], "setcomptype() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setcomptype", false]], "setcomptype() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setcomptype", false]], "setconfig() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.setconfig", false]], "setcontenthandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setContentHandler", false]], "setcontext() (\u65bc decimal \u6a21\u7d44\u4e2d)": [[186, "decimal.setcontext", false]], "setdaemon() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.setDaemon", false]], "setdefault() (dict \u7684\u65b9\u6cd5)": [[344, "dict.setdefault", false]], "setdefault() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.setdefault", false]], "setdefaulttimeout() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.setdefaulttimeout", false]], "setdlopenflags() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setdlopenflags", false]], "setdocumentlocator() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.setDocumentLocator", false]], "setdtdhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setDTDHandler", false]], "setegid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setegid", false]], "setencoding() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setEncoding", false]], "setentityresolver() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setEntityResolver", false]], "seterrorhandler() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setErrorHandler", false]], "seteuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.seteuid", false]], "setfeature() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setFeature", false]], "setfirstweekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.setfirstweekday", false]], "setfmt() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.setfmt", false]], "setformatter() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.setFormatter", false]], "setframerate() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setframerate", false]], "setframerate() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setframerate", false]], "setframerate() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setframerate", false]], "setgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setgid", false]], "setgroups() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setgroups", false]], "seth() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.seth", false]], "setheading() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setheading", false]], "sethostname() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.sethostname", false]], "setinputsizes() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.setinputsizes", false]], "setinteger() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetInteger", false]], "setitem() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.setitem", false]], "setitimer() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.setitimer", false]], "setlevel() (logging.handler \u7684\u65b9\u6cd5)": [[267, "logging.Handler.setLevel", false]], "setlevel() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.setLevel", false]], "setlimit() (sqlite3.connection \u7684\u65b9\u6cd5)": [[340, "sqlite3.Connection.setlimit", false]], "setlocale() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setLocale", false]], "setlocale() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.setlocale", false]], "setloggerclass() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.setLoggerClass", false]], "setlogmask() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.setlogmask", false]], "setlogrecordfactory() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.setLogRecordFactory", false]], "setmark() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setmark", false]], "setmaxconns() (urllib.request.cacheftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.CacheFTPHandler.setMaxConns", false]], "setmode() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.setmode", false]], "setname() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.setName", false]], "setnchannels() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setnchannels", false]], "setnchannels() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setnchannels", false]], "setnchannels() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setnchannels", false]], "setnframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setnframes", false]], "setnframes() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setnframes", false]], "setnframes() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setnframes", false]], "setns() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setns", false]], "setoutputsize() (sqlite3.cursor \u7684\u65b9\u6cd5)": [[340, "sqlite3.Cursor.setoutputsize", false]], "setparamentityparsing() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetParamEntityParsing", false]], "setparameters() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.setparameters", false]], "setparams() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setparams", false]], "setparams() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setparams", false]], "setparams() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setparams", false]], "setpassword() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.setpassword", false]], "setpgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpgid", false]], "setpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpgrp", false]], "setpos() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setpos", false]], "setpos() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.setpos", false]], "setpos() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.setpos", false]], "setpos() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setpos", false]], "setposition() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setposition", false]], "setpriority() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setpriority", false]], "setprofile() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setprofile", false]], "setprofile() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.setprofile", false]], "setprofile_all_threads() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.setprofile_all_threads", false]], "setproperty() (msilib.summaryinformation \u7684\u65b9\u6cd5)": [[281, "msilib.SummaryInformation.SetProperty", false]], "setproperty() (xml.sax.xmlreader.xmlreader \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.XMLReader.setProperty", false]], "setpublicid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setPublicId", false]], "setquota() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.setquota", false]], "setraw() (\u65bc tty \u6a21\u7d44\u4e2d)": [[383, "tty.setraw", false]], "setrecursionlimit() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setrecursionlimit", false]], "setregid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setregid", false]], "setreparsedeferralenabled() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.SetReparseDeferralEnabled", false]], "setresgid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setresgid", false]], "setresuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setresuid", false]], "setreuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setreuid", false]], "setrlimit() (\u65bc resource \u6a21\u7d44\u4e2d)": [[322, "resource.setrlimit", false]], "setsampwidth() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.setsampwidth", false]], "setsampwidth() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.setsampwidth", false]], "setsampwidth() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.setsampwidth", false]], "setscrreg() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.setscrreg", false]], "setsid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setsid", false]], "setsockopt() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.setsockopt", false]], "setstate() (codecs.incrementaldecoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalDecoder.setstate", false]], "setstate() (codecs.incrementalencoder \u7684\u65b9\u6cd5)": [[158, "codecs.IncrementalEncoder.setstate", false]], "setstate() (random.random \u7684\u65b9\u6cd5)": [[318, "random.Random.setstate", false]], "setstate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.setstate", false]], "setstream() (logging.streamhandler \u7684\u65b9\u6cd5)": [[269, "logging.StreamHandler.setStream", false]], "setstream() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetStream", false]], "setstring() (msilib.record \u7684\u65b9\u6cd5)": [[281, "msilib.Record.SetString", false]], "setswitchinterval \uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-33", false]], "setswitchinterval() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.setswitchinterval", false]], "setswitchinterval() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.setswitchinterval", false]], "setsystemid() (xml.sax.xmlreader.inputsource \u7684\u65b9\u6cd5)": [[416, "xml.sax.xmlreader.InputSource.setSystemId", false]], "setsyx() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.setsyx", false]], "settarget() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.setTarget", false]], "setter (c type)": [[58, "c.setter", false]], "settiltangle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.settiltangle", false]], "settimeout() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.settimeout", false]], "settimeout() (urllib.request.cacheftphandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.CacheFTPHandler.setTimeout", false]], "setting\uff08\u8a2d\u5b9a\uff09": [[293, "index-17", false]], "settrace() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.settrace", false]], "settrace() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.settrace", false]], "settrace_all_threads() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.settrace_all_threads", false]], "setuid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setuid", false]], "setundobuffer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setundobuffer", false]], "setup() (socketserver.baserequesthandler \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseRequestHandler.setup", false]], "setup() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.setUp", false]], "setup() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setup", false]], "setup_annotations (opcode)": [[191, "opcode-SETUP_ANNOTATIONS", false]], "setup_cleanup (opcode)": [[191, "opcode-SETUP_CLEANUP", false]], "setup_environ() (wsgiref.handlers.basehandler \u7684\u65b9\u6cd5)": [[407, "wsgiref.handlers.BaseHandler.setup_environ", false]], "setup_finally (opcode)": [[191, "opcode-SETUP_FINALLY", false]], "setup_python() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.setup_python", false]], "setup_scripts() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.setup_scripts", false]], "setup_testing_defaults() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.setup_testing_defaults", false]], "setup_with (opcode)": [[191, "opcode-SETUP_WITH", false]], "setupclass() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.setUpClass", false]], "setupterm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.setupterm", false]], "setvalue() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SetValue", false]], "setvalueex() (\u65bc winreg \u6a21\u7d44\u4e2d)": [[405, "winreg.SetValueEx", false]], "setworldcoordinates() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setworldcoordinates", false]], "setx() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.setx", false]], "setxattr() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.setxattr", false]], "sety() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.sety", false]], "set\uff08\u96c6\u5408\uff09": [[55, "index-0", false], [344, "index-51", false], [428, "index-28", false], [430, "index-16", false]], "sf_append (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_APPEND", false]], "sf_archived (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_ARCHIVED", false]], "sf_immutable (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_IMMUTABLE", false]], "sf_mnowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_MNOWAIT", false]], "sf_nocache (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_NOCACHE", false]], "sf_nodiskio (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_NODISKIO", false]], "sf_nounlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_NOUNLINK", false]], "sf_snapshot (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.SF_SNAPSHOT", false]], "sf_sync (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SF_SYNC", false]], "sha1() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha1", false]], "sha224() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha224", false]], "sha256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha256", false]], "sha384() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha384", false]], "sha3_224() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_224", false]], "sha3_256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_256", false]], "sha3_384() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_384", false]], "sha3_512() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha3_512", false]], "sha512() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.sha512", false]], "shake_128() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.shake_128", false]], "shake_256() (\u65bc hashlib \u6a21\u7d44\u4e2d)": [[235, "hashlib.shake_256", false]], "shape (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.shape", false]], "shape (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Shape", false]], "shape() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shape", false]], "shapesize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shapesize", false]], "shapetransform() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shapetransform", false]], "share() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.share", false]], "shareablelist (multiprocessing.shared_memory \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.shared_memory.ShareableList", false]], "shareablelist() (multiprocessing.managers.sharedmemorymanager \u7684\u65b9\u6cd5)": [[284, "multiprocessing.managers.SharedMemoryManager.ShareableList", false]], "shared memory\uff08\u5171\u4eab\u8a18\u61b6\u9ad4\uff09": [[284, "index-0", false]], "shared_ciphers() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.shared_ciphers", false]], "shared_memory (sys._emscripten_info \u7684\u5c6c\u6027)": [[352, "sys._emscripten_info.shared_memory", false]], "sharedmemory (multiprocessing.shared_memory \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.shared_memory.SharedMemory", false]], "sharedmemory() (multiprocessing.managers.sharedmemorymanager \u7684\u65b9\u6cd5)": [[284, "multiprocessing.managers.SharedMemoryManager.SharedMemory", false]], "sharedmemorymanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[284, "multiprocessing.managers.SharedMemoryManager", false]], "shearfactor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.shearfactor", false]], "shelf (shelve \u4e2d\u7684\u985e\u5225)": [[330, "shelve.Shelf", false]], "shelve": [[274, "index-0", false], [330, "module-shelve", false]], "shield() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.shield", false]], "shift() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.shift", false]], "shift() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.shift", false]], "shift_path_info() (\u65bc wsgiref.util \u6a21\u7d44\u4e2d)": [[407, "wsgiref.util.shift_path_info", false]], "shifting\uff08\u79fb\u4f4d\uff09": [[344, "index-16", false]], "shifting\uff08\u79fb\u52d5\uff09": [[430, "index-71", false]], "shlex": [[331, "module-shlex", false]], "shlex (shlex \u4e2d\u7684\u985e\u5225)": [[331, "shlex.shlex", false]], "shm (multiprocessing.shared_memory.shareablelist \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.ShareableList.shm", false]], "short_timeout (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SHORT_TIMEOUT", false]], "shortdescription() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.shortDescription", false]], "shorten() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.shorten", false]], "shouldflush() (logging.handlers.bufferinghandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.BufferingHandler.shouldFlush", false]], "shouldflush() (logging.handlers.memoryhandler \u7684\u65b9\u6cd5)": [[269, "logging.handlers.MemoryHandler.shouldFlush", false]], "shouldstop (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.shouldStop", false]], "show() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.show", false]], "show() (tkinter.commondialog.dialog \u7684\u65b9\u6cd5)": [[189, "tkinter.commondialog.Dialog.show", false]], "show() (tkinter.messagebox.message \u7684\u65b9\u6cd5)": [[373, "tkinter.messagebox.Message.show", false]], "show_code() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.show_code", false]], "show_flag_values() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.show_flag_values", false]], "showerror() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showerror", false]], "showinfo() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showinfo", false]], "showsyntaxerror() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.showsyntaxerror", false]], "showtraceback() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.showtraceback", false]], "showturtle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.showturtle", false]], "showwarning() (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.showwarning", false]], "showwarning() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.showwarning", false]], "shuffle() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.shuffle", false]], "shutdown() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.shutdown", false]], "shutdown() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.shutdown", false]], "shutdown() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.shutdown", false]], "shutdown() (socket.socket \u7684\u65b9\u6cd5)": [[337, "socket.socket.shutdown", false]], "shutdown() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.shutdown", false]], "shutdown() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.shutdown", false]], "shutdown_asyncgens() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.shutdown_asyncgens", false]], "shutdown_default_executor() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.shutdown_default_executor", false]], "shutil": [[332, "module-shutil", false]], "si (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SI", false]], "side_effect (unittest.mock.mock \u7684\u5c6c\u6027)": [[389, "unittest.mock.Mock.side_effect", false]], "sig_block (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_BLOCK", false]], "sig_dfl (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_DFL", false]], "sig_ign (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_IGN", false]], "sig_setmask (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_SETMASK", false]], "sig_unblock (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIG_UNBLOCK", false]], "sigabrt (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGABRT", false]], "sigalrm (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGALRM", false]], "sigbreak (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGBREAK", false]], "sigbus (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGBUS", false]], "sigchld (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCHLD", false]], "sigcld (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCLD", false]], "sigcont (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGCONT", false]], "sigfpe (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGFPE", false]], "sighup (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGHUP", false]], "sigill (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGILL", false]], "sigint (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGINT", false]], "siginterrupt() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.siginterrupt", false]], "sigint\uff08c \u5de8\u96c6\uff09": [[23, "index-1", false], [23, "index-2", false]], "sigkill (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGKILL", false]], "sigmasks (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Sigmasks", false]], "signal": [[333, "module-signal", false]], "signal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.signal", false]], "signalling\uff08\u4fe1\u865f\uff09": [[293, "index-37", false], [293, "index-38", false]], "signals (signal \u4e2d\u7684\u985e\u5225)": [[333, "signal.Signals", false]], "signal\uff08\u8a0a\u865f\uff09": [[23, "index-1", false], [23, "index-2", false], [23, "index-3", false], [115, "index-2", false]], "signature (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Signature", false]], "signature (inspect.boundarguments \u7684\u5c6c\u6027)": [[255, "inspect.BoundArguments.signature", false]], "signature() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.signature", false]], "sigpending() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigpending", false]], "sigpipe (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGPIPE", false]], "sigsegv (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGSEGV", false]], "sigstkflt (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGSTKFLT", false]], "sigterm (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGTERM", false]], "sigtimedwait() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigtimedwait", false]], "sigusr1 (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGUSR1", false]], "sigusr2 (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGUSR2", false]], "sigwait() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigwait", false]], "sigwaitinfo() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.sigwaitinfo", false]], "sigwinch (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.SIGWINCH", false]], "simple": [[436, "index-0", false]], "simple (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.SIMPLE", false]], "simple mail transfer protocol\uff08\u7c21\u55ae\u90f5\u4ef6\u50b3\u8f38\u5354\u5b9a\uff09": [[335, "index-0", false]], "simplecookie (http.cookies \u4e2d\u7684\u985e\u5225)": [[244, "http.cookies.SimpleCookie", false]], "simplefilter() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.simplefilter", false]], "simplehandler (wsgiref.handlers \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.handlers.SimpleHandler", false]], "simplehttprequesthandler (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.SimpleHTTPRequestHandler", false]], "simplenamespace (types \u4e2d\u7684\u985e\u5225)": [[385, "types.SimpleNamespace", false]], "simplequeue (multiprocessing \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.SimpleQueue", false]], "simplequeue (queue \u4e2d\u7684\u985e\u5225)": [[316, "queue.SimpleQueue", false]], "simplexmlrpcrequesthandler (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.SimpleXMLRPCRequestHandler", false]], "simplexmlrpcserver (xmlrpc.server \u4e2d\u7684\u985e\u5225)": [[420, "xmlrpc.server.SimpleXMLRPCServer", false]], "sin() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sin", false]], "sin() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sin", false]], "single dispatch\uff08\u55ae\u4e00\u8abf\u5ea6\uff09": [[87, "term-single-dispatch", true]], "singleaddressheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.SingleAddressHeader", false]], "singledispatch() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.singledispatch", false]], "singledispatchmethod (functools \u4e2d\u7684\u985e\u5225)": [[226, "functools.singledispatchmethod", false]], "singleton\uff08\u55ae\u4f8b\uff09": [[428, "index-20", false]], "sinh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sinh", false]], "sinh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sinh", false]], "sio_keepalive_vals (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_KEEPALIVE_VALS", false]], "sio_loopback_fast_path (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_LOOPBACK_FAST_PATH", false]], "sio_rcvall (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SIO_RCVALL", false]], "site": [[334, "module-site", false]], "site \u547d\u4ee4\u5217\u9078\u9805": [[334, "cmdoption-site-user-base", false], [334, "cmdoption-site-user-site", false]], "site-packages": [[334, "index-1", false]], "site_maps() (urllib.robotparser.robotfileparser \u7684\u65b9\u6cd5)": [[396, "urllib.robotparser.RobotFileParser.site_maps", false]], "sitecustomize": [[334, "module-sitecustomize", false], [438, "index-14", false], [438, "index-16", false]], "sixtofour (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.sixtofour", false]], "size (multiprocessing.shared_memory.sharedmemory \u7684\u5c6c\u6027)": [[284, "multiprocessing.shared_memory.SharedMemory.size", false]], "size (struct.struct \u7684\u5c6c\u6027)": [[347, "struct.Struct.size", false]], "size (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.size", false]], "size (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.size", false]], "size (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.size", false]], "size (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.size", false]], "size() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.size", false]], "size() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.size", false]], "size_diff (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.size_diff", false]], "size_max\uff08c \u5de8\u96c6\uff09": [[39, "index-5", false]], "sized (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.Sized", false]], "sized (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Sized", false]], "sizeof() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.sizeof", false]], "sizeof_digit (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.sizeof_digit", false]], "skip (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.SKIP", false]], "skip() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.skip", false]], "skip() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skip", false]], "skip_if_broken_multiprocessing_synchronize() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.skip_if_broken_multiprocessing_synchronize", false]], "skip_unless_bind_unix_socket() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.skip_unless_bind_unix_socket", false]], "skip_unless_symlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.skip_unless_symlink", false]], "skip_unless_xattr() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.skip_unless_xattr", false]], "skipif() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skipIf", false]], "skipinitialspace (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.skipinitialspace", false]], "skipped (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.skipped", false]], "skippedentity() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.skippedEntity", false]], "skiptest": [[388, "unittest.SkipTest", false]], "skiptest() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.skipTest", false]], "skipunless() (\u65bc unittest \u6a21\u7d44\u4e2d)": [[388, "unittest.skipUnless", false]], "slash (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SLASH", false]], "slashequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SLASHEQUAL", false]], "slave() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.slave", false]], "sleep() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.sleep", false]], "sleep() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.sleep", false]], "sleeping_retry() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.sleeping_retry", false]], "slice (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Slice", false]], "slice (\u5167\u5efa\u985e\u5225)": [[225, "slice", false]], "slice\uff08\u5207\u7247\uff09": [[87, "term-slice", true], [191, "index-1", false], [344, "index-20", false], [344, "index-24", false], [428, "index-16", false], [428, "index-22", false], [428, "index-69", false], [428, "index-99", false], [430, "index-44", false], [436, "index-12", false]], "slicing\uff08\u5207\u7247\uff09": [[430, "index-44", false]], "slow_callback_duration (asyncio.loop \u7684\u5c6c\u6027)": [[126, "asyncio.loop.slow_callback_duration", false]], "smallest (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SMALLEST", false]], "smtp": [[335, "index-0", false]], "smtp (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.SMTP", false]], "smtp (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.SMTP", false]], "smtp_ssl (smtplib \u4e2d\u7684\u985e\u5225)": [[335, "smtplib.SMTP_SSL", false]], "smtpauthenticationerror": [[335, "smtplib.SMTPAuthenticationError", false]], "smtpconnecterror": [[335, "smtplib.SMTPConnectError", false]], "smtpdataerror": [[335, "smtplib.SMTPDataError", false]], "smtpexception": [[335, "smtplib.SMTPException", false]], "smtphandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SMTPHandler", false]], "smtpheloerror": [[335, "smtplib.SMTPHeloError", false]], "smtplib": [[335, "module-smtplib", false]], "smtpnotsupportederror": [[335, "smtplib.SMTPNotSupportedError", false]], "smtprecipientsrefused": [[335, "smtplib.SMTPRecipientsRefused", false]], "smtpresponseexception": [[335, "smtplib.SMTPResponseException", false]], "smtpsenderrefused": [[335, "smtplib.SMTPSenderRefused", false]], "smtpserverdisconnected": [[335, "smtplib.SMTPServerDisconnected", false]], "smtputf8 (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.SMTPUTF8", false]], "snapshot (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Snapshot", false]], "snd_alias (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_ALIAS", false]], "snd_async (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_ASYNC", false]], "snd_filename (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_FILENAME", false]], "snd_loop (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_LOOP", false]], "snd_memory (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_MEMORY", false]], "snd_nodefault (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NODEFAULT", false]], "snd_nostop (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NOSTOP", false]], "snd_nowait (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_NOWAIT", false]], "snd_purge (\u65bc winsound \u6a21\u7d44\u4e2d)": [[406, "winsound.SND_PURGE", false]], "sndhdr": [[336, "module-sndhdr", false]], "sni_callback (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sni_callback", false]], "sniff() (csv.sniffer \u7684\u65b9\u6cd5)": [[175, "csv.Sniffer.sniff", false]], "sniffer (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.Sniffer", false]], "so (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SO", false]], "so_incoming_cpu (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SO_INCOMING_CPU", false]], "sock_accept() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_accept", false]], "sock_cloexec (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_CLOEXEC", false]], "sock_connect() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_connect", false]], "sock_dgram (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_DGRAM", false]], "sock_max_size (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.SOCK_MAX_SIZE", false]], "sock_nonblock (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_NONBLOCK", false]], "sock_raw (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_RAW", false]], "sock_rdm (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_RDM", false]], "sock_recv() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recv", false]], "sock_recv_into() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recv_into", false]], "sock_recvfrom() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recvfrom", false]], "sock_recvfrom_into() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_recvfrom_into", false]], "sock_sendall() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendall", false]], "sock_sendfile() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendfile", false]], "sock_sendto() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.sock_sendto", false]], "sock_seqpacket (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_SEQPACKET", false]], "sock_stream (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOCK_STREAM", false]], "socket": [[256, "index-1", false], [337, "index-0", false], [337, "module-socket", false]], "socket (socket \u4e2d\u7684\u985e\u5225)": [[337, "socket.socket", false]], "socket (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.socket", false]], "socket() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.socket", false]], "socket() (\u65bc socket \u6a21\u7d44)": [[328, "index-1", false]], "socket_type (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.socket_type", false]], "sockethandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SocketHandler", false]], "socketpair() (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.socketpair", false]], "sockets (asyncio.server \u7684\u5c6c\u6027)": [[126, "asyncio.Server.sockets", false]], "socketserver": [[338, "module-socketserver", false]], "sockettype (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SocketType", false]], "soft keyword\uff08\u8edf\u95dc\u9375\u5b57\uff09": [[435, "index-14", false]], "soft_keyword (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.SOFT_KEYWORD", false]], "softkwlist (\u65bc keyword \u6a21\u7d44\u4e2d)": [[263, "keyword.softkwlist", false]], "soh (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SOH", false]], "sol_alg (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOL_ALG", false]], "sol_rds (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOL_RDS", false]], "somaxconn (\u65bc socket \u6a21\u7d44\u4e2d)": [[337, "socket.SOMAXCONN", false]], "sort() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.sort", false]], "sort() (list \u7684\u65b9\u6cd5)": [[344, "list.sort", false]], "sort_stats() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.sort_stats", false]], "sortdict() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.sortdict", false]], "sorted()": [[225, "sorted", false]], "sorttestmethodsusing (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.sortTestMethodsUsing", false]], "source (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.source", false]], "source (pdb command)": [[297, "pdbcommand-source", false]], "source (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.source", false]], "source character set\uff08\u539f\u59cb\u5b57\u5143\u96c6\u5408\uff09": [[435, "index-5", false]], "source encoding declaration\uff08\u539f\u59cb\u7de8\u78bc\u5ba3\u544a\uff09": [[435, "index-5", false]], "source_date_epoch": [[163, "index-1", false], [311, "index-3", false], [311, "index-6", false], [311, "index-7", false], [480, "index-31", false], [483, "index-220", false], [483, "index-237", false]], "source_from_cache() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.source_from_cache", false]], "source_hash() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.source_hash", false]], "source_suffixes (\u65bc importlib.machinery \u6a21\u7d44\u4e2d)": [[250, "importlib.machinery.SOURCE_SUFFIXES", false]], "source_to_code() (importlib.abc.inspectloader \u7684\u975c\u614b\u65b9\u6cd5)": [[250, "importlib.abc.InspectLoader.source_to_code", false]], "sourcefileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.SourceFileLoader", false]], "sourcehook() (shlex.shlex \u7684\u65b9\u6cd5)": [[331, "shlex.shlex.sourcehook", false]], "sourcelessfileloader (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.SourcelessFileLoader", false]], "sourceloader (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.SourceLoader", false]], "sp (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SP", false]], "space": [[345, "index-4", false]], "space\uff08\u7a7a\u767d\uff09": [[344, "index-37", false], [344, "index-47", false], [435, "index-8", false]], "span() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.span", false]], "sparse (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.sparse", false]], "spawn() (\u65bc pty \u6a21\u7d44\u4e2d)": [[309, "pty.spawn", false]], "spawn_python() (\u65bc test.support.script_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.script_helper.spawn_python", false]], "spawnl() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnl", false]], "spawnle() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnle", false]], "spawnlp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnlp", false]], "spawnlpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnlpe", false]], "spawnv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnv", false]], "spawnve() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnve", false]], "spawnvp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnvp", false]], "spawnvpe() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.spawnvpe", false]], "spec_from_file_location() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.spec_from_file_location", false]], "spec_from_loader() (\u65bc importlib.util \u6a21\u7d44\u4e2d)": [[250, "importlib.util.spec_from_loader", false]], "special": [[87, "index-31", false], [428, "index-5", false]], "special method\uff08\u7279\u6b8a\u65b9\u6cd5\uff09": [[87, "term-special-method", true]], "specialfileerror": [[358, "tarfile.SpecialFileError", false]], "specified_attributes (xml.parsers.expat.xmlparser \u7684\u5c6c\u6027)": [[314, "xml.parsers.expat.xmlparser.specified_attributes", false]], "speed() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.speed", false]], "speed() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.speed", false]], "spinbox (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Spinbox", false]], "splice() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.splice", false]], "splice_f_more (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_MORE", false]], "splice_f_move (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_MOVE", false]], "splice_f_nonblock (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.SPLICE_F_NONBLOCK", false]], "split() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.split", false]], "split() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.split", false]], "split() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.split", false]], "split() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.split", false]], "split() (str \u7684\u65b9\u6cd5)": [[344, "str.split", false]], "split() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.split", false]], "split() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.split", false]], "split() (\u65bc shlex \u6a21\u7d44\u4e2d)": [[331, "shlex.split", false]], "splitdrive() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitdrive", false]], "splitext() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitext", false]], "splitlines() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.splitlines", false]], "splitlines() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.splitlines", false]], "splitlines() (str \u7684\u65b9\u6cd5)": [[344, "str.splitlines", false]], "splitresult (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.SplitResult", false]], "splitresultbytes (urllib.parse \u4e2d\u7684\u985e\u5225)": [[394, "urllib.parse.SplitResultBytes", false]], "splitroot() (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.splitroot", false]], "spooledtemporaryfile (tempfile \u4e2d\u7684\u985e\u5225)": [[360, "tempfile.SpooledTemporaryFile", false]], "sprintf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-35", false], [344, "index-45", false]], "spwd": [[339, "module-spwd", false]], "sqlite3": [[340, "module-sqlite3", false]], "sqlite_dbconfig_defensive (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DEFENSIVE", false]], "sqlite_dbconfig_dqs_ddl (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DQS_DDL", false]], "sqlite_dbconfig_dqs_dml (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_DQS_DML", false]], "sqlite_dbconfig_enable_fkey (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_FKEY", false]], "sqlite_dbconfig_enable_fts3_tokenizer (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER", false]], "sqlite_dbconfig_enable_load_extension (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION", false]], "sqlite_dbconfig_enable_qpsg (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_QPSG", false]], "sqlite_dbconfig_enable_trigger (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_TRIGGER", false]], "sqlite_dbconfig_enable_view (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_ENABLE_VIEW", false]], "sqlite_dbconfig_legacy_alter_table (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_LEGACY_ALTER_TABLE", false]], "sqlite_dbconfig_legacy_file_format (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_LEGACY_FILE_FORMAT", false]], "sqlite_dbconfig_no_ckpt_on_close (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE", false]], "sqlite_dbconfig_reset_database (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_RESET_DATABASE", false]], "sqlite_dbconfig_trigger_eqp (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_TRIGGER_EQP", false]], "sqlite_dbconfig_trusted_schema (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_TRUSTED_SCHEMA", false]], "sqlite_dbconfig_writable_schema (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DBCONFIG_WRITABLE_SCHEMA", false]], "sqlite_deny (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_DENY", false]], "sqlite_errorcode (sqlite3.error \u7684\u5c6c\u6027)": [[340, "sqlite3.Error.sqlite_errorcode", false]], "sqlite_errorname (sqlite3.error \u7684\u5c6c\u6027)": [[340, "sqlite3.Error.sqlite_errorname", false]], "sqlite_ignore (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_IGNORE", false]], "sqlite_ok (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.SQLITE_OK", false]], "sqlite_version (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.sqlite_version", false]], "sqlite_version_info (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.sqlite_version_info", false]], "sqrt() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.sqrt", false]], "sqrt() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.sqrt", false]], "sqrt() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.sqrt", false]], "sqrt() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sqrt", false]], "ssizeargfunc (c type)": [[63, "c.ssizeargfunc", false]], "ssizeobjargproc (c type)": [[63, "c.ssizeobjargproc", false]], "ssl": [[341, "index-1", false], [341, "module-ssl", false]], "ssl_version (ftplib.ftp_tls \u7684\u5c6c\u6027)": [[223, "ftplib.FTP_TLS.ssl_version", false]], "sslcertverificationerror": [[341, "ssl.SSLCertVerificationError", false]], "sslcontext (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLContext", false]], "ssleoferror": [[341, "ssl.SSLEOFError", false]], "sslerror": [[341, "ssl.SSLError", false]], "sslerrornumber (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLErrorNumber", false]], "sslkeylogfile": [[341, "index-32", false], [341, "index-33", false]], "sslobject (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLObject", false]], "sslobject_class (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sslobject_class", false]], "sslsession (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLSession", false]], "sslsocket (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.SSLSocket", false]], "sslsocket_class (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.sslsocket_class", false]], "sslsyscallerror": [[341, "ssl.SSLSyscallError", false]], "sslv3 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.SSLv3", false]], "sslwantreaderror": [[341, "ssl.SSLWantReadError", false]], "sslwantwriteerror": [[341, "ssl.SSLWantWriteError", false]], "sslzeroreturnerror": [[341, "ssl.SSLZeroReturnError", false]], "st() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.st", false]], "st_atime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_atime", false]], "st_atime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_ATIME", false]], "st_atime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_atime_ns", false]], "st_birthtime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_birthtime", false]], "st_birthtime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_birthtime_ns", false]], "st_blksize (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_blksize", false]], "st_blocks (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_blocks", false]], "st_creator (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_creator", false]], "st_ctime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ctime", false]], "st_ctime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_CTIME", false]], "st_ctime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ctime_ns", false]], "st_dev (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_dev", false]], "st_dev (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_DEV", false]], "st_file_attributes (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_file_attributes", false]], "st_flags (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_flags", false]], "st_fstype (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_fstype", false]], "st_gen (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_gen", false]], "st_gid (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_gid", false]], "st_gid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_GID", false]], "st_ino (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_ino", false]], "st_ino (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_INO", false]], "st_mode (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mode", false]], "st_mode (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_MODE", false]], "st_mtime (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mtime", false]], "st_mtime (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_MTIME", false]], "st_mtime_ns (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_mtime_ns", false]], "st_nlink (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_nlink", false]], "st_nlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_NLINK", false]], "st_rdev (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_rdev", false]], "st_reparse_tag (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_reparse_tag", false]], "st_rsize (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_rsize", false]], "st_size (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_size", false]], "st_size (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_SIZE", false]], "st_type (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_type", false]], "st_uid (os.stat_result \u7684\u5c6c\u6027)": [[293, "os.stat_result.st_uid", false]], "st_uid (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.ST_UID", false]], "stack (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.stack", false]], "stack viewer\uff08\u5806\u758a\u6aa2\u8996\u5668\uff09": [[247, "index-3", false]], "stack() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.stack", false]], "stack_effect() (\u65bc dis \u6a21\u7d44\u4e2d)": [[191, "dis.stack_effect", false]], "stack_size() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.stack_size", false]], "stack_size() (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.stack_size", false]], "stackable\uff08\u53ef\u5806\u758a\uff09": [[158, "index-0", false]], "stacksummary (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.StackSummary", false]], "stack\uff08\u5806\u758a\uff09": [[428, "index-66", false]], "stamp() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.stamp", false]], "standard": [[436, "index-3", false]], "standard c\uff08\u6a19\u6e96 c\uff09": [[435, "index-23", false]], "standard input\uff08\u6a19\u6e96\u8f38\u5165\uff09": [[437, "index-4", false]], "standard_b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.standard_b64decode", false]], "standard_b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.standard_b64encode", false]], "standarderror (2to3 fixer)": [[112, "to3fixer-standarderror", false]], "standend() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.standend", false]], "standout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.standout", false]], "star (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STAR", false]], "starequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STAREQUAL", false]], "starmap() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.starmap", false]], "starmap() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.starmap", false]], "starmap_async() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.starmap_async", false]], "starred (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Starred", false]], "start (range \u7684\u5c6c\u6027)": [[344, "range.start", false]], "start (slice \u7684\u5c6c\u6027)": [[225, "slice.start", false]], "start (unicodeerror \u7684\u5c6c\u6027)": [[213, "UnicodeError.start", false]], "start \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "start() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.start", false]], "start() (multiprocessing.managers.basemanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.BaseManager.start", false]], "start() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.start", false]], "start() (re.match \u7684\u65b9\u6cd5)": [[319, "re.Match.start", false]], "start() (threading.thread \u7684\u65b9\u6cd5)": [[365, "threading.Thread.start", false]], "start() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.start", false]], "start() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.start", false]], "start() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.start", false]], "start_color() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.start_color", false]], "start_component() (msilib.directory \u7684\u65b9\u6cd5)": [[281, "msilib.Directory.start_component", false]], "start_new_thread() (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.start_new_thread", false]], "start_ns() (xml.etree.elementtree.treebuilder \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.TreeBuilder.start_ns", false]], "start_server() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.start_server", false]], "start_serving() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.start_serving", false]], "start_threads() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.start_threads", false]], "start_tls() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.start_tls", false]], "start_tls() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.start_tls", false]], "start_unix_server() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[136, "asyncio.start_unix_server", false]], "startcdata() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.startCDATA", false]], "startcdatasectionhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartCdataSectionHandler", false]], "startdoctypedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartDoctypeDeclHandler", false]], "startdocument() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startDocument", false]], "startdtd() (xml.sax.handler.lexicalhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.LexicalHandler.startDTD", false]], "startelement() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startElement", false]], "startelementhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartElementHandler", false]], "startelementns() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startElementNS", false]], "startf_useshowwindow (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STARTF_USESHOWWINDOW", false]], "startf_usestdhandles (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STARTF_USESTDHANDLES", false]], "startfile() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.startfile", false]], "startnamespacedeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.StartNamespaceDeclHandler", false]], "startprefixmapping() (xml.sax.handler.contenthandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ContentHandler.startPrefixMapping", false]], "startresponse (wsgiref.types \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.types.StartResponse", false]], "startswith() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.startswith", false]], "startswith() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.startswith", false]], "startswith() (str \u7684\u65b9\u6cd5)": [[344, "str.startswith", false]], "starttest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.startTest", false]], "starttestrun() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.startTestRun", false]], "starttls() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.starttls", false]], "starttls() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.starttls", false]], "starttls() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.starttls", false]], "startupinfo (subprocess \u4e2d\u7684\u985e\u5225)": [[348, "subprocess.STARTUPINFO", false]], "start\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "stat": [[293, "index-30", false], [342, "module-stat", false]], "stat() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.stat", false]], "stat() (os.direntry \u7684\u65b9\u6cd5)": [[293, "os.DirEntry.stat", false]], "stat() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.stat", false]], "stat() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.stat", false]], "stat() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.stat", false]], "stat_result (os \u4e2d\u7684\u985e\u5225)": [[293, "os.stat_result", false]], "state() (tkinter.ttk.widget \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Widget.state", false]], "statement grouping\uff08\u9673\u8ff0\u5f0f\u7fa4\u7d44\uff09": [[435, "index-8", false]], "statement\uff08\u9673\u8ff0\u5f0f\uff09": [[87, "term-statement", true], [213, "index-0", false], [213, "index-1", false], [213, "index-4", false], [225, "index-13", false], [334, "index-2", false], [344, "index-1", false], [344, "index-24", false], [344, "index-52", false], [427, "index-0", false], [427, "index-13", false], [427, "index-15", false], [427, "index-16", true], [427, "index-18", true], [427, "index-28", false], [427, "index-3", true], [427, "index-4", false], [427, "index-4", true], [427, "index-42", false], [427, "index-48", false], [427, "index-5", false], [427, "index-50", false], [427, "index-51", false], [427, "index-6", false], [427, "index-6", true], [427, "index-7", false], [427, "index-9", true], [428, "index-106", false], [428, "index-22", false], [428, "index-44", false], [428, "index-67", false], [428, "index-74", false], [436, "index-0", false], [436, "index-1", false], [436, "index-14", false], [436, "index-15", false], [436, "index-18", true], [436, "index-20", false], [436, "index-21", true], [436, "index-22", false], [436, "index-24", true], [436, "index-26", false], [436, "index-27", true], [436, "index-30", false], [436, "index-30", true], [436, "index-33", false], [436, "index-33", true], [436, "index-34", true], [436, "index-4", false], [436, "index-40", false], [436, "index-43", true], [436, "index-45", false], [436, "index-47", false], [441, "index-0", false]], "static type checker\uff08\u975c\u614b\u578b\u5225\u6aa2\u67e5\u5668\uff09": [[87, "term-static-type-checker", true]], "static_order() (graphlib.topologicalsorter \u7684\u65b9\u6cd5)": [[232, "graphlib.TopologicalSorter.static_order", false]], "staticmethod": [[58, "index-1", false]], "staticmethod()": [[225, "staticmethod", false]], "statistic (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Statistic", false]], "statisticdiff (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.StatisticDiff", false]], "statistics": [[343, "module-statistics", false]], "statistics() (tracemalloc.snapshot \u7684\u65b9\u6cd5)": [[382, "tracemalloc.Snapshot.statistics", false]], "statisticserror": [[343, "statistics.StatisticsError", false]], "stats (pstats \u4e2d\u7684\u985e\u5225)": [[308, "pstats.Stats", false]], "status (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.status", false]], "status (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.status", false]], "status() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.status", false]], "statvfs() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.statvfs", false]], "std_error_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_ERROR_HANDLE", false]], "std_input_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_INPUT_HANDLE", false]], "std_output_handle (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STD_OUTPUT_HANDLE", false]], "stdbuttonbox (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.StdButtonBox", false]], "stderr (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stderr", false]], "stderr (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.stderr", false]], "stderr (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.stderr", false]], "stderr (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stderr", false]], "stderr (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.stderr", false]], "stderr (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stderr", false]], "stderr \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stderr\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stdev (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.stdev", false]], "stdev() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.stdev", false]], "stdin": [[33, "index-16", false]], "stdin (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stdin", false]], "stdin (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stdin", false]], "stdin (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdin", false]], "stdin \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stdin\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stdio": [[428, "index-55", false]], "stdlib_module_names (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdlib_module_names", false]], "stdout": [[33, "index-16", false]], "stdout (asyncio.subprocess.process \u7684\u5c6c\u6027)": [[137, "asyncio.subprocess.Process.stdout", false]], "stdout (subprocess.calledprocesserror \u7684\u5c6c\u6027)": [[348, "subprocess.CalledProcessError.stdout", false]], "stdout (subprocess.completedprocess \u7684\u5c6c\u6027)": [[348, "subprocess.CompletedProcess.stdout", false]], "stdout (subprocess.popen \u7684\u5c6c\u6027)": [[348, "subprocess.Popen.stdout", false]], "stdout (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.stdout", false]], "stdout (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.STDOUT", false]], "stdout (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.stdout", false]], "stdout \uff08sys \u6a21\u7d44\u4e2d\uff09": [[428, "index-55", false]], "stdout\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-42", false], [33, "index-45", false]], "stem (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.stem", false]], "step (pdb command)": [[297, "pdbcommand-step", false]], "step (range \u7684\u5c6c\u6027)": [[344, "range.step", false]], "step (slice \u7684\u5c6c\u6027)": [[225, "slice.step", false]], "step \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "step() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.step", false]], "step\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "stereocontrols() (ossaudiodev.oss_mixer_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_mixer_device.stereocontrols", false]], "stls() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.stls", false]], "stop (range \u7684\u5c6c\u6027)": [[344, "range.stop", false]], "stop (slice \u7684\u5c6c\u6027)": [[225, "slice.stop", false]], "stop \uff08slice \u7269\u4ef6\u5c6c\u6027\uff09": [[428, "index-70", false]], "stop() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.stop", false]], "stop() (logging.handlers.queuelistener \u7684\u65b9\u6cd5)": [[269, "logging.handlers.QueueListener.stop", false]], "stop() (tkinter.ttk.progressbar \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Progressbar.stop", false]], "stop() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stop", false]], "stop() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.stop", false]], "stop_here() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.stop_here", false]], "stop_iteration (monitoring event)": [[353, "monitoring-event-STOP_ITERATION", false]], "stopasynciteration": [[213, "StopAsyncIteration", false], [430, "index-36", false]], "stopiteration": [[213, "StopIteration", false], [430, "index-32", false], [436, "index-26", false]], "stoplistening() (\u65bc logging.config \u6a21\u7d44\u4e2d)": [[268, "logging.config.stopListening", false]], "stoptest() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stopTest", false]], "stoptestrun() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.stopTestRun", false]], "stop\uff08\u5207\u7247\u7269\u4ef6\u5c6c\u6027\uff09": [[430, "index-46", false]], "storbinary() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.storbinary", false]], "store (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Store", false]], "store() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.store", false]], "store_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.STORE_ACTIONS", false]], "store_attr (opcode)": [[191, "opcode-STORE_ATTR", false]], "store_deref (opcode)": [[191, "opcode-STORE_DEREF", false]], "store_fast (opcode)": [[191, "opcode-STORE_FAST", false]], "store_global (opcode)": [[191, "opcode-STORE_GLOBAL", false]], "store_name (opcode)": [[191, "opcode-STORE_NAME", false]], "store_slice (opcode)": [[191, "opcode-STORE_SLICE", false]], "store_subscr (opcode)": [[191, "opcode-STORE_SUBSCR", false]], "storlines() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.storlines", false]], "str (\u5167\u5efa\u985e\u5225)": [[344, "str", false]], "str() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.str", false]], "str() \uff08\u5167\u5efa\u51fd\u5f0f\uff09": [[225, "index-11", false]], "str.splitlines \u65b9\u6cd5": [[344, "index-34", false]], "str_digits_check_threshold (sys.int_info \u7684\u5c6c\u6027)": [[352, "sys.int_info.str_digits_check_threshold", false]], "strcoll() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.strcoll", false]], "streamerror": [[358, "tarfile.StreamError", false]], "streamhandler (logging \u4e2d\u7684\u985e\u5225)": [[269, "logging.StreamHandler", false]], "streamreader (asyncio \u4e2d\u7684\u985e\u5225)": [[136, "asyncio.StreamReader", false]], "streamreader (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamReader", false]], "streamreader (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.streamreader", false]], "streamreaderwriter (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamReaderWriter", false]], "streamrecoder (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamRecoder", false]], "streamrequesthandler (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.StreamRequestHandler", false]], "streams\uff08\u4e32\u6d41\uff09": [[158, "index-0", false]], "streamwriter (asyncio \u4e2d\u7684\u985e\u5225)": [[136, "asyncio.StreamWriter", false]], "streamwriter (codecs \u4e2d\u7684\u985e\u5225)": [[158, "codecs.StreamWriter", false]], "streamwriter (codecs.codecinfo \u7684\u5c6c\u6027)": [[158, "codecs.CodecInfo.streamwriter", false]], "strenum (enum \u4e2d\u7684\u985e\u5225)": [[211, "enum.StrEnum", false]], "strerror (oserror \u7684\u5c6c\u6027)": [[213, "OSError.strerror", false]], "strerror() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.strerror", false]], "strerror\uff08c \u51fd\u5f0f\uff09": [[23, "index-0", false]], "strftime() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.strftime", false]], "strftime() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.strftime", false]], "strftime() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.strftime", false]], "strftime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.strftime", false]], "strict": [[158, "index-1", false]], "strict (csv.dialect \u7684\u5c6c\u6027)": [[175, "csv.Dialect.strict", false]], "strict (enum.flagboundary \u7684\u5c6c\u6027)": [[211, "enum.FlagBoundary.STRICT", false]], "strict (\u65bc email.policy \u6a21\u7d44\u4e2d)": [[208, "email.policy.strict", false]], "strict_domain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_domain", false]], "strict_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.strict_errors", false]], "strict_ns_domain (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_domain", false]], "strict_ns_set_initial_dollar (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_set_initial_dollar", false]], "strict_ns_set_path (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_set_path", false]], "strict_ns_unverifiable (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_ns_unverifiable", false]], "strict_rfc2965_unverifiable (http.cookiejar.defaultcookiepolicy \u7684\u5c6c\u6027)": [[243, "http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable", false]], "strided (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDED", false]], "strided_ro (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDED_RO", false]], "strides (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.STRIDES", false]], "strides (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.strides", false]], "string": [[345, "module-string", false]], "string (re.match \u7684\u5c6c\u6027)": [[319, "re.Match.string", false]], "string (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.STRING", false]], "string literal\uff08\u5b57\u4e32\u5e38\u6578\uff09": [[435, "index-17", false], [435, "index-18", false]], "string_at() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.string_at", false]], "stringio (io \u4e2d\u7684\u985e\u5225)": [[258, "io.StringIO", false]], "stringprep": [[346, "module-stringprep", false]], "strings\uff08\u5b57\u4e32\uff09, documentation\uff08\u8aaa\u660e\u6587\u4ef6\uff09": [[441, "index-2", false], [441, "index-5", false]], "string\uff08\u5b57\u4e32\uff09": [[49, "index-2", false], [75, "index-3", false], [225, "index-11", false], [225, "index-4", false], [344, "index-28", false], [344, "index-30", false], [344, "index-32", false], [344, "index-35", false], [428, "index-18", false], [428, "index-76", false], [428, "index-78", false], [430, "index-42", false], [430, "index-43", false], [430, "index-45", false], [435, "index-25", false], [436, "index-3", false]], "strip() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.strip", false]], "strip() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.strip", false]], "strip() (str \u7684\u65b9\u6cd5)": [[344, "str.strip", false]], "strip_dirs() (pstats.stats \u7684\u65b9\u6cd5)": [[308, "pstats.Stats.strip_dirs", false]], "stripspaces (curses.textpad.textbox \u7684\u5c6c\u6027)": [[177, "curses.textpad.Textbox.stripspaces", false]], "strong reference\uff08\u5f37\u53c3\u7167\uff09": [[87, "term-strong-reference", true]], "strptime() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.strptime", false]], "strptime() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.strptime", false]], "strsignal() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.strsignal", false]], "struct": [[337, "index-14", false], [347, "module-struct", false]], "struct (struct \u4e2d\u7684\u985e\u5225)": [[347, "struct.Struct", false]], "struct_time (time \u4e2d\u7684\u985e\u5225)": [[366, "time.struct_time", false]], "structmember.h": [[58, "index-4", false]], "structure (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Structure", false]], "structures\uff08\u7d50\u69cb\uff09": [[347, "index-0", false]], "strxfrm() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.strxfrm", false]], "str\uff08\u5167\u5efa\u985e\u5225\uff09": [[344, "index-28", false], [344, "index-30", false], [344, "index-31", false]], "stx (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.STX", false]], "style (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Style", false]], "style\uff08\u98a8\u683c\uff09": [[441, "index-9", false]], "sub (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Sub", false]], "sub (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SUB", false]], "sub() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.sub", false]], "sub() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.sub", false]], "sub() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.sub", false]], "subclassing\uff08\u5b50\u985e\u5225\u5316\uff09": [[428, "index-72", false]], "subdirs (filecmp.dircmp \u7684\u5c6c\u6027)": [[216, "filecmp.dircmp.subdirs", false]], "subelement() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.SubElement", false]], "subgroup() (baseexceptiongroup \u7684\u65b9\u6cd5)": [[213, "BaseExceptionGroup.subgroup", false]], "submit() (concurrent.futures.executor \u7684\u65b9\u6cd5)": [[166, "concurrent.futures.Executor.submit", false]], "submodule_search_locations (importlib.machinery.modulespec \u7684\u5c6c\u6027)": [[250, "importlib.machinery.ModuleSpec.submodule_search_locations", false]], "subn() (re.pattern \u7684\u65b9\u6cd5)": [[319, "re.Pattern.subn", false]], "subn() (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.subn", false]], "subnet_of() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.subnet_of", false]], "subnet_of() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.subnet_of", false]], "subnets() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.subnets", false]], "subnets() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.subnets", false]], "subnormal (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Subnormal", false]], "suboffsets (memoryview \u7684\u5c6c\u6027)": [[344, "memoryview.suboffsets", false]], "subpad() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.subpad", false]], "subprocess": [[348, "module-subprocess", false]], "subprocess \u6a21\u7d44": [[348, "index-1", false]], "subprocess_exec() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.subprocess_exec", false]], "subprocess_shell() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.subprocess_shell", false]], "subprocesserror": [[348, "subprocess.SubprocessError", false]], "subprocessprotocol (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.SubprocessProtocol", false]], "subprocesstransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.SubprocessTransport", false]], "subscribe() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.subscribe", false]], "subscript (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Subscript", false]], "subscription\uff08\u4e0b\u6a19\uff09": [[428, "index-15", false], [428, "index-22", false], [428, "index-30", false], [430, "index-41", false], [436, "index-9", false]], "subscript\uff08\u4e0b\u6a19\uff09": [[344, "index-20", false], [344, "index-24", false]], "subsequent_indent (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.subsequent_indent", false]], "substitute() (string.template \u7684\u65b9\u6cd5)": [[345, "string.Template.substitute", false]], "subtest() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.subTest", false]], "subtract() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.subtract", false]], "subtract() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.subtract", false]], "subtraction\uff08\u6e1b\uff09": [[430, "index-70", false]], "subtype (email.headerregistry.contenttypeheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.ContentTypeHeader.subtype", false]], "subwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.subwin", false]], "successful() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.successful", false]], "suffix (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.suffix", false]], "suffix_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.suffix_map", false]], "suffix_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.suffix_map", false]], "suffixes (pathlib.purepath \u7684\u5c6c\u6027)": [[296, "pathlib.PurePath.suffixes", false]], "suiteclass (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.suiteClass", false]], "suite\uff08\u5957\u88dd\uff09": [[427, "index-1", false]], "sum()": [[225, "sum", false]], "sum_list()": [[35, "index-8", false]], "sum_sequence()": [[35, "index-14", false], [35, "index-9", false]], "summarize() (doctest.doctestrunner \u7684\u65b9\u6cd5)": [[193, "doctest.DocTestRunner.summarize", false]], "summarize_address_range() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.summarize_address_range", false]], "sumprod() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.sumprod", false]], "sunau": [[349, "module-sunau", false]], "sunday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.SUNDAY", false]], "super (pyclbr.class \u7684\u5c6c\u6027)": [[312, "pyclbr.Class.super", false]], "super (\u5167\u5efa\u985e\u5225)": [[225, "super", false]], "supernet() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.supernet", false]], "supernet() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.supernet", false]], "supernet_of() (ipaddress.ipv4network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv4Network.supernet_of", false]], "supernet_of() (ipaddress.ipv6network \u7684\u65b9\u6cd5)": [[259, "ipaddress.IPv6Network.supernet_of", false]], "supports_bytes_environ (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_bytes_environ", false]], "supports_dir_fd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_dir_fd", false]], "supports_effective_ids (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_effective_ids", false]], "supports_fd (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_fd", false]], "supports_follow_symlinks (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.supports_follow_symlinks", false]], "supports_unicode_filenames (\u65bc os.path \u6a21\u7d44\u4e2d)": [[294, "os.path.supports_unicode_filenames", false]], "supportsabs (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsAbs", false]], "supportsbytes (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsBytes", false]], "supportscomplex (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsComplex", false]], "supportsfloat (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsFloat", false]], "supportsindex (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsIndex", false]], "supportsint (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsInt", false]], "supportsround (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.SupportsRound", false]], "suppress() (\u65bc contextlib \u6a21\u7d44\u4e2d)": [[169, "contextlib.suppress", false]], "suppresscrashreport (test.support \u4e2d\u7684\u985e\u5225)": [[362, "test.support.SuppressCrashReport", false]], "surrogateescape": [[158, "index-1", false]], "surrogatepass": [[158, "index-4", false]], "sw_hide (\u65bc subprocess \u6a21\u7d44\u4e2d)": [[348, "subprocess.SW_HIDE", false]], "swap (opcode)": [[191, "opcode-SWAP", false]], "swap_attr() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.swap_attr", false]], "swap_item() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.swap_item", false]], "swapcase() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.swapcase", false]], "swapcase() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.swapcase", false]], "swapcase() (str \u7684\u65b9\u6cd5)": [[344, "str.swapcase", false]], "symbol (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.Symbol", false]], "symboltable (symtable \u4e2d\u7684\u985e\u5225)": [[351, "symtable.SymbolTable", false]], "symlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.symlink", false]], "symlink_to() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.symlink_to", false]], "symmetric_difference() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.symmetric_difference", false]], "symmetric_difference_update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.symmetric_difference_update", false]], "symtable": [[351, "module-symtable", false]], "symtable() (\u65bc symtable \u6a21\u7d44\u4e2d)": [[351, "symtable.symtable", false]], "symtype (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.SYMTYPE", false]], "syn (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.SYN", false]], "sync() (dbm.dumb.dumbdbm \u7684\u65b9\u6cd5)": [[184, "dbm.dumb.dumbdbm.sync", false]], "sync() (dbm.gnu.gdbm \u7684\u65b9\u6cd5)": [[184, "dbm.gnu.gdbm.sync", false]], "sync() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.sync", false]], "sync() (shelve.shelf \u7684\u65b9\u6cd5)": [[330, "shelve.Shelf.sync", false]], "sync() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sync", false]], "syncdown() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncdown", false]], "synchronized() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.synchronized", false]], "syncmanager (multiprocessing.managers \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.managers.SyncManager", false]], "syncok() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncok", false]], "syncup() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.syncup", false]], "syntaxerr": [[410, "xml.dom.SyntaxErr", false]], "syntaxerror": [[213, "SyntaxError", false]], "syntaxwarning": [[213, "SyntaxWarning", false]], "syntax\uff08\u8a9e\u6cd5\uff09": [[434, "index-0", false]], "sys": [[33, "index-15", false], [33, "index-42", false], [33, "index-45", false], [35, "index-18", false], [225, "index-8", false], [352, "module-sys", false], [427, "index-11", false], [437, "index-2", false], [450, "index-4", false]], "sys.exc_info": [[428, "index-66", false]], "sys.exception": [[428, "index-66", false]], "sys.last_traceback": [[428, "index-66", false]], "sys.meta_path": [[432, "index-10", false]], "sys.modules": [[432, "index-7", false]], "sys.monitoring": [[353, "module-sys.monitoring", false]], "sys.path": [[432, "index-17", false]], "sys.path_hooks": [[432, "index-17", false]], "sys.path_importer_cache": [[432, "index-17", false]], "sys.stderr": [[428, "index-55", false]], "sys.stdin": [[428, "index-55", false]], "sys.stdout": [[428, "index-55", false]], "sys_exc (2to3 fixer)": [[112, "to3fixer-sys_exc", false]], "sys_version (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.sys_version", false]], "sysconf() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sysconf", false]], "sysconf_names (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.sysconf_names", false]], "sysconfig": [[355, "module-sysconfig", false]], "syslog": [[356, "module-syslog", false]], "syslog() (\u65bc syslog \u6a21\u7d44\u4e2d)": [[356, "syslog.syslog", false]], "sysloghandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.SysLogHandler", false]], "system() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.system", false]], "system() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.system", false]], "system_alias() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.system_alias", false]], "system_must_validate_cert() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.system_must_validate_cert", false]], "systemerror": [[213, "SystemError", false]], "systemerror\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[45, "index-4", false], [45, "index-5", false]], "systemexit": [[213, "SystemExit", false]], "systemexit\uff08\u5167\u5efa\u4f8b\u5916\uff09": [[429, "index-17", false]], "systemid (xml.dom.documenttype \u7684\u5c6c\u6027)": [[410, "xml.dom.DocumentType.systemId", false]], "systemrandom (random \u4e2d\u7684\u985e\u5225)": [[318, "random.SystemRandom", false]], "systemrandom (secrets \u4e2d\u7684\u985e\u5225)": [[326, "secrets.SystemRandom", false]], "systemroot": [[348, "index-4", false]], "t_bool\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_byte\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_char\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_double\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_float\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_fmt (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.T_FMT", false]], "t_fmt_ampm (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.T_FMT_AMPM", false]], "t_int\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_longlong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_long\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_none (c macro)": [[58, "c.T_NONE", false]], "t_object (c macro)": [[58, "c.T_OBJECT", false]], "t_object_ex\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_pyssizet\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_short\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_string_inplace\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_string\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ubyte\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_uint\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ulongulong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ulong\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "t_ushort\uff08c \u5de8\u96c6\uff09": [[58, "index-4", false]], "tab (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.TAB", false]], "tab() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.tab", false]], "taberror": [[213, "TabError", false]], "tabnanny": [[357, "module-tabnanny", false]], "tabs() (tkinter.ttk.notebook \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Notebook.tabs", false]], "tabsize (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.tabsize", false]], "tabular\uff08\u8868\u683c\uff09": [[175, "index-0", false]], "tab\uff08\u5b9a\u4f4d\u5b57\u5143\uff09": [[435, "index-8", false]], "tag (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.tag", false]], "tag_bind() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_bind", false]], "tag_configure() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_configure", false]], "tag_has() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.tag_has", false]], "tagname (xml.dom.element \u7684\u5c6c\u6027)": [[410, "xml.dom.Element.tagName", false]], "tail (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.tail", false]], "take_snapshot() (\u65bc tracemalloc \u6a21\u7d44\u4e2d)": [[382, "tracemalloc.take_snapshot", false]], "takewhile() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.takewhile", false]], "tan() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tan", false]], "tan() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tan", false]], "tanh() (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tanh", false]], "tanh() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tanh", false]], "tar_filter() (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.tar_filter", false]], "tarerror": [[358, "tarfile.TarError", false]], "tarfile": [[358, "module-tarfile", false]], "tarfile (tarfile \u4e2d\u7684\u985e\u5225)": [[358, "tarfile.TarFile", false]], "tarfile \u547d\u4ee4\u5217\u9078\u9805": [[358, "cmdoption-tarfile-c", false], [358, "cmdoption-tarfile-create", false], [358, "cmdoption-tarfile-e", false], [358, "cmdoption-tarfile-extract", false], [358, "cmdoption-tarfile-filter", false], [358, "cmdoption-tarfile-l", false], [358, "cmdoption-tarfile-list", false], [358, "cmdoption-tarfile-t", false], [358, "cmdoption-tarfile-test", false], [358, "cmdoption-tarfile-v", false]], "target": [[427, "index-6", false], [436, "index-21", false], [436, "index-31", false], [436, "index-5", false], [436, "index-6", false]], "target (xml.dom.processinginstruction \u7684\u5c6c\u6027)": [[410, "xml.dom.ProcessingInstruction.target", false]], "tarinfo (tarfile \u4e2d\u7684\u985e\u5225)": [[358, "tarfile.TarInfo", false]], "tarinfo (tarfile.filtererror \u7684\u5c6c\u6027)": [[358, "tarfile.FilterError.tarinfo", false]], "task (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.Task", false]], "task_done() (asyncio.queue \u7684\u65b9\u6cd5)": [[134, "asyncio.Queue.task_done", false]], "task_done() (multiprocessing.joinablequeue \u7684\u65b9\u6cd5)": [[283, "multiprocessing.JoinableQueue.task_done", false]], "task_done() (queue.queue \u7684\u65b9\u6cd5)": [[316, "queue.Queue.task_done", false]], "taskgroup (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.TaskGroup", false]], "tau (\u65bc cmath \u6a21\u7d44\u4e2d)": [[154, "cmath.tau", false]], "tau (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.tau", false]], "tb_frame (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_frame", false]], "tb_frame \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_lasti (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_lasti", false]], "tb_lasti \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_lineno (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_lineno", false]], "tb_lineno \uff08traceback \u5c6c\u6027\uff09": [[428, "index-67", false]], "tb_locals (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.tb_locals", false]], "tb_next (traceback \u7684\u5c6c\u6027)": [[428, "traceback.tb_next", false]], "tb_next \uff08traceback \u5c6c\u6027\uff09": [[428, "index-68", false]], "tbreak (pdb command)": [[297, "pdbcommand-tbreak", false]], "tcdrain() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcdrain", false]], "tcflow() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcflow", false]], "tcflush() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcflush", false]], "tcgetattr() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcgetattr", false]], "tcgetpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.tcgetpgrp", false]], "tcgetwinsize() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcgetwinsize", false]], "tcl() (\u65bc tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.Tcl", false]], "tcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.TCPServer", false]], "tcsadrain (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSADRAIN", false]], "tcsaflush (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSAFLUSH", false]], "tcsanow (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.TCSANOW", false]], "tcsendbreak() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsendbreak", false]], "tcsetattr() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsetattr", false]], "tcsetpgrp() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.tcsetpgrp", false]], "tcsetwinsize() (\u65bc termios \u6a21\u7d44\u4e2d)": [[361, "termios.tcsetwinsize", false]], "teardown() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.tearDown", false]], "teardownclass() (unittest.testcase \u7684\u65b9\u6cd5)": [[388, "unittest.TestCase.tearDownClass", false]], "tee() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.tee", false]], "teleport() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.teleport", false]], "tell() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.tell", false]], "tell() (chunk.chunk \u7684\u65b9\u6cd5)": [[153, "chunk.Chunk.tell", false]], "tell() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.tell", false]], "tell() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.tell", false]], "tell() (io.textiowrapper \u7684\u65b9\u6cd5)": [[258, "io.TextIOWrapper.tell", false]], "tell() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.tell", false]], "tell() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.tell", false]], "tell() (sunau.au_read \u7684\u65b9\u6cd5)": [[349, "sunau.AU_read.tell", false]], "tell() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.tell", false]], "tell() (wave.wave_read \u7684\u65b9\u6cd5)": [[401, "wave.Wave_read.tell", false]], "tell() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.tell", false]], "telnet": [[359, "index-0", false]], "telnet (telnetlib \u4e2d\u7684\u985e\u5225)": [[359, "telnetlib.Telnet", false]], "telnetlib": [[359, "module-telnetlib", false]], "temp": [[360, "index-8", false], [461, "index-7", false]], "temp_cwd() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_cwd", false]], "temp_dir() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_dir", false]], "temp_umask() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.temp_umask", false]], "tempdir (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.tempdir", false]], "tempfile": [[360, "module-tempfile", false]], "template (pipes \u4e2d\u7684\u985e\u5225)": [[301, "pipes.Template", false]], "template (string \u4e2d\u7684\u985e\u5225)": [[345, "string.Template", false]], "template (string.template \u7684\u5c6c\u6027)": [[345, "string.Template.template", false]], "temporary (bdb.breakpoint \u7684\u5c6c\u6027)": [[144, "bdb.Breakpoint.temporary", false]], "temporarydirectory (tempfile \u4e2d\u7684\u985e\u5225)": [[360, "tempfile.TemporaryDirectory", false]], "temporaryfile() (\u65bc tempfile \u6a21\u7d44\u4e2d)": [[360, "tempfile.TemporaryFile", false]], "temporary\uff08\u81e8\u6642\uff09": [[360, "index-0", false]], "teredo (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.teredo", false]], "term": [[177, "index-1", false], [177, "index-2", false]], "termattrs() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.termattrs", false]], "terminal_size (os \u4e2d\u7684\u985e\u5225)": [[293, "os.terminal_size", false]], "terminate() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.terminate", false]], "terminate() (asyncio.subprocesstransport \u7684\u65b9\u6cd5)": [[133, "asyncio.SubprocessTransport.terminate", false]], "terminate() (multiprocessing.pool.pool \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.Pool.terminate", false]], "terminate() (multiprocessing.process \u7684\u65b9\u6cd5)": [[283, "multiprocessing.Process.terminate", false]], "terminate() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.terminate", false]], "termination model\uff08\u7d42\u6b62\u6a21\u578b\uff09": [[429, "index-16", false]], "terminator (logging.streamhandler \u7684\u5c6c\u6027)": [[269, "logging.StreamHandler.terminator", false]], "termios": [[361, "module-termios", false]], "termname() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.termname", false]], "ternaryfunc (c type)": [[63, "c.ternaryfunc", false]], "ternary\uff08\u4e09\u5143\uff09": [[430, "index-88", false]], "test": [[362, "module-test", false]], "test (doctest.doctestfailure \u7684\u5c6c\u6027)": [[193, "doctest.DocTestFailure.test", false]], "test (doctest.unexpectedexception \u7684\u5c6c\u6027)": [[193, "doctest.UnexpectedException.test", false]], "test() (\u65bc cgi \u6a21\u7d44\u4e2d)": [[151, "cgi.test", false]], "test.regrtest": [[362, "module-test.regrtest", false]], "test.support": [[362, "module-test.support", false]], "test.support.bytecode_helper": [[362, "module-test.support.bytecode_helper", false]], "test.support.import_helper": [[362, "module-test.support.import_helper", false]], "test.support.os_helper": [[362, "module-test.support.os_helper", false]], "test.support.script_helper": [[362, "module-test.support.script_helper", false]], "test.support.socket_helper": [[362, "module-test.support.socket_helper", false]], "test.support.threading_helper": [[362, "module-test.support.threading_helper", false]], "test.support.warnings_helper": [[362, "module-test.support.warnings_helper", false]], "test_data_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_DATA_DIR", false]], "test_home_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_HOME_DIR", false]], "test_http_url (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_HTTP_URL", false]], "test_support_dir (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.TEST_SUPPORT_DIR", false]], "testcase (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestCase", false]], "testfailed": [[362, "test.support.TestFailed", false]], "testfile() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testfile", false]], "testfn (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN", false]], "testfn_nonascii (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_NONASCII", false]], "testfn_undecodable (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNDECODABLE", false]], "testfn_unencodable (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNENCODABLE", false]], "testfn_unicode (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.TESTFN_UNICODE", false]], "testloader (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestLoader", false]], "testmethodprefix (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.testMethodPrefix", false]], "testmod() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testmod", false]], "testnamepatterns (unittest.testloader \u7684\u5c6c\u6027)": [[388, "unittest.TestLoader.testNamePatterns", false]], "testresult (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestResult", false]], "tests (\u65bc imghdr \u6a21\u7d44\u4e2d)": [[249, "imghdr.tests", false]], "tests (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.tests", false]], "testsource() (\u65bc doctest \u6a21\u7d44\u4e2d)": [[193, "doctest.testsource", false]], "testsrun (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.testsRun", false]], "testsuite (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TestSuite", false]], "testzip() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.testzip", false]], "test\uff08\u6e2c\u8a66\uff09": [[430, "index-80", false], [430, "index-81", false]], "text (syntaxerror \u7684\u5c6c\u6027)": [[213, "SyntaxError.text", false]], "text (traceback.tracebackexception \u7684\u5c6c\u6027)": [[381, "traceback.TracebackException.text", false]], "text (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Text", false]], "text (xml.etree.elementtree.element \u7684\u5c6c\u6027)": [[413, "xml.etree.ElementTree.Element.text", false]], "text (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.text", false]], "text encoding\uff08\u6587\u5b57\u7de8\u78bc\uff09": [[87, "term-text-encoding", true]], "text file\uff08\u6587\u5b57\u6a94\u6848\uff09": [[87, "term-text-file", true]], "text mode\uff08\u6587\u5b57\u6a21\u5f0f\uff09": [[225, "index-8", false]], "text sequence type\uff08\u6587\u5b57\u5e8f\u5217\u578b\u5225\uff09": [[344, "index-28", false]], "text() (msilib.dialog \u7684\u65b9\u6cd5)": [[281, "msilib.Dialog.text", false]], "text() (\u65bc cgitb \u6a21\u7d44\u4e2d)": [[152, "cgitb.text", false]], "text_encoding() (\u65bc io \u6a21\u7d44\u4e2d)": [[258, "io.text_encoding", false]], "text_factory (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.text_factory", false]], "textbox (curses.textpad \u4e2d\u7684\u985e\u5225)": [[177, "curses.textpad.Textbox", false]], "textcalendar (calendar \u4e2d\u7684\u985e\u5225)": [[150, "calendar.TextCalendar", false]], "textdomain() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.textdomain", false]], "textdomain() (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.textdomain", false]], "textinput() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.textinput", false]], "textio (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TextIO", false]], "textiobase (io \u4e2d\u7684\u985e\u5225)": [[258, "io.TextIOBase", false]], "textiowrapper (io \u4e2d\u7684\u985e\u5225)": [[258, "io.TextIOWrapper", false]], "texttestresult (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TextTestResult", false]], "texttestrunner (unittest \u4e2d\u7684\u985e\u5225)": [[388, "unittest.TextTestRunner", false]], "textwrap": [[364, "module-textwrap", false]], "textwrapper (textwrap \u4e2d\u7684\u985e\u5225)": [[364, "textwrap.TextWrapper", false]], "theme_create() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_create", false]], "theme_names() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_names", false]], "theme_settings() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_settings", false]], "theme_use() (tkinter.ttk.style \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Style.theme_use", false]], "thousep (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.THOUSEP", false]], "thread (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Thread", false]], "thread() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.thread", false]], "thread_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.thread_info", false]], "thread_time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.thread_time", false]], "thread_time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.thread_time_ns", false]], "threadedchildwatcher (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.ThreadedChildWatcher", false]], "threading": [[365, "module-threading", false]], "threading_cleanup() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.threading_cleanup", false]], "threading_setup() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.threading_setup", false]], "threadinghttpserver (http.server \u4e2d\u7684\u985e\u5225)": [[245, "http.server.ThreadingHTTPServer", false]], "threadingmixin (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingMixIn", false]], "threadingtcpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingTCPServer", false]], "threadingudpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUDPServer", false]], "threadingunixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUnixDatagramServer", false]], "threadingunixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.ThreadingUnixStreamServer", false]], "threadpool (multiprocessing.pool \u4e2d\u7684\u985e\u5225)": [[283, "multiprocessing.pool.ThreadPool", false]], "threadpoolexecutor (concurrent.futures \u4e2d\u7684\u985e\u5225)": [[166, "concurrent.futures.ThreadPoolExecutor", false]], "threads": [[115, "index-1", false]], "threadsafety (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.threadsafety", false]], "throw (2to3 fixer)": [[112, "to3fixer-throw", false]], "throw() (coroutine \u7684\u65b9\u6cd5)": [[428, "coroutine.throw", false]], "throw() (generator \u7684\u65b9\u6cd5)": [[430, "generator.throw", false]], "thursday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.THURSDAY", false]], "ticket_lifetime_hint (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.ticket_lifetime_hint", false]], "tigetflag() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetflag", false]], "tigetnum() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetnum", false]], "tigetstr() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tigetstr", false]], "tilde (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TILDE", false]], "tilt() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tilt", false]], "tiltangle() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tiltangle", false]], "time": [[366, "module-time", false]], "time (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.time", false]], "time (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.time", false]], "time (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time", false]], "time() (asyncio.loop \u7684\u65b9\u6cd5)": [[126, "asyncio.loop.time", false]], "time() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.time", false]], "time() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.time", false]], "time2internaldate() (\u65bc imaplib \u6a21\u7d44\u4e2d)": [[248, "imaplib.Time2Internaldate", false]], "time_hi_version (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_hi_version", false]], "time_low (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_low", false]], "time_mid (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.time_mid", false]], "time_ns() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.time_ns", false]], "timedelta (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.timedelta", false]], "timedrotatingfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.TimedRotatingFileHandler", false]], "timegm() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.timegm", false]], "timeit": [[367, "module-timeit", false]], "timeit \u547d\u4ee4\u5217\u9078\u9805": [[367, "cmdoption-timeit-h", false], [367, "cmdoption-timeit-n", false], [367, "cmdoption-timeit-p", false], [367, "cmdoption-timeit-r", false], [367, "cmdoption-timeit-s", false], [367, "cmdoption-timeit-u", false], [367, "cmdoption-timeit-v", false]], "timeit() (timeit.timer \u7684\u65b9\u6cd5)": [[367, "timeit.Timer.timeit", false]], "timeit() (\u65bc timeit \u6a21\u7d44\u4e2d)": [[367, "timeit.timeit", false]], "timeout": [[337, "socket.timeout", false]], "timeout (asyncio \u4e2d\u7684\u985e\u5225)": [[139, "asyncio.Timeout", false]], "timeout (socketserver.baseserver \u7684\u5c6c\u6027)": [[338, "socketserver.BaseServer.timeout", false]], "timeout (ssl.sslsession \u7684\u5c6c\u6027)": [[341, "ssl.SSLSession.timeout", false]], "timeout (subprocess.timeoutexpired \u7684\u5c6c\u6027)": [[348, "subprocess.TimeoutExpired.timeout", false]], "timeout() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.timeout", false]], "timeout() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.timeout", false]], "timeout_at() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.timeout_at", false]], "timeout_max (\u65bc _thread \u6a21\u7d44\u4e2d)": [[115, "thread.TIMEOUT_MAX", false]], "timeout_max (\u65bc threading \u6a21\u7d44\u4e2d)": [[365, "threading.TIMEOUT_MAX", false]], "timeouterror": [[127, "asyncio.TimeoutError", false], [166, "concurrent.futures.TimeoutError", false], [213, "TimeoutError", false], [283, "multiprocessing.TimeoutError", false]], "timeoutexpired": [[348, "subprocess.TimeoutExpired", false]], "timer (threading \u4e2d\u7684\u985e\u5225)": [[365, "threading.Timer", false]], "timer (timeit \u4e2d\u7684\u985e\u5225)": [[367, "timeit.Timer", false]], "timerhandle (asyncio \u4e2d\u7684\u985e\u5225)": [[126, "asyncio.TimerHandle", false]], "times() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.times", false]], "timestamp (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.TIMESTAMP", false]], "timestamp() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timestamp", false]], "timetuple() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.timetuple", false]], "timetuple() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timetuple", false]], "timetz() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.timetz", false]], "timezone (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.timezone", false]], "timezone (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.timezone", false]], "title() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.title", false]], "title() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.title", false]], "title() (str \u7684\u65b9\u6cd5)": [[344, "str.title", false]], "title() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.title", false]], "tix": [[375, "index-0", false]], "tix_addbitmapdir() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_addbitmapdir", false]], "tix_cget() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_cget", false]], "tix_configure() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_configure", false]], "tix_filedialog() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_filedialog", false]], "tix_getbitmap() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_getbitmap", false]], "tix_getimage() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_getimage", false]], "tix_option_get() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_option_get", false]], "tix_resetoptions() (tkinter.tix.tixcommand \u7684\u65b9\u6cd5)": [[375, "tkinter.tix.tixCommand.tix_resetoptions", false]], "tixcommand (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.tixCommand", false]], "tk": [[368, "index-0", false]], "tk (tkinter \u4e2d\u7684\u985e\u5225)": [[369, "tkinter.Tk", false]], "tk (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Tk", false]], "tk (tkinter.tk \u7684\u5c6c\u6027)": [[369, "tkinter.Tk.tk", false]], "tk option data types": [[369, "index-4", false]], "tkinter": [[368, "index-0", false], [369, "module-tkinter", false]], "tkinter.colorchooser": [[370, "module-tkinter.colorchooser", false]], "tkinter.commondialog": [[189, "module-tkinter.commondialog", false]], "tkinter.dnd": [[371, "module-tkinter.dnd", false]], "tkinter.filedialog": [[189, "module-tkinter.filedialog", false]], "tkinter.font": [[372, "module-tkinter.font", false]], "tkinter.messagebox": [[373, "module-tkinter.messagebox", false]], "tkinter.scrolledtext": [[374, "module-tkinter.scrolledtext", false]], "tkinter.simpledialog": [[189, "module-tkinter.simpledialog", false]], "tkinter.tix": [[375, "module-tkinter.tix", false]], "tkinter.ttk": [[376, "module-tkinter.ttk", false]], "tlist (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.TList", false]], "tls": [[341, "index-1", false]], "tlsv1 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1", false]], "tlsv1_1 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_1", false]], "tlsv1_2 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_2", false]], "tlsv1_3 (ssl.tlsversion \u7684\u5c6c\u6027)": [[341, "ssl.TLSVersion.TLSv1_3", false]], "tlsversion (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.TLSVersion", false]], "tm_gmtoff (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_gmtoff", false]], "tm_hour (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_hour", false]], "tm_isdst (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_isdst", false]], "tm_mday (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_mday", false]], "tm_min (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_min", false]], "tm_mon (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_mon", false]], "tm_sec (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_sec", false]], "tm_wday (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_wday", false]], "tm_yday (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_yday", false]], "tm_year (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_year", false]], "tm_zone (time.struct_time \u7684\u5c6c\u6027)": [[366, "time.struct_time.tm_zone", false]], "tmp": [[360, "index-9", false]], "tmpdir": [[360, "index-7", false], [483, "index-52", false]], "to_bytes() (int \u7684\u65b9\u6cd5)": [[344, "int.to_bytes", false]], "to_eng_string() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_eng_string", false]], "to_eng_string() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_eng_string", false]], "to_integral() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral", false]], "to_integral_exact() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_integral_exact", false]], "to_integral_exact() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral_exact", false]], "to_integral_value() (decimal.decimal \u7684\u65b9\u6cd5)": [[186, "decimal.Decimal.to_integral_value", false]], "to_sci_string() (decimal.context \u7684\u65b9\u6cd5)": [[186, "decimal.Context.to_sci_string", false]], "to_thread() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.to_thread", false]], "toascii() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.ToASCII", false]], "tobuf() (tarfile.tarinfo \u7684\u65b9\u6cd5)": [[358, "tarfile.TarInfo.tobuf", false]], "tobytes() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tobytes", false]], "tobytes() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.tobytes", false]], "today() (datetime.date \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.date.today", false]], "today() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.today", false]], "tofile() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tofile", false]], "tok_name (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.tok_name", false]], "token": [[377, "module-token", false], [435, "index-0", false]], "token (contextvars \u4e2d\u7684\u985e\u5225)": [[170, "contextvars.Token", false]], "token (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.token", false]], "token_bytes() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_bytes", false]], "token_hex() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_hex", false]], "token_urlsafe() (\u65bc secrets \u6a21\u7d44\u4e2d)": [[326, "secrets.token_urlsafe", false]], "tokenerror": [[378, "tokenize.TokenError", false]], "tokenize": [[378, "module-tokenize", false]], "tokenize \u547d\u4ee4\u5217\u9078\u9805": [[378, "cmdoption-tokenize-e", false], [378, "cmdoption-tokenize-h", false]], "tokenize() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.tokenize", false]], "tolist() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tolist", false]], "tolist() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.tolist", false]], "tomldecodeerror": [[379, "tomllib.TOMLDecodeError", false]], "tomllib": [[379, "module-tomllib", false]], "tomono() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.tomono", false]], "toordinal() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.toordinal", false]], "toordinal() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.toordinal", false]], "top() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.top", false]], "top() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.top", false]], "top_panel() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.top_panel", false]], "topologicalsorter (graphlib \u4e2d\u7684\u985e\u5225)": [[232, "graphlib.TopologicalSorter", false]], "toprettyxml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.toprettyxml", false]], "toreadonly() (memoryview \u7684\u65b9\u6cd5)": [[344, "memoryview.toreadonly", false]], "tostereo() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.tostereo", false]], "tostring() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.tostring", false]], "tostringlist() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.tostringlist", false]], "total() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.total", false]], "total_changes (sqlite3.connection \u7684\u5c6c\u6027)": [[340, "sqlite3.Connection.total_changes", false]], "total_nframe (tracemalloc.traceback \u7684\u5c6c\u6027)": [[382, "tracemalloc.Traceback.total_nframe", false]], "total_ordering() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.total_ordering", false]], "total_seconds() (datetime.timedelta \u7684\u65b9\u6cd5)": [[183, "datetime.timedelta.total_seconds", false]], "touch() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.touch", false]], "touchline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.touchline", false]], "touchwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.touchwin", false]], "tounicode() (array.array \u7684\u65b9\u6cd5)": [[121, "array.array.tounicode", false]], "tounicode() (\u65bc encodings.idna \u6a21\u7d44\u4e2d)": [[158, "encodings.idna.ToUnicode", false]], "towards() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.towards", false]], "toxml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.toxml", false]], "tparm() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.tparm", false]], "trace": [[380, "module-trace", false]], "trace (trace \u4e2d\u7684\u985e\u5225)": [[380, "trace.Trace", false]], "trace (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Trace", false]], "trace function": [[352, "index-11", false], [352, "index-29", false], [365, "index-0", false], [365, "index-1", false]], "trace \u547d\u4ee4\u5217\u9078\u9805": [[380, "cmdoption-trace-C", false], [380, "cmdoption-trace-R", false], [380, "cmdoption-trace-T", false], [380, "cmdoption-trace-c", false], [380, "cmdoption-trace-f", false], [380, "cmdoption-trace-g", false], [380, "cmdoption-trace-help", false], [380, "cmdoption-trace-ignore-dir", false], [380, "cmdoption-trace-ignore-module", false], [380, "cmdoption-trace-l", false], [380, "cmdoption-trace-m", false], [380, "cmdoption-trace-r", false], [380, "cmdoption-trace-s", false], [380, "cmdoption-trace-t", false], [380, "cmdoption-trace-version", false]], "trace() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.trace", false]], "trace_dispatch() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.trace_dispatch", false]], "traceback": [[352, "index-8", false], [381, "index-0", false], [381, "module-traceback", false], [427, "index-11", false], [428, "index-66", false], [436, "index-28", false]], "traceback (inspect \u4e2d\u7684\u985e\u5225)": [[255, "inspect.Traceback", false]], "traceback (tracemalloc \u4e2d\u7684\u985e\u5225)": [[382, "tracemalloc.Traceback", false]], "traceback (tracemalloc.statistic \u7684\u5c6c\u6027)": [[382, "tracemalloc.Statistic.traceback", false]], "traceback (tracemalloc.statisticdiff \u7684\u5c6c\u6027)": [[382, "tracemalloc.StatisticDiff.traceback", false]], "traceback (tracemalloc.trace \u7684\u5c6c\u6027)": [[382, "tracemalloc.Trace.traceback", false]], "traceback_limit (tracemalloc.snapshot \u7684\u5c6c\u6027)": [[382, "tracemalloc.Snapshot.traceback_limit", false]], "traceback_limit (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.traceback_limit", false]], "tracebackexception (traceback \u4e2d\u7684\u985e\u5225)": [[381, "traceback.TracebackException", false]], "tracebacklimit (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.tracebacklimit", false]], "tracebacks\uff08\u56de\u6eaf\uff09": [[152, "index-0", false]], "tracebacktype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.TracebackType", false]], "tracemalloc": [[382, "module-tracemalloc", false]], "tracer() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.tracer", false]], "traces (tracemalloc.snapshot \u7684\u5c6c\u6027)": [[382, "tracemalloc.Snapshot.traces", false]], "trace\uff08\u8ffd\u8e64\uff09": [[428, "index-66", false]], "trailing": [[430, "index-95", false]], "transfercmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.transfercmd", false]], "transient_internet() (\u65bc test.support.socket_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.socket_helper.transient_internet", false]], "translate() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.translate", false]], "translate() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.translate", false]], "translate() (str \u7684\u65b9\u6cd5)": [[344, "str.translate", false]], "translate() (\u65bc fnmatch \u6a21\u7d44\u4e2d)": [[220, "fnmatch.translate", false]], "translation() (\u65bc gettext \u6a21\u7d44\u4e2d)": [[230, "gettext.translation", false]], "transport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.Transport", false]], "transport (asyncio.streamwriter \u7684\u5c6c\u6027)": [[136, "asyncio.StreamWriter.transport", false]], "transport layer security\uff08\u50b3\u8f38\u5c64\u5b89\u5168\uff09": [[341, "index-1", false]], "traversable (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.Traversable", false]], "traversable (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.Traversable", false]], "traversableresources (importlib.abc \u4e2d\u7684\u985e\u5225)": [[250, "importlib.abc.TraversableResources", false]], "traversableresources (importlib.resources.abc \u4e2d\u7684\u985e\u5225)": [[253, "importlib.resources.abc.TraversableResources", false]], "traversal\uff08\u904d\u6b77\uff09": [[293, "index-31", false], [293, "index-32", false]], "traverseproc (c type)": [[28, "c.traverseproc", false]], "tree (tkinter.tix \u4e2d\u7684\u985e\u5225)": [[375, "tkinter.tix.Tree", false]], "treebuilder (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.TreeBuilder", false]], "treeview (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Treeview", false]], "triangular() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.triangular", false]], "triple-quoted string\uff08\u4e09\u5f15\u865f\u5167\u5b57\u4e32\uff09": [[87, "term-triple-quoted-string", true]], "triple-quoted string\uff08\u4e09\u5f15\u865f\u5b57\u4e32\uff09": [[435, "index-18", false]], "true": [[344, "index-17", false], [344, "index-4", false], [344, "index-2", false], [428, "index-12", false]], "true (\u5167\u5efa\u8b8a\u6578)": [[168, "True", false]], "truediv() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.truediv", false]], "trunc() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.trunc", false]], "trunc()\uff08\u65bc math \u6a21\u7d44\uff09": [[344, "index-15", false]], "truncate() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.truncate", false]], "truncate() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.truncate", false]], "truth() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.truth", false]], "truth\uff08\u771f\uff09": [[344, "index-1", false]], "try": [[213, "index-0", false], [427, "index-9", true], [428, "index-67", false]], "try (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Try", false]], "trystar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TryStar", false]], "ttk": [[376, "index-0", false]], "tty": [[361, "index-0", false], [383, "module-tty", false]], "ttyname() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.ttyname", false]], "tuesday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.TUESDAY", false]], "tuple": [[430, "index-42", false], [430, "index-45", false], [430, "index-9", false], [430, "index-92", false]], "tuple (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Tuple", false]], "tuple (\u5167\u5efa\u985e\u5225)": [[344, "tuple", false]], "tuple (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Tuple", false]], "tuple display": [[430, "index-8", false]], "tuple_params (2to3 fixer)": [[112, "to3fixer-tuple_params", false]], "tuple\uff08\u5143\u7d44\uff09": [[38, "index-2", false], [60, "index-0", false], [344, "index-22", false], [344, "index-26", false], [428, "index-20", false]], "tuple\uff08\u5143\u7ec4\uff09": [[54, "index-1", false]], "turtle": [[384, "module-turtle", false]], "turtle (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Turtle", false]], "turtledemo": [[384, "module-turtledemo", false]], "turtles() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.turtles", false]], "turtlescreen (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.TurtleScreen", false]], "turtlesize() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.turtlesize", false]], "type": [[436, "index-47", false]], "type (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.type", false]], "type (socket.socket \u7684\u5c6c\u6027)": [[337, "socket.socket.type", false]], "type (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.type", false]], "type (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.Type", false]], "type (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.type", false]], "type (\u5167\u5efa\u985e\u5225)": [[225, "type", false]], "type alias\uff08\u578b\u5225\u5225\u540d\uff09": [[87, "term-type-alias", true]], "type annotation\uff08\u578b\u5225\u8a3b\u8a18\uff09\uff1btype hint\uff08\u578b\u5225\u63d0\u793a\uff09": [[344, "index-55", false]], "type hint\uff08\u578b\u5225\u63d0\u793a\uff09": [[87, "term-type-hint", true]], "type of an object\uff08\u7269\u4ef6\u7684\u578b\u5225\uff09": [[428, "index-1", false]], "type parameter\uff08\u578b\u5225\u53c3\u6578\uff09": [[427, "index-53", false]], "type_check_only() (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.type_check_only", false]], "type_checker (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPE_CHECKER", false]], "type_checking (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TYPE_CHECKING", false]], "type_comment (ast.arg \u7684\u5c6c\u6027)": [[122, "ast.arg.type_comment", false]], "type_comment (ast.assign \u7684\u5c6c\u6027)": [[122, "ast.Assign.type_comment", false]], "type_comment (ast.for \u7684\u5c6c\u6027)": [[122, "ast.For.type_comment", false]], "type_comment (ast.functiondef \u7684\u5c6c\u6027)": [[122, "ast.FunctionDef.type_comment", false]], "type_comment (ast.with \u7684\u5c6c\u6027)": [[122, "ast.With.type_comment", false]], "type_comment (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TYPE_COMMENT", false]], "type_ignore (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.TYPE_IGNORE", false]], "typeahead() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.typeahead", false]], "typealias (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeAlias", false]], "typealias (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TypeAlias", false]], "typealiastype (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeAliasType", false]], "typecode (array.array \u7684\u5c6c\u6027)": [[121, "array.array.typecode", false]], "typecodes (\u65bc array \u6a21\u7d44\u4e2d)": [[121, "array.typecodes", false]], "typed_actions (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPED_ACTIONS", false]], "typed_subpart_iterator() (\u65bc email.iterators \u6a21\u7d44\u4e2d)": [[204, "email.iterators.typed_subpart_iterator", false]], "typeddict (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypedDict", false]], "typeerror": [[213, "TypeError", false], [430, "index-63", false]], "typeguard (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.TypeGuard", false]], "types": [[385, "module-types", false]], "types (2to3 fixer)": [[112, "to3fixer-types", false]], "types (optparse.option \u7684\u5c6c\u6027)": [[292, "optparse.Option.TYPES", false]], "types_map (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.types_map", false]], "types_map (\u65bc mimetypes \u6a21\u7d44\u4e2d)": [[276, "mimetypes.types_map", false]], "types_map_inv (mimetypes.mimetypes \u7684\u5c6c\u6027)": [[276, "mimetypes.MimeTypes.types_map_inv", false]], "types\uff08\u578b\u5225\uff09, internal\uff08\u5167\u90e8\uff09": [[428, "index-56", false]], "typevar (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeVar", false]], "typevar (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeVar", false]], "typevartuple (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.TypeVarTuple", false]], "typevartuple (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.TypeVarTuple", false]], "type\uff08\u578b\u5225\uff09": [[35, "index-3", false], [49, "index-7", false], [61, "index-0", false], [87, "term-type", true], [225, "index-0", false], [225, "index-12", false], [344, "index-0", false], [344, "index-14", false], [344, "index-16", false], [344, "index-20", false], [344, "index-22", false], [344, "index-23", false], [344, "index-24", false], [344, "index-52", false], [344, "index-59", false], [344, "index-65", false], [428, "index-1", false], [428, "index-4", false], [428, "index-86", false], [430, "index-7", false]], "typing": [[386, "module-typing", false]], "tz": [[366, "index-13", false], [366, "index-14", false], [366, "index-15", false], [366, "index-16", false], [366, "index-17", false], [366, "index-18", false]], "tzinfo (datetime \u4e2d\u7684\u985e\u5225)": [[183, "datetime.tzinfo", false]], "tzinfo (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.tzinfo", false]], "tzinfo (datetime.time \u7684\u5c6c\u6027)": [[183, "datetime.time.tzinfo", false]], "tzname (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.tzname", false]], "tzname() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.tzname", false]], "tzname() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.tzname", false]], "tzname() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.tzname", false]], "tzname() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.tzname", false]], "tzpath (\u65bc zoneinfo \u6a21\u7d44\u4e2d)": [[425, "zoneinfo.TZPATH", false]], "tzset() (\u65bc time \u6a21\u7d44\u4e2d)": [[366, "time.tzset", false]], "u (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.U", false]], "u\"": [[435, "index-17", false]], "u'": [[435, "index-17", false]], "u-law": [[117, "index-2", false], [141, "index-1", false], [336, "index-0", false]], "uadd (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.UAdd", false]], "ucd_3_2_0 (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.ucd_3_2_0", false]], "udata (select.kevent \u7684\u5c6c\u6027)": [[328, "select.kevent.udata", false]], "udpserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UDPServer", false]], "uf_append (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_APPEND", false]], "uf_compressed (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_COMPRESSED", false]], "uf_hidden (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_HIDDEN", false]], "uf_immutable (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_IMMUTABLE", false]], "uf_nodump (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_NODUMP", false]], "uf_nounlink (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_NOUNLINK", false]], "uf_opaque (\u65bc stat \u6a21\u7d44\u4e2d)": [[342, "stat.UF_OPAQUE", false]], "uid (plistlib \u4e2d\u7684\u985e\u5225)": [[304, "plistlib.UID", false]], "uid (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.uid", false]], "uid() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.uid", false]], "uidl() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.uidl", false]], "ulaw2lin() (\u65bc audioop \u6a21\u7d44\u4e2d)": [[141, "audioop.ulaw2lin", false]], "ulong_max\uff08c \u5de8\u96c6\uff09": [[39, "index-4", false]], "ulp() (\u65bc math \u6a21\u7d44\u4e2d)": [[275, "math.ulp", false]], "umask() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.umask", false]], "unalias (pdb command)": [[297, "pdbcommand-unalias", false]], "uname (tarfile.tarinfo \u7684\u5c6c\u6027)": [[358, "tarfile.TarInfo.uname", false]], "uname() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.uname", false]], "uname() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.uname", false]], "unary operator\uff08\u4e00\u5143\u904b\u7b97\u5b50\uff09": [[344, "index-13", false], [430, "index-60", false], [430, "index-61", false]], "unary_invert (opcode)": [[191, "opcode-UNARY_INVERT", false]], "unary_negative (opcode)": [[191, "opcode-UNARY_NEGATIVE", false]], "unary_not (opcode)": [[191, "opcode-UNARY_NOT", false]], "unaryfunc (c type)": [[63, "c.unaryfunc", false]], "unaryop (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.UnaryOp", false]], "unary\uff08\u4e00\u5143\uff09": [[430, "index-59", false]], "unbinding\uff08\u89e3\u9664\u7e6b\u7d50\uff09": [[436, "index-22", false]], "unboundlocalerror": [[213, "UnboundLocalError", false], [429, "index-9", false]], "unbuffered i/o\uff08\u975e\u7de9\u885d i/o\uff09": [[225, "index-8", false]], "unc paths\uff08unc \u8def\u5f91\uff09": [[293, "index-28", false]], "uncancel() (asyncio.task \u7684\u65b9\u6cd5)": [[139, "asyncio.Task.uncancel", false]], "unchecked_hash (py_compile.pycinvalidationmode \u7684\u5c6c\u6027)": [[311, "py_compile.PycInvalidationMode.UNCHECKED_HASH", false]], "unconsumed_tail (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.unconsumed_tail", false]], "unctrl() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.unctrl", false]], "unctrl() (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.unctrl", false]], "underflow (decimal \u4e2d\u7684\u985e\u5225)": [[186, "decimal.Underflow", false]], "undisplay (pdb command)": [[297, "pdbcommand-undisplay", false]], "undo() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.undo", false]], "undobufferentries() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.undobufferentries", false]], "undoc_header (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.undoc_header", false]], "unescape() (\u65bc html \u6a21\u7d44\u4e2d)": [[238, "html.unescape", false]], "unescape() (\u65bc xml.sax.saxutils \u6a21\u7d44\u4e2d)": [[417, "xml.sax.saxutils.unescape", false]], "unexpectedexception": [[193, "doctest.UnexpectedException", false]], "unexpectedsuccesses (unittest.testresult \u7684\u5c6c\u6027)": [[388, "unittest.TestResult.unexpectedSuccesses", false]], "unfreeze() (\u65bc gc \u6a21\u7d44\u4e2d)": [[227, "gc.unfreeze", false]], "unget_wch() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.unget_wch", false]], "ungetch() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ungetch", false]], "ungetch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.ungetch", false]], "ungetmouse() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.ungetmouse", false]], "ungetwch() (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.ungetwch", false]], "unhexlify() (\u65bc binascii \u6a21\u7d44\u4e2d)": [[146, "binascii.unhexlify", false]], "unicode": [[158, "index-0", false], [387, "index-0", false], [428, "index-19", false]], "unicode (2to3 fixer)": [[112, "to3fixer-unicode", false]], "unicode (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.UNICODE", false]], "unicode consortium": [[435, "index-18", false]], "unicodedata": [[387, "module-unicodedata", false]], "unicodedecodeerror": [[213, "UnicodeDecodeError", false]], "unicodeencodeerror": [[213, "UnicodeEncodeError", false]], "unicodeerror": [[213, "UnicodeError", false]], "unicodetranslateerror": [[213, "UnicodeTranslateError", false]], "unicodewarning": [[213, "UnicodeWarning", false]], "unidata_version (\u65bc unicodedata \u6a21\u7d44\u4e2d)": [[387, "unicodedata.unidata_version", false]], "unified_diff() (\u65bc difflib \u6a21\u7d44\u4e2d)": [[190, "difflib.unified_diff", false]], "uniform() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.uniform", false]], "unimplementedfilemode": [[242, "http.client.UnimplementedFileMode", false]], "union (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.Union", false]], "union (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Union", false]], "union() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.union", false]], "uniontype (types \u4e2d\u7684\u985e\u5225)": [[385, "types.UnionType", false]], "union\uff08\u806f\u96c6\uff09": [[344, "index-59", false], [344, "index-59", false]], "unique (enum.enumcheck \u7684\u5c6c\u6027)": [[211, "enum.EnumCheck.UNIQUE", false]], "unique() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.unique", false]], "unittest": [[388, "module-unittest", false]], "unittest \u547d\u4ee4\u5217\u9078\u9805": [[388, "cmdoption-unittest-b", false], [388, "cmdoption-unittest-c", false], [388, "cmdoption-unittest-durations", false], [388, "cmdoption-unittest-f", false], [388, "cmdoption-unittest-k", false], [388, "cmdoption-unittest-locals", false]], "unittest-discover \u547d\u4ee4\u5217\u9078\u9805": [[388, "cmdoption-unittest-discover-p", false], [388, "cmdoption-unittest-discover-s", false], [388, "cmdoption-unittest-discover-t", false], [388, "cmdoption-unittest-discover-v", false]], "unittest.mock": [[389, "module-unittest.mock", false]], "universal newlines": [[175, "index-3", false], [225, "index-7", false], [250, "index-15", false], [258, "index-4", false], [258, "index-5", false], [344, "index-34", false], [344, "index-44", false], [348, "index-1", false], [465, "index-8", false], [466, "index-7", false], [467, "index-20", false], [468, "index-13", false]], "universal newlines\uff08\u901a\u7528\u63db\u884c\u5b57\u5143\uff09": [[87, "term-universal-newlines", true]], "unix": [[215, "index-0", false], [437, "index-4", false]], "unix_dialect (csv \u4e2d\u7684\u985e\u5225)": [[175, "csv.unix_dialect", false]], "unix_shell (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.unix_shell", false]], "unixdatagramserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UnixDatagramServer", false]], "unixstreamserver (socketserver \u4e2d\u7684\u985e\u5225)": [[338, "socketserver.UnixStreamServer", false]], "unknown (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.unknown", false]], "unknown_decl() (html.parser.htmlparser \u7684\u65b9\u6cd5)": [[240, "html.parser.HTMLParser.unknown_decl", false]], "unknown_open() (urllib.request.basehandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.BaseHandler.unknown_open", false]], "unknown_open() (urllib.request.unknownhandler \u7684\u65b9\u6cd5)": [[395, "urllib.request.UnknownHandler.unknown_open", false]], "unknownhandler (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.UnknownHandler", false]], "unknownprotocol": [[242, "http.client.UnknownProtocol", false]], "unknowntransferencoding": [[242, "http.client.UnknownTransferEncoding", false]], "unlink() (multiprocessing.shared_memory.sharedmemory \u7684\u65b9\u6cd5)": [[284, "multiprocessing.shared_memory.SharedMemory.unlink", false]], "unlink() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.unlink", false]], "unlink() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.unlink", false]], "unlink() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unlink", false]], "unlink() (\u65bc test.support.os_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.os_helper.unlink", false]], "unload() (\u65bc test.support.import_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.import_helper.unload", false]], "unlock() (mailbox.babyl \u7684\u65b9\u6cd5)": [[271, "mailbox.Babyl.unlock", false]], "unlock() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.unlock", false]], "unlock() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.unlock", false]], "unlock() (mailbox.mbox \u7684\u65b9\u6cd5)": [[271, "mailbox.mbox.unlock", false]], "unlock() (mailbox.mh \u7684\u65b9\u6cd5)": [[271, "mailbox.MH.unlock", false]], "unlock() (mailbox.mmdf \u7684\u65b9\u6cd5)": [[271, "mailbox.MMDF.unlock", false]], "unpack (\u65bc typing \u6a21\u7d44\u4e2d)": [[386, "typing.Unpack", false]], "unpack() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.unpack", false]], "unpack() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.unpack", false]], "unpack_archive() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unpack_archive", false]], "unpack_array() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_array", false]], "unpack_bytes() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_bytes", false]], "unpack_double() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_double", false]], "unpack_ex (opcode)": [[191, "opcode-UNPACK_EX", false]], "unpack_farray() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_farray", false]], "unpack_float() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_float", false]], "unpack_fopaque() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_fopaque", false]], "unpack_from() (struct.struct \u7684\u65b9\u6cd5)": [[347, "struct.Struct.unpack_from", false]], "unpack_from() (\u65bc struct \u6a21\u7d44\u4e2d)": [[347, "struct.unpack_from", false]], "unpack_fstring() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_fstring", false]], "unpack_list() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_list", false]], "unpack_opaque() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_opaque", false]], "unpack_sequence (opcode)": [[191, "opcode-UNPACK_SEQUENCE", false]], "unpack_string() (xdrlib.unpacker \u7684\u65b9\u6cd5)": [[408, "xdrlib.Unpacker.unpack_string", false]], "unpacker (xdrlib \u4e2d\u7684\u985e\u5225)": [[408, "xdrlib.Unpacker", false]], "unpacking\uff08\u89e3\u5305\uff09": [[430, "index-18", false], [430, "index-49", false], [430, "index-93", false]], "unparse() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.unparse", false]], "unparsedentitydecl() (xml.sax.handler.dtdhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.DTDHandler.unparsedEntityDecl", false]], "unparsedentitydeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.UnparsedEntityDeclHandler", false]], "unpickler (pickle \u4e2d\u7684\u985e\u5225)": [[299, "pickle.Unpickler", false]], "unpicklingerror": [[299, "pickle.UnpicklingError", false]], "unquote() (\u65bc email.utils \u6a21\u7d44\u4e2d)": [[209, "email.utils.unquote", false]], "unquote() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote", false]], "unquote_plus() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote_plus", false]], "unquote_to_bytes() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unquote_to_bytes", false]], "unraisablehook() (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.unraisablehook", false]], "unreachable object\uff08\u4e0d\u53ef\u9054\u7269\u4ef6\uff09": [[428, "index-2", false]], "unrecognized escape sequence\uff08\u7121\u6cd5\u8fa8\u8b58\u7684\u8df3\u812b\u5e8f\u5217\uff09": [[435, "index-24", false]], "unregister() (select.devpoll \u7684\u65b9\u6cd5)": [[328, "select.devpoll.unregister", false]], "unregister() (select.epoll \u7684\u65b9\u6cd5)": [[328, "select.epoll.unregister", false]], "unregister() (select.poll \u7684\u65b9\u6cd5)": [[328, "select.poll.unregister", false]], "unregister() (selectors.baseselector \u7684\u65b9\u6cd5)": [[329, "selectors.BaseSelector.unregister", false]], "unregister() (\u65bc atexit \u6a21\u7d44\u4e2d)": [[140, "atexit.unregister", false]], "unregister() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.unregister", false]], "unregister() (\u65bc faulthandler \u6a21\u7d44\u4e2d)": [[214, "faulthandler.unregister", false]], "unregister_archive_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unregister_archive_format", false]], "unregister_dialect() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.unregister_dialect", false]], "unregister_unpack_format() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.unregister_unpack_format", false]], "unsafe (uuid.safeuuid \u7684\u5c6c\u6027)": [[398, "uuid.SafeUUID.unsafe", false]], "unselect() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.unselect", false]], "unset() (test.support.os_helper.environmentvarguard \u7684\u65b9\u6cd5)": [[362, "test.support.os_helper.EnvironmentVarGuard.unset", false]], "unsetenv() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unsetenv", false]], "unshare() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.unshare", false]], "unstructuredheader (email.headerregistry \u4e2d\u7684\u985e\u5225)": [[203, "email.headerregistry.UnstructuredHeader", false]], "unsubscribe() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.unsubscribe", false]], "unsupportedoperation": [[258, "io.UnsupportedOperation", false]], "until (pdb command)": [[297, "pdbcommand-until", false]], "untokenize() (\u65bc tokenize \u6a21\u7d44\u4e2d)": [[378, "tokenize.untokenize", false]], "untouchwin() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.untouchwin", false]], "unused_data (bz2.bz2decompressor \u7684\u5c6c\u6027)": [[149, "bz2.BZ2Decompressor.unused_data", false]], "unused_data (lzma.lzmadecompressor \u7684\u5c6c\u6027)": [[270, "lzma.LZMADecompressor.unused_data", false]], "unused_data (zlib.decompress \u7684\u5c6c\u6027)": [[424, "zlib.Decompress.unused_data", false]], "unverifiable (urllib.request.request \u7684\u5c6c\u6027)": [[395, "urllib.request.Request.unverifiable", false]], "unwrap() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.unwrap", false]], "unwrap() (\u65bc inspect \u6a21\u7d44\u4e2d)": [[255, "inspect.unwrap", false]], "unwrap() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.unwrap", false]], "up (pdb command)": [[297, "pdbcommand-up", false]], "up() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.up", false]], "update() (collections.counter \u7684\u65b9\u6cd5)": [[160, "collections.Counter.update", false]], "update() (dict \u7684\u65b9\u6cd5)": [[344, "dict.update", false]], "update() (frozenset \u7684\u65b9\u6cd5)": [[344, "frozenset.update", false]], "update() (hashlib.hash \u7684\u65b9\u6cd5)": [[235, "hashlib.hash.update", false]], "update() (hmac.hmac \u7684\u65b9\u6cd5)": [[237, "hmac.HMAC.update", false]], "update() (http.cookies.morsel \u7684\u65b9\u6cd5)": [[244, "http.cookies.Morsel.update", false]], "update() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.update", false]], "update() (mailbox.maildir \u7684\u65b9\u6cd5)": [[271, "mailbox.Maildir.update", false]], "update() (trace.coverageresults \u7684\u65b9\u6cd5)": [[380, "trace.CoverageResults.update", false]], "update() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.update", false]], "update_abstractmethods() (\u65bc abc \u6a21\u7d44\u4e2d)": [[116, "abc.update_abstractmethods", false]], "update_authenticated() (urllib.request.httppasswordmgrwithpriorauth \u7684\u65b9\u6cd5)": [[395, "urllib.request.HTTPPasswordMgrWithPriorAuth.update_authenticated", false]], "update_lines_cols() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.update_lines_cols", false]], "update_panels() (\u65bc curses.panel \u6a21\u7d44\u4e2d)": [[179, "curses.panel.update_panels", false]], "update_visible() (mailbox.babylmessage \u7684\u65b9\u6cd5)": [[271, "mailbox.BabylMessage.update_visible", false]], "update_wrapper() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.update_wrapper", false]], "upgrade_dependencies() (venv.envbuilder \u7684\u65b9\u6cd5)": [[399, "venv.EnvBuilder.upgrade_dependencies", false]], "upper() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.upper", false]], "upper() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.upper", false]], "upper() (str \u7684\u65b9\u6cd5)": [[344, "str.upper", false]], "urandom() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.urandom", false]], "url (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.url", false]], "url (urllib.error.httperror \u7684\u5c6c\u6027)": [[393, "urllib.error.HTTPError.url", false]], "url (urllib.response.addinfourl \u7684\u5c6c\u6027)": [[395, "urllib.response.addinfourl.url", false]], "url (xmlrpc.client.protocolerror \u7684\u5c6c\u6027)": [[419, "xmlrpc.client.ProtocolError.url", false]], "url2pathname() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.url2pathname", false]], "urlcleanup() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlcleanup", false]], "urldefrag() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urldefrag", false]], "urlencode() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlencode", false]], "urlerror": [[393, "urllib.error.URLError", false]], "urljoin() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urljoin", false]], "urllib": [[392, "module-urllib", false]], "urllib (2to3 fixer)": [[112, "to3fixer-urllib", false]], "urllib.error": [[393, "module-urllib.error", false]], "urllib.parse": [[394, "module-urllib.parse", false]], "urllib.request": [[242, "index-1", false], [395, "module-urllib.request", false]], "urllib.response": [[395, "module-urllib.response", false]], "urllib.robotparser": [[396, "module-urllib.robotparser", false]], "urlopen() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlopen", false]], "urlopener (urllib.request \u4e2d\u7684\u985e\u5225)": [[395, "urllib.request.URLopener", false]], "urlparse() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlparse", false]], "urlretrieve() (\u65bc urllib.request \u6a21\u7d44\u4e2d)": [[395, "urllib.request.urlretrieve", false]], "urlsafe_b64decode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.urlsafe_b64decode", false]], "urlsafe_b64encode() (\u65bc base64 \u6a21\u7d44\u4e2d)": [[143, "base64.urlsafe_b64encode", false]], "urlsplit() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlsplit", false]], "urlunparse() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlunparse", false]], "urlunsplit() (\u65bc urllib.parse \u6a21\u7d44\u4e2d)": [[394, "urllib.parse.urlunsplit", false]], "url\uff08\u7d71\u4e00\u8cc7\u6e90\u5b9a\u4f4d\u5668\uff09": [[151, "index-0", false], [245, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "urn (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.urn", false]], "us (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.US", false]], "use_default_colors() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.use_default_colors", false]], "use_env() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.use_env", false]], "use_rawinput (cmd.cmd \u7684\u5c6c\u6027)": [[155, "cmd.Cmd.use_rawinput", false]], "use_stackcheck\uff08c \u5de8\u96c6\uff09": [[59, "index-0", false]], "use_tool_id() (\u65bc sys.monitoring \u6a21\u7d44\u4e2d)": [[353, "sys.monitoring.use_tool_id", false]], "useforeigndtd() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.UseForeignDTD", false]], "user": [[229, "index-7", false]], "user() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.user", false]], "user-defined function\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\u51fd\u5f0f\uff09": [[427, "index-28", false], [428, "index-34", false], [430, "index-52", false]], "user-defined method\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\u65b9\u6cd5\uff09": [[428, "index-37", false]], "user-defined\uff08\u4f7f\u7528\u8005\u5b9a\u7fa9\uff09": [[428, "index-34", false], [428, "index-37", false], [430, "index-52", false]], "user_base (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.USER_BASE", false]], "user_call() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_call", false]], "user_exception() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_exception", false]], "user_line() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_line", false]], "user_return() (bdb.bdb \u7684\u65b9\u6cd5)": [[144, "bdb.Bdb.user_return", false]], "user_site (\u65bc site \u6a21\u7d44\u4e2d)": [[334, "site.USER_SITE", false]], "usercustomize": [[334, "module-usercustomize", false], [438, "index-15", false], [438, "index-17", false]], "userdict (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserDict", false]], "userlist (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserList", false]], "username": [[229, "index-8", false], [293, "index-11", false], [294, "index-20", false]], "username (email.headerregistry.address \u7684\u5c6c\u6027)": [[203, "email.headerregistry.Address.username", false]], "userprofile": [[294, "index-17", false], [481, "index-13", false], [481, "index-20", false], [483, "index-201", false]], "userptr() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.userptr", false]], "userstring (collections \u4e2d\u7684\u985e\u5225)": [[160, "collections.UserString", false]], "userwarning": [[213, "UserWarning", false]], "user\uff08\u4f7f\u7528\u8005\uff09": [[293, "index-16", false], [293, "index-19", false], [293, "index-8", false]], "ustar_format (\u65bc tarfile \u6a21\u7d44\u4e2d)": [[358, "tarfile.USTAR_FORMAT", false]], "usub (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.USub", false]], "utc": [[366, "index-4", false]], "utc (datetime.timezone \u7684\u5c6c\u6027)": [[183, "datetime.timezone.utc", false]], "utc (\u65bc datetime \u6a21\u7d44\u4e2d)": [[183, "datetime.UTC", false]], "utcfromtimestamp() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.utcfromtimestamp", false]], "utcnow() (datetime.datetime \u7684\u985e\u5225\u65b9\u6cd5)": [[183, "datetime.datetime.utcnow", false]], "utcoffset() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.utcoffset", false]], "utcoffset() (datetime.time \u7684\u65b9\u6cd5)": [[183, "datetime.time.utcoffset", false]], "utcoffset() (datetime.timezone \u7684\u65b9\u6cd5)": [[183, "datetime.timezone.utcoffset", false]], "utcoffset() (datetime.tzinfo \u7684\u65b9\u6cd5)": [[183, "datetime.tzinfo.utcoffset", false]], "utctimetuple() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.utctimetuple", false]], "utf8 (email.policy.emailpolicy \u7684\u5c6c\u6027)": [[208, "email.policy.EmailPolicy.utf8", false]], "utf8() (poplib.pop3 \u7684\u65b9\u6cd5)": [[305, "poplib.POP3.utf8", false]], "utf8_enabled (imaplib.imap4 \u7684\u5c6c\u6027)": [[248, "imaplib.IMAP4.utf8_enabled", false]], "utf8_mode (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.utf8_mode", false]], "utime() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.utime", false]], "uu": [[146, "index-0", false], [397, "module-uu", false]], "uuid": [[398, "module-uuid", false]], "uuid (uuid \u4e2d\u7684\u985e\u5225)": [[398, "uuid.UUID", false]], "uuid \u547d\u4ee4\u5217\u9078\u9805": [[398, "cmdoption-uuid-N", false], [398, "cmdoption-uuid-h", false], [398, "cmdoption-uuid-n", false], [398, "cmdoption-uuid-name", false], [398, "cmdoption-uuid-namespace", false], [398, "cmdoption-uuid-u", false], [398, "cmdoption-uuid-uuid", false]], "uuid1": [[398, "index-6", false]], "uuid1() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid1", false]], "uuid3": [[398, "index-7", false]], "uuid3() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid3", false]], "uuid4": [[398, "index-8", false]], "uuid4() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid4", false]], "uuid5": [[398, "index-9", false]], "uuid5() (\u65bc uuid \u6a21\u7d44\u4e2d)": [[398, "uuid.uuid5", false]], "uuidcreate() (\u65bc msilib \u6a21\u7d44\u4e2d)": [[281, "msilib.UuidCreate", false]], "v4_int_to_packed() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.v4_int_to_packed", false]], "v6_int_to_packed() (\u65bc ipaddress \u6a21\u7d44\u4e2d)": [[259, "ipaddress.v6_int_to_packed", false]], "valid_signals() (\u65bc signal \u6a21\u7d44\u4e2d)": [[333, "signal.valid_signals", false]], "validator() (\u65bc wsgiref.validate \u6a21\u7d44\u4e2d)": [[407, "wsgiref.validate.validator", false]], "value": [[344, "index-1", false]], "value (ctypes._simplecdata \u7684\u5c6c\u6027)": [[176, "ctypes._SimpleCData.value", false]], "value (enum.enum \u7684\u5c6c\u6027)": [[211, "enum.Enum.value", false]], "value (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.value", false]], "value (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.value", false]], "value (stopiteration \u7684\u5c6c\u6027)": [[213, "StopIteration.value", false]], "value (xml.dom.attr \u7684\u5c6c\u6027)": [[410, "xml.dom.Attr.value", false]], "value of an object\uff08\u7269\u4ef6\u7684\u503c\uff09": [[428, "index-1", false]], "value() (multiprocessing.managers.syncmanager \u7684\u65b9\u6cd5)": [[283, "multiprocessing.managers.SyncManager.Value", false]], "value() (\u65bc multiprocessing \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.Value", false]], "value() (\u65bc multiprocessing.sharedctypes \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.sharedctypes.Value", false]], "value_decode() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.value_decode", false]], "value_encode() (http.cookies.basecookie \u7684\u65b9\u6cd5)": [[244, "http.cookies.BaseCookie.value_encode", false]], "valueerror": [[213, "ValueError", false], [430, "index-72", false]], "valuerefs() (weakref.weakvaluedictionary \u7684\u65b9\u6cd5)": [[402, "weakref.WeakValueDictionary.valuerefs", false]], "values": [[344, "index-17", false], [436, "index-3", false]], "values (optparse \u4e2d\u7684\u985e\u5225)": [[292, "optparse.Values", false]], "values() (contextvars.context \u7684\u65b9\u6cd5)": [[170, "contextvars.Context.values", false]], "values() (dict \u7684\u65b9\u6cd5)": [[344, "dict.values", false]], "values() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.values", false]], "values() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.values", false]], "values() (mailbox.mailbox \u7684\u65b9\u6cd5)": [[271, "mailbox.Mailbox.values", false]], "values() (types.mappingproxytype \u7684\u65b9\u6cd5)": [[385, "types.MappingProxyType.values", false]], "valuesview (collections.abc \u4e2d\u7684\u985e\u5225)": [[161, "collections.abc.ValuesView", false]], "valuesview (typing \u4e2d\u7684\u985e\u5225)": [[386, "typing.ValuesView", false]], "value\uff08\u503c\uff09": [[427, "index-31", false], [430, "index-17", false]], "var (contextvars.token \u7684\u5c6c\u6027)": [[170, "contextvars.Token.var", false]], "variable annotation\uff08\u8b8a\u6578\u8a3b\u91cb\uff09": [[87, "term-variable-annotation", true]], "variable\uff08\u8b8a\u6578\uff09": [[429, "index-6", false]], "variance (statistics.normaldist \u7684\u5c6c\u6027)": [[343, "statistics.NormalDist.variance", false]], "variance() (\u65bc statistics \u6a21\u7d44\u4e2d)": [[343, "statistics.variance", false]], "variant (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.variant", false]], "vars()": [[225, "vars", false]], "vbar (tkinter.scrolledtext.scrolledtext \u7684\u5c6c\u6027)": [[374, "tkinter.scrolledtext.ScrolledText.vbar", false]], "vbar (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.VBAR", false]], "vbarequal (\u65bc token \u6a21\u7d44\u4e2d)": [[377, "token.VBAREQUAL", false]], "vc_assembly_publickeytoken (\u65bc msvcrt \u6a21\u7d44\u4e2d)": [[282, "msvcrt.VC_ASSEMBLY_PUBLICKEYTOKEN", false]], "vec2d (turtle \u4e2d\u7684\u985e\u5225)": [[384, "turtle.Vec2D", false]], "vectorcallfunc (c type)": [[10, "c.vectorcallfunc", false]], "venv": [[399, "module-venv", false]], "verbose (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.verbose", false]], "verbose (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.VERBOSE", false]], "verbose (\u65bc tabnanny \u6a21\u7d44\u4e2d)": [[357, "tabnanny.verbose", false]], "verbose (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.verbose", false]], "verify() (smtplib.smtp \u7684\u65b9\u6cd5)": [[335, "smtplib.SMTP.verify", false]], "verify() (\u65bc enum \u6a21\u7d44\u4e2d)": [[211, "enum.verify", false]], "verify_allow_proxy_certs (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_ALLOW_PROXY_CERTS", false]], "verify_client_post_handshake() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.verify_client_post_handshake", false]], "verify_code (ssl.sslcertverificationerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLCertVerificationError.verify_code", false]], "verify_crl_check_chain (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_CRL_CHECK_CHAIN", false]], "verify_crl_check_leaf (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_CRL_CHECK_LEAF", false]], "verify_default (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_DEFAULT", false]], "verify_flags (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.verify_flags", false]], "verify_message (ssl.sslcertverificationerror \u7684\u5c6c\u6027)": [[341, "ssl.SSLCertVerificationError.verify_message", false]], "verify_mode (ssl.sslcontext \u7684\u5c6c\u6027)": [[341, "ssl.SSLContext.verify_mode", false]], "verify_request() (socketserver.baseserver \u7684\u65b9\u6cd5)": [[338, "socketserver.BaseServer.verify_request", false]], "verify_x509_partial_chain (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_PARTIAL_CHAIN", false]], "verify_x509_strict (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_STRICT", false]], "verify_x509_trusted_first (\u65bc ssl \u6a21\u7d44\u4e2d)": [[341, "ssl.VERIFY_X509_TRUSTED_FIRST", false]], "verifyflags (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.VerifyFlags", false]], "verifymode (ssl \u4e2d\u7684\u985e\u5225)": [[341, "ssl.VerifyMode", false]], "version (email.headerregistry.mimeversionheader \u7684\u5c6c\u6027)": [[203, "email.headerregistry.MIMEVersionHeader.version", false]], "version (http.client.httpresponse \u7684\u5c6c\u6027)": [[242, "http.client.HTTPResponse.version", false]], "version (http.cookiejar.cookie \u7684\u5c6c\u6027)": [[243, "http.cookiejar.Cookie.version", false]], "version (http.cookies.morsel \u7684\u5c6c\u6027)": [[244, "http.cookies.Morsel.version", false]], "version (ipaddress.ipv4address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Address.version", false]], "version (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.version", false]], "version (ipaddress.ipv6address \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Address.version", false]], "version (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.version", false]], "version (sys.thread_info \u7684\u5c6c\u6027)": [[352, "sys.thread_info.version", false]], "version (urllib.request.urlopener \u7684\u5c6c\u6027)": [[395, "urllib.request.URLopener.version", false]], "version (uuid.uuid \u7684\u5c6c\u6027)": [[398, "uuid.UUID.version", false]], "version (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.version", false]], "version (\u65bc marshal \u6a21\u7d44\u4e2d)": [[274, "marshal.version", false]], "version (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.version", false]], "version (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.version", false]], "version() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.version", false]], "version() (\u65bc ensurepip \u6a21\u7d44\u4e2d)": [[210, "ensurepip.version", false]], "version() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.version", false]], "version_info (\u65bc sqlite3 \u6a21\u7d44\u4e2d)": [[340, "sqlite3.version_info", false]], "version_info (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.version_info", false]], "version_string() (http.server.basehttprequesthandler \u7684\u65b9\u6cd5)": [[245, "http.server.BaseHTTPRequestHandler.version_string", false]], "version\uff08sys \u6a21\u7d44\u4e2d\uff09": [[33, "index-24", false], [33, "index-27", false], [33, "index-28", false]], "vformat() (string.formatter \u7684\u65b9\u6cd5)": [[345, "string.Formatter.vformat", false]], "virtual environment\uff08\u865b\u64ec\u74b0\u5883\uff09": [[87, "term-virtual-environment", true]], "virtual machine\uff08\u865b\u64ec\u6a5f\u5668\uff09": [[87, "term-virtual-machine", true]], "virtual \uff08\u865b\u64ec\uff09": [[399, "index-0", false]], "visit() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.visit", false]], "visit_constant() (ast.nodevisitor \u7684\u65b9\u6cd5)": [[122, "ast.NodeVisitor.visit_Constant", false]], "visitproc (c type)": [[28, "c.visitproc", false]], "vline() (curses.window \u7684\u65b9\u6cd5)": [[177, "curses.window.vline", false]], "voidcmd() (ftplib.ftp \u7684\u65b9\u6cd5)": [[223, "ftplib.FTP.voidcmd", false]], "volume (zipfile.zipinfo \u7684\u5c6c\u6027)": [[422, "zipfile.ZipInfo.volume", false]], "vonmisesvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.vonmisesvariate", false]], "vt (\u65bc curses.ascii \u6a21\u7d44\u4e2d)": [[178, "curses.ascii.VT", false]], "w_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.W_OK", false]], "wait() (asyncio.barrier \u7684\u65b9\u6cd5)": [[138, "asyncio.Barrier.wait", false]], "wait() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.wait", false]], "wait() (asyncio.event \u7684\u65b9\u6cd5)": [[138, "asyncio.Event.wait", false]], "wait() (asyncio.subprocess.process \u7684\u65b9\u6cd5)": [[137, "asyncio.subprocess.Process.wait", false]], "wait() (multiprocessing.pool.asyncresult \u7684\u65b9\u6cd5)": [[283, "multiprocessing.pool.AsyncResult.wait", false]], "wait() (subprocess.popen \u7684\u65b9\u6cd5)": [[348, "subprocess.Popen.wait", false]], "wait() (threading.barrier \u7684\u65b9\u6cd5)": [[365, "threading.Barrier.wait", false]], "wait() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.wait", false]], "wait() (threading.event \u7684\u65b9\u6cd5)": [[365, "threading.Event.wait", false]], "wait() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.wait", false]], "wait() (\u65bc concurrent.futures \u6a21\u7d44\u4e2d)": [[166, "concurrent.futures.wait", false]], "wait() (\u65bc multiprocessing.connection \u6a21\u7d44\u4e2d)": [[283, "multiprocessing.connection.wait", false]], "wait() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait", false]], "wait3() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait3", false]], "wait4() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.wait4", false]], "wait_closed() (asyncio.server \u7684\u65b9\u6cd5)": [[126, "asyncio.Server.wait_closed", false]], "wait_closed() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.wait_closed", false]], "wait_for() (asyncio.condition \u7684\u65b9\u6cd5)": [[138, "asyncio.Condition.wait_for", false]], "wait_for() (threading.condition \u7684\u65b9\u6cd5)": [[365, "threading.Condition.wait_for", false]], "wait_for() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[139, "asyncio.wait_for", false]], "wait_process() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.wait_process", false]], "wait_threads_exit() (\u65bc test.support.threading_helper \u6a21\u7d44\u4e2d)": [[362, "test.support.threading_helper.wait_threads_exit", false]], "waitid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitid", false]], "waitpid() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitpid", false]], "waitstatus_to_exitcode() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.waitstatus_to_exitcode", false]], "walk() (email.message.emailmessage \u7684\u65b9\u6cd5)": [[205, "email.message.EmailMessage.walk", false]], "walk() (email.message.message \u7684\u65b9\u6cd5)": [[196, "email.message.Message.walk", false]], "walk() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.walk", false]], "walk() (\u65bc ast \u6a21\u7d44\u4e2d)": [[122, "ast.walk", false]], "walk() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.walk", false]], "walk_packages() (\u65bc pkgutil \u6a21\u7d44\u4e2d)": [[302, "pkgutil.walk_packages", false]], "walk_stack() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.walk_stack", false]], "walk_tb() (\u65bc traceback \u6a21\u7d44\u4e2d)": [[381, "traceback.walk_tb", false]], "walking": [[293, "index-31", false], [293, "index-32", false]], "walrus operator\uff08\u6d77\u8c61\u904b\u7b97\u5b50\uff09": [[430, "index-86", false]], "want (doctest.example \u7684\u5c6c\u6027)": [[193, "doctest.Example.want", false]], "warn() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.warn", false]], "warn_default_encoding (sys.flags \u7684\u5c6c\u6027)": [[352, "sys.flags.warn_default_encoding", false]], "warn_explicit() (\u65bc warnings \u6a21\u7d44\u4e2d)": [[400, "warnings.warn_explicit", false]], "warning": [[213, "Warning", false], [340, "sqlite3.Warning", false]], "warning (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.WARNING", false]], "warning (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.WARNING", false]], "warning() (logging.logger \u7684\u65b9\u6cd5)": [[267, "logging.Logger.warning", false]], "warning() (xml.sax.handler.errorhandler \u7684\u65b9\u6cd5)": [[415, "xml.sax.handler.ErrorHandler.warning", false]], "warning() (\u65bc logging \u6a21\u7d44\u4e2d)": [[267, "logging.warning", false]], "warnings": [[400, "module-warnings", false]], "warnings \uff08\u8b66\u544a\uff09": [[400, "index-0", false]], "warningsrecorder (test.support.warnings_helper \u4e2d\u7684\u985e\u5225)": [[362, "test.support.warnings_helper.WarningsRecorder", false]], "warnoptions (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.warnoptions", false]], "wassuccessful() (unittest.testresult \u7684\u65b9\u6cd5)": [[388, "unittest.TestResult.wasSuccessful", false]], "watchedfilehandler (logging.handlers \u4e2d\u7684\u985e\u5225)": [[269, "logging.handlers.WatchedFileHandler", false]], "wave": [[401, "module-wave", false]], "wave_read (wave \u4e2d\u7684\u985e\u5225)": [[401, "wave.Wave_read", false]], "wave_write (wave \u4e2d\u7684\u985e\u5225)": [[401, "wave.Wave_write", false]], "wcontinued (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WCONTINUED", false]], "wcoredump() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WCOREDUMP", false]], "weakkeydictionary (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakKeyDictionary", false]], "weakmethod (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakMethod", false]], "weakref": [[402, "module-weakref", false]], "weakset (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakSet", false]], "weakvaluedictionary (weakref \u4e2d\u7684\u985e\u5225)": [[402, "weakref.WeakValueDictionary", false]], "webbrowser": [[403, "module-webbrowser", false]], "wednesday (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.WEDNESDAY", false]], "weekday (calendar.illegalweekdayerror \u7684\u5c6c\u6027)": [[150, "calendar.IllegalWeekdayError.weekday", false]], "weekday() (datetime.date \u7684\u65b9\u6cd5)": [[183, "datetime.date.weekday", false]], "weekday() (datetime.datetime \u7684\u65b9\u6cd5)": [[183, "datetime.datetime.weekday", false]], "weekday() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.weekday", false]], "weekheader() (\u65bc calendar \u6a21\u7d44\u4e2d)": [[150, "calendar.weekheader", false]], "weibullvariate() (\u65bc random \u6a21\u7d44\u4e2d)": [[318, "random.weibullvariate", false]], "wexited (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WEXITED", false]], "wexitstatus() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WEXITSTATUS", false]], "wfile (http.server.basehttprequesthandler \u7684\u5c6c\u6027)": [[245, "http.server.BaseHTTPRequestHandler.wfile", false]], "wfile (socketserver.datagramrequesthandler \u7684\u5c6c\u6027)": [[338, "socketserver.DatagramRequestHandler.wfile", false]], "what's new\uff08\u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff09": [[465, "index-8", false], [466, "index-7", false], [467, "index-20", false], [468, "index-13", false]], "what() (\u65bc imghdr \u6a21\u7d44\u4e2d)": [[249, "imghdr.what", false]], "what() (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.what", false]], "whathdr() (\u65bc sndhdr \u6a21\u7d44\u4e2d)": [[336, "sndhdr.whathdr", false]], "whatis (pdb command)": [[297, "pdbcommand-whatis", false]], "when() (asyncio.timeout \u7684\u65b9\u6cd5)": [[139, "asyncio.Timeout.when", false]], "when() (asyncio.timerhandle \u7684\u65b9\u6cd5)": [[126, "asyncio.TimerHandle.when", false]], "where (pdb command)": [[297, "pdbcommand-where", false]], "which() (\u65bc shutil \u6a21\u7d44\u4e2d)": [[332, "shutil.which", false]], "whichdb() (\u65bc dbm \u6a21\u7d44\u4e2d)": [[184, "dbm.whichdb", false]], "while": [[344, "index-1", false], [427, "index-4", true], [436, "index-30", false], [436, "index-33", false]], "while (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.While", false]], "whitespace (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.whitespace", false]], "whitespace (\u65bc string \u6a21\u7d44\u4e2d)": [[345, "string.whitespace", false]], "whitespace_split (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.whitespace_split", false]], "widget (tkinter.ttk \u4e2d\u7684\u985e\u5225)": [[376, "tkinter.ttk.Widget", false]], "width (sys.hash_info \u7684\u5c6c\u6027)": [[352, "sys.hash_info.width", false]], "width (textwrap.textwrapper \u7684\u5c6c\u6027)": [[364, "textwrap.TextWrapper.width", false]], "width() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.width", false]], "wifcontinued() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFCONTINUED", false]], "wifexited() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFEXITED", false]], "wifsignaled() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFSIGNALED", false]], "wifstopped() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WIFSTOPPED", false]], "wildcard expansion\uff08\u842c\u7528\u5b57\u5143\u5c55\u958b\uff09": [[220, "index-0", false]], "win32_edition() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_edition", false]], "win32_is_iot() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_is_iot", false]], "win32_ver() (\u65bc platform \u6a21\u7d44\u4e2d)": [[303, "platform.win32_ver", false]], "windll (ctypes \u4e2d\u7684\u985e\u5225)": [[176, "ctypes.WinDLL", false]], "window manager (widgets)": [[369, "index-3", false]], "window() (curses.panel.panel \u7684\u65b9\u6cd5)": [[179, "curses.panel.Panel.window", false]], "window_height() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.window_height", false]], "window_width() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.window_width", false]], "windows": [[437, "index-4", false]], "windows ini file\uff08windows ini \u6a94\u6848\uff09": [[167, "index-0", false]], "windowserror": [[213, "WindowsError", false]], "windowspath (pathlib \u4e2d\u7684\u985e\u5225)": [[296, "pathlib.WindowsPath", false]], "windowsproactoreventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.WindowsProactorEventLoopPolicy", false]], "windowsregistryfinder (importlib.machinery \u4e2d\u7684\u985e\u5225)": [[250, "importlib.machinery.WindowsRegistryFinder", false]], "windowsselectoreventlooppolicy (asyncio \u4e2d\u7684\u985e\u5225)": [[132, "asyncio.WindowsSelectorEventLoopPolicy", false]], "winerror (oserror \u7684\u5c6c\u6027)": [[213, "OSError.winerror", false]], "winerror() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.WinError", false]], "winfunctype() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.WINFUNCTYPE", false]], "winreg": [[405, "module-winreg", false]], "winsock": [[328, "index-2", false]], "winsound": [[406, "module-winsound", false]], "winver (\u65bc sys \u6a21\u7d44\u4e2d)": [[352, "sys.winver", false]], "with": [[427, "index-16", true], [428, "index-106", false]], "with (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.With", false]], "with statement\uff08with \u9673\u8ff0\u5f0f\uff09": [[427, "index-16", false]], "with_except_start (opcode)": [[191, "opcode-WITH_EXCEPT_START", false]], "with_hostmask (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_hostmask", false]], "with_hostmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_hostmask", false]], "with_hostmask (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_hostmask", false]], "with_hostmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_hostmask", false]], "with_name() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_name", false]], "with_netmask (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_netmask", false]], "with_netmask (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_netmask", false]], "with_netmask (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_netmask", false]], "with_netmask (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_netmask", false]], "with_prefixlen (ipaddress.ipv4interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Interface.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv4network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv4Network.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv6interface \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Interface.with_prefixlen", false]], "with_prefixlen (ipaddress.ipv6network \u7684\u5c6c\u6027)": [[259, "ipaddress.IPv6Network.with_prefixlen", false]], "with_pymalloc() (\u65bc test.support \u6a21\u7d44\u4e2d)": [[362, "test.support.with_pymalloc", false]], "with_segments() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_segments", false]], "with_stem() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_stem", false]], "with_suffix() (pathlib.purepath \u7684\u65b9\u6cd5)": [[296, "pathlib.PurePath.with_suffix", false]], "with_traceback() (baseexception \u7684\u65b9\u6cd5)": [[213, "BaseException.with_traceback", false]], "withitem (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.withitem", false]], "wnohang (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WNOHANG", false]], "wnowait (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WNOWAIT", false]], "wordchars (shlex.shlex \u7684\u5c6c\u6027)": [[331, "shlex.shlex.wordchars", false]], "world wide web \uff08\u5168\u7403\u8cc7\u8a0a\u7db2\uff09": [[256, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "wrap() (textwrap.textwrapper \u7684\u65b9\u6cd5)": [[364, "textwrap.TextWrapper.wrap", false]], "wrap() (\u65bc textwrap \u6a21\u7d44\u4e2d)": [[364, "textwrap.wrap", false]], "wrap_bio() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.wrap_bio", false]], "wrap_future() (\u65bc asyncio \u6a21\u7d44\u4e2d)": [[129, "asyncio.wrap_future", false]], "wrap_socket() (ssl.sslcontext \u7684\u65b9\u6cd5)": [[341, "ssl.SSLContext.wrap_socket", false]], "wrapper() (\u65bc curses \u6a21\u7d44\u4e2d)": [[177, "curses.wrapper", false]], "wrapperdescriptortype (\u65bc types \u6a21\u7d44\u4e2d)": [[385, "types.WrapperDescriptorType", false]], "wraps() (\u65bc functools \u6a21\u7d44\u4e2d)": [[226, "functools.wraps", false]], "writable (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.WRITABLE", false]], "writable (\u65bc _tkinter \u6a21\u7d44\u4e2d)": [[369, "tkinter.WRITABLE", false]], "writable() (bz2.bz2file \u7684\u65b9\u6cd5)": [[149, "bz2.BZ2File.writable", false]], "writable() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.writable", false]], "write (inspect.bufferflags \u7684\u5c6c\u6027)": [[255, "inspect.BufferFlags.WRITE", false]], "write() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.write", false]], "write() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.write", false]], "write() (code.interactiveinterpreter \u7684\u65b9\u6cd5)": [[157, "code.InteractiveInterpreter.write", false]], "write() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.write", false]], "write() (configparser.configparser \u7684\u65b9\u6cd5)": [[167, "configparser.ConfigParser.write", false]], "write() (email.generator.bytesgenerator \u7684\u65b9\u6cd5)": [[201, "email.generator.BytesGenerator.write", false]], "write() (email.generator.generator \u7684\u65b9\u6cd5)": [[201, "email.generator.Generator.write", false]], "write() (io.bufferediobase \u7684\u65b9\u6cd5)": [[258, "io.BufferedIOBase.write", false]], "write() (io.bufferedwriter \u7684\u65b9\u6cd5)": [[258, "io.BufferedWriter.write", false]], "write() (io.rawiobase \u7684\u65b9\u6cd5)": [[258, "io.RawIOBase.write", false]], "write() (io.textiobase \u7684\u65b9\u6cd5)": [[258, "io.TextIOBase.write", false]], "write() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.write", false]], "write() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.write", false]], "write() (sqlite3.blob \u7684\u65b9\u6cd5)": [[340, "sqlite3.Blob.write", false]], "write() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.write", false]], "write() (ssl.sslsocket \u7684\u65b9\u6cd5)": [[341, "ssl.SSLSocket.write", false]], "write() (telnetlib.telnet \u7684\u65b9\u6cd5)": [[359, "telnetlib.Telnet.write", false]], "write() (xml.etree.elementtree.elementtree \u7684\u65b9\u6cd5)": [[413, "xml.etree.ElementTree.ElementTree.write", false]], "write() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.write", false]], "write() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.write", false]], "write() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.write", false]], "write_byte() (mmap.mmap \u7684\u65b9\u6cd5)": [[278, "mmap.mmap.write_byte", false]], "write_bytes() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.write_bytes", false]], "write_docstringdict() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.write_docstringdict", false]], "write_eof() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.write_eof", false]], "write_eof() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.write_eof", false]], "write_eof() (ssl.memorybio \u7684\u65b9\u6cd5)": [[341, "ssl.MemoryBIO.write_eof", false]], "write_history_file() (\u65bc readline \u6a21\u7d44\u4e2d)": [[320, "readline.write_history_file", false]], "write_restricted\uff08c \u5de8\u96c6\uff09": [[58, "index-2", false]], "write_results() (trace.coverageresults \u7684\u65b9\u6cd5)": [[380, "trace.CoverageResults.write_results", false]], "write_text() (pathlib.path \u7684\u65b9\u6cd5)": [[296, "pathlib.Path.write_text", false]], "write_through (io.textiowrapper \u7684\u5c6c\u6027)": [[258, "io.TextIOWrapper.write_through", false]], "writeall() (ossaudiodev.oss_audio_device \u7684\u65b9\u6cd5)": [[295, "ossaudiodev.oss_audio_device.writeall", false]], "writeframes() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.writeframes", false]], "writeframes() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.writeframes", false]], "writeframes() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.writeframes", false]], "writeframesraw() (aifc.aifc \u7684\u65b9\u6cd5)": [[117, "aifc.aifc.writeframesraw", false]], "writeframesraw() (sunau.au_write \u7684\u65b9\u6cd5)": [[349, "sunau.AU_write.writeframesraw", false]], "writeframesraw() (wave.wave_write \u7684\u65b9\u6cd5)": [[401, "wave.Wave_write.writeframesraw", false]], "writeheader() (csv.dictwriter \u7684\u65b9\u6cd5)": [[175, "csv.DictWriter.writeheader", false]], "writelines() (asyncio.streamwriter \u7684\u65b9\u6cd5)": [[136, "asyncio.StreamWriter.writelines", false]], "writelines() (asyncio.writetransport \u7684\u65b9\u6cd5)": [[133, "asyncio.WriteTransport.writelines", false]], "writelines() (codecs.streamwriter \u7684\u65b9\u6cd5)": [[158, "codecs.StreamWriter.writelines", false]], "writelines() (io.iobase \u7684\u65b9\u6cd5)": [[258, "io.IOBase.writelines", false]], "writepy() (zipfile.pyzipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.PyZipFile.writepy", false]], "writer() (\u65bc csv \u6a21\u7d44\u4e2d)": [[175, "csv.writer", false]], "writerow() (csv.csvwriter \u7684\u65b9\u6cd5)": [[175, "csv.csvwriter.writerow", false]], "writerows() (csv.csvwriter \u7684\u65b9\u6cd5)": [[175, "csv.csvwriter.writerows", false]], "writestr() (zipfile.zipfile \u7684\u65b9\u6cd5)": [[422, "zipfile.ZipFile.writestr", false]], "writetransport (asyncio \u4e2d\u7684\u985e\u5225)": [[133, "asyncio.WriteTransport", false]], "writev() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.writev", false]], "writexml() (xml.dom.minidom.node \u7684\u65b9\u6cd5)": [[411, "xml.dom.minidom.Node.writexml", false]], "writing": [[436, "index-3", false]], "wrongdocumenterr": [[410, "xml.dom.WrongDocumentErr", false]], "ws_comma (2to3 fixer)": [[112, "to3fixer-ws_comma", false]], "wsgi_file_wrapper (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_file_wrapper", false]], "wsgi_multiprocess (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_multiprocess", false]], "wsgi_multithread (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_multithread", false]], "wsgi_run_once (wsgiref.handlers.basehandler \u7684\u5c6c\u6027)": [[407, "wsgiref.handlers.BaseHandler.wsgi_run_once", false]], "wsgiapplication (\u65bc wsgiref.types \u6a21\u7d44\u4e2d)": [[407, "wsgiref.types.WSGIApplication", false]], "wsgienvironment (\u65bc wsgiref.types \u6a21\u7d44\u4e2d)": [[407, "wsgiref.types.WSGIEnvironment", false]], "wsgiref": [[407, "module-wsgiref", false]], "wsgiref.handlers": [[407, "module-wsgiref.handlers", false]], "wsgiref.headers": [[407, "module-wsgiref.headers", false]], "wsgiref.simple_server": [[407, "module-wsgiref.simple_server", false]], "wsgiref.types": [[407, "module-wsgiref.types", false]], "wsgiref.util": [[407, "module-wsgiref.util", false]], "wsgiref.validate": [[407, "module-wsgiref.validate", false]], "wsgirequesthandler (wsgiref.simple_server \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.simple_server.WSGIRequestHandler", false]], "wsgiserver (wsgiref.simple_server \u4e2d\u7684\u985e\u5225)": [[407, "wsgiref.simple_server.WSGIServer", false]], "wshowwindow (subprocess.startupinfo \u7684\u5c6c\u6027)": [[348, "subprocess.STARTUPINFO.wShowWindow", false]], "wstopped (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WSTOPPED", false]], "wstopsig() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WSTOPSIG", false]], "wstring_at() (\u65bc ctypes \u6a21\u7d44\u4e2d)": [[176, "ctypes.wstring_at", false]], "wtermsig() (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WTERMSIG", false]], "wuntraced (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.WUNTRACED", false]], "www": [[151, "index-0", false], [245, "index-0", false], [256, "index-0", false], [394, "index-0", false], [396, "index-0", false]], "x (\u65bc re \u6a21\u7d44\u4e2d)": [[319, "re.X", false]], "x509 certificate\uff08x509 \u6191\u8b49\uff09": [[341, "index-15", false]], "x_ok (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.X_OK", false]], "xatom() (imaplib.imap4 \u7684\u65b9\u6cd5)": [[248, "imaplib.IMAP4.xatom", false]], "xattr_create (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_CREATE", false]], "xattr_replace (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_REPLACE", false]], "xattr_size_max (\u65bc os \u6a21\u7d44\u4e2d)": [[293, "os.XATTR_SIZE_MAX", false]], "xcor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.xcor", false]], "xdr": [[408, "index-0", false]], "xdrlib": [[408, "module-xdrlib", false]], "xhdr() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.xhdr", false]], "xhtml": [[240, "index-0", false]], "xhtml_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XHTML_NAMESPACE", false]], "xml": [[409, "module-xml", false]], "xml() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.XML", false]], "xml.dom": [[410, "module-xml.dom", false]], "xml.dom.minidom": [[411, "module-xml.dom.minidom", false]], "xml.dom.pulldom": [[412, "module-xml.dom.pulldom", false]], "xml.etree.elementinclude": [[413, "module-xml.etree.ElementInclude", false]], "xml.etree.elementtree": [[413, "module-xml.etree.ElementTree", false]], "xml.parsers.expat": [[314, "module-xml.parsers.expat", false]], "xml.parsers.expat.errors": [[314, "module-xml.parsers.expat.errors", false]], "xml.parsers.expat.model": [[314, "module-xml.parsers.expat.model", false]], "xml.sax": [[414, "module-xml.sax", false]], "xml.sax.handler": [[415, "module-xml.sax.handler", false]], "xml.sax.saxutils": [[417, "module-xml.sax.saxutils", false]], "xml.sax.xmlreader": [[416, "module-xml.sax.xmlreader", false]], "xml_error_aborted (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ABORTED", false]], "xml_error_amplification_limit_breach (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_AMPLIFICATION_LIMIT_BREACH", false]], "xml_error_async_entity (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ASYNC_ENTITY", false]], "xml_error_attribute_external_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF", false]], "xml_error_bad_char_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF", false]], "xml_error_binary_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF", false]], "xml_error_cant_change_feature_once_parsing (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING", false]], "xml_error_duplicate_attribute (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE", false]], "xml_error_entity_declared_in_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_ENTITY_DECLARED_IN_PE", false]], "xml_error_external_entity_handling (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_EXTERNAL_ENTITY_HANDLING", false]], "xml_error_feature_requires_xml_dtd (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD", false]], "xml_error_finished (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_FINISHED", false]], "xml_error_incomplete_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE", false]], "xml_error_incorrect_encoding (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INCORRECT_ENCODING", false]], "xml_error_invalid_argument (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INVALID_ARGUMENT", false]], "xml_error_invalid_token (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN", false]], "xml_error_junk_after_doc_element (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT", false]], "xml_error_misplaced_xml_pi (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI", false]], "xml_error_no_buffer (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_BUFFER", false]], "xml_error_no_elements (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS", false]], "xml_error_no_memory (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NO_MEMORY", false]], "xml_error_not_standalone (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE", false]], "xml_error_not_suspended (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED", false]], "xml_error_param_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF", false]], "xml_error_partial_char (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR", false]], "xml_error_publicid (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_PUBLICID", false]], "xml_error_recursive_entity_ref (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF", false]], "xml_error_reserved_namespace_uri (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_NAMESPACE_URI", false]], "xml_error_reserved_prefix_xml (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_PREFIX_XML", false]], "xml_error_reserved_prefix_xmlns (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_RESERVED_PREFIX_XMLNS", false]], "xml_error_suspend_pe (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SUSPEND_PE", false]], "xml_error_suspended (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SUSPENDED", false]], "xml_error_syntax (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_SYNTAX", false]], "xml_error_tag_mismatch (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH", false]], "xml_error_text_decl (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_TEXT_DECL", false]], "xml_error_unbound_prefix (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX", false]], "xml_error_unclosed_cdata_section (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION", false]], "xml_error_unclosed_token (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN", false]], "xml_error_undeclaring_prefix (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX", false]], "xml_error_undefined_entity (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY", false]], "xml_error_unexpected_state (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNEXPECTED_STATE", false]], "xml_error_unknown_encoding (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING", false]], "xml_error_xml_decl (\u65bc xml.parsers.expat.errors \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.errors.XML_ERROR_XML_DECL", false]], "xml_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XML_NAMESPACE", false]], "xmlcharrefreplace": [[158, "index-3", false]], "xmlcharrefreplace_errors() (\u65bc codecs \u6a21\u7d44\u4e2d)": [[158, "codecs.xmlcharrefreplace_errors", false]], "xmldeclhandler() (xml.parsers.expat.xmlparser \u7684\u65b9\u6cd5)": [[314, "xml.parsers.expat.xmlparser.XmlDeclHandler", false]], "xmlfilterbase (xml.sax.saxutils \u4e2d\u7684\u985e\u5225)": [[417, "xml.sax.saxutils.XMLFilterBase", false]], "xmlgenerator (xml.sax.saxutils \u4e2d\u7684\u985e\u5225)": [[417, "xml.sax.saxutils.XMLGenerator", false]], "xmlid() (\u65bc xml.etree.elementtree \u6a21\u7d44\u4e2d)": [[413, "xml.etree.ElementTree.XMLID", false]], "xmlns_namespace (\u65bc xml.dom \u6a21\u7d44\u4e2d)": [[410, "xml.dom.XMLNS_NAMESPACE", false]], "xmlparser (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.XMLParser", false]], "xmlparsertype (\u65bc xml.parsers.expat \u6a21\u7d44\u4e2d)": [[314, "xml.parsers.expat.XMLParserType", false]], "xmlpullparser (xml.etree.elementtree \u4e2d\u7684\u985e\u5225)": [[413, "xml.etree.ElementTree.XMLPullParser", false]], "xmlreader (xml.sax.xmlreader \u4e2d\u7684\u985e\u5225)": [[416, "xml.sax.xmlreader.XMLReader", false]], "xmlrpc.client": [[419, "module-xmlrpc.client", false]], "xmlrpc.server": [[420, "module-xmlrpc.server", false]], "xor": [[430, "index-75", false]], "xor() (\u65bc operator \u6a21\u7d44\u4e2d)": [[291, "operator.xor", false]], "xover() (nntplib.nntp \u7684\u65b9\u6cd5)": [[288, "nntplib.NNTP.xover", false]], "xrange (2to3 fixer)": [[112, "to3fixer-xrange", false]], "xreadlines (2to3 fixer)": [[112, "to3fixer-xreadlines", false]], "xview() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.xview", false]], "ycor() (\u65bc turtle \u6a21\u7d44\u4e2d)": [[384, "turtle.ycor", false]], "year": [[150, "cmdoption-calendar-arg-year", false]], "year (datetime.date \u7684\u5c6c\u6027)": [[183, "datetime.date.year", false]], "year (datetime.datetime \u7684\u5c6c\u6027)": [[183, "datetime.datetime.year", false]], "year 2038\uff082038 \u5e74\u554f\u984c\uff09": [[366, "index-2", false]], "yeardatescalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardatescalendar", false]], "yeardays2calendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardays2calendar", false]], "yeardayscalendar() (calendar.calendar \u7684\u65b9\u6cd5)": [[150, "calendar.Calendar.yeardayscalendar", false]], "yes (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YES", false]], "yesexpr (\u65bc locale \u6a21\u7d44\u4e2d)": [[266, "locale.YESEXPR", false]], "yesno (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YESNO", false]], "yesnocancel (\u65bc tkinter.messagebox \u6a21\u7d44\u4e2d)": [[373, "tkinter.messagebox.YESNOCANCEL", false]], "yield": [[430, "index-23", false], [430, "index-34", false], [436, "index-26", false], [476, "index-11", false]], "yield (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.Yield", false]], "yield from expression\uff08yield from \u904b\u7b97\u5f0f\uff09": [[430, "index-25", false]], "yield from\uff08\u5728\u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\u4e2d\uff09": [[476, "index-11", false]], "yield_value (opcode)": [[191, "opcode-YIELD_VALUE", false]], "yieldfrom (ast \u4e2d\u7684\u985e\u5225)": [[122, "ast.YieldFrom", false]], "yiq_to_rgb() (\u65bc colorsys \u6a21\u7d44\u4e2d)": [[162, "colorsys.yiq_to_rgb", false]], "yview() (tkinter.ttk.treeview \u7684\u65b9\u6cd5)": [[376, "tkinter.ttk.Treeview.yview", false]], "z": [[345, "index-5", false]], "zen of python\uff08python \u4e4b\u79aa\uff09": [[87, "term-Zen-of-Python", true]], "zerodivisionerror": [[213, "ZeroDivisionError", false], [430, "index-67", false]], "zfill() (bytearray \u7684\u65b9\u6cd5)": [[344, "bytearray.zfill", false]], "zfill() (bytes \u7684\u65b9\u6cd5)": [[344, "bytes.zfill", false]], "zfill() (str \u7684\u65b9\u6cd5)": [[344, "str.zfill", false]], "zip (2to3 fixer)": [[112, "to3fixer-zip", false]], "zip()": [[225, "zip", false]], "zip_bzip2 (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_BZIP2", false]], "zip_deflated (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_DEFLATED", false]], "zip_longest() (\u65bc itertools \u6a21\u7d44\u4e2d)": [[261, "itertools.zip_longest", false]], "zip_lzma (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_LZMA", false]], "zip_stored (\u65bc zipfile \u6a21\u7d44\u4e2d)": [[422, "zipfile.ZIP_STORED", false]], "zipapp": [[421, "module-zipapp", false]], "zipapp \u547d\u4ee4\u5217\u9078\u9805": [[421, "cmdoption-zipapp-c", false], [421, "cmdoption-zipapp-h", false], [421, "cmdoption-zipapp-info", false], [421, "cmdoption-zipapp-m", false], [421, "cmdoption-zipapp-o", false], [421, "cmdoption-zipapp-p", false]], "zipfile": [[422, "module-zipfile", false]], "zipfile (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.ZipFile", false]], "zipfile \u547d\u4ee4\u5217\u9078\u9805": [[422, "cmdoption-zipfile-c", false], [422, "cmdoption-zipfile-create", false], [422, "cmdoption-zipfile-e", false], [422, "cmdoption-zipfile-extract", false], [422, "cmdoption-zipfile-l", false], [422, "cmdoption-zipfile-list", false], [422, "cmdoption-zipfile-metadata-encoding", false], [422, "cmdoption-zipfile-t", false], [422, "cmdoption-zipfile-test", false]], "zipimport": [[423, "module-zipimport", false]], "zipimporter (zipimport \u4e2d\u7684\u985e\u5225)": [[423, "zipimport.zipimporter", false]], "zipimporterror": [[423, "zipimport.ZipImportError", false]], "zipinfo (zipfile \u4e2d\u7684\u985e\u5225)": [[422, "zipfile.ZipInfo", false]], "zlib": [[424, "module-zlib", false]], "zlib_runtime_version (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.ZLIB_RUNTIME_VERSION", false]], "zlib_version (\u65bc zlib \u6a21\u7d44\u4e2d)": [[424, "zlib.ZLIB_VERSION", false]], "zoneinfo": [[425, "module-zoneinfo", false]], "zoneinfo (zoneinfo \u4e2d\u7684\u985e\u5225)": [[425, "zoneinfo.ZoneInfo", false]], "zoneinfonotfounderror": [[425, "zoneinfo.ZoneInfoNotFoundError", false]], "zscore() (statistics.normaldist \u7684\u65b9\u6cd5)": [[343, "statistics.NormalDist.zscore", false]], "{} \uff08\u82b1\u62ec\u865f\uff09": [[319, "index-8", false], [345, "index-2", false], [430, "index-16", false], [430, "index-17", false], [435, "index-25", false]], "| \uff08\u5782\u76f4\u7dda\uff09": [[319, "index-14", false], [344, "index-16", false], [430, "index-76", false]], "|=": [[436, "index-14", false]], "~ \uff08\u6ce2\u6d6a\u865f\uff09": [[294, "index-1", false], [344, "index-16", false], [430, "index-62", false]], "\u4ee5\u53ca os.makedirs()": [[293, "index-28", false]], "\u547d\u4ee4\u5217\u9078\u9805": [[455, "cmdoption-0", false], [455, "cmdoption-B", false], [455, "cmdoption-E", false], [455, "cmdoption-I", false], [455, "cmdoption-J", false], [455, "cmdoption-O", false], [455, "cmdoption-OO", false], [455, "cmdoption-P", false], [455, "cmdoption-R", false], [455, "cmdoption-S", false], [455, "cmdoption-V", false], [455, "cmdoption-W", false], [455, "cmdoption-X", false], [455, "cmdoption-b", false], [455, "cmdoption-c", false], [455, "cmdoption-check-hash-based-pycs", false], [455, "cmdoption-d", false], [455, "cmdoption-h", false], [455, "cmdoption-help", false], [455, "cmdoption-help-all", false], [455, "cmdoption-help-env", false], [455, "cmdoption-help-xoptions", false], [455, "cmdoption-i", false], [455, "cmdoption-m", false], [455, "cmdoption-q", false], [455, "cmdoption-s", false], [455, "cmdoption-u", false], [455, "cmdoption-v", false], [455, "cmdoption-version", false], [455, "cmdoption-x", false], [456, "cmdoption-0", false], [456, "cmdoption-1", false], [456, "cmdoption-arg-CONFIG_SITE", false], [456, "cmdoption-build", false], [456, "cmdoption-disable-ipv6", false], [456, "cmdoption-disable-test-modules", false], [456, "cmdoption-enable-big-digits", false], [456, "cmdoption-enable-bolt", false], [456, "cmdoption-enable-framework", false], [456, "cmdoption-enable-loadable-sqlite-extensions", false], [456, "cmdoption-enable-optimizations", false], [456, "cmdoption-enable-profiling", false], [456, "cmdoption-enable-pystats", false], [456, "cmdoption-enable-shared", false], [456, "cmdoption-enable-universalsdk", false], [456, "cmdoption-enable-wasm-dynamic-linking", false], [456, "cmdoption-enable-wasm-pthreads", false], [456, "cmdoption-exec-prefix", false], [456, "cmdoption-host", false], [456, "cmdoption-prefix", false], [456, "cmdoption-with-address-sanitizer", false], [456, "cmdoption-with-assertions", false], [456, "cmdoption-with-build-python", false], [456, "cmdoption-with-builtin-hashlib-hashes", false], [456, "cmdoption-with-computed-gotos", false], [456, "cmdoption-with-dbmliborder", false], [456, "cmdoption-with-dtrace", false], [456, "cmdoption-with-emscripten-target", false], [456, "cmdoption-with-ensurepip", false], [456, "cmdoption-with-framework-name", false], [456, "cmdoption-with-hash-algorithm", false], [456, "cmdoption-with-libc", false], [456, "cmdoption-with-libm", false], [456, "cmdoption-with-libs", false], [456, "cmdoption-with-lto", false], [456, "cmdoption-with-memory-sanitizer", false], [456, "cmdoption-with-openssl", false], [456, "cmdoption-with-openssl-rpath", false], [456, "cmdoption-with-pkg-config", false], [456, "cmdoption-with-platlibdir", false], [456, "cmdoption-with-pydebug", false], [456, "cmdoption-with-readline", false], [456, "cmdoption-with-ssl-default-suites", false], [456, "cmdoption-with-strict-overflow", false], [456, "cmdoption-with-suffix", false], [456, "cmdoption-with-system-expat", false], [456, "cmdoption-with-system-libmpdec", false], [456, "cmdoption-with-trace-refs", false], [456, "cmdoption-with-tzpath", false], [456, "cmdoption-with-undefined-behavior-sanitizer", false], [456, "cmdoption-with-universal-archs", false], [456, "cmdoption-with-valgrind", false], [456, "cmdoption-with-wheel-pkg-dir", false], [456, "cmdoption-without-c-locale-coercion", false], [456, "cmdoption-without-decimal-contextvar", false], [456, "cmdoption-without-doc-strings", false], [456, "cmdoption-without-freelists", false], [456, "cmdoption-without-pymalloc", false], [456, "cmdoption-without-readline", false], [456, "cmdoption-without-static-libpython", false]], "\u57fa\u6e96\u91cf\u6e2c (benchmarking)": [[367, "index-0", false]], "\u6027\u80fd\u8868\u73fe": [[367, "index-0", false]], "\u65bc argparse \u6a21\u7d44\u4e2d": [[120, "index-0", false], [120, "index-1", false], [120, "index-2", false]], "\u65bc ast \u6587\u6cd5\u4e2d": [[122, "index-0", false], [122, "index-1", false]], "\u65bc cgi \u8173\u672c\u4e2d": [[152, "index-0", false]], "\u65bc command interpreter\uff08\u6307\u4ee4\u76f4\u8b6f\u5668\uff09\u4e2d": [[155, "index-0", false]], "\u65bc comprehensions\uff08\u7d9c\u5408\u904b\u7b97\uff09": [[430, "index-12", false], [430, "index-13", false]], "\u65bc curses \u6a21\u7d44\u4e2d": [[178, "index-0", false]], "\u65bc doctests \u4e2d": [[193, "index-3", false], [193, "index-4", false]], "\u65bc expression list\uff08\u904b\u7b97\u5f0f\u4e32\u5217\uff09": [[430, "index-93", false]], "\u65bc glob \u98a8\u683c\u7684\u842c\u7528\u5b57\u5143\u4e2d": [[220, "index-2", false], [231, "index-1", false], [231, "index-2", false]], "\u65bc pathnames\uff08\u8def\u5f91\u540d\u7a31\uff09\u4e2d": [[293, "index-45", false], [293, "index-46", false], [293, "index-47", false], [293, "index-49", false], [293, "index-50", false]], "\u65bc printf \u98a8\u683c\u683c\u5f0f\u5316": [[344, "index-36", false], [344, "index-37", false], [344, "index-46", false], [344, "index-47", false]], "\u65bc sql \u9673\u8ff0\u5f0f\u4e2d": [[340, "index-6", false], [340, "index-7", false]], "\u65bc struct format strings\uff08\u7d50\u69cb\u683c\u5f0f\u5b57\u4e32\uff09": [[347, "index-1", false], [347, "index-2", false], [347, "index-3", false]], "\u65bc template strings\uff08\u6a21\u677f\u5b57\u4e32\uff09": [[345, "index-13", false]], "\u65bc\u51fd\u5f0f\u547c\u53eb\u4e2d": [[430, "index-47", false], [430, "index-49", false], [430, "index-50", false], [441, "index-3", false], [441, "index-4", false]], "\u65bc\u5b57\u4e32\u683c\u5f0f\u5316": [[345, "index-10", false], [345, "index-2", false], [345, "index-3", false], [345, "index-4", false], [345, "index-5", false], [345, "index-7", false], [345, "index-8", false]], "\u65bc\u5b57\u5178\u904b\u7b97\u5f0f": [[430, "index-17", false]], "\u65bc\u5b57\u5178\u986f\u793a": [[430, "index-17", false], [430, "index-18", false]], "\u65bc\u6578\u503c\u5e38\u6578\u4e2d": [[435, "index-28", false], [435, "index-29", false], [435, "index-30", false]], "\u65bc\u683c\u5f0f\u5316\u5b57\u4e32\u5e38\u6578\u4e2d": [[435, "index-25", false]], "\u65bc\u6b63\u898f\u8868\u793a\u5f0f\u4e2d": [[319, "index-0", false], [319, "index-1", false], [319, "index-10", false], [319, "index-11", false], [319, "index-12", false], [319, "index-13", false], [319, "index-14", false], [319, "index-15", false], [319, "index-16", false], [319, "index-17", false], [319, "index-18", false], [319, "index-19", false], [319, "index-2", false], [319, "index-20", false], [319, "index-21", false], [319, "index-22", false], [319, "index-23", false], [319, "index-24", false], [319, "index-25", false], [319, "index-26", false], [319, "index-27", false], [319, "index-28", false], [319, "index-29", false], [319, "index-3", false], [319, "index-30", false], [319, "index-31", false], [319, "index-32", false], [319, "index-33", false], [319, "index-34", false], [319, "index-35", false], [319, "index-36", false], [319, "index-37", false], [319, "index-38", false], [319, "index-39", false], [319, "index-4", false], [319, "index-5", false], [319, "index-6", false], [319, "index-7", false], [319, "index-8", false], [319, "index-9", false]], "\u65bc\u76ee\u6a19\u5217\u8868\u4e2d": [[436, "index-6", false]], "\u65bc\u8ce6\u503c\u76ee\u6a19\u5217\u8868\u4e2d": [[436, "index-6", false]], "\u6a21\u7d44": [[33, "index-15", false], [33, "index-22", false], [33, "index-23", false], [33, "index-38", false], [33, "index-42", false], [33, "index-45", false], [344, "index-15", false], [344, "index-33", false], [344, "index-40", false], [344, "index-65", false]], "\u74b0\u5883\u8b8a\u6578": [[33, "index-17", false], [33, "index-18", false], [33, "index-3", false], [33, "index-30", false], [33, "index-31", false], [33, "index-62", false], [33, "index-63", false], [33, "index-64", false], [33, "index-65", false], [33, "index-66", false], [33, "index-67", false], [33, "index-68", false], [33, "index-71", false], [33, "index-72", false], [33, "index-73", false], [33, "index-74", false], [33, "index-9", false], [34, "index-1", false], [34, "index-10", false], [34, "index-11", false], [34, "index-12", false], [34, "index-13", false], [34, "index-14", false], [34, "index-15", false], [34, "index-16", false], [34, "index-18", false], [34, "index-19", false], [34, "index-2", false], [34, "index-20", false], [34, "index-21", false], [34, "index-22", false], [34, "index-23", false], [34, "index-24", false], [34, "index-25", false], [34, "index-26", false], [34, "index-27", false], [34, "index-28", false], [34, "index-29", false], [34, "index-3", false], [34, "index-30", false], [34, "index-31", false], [34, "index-32", false], [34, "index-35", false], [34, "index-36", false], [34, "index-4", false], [34, "index-5", false], [34, "index-6", false], [34, "index-8", false], [34, "index-9", false], [35, "index-41", false], [35, "index-42", false], [35, "index-43", false], [35, "index-44", false], [35, "index-45", false], [35, "index-46", false], [42, "index-1", false], [42, "index-2", false], [42, "index-3", false], [42, "index-4", false], [42, "index-5", false], [63, "index-0", false], [71, "index-0", false], [84, "index-0", false], [84, "index-1", false], [85, "index-4", false], [104, "index-2", false], [125, "index-2", false], [126, "index-17", false], [151, "index-3", false], [151, "index-4", false], [151, "index-6", false], [163, "index-1", false], [177, "index-0", false], [177, "index-1", false], [177, "index-2", false], [177, "index-3", false], [177, "index-4", false], [177, "index-5", false], [177, "index-6", false], [188, "index-12", false], [188, "index-13", false], [188, "index-14", false], [188, "index-15", false], [188, "index-16", false], [188, "index-17", false], [214, "index-0", false], [225, "index-16", false], [225, "index-19", false], [228, "index-0", false], [229, "index-6", false], [229, "index-7", false], [229, "index-8", false], [230, "index-0", false], [230, "index-1", false], [230, "index-2", false], [230, "index-3", false], [230, "index-5", false], [230, "index-6", false], [230, "index-7", false], [230, "index-8", false], [247, "index-5", false], [247, "index-6", false], [258, "index-9", false], [266, "index-1", false], [266, "index-2", false], [266, "index-3", false], [293, "index-1", false], [293, "index-10", false], [293, "index-11", false], [293, "index-2", false], [293, "index-3", false], [293, "index-33", false], [293, "index-34", false], [293, "index-35", false], [293, "index-36", false], [293, "index-39", false], [293, "index-4", false], [293, "index-40", false], [293, "index-41", false], [293, "index-42", false], [293, "index-43", false], [293, "index-52", false], [294, "index-16", false], [294, "index-17", false], [294, "index-18", false], [294, "index-19", false], [294, "index-20", false], [294, "index-21", false], [295, "index-1", false], [295, "index-2", false], [311, "index-3", false], [311, "index-6", false], [311, "index-7", false], [313, "index-1", false], [320, "index-0", false], [327, "index-6", false], [334, "index-3", false], [334, "index-5", false], [334, "index-6", false], [334, "index-7", false], [334, "index-8", false], [341, "index-32", false], [341, "index-33", false], [344, "index-67", false], [344, "index-68", false], [348, "index-2", false], [348, "index-3", false], [348, "index-4", false], [352, "index-17", false], [352, "index-18", false], [352, "index-22", false], [352, "index-23", false], [352, "index-24", false], [352, "index-3", false], [352, "index-33", false], [352, "index-35", false], [352, "index-36", false], [352, "index-37", false], [352, "index-38", false], [352, "index-4", false], [352, "index-5", false], [352, "index-6", false], [352, "index-7", false], [354, "index-0", false], [354, "index-1", false], [354, "index-2", false], [354, "index-3", false], [354, "index-4", false], [360, "index-7", false], [360, "index-8", false], [360, "index-9", false], [362, "index-0", false], [362, "index-1", false], [362, "index-2", false], [366, "index-13", false], [366, "index-14", false], [366, "index-15", false], [366, "index-16", false], [366, "index-17", false], [366, "index-18", false], [369, "index-0", false], [369, "index-1", false], [382, "index-0", false], [382, "index-1", false], [382, "index-2", false], [395, "index-3", false], [399, "index-10", false], [399, "index-11", false], [399, "index-12", false], [400, "index-1", false], [400, "index-2", false], [400, "index-3", false], [400, "index-4", false], [400, "index-5", false], [403, "index-0", false], [403, "index-1", false], [403, "index-2", false], [403, "index-3", false], [410, "index-0", false], [425, "envvar-PYTHONTZPATH", false], [425, "index-2", false], [428, "index-114", false], [428, "index-61", false], [432, "index-18", false], [438, "index-12", false], [438, "index-13", false], [450, "index-14", false], [450, "index-15", false], [450, "index-17", false], [450, "index-18", false], [455, "envvar-PYTHONASYNCIODEBUG", false], [455, "envvar-PYTHONBREAKPOINT", false], [455, "envvar-PYTHONCASEOK", false], [455, "envvar-PYTHONCOERCECLOCALE", false], [455, "envvar-PYTHONDEBUG", false], [455, "envvar-PYTHONDEVMODE", false], [455, "envvar-PYTHONDONTWRITEBYTECODE", false], [455, "envvar-PYTHONDUMPREFS", false], [455, "envvar-PYTHONDUMPREFSFILE-FILENAME", false], [455, "envvar-PYTHONEXECUTABLE", false], [455, "envvar-PYTHONFAULTHANDLER", false], [455, "envvar-PYTHONHASHSEED", false], [455, "envvar-PYTHONHOME", false], [455, "envvar-PYTHONINSPECT", false], [455, "envvar-PYTHONINTMAXSTRDIGITS", false], [455, "envvar-PYTHONIOENCODING", false], [455, "envvar-PYTHONLEGACYWINDOWSFSENCODING", false], [455, "envvar-PYTHONLEGACYWINDOWSSTDIO", false], [455, "envvar-PYTHONMALLOC", false], [455, "envvar-PYTHONMALLOCSTATS", false], [455, "envvar-PYTHONNODEBUGRANGES", false], [455, "envvar-PYTHONNOUSERSITE", false], [455, "envvar-PYTHONOPTIMIZE", false], [455, "envvar-PYTHONPATH", false], [455, "envvar-PYTHONPERFSUPPORT", false], [455, "envvar-PYTHONPLATLIBDIR", false], [455, "envvar-PYTHONPROFILEIMPORTTIME", false], [455, "envvar-PYTHONPYCACHEPREFIX", false], [455, "envvar-PYTHONSAFEPATH", false], [455, "envvar-PYTHONSTARTUP", false], [455, "envvar-PYTHONTRACEMALLOC", false], [455, "envvar-PYTHONUNBUFFERED", false], [455, "envvar-PYTHONUSERBASE", false], [455, "envvar-PYTHONUTF8", false], [455, "envvar-PYTHONVERBOSE", false], [455, "envvar-PYTHONWARNDEFAULTENCODING", false], [455, "envvar-PYTHONWARNINGS", false], [455, "index-1", false], [455, "index-12", false], [455, "index-13", false], [455, "index-14", false], [455, "index-19", false], [455, "index-2", false], [455, "index-20", false], [455, "index-21", false], [455, "index-22", false], [455, "index-23", false], [455, "index-24", false], [455, "index-25", false], [455, "index-26", false], [455, "index-27", false], [455, "index-28", false], [455, "index-29", false], [455, "index-3", false], [455, "index-30", false], [455, "index-31", false], [455, "index-32", false], [455, "index-33", false], [455, "index-34", false], [455, "index-35", false], [455, "index-36", false], [455, "index-37", false], [455, "index-38", false], [455, "index-4", false], [455, "index-41", false], [455, "index-43", false], [455, "index-44", false], [455, "index-5", false], [455, "index-55", false], [455, "index-56", false], [455, "index-57", false], [455, "index-6", false], [455, "index-8", false], [456, "envvar-BASECFLAGS", false], [456, "envvar-BASECPPFLAGS", false], [456, "envvar-BLDSHARED", false], [456, "envvar-CC", false], [456, "envvar-CCSHARED", false], [456, "envvar-CFLAGS", false], [456, "envvar-CFLAGSFORSHARED", false], [456, "envvar-CFLAGS_ALIASING", false], [456, "envvar-CFLAGS_NODIST", false], [456, "envvar-COMPILEALL_OPTS", false], [456, "envvar-CONFIGURE_CFLAGS", false], [456, "envvar-CONFIGURE_CFLAGS_NODIST", false], [456, "envvar-CONFIGURE_CPPFLAGS", false], [456, "envvar-CONFIGURE_LDFLAGS", false], [456, "envvar-CONFIGURE_LDFLAGS_NODIST", false], [456, "envvar-CPPFLAGS", false], [456, "envvar-CXX", false], [456, "envvar-EXTRA_CFLAGS", false], [456, "envvar-LDFLAGS", false], [456, "envvar-LDFLAGS_NODIST", false], [456, "envvar-LDSHARED", false], [456, "envvar-LIBS", false], [456, "envvar-LINKCC", false], [456, "envvar-OPT", false], [456, "envvar-PROFILE_TASK", false], [456, "envvar-PURIFY", false], [456, "envvar-PY_BUILTIN_MODULE_CFLAGS", false], [456, "envvar-PY_CFLAGS", false], [456, "envvar-PY_CFLAGS_NODIST", false], [456, "envvar-PY_CORE_CFLAGS", false], [456, "envvar-PY_CORE_LDFLAGS", false], [456, "envvar-PY_CPPFLAGS", false], [456, "envvar-PY_LDFLAGS", false], [456, "envvar-PY_LDFLAGS_NODIST", false], [456, "envvar-PY_STDMODULE_CFLAGS", false], [456, "index-10", false], [456, "index-11", false], [456, "index-12", false], [456, "index-13", false], [456, "index-14", false], [456, "index-15", false], [456, "index-16", false], [456, "index-17", false], [456, "index-18", false], [456, "index-19", false], [456, "index-20", false], [456, "index-21", false], [456, "index-22", false], [456, "index-23", false], [456, "index-24", false], [456, "index-25", false], [456, "index-26", false], [456, "index-27", false], [456, "index-28", false], [456, "index-29", false], [456, "index-34", false], [456, "index-36", false], [456, "index-37", false], [456, "index-4", false], [456, "index-5", false], [456, "index-7", false], [456, "index-9", false], [459, "index-2", false], [460, "index-2", false], [461, "index-10", false], [461, "index-11", false], [461, "index-12", false], [461, "index-13", false], [461, "index-14", false], [461, "index-15", false], [461, "index-18", false], [461, "index-2", false], [461, "index-20", false], [461, "index-22", false], [461, "index-23", false], [461, "index-24", false], [461, "index-25", false], [461, "index-26", false], [461, "index-27", false], [461, "index-28", false], [461, "index-29", false], [461, "index-3", false], [461, "index-30", false], [461, "index-31", false], [461, "index-32", false], [461, "index-33", false], [461, "index-34", false], [461, "index-35", false], [461, "index-36", false], [461, "index-37", false], [461, "index-4", false], [461, "index-40", false], [461, "index-5", false], [461, "index-6", false], [461, "index-7", false], [461, "index-8", false], [461, "index-9", false], [463, "index-11", false], [465, "index-24", false], [465, "index-25", false], [465, "index-26", false], [465, "index-27", false], [465, "index-28", false], [468, "index-20", false], [468, "index-21", false], [468, "index-24", false], [468, "index-4", false], [468, "index-5", false], [468, "index-6", false], [469, "index-1", false], [469, "index-11", false], [469, "index-8", false], [472, "index-98", false], [473, "index-103", false], [473, "index-83", false], [473, "index-88", false], [474, "index-23", false], [474, "index-62", false], [475, "index-10", false], [476, "index-23", false], [476, "index-24", false], [476, "index-35", false], [477, "index-40", false], [477, "index-41", false], [477, "index-50", false], [477, "index-53", false], [477, "index-54", false], [477, "index-55", false], [477, "index-56", false], [477, "index-57", false], [477, "index-58", false], [479, "index-19", false], [479, "index-2", false], [479, "index-21", false], [479, "index-27", false], [479, "index-38", false], [480, "index-12", false], [480, "index-26", false], [480, "index-27", false], [480, "index-31", false], [480, "index-36", false], [480, "index-4", false], [480, "index-8", false], [481, "index-13", false], [481, "index-14", false], [481, "index-2", false], [481, "index-20", false], [481, "index-21", false], [481, "index-22", false], [481, "index-3", false], [482, "index-21", false], [483, "index-108", false], [483, "index-138", false], [483, "index-154", false], [483, "index-193", false], [483, "index-2", false], [483, "index-201", false], [483, "index-202", false], [483, "index-203", false], [483, "index-205", false], [483, "index-209", false], [483, "index-213", false], [483, "index-214", false], [483, "index-216", false], [483, "index-218", false], [483, "index-220", false], [483, "index-227", false], [483, "index-228", false], [483, "index-232", false], [483, "index-233", false], [483, "index-237", false], [483, "index-238", false], [483, "index-246", false], [483, "index-257", false], [483, "index-258", false], [483, "index-287", false], [483, "index-288", false], [483, "index-42", false], [483, "index-51", false], [483, "index-52", false], [483, "index-55", false], [483, "index-56", false], [483, "index-65", false], [483, "index-77", false], [483, "index-80", false], [483, "index-88", false], [483, "index-95", false]], "\u7bc4\u4f8b": [[430, "index-34", false]], "\u8207 argument\uff08\u5f15\u6578\uff09\u7684\u5dee\u7570": [[85, "index-1", false]], "\u8207 parameter\uff08\u53c3\u6578\uff09\u7684\u5dee\u7570": [[85, "index-1", false]], "\uff08\u4ea6\u8acb\u898b string\uff09": [[344, "index-28", false]], "\uff08\u4f7f\u7528\u65bc hashlib \u6a21\u7d44\u4e2d\uff09": [[235, "index-2", false]], "\uff08\u7528\u65bc ssl \u6a21\u7d44\uff09": [[341, "index-0", false]]}, "objects": {"": [[66, 0, 1, "c.CO_FUTURE_DIVISION", "CO_FUTURE_DIVISION"], [58, 1, 1, "c.METH_CLASS", "METH_CLASS"], [58, 1, 1, "c.METH_COEXIST", "METH_COEXIST"], [58, 1, 1, "c.METH_FASTCALL", "METH_FASTCALL"], [58, 1, 1, "c.METH_KEYWORDS", "METH_KEYWORDS"], [58, 1, 1, "c.METH_METHOD", "METH_METHOD"], [58, 1, 1, "c.METH_NOARGS", "METH_NOARGS"], [58, 1, 1, "c.METH_O", "METH_O"], [58, 1, 1, "c.METH_STATIC", "METH_STATIC"], [58, 1, 1, "c.METH_VARARGS", "METH_VARARGS"], [42, 1, 1, "c.PYMEM_DOMAIN_MEM", "PYMEM_DOMAIN_MEM"], [42, 1, 1, "c.PYMEM_DOMAIN_OBJ", "PYMEM_DOMAIN_OBJ"], [42, 1, 1, "c.PYMEM_DOMAIN_RAW", "PYMEM_DOMAIN_RAW"], [4, 1, 1, "c.PY_MAJOR_VERSION", "PY_MAJOR_VERSION"], [4, 1, 1, "c.PY_MICRO_VERSION", "PY_MICRO_VERSION"], [4, 1, 1, "c.PY_MINOR_VERSION", "PY_MINOR_VERSION"], [4, 1, 1, "c.PY_RELEASE_LEVEL", "PY_RELEASE_LEVEL"], [4, 1, 1, "c.PY_RELEASE_SERIAL", "PY_RELEASE_SERIAL"], [10, 1, 1, "c.PY_VECTORCALL_ARGUMENTS_OFFSET", "PY_VECTORCALL_ARGUMENTS_OFFSET"], [4, 1, 1, "c.PY_VERSION_HEX", "PY_VERSION_HEX"], [36, 2, 1, "c.PyAIter_Check", "PyAIter_Check"], [64, 4, 1, "c.PyASCIIObject", "PyASCIIObject"], [55, 2, 1, "c.PyAnySet_Check", "PyAnySet_Check"], [55, 2, 1, "c.PyAnySet_CheckExact", "PyAnySet_CheckExact"], [5, 2, 1, "c.PyArg_Parse", "PyArg_Parse"], [5, 2, 1, "c.PyArg_ParseTuple", "PyArg_ParseTuple"], [5, 2, 1, "c.PyArg_ParseTupleAndKeywords", "PyArg_ParseTupleAndKeywords"], [5, 2, 1, "c.PyArg_UnpackTuple", "PyArg_UnpackTuple"], [5, 2, 1, "c.PyArg_VaParse", "PyArg_VaParse"], [5, 2, 1, "c.PyArg_VaParseTupleAndKeywords", "PyArg_VaParseTupleAndKeywords"], [5, 2, 1, "c.PyArg_ValidateKeywordArguments", "PyArg_ValidateKeywordArguments"], [63, 4, 1, "c.PyAsyncMethods", "PyAsyncMethods"], [7, 1, 1, "c.PyBUF_ANY_CONTIGUOUS", "PyBUF_ANY_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_CONTIG", "PyBUF_CONTIG"], [7, 1, 1, "c.PyBUF_CONTIG_RO", "PyBUF_CONTIG_RO"], [7, 1, 1, "c.PyBUF_C_CONTIGUOUS", "PyBUF_C_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_FORMAT", "PyBUF_FORMAT"], [7, 1, 1, "c.PyBUF_FULL", "PyBUF_FULL"], [7, 1, 1, "c.PyBUF_FULL_RO", "PyBUF_FULL_RO"], [7, 1, 1, "c.PyBUF_F_CONTIGUOUS", "PyBUF_F_CONTIGUOUS"], [7, 1, 1, "c.PyBUF_INDIRECT", "PyBUF_INDIRECT"], [7, 1, 1, "c.PyBUF_MAX_NDIM", "PyBUF_MAX_NDIM"], [7, 1, 1, "c.PyBUF_ND", "PyBUF_ND"], [43, 1, 1, "c.PyBUF_READ", "PyBUF_READ"], [7, 1, 1, "c.PyBUF_RECORDS", "PyBUF_RECORDS"], [7, 1, 1, "c.PyBUF_RECORDS_RO", "PyBUF_RECORDS_RO"], [7, 1, 1, "c.PyBUF_SIMPLE", "PyBUF_SIMPLE"], [7, 1, 1, "c.PyBUF_STRIDED", "PyBUF_STRIDED"], [7, 1, 1, "c.PyBUF_STRIDED_RO", "PyBUF_STRIDED_RO"], [7, 1, 1, "c.PyBUF_STRIDES", "PyBUF_STRIDES"], [7, 1, 1, "c.PyBUF_WRITABLE", "PyBUF_WRITABLE"], [43, 1, 1, "c.PyBUF_WRITE", "PyBUF_WRITE"], [6, 2, 1, "c.PyBool_Check", "PyBool_Check"], [6, 2, 1, "c.PyBool_FromLong", "PyBool_FromLong"], [6, 0, 1, "c.PyBool_Type", "PyBool_Type"], [63, 4, 1, "c.PyBufferProcs", "PyBufferProcs"], [7, 2, 1, "c.PyBuffer_FillContiguousStrides", "PyBuffer_FillContiguousStrides"], [7, 2, 1, "c.PyBuffer_FillInfo", "PyBuffer_FillInfo"], [7, 2, 1, "c.PyBuffer_FromContiguous", "PyBuffer_FromContiguous"], [7, 2, 1, "c.PyBuffer_GetPointer", "PyBuffer_GetPointer"], [7, 2, 1, "c.PyBuffer_IsContiguous", "PyBuffer_IsContiguous"], [7, 2, 1, "c.PyBuffer_Release", "PyBuffer_Release"], [7, 2, 1, "c.PyBuffer_SizeFromFormat", "PyBuffer_SizeFromFormat"], [7, 2, 1, "c.PyBuffer_ToContiguous", "PyBuffer_ToContiguous"], [8, 4, 1, "c.PyByteArrayObject", "PyByteArrayObject"], [8, 2, 1, "c.PyByteArray_AS_STRING", "PyByteArray_AS_STRING"], [8, 2, 1, "c.PyByteArray_AsString", "PyByteArray_AsString"], [8, 2, 1, "c.PyByteArray_Check", "PyByteArray_Check"], [8, 2, 1, "c.PyByteArray_CheckExact", "PyByteArray_CheckExact"], [8, 2, 1, "c.PyByteArray_Concat", "PyByteArray_Concat"], [8, 2, 1, "c.PyByteArray_FromObject", "PyByteArray_FromObject"], [8, 2, 1, "c.PyByteArray_FromStringAndSize", "PyByteArray_FromStringAndSize"], [8, 2, 1, "c.PyByteArray_GET_SIZE", "PyByteArray_GET_SIZE"], [8, 2, 1, "c.PyByteArray_Resize", "PyByteArray_Resize"], [8, 2, 1, "c.PyByteArray_Size", "PyByteArray_Size"], [8, 0, 1, "c.PyByteArray_Type", "PyByteArray_Type"], [9, 4, 1, "c.PyBytesObject", "PyBytesObject"], [9, 2, 1, "c.PyBytes_AS_STRING", "PyBytes_AS_STRING"], [9, 2, 1, "c.PyBytes_AsString", "PyBytes_AsString"], [9, 2, 1, "c.PyBytes_AsStringAndSize", "PyBytes_AsStringAndSize"], [9, 2, 1, "c.PyBytes_Check", "PyBytes_Check"], [9, 2, 1, "c.PyBytes_CheckExact", "PyBytes_CheckExact"], [9, 2, 1, "c.PyBytes_Concat", "PyBytes_Concat"], [9, 2, 1, "c.PyBytes_ConcatAndDel", "PyBytes_ConcatAndDel"], [9, 2, 1, "c.PyBytes_FromFormat", "PyBytes_FromFormat"], [9, 2, 1, "c.PyBytes_FromFormatV", "PyBytes_FromFormatV"], [9, 2, 1, "c.PyBytes_FromObject", "PyBytes_FromObject"], [9, 2, 1, "c.PyBytes_FromString", "PyBytes_FromString"], [9, 2, 1, "c.PyBytes_FromStringAndSize", "PyBytes_FromStringAndSize"], [9, 2, 1, "c.PyBytes_GET_SIZE", "PyBytes_GET_SIZE"], [9, 2, 1, "c.PyBytes_Size", "PyBytes_Size"], [9, 0, 1, "c.PyBytes_Type", "PyBytes_Type"], [58, 4, 1, "c.PyCFunction", "PyCFunction"], [58, 4, 1, "c.PyCFunctionWithKeywords", "PyCFunctionWithKeywords"], [58, 2, 1, "c.PyCFunction_New", "PyCFunction_New"], [58, 2, 1, "c.PyCFunction_NewEx", "PyCFunction_NewEx"], [58, 4, 1, "c.PyCMethod", "PyCMethod"], [58, 2, 1, "c.PyCMethod_New", "PyCMethod_New"], [37, 2, 1, "c.PyCallIter_Check", "PyCallIter_Check"], [37, 2, 1, "c.PyCallIter_New", "PyCallIter_New"], [37, 0, 1, "c.PyCallIter_Type", "PyCallIter_Type"], [10, 2, 1, "c.PyCallable_Check", "PyCallable_Check"], [11, 4, 1, "c.PyCapsule", "PyCapsule"], [11, 2, 1, "c.PyCapsule_CheckExact", "PyCapsule_CheckExact"], [11, 4, 1, "c.PyCapsule_Destructor", "PyCapsule_Destructor"], [11, 2, 1, "c.PyCapsule_GetContext", "PyCapsule_GetContext"], [11, 2, 1, "c.PyCapsule_GetDestructor", "PyCapsule_GetDestructor"], [11, 2, 1, "c.PyCapsule_GetName", "PyCapsule_GetName"], [11, 2, 1, "c.PyCapsule_GetPointer", "PyCapsule_GetPointer"], [11, 2, 1, "c.PyCapsule_Import", "PyCapsule_Import"], [11, 2, 1, "c.PyCapsule_IsValid", "PyCapsule_IsValid"], [11, 2, 1, "c.PyCapsule_New", "PyCapsule_New"], [11, 2, 1, "c.PyCapsule_SetContext", "PyCapsule_SetContext"], [11, 2, 1, "c.PyCapsule_SetDestructor", "PyCapsule_SetDestructor"], [11, 2, 1, "c.PyCapsule_SetName", "PyCapsule_SetName"], [11, 2, 1, "c.PyCapsule_SetPointer", "PyCapsule_SetPointer"], [12, 4, 1, "c.PyCellObject", "PyCellObject"], [12, 2, 1, "c.PyCell_Check", "PyCell_Check"], [12, 2, 1, "c.PyCell_GET", "PyCell_GET"], [12, 2, 1, "c.PyCell_Get", "PyCell_Get"], [12, 2, 1, "c.PyCell_New", "PyCell_New"], [12, 2, 1, "c.PyCell_SET", "PyCell_SET"], [12, 2, 1, "c.PyCell_Set", "PyCell_Set"], [12, 0, 1, "c.PyCell_Type", "PyCell_Type"], [13, 4, 1, "c.PyCodeEvent", "PyCodeEvent"], [13, 4, 1, "c.PyCodeObject", "PyCodeObject"], [13, 2, 1, "c.PyCode_AddWatcher", "PyCode_AddWatcher"], [13, 2, 1, "c.PyCode_Addr2Line", "PyCode_Addr2Line"], [13, 2, 1, "c.PyCode_Addr2Location", "PyCode_Addr2Location"], [13, 2, 1, "c.PyCode_Check", "PyCode_Check"], [13, 2, 1, "c.PyCode_ClearWatcher", "PyCode_ClearWatcher"], [13, 2, 1, "c.PyCode_GetCellvars", "PyCode_GetCellvars"], [13, 2, 1, "c.PyCode_GetCode", "PyCode_GetCode"], [13, 2, 1, "c.PyCode_GetFirstFree", "PyCode_GetFirstFree"], [13, 2, 1, "c.PyCode_GetFreevars", "PyCode_GetFreevars"], [13, 2, 1, "c.PyCode_GetNumFree", "PyCode_GetNumFree"], [13, 2, 1, "c.PyCode_GetVarnames", "PyCode_GetVarnames"], [13, 2, 1, "c.PyCode_NewEmpty", "PyCode_NewEmpty"], [13, 0, 1, "c.PyCode_Type", "PyCode_Type"], [13, 4, 1, "c.PyCode_WatchCallback", "PyCode_WatchCallback"], [14, 2, 1, "c.PyCodec_BackslashReplaceErrors", "PyCodec_BackslashReplaceErrors"], [14, 2, 1, "c.PyCodec_Decode", "PyCodec_Decode"], [14, 2, 1, "c.PyCodec_Decoder", "PyCodec_Decoder"], [14, 2, 1, "c.PyCodec_Encode", "PyCodec_Encode"], [14, 2, 1, "c.PyCodec_Encoder", "PyCodec_Encoder"], [14, 2, 1, "c.PyCodec_IgnoreErrors", "PyCodec_IgnoreErrors"], [14, 2, 1, "c.PyCodec_IncrementalDecoder", "PyCodec_IncrementalDecoder"], [14, 2, 1, "c.PyCodec_IncrementalEncoder", "PyCodec_IncrementalEncoder"], [14, 2, 1, "c.PyCodec_KnownEncoding", "PyCodec_KnownEncoding"], [14, 2, 1, "c.PyCodec_LookupError", "PyCodec_LookupError"], [14, 2, 1, "c.PyCodec_NameReplaceErrors", "PyCodec_NameReplaceErrors"], [14, 2, 1, "c.PyCodec_Register", "PyCodec_Register"], [14, 2, 1, "c.PyCodec_RegisterError", "PyCodec_RegisterError"], [14, 2, 1, "c.PyCodec_ReplaceErrors", "PyCodec_ReplaceErrors"], [14, 2, 1, "c.PyCodec_StreamReader", "PyCodec_StreamReader"], [14, 2, 1, "c.PyCodec_StreamWriter", "PyCodec_StreamWriter"], [14, 2, 1, "c.PyCodec_StrictErrors", "PyCodec_StrictErrors"], [14, 2, 1, "c.PyCodec_Unregister", "PyCodec_Unregister"], [14, 2, 1, "c.PyCodec_XMLCharRefReplaceErrors", "PyCodec_XMLCharRefReplaceErrors"], [64, 4, 1, "c.PyCompactUnicodeObject", "PyCompactUnicodeObject"], [66, 5, 1, "c.PyCompilerFlags", "PyCompilerFlags"], [15, 4, 1, "c.PyComplexObject", "PyComplexObject"], [15, 2, 1, "c.PyComplex_AsCComplex", "PyComplex_AsCComplex"], [15, 2, 1, "c.PyComplex_Check", "PyComplex_Check"], [15, 2, 1, "c.PyComplex_CheckExact", "PyComplex_CheckExact"], [15, 2, 1, "c.PyComplex_FromCComplex", "PyComplex_FromCComplex"], [15, 2, 1, "c.PyComplex_FromDoubles", "PyComplex_FromDoubles"], [15, 2, 1, "c.PyComplex_ImagAsDouble", "PyComplex_ImagAsDouble"], [15, 2, 1, "c.PyComplex_RealAsDouble", "PyComplex_RealAsDouble"], [15, 0, 1, "c.PyComplex_Type", "PyComplex_Type"], [34, 4, 1, "c.PyConfig", "PyConfig"], [34, 2, 1, "c.PyConfig_Clear", "PyConfig_Clear"], [34, 2, 1, "c.PyConfig_InitIsolatedConfig", "PyConfig_InitIsolatedConfig"], [34, 2, 1, "c.PyConfig_InitPythonConfig", "PyConfig_InitPythonConfig"], [34, 2, 1, "c.PyConfig_Read", "PyConfig_Read"], [34, 2, 1, "c.PyConfig_SetArgv", "PyConfig_SetArgv"], [34, 2, 1, "c.PyConfig_SetBytesArgv", "PyConfig_SetBytesArgv"], [34, 2, 1, "c.PyConfig_SetBytesString", "PyConfig_SetBytesString"], [34, 2, 1, "c.PyConfig_SetString", "PyConfig_SetString"], [34, 2, 1, "c.PyConfig_SetWideStringList", "PyConfig_SetWideStringList"], [17, 4, 1, "c.PyContext", "PyContext"], [17, 4, 1, "c.PyContextToken", "PyContextToken"], [17, 2, 1, "c.PyContextToken_CheckExact", "PyContextToken_CheckExact"], [17, 0, 1, "c.PyContextToken_Type", "PyContextToken_Type"], [17, 4, 1, "c.PyContextVar", "PyContextVar"], [17, 2, 1, "c.PyContextVar_CheckExact", "PyContextVar_CheckExact"], [17, 2, 1, "c.PyContextVar_Get", "PyContextVar_Get"], [17, 2, 1, "c.PyContextVar_New", "PyContextVar_New"], [17, 2, 1, "c.PyContextVar_Reset", "PyContextVar_Reset"], [17, 2, 1, "c.PyContextVar_Set", "PyContextVar_Set"], [17, 0, 1, "c.PyContextVar_Type", "PyContextVar_Type"], [17, 2, 1, "c.PyContext_CheckExact", "PyContext_CheckExact"], [17, 2, 1, "c.PyContext_Copy", "PyContext_Copy"], [17, 2, 1, "c.PyContext_CopyCurrent", "PyContext_CopyCurrent"], [17, 2, 1, "c.PyContext_Enter", "PyContext_Enter"], [17, 2, 1, "c.PyContext_Exit", "PyContext_Exit"], [17, 2, 1, "c.PyContext_New", "PyContext_New"], [17, 0, 1, "c.PyContext_Type", "PyContext_Type"], [19, 4, 1, "c.PyCoroObject", "PyCoroObject"], [19, 2, 1, "c.PyCoro_CheckExact", "PyCoro_CheckExact"], [19, 2, 1, "c.PyCoro_New", "PyCoro_New"], [19, 0, 1, "c.PyCoro_Type", "PyCoro_Type"], [20, 2, 1, "c.PyDateTime_Check", "PyDateTime_Check"], [20, 2, 1, "c.PyDateTime_CheckExact", "PyDateTime_CheckExact"], [20, 2, 1, "c.PyDateTime_DATE_GET_FOLD", "PyDateTime_DATE_GET_FOLD"], [20, 2, 1, "c.PyDateTime_DATE_GET_HOUR", "PyDateTime_DATE_GET_HOUR"], [20, 2, 1, "c.PyDateTime_DATE_GET_MICROSECOND", "PyDateTime_DATE_GET_MICROSECOND"], [20, 2, 1, "c.PyDateTime_DATE_GET_MINUTE", "PyDateTime_DATE_GET_MINUTE"], [20, 2, 1, "c.PyDateTime_DATE_GET_SECOND", "PyDateTime_DATE_GET_SECOND"], [20, 2, 1, "c.PyDateTime_DATE_GET_TZINFO", "PyDateTime_DATE_GET_TZINFO"], [20, 2, 1, "c.PyDateTime_DELTA_GET_DAYS", "PyDateTime_DELTA_GET_DAYS"], [20, 2, 1, "c.PyDateTime_DELTA_GET_MICROSECONDS", "PyDateTime_DELTA_GET_MICROSECONDS"], [20, 2, 1, "c.PyDateTime_DELTA_GET_SECONDS", "PyDateTime_DELTA_GET_SECONDS"], [20, 4, 1, "c.PyDateTime_Date", "PyDateTime_Date"], [20, 4, 1, "c.PyDateTime_DateTime", "PyDateTime_DateTime"], [20, 0, 1, "c.PyDateTime_DateTimeType", "PyDateTime_DateTimeType"], [20, 0, 1, "c.PyDateTime_DateType", "PyDateTime_DateType"], [20, 4, 1, "c.PyDateTime_Delta", "PyDateTime_Delta"], [20, 0, 1, "c.PyDateTime_DeltaType", "PyDateTime_DeltaType"], [20, 2, 1, "c.PyDateTime_FromDateAndTime", "PyDateTime_FromDateAndTime"], [20, 2, 1, "c.PyDateTime_FromDateAndTimeAndFold", "PyDateTime_FromDateAndTimeAndFold"], [20, 2, 1, "c.PyDateTime_FromTimestamp", "PyDateTime_FromTimestamp"], [20, 2, 1, "c.PyDateTime_GET_DAY", "PyDateTime_GET_DAY"], [20, 2, 1, "c.PyDateTime_GET_MONTH", "PyDateTime_GET_MONTH"], [20, 2, 1, "c.PyDateTime_GET_YEAR", "PyDateTime_GET_YEAR"], [20, 2, 1, "c.PyDateTime_TIME_GET_FOLD", "PyDateTime_TIME_GET_FOLD"], [20, 2, 1, "c.PyDateTime_TIME_GET_HOUR", "PyDateTime_TIME_GET_HOUR"], [20, 2, 1, "c.PyDateTime_TIME_GET_MICROSECOND", "PyDateTime_TIME_GET_MICROSECOND"], [20, 2, 1, "c.PyDateTime_TIME_GET_MINUTE", "PyDateTime_TIME_GET_MINUTE"], [20, 2, 1, "c.PyDateTime_TIME_GET_SECOND", "PyDateTime_TIME_GET_SECOND"], [20, 2, 1, "c.PyDateTime_TIME_GET_TZINFO", "PyDateTime_TIME_GET_TZINFO"], [20, 0, 1, "c.PyDateTime_TZInfoType", "PyDateTime_TZInfoType"], [20, 4, 1, "c.PyDateTime_Time", "PyDateTime_Time"], [20, 0, 1, "c.PyDateTime_TimeType", "PyDateTime_TimeType"], [20, 0, 1, "c.PyDateTime_TimeZone_UTC", "PyDateTime_TimeZone_UTC"], [20, 2, 1, "c.PyDate_Check", "PyDate_Check"], [20, 2, 1, "c.PyDate_CheckExact", "PyDate_CheckExact"], [20, 2, 1, "c.PyDate_FromDate", "PyDate_FromDate"], [20, 2, 1, "c.PyDate_FromTimestamp", "PyDate_FromTimestamp"], [20, 2, 1, "c.PyDelta_Check", "PyDelta_Check"], [20, 2, 1, "c.PyDelta_CheckExact", "PyDelta_CheckExact"], [20, 2, 1, "c.PyDelta_FromDSU", "PyDelta_FromDSU"], [21, 2, 1, "c.PyDescr_IsData", "PyDescr_IsData"], [21, 2, 1, "c.PyDescr_NewClassMethod", "PyDescr_NewClassMethod"], [21, 2, 1, "c.PyDescr_NewGetSet", "PyDescr_NewGetSet"], [21, 2, 1, "c.PyDescr_NewMember", "PyDescr_NewMember"], [21, 2, 1, "c.PyDescr_NewMethod", "PyDescr_NewMethod"], [21, 2, 1, "c.PyDescr_NewWrapper", "PyDescr_NewWrapper"], [22, 4, 1, "c.PyDictObject", "PyDictObject"], [22, 2, 1, "c.PyDictProxy_New", "PyDictProxy_New"], [22, 2, 1, "c.PyDict_AddWatcher", "PyDict_AddWatcher"], [22, 2, 1, "c.PyDict_Check", "PyDict_Check"], [22, 2, 1, "c.PyDict_CheckExact", "PyDict_CheckExact"], [22, 2, 1, "c.PyDict_Clear", "PyDict_Clear"], [22, 2, 1, "c.PyDict_ClearWatcher", "PyDict_ClearWatcher"], [22, 2, 1, "c.PyDict_Contains", "PyDict_Contains"], [22, 2, 1, "c.PyDict_Copy", "PyDict_Copy"], [22, 2, 1, "c.PyDict_DelItem", "PyDict_DelItem"], [22, 2, 1, "c.PyDict_DelItemString", "PyDict_DelItemString"], [22, 2, 1, "c.PyDict_GetItem", "PyDict_GetItem"], [22, 2, 1, "c.PyDict_GetItemString", "PyDict_GetItemString"], [22, 2, 1, "c.PyDict_GetItemWithError", "PyDict_GetItemWithError"], [22, 2, 1, "c.PyDict_Items", "PyDict_Items"], [22, 2, 1, "c.PyDict_Keys", "PyDict_Keys"], [22, 2, 1, "c.PyDict_Merge", "PyDict_Merge"], [22, 2, 1, "c.PyDict_MergeFromSeq2", "PyDict_MergeFromSeq2"], [22, 2, 1, "c.PyDict_New", "PyDict_New"], [22, 2, 1, "c.PyDict_Next", "PyDict_Next"], [22, 2, 1, "c.PyDict_SetDefault", "PyDict_SetDefault"], [22, 2, 1, "c.PyDict_SetItem", "PyDict_SetItem"], [22, 2, 1, "c.PyDict_SetItemString", "PyDict_SetItemString"], [22, 2, 1, "c.PyDict_Size", "PyDict_Size"], [22, 0, 1, "c.PyDict_Type", "PyDict_Type"], [22, 2, 1, "c.PyDict_Unwatch", "PyDict_Unwatch"], [22, 2, 1, "c.PyDict_Update", "PyDict_Update"], [22, 2, 1, "c.PyDict_Values", "PyDict_Values"], [22, 2, 1, "c.PyDict_Watch", "PyDict_Watch"], [22, 4, 1, "c.PyDict_WatchCallback", "PyDict_WatchCallback"], [22, 4, 1, "c.PyDict_WatchEvent", "PyDict_WatchEvent"], [35, 1, 1, "c.PyDoc_STR", "PyDoc_STR"], [35, 1, 1, "c.PyDoc_STRVAR", "PyDoc_STRVAR"], [23, 2, 1, "c.PyErr_BadArgument", "PyErr_BadArgument"], [23, 2, 1, "c.PyErr_BadInternalCall", "PyErr_BadInternalCall"], [23, 2, 1, "c.PyErr_CheckSignals", "PyErr_CheckSignals"], [23, 2, 1, "c.PyErr_Clear", "PyErr_Clear"], [23, 2, 1, "c.PyErr_DisplayException", "PyErr_DisplayException"], [23, 2, 1, "c.PyErr_ExceptionMatches", "PyErr_ExceptionMatches"], [23, 2, 1, "c.PyErr_Fetch", "PyErr_Fetch"], [23, 2, 1, "c.PyErr_Format", "PyErr_Format"], [23, 2, 1, "c.PyErr_FormatV", "PyErr_FormatV"], [23, 2, 1, "c.PyErr_GetExcInfo", "PyErr_GetExcInfo"], [23, 2, 1, "c.PyErr_GetHandledException", "PyErr_GetHandledException"], [23, 2, 1, "c.PyErr_GetRaisedException", "PyErr_GetRaisedException"], [23, 2, 1, "c.PyErr_GivenExceptionMatches", "PyErr_GivenExceptionMatches"], [23, 2, 1, "c.PyErr_NewException", "PyErr_NewException"], [23, 2, 1, "c.PyErr_NewExceptionWithDoc", "PyErr_NewExceptionWithDoc"], [23, 2, 1, "c.PyErr_NoMemory", "PyErr_NoMemory"], [23, 2, 1, "c.PyErr_NormalizeException", "PyErr_NormalizeException"], [23, 2, 1, "c.PyErr_Occurred", "PyErr_Occurred"], [23, 2, 1, "c.PyErr_Print", "PyErr_Print"], [23, 2, 1, "c.PyErr_PrintEx", "PyErr_PrintEx"], [23, 2, 1, "c.PyErr_ResourceWarning", "PyErr_ResourceWarning"], [23, 2, 1, "c.PyErr_Restore", "PyErr_Restore"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErr", "PyErr_SetExcFromWindowsErr"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "PyErr_SetExcFromWindowsErrWithFilename"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "PyErr_SetExcFromWindowsErrWithFilenameObject"], [23, 2, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "PyErr_SetExcFromWindowsErrWithFilenameObjects"], [23, 2, 1, "c.PyErr_SetExcInfo", "PyErr_SetExcInfo"], [23, 2, 1, "c.PyErr_SetFromErrno", "PyErr_SetFromErrno"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilename", "PyErr_SetFromErrnoWithFilename"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "PyErr_SetFromErrnoWithFilenameObject"], [23, 2, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "PyErr_SetFromErrnoWithFilenameObjects"], [23, 2, 1, "c.PyErr_SetFromWindowsErr", "PyErr_SetFromWindowsErr"], [23, 2, 1, "c.PyErr_SetFromWindowsErrWithFilename", "PyErr_SetFromWindowsErrWithFilename"], [23, 2, 1, "c.PyErr_SetHandledException", "PyErr_SetHandledException"], [23, 2, 1, "c.PyErr_SetImportError", "PyErr_SetImportError"], [23, 2, 1, "c.PyErr_SetImportErrorSubclass", "PyErr_SetImportErrorSubclass"], [23, 2, 1, "c.PyErr_SetInterrupt", "PyErr_SetInterrupt"], [23, 2, 1, "c.PyErr_SetInterruptEx", "PyErr_SetInterruptEx"], [23, 2, 1, "c.PyErr_SetNone", "PyErr_SetNone"], [23, 2, 1, "c.PyErr_SetObject", "PyErr_SetObject"], [23, 2, 1, "c.PyErr_SetRaisedException", "PyErr_SetRaisedException"], [23, 2, 1, "c.PyErr_SetString", "PyErr_SetString"], [23, 2, 1, "c.PyErr_SyntaxLocation", "PyErr_SyntaxLocation"], [23, 2, 1, "c.PyErr_SyntaxLocationEx", "PyErr_SyntaxLocationEx"], [23, 2, 1, "c.PyErr_SyntaxLocationObject", "PyErr_SyntaxLocationObject"], [23, 2, 1, "c.PyErr_WarnEx", "PyErr_WarnEx"], [23, 2, 1, "c.PyErr_WarnExplicit", "PyErr_WarnExplicit"], [23, 2, 1, "c.PyErr_WarnExplicitObject", "PyErr_WarnExplicitObject"], [23, 2, 1, "c.PyErr_WarnFormat", "PyErr_WarnFormat"], [23, 2, 1, "c.PyErr_WriteUnraisable", "PyErr_WriteUnraisable"], [33, 2, 1, "c.PyEval_AcquireLock", "PyEval_AcquireLock"], [33, 2, 1, "c.PyEval_AcquireThread", "PyEval_AcquireThread"], [66, 2, 1, "c.PyEval_EvalCode", "PyEval_EvalCode"], [66, 2, 1, "c.PyEval_EvalCodeEx", "PyEval_EvalCodeEx"], [66, 2, 1, "c.PyEval_EvalFrame", "PyEval_EvalFrame"], [66, 2, 1, "c.PyEval_EvalFrameEx", "PyEval_EvalFrameEx"], [53, 2, 1, "c.PyEval_GetBuiltins", "PyEval_GetBuiltins"], [53, 2, 1, "c.PyEval_GetFrame", "PyEval_GetFrame"], [53, 2, 1, "c.PyEval_GetFuncDesc", "PyEval_GetFuncDesc"], [53, 2, 1, "c.PyEval_GetFuncName", "PyEval_GetFuncName"], [53, 2, 1, "c.PyEval_GetGlobals", "PyEval_GetGlobals"], [53, 2, 1, "c.PyEval_GetLocals", "PyEval_GetLocals"], [33, 2, 1, "c.PyEval_InitThreads", "PyEval_InitThreads"], [66, 2, 1, "c.PyEval_MergeCompilerFlags", "PyEval_MergeCompilerFlags"], [33, 2, 1, "c.PyEval_ReleaseLock", "PyEval_ReleaseLock"], [33, 2, 1, "c.PyEval_ReleaseThread", "PyEval_ReleaseThread"], [33, 2, 1, "c.PyEval_RestoreThread", "PyEval_RestoreThread"], [33, 2, 1, "c.PyEval_SaveThread", "PyEval_SaveThread"], [33, 2, 1, "c.PyEval_SetProfile", "PyEval_SetProfile"], [33, 2, 1, "c.PyEval_SetProfileAllThreads", "PyEval_SetProfileAllThreads"], [33, 2, 1, "c.PyEval_SetTrace", "PyEval_SetTrace"], [33, 2, 1, "c.PyEval_SetTraceAllThreads", "PyEval_SetTraceAllThreads"], [33, 2, 1, "c.PyEval_ThreadsInitialized", "PyEval_ThreadsInitialized"], [23, 2, 1, "c.PyException_GetArgs", "PyException_GetArgs"], [23, 2, 1, "c.PyException_GetCause", "PyException_GetCause"], [23, 2, 1, "c.PyException_GetContext", "PyException_GetContext"], [23, 2, 1, "c.PyException_GetTraceback", "PyException_GetTraceback"], [23, 2, 1, "c.PyException_SetArgs", "PyException_SetArgs"], [23, 2, 1, "c.PyException_SetCause", "PyException_SetCause"], [23, 2, 1, "c.PyException_SetContext", "PyException_SetContext"], [23, 2, 1, "c.PyException_SetTraceback", "PyException_SetTraceback"], [24, 2, 1, "c.PyFile_FromFd", "PyFile_FromFd"], [24, 2, 1, "c.PyFile_GetLine", "PyFile_GetLine"], [24, 2, 1, "c.PyFile_SetOpenCodeHook", "PyFile_SetOpenCodeHook"], [24, 2, 1, "c.PyFile_WriteObject", "PyFile_WriteObject"], [24, 2, 1, "c.PyFile_WriteString", "PyFile_WriteString"], [25, 4, 1, "c.PyFloatObject", "PyFloatObject"], [25, 2, 1, "c.PyFloat_AS_DOUBLE", "PyFloat_AS_DOUBLE"], [25, 2, 1, "c.PyFloat_AsDouble", "PyFloat_AsDouble"], [25, 2, 1, "c.PyFloat_Check", "PyFloat_Check"], [25, 2, 1, "c.PyFloat_CheckExact", "PyFloat_CheckExact"], [25, 2, 1, "c.PyFloat_FromDouble", "PyFloat_FromDouble"], [25, 2, 1, "c.PyFloat_FromString", "PyFloat_FromString"], [25, 2, 1, "c.PyFloat_GetInfo", "PyFloat_GetInfo"], [25, 2, 1, "c.PyFloat_GetMax", "PyFloat_GetMax"], [25, 2, 1, "c.PyFloat_GetMin", "PyFloat_GetMin"], [25, 2, 1, "c.PyFloat_Pack2", "PyFloat_Pack2"], [25, 2, 1, "c.PyFloat_Pack4", "PyFloat_Pack4"], [25, 2, 1, "c.PyFloat_Pack8", "PyFloat_Pack8"], [25, 0, 1, "c.PyFloat_Type", "PyFloat_Type"], [25, 2, 1, "c.PyFloat_Unpack2", "PyFloat_Unpack2"], [25, 2, 1, "c.PyFloat_Unpack4", "PyFloat_Unpack4"], [25, 2, 1, "c.PyFloat_Unpack8", "PyFloat_Unpack8"], [26, 4, 1, "c.PyFrameObject", "PyFrameObject"], [26, 2, 1, "c.PyFrame_Check", "PyFrame_Check"], [26, 2, 1, "c.PyFrame_GetBack", "PyFrame_GetBack"], [26, 2, 1, "c.PyFrame_GetBuiltins", "PyFrame_GetBuiltins"], [26, 2, 1, "c.PyFrame_GetCode", "PyFrame_GetCode"], [26, 2, 1, "c.PyFrame_GetGenerator", "PyFrame_GetGenerator"], [26, 2, 1, "c.PyFrame_GetGlobals", "PyFrame_GetGlobals"], [26, 2, 1, "c.PyFrame_GetLasti", "PyFrame_GetLasti"], [26, 2, 1, "c.PyFrame_GetLineNumber", "PyFrame_GetLineNumber"], [26, 2, 1, "c.PyFrame_GetLocals", "PyFrame_GetLocals"], [26, 2, 1, "c.PyFrame_GetVar", "PyFrame_GetVar"], [26, 2, 1, "c.PyFrame_GetVarString", "PyFrame_GetVarString"], [26, 0, 1, "c.PyFrame_Type", "PyFrame_Type"], [55, 2, 1, "c.PyFrozenSet_Check", "PyFrozenSet_Check"], [55, 2, 1, "c.PyFrozenSet_CheckExact", "PyFrozenSet_CheckExact"], [55, 2, 1, "c.PyFrozenSet_New", "PyFrozenSet_New"], [55, 0, 1, "c.PyFrozenSet_Type", "PyFrozenSet_Type"], [27, 4, 1, "c.PyFunctionObject", "PyFunctionObject"], [27, 2, 1, "c.PyFunction_AddWatcher", "PyFunction_AddWatcher"], [27, 2, 1, "c.PyFunction_Check", "PyFunction_Check"], [27, 2, 1, "c.PyFunction_ClearWatcher", "PyFunction_ClearWatcher"], [27, 2, 1, "c.PyFunction_GetAnnotations", "PyFunction_GetAnnotations"], [27, 2, 1, "c.PyFunction_GetClosure", "PyFunction_GetClosure"], [27, 2, 1, "c.PyFunction_GetCode", "PyFunction_GetCode"], [27, 2, 1, "c.PyFunction_GetDefaults", "PyFunction_GetDefaults"], [27, 2, 1, "c.PyFunction_GetGlobals", "PyFunction_GetGlobals"], [27, 2, 1, "c.PyFunction_GetModule", "PyFunction_GetModule"], [27, 2, 1, "c.PyFunction_New", "PyFunction_New"], [27, 2, 1, "c.PyFunction_NewWithQualName", "PyFunction_NewWithQualName"], [27, 2, 1, "c.PyFunction_SetAnnotations", "PyFunction_SetAnnotations"], [27, 2, 1, "c.PyFunction_SetClosure", "PyFunction_SetClosure"], [27, 2, 1, "c.PyFunction_SetDefaults", "PyFunction_SetDefaults"], [27, 2, 1, "c.PyFunction_SetVectorcall", "PyFunction_SetVectorcall"], [27, 0, 1, "c.PyFunction_Type", "PyFunction_Type"], [27, 4, 1, "c.PyFunction_WatchCallback", "PyFunction_WatchCallback"], [27, 4, 1, "c.PyFunction_WatchEvent", "PyFunction_WatchEvent"], [28, 2, 1, "c.PyGC_Collect", "PyGC_Collect"], [28, 2, 1, "c.PyGC_Disable", "PyGC_Disable"], [28, 2, 1, "c.PyGC_Enable", "PyGC_Enable"], [28, 2, 1, "c.PyGC_IsEnabled", "PyGC_IsEnabled"], [33, 2, 1, "c.PyGILState_Check", "PyGILState_Check"], [33, 2, 1, "c.PyGILState_Ensure", "PyGILState_Ensure"], [33, 2, 1, "c.PyGILState_GetThisThreadState", "PyGILState_GetThisThreadState"], [33, 2, 1, "c.PyGILState_Release", "PyGILState_Release"], [29, 4, 1, "c.PyGenObject", "PyGenObject"], [29, 2, 1, "c.PyGen_Check", "PyGen_Check"], [29, 2, 1, "c.PyGen_CheckExact", "PyGen_CheckExact"], [29, 2, 1, "c.PyGen_New", "PyGen_New"], [29, 2, 1, "c.PyGen_NewWithQualName", "PyGen_NewWithQualName"], [29, 0, 1, "c.PyGen_Type", "PyGen_Type"], [58, 4, 1, "c.PyGetSetDef", "PyGetSetDef"], [30, 4, 1, "c.PyHash_FuncDef", "PyHash_FuncDef"], [30, 2, 1, "c.PyHash_GetFuncDef", "PyHash_GetFuncDef"], [31, 2, 1, "c.PyImport_AddModule", "PyImport_AddModule"], [31, 2, 1, "c.PyImport_AddModuleObject", "PyImport_AddModuleObject"], [31, 2, 1, "c.PyImport_AppendInittab", "PyImport_AppendInittab"], [31, 2, 1, "c.PyImport_ExecCodeModule", "PyImport_ExecCodeModule"], [31, 2, 1, "c.PyImport_ExecCodeModuleEx", "PyImport_ExecCodeModuleEx"], [31, 2, 1, "c.PyImport_ExecCodeModuleObject", "PyImport_ExecCodeModuleObject"], [31, 2, 1, "c.PyImport_ExecCodeModuleWithPathnames", "PyImport_ExecCodeModuleWithPathnames"], [31, 2, 1, "c.PyImport_ExtendInittab", "PyImport_ExtendInittab"], [31, 0, 1, "c.PyImport_FrozenModules", "PyImport_FrozenModules"], [31, 2, 1, "c.PyImport_GetImporter", "PyImport_GetImporter"], [31, 2, 1, "c.PyImport_GetMagicNumber", "PyImport_GetMagicNumber"], [31, 2, 1, "c.PyImport_GetMagicTag", "PyImport_GetMagicTag"], [31, 2, 1, "c.PyImport_GetModule", "PyImport_GetModule"], [31, 2, 1, "c.PyImport_GetModuleDict", "PyImport_GetModuleDict"], [31, 2, 1, "c.PyImport_Import", "PyImport_Import"], [31, 2, 1, "c.PyImport_ImportFrozenModule", "PyImport_ImportFrozenModule"], [31, 2, 1, "c.PyImport_ImportFrozenModuleObject", "PyImport_ImportFrozenModuleObject"], [31, 2, 1, "c.PyImport_ImportModule", "PyImport_ImportModule"], [31, 2, 1, "c.PyImport_ImportModuleEx", "PyImport_ImportModuleEx"], [31, 2, 1, "c.PyImport_ImportModuleLevel", "PyImport_ImportModuleLevel"], [31, 2, 1, "c.PyImport_ImportModuleLevelObject", "PyImport_ImportModuleLevelObject"], [31, 2, 1, "c.PyImport_ImportModuleNoBlock", "PyImport_ImportModuleNoBlock"], [31, 2, 1, "c.PyImport_ReloadModule", "PyImport_ReloadModule"], [47, 2, 1, "c.PyIndex_Check", "PyIndex_Check"], [71, 2, 1, "c.PyInit_modulename", "PyInit_modulename"], [44, 2, 1, "c.PyInstanceMethod_Check", "PyInstanceMethod_Check"], [44, 2, 1, "c.PyInstanceMethod_Function", "PyInstanceMethod_Function"], [44, 2, 1, "c.PyInstanceMethod_GET_FUNCTION", "PyInstanceMethod_GET_FUNCTION"], [44, 2, 1, "c.PyInstanceMethod_New", "PyInstanceMethod_New"], [44, 0, 1, "c.PyInstanceMethod_Type", "PyInstanceMethod_Type"], [33, 4, 1, "c.PyInterpreterConfig", "PyInterpreterConfig"], [33, 1, 1, "c.PyInterpreterConfig_DEFAULT_GIL", "PyInterpreterConfig_DEFAULT_GIL"], [33, 1, 1, "c.PyInterpreterConfig_OWN_GIL", "PyInterpreterConfig_OWN_GIL"], [33, 1, 1, "c.PyInterpreterConfig_SHARED_GIL", "PyInterpreterConfig_SHARED_GIL"], [33, 4, 1, "c.PyInterpreterState", "PyInterpreterState"], [33, 2, 1, "c.PyInterpreterState_Clear", "PyInterpreterState_Clear"], [33, 2, 1, "c.PyInterpreterState_Delete", "PyInterpreterState_Delete"], [33, 2, 1, "c.PyInterpreterState_Get", "PyInterpreterState_Get"], [33, 2, 1, "c.PyInterpreterState_GetDict", "PyInterpreterState_GetDict"], [33, 2, 1, "c.PyInterpreterState_GetID", "PyInterpreterState_GetID"], [33, 2, 1, "c.PyInterpreterState_Head", "PyInterpreterState_Head"], [33, 2, 1, "c.PyInterpreterState_Main", "PyInterpreterState_Main"], [33, 2, 1, "c.PyInterpreterState_New", "PyInterpreterState_New"], [33, 2, 1, "c.PyInterpreterState_Next", "PyInterpreterState_Next"], [33, 2, 1, "c.PyInterpreterState_ThreadHead", "PyInterpreterState_ThreadHead"], [36, 2, 1, "c.PyIter_Check", "PyIter_Check"], [36, 2, 1, "c.PyIter_Next", "PyIter_Next"], [36, 2, 1, "c.PyIter_Send", "PyIter_Send"], [38, 4, 1, "c.PyListObject", "PyListObject"], [38, 2, 1, "c.PyList_Append", "PyList_Append"], [38, 2, 1, "c.PyList_AsTuple", "PyList_AsTuple"], [38, 2, 1, "c.PyList_Check", "PyList_Check"], [38, 2, 1, "c.PyList_CheckExact", "PyList_CheckExact"], [38, 2, 1, "c.PyList_GET_ITEM", "PyList_GET_ITEM"], [38, 2, 1, "c.PyList_GET_SIZE", "PyList_GET_SIZE"], [38, 2, 1, "c.PyList_GetItem", "PyList_GetItem"], [38, 2, 1, "c.PyList_GetSlice", "PyList_GetSlice"], [38, 2, 1, "c.PyList_Insert", "PyList_Insert"], [38, 2, 1, "c.PyList_New", "PyList_New"], [38, 2, 1, "c.PyList_Reverse", "PyList_Reverse"], [38, 2, 1, "c.PyList_SET_ITEM", "PyList_SET_ITEM"], [38, 2, 1, "c.PyList_SetItem", "PyList_SetItem"], [38, 2, 1, "c.PyList_SetSlice", "PyList_SetSlice"], [38, 2, 1, "c.PyList_Size", "PyList_Size"], [38, 2, 1, "c.PyList_Sort", "PyList_Sort"], [38, 0, 1, "c.PyList_Type", "PyList_Type"], [39, 4, 1, "c.PyLongObject", "PyLongObject"], [39, 2, 1, "c.PyLong_AsDouble", "PyLong_AsDouble"], [39, 2, 1, "c.PyLong_AsLong", "PyLong_AsLong"], [39, 2, 1, "c.PyLong_AsLongAndOverflow", "PyLong_AsLongAndOverflow"], [39, 2, 1, "c.PyLong_AsLongLong", "PyLong_AsLongLong"], [39, 2, 1, "c.PyLong_AsLongLongAndOverflow", "PyLong_AsLongLongAndOverflow"], [39, 2, 1, "c.PyLong_AsSize_t", "PyLong_AsSize_t"], [39, 2, 1, "c.PyLong_AsSsize_t", "PyLong_AsSsize_t"], [39, 2, 1, "c.PyLong_AsUnsignedLong", "PyLong_AsUnsignedLong"], [39, 2, 1, "c.PyLong_AsUnsignedLongLong", "PyLong_AsUnsignedLongLong"], [39, 2, 1, "c.PyLong_AsUnsignedLongLongMask", "PyLong_AsUnsignedLongLongMask"], [39, 2, 1, "c.PyLong_AsUnsignedLongMask", "PyLong_AsUnsignedLongMask"], [39, 2, 1, "c.PyLong_AsVoidPtr", "PyLong_AsVoidPtr"], [39, 2, 1, "c.PyLong_Check", "PyLong_Check"], [39, 2, 1, "c.PyLong_CheckExact", "PyLong_CheckExact"], [39, 2, 1, "c.PyLong_FromDouble", "PyLong_FromDouble"], [39, 2, 1, "c.PyLong_FromLong", "PyLong_FromLong"], [39, 2, 1, "c.PyLong_FromLongLong", "PyLong_FromLongLong"], [39, 2, 1, "c.PyLong_FromSize_t", "PyLong_FromSize_t"], [39, 2, 1, "c.PyLong_FromSsize_t", "PyLong_FromSsize_t"], [39, 2, 1, "c.PyLong_FromString", "PyLong_FromString"], [39, 2, 1, "c.PyLong_FromUnicodeObject", "PyLong_FromUnicodeObject"], [39, 2, 1, "c.PyLong_FromUnsignedLong", "PyLong_FromUnsignedLong"], [39, 2, 1, "c.PyLong_FromUnsignedLongLong", "PyLong_FromUnsignedLongLong"], [39, 2, 1, "c.PyLong_FromVoidPtr", "PyLong_FromVoidPtr"], [39, 0, 1, "c.PyLong_Type", "PyLong_Type"], [35, 1, 1, "c.PyMODINIT_FUNC", "PyMODINIT_FUNC"], [63, 4, 1, "c.PyMappingMethods", "PyMappingMethods"], [40, 2, 1, "c.PyMapping_Check", "PyMapping_Check"], [40, 2, 1, "c.PyMapping_DelItem", "PyMapping_DelItem"], [40, 2, 1, "c.PyMapping_DelItemString", "PyMapping_DelItemString"], [40, 2, 1, "c.PyMapping_GetItemString", "PyMapping_GetItemString"], [40, 2, 1, "c.PyMapping_HasKey", "PyMapping_HasKey"], [40, 2, 1, "c.PyMapping_HasKeyString", "PyMapping_HasKeyString"], [40, 2, 1, "c.PyMapping_Items", "PyMapping_Items"], [40, 2, 1, "c.PyMapping_Keys", "PyMapping_Keys"], [40, 2, 1, "c.PyMapping_Length", "PyMapping_Length"], [40, 2, 1, "c.PyMapping_SetItemString", "PyMapping_SetItemString"], [40, 2, 1, "c.PyMapping_Size", "PyMapping_Size"], [40, 2, 1, "c.PyMapping_Values", "PyMapping_Values"], [41, 2, 1, "c.PyMarshal_ReadLastObjectFromFile", "PyMarshal_ReadLastObjectFromFile"], [41, 2, 1, "c.PyMarshal_ReadLongFromFile", "PyMarshal_ReadLongFromFile"], [41, 2, 1, "c.PyMarshal_ReadObjectFromFile", "PyMarshal_ReadObjectFromFile"], [41, 2, 1, "c.PyMarshal_ReadObjectFromString", "PyMarshal_ReadObjectFromString"], [41, 2, 1, "c.PyMarshal_ReadShortFromFile", "PyMarshal_ReadShortFromFile"], [41, 2, 1, "c.PyMarshal_WriteLongToFile", "PyMarshal_WriteLongToFile"], [41, 2, 1, "c.PyMarshal_WriteObjectToFile", "PyMarshal_WriteObjectToFile"], [41, 2, 1, "c.PyMarshal_WriteObjectToString", "PyMarshal_WriteObjectToString"], [42, 4, 1, "c.PyMemAllocatorDomain", "PyMemAllocatorDomain"], [42, 4, 1, "c.PyMemAllocatorEx", "PyMemAllocatorEx"], [42, 2, 1, "c.PyMem_Calloc", "PyMem_Calloc"], [42, 2, 1, "c.PyMem_Del", "PyMem_Del"], [42, 2, 1, "c.PyMem_Free", "PyMem_Free"], [42, 2, 1, "c.PyMem_GetAllocator", "PyMem_GetAllocator"], [42, 2, 1, "c.PyMem_Malloc", "PyMem_Malloc"], [42, 1, 1, "c.PyMem_New", "PyMem_New"], [42, 2, 1, "c.PyMem_RawCalloc", "PyMem_RawCalloc"], [42, 2, 1, "c.PyMem_RawFree", "PyMem_RawFree"], [42, 2, 1, "c.PyMem_RawMalloc", "PyMem_RawMalloc"], [42, 2, 1, "c.PyMem_RawRealloc", "PyMem_RawRealloc"], [42, 2, 1, "c.PyMem_Realloc", "PyMem_Realloc"], [42, 1, 1, "c.PyMem_Resize", "PyMem_Resize"], [42, 2, 1, "c.PyMem_SetAllocator", "PyMem_SetAllocator"], [42, 2, 1, "c.PyMem_SetupDebugHooks", "PyMem_SetupDebugHooks"], [58, 4, 1, "c.PyMemberDef", "PyMemberDef"], [58, 2, 1, "c.PyMember_GetOne", "PyMember_GetOne"], [58, 2, 1, "c.PyMember_SetOne", "PyMember_SetOne"], [43, 2, 1, "c.PyMemoryView_Check", "PyMemoryView_Check"], [43, 2, 1, "c.PyMemoryView_FromBuffer", "PyMemoryView_FromBuffer"], [43, 2, 1, "c.PyMemoryView_FromMemory", "PyMemoryView_FromMemory"], [43, 2, 1, "c.PyMemoryView_FromObject", "PyMemoryView_FromObject"], [43, 2, 1, "c.PyMemoryView_GET_BASE", "PyMemoryView_GET_BASE"], [43, 2, 1, "c.PyMemoryView_GET_BUFFER", "PyMemoryView_GET_BUFFER"], [43, 2, 1, "c.PyMemoryView_GetContiguous", "PyMemoryView_GetContiguous"], [58, 4, 1, "c.PyMethodDef", "PyMethodDef"], [44, 2, 1, "c.PyMethod_Check", "PyMethod_Check"], [44, 2, 1, "c.PyMethod_Function", "PyMethod_Function"], [44, 2, 1, "c.PyMethod_GET_FUNCTION", "PyMethod_GET_FUNCTION"], [44, 2, 1, "c.PyMethod_GET_SELF", "PyMethod_GET_SELF"], [44, 2, 1, "c.PyMethod_New", "PyMethod_New"], [44, 2, 1, "c.PyMethod_Self", "PyMethod_Self"], [44, 0, 1, "c.PyMethod_Type", "PyMethod_Type"], [45, 4, 1, "c.PyModuleDef", "PyModuleDef"], [45, 2, 1, "c.PyModuleDef_Init", "PyModuleDef_Init"], [45, 4, 1, "c.PyModuleDef_Slot", "PyModuleDef_Slot"], [45, 2, 1, "c.PyModule_AddFunctions", "PyModule_AddFunctions"], [45, 2, 1, "c.PyModule_AddIntConstant", "PyModule_AddIntConstant"], [45, 1, 1, "c.PyModule_AddIntMacro", "PyModule_AddIntMacro"], [45, 2, 1, "c.PyModule_AddObject", "PyModule_AddObject"], [45, 2, 1, "c.PyModule_AddObjectRef", "PyModule_AddObjectRef"], [45, 2, 1, "c.PyModule_AddStringConstant", "PyModule_AddStringConstant"], [45, 1, 1, "c.PyModule_AddStringMacro", "PyModule_AddStringMacro"], [45, 2, 1, "c.PyModule_AddType", "PyModule_AddType"], [45, 2, 1, "c.PyModule_Check", "PyModule_Check"], [45, 2, 1, "c.PyModule_CheckExact", "PyModule_CheckExact"], [45, 2, 1, "c.PyModule_Create", "PyModule_Create"], [45, 2, 1, "c.PyModule_Create2", "PyModule_Create2"], [45, 2, 1, "c.PyModule_ExecDef", "PyModule_ExecDef"], [45, 2, 1, "c.PyModule_FromDefAndSpec", "PyModule_FromDefAndSpec"], [45, 2, 1, "c.PyModule_FromDefAndSpec2", "PyModule_FromDefAndSpec2"], [45, 2, 1, "c.PyModule_GetDef", "PyModule_GetDef"], [45, 2, 1, "c.PyModule_GetDict", "PyModule_GetDict"], [45, 2, 1, "c.PyModule_GetFilename", "PyModule_GetFilename"], [45, 2, 1, "c.PyModule_GetFilenameObject", "PyModule_GetFilenameObject"], [45, 2, 1, "c.PyModule_GetName", "PyModule_GetName"], [45, 2, 1, "c.PyModule_GetNameObject", "PyModule_GetNameObject"], [45, 2, 1, "c.PyModule_GetState", "PyModule_GetState"], [45, 2, 1, "c.PyModule_New", "PyModule_New"], [45, 2, 1, "c.PyModule_NewObject", "PyModule_NewObject"], [45, 2, 1, "c.PyModule_SetDocString", "PyModule_SetDocString"], [45, 0, 1, "c.PyModule_Type", "PyModule_Type"], [63, 4, 1, "c.PyNumberMethods", "PyNumberMethods"], [47, 2, 1, "c.PyNumber_Absolute", "PyNumber_Absolute"], [47, 2, 1, "c.PyNumber_Add", "PyNumber_Add"], [47, 2, 1, "c.PyNumber_And", "PyNumber_And"], [47, 2, 1, "c.PyNumber_AsSsize_t", "PyNumber_AsSsize_t"], [47, 2, 1, "c.PyNumber_Check", "PyNumber_Check"], [47, 2, 1, "c.PyNumber_Divmod", "PyNumber_Divmod"], [47, 2, 1, "c.PyNumber_Float", "PyNumber_Float"], [47, 2, 1, "c.PyNumber_FloorDivide", "PyNumber_FloorDivide"], [47, 2, 1, "c.PyNumber_InPlaceAdd", "PyNumber_InPlaceAdd"], [47, 2, 1, "c.PyNumber_InPlaceAnd", "PyNumber_InPlaceAnd"], [47, 2, 1, "c.PyNumber_InPlaceFloorDivide", "PyNumber_InPlaceFloorDivide"], [47, 2, 1, "c.PyNumber_InPlaceLshift", "PyNumber_InPlaceLshift"], [47, 2, 1, "c.PyNumber_InPlaceMatrixMultiply", "PyNumber_InPlaceMatrixMultiply"], [47, 2, 1, "c.PyNumber_InPlaceMultiply", "PyNumber_InPlaceMultiply"], [47, 2, 1, "c.PyNumber_InPlaceOr", "PyNumber_InPlaceOr"], [47, 2, 1, "c.PyNumber_InPlacePower", "PyNumber_InPlacePower"], [47, 2, 1, "c.PyNumber_InPlaceRemainder", "PyNumber_InPlaceRemainder"], [47, 2, 1, "c.PyNumber_InPlaceRshift", "PyNumber_InPlaceRshift"], [47, 2, 1, "c.PyNumber_InPlaceSubtract", "PyNumber_InPlaceSubtract"], [47, 2, 1, "c.PyNumber_InPlaceTrueDivide", "PyNumber_InPlaceTrueDivide"], [47, 2, 1, "c.PyNumber_InPlaceXor", "PyNumber_InPlaceXor"], [47, 2, 1, "c.PyNumber_Index", "PyNumber_Index"], [47, 2, 1, "c.PyNumber_Invert", "PyNumber_Invert"], [47, 2, 1, "c.PyNumber_Long", "PyNumber_Long"], [47, 2, 1, "c.PyNumber_Lshift", "PyNumber_Lshift"], [47, 2, 1, "c.PyNumber_MatrixMultiply", "PyNumber_MatrixMultiply"], [47, 2, 1, "c.PyNumber_Multiply", "PyNumber_Multiply"], [47, 2, 1, "c.PyNumber_Negative", "PyNumber_Negative"], [47, 2, 1, "c.PyNumber_Or", "PyNumber_Or"], [47, 2, 1, "c.PyNumber_Positive", "PyNumber_Positive"], [47, 2, 1, "c.PyNumber_Power", "PyNumber_Power"], [47, 2, 1, "c.PyNumber_Remainder", "PyNumber_Remainder"], [47, 2, 1, "c.PyNumber_Rshift", "PyNumber_Rshift"], [47, 2, 1, "c.PyNumber_Subtract", "PyNumber_Subtract"], [47, 2, 1, "c.PyNumber_ToBase", "PyNumber_ToBase"], [47, 2, 1, "c.PyNumber_TrueDivide", "PyNumber_TrueDivide"], [47, 2, 1, "c.PyNumber_Xor", "PyNumber_Xor"], [59, 2, 1, "c.PyOS_AfterFork", "PyOS_AfterFork"], [59, 2, 1, "c.PyOS_AfterFork_Child", "PyOS_AfterFork_Child"], [59, 2, 1, "c.PyOS_AfterFork_Parent", "PyOS_AfterFork_Parent"], [59, 2, 1, "c.PyOS_BeforeFork", "PyOS_BeforeFork"], [59, 2, 1, "c.PyOS_CheckStack", "PyOS_CheckStack"], [59, 2, 1, "c.PyOS_FSPath", "PyOS_FSPath"], [66, 0, 1, "c.PyOS_InputHook", "PyOS_InputHook"], [66, 0, 1, "c.PyOS_ReadlineFunctionPointer", "PyOS_ReadlineFunctionPointer"], [18, 2, 1, "c.PyOS_double_to_string", "PyOS_double_to_string"], [59, 2, 1, "c.PyOS_getsig", "PyOS_getsig"], [59, 2, 1, "c.PyOS_setsig", "PyOS_setsig"], [59, 4, 1, "c.PyOS_sighandler_t", "PyOS_sighandler_t"], [18, 2, 1, "c.PyOS_snprintf", "PyOS_snprintf"], [18, 2, 1, "c.PyOS_stricmp", "PyOS_stricmp"], [18, 2, 1, "c.PyOS_string_to_double", "PyOS_string_to_double"], [18, 2, 1, "c.PyOS_strnicmp", "PyOS_strnicmp"], [18, 2, 1, "c.PyOS_strtol", "PyOS_strtol"], [18, 2, 1, "c.PyOS_strtoul", "PyOS_strtoul"], [18, 2, 1, "c.PyOS_vsnprintf", "PyOS_vsnprintf"], [58, 4, 1, "c.PyObject", "PyObject"], [42, 4, 1, "c.PyObjectArenaAllocator", "PyObjectArenaAllocator"], [49, 2, 1, "c.PyObject_ASCII", "PyObject_ASCII"], [48, 2, 1, "c.PyObject_AsCharBuffer", "PyObject_AsCharBuffer"], [24, 2, 1, "c.PyObject_AsFileDescriptor", "PyObject_AsFileDescriptor"], [48, 2, 1, "c.PyObject_AsReadBuffer", "PyObject_AsReadBuffer"], [48, 2, 1, "c.PyObject_AsWriteBuffer", "PyObject_AsWriteBuffer"], [49, 2, 1, "c.PyObject_Bytes", "PyObject_Bytes"], [10, 2, 1, "c.PyObject_Call", "PyObject_Call"], [10, 2, 1, "c.PyObject_CallFunction", "PyObject_CallFunction"], [10, 2, 1, "c.PyObject_CallFunctionObjArgs", "PyObject_CallFunctionObjArgs"], [10, 2, 1, "c.PyObject_CallMethod", "PyObject_CallMethod"], [10, 2, 1, "c.PyObject_CallMethodNoArgs", "PyObject_CallMethodNoArgs"], [10, 2, 1, "c.PyObject_CallMethodObjArgs", "PyObject_CallMethodObjArgs"], [10, 2, 1, "c.PyObject_CallMethodOneArg", "PyObject_CallMethodOneArg"], [10, 2, 1, "c.PyObject_CallNoArgs", "PyObject_CallNoArgs"], [10, 2, 1, "c.PyObject_CallObject", "PyObject_CallObject"], [10, 2, 1, "c.PyObject_CallOneArg", "PyObject_CallOneArg"], [42, 2, 1, "c.PyObject_Calloc", "PyObject_Calloc"], [7, 2, 1, "c.PyObject_CheckBuffer", "PyObject_CheckBuffer"], [48, 2, 1, "c.PyObject_CheckReadBuffer", "PyObject_CheckReadBuffer"], [67, 2, 1, "c.PyObject_ClearWeakRefs", "PyObject_ClearWeakRefs"], [7, 2, 1, "c.PyObject_CopyData", "PyObject_CopyData"], [3, 2, 1, "c.PyObject_Del", "PyObject_Del"], [49, 2, 1, "c.PyObject_DelAttr", "PyObject_DelAttr"], [49, 2, 1, "c.PyObject_DelAttrString", "PyObject_DelAttrString"], [49, 2, 1, "c.PyObject_DelItem", "PyObject_DelItem"], [49, 2, 1, "c.PyObject_Dir", "PyObject_Dir"], [49, 2, 1, "c.PyObject_Format", "PyObject_Format"], [42, 2, 1, "c.PyObject_Free", "PyObject_Free"], [28, 2, 1, "c.PyObject_GC_Del", "PyObject_GC_Del"], [28, 2, 1, "c.PyObject_GC_IsFinalized", "PyObject_GC_IsFinalized"], [28, 2, 1, "c.PyObject_GC_IsTracked", "PyObject_GC_IsTracked"], [28, 1, 1, "c.PyObject_GC_New", "PyObject_GC_New"], [28, 1, 1, "c.PyObject_GC_NewVar", "PyObject_GC_NewVar"], [28, 1, 1, "c.PyObject_GC_Resize", "PyObject_GC_Resize"], [28, 2, 1, "c.PyObject_GC_Track", "PyObject_GC_Track"], [28, 2, 1, "c.PyObject_GC_UnTrack", "PyObject_GC_UnTrack"], [49, 2, 1, "c.PyObject_GenericGetAttr", "PyObject_GenericGetAttr"], [49, 2, 1, "c.PyObject_GenericGetDict", "PyObject_GenericGetDict"], [49, 2, 1, "c.PyObject_GenericSetAttr", "PyObject_GenericSetAttr"], [49, 2, 1, "c.PyObject_GenericSetDict", "PyObject_GenericSetDict"], [49, 2, 1, "c.PyObject_GetAIter", "PyObject_GetAIter"], [42, 2, 1, "c.PyObject_GetArenaAllocator", "PyObject_GetArenaAllocator"], [49, 2, 1, "c.PyObject_GetAttr", "PyObject_GetAttr"], [49, 2, 1, "c.PyObject_GetAttrString", "PyObject_GetAttrString"], [7, 2, 1, "c.PyObject_GetBuffer", "PyObject_GetBuffer"], [49, 2, 1, "c.PyObject_GetItem", "PyObject_GetItem"], [49, 2, 1, "c.PyObject_GetItemData", "PyObject_GetItemData"], [49, 2, 1, "c.PyObject_GetIter", "PyObject_GetIter"], [49, 2, 1, "c.PyObject_GetTypeData", "PyObject_GetTypeData"], [58, 1, 1, "c.PyObject_HEAD", "PyObject_HEAD"], [58, 1, 1, "c.PyObject_HEAD_INIT", "PyObject_HEAD_INIT"], [49, 2, 1, "c.PyObject_HasAttr", "PyObject_HasAttr"], [49, 2, 1, "c.PyObject_HasAttrString", "PyObject_HasAttrString"], [49, 2, 1, "c.PyObject_Hash", "PyObject_Hash"], [49, 2, 1, "c.PyObject_HashNotImplemented", "PyObject_HashNotImplemented"], [28, 2, 1, "c.PyObject_IS_GC", "PyObject_IS_GC"], [3, 2, 1, "c.PyObject_Init", "PyObject_Init"], [3, 2, 1, "c.PyObject_InitVar", "PyObject_InitVar"], [49, 2, 1, "c.PyObject_IsInstance", "PyObject_IsInstance"], [49, 2, 1, "c.PyObject_IsSubclass", "PyObject_IsSubclass"], [49, 2, 1, "c.PyObject_IsTrue", "PyObject_IsTrue"], [49, 2, 1, "c.PyObject_Length", "PyObject_Length"], [49, 2, 1, "c.PyObject_LengthHint", "PyObject_LengthHint"], [42, 2, 1, "c.PyObject_Malloc", "PyObject_Malloc"], [3, 1, 1, "c.PyObject_New", "PyObject_New"], [3, 1, 1, "c.PyObject_NewVar", "PyObject_NewVar"], [49, 2, 1, "c.PyObject_Not", "PyObject_Not"], [49, 2, 1, "c.PyObject_Print", "PyObject_Print"], [42, 2, 1, "c.PyObject_Realloc", "PyObject_Realloc"], [49, 2, 1, "c.PyObject_Repr", "PyObject_Repr"], [49, 2, 1, "c.PyObject_RichCompare", "PyObject_RichCompare"], [49, 2, 1, "c.PyObject_RichCompareBool", "PyObject_RichCompareBool"], [42, 2, 1, "c.PyObject_SetArenaAllocator", "PyObject_SetArenaAllocator"], [49, 2, 1, "c.PyObject_SetAttr", "PyObject_SetAttr"], [49, 2, 1, "c.PyObject_SetAttrString", "PyObject_SetAttrString"], [49, 2, 1, "c.PyObject_SetItem", "PyObject_SetItem"], [49, 2, 1, "c.PyObject_Size", "PyObject_Size"], [49, 2, 1, "c.PyObject_Str", "PyObject_Str"], [49, 2, 1, "c.PyObject_Type", "PyObject_Type"], [49, 2, 1, "c.PyObject_TypeCheck", "PyObject_TypeCheck"], [58, 1, 1, "c.PyObject_VAR_HEAD", "PyObject_VAR_HEAD"], [10, 2, 1, "c.PyObject_Vectorcall", "PyObject_Vectorcall"], [10, 2, 1, "c.PyObject_VectorcallDict", "PyObject_VectorcallDict"], [10, 2, 1, "c.PyObject_VectorcallMethod", "PyObject_VectorcallMethod"], [34, 4, 1, "c.PyPreConfig", "PyPreConfig"], [34, 2, 1, "c.PyPreConfig_InitIsolatedConfig", "PyPreConfig_InitIsolatedConfig"], [34, 2, 1, "c.PyPreConfig_InitPythonConfig", "PyPreConfig_InitPythonConfig"], [21, 0, 1, "c.PyProperty_Type", "PyProperty_Type"], [66, 2, 1, "c.PyRun_AnyFile", "PyRun_AnyFile"], [66, 2, 1, "c.PyRun_AnyFileEx", "PyRun_AnyFileEx"], [66, 2, 1, "c.PyRun_AnyFileExFlags", "PyRun_AnyFileExFlags"], [66, 2, 1, "c.PyRun_AnyFileFlags", "PyRun_AnyFileFlags"], [66, 2, 1, "c.PyRun_File", "PyRun_File"], [66, 2, 1, "c.PyRun_FileEx", "PyRun_FileEx"], [66, 2, 1, "c.PyRun_FileExFlags", "PyRun_FileExFlags"], [66, 2, 1, "c.PyRun_FileFlags", "PyRun_FileFlags"], [66, 2, 1, "c.PyRun_InteractiveLoop", "PyRun_InteractiveLoop"], [66, 2, 1, "c.PyRun_InteractiveLoopFlags", "PyRun_InteractiveLoopFlags"], [66, 2, 1, "c.PyRun_InteractiveOne", "PyRun_InteractiveOne"], [66, 2, 1, "c.PyRun_InteractiveOneFlags", "PyRun_InteractiveOneFlags"], [66, 2, 1, "c.PyRun_SimpleFile", "PyRun_SimpleFile"], [66, 2, 1, "c.PyRun_SimpleFileEx", "PyRun_SimpleFileEx"], [66, 2, 1, "c.PyRun_SimpleFileExFlags", "PyRun_SimpleFileExFlags"], [66, 2, 1, "c.PyRun_SimpleString", "PyRun_SimpleString"], [66, 2, 1, "c.PyRun_SimpleStringFlags", "PyRun_SimpleStringFlags"], [66, 2, 1, "c.PyRun_String", "PyRun_String"], [66, 2, 1, "c.PyRun_StringFlags", "PyRun_StringFlags"], [36, 4, 1, "c.PySendResult", "PySendResult"], [37, 2, 1, "c.PySeqIter_Check", "PySeqIter_Check"], [37, 2, 1, "c.PySeqIter_New", "PySeqIter_New"], [37, 0, 1, "c.PySeqIter_Type", "PySeqIter_Type"], [63, 4, 1, "c.PySequenceMethods", "PySequenceMethods"], [54, 2, 1, "c.PySequence_Check", "PySequence_Check"], [54, 2, 1, "c.PySequence_Concat", "PySequence_Concat"], [54, 2, 1, "c.PySequence_Contains", "PySequence_Contains"], [54, 2, 1, "c.PySequence_Count", "PySequence_Count"], [54, 2, 1, "c.PySequence_DelItem", "PySequence_DelItem"], [54, 2, 1, "c.PySequence_DelSlice", "PySequence_DelSlice"], [54, 2, 1, "c.PySequence_Fast", "PySequence_Fast"], [54, 2, 1, "c.PySequence_Fast_GET_ITEM", "PySequence_Fast_GET_ITEM"], [54, 2, 1, "c.PySequence_Fast_GET_SIZE", "PySequence_Fast_GET_SIZE"], [54, 2, 1, "c.PySequence_Fast_ITEMS", "PySequence_Fast_ITEMS"], [54, 2, 1, "c.PySequence_GetItem", "PySequence_GetItem"], [54, 2, 1, "c.PySequence_GetSlice", "PySequence_GetSlice"], [54, 2, 1, "c.PySequence_ITEM", "PySequence_ITEM"], [54, 2, 1, "c.PySequence_InPlaceConcat", "PySequence_InPlaceConcat"], [54, 2, 1, "c.PySequence_InPlaceRepeat", "PySequence_InPlaceRepeat"], [54, 2, 1, "c.PySequence_Index", "PySequence_Index"], [54, 2, 1, "c.PySequence_Length", "PySequence_Length"], [54, 2, 1, "c.PySequence_List", "PySequence_List"], [54, 2, 1, "c.PySequence_Repeat", "PySequence_Repeat"], [54, 2, 1, "c.PySequence_SetItem", "PySequence_SetItem"], [54, 2, 1, "c.PySequence_SetSlice", "PySequence_SetSlice"], [54, 2, 1, "c.PySequence_Size", "PySequence_Size"], [54, 2, 1, "c.PySequence_Tuple", "PySequence_Tuple"], [55, 4, 1, "c.PySetObject", "PySetObject"], [55, 2, 1, "c.PySet_Add", "PySet_Add"], [55, 2, 1, "c.PySet_Check", "PySet_Check"], [55, 2, 1, "c.PySet_CheckExact", "PySet_CheckExact"], [55, 2, 1, "c.PySet_Clear", "PySet_Clear"], [55, 2, 1, "c.PySet_Contains", "PySet_Contains"], [55, 2, 1, "c.PySet_Discard", "PySet_Discard"], [55, 2, 1, "c.PySet_GET_SIZE", "PySet_GET_SIZE"], [55, 2, 1, "c.PySet_New", "PySet_New"], [55, 2, 1, "c.PySet_Pop", "PySet_Pop"], [55, 2, 1, "c.PySet_Size", "PySet_Size"], [55, 0, 1, "c.PySet_Type", "PySet_Type"], [23, 2, 1, "c.PySignal_SetWakeupFd", "PySignal_SetWakeupFd"], [56, 2, 1, "c.PySlice_AdjustIndices", "PySlice_AdjustIndices"], [56, 2, 1, "c.PySlice_Check", "PySlice_Check"], [56, 2, 1, "c.PySlice_GetIndices", "PySlice_GetIndices"], [56, 2, 1, "c.PySlice_GetIndicesEx", "PySlice_GetIndicesEx"], [56, 2, 1, "c.PySlice_New", "PySlice_New"], [56, 0, 1, "c.PySlice_Type", "PySlice_Type"], [56, 2, 1, "c.PySlice_Unpack", "PySlice_Unpack"], [45, 2, 1, "c.PyState_AddModule", "PyState_AddModule"], [45, 2, 1, "c.PyState_FindModule", "PyState_FindModule"], [45, 2, 1, "c.PyState_RemoveModule", "PyState_RemoveModule"], [34, 4, 1, "c.PyStatus", "PyStatus"], [34, 2, 1, "c.PyStatus_Error", "PyStatus_Error"], [34, 2, 1, "c.PyStatus_Exception", "PyStatus_Exception"], [34, 2, 1, "c.PyStatus_Exit", "PyStatus_Exit"], [34, 2, 1, "c.PyStatus_IsError", "PyStatus_IsError"], [34, 2, 1, "c.PyStatus_IsExit", "PyStatus_IsExit"], [34, 2, 1, "c.PyStatus_NoMemory", "PyStatus_NoMemory"], [34, 2, 1, "c.PyStatus_Ok", "PyStatus_Ok"], [60, 4, 1, "c.PyStructSequence_Desc", "PyStructSequence_Desc"], [60, 4, 1, "c.PyStructSequence_Field", "PyStructSequence_Field"], [60, 2, 1, "c.PyStructSequence_GET_ITEM", "PyStructSequence_GET_ITEM"], [60, 2, 1, "c.PyStructSequence_GetItem", "PyStructSequence_GetItem"], [60, 2, 1, "c.PyStructSequence_InitType", "PyStructSequence_InitType"], [60, 2, 1, "c.PyStructSequence_InitType2", "PyStructSequence_InitType2"], [60, 2, 1, "c.PyStructSequence_New", "PyStructSequence_New"], [60, 2, 1, "c.PyStructSequence_NewType", "PyStructSequence_NewType"], [60, 2, 1, "c.PyStructSequence_SET_ITEM", "PyStructSequence_SET_ITEM"], [60, 2, 1, "c.PyStructSequence_SetItem", "PyStructSequence_SetItem"], [60, 0, 1, "c.PyStructSequence_UnnamedField", "PyStructSequence_UnnamedField"], [59, 2, 1, "c.PySys_AddAuditHook", "PySys_AddAuditHook"], [59, 2, 1, "c.PySys_AddWarnOption", "PySys_AddWarnOption"], [59, 2, 1, "c.PySys_AddWarnOptionUnicode", "PySys_AddWarnOptionUnicode"], [59, 2, 1, "c.PySys_AddXOption", "PySys_AddXOption"], [59, 2, 1, "c.PySys_Audit", "PySys_Audit"], [59, 2, 1, "c.PySys_FormatStderr", "PySys_FormatStderr"], [59, 2, 1, "c.PySys_FormatStdout", "PySys_FormatStdout"], [59, 2, 1, "c.PySys_GetObject", "PySys_GetObject"], [59, 2, 1, "c.PySys_GetXOptions", "PySys_GetXOptions"], [59, 2, 1, "c.PySys_ResetWarnOptions", "PySys_ResetWarnOptions"], [33, 2, 1, "c.PySys_SetArgv", "PySys_SetArgv"], [33, 2, 1, "c.PySys_SetArgvEx", "PySys_SetArgvEx"], [59, 2, 1, "c.PySys_SetObject", "PySys_SetObject"], [59, 2, 1, "c.PySys_SetPath", "PySys_SetPath"], [59, 2, 1, "c.PySys_WriteStderr", "PySys_WriteStderr"], [59, 2, 1, "c.PySys_WriteStdout", "PySys_WriteStdout"], [20, 2, 1, "c.PyTZInfo_Check", "PyTZInfo_Check"], [20, 2, 1, "c.PyTZInfo_CheckExact", "PyTZInfo_CheckExact"], [33, 4, 1, "c.PyThreadState", "PyThreadState"], [33, 2, 1, "c.PyThreadState_Clear", "PyThreadState_Clear"], [33, 2, 1, "c.PyThreadState_Delete", "PyThreadState_Delete"], [33, 2, 1, "c.PyThreadState_DeleteCurrent", "PyThreadState_DeleteCurrent"], [33, 2, 1, "c.PyThreadState_EnterTracing", "PyThreadState_EnterTracing"], [33, 2, 1, "c.PyThreadState_Get", "PyThreadState_Get"], [33, 2, 1, "c.PyThreadState_GetDict", "PyThreadState_GetDict"], [33, 2, 1, "c.PyThreadState_GetFrame", "PyThreadState_GetFrame"], [33, 2, 1, "c.PyThreadState_GetID", "PyThreadState_GetID"], [33, 2, 1, "c.PyThreadState_GetInterpreter", "PyThreadState_GetInterpreter"], [33, 2, 1, "c.PyThreadState_LeaveTracing", "PyThreadState_LeaveTracing"], [33, 2, 1, "c.PyThreadState_New", "PyThreadState_New"], [33, 2, 1, "c.PyThreadState_Next", "PyThreadState_Next"], [33, 2, 1, "c.PyThreadState_SetAsyncExc", "PyThreadState_SetAsyncExc"], [33, 2, 1, "c.PyThreadState_Swap", "PyThreadState_Swap"], [33, 2, 1, "c.PyThread_ReInitTLS", "PyThread_ReInitTLS"], [33, 2, 1, "c.PyThread_create_key", "PyThread_create_key"], [33, 2, 1, "c.PyThread_delete_key", "PyThread_delete_key"], [33, 2, 1, "c.PyThread_delete_key_value", "PyThread_delete_key_value"], [33, 2, 1, "c.PyThread_get_key_value", "PyThread_get_key_value"], [33, 2, 1, "c.PyThread_set_key_value", "PyThread_set_key_value"], [33, 2, 1, "c.PyThread_tss_alloc", "PyThread_tss_alloc"], [33, 2, 1, "c.PyThread_tss_create", "PyThread_tss_create"], [33, 2, 1, "c.PyThread_tss_delete", "PyThread_tss_delete"], [33, 2, 1, "c.PyThread_tss_free", "PyThread_tss_free"], [33, 2, 1, "c.PyThread_tss_get", "PyThread_tss_get"], [33, 2, 1, "c.PyThread_tss_is_created", "PyThread_tss_is_created"], [33, 2, 1, "c.PyThread_tss_set", "PyThread_tss_set"], [20, 2, 1, "c.PyTimeZone_FromOffset", "PyTimeZone_FromOffset"], [20, 2, 1, "c.PyTimeZone_FromOffsetAndName", "PyTimeZone_FromOffsetAndName"], [20, 2, 1, "c.PyTime_Check", "PyTime_Check"], [20, 2, 1, "c.PyTime_CheckExact", "PyTime_CheckExact"], [20, 2, 1, "c.PyTime_FromTime", "PyTime_FromTime"], [20, 2, 1, "c.PyTime_FromTimeAndFold", "PyTime_FromTimeAndFold"], [42, 2, 1, "c.PyTraceMalloc_Track", "PyTraceMalloc_Track"], [42, 2, 1, "c.PyTraceMalloc_Untrack", "PyTraceMalloc_Untrack"], [33, 0, 1, "c.PyTrace_CALL", "PyTrace_CALL"], [33, 0, 1, "c.PyTrace_C_CALL", "PyTrace_C_CALL"], [33, 0, 1, "c.PyTrace_C_EXCEPTION", "PyTrace_C_EXCEPTION"], [33, 0, 1, "c.PyTrace_C_RETURN", "PyTrace_C_RETURN"], [33, 0, 1, "c.PyTrace_EXCEPTION", "PyTrace_EXCEPTION"], [33, 0, 1, "c.PyTrace_LINE", "PyTrace_LINE"], [33, 0, 1, "c.PyTrace_OPCODE", "PyTrace_OPCODE"], [33, 0, 1, "c.PyTrace_RETURN", "PyTrace_RETURN"], [60, 4, 1, "c.PyTupleObject", "PyTupleObject"], [60, 2, 1, "c.PyTuple_Check", "PyTuple_Check"], [60, 2, 1, "c.PyTuple_CheckExact", "PyTuple_CheckExact"], [60, 2, 1, "c.PyTuple_GET_ITEM", "PyTuple_GET_ITEM"], [60, 2, 1, "c.PyTuple_GET_SIZE", "PyTuple_GET_SIZE"], [60, 2, 1, "c.PyTuple_GetItem", "PyTuple_GetItem"], [60, 2, 1, "c.PyTuple_GetSlice", "PyTuple_GetSlice"], [60, 2, 1, "c.PyTuple_New", "PyTuple_New"], [60, 2, 1, "c.PyTuple_Pack", "PyTuple_Pack"], [60, 2, 1, "c.PyTuple_SET_ITEM", "PyTuple_SET_ITEM"], [60, 2, 1, "c.PyTuple_SetItem", "PyTuple_SetItem"], [60, 2, 1, "c.PyTuple_Size", "PyTuple_Size"], [60, 0, 1, "c.PyTuple_Type", "PyTuple_Type"], [61, 4, 1, "c.PyTypeObject", "PyTypeObject"], [61, 2, 1, "c.PyType_AddWatcher", "PyType_AddWatcher"], [61, 2, 1, "c.PyType_Check", "PyType_Check"], [61, 2, 1, "c.PyType_CheckExact", "PyType_CheckExact"], [61, 2, 1, "c.PyType_ClearCache", "PyType_ClearCache"], [61, 2, 1, "c.PyType_ClearWatcher", "PyType_ClearWatcher"], [61, 2, 1, "c.PyType_FromMetaclass", "PyType_FromMetaclass"], [61, 2, 1, "c.PyType_FromModuleAndSpec", "PyType_FromModuleAndSpec"], [61, 2, 1, "c.PyType_FromSpec", "PyType_FromSpec"], [61, 2, 1, "c.PyType_FromSpecWithBases", "PyType_FromSpecWithBases"], [61, 2, 1, "c.PyType_GenericAlloc", "PyType_GenericAlloc"], [61, 2, 1, "c.PyType_GenericNew", "PyType_GenericNew"], [61, 2, 1, "c.PyType_GetDict", "PyType_GetDict"], [61, 2, 1, "c.PyType_GetFlags", "PyType_GetFlags"], [61, 2, 1, "c.PyType_GetModule", "PyType_GetModule"], [61, 2, 1, "c.PyType_GetModuleByDef", "PyType_GetModuleByDef"], [61, 2, 1, "c.PyType_GetModuleState", "PyType_GetModuleState"], [61, 2, 1, "c.PyType_GetName", "PyType_GetName"], [61, 2, 1, "c.PyType_GetQualName", "PyType_GetQualName"], [61, 2, 1, "c.PyType_GetSlot", "PyType_GetSlot"], [49, 2, 1, "c.PyType_GetTypeDataSize", "PyType_GetTypeDataSize"], [61, 2, 1, "c.PyType_HasFeature", "PyType_HasFeature"], [61, 2, 1, "c.PyType_IS_GC", "PyType_IS_GC"], [61, 2, 1, "c.PyType_IsSubtype", "PyType_IsSubtype"], [61, 2, 1, "c.PyType_Modified", "PyType_Modified"], [61, 2, 1, "c.PyType_Ready", "PyType_Ready"], [61, 4, 1, "c.PyType_Slot", "PyType_Slot"], [61, 4, 1, "c.PyType_Spec", "PyType_Spec"], [61, 0, 1, "c.PyType_Type", "PyType_Type"], [61, 2, 1, "c.PyType_Watch", "PyType_Watch"], [61, 4, 1, "c.PyType_WatchCallback", "PyType_WatchCallback"], [23, 2, 1, "c.PyUnicodeDecodeError_Create", "PyUnicodeDecodeError_Create"], [23, 2, 1, "c.PyUnicodeDecodeError_GetEncoding", "PyUnicodeDecodeError_GetEncoding"], [23, 2, 1, "c.PyUnicodeDecodeError_GetEnd", "PyUnicodeDecodeError_GetEnd"], [23, 2, 1, "c.PyUnicodeDecodeError_GetObject", "PyUnicodeDecodeError_GetObject"], [23, 2, 1, "c.PyUnicodeDecodeError_GetReason", "PyUnicodeDecodeError_GetReason"], [23, 2, 1, "c.PyUnicodeDecodeError_GetStart", "PyUnicodeDecodeError_GetStart"], [23, 2, 1, "c.PyUnicodeDecodeError_SetEnd", "PyUnicodeDecodeError_SetEnd"], [23, 2, 1, "c.PyUnicodeDecodeError_SetReason", "PyUnicodeDecodeError_SetReason"], [23, 2, 1, "c.PyUnicodeDecodeError_SetStart", "PyUnicodeDecodeError_SetStart"], [23, 2, 1, "c.PyUnicodeEncodeError_GetEncoding", "PyUnicodeEncodeError_GetEncoding"], [23, 2, 1, "c.PyUnicodeEncodeError_GetEnd", "PyUnicodeEncodeError_GetEnd"], [23, 2, 1, "c.PyUnicodeEncodeError_GetObject", "PyUnicodeEncodeError_GetObject"], [23, 2, 1, "c.PyUnicodeEncodeError_GetReason", "PyUnicodeEncodeError_GetReason"], [23, 2, 1, "c.PyUnicodeEncodeError_GetStart", "PyUnicodeEncodeError_GetStart"], [23, 2, 1, "c.PyUnicodeEncodeError_SetEnd", "PyUnicodeEncodeError_SetEnd"], [23, 2, 1, "c.PyUnicodeEncodeError_SetReason", "PyUnicodeEncodeError_SetReason"], [23, 2, 1, "c.PyUnicodeEncodeError_SetStart", "PyUnicodeEncodeError_SetStart"], [64, 4, 1, "c.PyUnicodeObject", "PyUnicodeObject"], [23, 2, 1, "c.PyUnicodeTranslateError_GetEnd", "PyUnicodeTranslateError_GetEnd"], [23, 2, 1, "c.PyUnicodeTranslateError_GetObject", "PyUnicodeTranslateError_GetObject"], [23, 2, 1, "c.PyUnicodeTranslateError_GetReason", "PyUnicodeTranslateError_GetReason"], [23, 2, 1, "c.PyUnicodeTranslateError_GetStart", "PyUnicodeTranslateError_GetStart"], [23, 2, 1, "c.PyUnicodeTranslateError_SetEnd", "PyUnicodeTranslateError_SetEnd"], [23, 2, 1, "c.PyUnicodeTranslateError_SetReason", "PyUnicodeTranslateError_SetReason"], [23, 2, 1, "c.PyUnicodeTranslateError_SetStart", "PyUnicodeTranslateError_SetStart"], [64, 2, 1, "c.PyUnicode_1BYTE_DATA", "PyUnicode_1BYTE_DATA"], [64, 1, 1, "c.PyUnicode_1BYTE_KIND", "PyUnicode_1BYTE_KIND"], [64, 2, 1, "c.PyUnicode_2BYTE_DATA", "PyUnicode_2BYTE_DATA"], [64, 1, 1, "c.PyUnicode_2BYTE_KIND", "PyUnicode_2BYTE_KIND"], [64, 2, 1, "c.PyUnicode_4BYTE_DATA", "PyUnicode_4BYTE_DATA"], [64, 1, 1, "c.PyUnicode_4BYTE_KIND", "PyUnicode_4BYTE_KIND"], [64, 2, 1, "c.PyUnicode_AsASCIIString", "PyUnicode_AsASCIIString"], [64, 2, 1, "c.PyUnicode_AsCharmapString", "PyUnicode_AsCharmapString"], [64, 2, 1, "c.PyUnicode_AsEncodedString", "PyUnicode_AsEncodedString"], [64, 2, 1, "c.PyUnicode_AsLatin1String", "PyUnicode_AsLatin1String"], [64, 2, 1, "c.PyUnicode_AsMBCSString", "PyUnicode_AsMBCSString"], [64, 2, 1, "c.PyUnicode_AsRawUnicodeEscapeString", "PyUnicode_AsRawUnicodeEscapeString"], [64, 2, 1, "c.PyUnicode_AsUCS4", "PyUnicode_AsUCS4"], [64, 2, 1, "c.PyUnicode_AsUCS4Copy", "PyUnicode_AsUCS4Copy"], [64, 2, 1, "c.PyUnicode_AsUTF16String", "PyUnicode_AsUTF16String"], [64, 2, 1, "c.PyUnicode_AsUTF32String", "PyUnicode_AsUTF32String"], [64, 2, 1, "c.PyUnicode_AsUTF8", "PyUnicode_AsUTF8"], [64, 2, 1, "c.PyUnicode_AsUTF8AndSize", "PyUnicode_AsUTF8AndSize"], [64, 2, 1, "c.PyUnicode_AsUTF8String", "PyUnicode_AsUTF8String"], [64, 2, 1, "c.PyUnicode_AsUnicodeEscapeString", "PyUnicode_AsUnicodeEscapeString"], [64, 2, 1, "c.PyUnicode_AsWideChar", "PyUnicode_AsWideChar"], [64, 2, 1, "c.PyUnicode_AsWideCharString", "PyUnicode_AsWideCharString"], [64, 2, 1, "c.PyUnicode_Check", "PyUnicode_Check"], [64, 2, 1, "c.PyUnicode_CheckExact", "PyUnicode_CheckExact"], [64, 2, 1, "c.PyUnicode_Compare", "PyUnicode_Compare"], [64, 2, 1, "c.PyUnicode_CompareWithASCIIString", "PyUnicode_CompareWithASCIIString"], [64, 2, 1, "c.PyUnicode_Concat", "PyUnicode_Concat"], [64, 2, 1, "c.PyUnicode_Contains", "PyUnicode_Contains"], [64, 2, 1, "c.PyUnicode_CopyCharacters", "PyUnicode_CopyCharacters"], [64, 2, 1, "c.PyUnicode_Count", "PyUnicode_Count"], [64, 2, 1, "c.PyUnicode_DATA", "PyUnicode_DATA"], [64, 2, 1, "c.PyUnicode_Decode", "PyUnicode_Decode"], [64, 2, 1, "c.PyUnicode_DecodeASCII", "PyUnicode_DecodeASCII"], [64, 2, 1, "c.PyUnicode_DecodeCharmap", "PyUnicode_DecodeCharmap"], [64, 2, 1, "c.PyUnicode_DecodeFSDefault", "PyUnicode_DecodeFSDefault"], [64, 2, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "PyUnicode_DecodeFSDefaultAndSize"], [64, 2, 1, "c.PyUnicode_DecodeLatin1", "PyUnicode_DecodeLatin1"], [64, 2, 1, "c.PyUnicode_DecodeLocale", "PyUnicode_DecodeLocale"], [64, 2, 1, "c.PyUnicode_DecodeLocaleAndSize", "PyUnicode_DecodeLocaleAndSize"], [64, 2, 1, "c.PyUnicode_DecodeMBCS", "PyUnicode_DecodeMBCS"], [64, 2, 1, "c.PyUnicode_DecodeMBCSStateful", "PyUnicode_DecodeMBCSStateful"], [64, 2, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "PyUnicode_DecodeRawUnicodeEscape"], [64, 2, 1, "c.PyUnicode_DecodeUTF16", "PyUnicode_DecodeUTF16"], [64, 2, 1, "c.PyUnicode_DecodeUTF16Stateful", "PyUnicode_DecodeUTF16Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF32", "PyUnicode_DecodeUTF32"], [64, 2, 1, "c.PyUnicode_DecodeUTF32Stateful", "PyUnicode_DecodeUTF32Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF7", "PyUnicode_DecodeUTF7"], [64, 2, 1, "c.PyUnicode_DecodeUTF7Stateful", "PyUnicode_DecodeUTF7Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUTF8", "PyUnicode_DecodeUTF8"], [64, 2, 1, "c.PyUnicode_DecodeUTF8Stateful", "PyUnicode_DecodeUTF8Stateful"], [64, 2, 1, "c.PyUnicode_DecodeUnicodeEscape", "PyUnicode_DecodeUnicodeEscape"], [64, 2, 1, "c.PyUnicode_EncodeCodePage", "PyUnicode_EncodeCodePage"], [64, 2, 1, "c.PyUnicode_EncodeFSDefault", "PyUnicode_EncodeFSDefault"], [64, 2, 1, "c.PyUnicode_EncodeLocale", "PyUnicode_EncodeLocale"], [64, 2, 1, "c.PyUnicode_FSConverter", "PyUnicode_FSConverter"], [64, 2, 1, "c.PyUnicode_FSDecoder", "PyUnicode_FSDecoder"], [64, 2, 1, "c.PyUnicode_Fill", "PyUnicode_Fill"], [64, 2, 1, "c.PyUnicode_Find", "PyUnicode_Find"], [64, 2, 1, "c.PyUnicode_FindChar", "PyUnicode_FindChar"], [64, 2, 1, "c.PyUnicode_Format", "PyUnicode_Format"], [64, 2, 1, "c.PyUnicode_FromEncodedObject", "PyUnicode_FromEncodedObject"], [64, 2, 1, "c.PyUnicode_FromFormat", "PyUnicode_FromFormat"], [64, 2, 1, "c.PyUnicode_FromFormatV", "PyUnicode_FromFormatV"], [64, 2, 1, "c.PyUnicode_FromKindAndData", "PyUnicode_FromKindAndData"], [64, 2, 1, "c.PyUnicode_FromObject", "PyUnicode_FromObject"], [64, 2, 1, "c.PyUnicode_FromString", "PyUnicode_FromString"], [64, 2, 1, "c.PyUnicode_FromStringAndSize", "PyUnicode_FromStringAndSize"], [64, 2, 1, "c.PyUnicode_FromWideChar", "PyUnicode_FromWideChar"], [64, 2, 1, "c.PyUnicode_GET_LENGTH", "PyUnicode_GET_LENGTH"], [64, 2, 1, "c.PyUnicode_GetLength", "PyUnicode_GetLength"], [64, 2, 1, "c.PyUnicode_InternFromString", "PyUnicode_InternFromString"], [64, 2, 1, "c.PyUnicode_InternInPlace", "PyUnicode_InternInPlace"], [64, 2, 1, "c.PyUnicode_IsIdentifier", "PyUnicode_IsIdentifier"], [64, 2, 1, "c.PyUnicode_Join", "PyUnicode_Join"], [64, 2, 1, "c.PyUnicode_KIND", "PyUnicode_KIND"], [64, 2, 1, "c.PyUnicode_MAX_CHAR_VALUE", "PyUnicode_MAX_CHAR_VALUE"], [64, 2, 1, "c.PyUnicode_New", "PyUnicode_New"], [64, 2, 1, "c.PyUnicode_READ", "PyUnicode_READ"], [64, 2, 1, "c.PyUnicode_READY", "PyUnicode_READY"], [64, 2, 1, "c.PyUnicode_READ_CHAR", "PyUnicode_READ_CHAR"], [64, 2, 1, "c.PyUnicode_ReadChar", "PyUnicode_ReadChar"], [64, 2, 1, "c.PyUnicode_Replace", "PyUnicode_Replace"], [64, 2, 1, "c.PyUnicode_RichCompare", "PyUnicode_RichCompare"], [64, 2, 1, "c.PyUnicode_Split", "PyUnicode_Split"], [64, 2, 1, "c.PyUnicode_Splitlines", "PyUnicode_Splitlines"], [64, 2, 1, "c.PyUnicode_Substring", "PyUnicode_Substring"], [64, 2, 1, "c.PyUnicode_Tailmatch", "PyUnicode_Tailmatch"], [64, 2, 1, "c.PyUnicode_Translate", "PyUnicode_Translate"], [64, 0, 1, "c.PyUnicode_Type", "PyUnicode_Type"], [64, 2, 1, "c.PyUnicode_WRITE", "PyUnicode_WRITE"], [64, 2, 1, "c.PyUnicode_WriteChar", "PyUnicode_WriteChar"], [13, 2, 1, "c.PyUnstable_Code_GetExtra", "PyUnstable_Code_GetExtra"], [13, 2, 1, "c.PyUnstable_Code_New", "PyUnstable_Code_New"], [13, 2, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "PyUnstable_Code_NewWithPosOnlyArgs"], [13, 2, 1, "c.PyUnstable_Code_SetExtra", "PyUnstable_Code_SetExtra"], [13, 2, 1, "c.PyUnstable_Eval_RequestCodeExtraIndex", "PyUnstable_Eval_RequestCodeExtraIndex"], [23, 2, 1, "c.PyUnstable_Exc_PrepReraiseStar", "PyUnstable_Exc_PrepReraiseStar"], [28, 2, 1, "c.PyUnstable_GC_VisitObjects", "PyUnstable_GC_VisitObjects"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetCode", "PyUnstable_InterpreterFrame_GetCode"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetLasti", "PyUnstable_InterpreterFrame_GetLasti"], [26, 2, 1, "c.PyUnstable_InterpreterFrame_GetLine", "PyUnstable_InterpreterFrame_GetLine"], [39, 2, 1, "c.PyUnstable_Long_CompactValue", "PyUnstable_Long_CompactValue"], [39, 2, 1, "c.PyUnstable_Long_IsCompact", "PyUnstable_Long_IsCompact"], [28, 2, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "PyUnstable_Object_GC_NewWithExtraData"], [51, 2, 1, "c.PyUnstable_PerfMapState_Fini", "PyUnstable_PerfMapState_Fini"], [51, 2, 1, "c.PyUnstable_PerfMapState_Init", "PyUnstable_PerfMapState_Init"], [61, 2, 1, "c.PyUnstable_Type_AssignVersionTag", "PyUnstable_Type_AssignVersionTag"], [51, 2, 1, "c.PyUnstable_WritePerfMapEntry", "PyUnstable_WritePerfMapEntry"], [58, 4, 1, "c.PyVarObject", "PyVarObject"], [58, 1, 1, "c.PyVarObject_HEAD_INIT", "PyVarObject_HEAD_INIT"], [10, 2, 1, "c.PyVectorcall_Call", "PyVectorcall_Call"], [10, 2, 1, "c.PyVectorcall_Function", "PyVectorcall_Function"], [10, 2, 1, "c.PyVectorcall_NARGS", "PyVectorcall_NARGS"], [67, 2, 1, "c.PyWeakref_Check", "PyWeakref_Check"], [67, 2, 1, "c.PyWeakref_CheckProxy", "PyWeakref_CheckProxy"], [67, 2, 1, "c.PyWeakref_CheckRef", "PyWeakref_CheckRef"], [67, 2, 1, "c.PyWeakref_GET_OBJECT", "PyWeakref_GET_OBJECT"], [67, 2, 1, "c.PyWeakref_GetObject", "PyWeakref_GetObject"], [67, 2, 1, "c.PyWeakref_NewProxy", "PyWeakref_NewProxy"], [67, 2, 1, "c.PyWeakref_NewRef", "PyWeakref_NewRef"], [34, 4, 1, "c.PyWideStringList", "PyWideStringList"], [34, 2, 1, "c.PyWideStringList_Append", "PyWideStringList_Append"], [34, 2, 1, "c.PyWideStringList_Insert", "PyWideStringList_Insert"], [21, 2, 1, "c.PyWrapper_New", "PyWrapper_New"], [35, 1, 1, "c.Py_ABS", "Py_ABS"], [35, 1, 1, "c.Py_ALWAYS_INLINE", "Py_ALWAYS_INLINE"], [58, 1, 1, "c.Py_AUDIT_READ", "Py_AUDIT_READ"], [33, 2, 1, "c.Py_AddPendingCall", "Py_AddPendingCall"], [59, 2, 1, "c.Py_AtExit", "Py_AtExit"], [59, 4, 1, "c.Py_AuditHookFunction", "Py_AuditHookFunction"], [33, 1, 1, "c.Py_BEGIN_ALLOW_THREADS", "Py_BEGIN_ALLOW_THREADS"], [33, 1, 1, "c.Py_BLOCK_THREADS", "Py_BLOCK_THREADS"], [5, 2, 1, "c.Py_BuildValue", "Py_BuildValue"], [66, 2, 1, "c.Py_BytesMain", "Py_BytesMain"], [33, 0, 1, "c.Py_BytesWarningFlag", "Py_BytesWarningFlag"], [35, 1, 1, "c.Py_CHARMASK", "Py_CHARMASK"], [52, 2, 1, "c.Py_CLEAR", "Py_CLEAR"], [66, 2, 1, "c.Py_CompileString", "Py_CompileString"], [66, 2, 1, "c.Py_CompileStringExFlags", "Py_CompileStringExFlags"], [66, 2, 1, "c.Py_CompileStringFlags", "Py_CompileStringFlags"], [66, 2, 1, "c.Py_CompileStringObject", "Py_CompileStringObject"], [35, 1, 1, "c.Py_DEBUG", "Py_DEBUG"], [52, 2, 1, "c.Py_DECREF", "Py_DECREF"], [35, 1, 1, "c.Py_DEPRECATED", "Py_DEPRECATED"], [33, 0, 1, "c.Py_DebugFlag", "Py_DebugFlag"], [52, 2, 1, "c.Py_DecRef", "Py_DecRef"], [59, 2, 1, "c.Py_DecodeLocale", "Py_DecodeLocale"], [33, 0, 1, "c.Py_DontWriteBytecodeFlag", "Py_DontWriteBytecodeFlag"], [33, 1, 1, "c.Py_END_ALLOW_THREADS", "Py_END_ALLOW_THREADS"], [63, 1, 1, "c.Py_EQ", "Py_EQ"], [56, 0, 1, "c.Py_Ellipsis", "Py_Ellipsis"], [59, 2, 1, "c.Py_EncodeLocale", "Py_EncodeLocale"], [33, 2, 1, "c.Py_EndInterpreter", "Py_EndInterpreter"], [23, 2, 1, "c.Py_EnterRecursiveCall", "Py_EnterRecursiveCall"], [59, 2, 1, "c.Py_Exit", "Py_Exit"], [34, 2, 1, "c.Py_ExitStatusException", "Py_ExitStatusException"], [6, 0, 1, "c.Py_False", "Py_False"], [59, 2, 1, "c.Py_FatalError", "Py_FatalError"], [59, 2, 1, "c.Py_FdIsInteractive", "Py_FdIsInteractive"], [33, 2, 1, "c.Py_Finalize", "Py_Finalize"], [33, 2, 1, "c.Py_FinalizeEx", "Py_FinalizeEx"], [33, 0, 1, "c.Py_FrozenFlag", "Py_FrozenFlag"], [63, 1, 1, "c.Py_GE", "Py_GE"], [35, 1, 1, "c.Py_GETENV", "Py_GETENV"], [63, 1, 1, "c.Py_GT", "Py_GT"], [62, 2, 1, "c.Py_GenericAlias", "Py_GenericAlias"], [62, 0, 1, "c.Py_GenericAliasType", "Py_GenericAliasType"], [34, 2, 1, "c.Py_GetArgcArgv", "Py_GetArgcArgv"], [33, 2, 1, "c.Py_GetBuildInfo", "Py_GetBuildInfo"], [33, 2, 1, "c.Py_GetCompiler", "Py_GetCompiler"], [33, 2, 1, "c.Py_GetCopyright", "Py_GetCopyright"], [33, 2, 1, "c.Py_GetExecPrefix", "Py_GetExecPrefix"], [33, 2, 1, "c.Py_GetPath", "Py_GetPath"], [33, 2, 1, "c.Py_GetPlatform", "Py_GetPlatform"], [33, 2, 1, "c.Py_GetPrefix", "Py_GetPrefix"], [33, 2, 1, "c.Py_GetProgramFullPath", "Py_GetProgramFullPath"], [33, 2, 1, "c.Py_GetProgramName", "Py_GetProgramName"], [33, 2, 1, "c.Py_GetPythonHome", "Py_GetPythonHome"], [33, 2, 1, "c.Py_GetVersion", "Py_GetVersion"], [33, 0, 1, "c.Py_HashRandomizationFlag", "Py_HashRandomizationFlag"], [52, 2, 1, "c.Py_INCREF", "Py_INCREF"], [58, 2, 1, "c.Py_IS_TYPE", "Py_IS_TYPE"], [33, 0, 1, "c.Py_IgnoreEnvironmentFlag", "Py_IgnoreEnvironmentFlag"], [52, 2, 1, "c.Py_IncRef", "Py_IncRef"], [33, 2, 1, "c.Py_Initialize", "Py_Initialize"], [33, 2, 1, "c.Py_InitializeEx", "Py_InitializeEx"], [34, 2, 1, "c.Py_InitializeFromConfig", "Py_InitializeFromConfig"], [33, 0, 1, "c.Py_InspectFlag", "Py_InspectFlag"], [33, 0, 1, "c.Py_InteractiveFlag", "Py_InteractiveFlag"], [58, 2, 1, "c.Py_Is", "Py_Is"], [58, 2, 1, "c.Py_IsFalse", "Py_IsFalse"], [33, 2, 1, "c.Py_IsInitialized", "Py_IsInitialized"], [58, 2, 1, "c.Py_IsNone", "Py_IsNone"], [58, 2, 1, "c.Py_IsTrue", "Py_IsTrue"], [33, 0, 1, "c.Py_IsolatedFlag", "Py_IsolatedFlag"], [63, 1, 1, "c.Py_LE", "Py_LE"], [57, 1, 1, "c.Py_LIMITED_API", "Py_LIMITED_API"], [63, 1, 1, "c.Py_LT", "Py_LT"], [23, 2, 1, "c.Py_LeaveRecursiveCall", "Py_LeaveRecursiveCall"], [33, 0, 1, "c.Py_LegacyWindowsFSEncodingFlag", "Py_LegacyWindowsFSEncodingFlag"], [33, 0, 1, "c.Py_LegacyWindowsStdioFlag", "Py_LegacyWindowsStdioFlag"], [35, 1, 1, "c.Py_MAX", "Py_MAX"], [35, 1, 1, "c.Py_MEMBER_SIZE", "Py_MEMBER_SIZE"], [35, 1, 1, "c.Py_MIN", "Py_MIN"], [45, 1, 1, "c.Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED", "Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED"], [45, 1, 1, "c.Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED", "Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED"], [45, 1, 1, "c.Py_MOD_PER_INTERPRETER_GIL_SUPPORTED", "Py_MOD_PER_INTERPRETER_GIL_SUPPORTED"], [66, 2, 1, "c.Py_Main", "Py_Main"], [63, 1, 1, "c.Py_NE", "Py_NE"], [35, 1, 1, "c.Py_NO_INLINE", "Py_NO_INLINE"], [33, 2, 1, "c.Py_NewInterpreter", "Py_NewInterpreter"], [33, 2, 1, "c.Py_NewInterpreterFromConfig", "Py_NewInterpreterFromConfig"], [52, 2, 1, "c.Py_NewRef", "Py_NewRef"], [33, 0, 1, "c.Py_NoSiteFlag", "Py_NoSiteFlag"], [33, 0, 1, "c.Py_NoUserSiteDirectory", "Py_NoUserSiteDirectory"], [46, 0, 1, "c.Py_None", "Py_None"], [49, 0, 1, "c.Py_NotImplemented", "Py_NotImplemented"], [33, 0, 1, "c.Py_OptimizeFlag", "Py_OptimizeFlag"], [49, 1, 1, "c.Py_PRINT_RAW", "Py_PRINT_RAW"], [34, 2, 1, "c.Py_PreInitialize", "Py_PreInitialize"], [34, 2, 1, "c.Py_PreInitializeFromArgs", "Py_PreInitializeFromArgs"], [34, 2, 1, "c.Py_PreInitializeFromBytesArgs", "Py_PreInitializeFromBytesArgs"], [33, 0, 1, "c.Py_QuietFlag", "Py_QuietFlag"], [58, 1, 1, "c.Py_READONLY", "Py_READONLY"], [52, 2, 1, "c.Py_REFCNT", "Py_REFCNT"], [58, 1, 1, "c.Py_RELATIVE_OFFSET", "Py_RELATIVE_OFFSET"], [6, 1, 1, "c.Py_RETURN_FALSE", "Py_RETURN_FALSE"], [46, 1, 1, "c.Py_RETURN_NONE", "Py_RETURN_NONE"], [49, 1, 1, "c.Py_RETURN_NOTIMPLEMENTED", "Py_RETURN_NOTIMPLEMENTED"], [63, 1, 1, "c.Py_RETURN_RICHCOMPARE", "Py_RETURN_RICHCOMPARE"], [6, 1, 1, "c.Py_RETURN_TRUE", "Py_RETURN_TRUE"], [23, 2, 1, "c.Py_ReprEnter", "Py_ReprEnter"], [23, 2, 1, "c.Py_ReprLeave", "Py_ReprLeave"], [34, 2, 1, "c.Py_RunMain", "Py_RunMain"], [52, 1, 1, "c.Py_SETREF", "Py_SETREF"], [52, 2, 1, "c.Py_SET_REFCNT", "Py_SET_REFCNT"], [58, 2, 1, "c.Py_SET_SIZE", "Py_SET_SIZE"], [58, 2, 1, "c.Py_SET_TYPE", "Py_SET_TYPE"], [58, 2, 1, "c.Py_SIZE", "Py_SIZE"], [35, 1, 1, "c.Py_STRINGIFY", "Py_STRINGIFY"], [33, 2, 1, "c.Py_SetPath", "Py_SetPath"], [33, 2, 1, "c.Py_SetProgramName", "Py_SetProgramName"], [33, 2, 1, "c.Py_SetPythonHome", "Py_SetPythonHome"], [33, 2, 1, "c.Py_SetStandardStreamEncoding", "Py_SetStandardStreamEncoding"], [63, 1, 1, "c.Py_TPFLAGS_BASETYPE", "Py_TPFLAGS_BASETYPE"], [63, 1, 1, "c.Py_TPFLAGS_BASE_EXC_SUBCLASS", "Py_TPFLAGS_BASE_EXC_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_BYTES_SUBCLASS", "Py_TPFLAGS_BYTES_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_DEFAULT", "Py_TPFLAGS_DEFAULT"], [63, 1, 1, "c.Py_TPFLAGS_DICT_SUBCLASS", "Py_TPFLAGS_DICT_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_DISALLOW_INSTANTIATION", "Py_TPFLAGS_DISALLOW_INSTANTIATION"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_FINALIZE", "Py_TPFLAGS_HAVE_FINALIZE"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_GC", "Py_TPFLAGS_HAVE_GC"], [63, 1, 1, "c.Py_TPFLAGS_HAVE_VECTORCALL", "Py_TPFLAGS_HAVE_VECTORCALL"], [63, 1, 1, "c.Py_TPFLAGS_HEAPTYPE", "Py_TPFLAGS_HEAPTYPE"], [63, 1, 1, "c.Py_TPFLAGS_IMMUTABLETYPE", "Py_TPFLAGS_IMMUTABLETYPE"], [63, 1, 1, "c.Py_TPFLAGS_ITEMS_AT_END", "Py_TPFLAGS_ITEMS_AT_END"], [63, 1, 1, "c.Py_TPFLAGS_LIST_SUBCLASS", "Py_TPFLAGS_LIST_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_LONG_SUBCLASS", "Py_TPFLAGS_LONG_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_MANAGED_DICT", "Py_TPFLAGS_MANAGED_DICT"], [63, 1, 1, "c.Py_TPFLAGS_MANAGED_WEAKREF", "Py_TPFLAGS_MANAGED_WEAKREF"], [63, 1, 1, "c.Py_TPFLAGS_MAPPING", "Py_TPFLAGS_MAPPING"], [63, 1, 1, "c.Py_TPFLAGS_METHOD_DESCRIPTOR", "Py_TPFLAGS_METHOD_DESCRIPTOR"], [63, 1, 1, "c.Py_TPFLAGS_READY", "Py_TPFLAGS_READY"], [63, 1, 1, "c.Py_TPFLAGS_READYING", "Py_TPFLAGS_READYING"], [63, 1, 1, "c.Py_TPFLAGS_SEQUENCE", "Py_TPFLAGS_SEQUENCE"], [63, 1, 1, "c.Py_TPFLAGS_TUPLE_SUBCLASS", "Py_TPFLAGS_TUPLE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_TYPE_SUBCLASS", "Py_TPFLAGS_TYPE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_UNICODE_SUBCLASS", "Py_TPFLAGS_UNICODE_SUBCLASS"], [63, 1, 1, "c.Py_TPFLAGS_VALID_VERSION_TAG", "Py_TPFLAGS_VALID_VERSION_TAG"], [58, 2, 1, "c.Py_TYPE", "Py_TYPE"], [58, 1, 1, "c.Py_T_BOOL", "Py_T_BOOL"], [58, 1, 1, "c.Py_T_BYTE", "Py_T_BYTE"], [58, 1, 1, "c.Py_T_CHAR", "Py_T_CHAR"], [58, 1, 1, "c.Py_T_DOUBLE", "Py_T_DOUBLE"], [58, 1, 1, "c.Py_T_FLOAT", "Py_T_FLOAT"], [58, 1, 1, "c.Py_T_INT", "Py_T_INT"], [58, 1, 1, "c.Py_T_LONG", "Py_T_LONG"], [58, 1, 1, "c.Py_T_LONGLONG", "Py_T_LONGLONG"], [58, 1, 1, "c.Py_T_OBJECT_EX", "Py_T_OBJECT_EX"], [58, 1, 1, "c.Py_T_PYSSIZET", "Py_T_PYSSIZET"], [58, 1, 1, "c.Py_T_SHORT", "Py_T_SHORT"], [58, 1, 1, "c.Py_T_STRING", "Py_T_STRING"], [58, 1, 1, "c.Py_T_STRING_INPLACE", "Py_T_STRING_INPLACE"], [58, 1, 1, "c.Py_T_UBYTE", "Py_T_UBYTE"], [58, 1, 1, "c.Py_T_UINT", "Py_T_UINT"], [58, 1, 1, "c.Py_T_ULONG", "Py_T_ULONG"], [58, 1, 1, "c.Py_T_ULONGLONG", "Py_T_ULONGLONG"], [58, 1, 1, "c.Py_T_USHORT", "Py_T_USHORT"], [6, 0, 1, "c.Py_True", "Py_True"], [64, 4, 1, "c.Py_UCS1", "Py_UCS1"], [64, 4, 1, "c.Py_UCS2", "Py_UCS2"], [64, 4, 1, "c.Py_UCS4", "Py_UCS4"], [33, 1, 1, "c.Py_UNBLOCK_THREADS", "Py_UNBLOCK_THREADS"], [64, 4, 1, "c.Py_UNICODE", "Py_UNICODE"], [64, 2, 1, "c.Py_UNICODE_ISALNUM", "Py_UNICODE_ISALNUM"], [64, 2, 1, "c.Py_UNICODE_ISALPHA", "Py_UNICODE_ISALPHA"], [64, 2, 1, "c.Py_UNICODE_ISDECIMAL", "Py_UNICODE_ISDECIMAL"], [64, 2, 1, "c.Py_UNICODE_ISDIGIT", "Py_UNICODE_ISDIGIT"], [64, 2, 1, "c.Py_UNICODE_ISLINEBREAK", "Py_UNICODE_ISLINEBREAK"], [64, 2, 1, "c.Py_UNICODE_ISLOWER", "Py_UNICODE_ISLOWER"], [64, 2, 1, "c.Py_UNICODE_ISNUMERIC", "Py_UNICODE_ISNUMERIC"], [64, 2, 1, "c.Py_UNICODE_ISPRINTABLE", "Py_UNICODE_ISPRINTABLE"], [64, 2, 1, "c.Py_UNICODE_ISSPACE", "Py_UNICODE_ISSPACE"], [64, 2, 1, "c.Py_UNICODE_ISTITLE", "Py_UNICODE_ISTITLE"], [64, 2, 1, "c.Py_UNICODE_ISUPPER", "Py_UNICODE_ISUPPER"], [64, 2, 1, "c.Py_UNICODE_IS_HIGH_SURROGATE", "Py_UNICODE_IS_HIGH_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_IS_LOW_SURROGATE", "Py_UNICODE_IS_LOW_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_IS_SURROGATE", "Py_UNICODE_IS_SURROGATE"], [64, 2, 1, "c.Py_UNICODE_JOIN_SURROGATES", "Py_UNICODE_JOIN_SURROGATES"], [64, 2, 1, "c.Py_UNICODE_TODECIMAL", "Py_UNICODE_TODECIMAL"], [64, 2, 1, "c.Py_UNICODE_TODIGIT", "Py_UNICODE_TODIGIT"], [64, 2, 1, "c.Py_UNICODE_TOLOWER", "Py_UNICODE_TOLOWER"], [64, 2, 1, "c.Py_UNICODE_TONUMERIC", "Py_UNICODE_TONUMERIC"], [64, 2, 1, "c.Py_UNICODE_TOTITLE", "Py_UNICODE_TOTITLE"], [64, 2, 1, "c.Py_UNICODE_TOUPPER", "Py_UNICODE_TOUPPER"], [35, 1, 1, "c.Py_UNREACHABLE", "Py_UNREACHABLE"], [35, 1, 1, "c.Py_UNUSED", "Py_UNUSED"], [33, 0, 1, "c.Py_UnbufferedStdioFlag", "Py_UnbufferedStdioFlag"], [28, 2, 1, "c.Py_VISIT", "Py_VISIT"], [5, 2, 1, "c.Py_VaBuildValue", "Py_VaBuildValue"], [33, 0, 1, "c.Py_VerboseFlag", "Py_VerboseFlag"], [4, 0, 1, "c.Py_Version", "Py_Version"], [52, 2, 1, "c.Py_XDECREF", "Py_XDECREF"], [52, 2, 1, "c.Py_XINCREF", "Py_XINCREF"], [52, 2, 1, "c.Py_XNewRef", "Py_XNewRef"], [52, 1, 1, "c.Py_XSETREF", "Py_XSETREF"], [7, 4, 1, "c.Py_buffer", "Py_buffer"], [15, 4, 1, "c.Py_complex", "Py_complex"], [66, 0, 1, "c.Py_eval_input", "Py_eval_input"], [66, 0, 1, "c.Py_file_input", "Py_file_input"], [30, 4, 1, "c.Py_hash_t", "Py_hash_t"], [45, 1, 1, "c.Py_mod_create", "Py_mod_create"], [45, 1, 1, "c.Py_mod_exec", "Py_mod_exec"], [45, 1, 1, "c.Py_mod_multiple_interpreters", "Py_mod_multiple_interpreters"], [66, 0, 1, "c.Py_single_input", "Py_single_input"], [35, 4, 1, "c.Py_ssize_t", "Py_ssize_t"], [33, 4, 1, "c.Py_tracefunc", "Py_tracefunc"], [33, 1, 1, "c.Py_tss_NEEDS_INIT", "Py_tss_NEEDS_INIT"], [33, 4, 1, "c.Py_tss_t", "Py_tss_t"], [30, 4, 1, "c.Py_uhash_t", "Py_uhash_t"], [58, 1, 1, "c.T_NONE", "T_NONE"], [58, 1, 1, "c.T_OBJECT", "T_OBJECT"], [9, 2, 1, "c._PyBytes_Resize", "_PyBytes_Resize"], [58, 4, 1, "c._PyCFunctionFast", "_PyCFunctionFast"], [58, 4, 1, "c._PyCFunctionFastWithKeywords", "_PyCFunctionFastWithKeywords"], [33, 4, 1, "c._PyFrameEvalFunction", "_PyFrameEvalFunction"], [26, 5, 1, "c._PyInterpreterFrame", "_PyInterpreterFrame"], [33, 2, 1, "c._PyInterpreterState_GetEvalFrameFunc", "_PyInterpreterState_GetEvalFrameFunc"], [33, 2, 1, "c._PyInterpreterState_SetEvalFrameFunc", "_PyInterpreterState_SetEvalFrameFunc"], [49, 2, 1, "c._PyObject_GetDictPtr", "_PyObject_GetDictPtr"], [3, 2, 1, "c._PyObject_New", "_PyObject_New"], [3, 2, 1, "c._PyObject_NewVar", "_PyObject_NewVar"], [60, 2, 1, "c._PyTuple_Resize", "_PyTuple_Resize"], [34, 2, 1, "c._Py_InitializeMain", "_Py_InitializeMain"], [3, 0, 1, "c._Py_NoneStruct", "_Py_NoneStruct"], [15, 2, 1, "c._Py_c_diff", "_Py_c_diff"], [15, 2, 1, "c._Py_c_neg", "_Py_c_neg"], [15, 2, 1, "c._Py_c_pow", "_Py_c_pow"], [15, 2, 1, "c._Py_c_prod", "_Py_c_prod"], [15, 2, 1, "c._Py_c_quot", "_Py_c_quot"], [15, 2, 1, "c._Py_c_sum", "_Py_c_sum"], [31, 5, 1, "c._frozen", "_frozen"], [31, 5, 1, "c._inittab", "_inittab"], [63, 4, 1, "c.allocfunc", "allocfunc"], [63, 4, 1, "c.binaryfunc", "binaryfunc"], [63, 4, 1, "c.descrgetfunc", "descrgetfunc"], [63, 4, 1, "c.descrsetfunc", "descrsetfunc"], [63, 4, 1, "c.destructor", "destructor"], [63, 4, 1, "c.freefunc", "freefunc"], [28, 4, 1, "c.gcvisitobjects_t", "gcvisitobjects_t"], [63, 4, 1, "c.getattrfunc", "getattrfunc"], [63, 4, 1, "c.getattrofunc", "getattrofunc"], [63, 4, 1, "c.getbufferproc", "getbufferproc"], [63, 4, 1, "c.getiterfunc", "getiterfunc"], [58, 4, 1, "c.getter", "getter"], [63, 4, 1, "c.hashfunc", "hashfunc"], [63, 4, 1, "c.initproc", "initproc"], [28, 4, 1, "c.inquiry", "inquiry"], [63, 4, 1, "c.iternextfunc", "iternextfunc"], [63, 4, 1, "c.lenfunc", "lenfunc"], [63, 4, 1, "c.newfunc", "newfunc"], [63, 4, 1, "c.objobjargproc", "objobjargproc"], [63, 4, 1, "c.objobjproc", "objobjproc"], [63, 4, 1, "c.releasebufferproc", "releasebufferproc"], [63, 4, 1, "c.reprfunc", "reprfunc"], [63, 4, 1, "c.richcmpfunc", "richcmpfunc"], [63, 4, 1, "c.sendfunc", "sendfunc"], [63, 4, 1, "c.setattrfunc", "setattrfunc"], [63, 4, 1, "c.setattrofunc", "setattrofunc"], [58, 4, 1, "c.setter", "setter"], [63, 4, 1, "c.ssizeargfunc", "ssizeargfunc"], [63, 4, 1, "c.ssizeobjargproc", "ssizeobjargproc"], [63, 4, 1, "c.ternaryfunc", "ternaryfunc"], [28, 4, 1, "c.traverseproc", "traverseproc"], [63, 4, 1, "c.unaryfunc", "unaryfunc"], [10, 4, 1, "c.vectorcallfunc", "vectorcallfunc"], [28, 4, 1, "c.visitproc", "visitproc"], [213, 6, 1, "", "ArithmeticError"], [213, 6, 1, "", "AssertionError"], [213, 6, 1, "", "AttributeError"], [213, 6, 1, "", "BaseException"], [213, 6, 1, "", "BaseExceptionGroup"], [213, 6, 1, "", "BlockingIOError"], [213, 6, 1, "", "BrokenPipeError"], [213, 6, 1, "", "BufferError"], [213, 6, 1, "", "BytesWarning"], [213, 6, 1, "", "ChildProcessError"], [213, 6, 1, "", "ConnectionAbortedError"], [213, 6, 1, "", "ConnectionError"], [213, 6, 1, "", "ConnectionRefusedError"], [213, 6, 1, "", "ConnectionResetError"], [213, 6, 1, "", "DeprecationWarning"], [213, 6, 1, "", "EOFError"], [168, 9, 1, "", "Ellipsis"], [213, 6, 1, "", "EncodingWarning"], [213, 6, 1, "", "EnvironmentError"], [213, 6, 1, "", "Exception"], [213, 6, 1, "", "ExceptionGroup"], [168, 9, 1, "", "False"], [213, 6, 1, "", "FileExistsError"], [213, 6, 1, "", "FileNotFoundError"], [213, 6, 1, "", "FloatingPointError"], [213, 6, 1, "", "FutureWarning"], [213, 6, 1, "", "GeneratorExit"], [213, 6, 1, "", "IOError"], [213, 6, 1, "", "ImportError"], [213, 6, 1, "", "ImportWarning"], [213, 6, 1, "", "IndentationError"], [213, 6, 1, "", "IndexError"], [213, 6, 1, "", "InterruptedError"], [213, 6, 1, "", "IsADirectoryError"], [213, 6, 1, "", "KeyError"], [213, 6, 1, "", "KeyboardInterrupt"], [213, 6, 1, "", "LookupError"], [213, 6, 1, "", "MemoryError"], [213, 6, 1, "", "ModuleNotFoundError"], [213, 6, 1, "", "NameError"], [168, 9, 1, "", "None"], [213, 6, 1, "", "NotADirectoryError"], [168, 9, 1, "", "NotImplemented"], [213, 6, 1, "", "NotImplementedError"], [213, 6, 1, "", "OSError"], [213, 6, 1, "", "OverflowError"], [213, 6, 1, "", "PendingDeprecationWarning"], [213, 6, 1, "", "PermissionError"], [213, 6, 1, "", "ProcessLookupError"], [213, 6, 1, "", "RecursionError"], [213, 6, 1, "", "ReferenceError"], [213, 6, 1, "", "ResourceWarning"], [213, 6, 1, "", "RuntimeError"], [213, 6, 1, "", "RuntimeWarning"], [213, 6, 1, "", "StopAsyncIteration"], [213, 6, 1, "", "StopIteration"], [213, 6, 1, "", "SyntaxError"], [213, 6, 1, "", "SyntaxWarning"], [213, 6, 1, "", "SystemError"], [213, 6, 1, "", "SystemExit"], [213, 6, 1, "", "TabError"], [213, 6, 1, "", "TimeoutError"], [168, 9, 1, "", "True"], [213, 6, 1, "", "TypeError"], [213, 6, 1, "", "UnboundLocalError"], [213, 6, 1, "", "UnicodeDecodeError"], [213, 6, 1, "", "UnicodeEncodeError"], [213, 6, 1, "", "UnicodeError"], [213, 6, 1, "", "UnicodeTranslateError"], [213, 6, 1, "", "UnicodeWarning"], [213, 6, 1, "", "UserWarning"], [213, 6, 1, "", "ValueError"], [213, 6, 1, "", "Warning"], [213, 6, 1, "", "WindowsError"], [213, 6, 1, "", "ZeroDivisionError"], [432, 7, 1, "cached__", "__cached__"], [168, 9, 1, "debug__", "__debug__"], [432, 7, 1, "file__", "__file__"], [113, 10, 0, "-", "__future__"], [225, 12, 1, "import__", "__import__"], [432, 7, 1, "loader__", "__loader__"], [114, 10, 0, "-", "__main__"], [432, 7, 1, "name__", "__name__"], [432, 7, 1, "package__", "__package__"], [432, 7, 1, "path__", "__path__"], [432, 7, 1, "spec__", "__spec__"], [115, 10, 0, "-", "_thread"], [369, 10, 0, "-", "_tkinter"], [116, 10, 0, "-", "abc"], [225, 12, 1, "", "abs"], [117, 10, 0, "-", "aifc"], [225, 12, 1, "", "aiter"], [225, 12, 1, "", "all"], [225, 12, 1, "", "anext"], [225, 12, 1, "", "any"], [120, 10, 0, "-", "argparse"], [121, 10, 0, "-", "array"], [225, 12, 1, "", "ascii"], [122, 10, 0, "-", "ast"], [123, 10, 0, "-", "asyncio"], [140, 10, 0, "-", "atexit"], [141, 10, 0, "-", "audioop"], [143, 10, 0, "-", "base64"], [144, 10, 0, "-", "bdb"], [225, 12, 1, "", "bin"], [146, 10, 0, "-", "binascii"], [147, 10, 0, "-", "bisect"], [225, 11, 1, "", "bool"], [225, 12, 1, "", "breakpoint"], [148, 10, 0, "-", "builtins"], [344, 11, 1, "", "bytearray"], [344, 11, 1, "", "bytes"], [149, 10, 0, "-", "bz2"], [308, 10, 0, "-", "cProfile"], [150, 10, 0, "-", "calendar"], [225, 12, 1, "", "callable"], [151, 10, 0, "-", "cgi"], [152, 10, 0, "-", "cgitb"], [225, 12, 1, "", "chr"], [153, 10, 0, "-", "chunk"], [225, 12, 1, "", "classmethod"], [154, 10, 0, "-", "cmath"], [155, 10, 0, "-", "cmd"], [157, 10, 0, "-", "code"], [158, 10, 0, "-", "codecs"], [159, 10, 0, "-", "codeop"], [160, 10, 0, "-", "collections"], [162, 10, 0, "-", "colorsys"], [225, 12, 1, "", "compile"], [163, 10, 0, "-", "compileall"], [225, 11, 1, "", "complex"], [167, 10, 0, "-", "configparser"], [169, 10, 0, "-", "contextlib"], [170, 10, 0, "-", "contextvars"], [171, 10, 0, "-", "copy"], [172, 10, 0, "-", "copyreg"], [168, 9, 1, "", "copyright"], [168, 9, 1, "", "credits"], [173, 10, 0, "-", "crypt"], [175, 10, 0, "-", "csv"], [176, 10, 0, "-", "ctypes"], [177, 10, 0, "-", "curses"], [181, 10, 0, "-", "dataclasses"], [183, 10, 0, "-", "datetime"], [184, 10, 0, "-", "dbm"], [186, 10, 0, "-", "decimal"], [225, 12, 1, "", "delattr"], [344, 11, 1, "", "dict"], [190, 10, 0, "-", "difflib"], [225, 12, 1, "", "dir"], [191, 10, 0, "-", "dis"], [225, 12, 1, "", "divmod"], [193, 10, 0, "-", "doctest"], [194, 10, 0, "-", "email"], [210, 10, 0, "-", "ensurepip"], [211, 10, 0, "-", "enum"], [225, 12, 1, "", "enumerate"], [212, 10, 0, "-", "errno"], [225, 12, 1, "", "eval"], [225, 12, 1, "", "exec"], [168, 9, 1, "", "exit"], [214, 10, 0, "-", "faulthandler"], [215, 10, 0, "-", "fcntl"], [216, 10, 0, "-", "filecmp"], [218, 10, 0, "-", "fileinput"], [225, 12, 1, "", "filter"], [225, 11, 1, "", "float"], [220, 10, 0, "-", "fnmatch"], [225, 12, 1, "", "format"], [221, 10, 0, "-", "fractions"], [344, 11, 1, "", "frozenset"], [223, 10, 0, "-", "ftplib"], [226, 10, 0, "-", "functools"], [227, 10, 0, "-", "gc"], [225, 12, 1, "", "getattr"], [228, 10, 0, "-", "getopt"], [229, 10, 0, "-", "getpass"], [230, 10, 0, "-", "gettext"], [231, 10, 0, "-", "glob"], [225, 12, 1, "", "globals"], [232, 10, 0, "-", "graphlib"], [233, 10, 0, "-", "grp"], [234, 10, 0, "-", "gzip"], [225, 12, 1, "", "hasattr"], [225, 12, 1, "", "hash"], [235, 10, 0, "-", "hashlib"], [236, 10, 0, "-", "heapq"], [225, 12, 1, "", "help"], [225, 12, 1, "", "hex"], [237, 10, 0, "-", "hmac"], [238, 10, 0, "-", "html"], [241, 10, 0, "-", "http"], [225, 12, 1, "", "id"], [247, 10, 0, "-", "idlelib"], [248, 10, 0, "-", "imaplib"], [249, 10, 0, "-", "imghdr"], [250, 10, 0, "-", "importlib"], [225, 12, 1, "", "input"], [255, 10, 0, "-", "inspect"], [225, 11, 1, "", "int"], [258, 10, 0, "-", "io"], [259, 10, 0, "-", "ipaddress"], [225, 12, 1, "", "isinstance"], [225, 12, 1, "", "issubclass"], [225, 12, 1, "", "iter"], [261, 10, 0, "-", "itertools"], [262, 10, 0, "-", "json"], [263, 10, 0, "-", "keyword"], [225, 12, 1, "", "len"], [112, 10, 0, "-", "lib2to3"], [168, 9, 1, "", "license"], [265, 10, 0, "-", "linecache"], [344, 11, 1, "", "list"], [266, 10, 0, "-", "locale"], [225, 12, 1, "", "locals"], [267, 10, 0, "-", "logging"], [270, 10, 0, "-", "lzma"], [271, 10, 0, "-", "mailbox"], [272, 10, 0, "-", "mailcap"], [225, 12, 1, "", "map"], [274, 10, 0, "-", "marshal"], [275, 10, 0, "-", "math"], [225, 12, 1, "", "max"], [344, 11, 1, "", "memoryview"], [276, 10, 0, "-", "mimetypes"], [225, 12, 1, "", "min"], [278, 10, 0, "-", "mmap"], [279, 10, 0, "-", "modulefinder"], [281, 10, 0, "-", "msilib"], [282, 10, 0, "-", "msvcrt"], [283, 10, 0, "-", "multiprocessing"], [286, 10, 0, "-", "netrc"], [225, 12, 1, "", "next"], [287, 10, 0, "-", "nis"], [288, 10, 0, "-", "nntplib"], [289, 10, 0, "-", "numbers"], [225, 11, 1, "", "object"], [225, 12, 1, "", "oct"], [225, 12, 1, "", "open"], [291, 10, 0, "-", "operator"], [292, 10, 0, "-", "optparse"], [225, 12, 1, "", "ord"], [293, 10, 0, "-", "os"], [295, 10, 0, "-", "ossaudiodev"], [296, 10, 0, "-", "pathlib"], [297, 10, 0, "-", "pdb"], [299, 10, 0, "-", "pickle"], [300, 10, 0, "-", "pickletools"], [301, 10, 0, "-", "pipes"], [302, 10, 0, "-", "pkgutil"], [303, 10, 0, "-", "platform"], [304, 10, 0, "-", "plistlib"], [305, 10, 0, "-", "poplib"], [306, 10, 0, "-", "posix"], [225, 12, 1, "", "pow"], [307, 10, 0, "-", "pprint"], [225, 12, 1, "", "print"], [308, 10, 0, "-", "profile"], [225, 11, 1, "", "property"], [308, 10, 0, "-", "pstats"], [309, 10, 0, "-", "pty"], [310, 10, 0, "-", "pwd"], [311, 10, 0, "-", "py_compile"], [312, 10, 0, "-", "pyclbr"], [313, 10, 0, "-", "pydoc"], [316, 10, 0, "-", "queue"], [168, 9, 1, "", "quit"], [317, 10, 0, "-", "quopri"], [318, 10, 0, "-", "random"], [344, 11, 1, "", "range"], [319, 10, 0, "-", "re"], [320, 10, 0, "-", "readline"], [225, 12, 1, "", "repr"], [321, 10, 0, "-", "reprlib"], [322, 10, 0, "-", "resource"], [225, 12, 1, "", "reversed"], [323, 10, 0, "-", "rlcompleter"], [225, 12, 1, "", "round"], [324, 10, 0, "-", "runpy"], [325, 10, 0, "-", "sched"], [326, 10, 0, "-", "secrets"], [328, 10, 0, "-", "select"], [329, 10, 0, "-", "selectors"], [344, 11, 1, "", "set"], [225, 12, 1, "", "setattr"], [330, 10, 0, "-", "shelve"], [331, 10, 0, "-", "shlex"], [332, 10, 0, "-", "shutil"], [333, 10, 0, "-", "signal"], [334, 10, 0, "-", "site"], [334, 10, 0, "-", "sitecustomize"], [225, 11, 1, "", "slice"], [335, 10, 0, "-", "smtplib"], [336, 10, 0, "-", "sndhdr"], [337, 10, 0, "-", "socket"], [338, 10, 0, "-", "socketserver"], [225, 12, 1, "", "sorted"], [339, 10, 0, "-", "spwd"], [340, 10, 0, "-", "sqlite3"], [341, 10, 0, "-", "ssl"], [342, 10, 0, "-", "stat"], [225, 12, 1, "", "staticmethod"], [343, 10, 0, "-", "statistics"], [344, 11, 1, "", "str"], [345, 10, 0, "-", "string"], [346, 10, 0, "-", "stringprep"], [347, 10, 0, "-", "struct"], [348, 10, 0, "-", "subprocess"], [225, 12, 1, "", "sum"], [349, 10, 0, "-", "sunau"], [225, 11, 1, "", "super"], [351, 10, 0, "-", "symtable"], [352, 10, 0, "-", "sys"], [355, 10, 0, "-", "sysconfig"], [356, 10, 0, "-", "syslog"], [357, 10, 0, "-", "tabnanny"], [358, 10, 0, "-", "tarfile"], [359, 10, 0, "-", "telnetlib"], [360, 10, 0, "-", "tempfile"], [361, 10, 0, "-", "termios"], [362, 10, 0, "-", "test"], [364, 10, 0, "-", "textwrap"], [365, 10, 0, "-", "threading"], [366, 10, 0, "-", "time"], [367, 10, 0, "-", "timeit"], [369, 10, 0, "-", "tkinter"], [377, 10, 0, "-", "token"], [378, 10, 0, "-", "tokenize"], [379, 10, 0, "-", "tomllib"], [380, 10, 0, "-", "trace"], [381, 10, 0, "-", "traceback"], [382, 10, 0, "-", "tracemalloc"], [383, 10, 0, "-", "tty"], [344, 11, 1, "", "tuple"], [384, 10, 0, "-", "turtle"], [384, 10, 0, "-", "turtledemo"], [225, 11, 1, "", "type"], [385, 10, 0, "-", "types"], [386, 10, 0, "-", "typing"], [387, 10, 0, "-", "unicodedata"], [388, 10, 0, "-", "unittest"], [392, 10, 0, "-", "urllib"], [334, 10, 0, "-", "usercustomize"], [397, 10, 0, "-", "uu"], [398, 10, 0, "-", "uuid"], [225, 12, 1, "", "vars"], [399, 10, 0, "-", "venv"], [400, 10, 0, "-", "warnings"], [401, 10, 0, "-", "wave"], [402, 10, 0, "-", "weakref"], [403, 10, 0, "-", "webbrowser"], [405, 10, 0, "-", "winreg"], [406, 10, 0, "-", "winsound"], [407, 10, 0, "-", "wsgiref"], [408, 10, 0, "-", "xdrlib"], [409, 10, 0, "-", "xml"], [225, 12, 1, "", "zip"], [421, 10, 0, "-", "zipapp"], [422, 10, 0, "-", "zipfile"], [423, 10, 0, "-", "zipimport"], [424, 10, 0, "-", "zlib"], [425, 10, 0, "-", "zoneinfo"], [297, 13, 1, "pdbcommand-0", "!"], [456, 14, 1, "cmdoption-build", "--build"], [455, 14, 1, "cmdoption-check-hash-based-pycs", "--check-hash-based-pycs"], [456, 14, 1, "cmdoption-disable-ipv6", "--disable-ipv6"], [456, 14, 1, "cmdoption-disable-test-modules", "--disable-test-modules"], [456, 14, 1, "cmdoption-enable-big-digits", "--enable-big-digits"], [456, 14, 1, "cmdoption-enable-bolt", "--enable-bolt"], [456, 14, 1, "cmdoption-enable-framework", "--enable-framework"], [456, 14, 1, "cmdoption-enable-loadable-sqlite-extensions", "--enable-loadable-sqlite-extensions"], [456, 14, 1, "cmdoption-enable-optimizations", "--enable-optimizations"], [456, 14, 1, "cmdoption-enable-profiling", "--enable-profiling"], [456, 14, 1, "cmdoption-enable-pystats", "--enable-pystats"], [456, 14, 1, "cmdoption-enable-shared", "--enable-shared"], [456, 14, 1, "cmdoption-enable-universalsdk", "--enable-universalsdk"], [456, 14, 1, "cmdoption-enable-wasm-dynamic-linking", "--enable-wasm-dynamic-linking"], [456, 14, 1, "cmdoption-enable-wasm-pthreads", "--enable-wasm-pthreads"], [456, 14, 1, "cmdoption-exec-prefix", "--exec-prefix"], [455, 14, 1, "cmdoption-help", "--help"], [455, 14, 1, "cmdoption-help-all", "--help-all"], [455, 14, 1, "cmdoption-help-env", "--help-env"], [455, 14, 1, "cmdoption-help-xoptions", "--help-xoptions"], [456, 14, 1, "cmdoption-host", "--host"], [456, 14, 1, "cmdoption-prefix", "--prefix"], [455, 14, 1, "cmdoption-version", "--version"], [456, 14, 1, "cmdoption-with-address-sanitizer", "--with-address-sanitizer"], [456, 14, 1, "cmdoption-with-assertions", "--with-assertions"], [456, 14, 1, "cmdoption-with-build-python", "--with-build-python"], [456, 14, 1, "cmdoption-with-builtin-hashlib-hashes", "--with-builtin-hashlib-hashes"], [456, 14, 1, "cmdoption-with-computed-gotos", "--with-computed-gotos"], [456, 14, 1, "cmdoption-with-dbmliborder", "--with-dbmliborder"], [456, 14, 1, "cmdoption-with-dtrace", "--with-dtrace"], [456, 14, 1, "cmdoption-with-emscripten-target", "--with-emscripten-target"], [456, 14, 1, "cmdoption-with-ensurepip", "--with-ensurepip"], [456, 14, 1, "cmdoption-with-framework-name", "--with-framework-name"], [456, 14, 1, "cmdoption-with-hash-algorithm", "--with-hash-algorithm"], [456, 14, 1, "cmdoption-with-libc", "--with-libc"], [456, 14, 1, "cmdoption-with-libm", "--with-libm"], [456, 14, 1, "cmdoption-with-libs", "--with-libs"], [456, 14, 1, "cmdoption-with-lto", "--with-lto"], [456, 14, 1, "cmdoption-with-memory-sanitizer", "--with-memory-sanitizer"], [456, 14, 1, "cmdoption-with-openssl", "--with-openssl"], [456, 14, 1, "cmdoption-with-openssl-rpath", "--with-openssl-rpath"], [456, 14, 1, "cmdoption-with-pkg-config", "--with-pkg-config"], [456, 14, 1, "cmdoption-with-platlibdir", "--with-platlibdir"], [456, 14, 1, "cmdoption-with-pydebug", "--with-pydebug"], [456, 14, 1, "cmdoption-with-readline", "--with-readline"], [456, 14, 1, "cmdoption-with-ssl-default-suites", "--with-ssl-default-suites"], [456, 14, 1, "cmdoption-with-strict-overflow", "--with-strict-overflow"], [456, 14, 1, "cmdoption-with-suffix", "--with-suffix"], [456, 14, 1, "cmdoption-with-system-expat", "--with-system-expat"], [456, 14, 1, "cmdoption-with-system-libmpdec", "--with-system-libmpdec"], [456, 14, 1, "cmdoption-with-trace-refs", "--with-trace-refs"], [456, 14, 1, "cmdoption-with-tzpath", "--with-tzpath"], [456, 14, 1, "cmdoption-with-undefined-behavior-sanitizer", "--with-undefined-behavior-sanitizer"], [456, 14, 1, "cmdoption-with-universal-archs", "--with-universal-archs"], [456, 14, 1, "cmdoption-with-valgrind", "--with-valgrind"], [456, 14, 1, "cmdoption-with-wheel-pkg-dir", "--with-wheel-pkg-dir"], [456, 14, 1, "cmdoption-without-c-locale-coercion", "--without-c-locale-coercion"], [456, 14, 1, "cmdoption-without-decimal-contextvar", "--without-decimal-contextvar"], [456, 14, 1, "cmdoption-without-doc-strings", "--without-doc-strings"], [456, 14, 1, "cmdoption-without-freelists", "--without-freelists"], [456, 14, 1, "cmdoption-without-pymalloc", "--without-pymalloc"], [456, 14, 1, "cmdoption-without-readline", "--without-readline"], [456, 14, 1, "cmdoption-without-static-libpython", "--without-static-libpython"], [455, 14, 1, "cmdoption-0", "-?"], [455, 14, 1, "cmdoption-B", "-B"], [455, 14, 1, "cmdoption-E", "-E"], [455, 14, 1, "cmdoption-I", "-I"], [455, 14, 1, "cmdoption-J", "-J"], [455, 14, 1, "cmdoption-O", "-O"], [455, 14, 1, "cmdoption-OO", "-OO"], [455, 14, 1, "cmdoption-P", "-P"], [455, 14, 1, "cmdoption-R", "-R"], [455, 14, 1, "cmdoption-S", "-S"], [455, 14, 1, "cmdoption-V", "-V"], [455, 14, 1, "cmdoption-W", "-W"], [455, 14, 1, "cmdoption-X", "-X"], [455, 14, 1, "cmdoption-b", "-b"], [455, 14, 1, "cmdoption-c", "-c"], [455, 14, 1, "cmdoption-d", "-d"], [455, 14, 1, "cmdoption-h", "-h"], [455, 14, 1, "cmdoption-i", "-i"], [455, 14, 1, "cmdoption-m", "-m"], [455, 14, 1, "cmdoption-q", "-q"], [455, 14, 1, "cmdoption-s", "-s"], [455, 14, 1, "cmdoption-u", "-u"], [455, 14, 1, "cmdoption-v", "-v"], [455, 14, 1, "cmdoption-x", "-x"], [456, 15, 1, "-", "BASECFLAGS"], [456, 15, 1, "-", "BASECPPFLAGS"], [191, 16, 1, "-", "BEFORE_ASYNC_WITH"], [191, 16, 1, "-", "BEFORE_WITH"], [191, 16, 1, "-", "BINARY_OP"], [191, 16, 1, "-", "BINARY_SLICE"], [191, 16, 1, "-", "BINARY_SUBSCR"], [456, 15, 1, "-", "BLDSHARED"], [353, 17, 1, "-", "BRANCH"], [191, 16, 1, "-", "BUILD_CONST_KEY_MAP"], [191, 16, 1, "-", "BUILD_LIST"], [191, 16, 1, "-", "BUILD_MAP"], [191, 16, 1, "-", "BUILD_SET"], [191, 16, 1, "-", "BUILD_SLICE"], [191, 16, 1, "-", "BUILD_STRING"], [191, 16, 1, "-", "BUILD_TUPLE"], [191, 16, 1, "-", "CACHE"], [353, 17, 1, "-", "CALL"], [191, 16, 1, "-", "CALL"], [191, 16, 1, "-", "CALL_FUNCTION_EX"], [191, 16, 1, "-", "CALL_INTRINSIC_1"], [191, 16, 1, "-", "CALL_INTRINSIC_2"], [456, 15, 1, "-", "CC"], [456, 15, 1, "-", "CCSHARED"], [456, 15, 1, "-", "CFLAGS"], [456, 15, 1, "-", "CFLAGSFORSHARED"], [456, 15, 1, "-", "CFLAGS_ALIASING"], [456, 15, 1, "-", "CFLAGS_NODIST"], [191, 16, 1, "-", "CHECK_EG_MATCH"], [191, 16, 1, "-", "CHECK_EXC_MATCH"], [191, 16, 1, "-", "CLEANUP_THROW"], [191, 16, 1, "-", "COMPARE_OP"], [456, 15, 1, "-", "COMPILEALL_OPTS"], [456, 15, 1, "-", "CONFIGURE_CFLAGS"], [456, 15, 1, "-", "CONFIGURE_CFLAGS_NODIST"], [456, 15, 1, "-", "CONFIGURE_CPPFLAGS"], [456, 15, 1, "-", "CONFIGURE_LDFLAGS"], [456, 15, 1, "-", "CONFIGURE_LDFLAGS_NODIST"], [456, 14, 1, "cmdoption-arg-CONFIG_SITE", "CONFIG_SITE"], [191, 16, 1, "-", "CONTAINS_OP"], [191, 16, 1, "-", "COPY"], [191, 16, 1, "-", "COPY_FREE_VARS"], [456, 15, 1, "-", "CPPFLAGS"], [456, 15, 1, "-", "CXX"], [353, 17, 1, "-", "C_RAISE"], [353, 17, 1, "-", "C_RETURN"], [191, 16, 1, "-", "DELETE_ATTR"], [191, 16, 1, "-", "DELETE_DEREF"], [191, 16, 1, "-", "DELETE_FAST"], [191, 16, 1, "-", "DELETE_GLOBAL"], [191, 16, 1, "-", "DELETE_NAME"], [191, 16, 1, "-", "DELETE_SUBSCR"], [191, 16, 1, "-", "DICT_MERGE"], [191, 16, 1, "-", "DICT_UPDATE"], [191, 16, 1, "-", "END_ASYNC_FOR"], [191, 16, 1, "-", "END_FOR"], [191, 16, 1, "-", "END_SEND"], [353, 17, 1, "-", "EXCEPTION_HANDLED"], [191, 16, 1, "-", "EXTENDED_ARG"], [456, 15, 1, "-", "EXTRA_CFLAGS"], [191, 16, 1, "-", "FORMAT_VALUE"], [191, 16, 1, "-", "FOR_ITER"], [191, 16, 1, "-", "GET_AITER"], [191, 16, 1, "-", "GET_ANEXT"], [191, 16, 1, "-", "GET_AWAITABLE"], [191, 16, 1, "-", "GET_ITER"], [191, 16, 1, "-", "GET_LEN"], [191, 16, 1, "-", "GET_YIELD_FROM_ITER"], [191, 16, 1, "-", "HAVE_ARGUMENT"], [191, 16, 1, "-", "IMPORT_FROM"], [191, 16, 1, "-", "IMPORT_NAME"], [353, 17, 1, "-", "INSTRUCTION"], [191, 16, 1, "-", "IS_OP"], [353, 17, 1, "-", "JUMP"], [191, 16, 1, "-", "JUMP"], [191, 16, 1, "-", "JUMP_BACKWARD"], [191, 16, 1, "-", "JUMP_BACKWARD_NO_INTERRUPT"], [191, 16, 1, "-", "JUMP_FORWARD"], [191, 16, 1, "-", "JUMP_NO_INTERRUPT"], [191, 16, 1, "-", "KW_NAMES"], [456, 15, 1, "-", "LDFLAGS"], [456, 15, 1, "-", "LDFLAGS_NODIST"], [456, 15, 1, "-", "LDSHARED"], [456, 15, 1, "-", "LIBS"], [353, 17, 1, "-", "LINE"], [456, 15, 1, "-", "LINKCC"], [191, 16, 1, "-", "LIST_APPEND"], [191, 16, 1, "-", "LIST_EXTEND"], [191, 16, 1, "-", "LOAD_ASSERTION_ERROR"], [191, 16, 1, "-", "LOAD_ATTR"], [191, 16, 1, "-", "LOAD_BUILD_CLASS"], [191, 16, 1, "-", "LOAD_CLOSURE"], [191, 16, 1, "-", "LOAD_CONST"], [191, 16, 1, "-", "LOAD_DEREF"], [191, 16, 1, "-", "LOAD_FAST"], [191, 16, 1, "-", "LOAD_FAST_AND_CLEAR"], [191, 16, 1, "-", "LOAD_FAST_CHECK"], [191, 16, 1, "-", "LOAD_FROM_DICT_OR_DEREF"], [191, 16, 1, "-", "LOAD_FROM_DICT_OR_GLOBALS"], [191, 16, 1, "-", "LOAD_GLOBAL"], [191, 16, 1, "-", "LOAD_LOCALS"], [191, 16, 1, "-", "LOAD_METHOD"], [191, 16, 1, "-", "LOAD_NAME"], [191, 16, 1, "-", "LOAD_SUPER_ATTR"], [191, 16, 1, "-", "MAKE_CELL"], [191, 16, 1, "-", "MAKE_FUNCTION"], [191, 16, 1, "-", "MAP_ADD"], [191, 16, 1, "-", "MATCH_CLASS"], [191, 16, 1, "-", "MATCH_KEYS"], [191, 16, 1, "-", "MATCH_MAPPING"], [191, 16, 1, "-", "MATCH_SEQUENCE"], [191, 16, 1, "-", "NOP"], [353, 17, 1, "-", "NO_EVENTS"], [456, 15, 1, "-", "OPT"], [191, 16, 1, "-", "POP_BLOCK"], [191, 16, 1, "-", "POP_EXCEPT"], [191, 16, 1, "-", "POP_JUMP_IF_FALSE"], [191, 16, 1, "-", "POP_JUMP_IF_NONE"], [191, 16, 1, "-", "POP_JUMP_IF_NOT_NONE"], [191, 16, 1, "-", "POP_JUMP_IF_TRUE"], [191, 16, 1, "-", "POP_TOP"], [456, 15, 1, "-", "PROFILE_TASK"], [456, 15, 1, "-", "PURIFY"], [191, 16, 1, "-", "PUSH_EXC_INFO"], [191, 16, 1, "-", "PUSH_NULL"], [455, 15, 1, "-", "PYTHONASYNCIODEBUG"], [455, 15, 1, "-", "PYTHONBREAKPOINT"], [455, 15, 1, "-", "PYTHONCASEOK"], [455, 15, 1, "-", "PYTHONCOERCECLOCALE"], [455, 15, 1, "-", "PYTHONDEBUG"], [455, 15, 1, "-", "PYTHONDEVMODE"], [455, 15, 1, "-", "PYTHONDONTWRITEBYTECODE"], [455, 15, 1, "-", "PYTHONDUMPREFS"], [455, 15, 1, "envvar-PYTHONDUMPREFSFILE-FILENAME", "PYTHONDUMPREFSFILE=FILENAME"], [455, 15, 1, "-", "PYTHONEXECUTABLE"], [455, 15, 1, "-", "PYTHONFAULTHANDLER"], [455, 15, 1, "-", "PYTHONHASHSEED"], [455, 15, 1, "-", "PYTHONHOME"], [455, 15, 1, "-", "PYTHONINSPECT"], [455, 15, 1, "-", "PYTHONINTMAXSTRDIGITS"], [455, 15, 1, "-", "PYTHONIOENCODING"], [455, 15, 1, "-", "PYTHONLEGACYWINDOWSFSENCODING"], [455, 15, 1, "-", "PYTHONLEGACYWINDOWSSTDIO"], [455, 15, 1, "-", "PYTHONMALLOC"], [455, 15, 1, "-", "PYTHONMALLOCSTATS"], [455, 15, 1, "-", "PYTHONNODEBUGRANGES"], [455, 15, 1, "-", "PYTHONNOUSERSITE"], [455, 15, 1, "-", "PYTHONOPTIMIZE"], [455, 15, 1, "-", "PYTHONPATH"], [455, 15, 1, "-", "PYTHONPERFSUPPORT"], [455, 15, 1, "-", "PYTHONPLATLIBDIR"], [455, 15, 1, "-", "PYTHONPROFILEIMPORTTIME"], [455, 15, 1, "-", "PYTHONPYCACHEPREFIX"], [455, 15, 1, "-", "PYTHONSAFEPATH"], [455, 15, 1, "-", "PYTHONSTARTUP"], [455, 15, 1, "-", "PYTHONTRACEMALLOC"], [425, 15, 1, "-", "PYTHONTZPATH"], [455, 15, 1, "-", "PYTHONUNBUFFERED"], [455, 15, 1, "-", "PYTHONUSERBASE"], [455, 15, 1, "-", "PYTHONUTF8"], [455, 15, 1, "-", "PYTHONVERBOSE"], [455, 15, 1, "-", "PYTHONWARNDEFAULTENCODING"], [455, 15, 1, "-", "PYTHONWARNINGS"], [456, 15, 1, "-", "PY_BUILTIN_MODULE_CFLAGS"], [456, 15, 1, "-", "PY_CFLAGS"], [456, 15, 1, "-", "PY_CFLAGS_NODIST"], [456, 15, 1, "-", "PY_CORE_CFLAGS"], [456, 15, 1, "-", "PY_CORE_LDFLAGS"], [456, 15, 1, "-", "PY_CPPFLAGS"], [456, 15, 1, "-", "PY_LDFLAGS"], [456, 15, 1, "-", "PY_LDFLAGS_NODIST"], [353, 17, 1, "-", "PY_RESUME"], [353, 17, 1, "-", "PY_RETURN"], [353, 17, 1, "-", "PY_START"], [456, 15, 1, "-", "PY_STDMODULE_CFLAGS"], [353, 17, 1, "-", "PY_THROW"], [353, 17, 1, "-", "PY_UNWIND"], [353, 17, 1, "-", "PY_YIELD"], [353, 17, 1, "-", "RAISE"], [191, 16, 1, "-", "RAISE_VARARGS"], [353, 17, 1, "-", "RERAISE"], [191, 16, 1, "-", "RERAISE"], [191, 16, 1, "-", "RESUME"], [191, 16, 1, "-", "RETURN_CONST"], [191, 16, 1, "-", "RETURN_GENERATOR"], [191, 16, 1, "-", "RETURN_VALUE"], [191, 16, 1, "-", "SEND"], [191, 16, 1, "-", "SETUP_ANNOTATIONS"], [191, 16, 1, "-", "SETUP_CLEANUP"], [191, 16, 1, "-", "SETUP_FINALLY"], [191, 16, 1, "-", "SETUP_WITH"], [191, 16, 1, "-", "SET_ADD"], [191, 16, 1, "-", "SET_UPDATE"], [353, 17, 1, "-", "STOP_ITERATION"], [191, 16, 1, "-", "STORE_ATTR"], [191, 16, 1, "-", "STORE_DEREF"], [191, 16, 1, "-", "STORE_FAST"], [191, 16, 1, "-", "STORE_GLOBAL"], [191, 16, 1, "-", "STORE_NAME"], [191, 16, 1, "-", "STORE_SLICE"], [191, 16, 1, "-", "STORE_SUBSCR"], [191, 16, 1, "-", "SWAP"], [191, 16, 1, "-", "UNARY_INVERT"], [191, 16, 1, "-", "UNARY_NEGATIVE"], [191, 16, 1, "-", "UNARY_NOT"], [191, 16, 1, "-", "UNPACK_EX"], [191, 16, 1, "-", "UNPACK_SEQUENCE"], [191, 16, 1, "-", "WITH_EXCEPT_START"], [191, 16, 1, "-", "YIELD_VALUE"], [297, 13, 1, "-", "alias"], [112, 18, 1, "to3fixer-apply", "apply"], [297, 13, 1, "-", "args"], [112, 18, 1, "to3fixer-asserts", "asserts"], [112, 18, 1, "to3fixer-basestring", "basestring"], [297, 13, 1, "-", "break"], [112, 18, 1, "to3fixer-buffer", "buffer"], [297, 13, 1, "-", "clear"], [297, 13, 1, "-", "commands"], [297, 13, 1, "-", "condition"], [297, 13, 1, "-", "continue"], [297, 13, 1, "-", "debug"], [112, 18, 1, "to3fixer-dict", "dict"], [297, 13, 1, "-", "disable"], [297, 13, 1, "-", "display"], [297, 13, 1, "-", "down"], [297, 13, 1, "-", "enable"], [112, 18, 1, "to3fixer-except", "except"], [112, 18, 1, "to3fixer-exec", "exec"], [112, 18, 1, "to3fixer-execfile", "execfile"], [112, 18, 1, "to3fixer-exitfunc", "exitfunc"], [112, 18, 1, "to3fixer-filter", "filter"], [112, 18, 1, "to3fixer-funcattrs", "funcattrs"], [112, 18, 1, "to3fixer-future", "future"], [112, 18, 1, "to3fixer-getcwdu", "getcwdu"], [112, 18, 1, "to3fixer-has_key", "has_key"], [297, 13, 1, "-", "help"], [112, 18, 1, "to3fixer-idioms", "idioms"], [297, 13, 1, "-", "ignore"], [112, 18, 1, "to3fixer-import", "import"], [112, 18, 1, "to3fixer-imports", "imports"], [112, 18, 1, "to3fixer-imports2", "imports2"], [112, 18, 1, "to3fixer-input", "input"], [297, 13, 1, "-", "interact"], [112, 18, 1, "to3fixer-intern", "intern"], [112, 18, 1, "to3fixer-isinstance", "isinstance"], [112, 18, 1, "to3fixer-itertools", "itertools"], [112, 18, 1, "to3fixer-itertools_imports", "itertools_imports"], [297, 13, 1, "-", "jump"], [297, 13, 1, "-", "list"], [297, 13, 1, "-", "ll"], [112, 18, 1, "to3fixer-long", "long"], [112, 18, 1, "to3fixer-map", "map"], [112, 18, 1, "to3fixer-metaclass", "metaclass"], [112, 18, 1, "to3fixer-methodattrs", "methodattrs"], [112, 18, 1, "to3fixer-ne", "ne"], [112, 18, 1, "to3fixer-next", "next"], [297, 13, 1, "-", "next"], [112, 18, 1, "to3fixer-nonzero", "nonzero"], [112, 18, 1, "to3fixer-numliterals", "numliterals"], [112, 18, 1, "to3fixer-operator", "operator"], [297, 13, 1, "-", "p"], [112, 18, 1, "to3fixer-paren", "paren"], [297, 13, 1, "-", "pp"], [112, 18, 1, "to3fixer-print", "print"], [297, 13, 1, "-", "quit"], [112, 18, 1, "to3fixer-raise", "raise"], [112, 18, 1, "to3fixer-raw_input", "raw_input"], [112, 18, 1, "to3fixer-reduce", "reduce"], [112, 18, 1, "to3fixer-reload", "reload"], [112, 18, 1, "to3fixer-renames", "renames"], [112, 18, 1, "to3fixer-repr", "repr"], [297, 13, 1, "-", "restart"], [297, 13, 1, "-", "return"], [297, 13, 1, "-", "retval"], [297, 13, 1, "-", "run"], [112, 18, 1, "to3fixer-set_literal", "set_literal"], [297, 13, 1, "-", "source"], [112, 18, 1, "to3fixer-standarderror", "standarderror"], [297, 13, 1, "-", "step"], [112, 18, 1, "to3fixer-sys_exc", "sys_exc"], [297, 13, 1, "-", "tbreak"], [112, 18, 1, "to3fixer-throw", "throw"], [112, 18, 1, "to3fixer-tuple_params", "tuple_params"], [112, 18, 1, "to3fixer-types", "types"], [297, 13, 1, "-", "unalias"], [297, 13, 1, "-", "undisplay"], [112, 18, 1, "to3fixer-unicode", "unicode"], [297, 13, 1, "-", "until"], [297, 13, 1, "-", "up"], [112, 18, 1, "to3fixer-urllib", "urllib"], [297, 13, 1, "-", "whatis"], [297, 13, 1, "-", "where"], [112, 18, 1, "to3fixer-ws_comma", "ws_comma"], [112, 18, 1, "to3fixer-xrange", "xrange"], [112, 18, 1, "to3fixer-xreadlines", "xreadlines"], [112, 18, 1, "to3fixer-zip", "zip"]], "BaseException": [[213, 7, 1, "", "__cause__"], [213, 7, 1, "", "__context__"], [213, 7, 1, "", "__notes__"], [213, 7, 1, "", "__suppress_context__"], [213, 7, 1, "", "__traceback__"], [213, 8, 1, "", "add_note"], [213, 7, 1, "", "args"], [213, 8, 1, "", "with_traceback"]], "BaseExceptionGroup": [[213, 8, 1, "", "derive"], [213, 7, 1, "", "exceptions"], [213, 7, 1, "", "message"], [213, 8, 1, "", "split"], [213, 8, 1, "", "subgroup"]], "BlockingIOError": [[213, 7, 1, "", "characters_written"]], "ImportError": [[213, 7, 1, "", "name"], [213, 7, 1, "", "path"]], "OSError": [[213, 7, 1, "", "errno"], [213, 7, 1, "", "filename"], [213, 7, 1, "", "filename2"], [213, 7, 1, "", "strerror"], [213, 7, 1, "", "winerror"]], "PyAIter_Check": [[36, 3, 1, "c.PyAIter_Check", "o"]], "PyAnySet_Check": [[55, 3, 1, "c.PyAnySet_Check", "p"]], "PyAnySet_CheckExact": [[55, 3, 1, "c.PyAnySet_CheckExact", "p"]], "PyArg_Parse": [[5, 3, 1, "c.PyArg_Parse", "args"], [5, 3, 1, "c.PyArg_Parse", "format"]], "PyArg_ParseTuple": [[5, 3, 1, "c.PyArg_ParseTuple", "args"], [5, 3, 1, "c.PyArg_ParseTuple", "format"]], "PyArg_ParseTupleAndKeywords": [[5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "args"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "format"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "keywords"], [5, 3, 1, "c.PyArg_ParseTupleAndKeywords", "kw"]], "PyArg_UnpackTuple": [[5, 3, 1, "c.PyArg_UnpackTuple", "args"], [5, 3, 1, "c.PyArg_UnpackTuple", "max"], [5, 3, 1, "c.PyArg_UnpackTuple", "min"], [5, 3, 1, "c.PyArg_UnpackTuple", "name"]], "PyArg_VaParse": [[5, 3, 1, "c.PyArg_VaParse", "args"], [5, 3, 1, "c.PyArg_VaParse", "format"], [5, 3, 1, "c.PyArg_VaParse", "vargs"]], "PyArg_VaParseTupleAndKeywords": [[5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "args"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "format"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "keywords"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "kw"], [5, 3, 1, "c.PyArg_VaParseTupleAndKeywords", "vargs"]], "PyAsyncMethods": [[63, 0, 1, "c.PyAsyncMethods.am_aiter", "am_aiter"], [63, 0, 1, "c.PyAsyncMethods.am_anext", "am_anext"], [63, 0, 1, "c.PyAsyncMethods.am_await", "am_await"], [63, 0, 1, "c.PyAsyncMethods.am_send", "am_send"]], "PyBool_Check": [[6, 3, 1, "c.PyBool_Check", "o"]], "PyBool_FromLong": [[6, 3, 1, "c.PyBool_FromLong", "v"]], "PyBufferProcs": [[63, 0, 1, "c.PyBufferProcs.bf_getbuffer", "bf_getbuffer"], [63, 0, 1, "c.PyBufferProcs.bf_releasebuffer", "bf_releasebuffer"]], "PyBuffer_FillContiguousStrides": [[7, 3, 1, "c.PyBuffer_FillContiguousStrides", "itemsize"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "ndims"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "order"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "shape"], [7, 3, 1, "c.PyBuffer_FillContiguousStrides", "strides"]], "PyBuffer_FillInfo": [[7, 3, 1, "c.PyBuffer_FillInfo", "buf"], [7, 3, 1, "c.PyBuffer_FillInfo", "exporter"], [7, 3, 1, "c.PyBuffer_FillInfo", "flags"], [7, 3, 1, "c.PyBuffer_FillInfo", "len"], [7, 3, 1, "c.PyBuffer_FillInfo", "readonly"], [7, 3, 1, "c.PyBuffer_FillInfo", "view"]], "PyBuffer_FromContiguous": [[7, 3, 1, "c.PyBuffer_FromContiguous", "buf"], [7, 3, 1, "c.PyBuffer_FromContiguous", "fort"], [7, 3, 1, "c.PyBuffer_FromContiguous", "len"], [7, 3, 1, "c.PyBuffer_FromContiguous", "view"]], "PyBuffer_GetPointer": [[7, 3, 1, "c.PyBuffer_GetPointer", "indices"], [7, 3, 1, "c.PyBuffer_GetPointer", "view"]], "PyBuffer_IsContiguous": [[7, 3, 1, "c.PyBuffer_IsContiguous", "order"], [7, 3, 1, "c.PyBuffer_IsContiguous", "view"]], "PyBuffer_Release": [[7, 3, 1, "c.PyBuffer_Release", "view"]], "PyBuffer_SizeFromFormat": [[7, 3, 1, "c.PyBuffer_SizeFromFormat", "format"]], "PyBuffer_ToContiguous": [[7, 3, 1, "c.PyBuffer_ToContiguous", "buf"], [7, 3, 1, "c.PyBuffer_ToContiguous", "len"], [7, 3, 1, "c.PyBuffer_ToContiguous", "order"], [7, 3, 1, "c.PyBuffer_ToContiguous", "src"]], "PyByteArray_AS_STRING": [[8, 3, 1, "c.PyByteArray_AS_STRING", "bytearray"]], "PyByteArray_AsString": [[8, 3, 1, "c.PyByteArray_AsString", "bytearray"]], "PyByteArray_Check": [[8, 3, 1, "c.PyByteArray_Check", "o"]], "PyByteArray_CheckExact": [[8, 3, 1, "c.PyByteArray_CheckExact", "o"]], "PyByteArray_Concat": [[8, 3, 1, "c.PyByteArray_Concat", "a"], [8, 3, 1, "c.PyByteArray_Concat", "b"]], "PyByteArray_FromObject": [[8, 3, 1, "c.PyByteArray_FromObject", "o"]], "PyByteArray_FromStringAndSize": [[8, 3, 1, "c.PyByteArray_FromStringAndSize", "len"], [8, 3, 1, "c.PyByteArray_FromStringAndSize", "string"]], "PyByteArray_GET_SIZE": [[8, 3, 1, "c.PyByteArray_GET_SIZE", "bytearray"]], "PyByteArray_Resize": [[8, 3, 1, "c.PyByteArray_Resize", "bytearray"], [8, 3, 1, "c.PyByteArray_Resize", "len"]], "PyByteArray_Size": [[8, 3, 1, "c.PyByteArray_Size", "bytearray"]], "PyBytes_AS_STRING": [[9, 3, 1, "c.PyBytes_AS_STRING", "string"]], "PyBytes_AsString": [[9, 3, 1, "c.PyBytes_AsString", "o"]], "PyBytes_AsStringAndSize": [[9, 3, 1, "c.PyBytes_AsStringAndSize", "buffer"], [9, 3, 1, "c.PyBytes_AsStringAndSize", "length"], [9, 3, 1, "c.PyBytes_AsStringAndSize", "obj"]], "PyBytes_Check": [[9, 3, 1, "c.PyBytes_Check", "o"]], "PyBytes_CheckExact": [[9, 3, 1, "c.PyBytes_CheckExact", "o"]], "PyBytes_Concat": [[9, 3, 1, "c.PyBytes_Concat", "bytes"], [9, 3, 1, "c.PyBytes_Concat", "newpart"]], "PyBytes_ConcatAndDel": [[9, 3, 1, "c.PyBytes_ConcatAndDel", "bytes"], [9, 3, 1, "c.PyBytes_ConcatAndDel", "newpart"]], "PyBytes_FromFormat": [[9, 3, 1, "c.PyBytes_FromFormat", "format"]], "PyBytes_FromFormatV": [[9, 3, 1, "c.PyBytes_FromFormatV", "format"], [9, 3, 1, "c.PyBytes_FromFormatV", "vargs"]], "PyBytes_FromObject": [[9, 3, 1, "c.PyBytes_FromObject", "o"]], "PyBytes_FromString": [[9, 3, 1, "c.PyBytes_FromString", "v"]], "PyBytes_FromStringAndSize": [[9, 3, 1, "c.PyBytes_FromStringAndSize", "len"], [9, 3, 1, "c.PyBytes_FromStringAndSize", "v"]], "PyBytes_GET_SIZE": [[9, 3, 1, "c.PyBytes_GET_SIZE", "o"]], "PyBytes_Size": [[9, 3, 1, "c.PyBytes_Size", "o"]], "PyCFunction_New": [[58, 3, 1, "c.PyCFunction_New", "ml"], [58, 3, 1, "c.PyCFunction_New", "self"]], "PyCFunction_NewEx": [[58, 3, 1, "c.PyCFunction_NewEx", "ml"], [58, 3, 1, "c.PyCFunction_NewEx", "module"], [58, 3, 1, "c.PyCFunction_NewEx", "self"]], "PyCMethod_New": [[58, 3, 1, "c.PyCMethod_New", "cls"], [58, 3, 1, "c.PyCMethod_New", "ml"], [58, 3, 1, "c.PyCMethod_New", "module"], [58, 3, 1, "c.PyCMethod_New", "self"]], "PyCallIter_Check": [[37, 3, 1, "c.PyCallIter_Check", "op"]], "PyCallIter_New": [[37, 3, 1, "c.PyCallIter_New", "callable"], [37, 3, 1, "c.PyCallIter_New", "sentinel"]], "PyCallable_Check": [[10, 3, 1, "c.PyCallable_Check", "o"]], "PyCapsule_CheckExact": [[11, 3, 1, "c.PyCapsule_CheckExact", "p"]], "PyCapsule_GetContext": [[11, 3, 1, "c.PyCapsule_GetContext", "capsule"]], "PyCapsule_GetDestructor": [[11, 3, 1, "c.PyCapsule_GetDestructor", "capsule"]], "PyCapsule_GetName": [[11, 3, 1, "c.PyCapsule_GetName", "capsule"]], "PyCapsule_GetPointer": [[11, 3, 1, "c.PyCapsule_GetPointer", "capsule"], [11, 3, 1, "c.PyCapsule_GetPointer", "name"]], "PyCapsule_Import": [[11, 3, 1, "c.PyCapsule_Import", "name"], [11, 3, 1, "c.PyCapsule_Import", "no_block"]], "PyCapsule_IsValid": [[11, 3, 1, "c.PyCapsule_IsValid", "capsule"], [11, 3, 1, "c.PyCapsule_IsValid", "name"]], "PyCapsule_New": [[11, 3, 1, "c.PyCapsule_New", "destructor"], [11, 3, 1, "c.PyCapsule_New", "name"], [11, 3, 1, "c.PyCapsule_New", "pointer"]], "PyCapsule_SetContext": [[11, 3, 1, "c.PyCapsule_SetContext", "capsule"], [11, 3, 1, "c.PyCapsule_SetContext", "context"]], "PyCapsule_SetDestructor": [[11, 3, 1, "c.PyCapsule_SetDestructor", "capsule"], [11, 3, 1, "c.PyCapsule_SetDestructor", "destructor"]], "PyCapsule_SetName": [[11, 3, 1, "c.PyCapsule_SetName", "capsule"], [11, 3, 1, "c.PyCapsule_SetName", "name"]], "PyCapsule_SetPointer": [[11, 3, 1, "c.PyCapsule_SetPointer", "capsule"], [11, 3, 1, "c.PyCapsule_SetPointer", "pointer"]], "PyCell_Check": [[12, 3, 1, "c.PyCell_Check", "ob"]], "PyCell_GET": [[12, 3, 1, "c.PyCell_GET", "cell"]], "PyCell_Get": [[12, 3, 1, "c.PyCell_Get", "cell"]], "PyCell_New": [[12, 3, 1, "c.PyCell_New", "ob"]], "PyCell_SET": [[12, 3, 1, "c.PyCell_SET", "cell"], [12, 3, 1, "c.PyCell_SET", "value"]], "PyCell_Set": [[12, 3, 1, "c.PyCell_Set", "cell"], [12, 3, 1, "c.PyCell_Set", "value"]], "PyCode_AddWatcher": [[13, 3, 1, "c.PyCode_AddWatcher", "callback"]], "PyCode_Addr2Line": [[13, 3, 1, "c.PyCode_Addr2Line", "byte_offset"], [13, 3, 1, "c.PyCode_Addr2Line", "co"]], "PyCode_Addr2Location": [[13, 3, 1, "c.PyCode_Addr2Location", "byte_offset"], [13, 3, 1, "c.PyCode_Addr2Location", "co"], [13, 3, 1, "c.PyCode_Addr2Location", "end_column"], [13, 3, 1, "c.PyCode_Addr2Location", "end_line"], [13, 3, 1, "c.PyCode_Addr2Location", "start_column"], [13, 3, 1, "c.PyCode_Addr2Location", "start_line"]], "PyCode_Check": [[13, 3, 1, "c.PyCode_Check", "co"]], "PyCode_ClearWatcher": [[13, 3, 1, "c.PyCode_ClearWatcher", "watcher_id"]], "PyCode_GetCellvars": [[13, 3, 1, "c.PyCode_GetCellvars", "co"]], "PyCode_GetCode": [[13, 3, 1, "c.PyCode_GetCode", "co"]], "PyCode_GetFirstFree": [[13, 3, 1, "c.PyCode_GetFirstFree", "co"]], "PyCode_GetFreevars": [[13, 3, 1, "c.PyCode_GetFreevars", "co"]], "PyCode_GetNumFree": [[13, 3, 1, "c.PyCode_GetNumFree", "co"]], "PyCode_GetVarnames": [[13, 3, 1, "c.PyCode_GetVarnames", "co"]], "PyCode_NewEmpty": [[13, 3, 1, "c.PyCode_NewEmpty", "filename"], [13, 3, 1, "c.PyCode_NewEmpty", "firstlineno"], [13, 3, 1, "c.PyCode_NewEmpty", "funcname"]], "PyCodec_BackslashReplaceErrors": [[14, 3, 1, "c.PyCodec_BackslashReplaceErrors", "exc"]], "PyCodec_Decode": [[14, 3, 1, "c.PyCodec_Decode", "encoding"], [14, 3, 1, "c.PyCodec_Decode", "errors"], [14, 3, 1, "c.PyCodec_Decode", "object"]], "PyCodec_Decoder": [[14, 3, 1, "c.PyCodec_Decoder", "encoding"]], "PyCodec_Encode": [[14, 3, 1, "c.PyCodec_Encode", "encoding"], [14, 3, 1, "c.PyCodec_Encode", "errors"], [14, 3, 1, "c.PyCodec_Encode", "object"]], "PyCodec_Encoder": [[14, 3, 1, "c.PyCodec_Encoder", "encoding"]], "PyCodec_IgnoreErrors": [[14, 3, 1, "c.PyCodec_IgnoreErrors", "exc"]], "PyCodec_IncrementalDecoder": [[14, 3, 1, "c.PyCodec_IncrementalDecoder", "encoding"], [14, 3, 1, "c.PyCodec_IncrementalDecoder", "errors"]], "PyCodec_IncrementalEncoder": [[14, 3, 1, "c.PyCodec_IncrementalEncoder", "encoding"], [14, 3, 1, "c.PyCodec_IncrementalEncoder", "errors"]], "PyCodec_KnownEncoding": [[14, 3, 1, "c.PyCodec_KnownEncoding", "encoding"]], "PyCodec_LookupError": [[14, 3, 1, "c.PyCodec_LookupError", "name"]], "PyCodec_NameReplaceErrors": [[14, 3, 1, "c.PyCodec_NameReplaceErrors", "exc"]], "PyCodec_Register": [[14, 3, 1, "c.PyCodec_Register", "search_function"]], "PyCodec_RegisterError": [[14, 3, 1, "c.PyCodec_RegisterError", "error"], [14, 3, 1, "c.PyCodec_RegisterError", "name"]], "PyCodec_ReplaceErrors": [[14, 3, 1, "c.PyCodec_ReplaceErrors", "exc"]], "PyCodec_StreamReader": [[14, 3, 1, "c.PyCodec_StreamReader", "encoding"], [14, 3, 1, "c.PyCodec_StreamReader", "errors"], [14, 3, 1, "c.PyCodec_StreamReader", "stream"]], "PyCodec_StreamWriter": [[14, 3, 1, "c.PyCodec_StreamWriter", "encoding"], [14, 3, 1, "c.PyCodec_StreamWriter", "errors"], [14, 3, 1, "c.PyCodec_StreamWriter", "stream"]], "PyCodec_StrictErrors": [[14, 3, 1, "c.PyCodec_StrictErrors", "exc"]], "PyCodec_Unregister": [[14, 3, 1, "c.PyCodec_Unregister", "search_function"]], "PyCodec_XMLCharRefReplaceErrors": [[14, 3, 1, "c.PyCodec_XMLCharRefReplaceErrors", "exc"]], "PyCompilerFlags": [[66, 0, 1, "c.PyCompilerFlags.cf_feature_version", "cf_feature_version"], [66, 0, 1, "c.PyCompilerFlags.cf_flags", "cf_flags"]], "PyComplex_AsCComplex": [[15, 3, 1, "c.PyComplex_AsCComplex", "op"]], "PyComplex_Check": [[15, 3, 1, "c.PyComplex_Check", "p"]], "PyComplex_CheckExact": [[15, 3, 1, "c.PyComplex_CheckExact", "p"]], "PyComplex_FromCComplex": [[15, 3, 1, "c.PyComplex_FromCComplex", "v"]], "PyComplex_FromDoubles": [[15, 3, 1, "c.PyComplex_FromDoubles", "imag"], [15, 3, 1, "c.PyComplex_FromDoubles", "real"]], "PyComplex_ImagAsDouble": [[15, 3, 1, "c.PyComplex_ImagAsDouble", "op"]], "PyComplex_RealAsDouble": [[15, 3, 1, "c.PyComplex_RealAsDouble", "op"]], "PyConfig": [[34, 0, 1, "c.PyConfig.argv", "argv"], [34, 0, 1, "c.PyConfig.base_exec_prefix", "base_exec_prefix"], [34, 0, 1, "c.PyConfig.base_executable", "base_executable"], [34, 0, 1, "c.PyConfig.base_prefix", "base_prefix"], [34, 0, 1, "c.PyConfig.buffered_stdio", "buffered_stdio"], [34, 0, 1, "c.PyConfig.bytes_warning", "bytes_warning"], [34, 0, 1, "c.PyConfig.check_hash_pycs_mode", "check_hash_pycs_mode"], [34, 0, 1, "c.PyConfig.code_debug_ranges", "code_debug_ranges"], [34, 0, 1, "c.PyConfig.configure_c_stdio", "configure_c_stdio"], [34, 0, 1, "c.PyConfig.dev_mode", "dev_mode"], [34, 0, 1, "c.PyConfig.dump_refs", "dump_refs"], [34, 0, 1, "c.PyConfig.exec_prefix", "exec_prefix"], [34, 0, 1, "c.PyConfig.executable", "executable"], [34, 0, 1, "c.PyConfig.faulthandler", "faulthandler"], [34, 0, 1, "c.PyConfig.filesystem_encoding", "filesystem_encoding"], [34, 0, 1, "c.PyConfig.filesystem_errors", "filesystem_errors"], [34, 0, 1, "c.PyConfig.hash_seed", "hash_seed"], [34, 0, 1, "c.PyConfig.home", "home"], [34, 0, 1, "c.PyConfig.import_time", "import_time"], [34, 0, 1, "c.PyConfig.inspect", "inspect"], [34, 0, 1, "c.PyConfig.install_signal_handlers", "install_signal_handlers"], [34, 0, 1, "c.PyConfig.int_max_str_digits", "int_max_str_digits"], [34, 0, 1, "c.PyConfig.interactive", "interactive"], [34, 0, 1, "c.PyConfig.isolated", "isolated"], [34, 0, 1, "c.PyConfig.legacy_windows_stdio", "legacy_windows_stdio"], [34, 0, 1, "c.PyConfig.malloc_stats", "malloc_stats"], [34, 0, 1, "c.PyConfig.module_search_paths", "module_search_paths"], [34, 0, 1, "c.PyConfig.module_search_paths_set", "module_search_paths_set"], [34, 0, 1, "c.PyConfig.optimization_level", "optimization_level"], [34, 0, 1, "c.PyConfig.orig_argv", "orig_argv"], [34, 0, 1, "c.PyConfig.parse_argv", "parse_argv"], [34, 0, 1, "c.PyConfig.parser_debug", "parser_debug"], [34, 0, 1, "c.PyConfig.pathconfig_warnings", "pathconfig_warnings"], [34, 0, 1, "c.PyConfig.perf_profiling", "perf_profiling"], [34, 0, 1, "c.PyConfig.platlibdir", "platlibdir"], [34, 0, 1, "c.PyConfig.prefix", "prefix"], [34, 0, 1, "c.PyConfig.program_name", "program_name"], [34, 0, 1, "c.PyConfig.pycache_prefix", "pycache_prefix"], [34, 0, 1, "c.PyConfig.pythonpath_env", "pythonpath_env"], [34, 0, 1, "c.PyConfig.quiet", "quiet"], [34, 0, 1, "c.PyConfig.run_command", "run_command"], [34, 0, 1, "c.PyConfig.run_filename", "run_filename"], [34, 0, 1, "c.PyConfig.run_module", "run_module"], [34, 0, 1, "c.PyConfig.safe_path", "safe_path"], [34, 0, 1, "c.PyConfig.show_ref_count", "show_ref_count"], [34, 0, 1, "c.PyConfig.site_import", "site_import"], [34, 0, 1, "c.PyConfig.skip_source_first_line", "skip_source_first_line"], [34, 0, 1, "c.PyConfig.stdio_encoding", "stdio_encoding"], [34, 0, 1, "c.PyConfig.stdio_errors", "stdio_errors"], [34, 0, 1, "c.PyConfig.tracemalloc", "tracemalloc"], [34, 0, 1, "c.PyConfig.use_environment", "use_environment"], [34, 0, 1, "c.PyConfig.use_hash_seed", "use_hash_seed"], [34, 0, 1, "c.PyConfig.user_site_directory", "user_site_directory"], [34, 0, 1, "c.PyConfig.verbose", "verbose"], [34, 0, 1, "c.PyConfig.warn_default_encoding", "warn_default_encoding"], [34, 0, 1, "c.PyConfig.warnoptions", "warnoptions"], [34, 0, 1, "c.PyConfig.write_bytecode", "write_bytecode"], [34, 0, 1, "c.PyConfig.xoptions", "xoptions"]], "PyConfig_Clear": [[34, 3, 1, "c.PyConfig_Clear", "config"]], "PyConfig_InitIsolatedConfig": [[34, 3, 1, "c.PyConfig_InitIsolatedConfig", "config"]], "PyConfig_InitPythonConfig": [[34, 3, 1, "c.PyConfig_InitPythonConfig", "config"]], "PyConfig_Read": [[34, 3, 1, "c.PyConfig_Read", "config"]], "PyConfig_SetArgv": [[34, 3, 1, "c.PyConfig_SetArgv", "argc"], [34, 3, 1, "c.PyConfig_SetArgv", "argv"], [34, 3, 1, "c.PyConfig_SetArgv", "config"]], "PyConfig_SetBytesArgv": [[34, 3, 1, "c.PyConfig_SetBytesArgv", "argc"], [34, 3, 1, "c.PyConfig_SetBytesArgv", "argv"], [34, 3, 1, "c.PyConfig_SetBytesArgv", "config"]], "PyConfig_SetBytesString": [[34, 3, 1, "c.PyConfig_SetBytesString", "config"], [34, 3, 1, "c.PyConfig_SetBytesString", "config_str"], [34, 3, 1, "c.PyConfig_SetBytesString", "str"]], "PyConfig_SetString": [[34, 3, 1, "c.PyConfig_SetString", "config"], [34, 3, 1, "c.PyConfig_SetString", "config_str"], [34, 3, 1, "c.PyConfig_SetString", "str"]], "PyConfig_SetWideStringList": [[34, 3, 1, "c.PyConfig_SetWideStringList", "config"], [34, 3, 1, "c.PyConfig_SetWideStringList", "items"], [34, 3, 1, "c.PyConfig_SetWideStringList", "length"], [34, 3, 1, "c.PyConfig_SetWideStringList", "list"]], "PyContextToken_CheckExact": [[17, 3, 1, "c.PyContextToken_CheckExact", "o"]], "PyContextVar_CheckExact": [[17, 3, 1, "c.PyContextVar_CheckExact", "o"]], "PyContextVar_Get": [[17, 3, 1, "c.PyContextVar_Get", "default_value"], [17, 3, 1, "c.PyContextVar_Get", "value"], [17, 3, 1, "c.PyContextVar_Get", "var"]], "PyContextVar_New": [[17, 3, 1, "c.PyContextVar_New", "def"], [17, 3, 1, "c.PyContextVar_New", "name"]], "PyContextVar_Reset": [[17, 3, 1, "c.PyContextVar_Reset", "token"], [17, 3, 1, "c.PyContextVar_Reset", "var"]], "PyContextVar_Set": [[17, 3, 1, "c.PyContextVar_Set", "value"], [17, 3, 1, "c.PyContextVar_Set", "var"]], "PyContext_CheckExact": [[17, 3, 1, "c.PyContext_CheckExact", "o"]], "PyContext_Copy": [[17, 3, 1, "c.PyContext_Copy", "ctx"]], "PyContext_Enter": [[17, 3, 1, "c.PyContext_Enter", "ctx"]], "PyContext_Exit": [[17, 3, 1, "c.PyContext_Exit", "ctx"]], "PyCoro_CheckExact": [[19, 3, 1, "c.PyCoro_CheckExact", "ob"]], "PyCoro_New": [[19, 3, 1, "c.PyCoro_New", "frame"], [19, 3, 1, "c.PyCoro_New", "name"], [19, 3, 1, "c.PyCoro_New", "qualname"]], "PyDateTime_Check": [[20, 3, 1, "c.PyDateTime_Check", "ob"]], "PyDateTime_CheckExact": [[20, 3, 1, "c.PyDateTime_CheckExact", "ob"]], "PyDateTime_DATE_GET_FOLD": [[20, 3, 1, "c.PyDateTime_DATE_GET_FOLD", "o"]], "PyDateTime_DATE_GET_HOUR": [[20, 3, 1, "c.PyDateTime_DATE_GET_HOUR", "o"]], "PyDateTime_DATE_GET_MICROSECOND": [[20, 3, 1, "c.PyDateTime_DATE_GET_MICROSECOND", "o"]], "PyDateTime_DATE_GET_MINUTE": [[20, 3, 1, "c.PyDateTime_DATE_GET_MINUTE", "o"]], "PyDateTime_DATE_GET_SECOND": [[20, 3, 1, "c.PyDateTime_DATE_GET_SECOND", "o"]], "PyDateTime_DATE_GET_TZINFO": [[20, 3, 1, "c.PyDateTime_DATE_GET_TZINFO", "o"]], "PyDateTime_DELTA_GET_DAYS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_DAYS", "o"]], "PyDateTime_DELTA_GET_MICROSECONDS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_MICROSECONDS", "o"]], "PyDateTime_DELTA_GET_SECONDS": [[20, 3, 1, "c.PyDateTime_DELTA_GET_SECONDS", "o"]], "PyDateTime_FromDateAndTime": [[20, 3, 1, "c.PyDateTime_FromDateAndTime", "day"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "hour"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "minute"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "month"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "second"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "usecond"], [20, 3, 1, "c.PyDateTime_FromDateAndTime", "year"]], "PyDateTime_FromDateAndTimeAndFold": [[20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "day"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "fold"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "hour"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "minute"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "month"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "second"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "usecond"], [20, 3, 1, "c.PyDateTime_FromDateAndTimeAndFold", "year"]], "PyDateTime_FromTimestamp": [[20, 3, 1, "c.PyDateTime_FromTimestamp", "args"]], "PyDateTime_GET_DAY": [[20, 3, 1, "c.PyDateTime_GET_DAY", "o"]], "PyDateTime_GET_MONTH": [[20, 3, 1, "c.PyDateTime_GET_MONTH", "o"]], "PyDateTime_GET_YEAR": [[20, 3, 1, "c.PyDateTime_GET_YEAR", "o"]], "PyDateTime_TIME_GET_FOLD": [[20, 3, 1, "c.PyDateTime_TIME_GET_FOLD", "o"]], "PyDateTime_TIME_GET_HOUR": [[20, 3, 1, "c.PyDateTime_TIME_GET_HOUR", "o"]], "PyDateTime_TIME_GET_MICROSECOND": [[20, 3, 1, "c.PyDateTime_TIME_GET_MICROSECOND", "o"]], "PyDateTime_TIME_GET_MINUTE": [[20, 3, 1, "c.PyDateTime_TIME_GET_MINUTE", "o"]], "PyDateTime_TIME_GET_SECOND": [[20, 3, 1, "c.PyDateTime_TIME_GET_SECOND", "o"]], "PyDateTime_TIME_GET_TZINFO": [[20, 3, 1, "c.PyDateTime_TIME_GET_TZINFO", "o"]], "PyDate_Check": [[20, 3, 1, "c.PyDate_Check", "ob"]], "PyDate_CheckExact": [[20, 3, 1, "c.PyDate_CheckExact", "ob"]], "PyDate_FromDate": [[20, 3, 1, "c.PyDate_FromDate", "day"], [20, 3, 1, "c.PyDate_FromDate", "month"], [20, 3, 1, "c.PyDate_FromDate", "year"]], "PyDate_FromTimestamp": [[20, 3, 1, "c.PyDate_FromTimestamp", "args"]], "PyDelta_Check": [[20, 3, 1, "c.PyDelta_Check", "ob"]], "PyDelta_CheckExact": [[20, 3, 1, "c.PyDelta_CheckExact", "ob"]], "PyDelta_FromDSU": [[20, 3, 1, "c.PyDelta_FromDSU", "days"], [20, 3, 1, "c.PyDelta_FromDSU", "seconds"], [20, 3, 1, "c.PyDelta_FromDSU", "useconds"]], "PyDescr_IsData": [[21, 3, 1, "c.PyDescr_IsData", "descr"]], "PyDescr_NewClassMethod": [[21, 3, 1, "c.PyDescr_NewClassMethod", "method"], [21, 3, 1, "c.PyDescr_NewClassMethod", "type"]], "PyDescr_NewGetSet": [[21, 3, 1, "c.PyDescr_NewGetSet", "getset"], [21, 3, 1, "c.PyDescr_NewGetSet", "type"]], "PyDescr_NewMember": [[21, 3, 1, "c.PyDescr_NewMember", "meth"], [21, 3, 1, "c.PyDescr_NewMember", "type"]], "PyDescr_NewMethod": [[21, 3, 1, "c.PyDescr_NewMethod", "meth"], [21, 3, 1, "c.PyDescr_NewMethod", "type"]], "PyDescr_NewWrapper": [[21, 3, 1, "c.PyDescr_NewWrapper", "type"], [21, 3, 1, "c.PyDescr_NewWrapper", "wrapped"], [21, 3, 1, "c.PyDescr_NewWrapper", "wrapper"]], "PyDictProxy_New": [[22, 3, 1, "c.PyDictProxy_New", "mapping"]], "PyDict_AddWatcher": [[22, 3, 1, "c.PyDict_AddWatcher", "callback"]], "PyDict_Check": [[22, 3, 1, "c.PyDict_Check", "p"]], "PyDict_CheckExact": [[22, 3, 1, "c.PyDict_CheckExact", "p"]], "PyDict_Clear": [[22, 3, 1, "c.PyDict_Clear", "p"]], "PyDict_ClearWatcher": [[22, 3, 1, "c.PyDict_ClearWatcher", "watcher_id"]], "PyDict_Contains": [[22, 3, 1, "c.PyDict_Contains", "key"], [22, 3, 1, "c.PyDict_Contains", "p"]], "PyDict_Copy": [[22, 3, 1, "c.PyDict_Copy", "p"]], "PyDict_DelItem": [[22, 3, 1, "c.PyDict_DelItem", "key"], [22, 3, 1, "c.PyDict_DelItem", "p"]], "PyDict_DelItemString": [[22, 3, 1, "c.PyDict_DelItemString", "key"], [22, 3, 1, "c.PyDict_DelItemString", "p"]], "PyDict_GetItem": [[22, 3, 1, "c.PyDict_GetItem", "key"], [22, 3, 1, "c.PyDict_GetItem", "p"]], "PyDict_GetItemString": [[22, 3, 1, "c.PyDict_GetItemString", "key"], [22, 3, 1, "c.PyDict_GetItemString", "p"]], "PyDict_GetItemWithError": [[22, 3, 1, "c.PyDict_GetItemWithError", "key"], [22, 3, 1, "c.PyDict_GetItemWithError", "p"]], "PyDict_Items": [[22, 3, 1, "c.PyDict_Items", "p"]], "PyDict_Keys": [[22, 3, 1, "c.PyDict_Keys", "p"]], "PyDict_Merge": [[22, 3, 1, "c.PyDict_Merge", "a"], [22, 3, 1, "c.PyDict_Merge", "b"], [22, 3, 1, "c.PyDict_Merge", "override"]], "PyDict_MergeFromSeq2": [[22, 3, 1, "c.PyDict_MergeFromSeq2", "a"], [22, 3, 1, "c.PyDict_MergeFromSeq2", "override"], [22, 3, 1, "c.PyDict_MergeFromSeq2", "seq2"]], "PyDict_Next": [[22, 3, 1, "c.PyDict_Next", "p"], [22, 3, 1, "c.PyDict_Next", "pkey"], [22, 3, 1, "c.PyDict_Next", "ppos"], [22, 3, 1, "c.PyDict_Next", "pvalue"]], "PyDict_SetDefault": [[22, 3, 1, "c.PyDict_SetDefault", "defaultobj"], [22, 3, 1, "c.PyDict_SetDefault", "key"], [22, 3, 1, "c.PyDict_SetDefault", "p"]], "PyDict_SetItem": [[22, 3, 1, "c.PyDict_SetItem", "key"], [22, 3, 1, "c.PyDict_SetItem", "p"], [22, 3, 1, "c.PyDict_SetItem", "val"]], "PyDict_SetItemString": [[22, 3, 1, "c.PyDict_SetItemString", "key"], [22, 3, 1, "c.PyDict_SetItemString", "p"], [22, 3, 1, "c.PyDict_SetItemString", "val"]], "PyDict_Size": [[22, 3, 1, "c.PyDict_Size", "p"]], "PyDict_Unwatch": [[22, 3, 1, "c.PyDict_Unwatch", "dict"], [22, 3, 1, "c.PyDict_Unwatch", "watcher_id"]], "PyDict_Update": [[22, 3, 1, "c.PyDict_Update", "a"], [22, 3, 1, "c.PyDict_Update", "b"]], "PyDict_Values": [[22, 3, 1, "c.PyDict_Values", "p"]], "PyDict_Watch": [[22, 3, 1, "c.PyDict_Watch", "dict"], [22, 3, 1, "c.PyDict_Watch", "watcher_id"]], "PyErr_DisplayException": [[23, 3, 1, "c.PyErr_DisplayException", "exc"]], "PyErr_ExceptionMatches": [[23, 3, 1, "c.PyErr_ExceptionMatches", "exc"]], "PyErr_Fetch": [[23, 3, 1, "c.PyErr_Fetch", "ptraceback"], [23, 3, 1, "c.PyErr_Fetch", "ptype"], [23, 3, 1, "c.PyErr_Fetch", "pvalue"]], "PyErr_Format": [[23, 3, 1, "c.PyErr_Format", "exception"], [23, 3, 1, "c.PyErr_Format", "format"]], "PyErr_FormatV": [[23, 3, 1, "c.PyErr_FormatV", "exception"], [23, 3, 1, "c.PyErr_FormatV", "format"], [23, 3, 1, "c.PyErr_FormatV", "vargs"]], "PyErr_GetExcInfo": [[23, 3, 1, "c.PyErr_GetExcInfo", "ptraceback"], [23, 3, 1, "c.PyErr_GetExcInfo", "ptype"], [23, 3, 1, "c.PyErr_GetExcInfo", "pvalue"]], "PyErr_GivenExceptionMatches": [[23, 3, 1, "c.PyErr_GivenExceptionMatches", "exc"], [23, 3, 1, "c.PyErr_GivenExceptionMatches", "given"]], "PyErr_NewException": [[23, 3, 1, "c.PyErr_NewException", "base"], [23, 3, 1, "c.PyErr_NewException", "dict"], [23, 3, 1, "c.PyErr_NewException", "name"]], "PyErr_NewExceptionWithDoc": [[23, 3, 1, "c.PyErr_NewExceptionWithDoc", "base"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "dict"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "doc"], [23, 3, 1, "c.PyErr_NewExceptionWithDoc", "name"]], "PyErr_NormalizeException": [[23, 3, 1, "c.PyErr_NormalizeException", "exc"], [23, 3, 1, "c.PyErr_NormalizeException", "tb"], [23, 3, 1, "c.PyErr_NormalizeException", "val"]], "PyErr_PrintEx": [[23, 3, 1, "c.PyErr_PrintEx", "set_sys_last_vars"]], "PyErr_ResourceWarning": [[23, 3, 1, "c.PyErr_ResourceWarning", "format"], [23, 3, 1, "c.PyErr_ResourceWarning", "source"], [23, 3, 1, "c.PyErr_ResourceWarning", "stack_level"]], "PyErr_Restore": [[23, 3, 1, "c.PyErr_Restore", "traceback"], [23, 3, 1, "c.PyErr_Restore", "type"], [23, 3, 1, "c.PyErr_Restore", "value"]], "PyErr_SetExcFromWindowsErr": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErr", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErr", "type"]], "PyErr_SetExcFromWindowsErrWithFilename": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilename", "type"]], "PyErr_SetExcFromWindowsErrWithFilenameObject": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObject", "type"]], "PyErr_SetExcFromWindowsErrWithFilenameObjects": [[23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "filename"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "filename2"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "ierr"], [23, 3, 1, "c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "type"]], "PyErr_SetExcInfo": [[23, 3, 1, "c.PyErr_SetExcInfo", "traceback"], [23, 3, 1, "c.PyErr_SetExcInfo", "type"], [23, 3, 1, "c.PyErr_SetExcInfo", "value"]], "PyErr_SetFromErrno": [[23, 3, 1, "c.PyErr_SetFromErrno", "type"]], "PyErr_SetFromErrnoWithFilename": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilename", "type"]], "PyErr_SetFromErrnoWithFilenameObject": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "filenameObject"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObject", "type"]], "PyErr_SetFromErrnoWithFilenameObjects": [[23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "filenameObject"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "filenameObject2"], [23, 3, 1, "c.PyErr_SetFromErrnoWithFilenameObjects", "type"]], "PyErr_SetFromWindowsErr": [[23, 3, 1, "c.PyErr_SetFromWindowsErr", "ierr"]], "PyErr_SetFromWindowsErrWithFilename": [[23, 3, 1, "c.PyErr_SetFromWindowsErrWithFilename", "filename"], [23, 3, 1, "c.PyErr_SetFromWindowsErrWithFilename", "ierr"]], "PyErr_SetHandledException": [[23, 3, 1, "c.PyErr_SetHandledException", "exc"]], "PyErr_SetImportError": [[23, 3, 1, "c.PyErr_SetImportError", "msg"], [23, 3, 1, "c.PyErr_SetImportError", "name"], [23, 3, 1, "c.PyErr_SetImportError", "path"]], "PyErr_SetImportErrorSubclass": [[23, 3, 1, "c.PyErr_SetImportErrorSubclass", "exception"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "msg"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "name"], [23, 3, 1, "c.PyErr_SetImportErrorSubclass", "path"]], "PyErr_SetInterruptEx": [[23, 3, 1, "c.PyErr_SetInterruptEx", "signum"]], "PyErr_SetNone": [[23, 3, 1, "c.PyErr_SetNone", "type"]], "PyErr_SetObject": [[23, 3, 1, "c.PyErr_SetObject", "type"], [23, 3, 1, "c.PyErr_SetObject", "value"]], "PyErr_SetRaisedException": [[23, 3, 1, "c.PyErr_SetRaisedException", "exc"]], "PyErr_SetString": [[23, 3, 1, "c.PyErr_SetString", "message"], [23, 3, 1, "c.PyErr_SetString", "type"]], "PyErr_SyntaxLocation": [[23, 3, 1, "c.PyErr_SyntaxLocation", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocation", "lineno"]], "PyErr_SyntaxLocationEx": [[23, 3, 1, "c.PyErr_SyntaxLocationEx", "col_offset"], [23, 3, 1, "c.PyErr_SyntaxLocationEx", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocationEx", "lineno"]], "PyErr_SyntaxLocationObject": [[23, 3, 1, "c.PyErr_SyntaxLocationObject", "col_offset"], [23, 3, 1, "c.PyErr_SyntaxLocationObject", "filename"], [23, 3, 1, "c.PyErr_SyntaxLocationObject", "lineno"]], "PyErr_WarnEx": [[23, 3, 1, "c.PyErr_WarnEx", "category"], [23, 3, 1, "c.PyErr_WarnEx", "message"], [23, 3, 1, "c.PyErr_WarnEx", "stack_level"]], "PyErr_WarnExplicit": [[23, 3, 1, "c.PyErr_WarnExplicit", "category"], [23, 3, 1, "c.PyErr_WarnExplicit", "filename"], [23, 3, 1, "c.PyErr_WarnExplicit", "lineno"], [23, 3, 1, "c.PyErr_WarnExplicit", "message"], [23, 3, 1, "c.PyErr_WarnExplicit", "module"], [23, 3, 1, "c.PyErr_WarnExplicit", "registry"]], "PyErr_WarnExplicitObject": [[23, 3, 1, "c.PyErr_WarnExplicitObject", "category"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "filename"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "lineno"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "message"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "module"], [23, 3, 1, "c.PyErr_WarnExplicitObject", "registry"]], "PyErr_WarnFormat": [[23, 3, 1, "c.PyErr_WarnFormat", "category"], [23, 3, 1, "c.PyErr_WarnFormat", "format"], [23, 3, 1, "c.PyErr_WarnFormat", "stack_level"]], "PyErr_WriteUnraisable": [[23, 3, 1, "c.PyErr_WriteUnraisable", "obj"]], "PyEval_AcquireThread": [[33, 3, 1, "c.PyEval_AcquireThread", "tstate"]], "PyEval_EvalCode": [[66, 3, 1, "c.PyEval_EvalCode", "co"], [66, 3, 1, "c.PyEval_EvalCode", "globals"], [66, 3, 1, "c.PyEval_EvalCode", "locals"]], "PyEval_EvalCodeEx": [[66, 3, 1, "c.PyEval_EvalCodeEx", "argcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "args"], [66, 3, 1, "c.PyEval_EvalCodeEx", "closure"], [66, 3, 1, "c.PyEval_EvalCodeEx", "co"], [66, 3, 1, "c.PyEval_EvalCodeEx", "defcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "defs"], [66, 3, 1, "c.PyEval_EvalCodeEx", "globals"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kwcount"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kwdefs"], [66, 3, 1, "c.PyEval_EvalCodeEx", "kws"], [66, 3, 1, "c.PyEval_EvalCodeEx", "locals"]], "PyEval_EvalFrame": [[66, 3, 1, "c.PyEval_EvalFrame", "f"]], "PyEval_EvalFrameEx": [[66, 3, 1, "c.PyEval_EvalFrameEx", "f"], [66, 3, 1, "c.PyEval_EvalFrameEx", "throwflag"]], "PyEval_GetFuncDesc": [[53, 3, 1, "c.PyEval_GetFuncDesc", "func"]], "PyEval_GetFuncName": [[53, 3, 1, "c.PyEval_GetFuncName", "func"]], "PyEval_MergeCompilerFlags": [[66, 3, 1, "c.PyEval_MergeCompilerFlags", "cf"]], "PyEval_ReleaseThread": [[33, 3, 1, "c.PyEval_ReleaseThread", "tstate"]], "PyEval_RestoreThread": [[33, 3, 1, "c.PyEval_RestoreThread", "tstate"]], "PyEval_SetProfile": [[33, 3, 1, "c.PyEval_SetProfile", "func"], [33, 3, 1, "c.PyEval_SetProfile", "obj"]], "PyEval_SetProfileAllThreads": [[33, 3, 1, "c.PyEval_SetProfileAllThreads", "func"], [33, 3, 1, "c.PyEval_SetProfileAllThreads", "obj"]], "PyEval_SetTrace": [[33, 3, 1, "c.PyEval_SetTrace", "func"], [33, 3, 1, "c.PyEval_SetTrace", "obj"]], "PyEval_SetTraceAllThreads": [[33, 3, 1, "c.PyEval_SetTraceAllThreads", "func"], [33, 3, 1, "c.PyEval_SetTraceAllThreads", "obj"]], "PyException_GetArgs": [[23, 3, 1, "c.PyException_GetArgs", "ex"]], "PyException_GetCause": [[23, 3, 1, "c.PyException_GetCause", "ex"]], "PyException_GetContext": [[23, 3, 1, "c.PyException_GetContext", "ex"]], "PyException_GetTraceback": [[23, 3, 1, "c.PyException_GetTraceback", "ex"]], "PyException_SetArgs": [[23, 3, 1, "c.PyException_SetArgs", "args"], [23, 3, 1, "c.PyException_SetArgs", "ex"]], "PyException_SetCause": [[23, 3, 1, "c.PyException_SetCause", "cause"], [23, 3, 1, "c.PyException_SetCause", "ex"]], "PyException_SetContext": [[23, 3, 1, "c.PyException_SetContext", "ctx"], [23, 3, 1, "c.PyException_SetContext", "ex"]], "PyException_SetTraceback": [[23, 3, 1, "c.PyException_SetTraceback", "ex"], [23, 3, 1, "c.PyException_SetTraceback", "tb"]], "PyFile_FromFd": [[24, 3, 1, "c.PyFile_FromFd", "buffering"], [24, 3, 1, "c.PyFile_FromFd", "closefd"], [24, 3, 1, "c.PyFile_FromFd", "encoding"], [24, 3, 1, "c.PyFile_FromFd", "errors"], [24, 3, 1, "c.PyFile_FromFd", "fd"], [24, 3, 1, "c.PyFile_FromFd", "mode"], [24, 3, 1, "c.PyFile_FromFd", "name"], [24, 3, 1, "c.PyFile_FromFd", "newline"]], "PyFile_GetLine": [[24, 3, 1, "c.PyFile_GetLine", "n"], [24, 3, 1, "c.PyFile_GetLine", "p"]], "PyFile_SetOpenCodeHook": [[24, 4, 1, "c.PyFile_SetOpenCodeHook.Py_OpenCodeHookFunction", "Py_OpenCodeHookFunction"], [24, 3, 1, "c.PyFile_SetOpenCodeHook", "handler"]], "PyFile_WriteObject": [[24, 3, 1, "c.PyFile_WriteObject", "flags"], [24, 3, 1, "c.PyFile_WriteObject", "obj"], [24, 3, 1, "c.PyFile_WriteObject", "p"]], "PyFile_WriteString": [[24, 3, 1, "c.PyFile_WriteString", "p"], [24, 3, 1, "c.PyFile_WriteString", "s"]], "PyFloat_AS_DOUBLE": [[25, 3, 1, "c.PyFloat_AS_DOUBLE", "pyfloat"]], "PyFloat_AsDouble": [[25, 3, 1, "c.PyFloat_AsDouble", "pyfloat"]], "PyFloat_Check": [[25, 3, 1, "c.PyFloat_Check", "p"]], "PyFloat_CheckExact": [[25, 3, 1, "c.PyFloat_CheckExact", "p"]], "PyFloat_FromDouble": [[25, 3, 1, "c.PyFloat_FromDouble", "v"]], "PyFloat_FromString": [[25, 3, 1, "c.PyFloat_FromString", "str"]], "PyFloat_Pack2": [[25, 3, 1, "c.PyFloat_Pack2", "le"], [25, 3, 1, "c.PyFloat_Pack2", "p"], [25, 3, 1, "c.PyFloat_Pack2", "x"]], "PyFloat_Pack4": [[25, 3, 1, "c.PyFloat_Pack4", "le"], [25, 3, 1, "c.PyFloat_Pack4", "p"], [25, 3, 1, "c.PyFloat_Pack4", "x"]], "PyFloat_Pack8": [[25, 3, 1, "c.PyFloat_Pack8", "le"], [25, 3, 1, "c.PyFloat_Pack8", "p"], [25, 3, 1, "c.PyFloat_Pack8", "x"]], "PyFloat_Unpack2": [[25, 3, 1, "c.PyFloat_Unpack2", "le"], [25, 3, 1, "c.PyFloat_Unpack2", "p"]], "PyFloat_Unpack4": [[25, 3, 1, "c.PyFloat_Unpack4", "le"], [25, 3, 1, "c.PyFloat_Unpack4", "p"]], "PyFloat_Unpack8": [[25, 3, 1, "c.PyFloat_Unpack8", "le"], [25, 3, 1, "c.PyFloat_Unpack8", "p"]], "PyFrame_Check": [[26, 3, 1, "c.PyFrame_Check", "obj"]], "PyFrame_GetBack": [[26, 3, 1, "c.PyFrame_GetBack", "frame"]], "PyFrame_GetBuiltins": [[26, 3, 1, "c.PyFrame_GetBuiltins", "frame"]], "PyFrame_GetCode": [[26, 3, 1, "c.PyFrame_GetCode", "frame"]], "PyFrame_GetGenerator": [[26, 3, 1, "c.PyFrame_GetGenerator", "frame"]], "PyFrame_GetGlobals": [[26, 3, 1, "c.PyFrame_GetGlobals", "frame"]], "PyFrame_GetLasti": [[26, 3, 1, "c.PyFrame_GetLasti", "frame"]], "PyFrame_GetLineNumber": [[26, 3, 1, "c.PyFrame_GetLineNumber", "frame"]], "PyFrame_GetLocals": [[26, 3, 1, "c.PyFrame_GetLocals", "frame"]], "PyFrame_GetVar": [[26, 3, 1, "c.PyFrame_GetVar", "frame"], [26, 3, 1, "c.PyFrame_GetVar", "name"]], "PyFrame_GetVarString": [[26, 3, 1, "c.PyFrame_GetVarString", "frame"], [26, 3, 1, "c.PyFrame_GetVarString", "name"]], "PyFrozenSet_Check": [[55, 3, 1, "c.PyFrozenSet_Check", "p"]], "PyFrozenSet_CheckExact": [[55, 3, 1, "c.PyFrozenSet_CheckExact", "p"]], "PyFrozenSet_New": [[55, 3, 1, "c.PyFrozenSet_New", "iterable"]], "PyFunction_AddWatcher": [[27, 3, 1, "c.PyFunction_AddWatcher", "callback"]], "PyFunction_Check": [[27, 3, 1, "c.PyFunction_Check", "o"]], "PyFunction_ClearWatcher": [[27, 3, 1, "c.PyFunction_ClearWatcher", "watcher_id"]], "PyFunction_GetAnnotations": [[27, 3, 1, "c.PyFunction_GetAnnotations", "op"]], "PyFunction_GetClosure": [[27, 3, 1, "c.PyFunction_GetClosure", "op"]], "PyFunction_GetCode": [[27, 3, 1, "c.PyFunction_GetCode", "op"]], "PyFunction_GetDefaults": [[27, 3, 1, "c.PyFunction_GetDefaults", "op"]], "PyFunction_GetGlobals": [[27, 3, 1, "c.PyFunction_GetGlobals", "op"]], "PyFunction_GetModule": [[27, 3, 1, "c.PyFunction_GetModule", "op"]], "PyFunction_New": [[27, 3, 1, "c.PyFunction_New", "code"], [27, 3, 1, "c.PyFunction_New", "globals"]], "PyFunction_NewWithQualName": [[27, 3, 1, "c.PyFunction_NewWithQualName", "code"], [27, 3, 1, "c.PyFunction_NewWithQualName", "globals"], [27, 3, 1, "c.PyFunction_NewWithQualName", "qualname"]], "PyFunction_SetAnnotations": [[27, 3, 1, "c.PyFunction_SetAnnotations", "annotations"], [27, 3, 1, "c.PyFunction_SetAnnotations", "op"]], "PyFunction_SetClosure": [[27, 3, 1, "c.PyFunction_SetClosure", "closure"], [27, 3, 1, "c.PyFunction_SetClosure", "op"]], "PyFunction_SetDefaults": [[27, 3, 1, "c.PyFunction_SetDefaults", "defaults"], [27, 3, 1, "c.PyFunction_SetDefaults", "op"]], "PyFunction_SetVectorcall": [[27, 3, 1, "c.PyFunction_SetVectorcall", "func"], [27, 3, 1, "c.PyFunction_SetVectorcall", "vectorcall"]], "PyGen_Check": [[29, 3, 1, "c.PyGen_Check", "ob"]], "PyGen_CheckExact": [[29, 3, 1, "c.PyGen_CheckExact", "ob"]], "PyGen_New": [[29, 3, 1, "c.PyGen_New", "frame"]], "PyGen_NewWithQualName": [[29, 3, 1, "c.PyGen_NewWithQualName", "frame"], [29, 3, 1, "c.PyGen_NewWithQualName", "name"], [29, 3, 1, "c.PyGen_NewWithQualName", "qualname"]], "PyGetSetDef": [[58, 0, 1, "c.PyGetSetDef.closure", "closure"], [58, 0, 1, "c.PyGetSetDef.doc", "doc"], [58, 0, 1, "c.PyGetSetDef.get", "get"], [58, 0, 1, "c.PyGetSetDef.name", "name"], [58, 0, 1, "c.PyGetSetDef.set", "set"]], "PyHash_FuncDef": [[30, 0, 1, "c.PyHash_FuncDef.hash_bits", "hash_bits"], [30, 0, 1, "c.PyHash_FuncDef.name", "name"], [30, 0, 1, "c.PyHash_FuncDef.seed_bits", "seed_bits"]], "PyImport_AddModule": [[31, 3, 1, "c.PyImport_AddModule", "name"]], "PyImport_AddModuleObject": [[31, 3, 1, "c.PyImport_AddModuleObject", "name"]], "PyImport_AppendInittab": [[31, 3, 1, "c.PyImport_AppendInittab", "initfunc"], [31, 3, 1, "c.PyImport_AppendInittab", "name"]], "PyImport_ExecCodeModule": [[31, 3, 1, "c.PyImport_ExecCodeModule", "co"], [31, 3, 1, "c.PyImport_ExecCodeModule", "name"]], "PyImport_ExecCodeModuleEx": [[31, 3, 1, "c.PyImport_ExecCodeModuleEx", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleEx", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleEx", "pathname"]], "PyImport_ExecCodeModuleObject": [[31, 3, 1, "c.PyImport_ExecCodeModuleObject", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "cpathname"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleObject", "pathname"]], "PyImport_ExecCodeModuleWithPathnames": [[31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "co"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "cpathname"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "name"], [31, 3, 1, "c.PyImport_ExecCodeModuleWithPathnames", "pathname"]], "PyImport_ExtendInittab": [[31, 3, 1, "c.PyImport_ExtendInittab", "newtab"]], "PyImport_GetImporter": [[31, 3, 1, "c.PyImport_GetImporter", "path"]], "PyImport_GetModule": [[31, 3, 1, "c.PyImport_GetModule", "name"]], "PyImport_Import": [[31, 3, 1, "c.PyImport_Import", "name"]], "PyImport_ImportFrozenModule": [[31, 3, 1, "c.PyImport_ImportFrozenModule", "name"]], "PyImport_ImportFrozenModuleObject": [[31, 3, 1, "c.PyImport_ImportFrozenModuleObject", "name"]], "PyImport_ImportModule": [[31, 3, 1, "c.PyImport_ImportModule", "name"]], "PyImport_ImportModuleEx": [[31, 3, 1, "c.PyImport_ImportModuleEx", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleEx", "globals"], [31, 3, 1, "c.PyImport_ImportModuleEx", "locals"], [31, 3, 1, "c.PyImport_ImportModuleEx", "name"]], "PyImport_ImportModuleLevel": [[31, 3, 1, "c.PyImport_ImportModuleLevel", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "globals"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "level"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "locals"], [31, 3, 1, "c.PyImport_ImportModuleLevel", "name"]], "PyImport_ImportModuleLevelObject": [[31, 3, 1, "c.PyImport_ImportModuleLevelObject", "fromlist"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "globals"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "level"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "locals"], [31, 3, 1, "c.PyImport_ImportModuleLevelObject", "name"]], "PyImport_ImportModuleNoBlock": [[31, 3, 1, "c.PyImport_ImportModuleNoBlock", "name"]], "PyImport_ReloadModule": [[31, 3, 1, "c.PyImport_ReloadModule", "m"]], "PyIndex_Check": [[47, 3, 1, "c.PyIndex_Check", "o"]], "PyInstanceMethod_Check": [[44, 3, 1, "c.PyInstanceMethod_Check", "o"]], "PyInstanceMethod_Function": [[44, 3, 1, "c.PyInstanceMethod_Function", "im"]], "PyInstanceMethod_GET_FUNCTION": [[44, 3, 1, "c.PyInstanceMethod_GET_FUNCTION", "im"]], "PyInstanceMethod_New": [[44, 3, 1, "c.PyInstanceMethod_New", "func"]], "PyInterpreterConfig": [[33, 0, 1, "c.PyInterpreterConfig.allow_daemon_threads", "allow_daemon_threads"], [33, 0, 1, "c.PyInterpreterConfig.allow_exec", "allow_exec"], [33, 0, 1, "c.PyInterpreterConfig.allow_fork", "allow_fork"], [33, 0, 1, "c.PyInterpreterConfig.allow_threads", "allow_threads"], [33, 0, 1, "c.PyInterpreterConfig.check_multi_interp_extensions", "check_multi_interp_extensions"], [33, 0, 1, "c.PyInterpreterConfig.gil", "gil"], [33, 0, 1, "c.PyInterpreterConfig.use_main_obmalloc", "use_main_obmalloc"]], "PyInterpreterState_Clear": [[33, 3, 1, "c.PyInterpreterState_Clear", "interp"]], "PyInterpreterState_Delete": [[33, 3, 1, "c.PyInterpreterState_Delete", "interp"]], "PyInterpreterState_GetDict": [[33, 3, 1, "c.PyInterpreterState_GetDict", "interp"]], "PyInterpreterState_GetID": [[33, 3, 1, "c.PyInterpreterState_GetID", "interp"]], "PyInterpreterState_Next": [[33, 3, 1, "c.PyInterpreterState_Next", "interp"]], "PyInterpreterState_ThreadHead": [[33, 3, 1, "c.PyInterpreterState_ThreadHead", "interp"]], "PyIter_Check": [[36, 3, 1, "c.PyIter_Check", "o"]], "PyIter_Next": [[36, 3, 1, "c.PyIter_Next", "o"]], "PyIter_Send": [[36, 3, 1, "c.PyIter_Send", "arg"], [36, 3, 1, "c.PyIter_Send", "iter"], [36, 3, 1, "c.PyIter_Send", "presult"]], "PyList_Append": [[38, 3, 1, "c.PyList_Append", "item"], [38, 3, 1, "c.PyList_Append", "list"]], "PyList_AsTuple": [[38, 3, 1, "c.PyList_AsTuple", "list"]], "PyList_Check": [[38, 3, 1, "c.PyList_Check", "p"]], "PyList_CheckExact": [[38, 3, 1, "c.PyList_CheckExact", "p"]], "PyList_GET_ITEM": [[38, 3, 1, "c.PyList_GET_ITEM", "i"], [38, 3, 1, "c.PyList_GET_ITEM", "list"]], "PyList_GET_SIZE": [[38, 3, 1, "c.PyList_GET_SIZE", "list"]], "PyList_GetItem": [[38, 3, 1, "c.PyList_GetItem", "index"], [38, 3, 1, "c.PyList_GetItem", "list"]], "PyList_GetSlice": [[38, 3, 1, "c.PyList_GetSlice", "high"], [38, 3, 1, "c.PyList_GetSlice", "list"], [38, 3, 1, "c.PyList_GetSlice", "low"]], "PyList_Insert": [[38, 3, 1, "c.PyList_Insert", "index"], [38, 3, 1, "c.PyList_Insert", "item"], [38, 3, 1, "c.PyList_Insert", "list"]], "PyList_New": [[38, 3, 1, "c.PyList_New", "len"]], "PyList_Reverse": [[38, 3, 1, "c.PyList_Reverse", "list"]], "PyList_SET_ITEM": [[38, 3, 1, "c.PyList_SET_ITEM", "i"], [38, 3, 1, "c.PyList_SET_ITEM", "list"], [38, 3, 1, "c.PyList_SET_ITEM", "o"]], "PyList_SetItem": [[38, 3, 1, "c.PyList_SetItem", "index"], [38, 3, 1, "c.PyList_SetItem", "item"], [38, 3, 1, "c.PyList_SetItem", "list"]], "PyList_SetSlice": [[38, 3, 1, "c.PyList_SetSlice", "high"], [38, 3, 1, "c.PyList_SetSlice", "itemlist"], [38, 3, 1, "c.PyList_SetSlice", "list"], [38, 3, 1, "c.PyList_SetSlice", "low"]], "PyList_Size": [[38, 3, 1, "c.PyList_Size", "list"]], "PyList_Sort": [[38, 3, 1, "c.PyList_Sort", "list"]], "PyLong_AsDouble": [[39, 3, 1, "c.PyLong_AsDouble", "pylong"]], "PyLong_AsLong": [[39, 3, 1, "c.PyLong_AsLong", "obj"]], "PyLong_AsLongAndOverflow": [[39, 3, 1, "c.PyLong_AsLongAndOverflow", "obj"], [39, 3, 1, "c.PyLong_AsLongAndOverflow", "overflow"]], "PyLong_AsLongLong": [[39, 3, 1, "c.PyLong_AsLongLong", "obj"]], "PyLong_AsLongLongAndOverflow": [[39, 3, 1, "c.PyLong_AsLongLongAndOverflow", "obj"], [39, 3, 1, "c.PyLong_AsLongLongAndOverflow", "overflow"]], "PyLong_AsSize_t": [[39, 3, 1, "c.PyLong_AsSize_t", "pylong"]], "PyLong_AsSsize_t": [[39, 3, 1, "c.PyLong_AsSsize_t", "pylong"]], "PyLong_AsUnsignedLong": [[39, 3, 1, "c.PyLong_AsUnsignedLong", "pylong"]], "PyLong_AsUnsignedLongLong": [[39, 3, 1, "c.PyLong_AsUnsignedLongLong", "pylong"]], "PyLong_AsUnsignedLongLongMask": [[39, 3, 1, "c.PyLong_AsUnsignedLongLongMask", "obj"]], "PyLong_AsUnsignedLongMask": [[39, 3, 1, "c.PyLong_AsUnsignedLongMask", "obj"]], "PyLong_AsVoidPtr": [[39, 3, 1, "c.PyLong_AsVoidPtr", "pylong"]], "PyLong_Check": [[39, 3, 1, "c.PyLong_Check", "p"]], "PyLong_CheckExact": [[39, 3, 1, "c.PyLong_CheckExact", "p"]], "PyLong_FromDouble": [[39, 3, 1, "c.PyLong_FromDouble", "v"]], "PyLong_FromLong": [[39, 3, 1, "c.PyLong_FromLong", "v"]], "PyLong_FromLongLong": [[39, 3, 1, "c.PyLong_FromLongLong", "v"]], "PyLong_FromSize_t": [[39, 3, 1, "c.PyLong_FromSize_t", "v"]], "PyLong_FromSsize_t": [[39, 3, 1, "c.PyLong_FromSsize_t", "v"]], "PyLong_FromString": [[39, 3, 1, "c.PyLong_FromString", "base"], [39, 3, 1, "c.PyLong_FromString", "pend"], [39, 3, 1, "c.PyLong_FromString", "str"]], "PyLong_FromUnicodeObject": [[39, 3, 1, "c.PyLong_FromUnicodeObject", "base"], [39, 3, 1, "c.PyLong_FromUnicodeObject", "u"]], "PyLong_FromUnsignedLong": [[39, 3, 1, "c.PyLong_FromUnsignedLong", "v"]], "PyLong_FromUnsignedLongLong": [[39, 3, 1, "c.PyLong_FromUnsignedLongLong", "v"]], "PyLong_FromVoidPtr": [[39, 3, 1, "c.PyLong_FromVoidPtr", "p"]], "PyMappingMethods": [[63, 0, 1, "c.PyMappingMethods.mp_ass_subscript", "mp_ass_subscript"], [63, 0, 1, "c.PyMappingMethods.mp_length", "mp_length"], [63, 0, 1, "c.PyMappingMethods.mp_subscript", "mp_subscript"]], "PyMapping_Check": [[40, 3, 1, "c.PyMapping_Check", "o"]], "PyMapping_DelItem": [[40, 3, 1, "c.PyMapping_DelItem", "key"], [40, 3, 1, "c.PyMapping_DelItem", "o"]], "PyMapping_DelItemString": [[40, 3, 1, "c.PyMapping_DelItemString", "key"], [40, 3, 1, "c.PyMapping_DelItemString", "o"]], "PyMapping_GetItemString": [[40, 3, 1, "c.PyMapping_GetItemString", "key"], [40, 3, 1, "c.PyMapping_GetItemString", "o"]], "PyMapping_HasKey": [[40, 3, 1, "c.PyMapping_HasKey", "key"], [40, 3, 1, "c.PyMapping_HasKey", "o"]], "PyMapping_HasKeyString": [[40, 3, 1, "c.PyMapping_HasKeyString", "key"], [40, 3, 1, "c.PyMapping_HasKeyString", "o"]], "PyMapping_Items": [[40, 3, 1, "c.PyMapping_Items", "o"]], "PyMapping_Keys": [[40, 3, 1, "c.PyMapping_Keys", "o"]], "PyMapping_Length": [[40, 3, 1, "c.PyMapping_Length", "o"]], "PyMapping_SetItemString": [[40, 3, 1, "c.PyMapping_SetItemString", "key"], [40, 3, 1, "c.PyMapping_SetItemString", "o"], [40, 3, 1, "c.PyMapping_SetItemString", "v"]], "PyMapping_Size": [[40, 3, 1, "c.PyMapping_Size", "o"]], "PyMapping_Values": [[40, 3, 1, "c.PyMapping_Values", "o"]], "PyMarshal_ReadLastObjectFromFile": [[41, 3, 1, "c.PyMarshal_ReadLastObjectFromFile", "file"]], "PyMarshal_ReadLongFromFile": [[41, 3, 1, "c.PyMarshal_ReadLongFromFile", "file"]], "PyMarshal_ReadObjectFromFile": [[41, 3, 1, "c.PyMarshal_ReadObjectFromFile", "file"]], "PyMarshal_ReadObjectFromString": [[41, 3, 1, "c.PyMarshal_ReadObjectFromString", "data"], [41, 3, 1, "c.PyMarshal_ReadObjectFromString", "len"]], "PyMarshal_ReadShortFromFile": [[41, 3, 1, "c.PyMarshal_ReadShortFromFile", "file"]], "PyMarshal_WriteLongToFile": [[41, 3, 1, "c.PyMarshal_WriteLongToFile", "file"], [41, 3, 1, "c.PyMarshal_WriteLongToFile", "value"], [41, 3, 1, "c.PyMarshal_WriteLongToFile", "version"]], "PyMarshal_WriteObjectToFile": [[41, 3, 1, "c.PyMarshal_WriteObjectToFile", "file"], [41, 3, 1, "c.PyMarshal_WriteObjectToFile", "value"], [41, 3, 1, "c.PyMarshal_WriteObjectToFile", "version"]], "PyMarshal_WriteObjectToString": [[41, 3, 1, "c.PyMarshal_WriteObjectToString", "value"], [41, 3, 1, "c.PyMarshal_WriteObjectToString", "version"]], "PyMem_Calloc": [[42, 3, 1, "c.PyMem_Calloc", "elsize"], [42, 3, 1, "c.PyMem_Calloc", "nelem"]], "PyMem_Del": [[42, 3, 1, "c.PyMem_Del", "p"]], "PyMem_Free": [[42, 3, 1, "c.PyMem_Free", "p"]], "PyMem_GetAllocator": [[42, 3, 1, "c.PyMem_GetAllocator", "allocator"], [42, 3, 1, "c.PyMem_GetAllocator", "domain"]], "PyMem_Malloc": [[42, 3, 1, "c.PyMem_Malloc", "n"]], "PyMem_RawCalloc": [[42, 3, 1, "c.PyMem_RawCalloc", "elsize"], [42, 3, 1, "c.PyMem_RawCalloc", "nelem"]], "PyMem_RawFree": [[42, 3, 1, "c.PyMem_RawFree", "p"]], "PyMem_RawMalloc": [[42, 3, 1, "c.PyMem_RawMalloc", "n"]], "PyMem_RawRealloc": [[42, 3, 1, "c.PyMem_RawRealloc", "n"], [42, 3, 1, "c.PyMem_RawRealloc", "p"]], "PyMem_Realloc": [[42, 3, 1, "c.PyMem_Realloc", "n"], [42, 3, 1, "c.PyMem_Realloc", "p"]], "PyMem_SetAllocator": [[42, 3, 1, "c.PyMem_SetAllocator", "allocator"], [42, 3, 1, "c.PyMem_SetAllocator", "domain"]], "PyMemberDef": [[58, 0, 1, "c.PyMemberDef.doc", "doc"], [58, 0, 1, "c.PyMemberDef.flags", "flags"], [58, 0, 1, "c.PyMemberDef.name", "name"], [58, 0, 1, "c.PyMemberDef.offset", "offset"], [58, 0, 1, "c.PyMemberDef.type", "type"]], "PyMember_GetOne": [[58, 3, 1, "c.PyMember_GetOne", "m"], [58, 3, 1, "c.PyMember_GetOne", "obj_addr"]], "PyMember_SetOne": [[58, 3, 1, "c.PyMember_SetOne", "m"], [58, 3, 1, "c.PyMember_SetOne", "o"], [58, 3, 1, "c.PyMember_SetOne", "obj_addr"]], "PyMemoryView_Check": [[43, 3, 1, "c.PyMemoryView_Check", "obj"]], "PyMemoryView_FromBuffer": [[43, 3, 1, "c.PyMemoryView_FromBuffer", "view"]], "PyMemoryView_FromMemory": [[43, 3, 1, "c.PyMemoryView_FromMemory", "flags"], [43, 3, 1, "c.PyMemoryView_FromMemory", "mem"], [43, 3, 1, "c.PyMemoryView_FromMemory", "size"]], "PyMemoryView_FromObject": [[43, 3, 1, "c.PyMemoryView_FromObject", "obj"]], "PyMemoryView_GET_BASE": [[43, 3, 1, "c.PyMemoryView_GET_BASE", "mview"]], "PyMemoryView_GET_BUFFER": [[43, 3, 1, "c.PyMemoryView_GET_BUFFER", "mview"]], "PyMemoryView_GetContiguous": [[43, 3, 1, "c.PyMemoryView_GetContiguous", "buffertype"], [43, 3, 1, "c.PyMemoryView_GetContiguous", "obj"], [43, 3, 1, "c.PyMemoryView_GetContiguous", "order"]], "PyMethodDef": [[58, 0, 1, "c.PyMethodDef.ml_doc", "ml_doc"], [58, 0, 1, "c.PyMethodDef.ml_flags", "ml_flags"], [58, 0, 1, "c.PyMethodDef.ml_meth", "ml_meth"], [58, 0, 1, "c.PyMethodDef.ml_name", "ml_name"]], "PyMethod_Check": [[44, 3, 1, "c.PyMethod_Check", "o"]], "PyMethod_Function": [[44, 3, 1, "c.PyMethod_Function", "meth"]], "PyMethod_GET_FUNCTION": [[44, 3, 1, "c.PyMethod_GET_FUNCTION", "meth"]], "PyMethod_GET_SELF": [[44, 3, 1, "c.PyMethod_GET_SELF", "meth"]], "PyMethod_New": [[44, 3, 1, "c.PyMethod_New", "func"], [44, 3, 1, "c.PyMethod_New", "self"]], "PyMethod_Self": [[44, 3, 1, "c.PyMethod_Self", "meth"]], "PyModuleDef": [[45, 0, 1, "c.PyModuleDef.m_base", "m_base"], [45, 0, 1, "c.PyModuleDef.m_clear", "m_clear"], [45, 0, 1, "c.PyModuleDef.m_doc", "m_doc"], [45, 0, 1, "c.PyModuleDef.m_free", "m_free"], [45, 0, 1, "c.PyModuleDef.m_methods", "m_methods"], [45, 0, 1, "c.PyModuleDef.m_name", "m_name"], [45, 0, 1, "c.PyModuleDef.m_size", "m_size"], [45, 0, 1, "c.PyModuleDef.m_slots", "m_slots"], [45, 0, 1, "c.PyModuleDef.m_traverse", "m_traverse"]], "PyModuleDef.m_slots": [[45, 0, 1, "c.PyModuleDef.m_slots.m_reload", "m_reload"]], "PyModuleDef_Init": [[45, 3, 1, "c.PyModuleDef_Init", "def"]], "PyModuleDef_Slot": [[45, 0, 1, "c.PyModuleDef_Slot.slot", "slot"], [45, 0, 1, "c.PyModuleDef_Slot.value", "value"]], "PyModule_AddFunctions": [[45, 3, 1, "c.PyModule_AddFunctions", "functions"], [45, 3, 1, "c.PyModule_AddFunctions", "module"]], "PyModule_AddIntConstant": [[45, 3, 1, "c.PyModule_AddIntConstant", "module"], [45, 3, 1, "c.PyModule_AddIntConstant", "name"], [45, 3, 1, "c.PyModule_AddIntConstant", "value"]], "PyModule_AddObject": [[45, 3, 1, "c.PyModule_AddObject", "module"], [45, 3, 1, "c.PyModule_AddObject", "name"], [45, 3, 1, "c.PyModule_AddObject", "value"]], "PyModule_AddObjectRef": [[45, 3, 1, "c.PyModule_AddObjectRef", "module"], [45, 3, 1, "c.PyModule_AddObjectRef", "name"], [45, 3, 1, "c.PyModule_AddObjectRef", "value"]], "PyModule_AddStringConstant": [[45, 3, 1, "c.PyModule_AddStringConstant", "module"], [45, 3, 1, "c.PyModule_AddStringConstant", "name"], [45, 3, 1, "c.PyModule_AddStringConstant", "value"]], "PyModule_AddType": [[45, 3, 1, "c.PyModule_AddType", "module"], [45, 3, 1, "c.PyModule_AddType", "type"]], "PyModule_Check": [[45, 3, 1, "c.PyModule_Check", "p"]], "PyModule_CheckExact": [[45, 3, 1, "c.PyModule_CheckExact", "p"]], "PyModule_Create": [[45, 3, 1, "c.PyModule_Create", "def"]], "PyModule_Create2": [[45, 3, 1, "c.PyModule_Create2", "def"], [45, 3, 1, "c.PyModule_Create2", "module_api_version"]], "PyModule_ExecDef": [[45, 3, 1, "c.PyModule_ExecDef", "def"], [45, 3, 1, "c.PyModule_ExecDef", "module"]], "PyModule_FromDefAndSpec": [[45, 3, 1, "c.PyModule_FromDefAndSpec", "def"], [45, 3, 1, "c.PyModule_FromDefAndSpec", "spec"]], "PyModule_FromDefAndSpec2": [[45, 3, 1, "c.PyModule_FromDefAndSpec2", "def"], [45, 3, 1, "c.PyModule_FromDefAndSpec2", "module_api_version"], [45, 3, 1, "c.PyModule_FromDefAndSpec2", "spec"]], "PyModule_GetDef": [[45, 3, 1, "c.PyModule_GetDef", "module"]], "PyModule_GetDict": [[45, 3, 1, "c.PyModule_GetDict", "module"]], "PyModule_GetFilename": [[45, 3, 1, "c.PyModule_GetFilename", "module"]], "PyModule_GetFilenameObject": [[45, 3, 1, "c.PyModule_GetFilenameObject", "module"]], "PyModule_GetName": [[45, 3, 1, "c.PyModule_GetName", "module"]], "PyModule_GetNameObject": [[45, 3, 1, "c.PyModule_GetNameObject", "module"]], "PyModule_GetState": [[45, 3, 1, "c.PyModule_GetState", "module"]], "PyModule_New": [[45, 3, 1, "c.PyModule_New", "name"]], "PyModule_NewObject": [[45, 3, 1, "c.PyModule_NewObject", "name"]], "PyModule_SetDocString": [[45, 3, 1, "c.PyModule_SetDocString", "docstring"], [45, 3, 1, "c.PyModule_SetDocString", "module"]], "PyNumberMethods": [[63, 0, 1, "c.PyNumberMethods.nb_absolute", "nb_absolute"], [63, 0, 1, "c.PyNumberMethods.nb_add", "nb_add"], [63, 0, 1, "c.PyNumberMethods.nb_and", "nb_and"], [63, 0, 1, "c.PyNumberMethods.nb_bool", "nb_bool"], [63, 0, 1, "c.PyNumberMethods.nb_divmod", "nb_divmod"], [63, 0, 1, "c.PyNumberMethods.nb_float", "nb_float"], [63, 0, 1, "c.PyNumberMethods.nb_floor_divide", "nb_floor_divide"], [63, 0, 1, "c.PyNumberMethods.nb_index", "nb_index"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_add", "nb_inplace_add"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_and", "nb_inplace_and"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_floor_divide", "nb_inplace_floor_divide"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_lshift", "nb_inplace_lshift"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_matrix_multiply", "nb_inplace_matrix_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_multiply", "nb_inplace_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_or", "nb_inplace_or"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_power", "nb_inplace_power"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_remainder", "nb_inplace_remainder"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_rshift", "nb_inplace_rshift"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_subtract", "nb_inplace_subtract"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_true_divide", "nb_inplace_true_divide"], [63, 0, 1, "c.PyNumberMethods.nb_inplace_xor", "nb_inplace_xor"], [63, 0, 1, "c.PyNumberMethods.nb_int", "nb_int"], [63, 0, 1, "c.PyNumberMethods.nb_invert", "nb_invert"], [63, 0, 1, "c.PyNumberMethods.nb_lshift", "nb_lshift"], [63, 0, 1, "c.PyNumberMethods.nb_matrix_multiply", "nb_matrix_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_multiply", "nb_multiply"], [63, 0, 1, "c.PyNumberMethods.nb_negative", "nb_negative"], [63, 0, 1, "c.PyNumberMethods.nb_or", "nb_or"], [63, 0, 1, "c.PyNumberMethods.nb_positive", "nb_positive"], [63, 0, 1, "c.PyNumberMethods.nb_power", "nb_power"], [63, 0, 1, "c.PyNumberMethods.nb_remainder", "nb_remainder"], [63, 0, 1, "c.PyNumberMethods.nb_reserved", "nb_reserved"], [63, 0, 1, "c.PyNumberMethods.nb_rshift", "nb_rshift"], [63, 0, 1, "c.PyNumberMethods.nb_subtract", "nb_subtract"], [63, 0, 1, "c.PyNumberMethods.nb_true_divide", "nb_true_divide"], [63, 0, 1, "c.PyNumberMethods.nb_xor", "nb_xor"]], "PyNumber_Absolute": [[47, 3, 1, "c.PyNumber_Absolute", "o"]], "PyNumber_Add": [[47, 3, 1, "c.PyNumber_Add", "o1"], [47, 3, 1, "c.PyNumber_Add", "o2"]], "PyNumber_And": [[47, 3, 1, "c.PyNumber_And", "o1"], [47, 3, 1, "c.PyNumber_And", "o2"]], "PyNumber_AsSsize_t": [[47, 3, 1, "c.PyNumber_AsSsize_t", "exc"], [47, 3, 1, "c.PyNumber_AsSsize_t", "o"]], "PyNumber_Check": [[47, 3, 1, "c.PyNumber_Check", "o"]], "PyNumber_Divmod": [[47, 3, 1, "c.PyNumber_Divmod", "o1"], [47, 3, 1, "c.PyNumber_Divmod", "o2"]], "PyNumber_Float": [[47, 3, 1, "c.PyNumber_Float", "o"]], "PyNumber_FloorDivide": [[47, 3, 1, "c.PyNumber_FloorDivide", "o1"], [47, 3, 1, "c.PyNumber_FloorDivide", "o2"]], "PyNumber_InPlaceAdd": [[47, 3, 1, "c.PyNumber_InPlaceAdd", "o1"], [47, 3, 1, "c.PyNumber_InPlaceAdd", "o2"]], "PyNumber_InPlaceAnd": [[47, 3, 1, "c.PyNumber_InPlaceAnd", "o1"], [47, 3, 1, "c.PyNumber_InPlaceAnd", "o2"]], "PyNumber_InPlaceFloorDivide": [[47, 3, 1, "c.PyNumber_InPlaceFloorDivide", "o1"], [47, 3, 1, "c.PyNumber_InPlaceFloorDivide", "o2"]], "PyNumber_InPlaceLshift": [[47, 3, 1, "c.PyNumber_InPlaceLshift", "o1"], [47, 3, 1, "c.PyNumber_InPlaceLshift", "o2"]], "PyNumber_InPlaceMatrixMultiply": [[47, 3, 1, "c.PyNumber_InPlaceMatrixMultiply", "o1"], [47, 3, 1, "c.PyNumber_InPlaceMatrixMultiply", "o2"]], "PyNumber_InPlaceMultiply": [[47, 3, 1, "c.PyNumber_InPlaceMultiply", "o1"], [47, 3, 1, "c.PyNumber_InPlaceMultiply", "o2"]], "PyNumber_InPlaceOr": [[47, 3, 1, "c.PyNumber_InPlaceOr", "o1"], [47, 3, 1, "c.PyNumber_InPlaceOr", "o2"]], "PyNumber_InPlacePower": [[47, 3, 1, "c.PyNumber_InPlacePower", "o1"], [47, 3, 1, "c.PyNumber_InPlacePower", "o2"], [47, 3, 1, "c.PyNumber_InPlacePower", "o3"]], "PyNumber_InPlaceRemainder": [[47, 3, 1, "c.PyNumber_InPlaceRemainder", "o1"], [47, 3, 1, "c.PyNumber_InPlaceRemainder", "o2"]], "PyNumber_InPlaceRshift": [[47, 3, 1, "c.PyNumber_InPlaceRshift", "o1"], [47, 3, 1, "c.PyNumber_InPlaceRshift", "o2"]], "PyNumber_InPlaceSubtract": [[47, 3, 1, "c.PyNumber_InPlaceSubtract", "o1"], [47, 3, 1, "c.PyNumber_InPlaceSubtract", "o2"]], "PyNumber_InPlaceTrueDivide": [[47, 3, 1, "c.PyNumber_InPlaceTrueDivide", "o1"], [47, 3, 1, "c.PyNumber_InPlaceTrueDivide", "o2"]], "PyNumber_InPlaceXor": [[47, 3, 1, "c.PyNumber_InPlaceXor", "o1"], [47, 3, 1, "c.PyNumber_InPlaceXor", "o2"]], "PyNumber_Index": [[47, 3, 1, "c.PyNumber_Index", "o"]], "PyNumber_Invert": [[47, 3, 1, "c.PyNumber_Invert", "o"]], "PyNumber_Long": [[47, 3, 1, "c.PyNumber_Long", "o"]], "PyNumber_Lshift": [[47, 3, 1, "c.PyNumber_Lshift", "o1"], [47, 3, 1, "c.PyNumber_Lshift", "o2"]], "PyNumber_MatrixMultiply": [[47, 3, 1, "c.PyNumber_MatrixMultiply", "o1"], [47, 3, 1, "c.PyNumber_MatrixMultiply", "o2"]], "PyNumber_Multiply": [[47, 3, 1, "c.PyNumber_Multiply", "o1"], [47, 3, 1, "c.PyNumber_Multiply", "o2"]], "PyNumber_Negative": [[47, 3, 1, "c.PyNumber_Negative", "o"]], "PyNumber_Or": [[47, 3, 1, "c.PyNumber_Or", "o1"], [47, 3, 1, "c.PyNumber_Or", "o2"]], "PyNumber_Positive": [[47, 3, 1, "c.PyNumber_Positive", "o"]], "PyNumber_Power": [[47, 3, 1, "c.PyNumber_Power", "o1"], [47, 3, 1, "c.PyNumber_Power", "o2"], [47, 3, 1, "c.PyNumber_Power", "o3"]], "PyNumber_Remainder": [[47, 3, 1, "c.PyNumber_Remainder", "o1"], [47, 3, 1, "c.PyNumber_Remainder", "o2"]], "PyNumber_Rshift": [[47, 3, 1, "c.PyNumber_Rshift", "o1"], [47, 3, 1, "c.PyNumber_Rshift", "o2"]], "PyNumber_Subtract": [[47, 3, 1, "c.PyNumber_Subtract", "o1"], [47, 3, 1, "c.PyNumber_Subtract", "o2"]], "PyNumber_ToBase": [[47, 3, 1, "c.PyNumber_ToBase", "base"], [47, 3, 1, "c.PyNumber_ToBase", "n"]], "PyNumber_TrueDivide": [[47, 3, 1, "c.PyNumber_TrueDivide", "o1"], [47, 3, 1, "c.PyNumber_TrueDivide", "o2"]], "PyNumber_Xor": [[47, 3, 1, "c.PyNumber_Xor", "o1"], [47, 3, 1, "c.PyNumber_Xor", "o2"]], "PyOS_FSPath": [[59, 3, 1, "c.PyOS_FSPath", "path"]], "PyOS_double_to_string": [[18, 3, 1, "c.PyOS_double_to_string", "flags"], [18, 3, 1, "c.PyOS_double_to_string", "format_code"], [18, 3, 1, "c.PyOS_double_to_string", "precision"], [18, 3, 1, "c.PyOS_double_to_string", "ptype"], [18, 3, 1, "c.PyOS_double_to_string", "val"]], "PyOS_getsig": [[59, 3, 1, "c.PyOS_getsig", "i"]], "PyOS_setsig": [[59, 3, 1, "c.PyOS_setsig", "h"], [59, 3, 1, "c.PyOS_setsig", "i"]], "PyOS_snprintf": [[18, 3, 1, "c.PyOS_snprintf", "format"], [18, 3, 1, "c.PyOS_snprintf", "size"], [18, 3, 1, "c.PyOS_snprintf", "str"]], "PyOS_stricmp": [[18, 3, 1, "c.PyOS_stricmp", "s1"], [18, 3, 1, "c.PyOS_stricmp", "s2"]], "PyOS_string_to_double": [[18, 3, 1, "c.PyOS_string_to_double", "endptr"], [18, 3, 1, "c.PyOS_string_to_double", "overflow_exception"], [18, 3, 1, "c.PyOS_string_to_double", "s"]], "PyOS_strnicmp": [[18, 3, 1, "c.PyOS_strnicmp", "s1"], [18, 3, 1, "c.PyOS_strnicmp", "s2"], [18, 3, 1, "c.PyOS_strnicmp", "size"]], "PyOS_strtol": [[18, 3, 1, "c.PyOS_strtol", "base"], [18, 3, 1, "c.PyOS_strtol", "ptr"], [18, 3, 1, "c.PyOS_strtol", "str"]], "PyOS_strtoul": [[18, 3, 1, "c.PyOS_strtoul", "base"], [18, 3, 1, "c.PyOS_strtoul", "ptr"], [18, 3, 1, "c.PyOS_strtoul", "str"]], "PyOS_vsnprintf": [[18, 3, 1, "c.PyOS_vsnprintf", "format"], [18, 3, 1, "c.PyOS_vsnprintf", "size"], [18, 3, 1, "c.PyOS_vsnprintf", "str"], [18, 3, 1, "c.PyOS_vsnprintf", "va"]], "PyObject": [[63, 0, 1, "c.PyObject._ob_next", "_ob_next"], [63, 0, 1, "c.PyObject._ob_prev", "_ob_prev"], [63, 0, 1, "c.PyObject.ob_refcnt", "ob_refcnt"], [63, 0, 1, "c.PyObject.ob_type", "ob_type"]], "PyObject_ASCII": [[49, 3, 1, "c.PyObject_ASCII", "o"]], "PyObject_AsCharBuffer": [[48, 3, 1, "c.PyObject_AsCharBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsCharBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsCharBuffer", "obj"]], "PyObject_AsFileDescriptor": [[24, 3, 1, "c.PyObject_AsFileDescriptor", "p"]], "PyObject_AsReadBuffer": [[48, 3, 1, "c.PyObject_AsReadBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsReadBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsReadBuffer", "obj"]], "PyObject_AsWriteBuffer": [[48, 3, 1, "c.PyObject_AsWriteBuffer", "buffer"], [48, 3, 1, "c.PyObject_AsWriteBuffer", "buffer_len"], [48, 3, 1, "c.PyObject_AsWriteBuffer", "obj"]], "PyObject_Bytes": [[49, 3, 1, "c.PyObject_Bytes", "o"]], "PyObject_Call": [[10, 3, 1, "c.PyObject_Call", "args"], [10, 3, 1, "c.PyObject_Call", "callable"], [10, 3, 1, "c.PyObject_Call", "kwargs"]], "PyObject_CallFunction": [[10, 3, 1, "c.PyObject_CallFunction", "callable"], [10, 3, 1, "c.PyObject_CallFunction", "format"]], "PyObject_CallFunctionObjArgs": [[10, 3, 1, "c.PyObject_CallFunctionObjArgs", "callable"]], "PyObject_CallMethod": [[10, 3, 1, "c.PyObject_CallMethod", "format"], [10, 3, 1, "c.PyObject_CallMethod", "name"], [10, 3, 1, "c.PyObject_CallMethod", "obj"]], "PyObject_CallMethodNoArgs": [[10, 3, 1, "c.PyObject_CallMethodNoArgs", "name"], [10, 3, 1, "c.PyObject_CallMethodNoArgs", "obj"]], "PyObject_CallMethodObjArgs": [[10, 3, 1, "c.PyObject_CallMethodObjArgs", "name"], [10, 3, 1, "c.PyObject_CallMethodObjArgs", "obj"]], "PyObject_CallMethodOneArg": [[10, 3, 1, "c.PyObject_CallMethodOneArg", "arg"], [10, 3, 1, "c.PyObject_CallMethodOneArg", "name"], [10, 3, 1, "c.PyObject_CallMethodOneArg", "obj"]], "PyObject_CallNoArgs": [[10, 3, 1, "c.PyObject_CallNoArgs", "callable"]], "PyObject_CallObject": [[10, 3, 1, "c.PyObject_CallObject", "args"], [10, 3, 1, "c.PyObject_CallObject", "callable"]], "PyObject_CallOneArg": [[10, 3, 1, "c.PyObject_CallOneArg", "arg"], [10, 3, 1, "c.PyObject_CallOneArg", "callable"]], "PyObject_Calloc": [[42, 3, 1, "c.PyObject_Calloc", "elsize"], [42, 3, 1, "c.PyObject_Calloc", "nelem"]], "PyObject_CheckBuffer": [[7, 3, 1, "c.PyObject_CheckBuffer", "obj"]], "PyObject_CheckReadBuffer": [[48, 3, 1, "c.PyObject_CheckReadBuffer", "o"]], "PyObject_ClearWeakRefs": [[67, 3, 1, "c.PyObject_ClearWeakRefs", "object"]], "PyObject_CopyData": [[7, 3, 1, "c.PyObject_CopyData", "dest"], [7, 3, 1, "c.PyObject_CopyData", "src"]], "PyObject_Del": [[3, 3, 1, "c.PyObject_Del", "op"]], "PyObject_DelAttr": [[49, 3, 1, "c.PyObject_DelAttr", "attr_name"], [49, 3, 1, "c.PyObject_DelAttr", "o"]], "PyObject_DelAttrString": [[49, 3, 1, "c.PyObject_DelAttrString", "attr_name"], [49, 3, 1, "c.PyObject_DelAttrString", "o"]], "PyObject_DelItem": [[49, 3, 1, "c.PyObject_DelItem", "key"], [49, 3, 1, "c.PyObject_DelItem", "o"]], "PyObject_Dir": [[49, 3, 1, "c.PyObject_Dir", "o"]], "PyObject_Format": [[49, 3, 1, "c.PyObject_Format", "format_spec"], [49, 3, 1, "c.PyObject_Format", "obj"]], "PyObject_Free": [[42, 3, 1, "c.PyObject_Free", "p"]], "PyObject_GC_Del": [[28, 3, 1, "c.PyObject_GC_Del", "op"]], "PyObject_GC_IsFinalized": [[28, 3, 1, "c.PyObject_GC_IsFinalized", "op"]], "PyObject_GC_IsTracked": [[28, 3, 1, "c.PyObject_GC_IsTracked", "op"]], "PyObject_GC_Track": [[28, 3, 1, "c.PyObject_GC_Track", "op"]], "PyObject_GC_UnTrack": [[28, 3, 1, "c.PyObject_GC_UnTrack", "op"]], "PyObject_GenericGetAttr": [[49, 3, 1, "c.PyObject_GenericGetAttr", "name"], [49, 3, 1, "c.PyObject_GenericGetAttr", "o"]], "PyObject_GenericGetDict": [[49, 3, 1, "c.PyObject_GenericGetDict", "context"], [49, 3, 1, "c.PyObject_GenericGetDict", "o"]], "PyObject_GenericSetAttr": [[49, 3, 1, "c.PyObject_GenericSetAttr", "name"], [49, 3, 1, "c.PyObject_GenericSetAttr", "o"], [49, 3, 1, "c.PyObject_GenericSetAttr", "value"]], "PyObject_GenericSetDict": [[49, 3, 1, "c.PyObject_GenericSetDict", "context"], [49, 3, 1, "c.PyObject_GenericSetDict", "o"], [49, 3, 1, "c.PyObject_GenericSetDict", "value"]], "PyObject_GetAIter": [[49, 3, 1, "c.PyObject_GetAIter", "o"]], "PyObject_GetArenaAllocator": [[42, 3, 1, "c.PyObject_GetArenaAllocator", "allocator"]], "PyObject_GetAttr": [[49, 3, 1, "c.PyObject_GetAttr", "attr_name"], [49, 3, 1, "c.PyObject_GetAttr", "o"]], "PyObject_GetAttrString": [[49, 3, 1, "c.PyObject_GetAttrString", "attr_name"], [49, 3, 1, "c.PyObject_GetAttrString", "o"]], "PyObject_GetBuffer": [[7, 3, 1, "c.PyObject_GetBuffer", "exporter"], [7, 3, 1, "c.PyObject_GetBuffer", "flags"], [7, 3, 1, "c.PyObject_GetBuffer", "view"]], "PyObject_GetItem": [[49, 3, 1, "c.PyObject_GetItem", "key"], [49, 3, 1, "c.PyObject_GetItem", "o"]], "PyObject_GetItemData": [[49, 3, 1, "c.PyObject_GetItemData", "o"]], "PyObject_GetIter": [[49, 3, 1, "c.PyObject_GetIter", "o"]], "PyObject_GetTypeData": [[49, 3, 1, "c.PyObject_GetTypeData", "cls"], [49, 3, 1, "c.PyObject_GetTypeData", "o"]], "PyObject_HasAttr": [[49, 3, 1, "c.PyObject_HasAttr", "attr_name"], [49, 3, 1, "c.PyObject_HasAttr", "o"]], "PyObject_HasAttrString": [[49, 3, 1, "c.PyObject_HasAttrString", "attr_name"], [49, 3, 1, "c.PyObject_HasAttrString", "o"]], "PyObject_Hash": [[49, 3, 1, "c.PyObject_Hash", "o"]], "PyObject_HashNotImplemented": [[49, 3, 1, "c.PyObject_HashNotImplemented", "o"]], "PyObject_IS_GC": [[28, 3, 1, "c.PyObject_IS_GC", "obj"]], "PyObject_Init": [[3, 3, 1, "c.PyObject_Init", "op"], [3, 3, 1, "c.PyObject_Init", "type"]], "PyObject_InitVar": [[3, 3, 1, "c.PyObject_InitVar", "op"], [3, 3, 1, "c.PyObject_InitVar", "size"], [3, 3, 1, "c.PyObject_InitVar", "type"]], "PyObject_IsInstance": [[49, 3, 1, "c.PyObject_IsInstance", "cls"], [49, 3, 1, "c.PyObject_IsInstance", "inst"]], "PyObject_IsSubclass": [[49, 3, 1, "c.PyObject_IsSubclass", "cls"], [49, 3, 1, "c.PyObject_IsSubclass", "derived"]], "PyObject_IsTrue": [[49, 3, 1, "c.PyObject_IsTrue", "o"]], "PyObject_Length": [[49, 3, 1, "c.PyObject_Length", "o"]], "PyObject_LengthHint": [[49, 3, 1, "c.PyObject_LengthHint", "defaultvalue"], [49, 3, 1, "c.PyObject_LengthHint", "o"]], "PyObject_Malloc": [[42, 3, 1, "c.PyObject_Malloc", "n"]], "PyObject_Not": [[49, 3, 1, "c.PyObject_Not", "o"]], "PyObject_Print": [[49, 3, 1, "c.PyObject_Print", "flags"], [49, 3, 1, "c.PyObject_Print", "fp"], [49, 3, 1, "c.PyObject_Print", "o"]], "PyObject_Realloc": [[42, 3, 1, "c.PyObject_Realloc", "n"], [42, 3, 1, "c.PyObject_Realloc", "p"]], "PyObject_Repr": [[49, 3, 1, "c.PyObject_Repr", "o"]], "PyObject_RichCompare": [[49, 3, 1, "c.PyObject_RichCompare", "o1"], [49, 3, 1, "c.PyObject_RichCompare", "o2"], [49, 3, 1, "c.PyObject_RichCompare", "opid"]], "PyObject_RichCompareBool": [[49, 3, 1, "c.PyObject_RichCompareBool", "o1"], [49, 3, 1, "c.PyObject_RichCompareBool", "o2"], [49, 3, 1, "c.PyObject_RichCompareBool", "opid"]], "PyObject_SetArenaAllocator": [[42, 3, 1, "c.PyObject_SetArenaAllocator", "allocator"]], "PyObject_SetAttr": [[49, 3, 1, "c.PyObject_SetAttr", "attr_name"], [49, 3, 1, "c.PyObject_SetAttr", "o"], [49, 3, 1, "c.PyObject_SetAttr", "v"]], "PyObject_SetAttrString": [[49, 3, 1, "c.PyObject_SetAttrString", "attr_name"], [49, 3, 1, "c.PyObject_SetAttrString", "o"], [49, 3, 1, "c.PyObject_SetAttrString", "v"]], "PyObject_SetItem": [[49, 3, 1, "c.PyObject_SetItem", "key"], [49, 3, 1, "c.PyObject_SetItem", "o"], [49, 3, 1, "c.PyObject_SetItem", "v"]], "PyObject_Size": [[49, 3, 1, "c.PyObject_Size", "o"]], "PyObject_Str": [[49, 3, 1, "c.PyObject_Str", "o"]], "PyObject_Type": [[49, 3, 1, "c.PyObject_Type", "o"]], "PyObject_TypeCheck": [[49, 3, 1, "c.PyObject_TypeCheck", "o"], [49, 3, 1, "c.PyObject_TypeCheck", "type"]], "PyObject_Vectorcall": [[10, 3, 1, "c.PyObject_Vectorcall", "args"], [10, 3, 1, "c.PyObject_Vectorcall", "callable"], [10, 3, 1, "c.PyObject_Vectorcall", "kwnames"], [10, 3, 1, "c.PyObject_Vectorcall", "nargsf"]], "PyObject_VectorcallDict": [[10, 3, 1, "c.PyObject_VectorcallDict", "args"], [10, 3, 1, "c.PyObject_VectorcallDict", "callable"], [10, 3, 1, "c.PyObject_VectorcallDict", "kwdict"], [10, 3, 1, "c.PyObject_VectorcallDict", "nargsf"]], "PyObject_VectorcallMethod": [[10, 3, 1, "c.PyObject_VectorcallMethod", "args"], [10, 3, 1, "c.PyObject_VectorcallMethod", "kwnames"], [10, 3, 1, "c.PyObject_VectorcallMethod", "name"], [10, 3, 1, "c.PyObject_VectorcallMethod", "nargsf"]], "PyPreConfig": [[34, 0, 1, "c.PyPreConfig.allocator", "allocator"], [34, 0, 1, "c.PyPreConfig.coerce_c_locale", "coerce_c_locale"], [34, 0, 1, "c.PyPreConfig.coerce_c_locale_warn", "coerce_c_locale_warn"], [34, 0, 1, "c.PyPreConfig.configure_locale", "configure_locale"], [34, 0, 1, "c.PyPreConfig.dev_mode", "dev_mode"], [34, 0, 1, "c.PyPreConfig.isolated", "isolated"], [34, 0, 1, "c.PyPreConfig.legacy_windows_fs_encoding", "legacy_windows_fs_encoding"], [34, 0, 1, "c.PyPreConfig.parse_argv", "parse_argv"], [34, 0, 1, "c.PyPreConfig.use_environment", "use_environment"], [34, 0, 1, "c.PyPreConfig.utf8_mode", "utf8_mode"]], "PyPreConfig_InitIsolatedConfig": [[34, 3, 1, "c.PyPreConfig_InitIsolatedConfig", "preconfig"]], "PyPreConfig_InitPythonConfig": [[34, 3, 1, "c.PyPreConfig_InitPythonConfig", "preconfig"]], "PyRun_AnyFile": [[66, 3, 1, "c.PyRun_AnyFile", "filename"], [66, 3, 1, "c.PyRun_AnyFile", "fp"]], "PyRun_AnyFileEx": [[66, 3, 1, "c.PyRun_AnyFileEx", "closeit"], [66, 3, 1, "c.PyRun_AnyFileEx", "filename"], [66, 3, 1, "c.PyRun_AnyFileEx", "fp"]], "PyRun_AnyFileExFlags": [[66, 3, 1, "c.PyRun_AnyFileExFlags", "closeit"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "filename"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "flags"], [66, 3, 1, "c.PyRun_AnyFileExFlags", "fp"]], "PyRun_AnyFileFlags": [[66, 3, 1, "c.PyRun_AnyFileFlags", "filename"], [66, 3, 1, "c.PyRun_AnyFileFlags", "flags"], [66, 3, 1, "c.PyRun_AnyFileFlags", "fp"]], "PyRun_File": [[66, 3, 1, "c.PyRun_File", "filename"], [66, 3, 1, "c.PyRun_File", "fp"], [66, 3, 1, "c.PyRun_File", "globals"], [66, 3, 1, "c.PyRun_File", "locals"], [66, 3, 1, "c.PyRun_File", "start"]], "PyRun_FileEx": [[66, 3, 1, "c.PyRun_FileEx", "closeit"], [66, 3, 1, "c.PyRun_FileEx", "filename"], [66, 3, 1, "c.PyRun_FileEx", "fp"], [66, 3, 1, "c.PyRun_FileEx", "globals"], [66, 3, 1, "c.PyRun_FileEx", "locals"], [66, 3, 1, "c.PyRun_FileEx", "start"]], "PyRun_FileExFlags": [[66, 3, 1, "c.PyRun_FileExFlags", "closeit"], [66, 3, 1, "c.PyRun_FileExFlags", "filename"], [66, 3, 1, "c.PyRun_FileExFlags", "flags"], [66, 3, 1, "c.PyRun_FileExFlags", "fp"], [66, 3, 1, "c.PyRun_FileExFlags", "globals"], [66, 3, 1, "c.PyRun_FileExFlags", "locals"], [66, 3, 1, "c.PyRun_FileExFlags", "start"]], "PyRun_FileFlags": [[66, 3, 1, "c.PyRun_FileFlags", "filename"], [66, 3, 1, "c.PyRun_FileFlags", "flags"], [66, 3, 1, "c.PyRun_FileFlags", "fp"], [66, 3, 1, "c.PyRun_FileFlags", "globals"], [66, 3, 1, "c.PyRun_FileFlags", "locals"], [66, 3, 1, "c.PyRun_FileFlags", "start"]], "PyRun_InteractiveLoop": [[66, 3, 1, "c.PyRun_InteractiveLoop", "filename"], [66, 3, 1, "c.PyRun_InteractiveLoop", "fp"]], "PyRun_InteractiveLoopFlags": [[66, 3, 1, "c.PyRun_InteractiveLoopFlags", "filename"], [66, 3, 1, "c.PyRun_InteractiveLoopFlags", "flags"], [66, 3, 1, "c.PyRun_InteractiveLoopFlags", "fp"]], "PyRun_InteractiveOne": [[66, 3, 1, "c.PyRun_InteractiveOne", "filename"], [66, 3, 1, "c.PyRun_InteractiveOne", "fp"]], "PyRun_InteractiveOneFlags": [[66, 3, 1, "c.PyRun_InteractiveOneFlags", "filename"], [66, 3, 1, "c.PyRun_InteractiveOneFlags", "flags"], [66, 3, 1, "c.PyRun_InteractiveOneFlags", "fp"]], "PyRun_SimpleFile": [[66, 3, 1, "c.PyRun_SimpleFile", "filename"], [66, 3, 1, "c.PyRun_SimpleFile", "fp"]], "PyRun_SimpleFileEx": [[66, 3, 1, "c.PyRun_SimpleFileEx", "closeit"], [66, 3, 1, "c.PyRun_SimpleFileEx", "filename"], [66, 3, 1, "c.PyRun_SimpleFileEx", "fp"]], "PyRun_SimpleFileExFlags": [[66, 3, 1, "c.PyRun_SimpleFileExFlags", "closeit"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "filename"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "flags"], [66, 3, 1, "c.PyRun_SimpleFileExFlags", "fp"]], "PyRun_SimpleString": [[66, 3, 1, "c.PyRun_SimpleString", "command"]], "PyRun_SimpleStringFlags": [[66, 3, 1, "c.PyRun_SimpleStringFlags", "command"], [66, 3, 1, "c.PyRun_SimpleStringFlags", "flags"]], "PyRun_String": [[66, 3, 1, "c.PyRun_String", "globals"], [66, 3, 1, "c.PyRun_String", "locals"], [66, 3, 1, "c.PyRun_String", "start"], [66, 3, 1, "c.PyRun_String", "str"]], "PyRun_StringFlags": [[66, 3, 1, "c.PyRun_StringFlags", "flags"], [66, 3, 1, "c.PyRun_StringFlags", "globals"], [66, 3, 1, "c.PyRun_StringFlags", "locals"], [66, 3, 1, "c.PyRun_StringFlags", "start"], [66, 3, 1, "c.PyRun_StringFlags", "str"]], "PySeqIter_Check": [[37, 3, 1, "c.PySeqIter_Check", "op"]], "PySeqIter_New": [[37, 3, 1, "c.PySeqIter_New", "seq"]], "PySequenceMethods": [[63, 0, 1, "c.PySequenceMethods.sq_ass_item", "sq_ass_item"], [63, 0, 1, "c.PySequenceMethods.sq_concat", "sq_concat"], [63, 0, 1, "c.PySequenceMethods.sq_contains", "sq_contains"], [63, 0, 1, "c.PySequenceMethods.sq_inplace_concat", "sq_inplace_concat"], [63, 0, 1, "c.PySequenceMethods.sq_inplace_repeat", "sq_inplace_repeat"], [63, 0, 1, "c.PySequenceMethods.sq_item", "sq_item"], [63, 0, 1, "c.PySequenceMethods.sq_length", "sq_length"], [63, 0, 1, "c.PySequenceMethods.sq_repeat", "sq_repeat"]], "PySequence_Check": [[54, 3, 1, "c.PySequence_Check", "o"]], "PySequence_Concat": [[54, 3, 1, "c.PySequence_Concat", "o1"], [54, 3, 1, "c.PySequence_Concat", "o2"]], "PySequence_Contains": [[54, 3, 1, "c.PySequence_Contains", "o"], [54, 3, 1, "c.PySequence_Contains", "value"]], "PySequence_Count": [[54, 3, 1, "c.PySequence_Count", "o"], [54, 3, 1, "c.PySequence_Count", "value"]], "PySequence_DelItem": [[54, 3, 1, "c.PySequence_DelItem", "i"], [54, 3, 1, "c.PySequence_DelItem", "o"]], "PySequence_DelSlice": [[54, 3, 1, "c.PySequence_DelSlice", "i1"], [54, 3, 1, "c.PySequence_DelSlice", "i2"], [54, 3, 1, "c.PySequence_DelSlice", "o"]], "PySequence_Fast": [[54, 3, 1, "c.PySequence_Fast", "m"], [54, 3, 1, "c.PySequence_Fast", "o"]], "PySequence_Fast_GET_ITEM": [[54, 3, 1, "c.PySequence_Fast_GET_ITEM", "i"], [54, 3, 1, "c.PySequence_Fast_GET_ITEM", "o"]], "PySequence_Fast_GET_SIZE": [[54, 3, 1, "c.PySequence_Fast_GET_SIZE", "o"]], "PySequence_Fast_ITEMS": [[54, 3, 1, "c.PySequence_Fast_ITEMS", "o"]], "PySequence_GetItem": [[54, 3, 1, "c.PySequence_GetItem", "i"], [54, 3, 1, "c.PySequence_GetItem", "o"]], "PySequence_GetSlice": [[54, 3, 1, "c.PySequence_GetSlice", "i1"], [54, 3, 1, "c.PySequence_GetSlice", "i2"], [54, 3, 1, "c.PySequence_GetSlice", "o"]], "PySequence_ITEM": [[54, 3, 1, "c.PySequence_ITEM", "i"], [54, 3, 1, "c.PySequence_ITEM", "o"]], "PySequence_InPlaceConcat": [[54, 3, 1, "c.PySequence_InPlaceConcat", "o1"], [54, 3, 1, "c.PySequence_InPlaceConcat", "o2"]], "PySequence_InPlaceRepeat": [[54, 3, 1, "c.PySequence_InPlaceRepeat", "count"], [54, 3, 1, "c.PySequence_InPlaceRepeat", "o"]], "PySequence_Index": [[54, 3, 1, "c.PySequence_Index", "o"], [54, 3, 1, "c.PySequence_Index", "value"]], "PySequence_Length": [[54, 3, 1, "c.PySequence_Length", "o"]], "PySequence_List": [[54, 3, 1, "c.PySequence_List", "o"]], "PySequence_Repeat": [[54, 3, 1, "c.PySequence_Repeat", "count"], [54, 3, 1, "c.PySequence_Repeat", "o"]], "PySequence_SetItem": [[54, 3, 1, "c.PySequence_SetItem", "i"], [54, 3, 1, "c.PySequence_SetItem", "o"], [54, 3, 1, "c.PySequence_SetItem", "v"]], "PySequence_SetSlice": [[54, 3, 1, "c.PySequence_SetSlice", "i1"], [54, 3, 1, "c.PySequence_SetSlice", "i2"], [54, 3, 1, "c.PySequence_SetSlice", "o"], [54, 3, 1, "c.PySequence_SetSlice", "v"]], "PySequence_Size": [[54, 3, 1, "c.PySequence_Size", "o"]], "PySequence_Tuple": [[54, 3, 1, "c.PySequence_Tuple", "o"]], "PySet_Add": [[55, 3, 1, "c.PySet_Add", "key"], [55, 3, 1, "c.PySet_Add", "set"]], "PySet_Check": [[55, 3, 1, "c.PySet_Check", "p"]], "PySet_CheckExact": [[55, 3, 1, "c.PySet_CheckExact", "p"]], "PySet_Clear": [[55, 3, 1, "c.PySet_Clear", "set"]], "PySet_Contains": [[55, 3, 1, "c.PySet_Contains", "anyset"], [55, 3, 1, "c.PySet_Contains", "key"]], "PySet_Discard": [[55, 3, 1, "c.PySet_Discard", "key"], [55, 3, 1, "c.PySet_Discard", "set"]], "PySet_GET_SIZE": [[55, 3, 1, "c.PySet_GET_SIZE", "anyset"]], "PySet_New": [[55, 3, 1, "c.PySet_New", "iterable"]], "PySet_Pop": [[55, 3, 1, "c.PySet_Pop", "set"]], "PySet_Size": [[55, 3, 1, "c.PySet_Size", "anyset"]], "PySignal_SetWakeupFd": [[23, 3, 1, "c.PySignal_SetWakeupFd", "fd"]], "PySlice_AdjustIndices": [[56, 3, 1, "c.PySlice_AdjustIndices", "length"], [56, 3, 1, "c.PySlice_AdjustIndices", "start"], [56, 3, 1, "c.PySlice_AdjustIndices", "step"], [56, 3, 1, "c.PySlice_AdjustIndices", "stop"]], "PySlice_Check": [[56, 3, 1, "c.PySlice_Check", "ob"]], "PySlice_GetIndices": [[56, 3, 1, "c.PySlice_GetIndices", "length"], [56, 3, 1, "c.PySlice_GetIndices", "slice"], [56, 3, 1, "c.PySlice_GetIndices", "start"], [56, 3, 1, "c.PySlice_GetIndices", "step"], [56, 3, 1, "c.PySlice_GetIndices", "stop"]], "PySlice_GetIndicesEx": [[56, 3, 1, "c.PySlice_GetIndicesEx", "length"], [56, 3, 1, "c.PySlice_GetIndicesEx", "slice"], [56, 3, 1, "c.PySlice_GetIndicesEx", "slicelength"], [56, 3, 1, "c.PySlice_GetIndicesEx", "start"], [56, 3, 1, "c.PySlice_GetIndicesEx", "step"], [56, 3, 1, "c.PySlice_GetIndicesEx", "stop"]], "PySlice_New": [[56, 3, 1, "c.PySlice_New", "start"], [56, 3, 1, "c.PySlice_New", "step"], [56, 3, 1, "c.PySlice_New", "stop"]], "PySlice_Unpack": [[56, 3, 1, "c.PySlice_Unpack", "slice"], [56, 3, 1, "c.PySlice_Unpack", "start"], [56, 3, 1, "c.PySlice_Unpack", "step"], [56, 3, 1, "c.PySlice_Unpack", "stop"]], "PyState_AddModule": [[45, 3, 1, "c.PyState_AddModule", "def"], [45, 3, 1, "c.PyState_AddModule", "module"]], "PyState_FindModule": [[45, 3, 1, "c.PyState_FindModule", "def"]], "PyState_RemoveModule": [[45, 3, 1, "c.PyState_RemoveModule", "def"]], "PyStatus": [[34, 0, 1, "c.PyStatus.err_msg", "err_msg"], [34, 0, 1, "c.PyStatus.exitcode", "exitcode"], [34, 0, 1, "c.PyStatus.func", "func"]], "PyStatus_Error": [[34, 3, 1, "c.PyStatus_Error", "err_msg"]], "PyStatus_Exception": [[34, 3, 1, "c.PyStatus_Exception", "status"]], "PyStatus_Exit": [[34, 3, 1, "c.PyStatus_Exit", "exitcode"]], "PyStatus_IsError": [[34, 3, 1, "c.PyStatus_IsError", "status"]], "PyStatus_IsExit": [[34, 3, 1, "c.PyStatus_IsExit", "status"]], "PyStructSequence_Desc": [[60, 0, 1, "c.PyStructSequence_Desc.doc", "doc"], [60, 0, 1, "c.PyStructSequence_Desc.fields", "fields"], [60, 0, 1, "c.PyStructSequence_Desc.n_in_sequence", "n_in_sequence"], [60, 0, 1, "c.PyStructSequence_Desc.name", "name"]], "PyStructSequence_Field": [[60, 0, 1, "c.PyStructSequence_Field.doc", "doc"], [60, 0, 1, "c.PyStructSequence_Field.name", "name"]], "PyStructSequence_GET_ITEM": [[60, 3, 1, "c.PyStructSequence_GET_ITEM", "p"], [60, 3, 1, "c.PyStructSequence_GET_ITEM", "pos"]], "PyStructSequence_GetItem": [[60, 3, 1, "c.PyStructSequence_GetItem", "p"], [60, 3, 1, "c.PyStructSequence_GetItem", "pos"]], "PyStructSequence_InitType": [[60, 3, 1, "c.PyStructSequence_InitType", "desc"], [60, 3, 1, "c.PyStructSequence_InitType", "type"]], "PyStructSequence_InitType2": [[60, 3, 1, "c.PyStructSequence_InitType2", "desc"], [60, 3, 1, "c.PyStructSequence_InitType2", "type"]], "PyStructSequence_New": [[60, 3, 1, "c.PyStructSequence_New", "type"]], "PyStructSequence_NewType": [[60, 3, 1, "c.PyStructSequence_NewType", "desc"]], "PyStructSequence_SET_ITEM": [[60, 3, 1, "c.PyStructSequence_SET_ITEM", "o"], [60, 3, 1, "c.PyStructSequence_SET_ITEM", "p"], [60, 3, 1, "c.PyStructSequence_SET_ITEM", "pos"]], "PyStructSequence_SetItem": [[60, 3, 1, "c.PyStructSequence_SetItem", "o"], [60, 3, 1, "c.PyStructSequence_SetItem", "p"], [60, 3, 1, "c.PyStructSequence_SetItem", "pos"]], "PySys_AddAuditHook": [[59, 3, 1, "c.PySys_AddAuditHook", "hook"], [59, 3, 1, "c.PySys_AddAuditHook", "userData"]], "PySys_AddWarnOption": [[59, 3, 1, "c.PySys_AddWarnOption", "s"]], "PySys_AddWarnOptionUnicode": [[59, 3, 1, "c.PySys_AddWarnOptionUnicode", "unicode"]], "PySys_AddXOption": [[59, 3, 1, "c.PySys_AddXOption", "s"]], "PySys_Audit": [[59, 3, 1, "c.PySys_Audit", "event"], [59, 3, 1, "c.PySys_Audit", "format"]], "PySys_FormatStderr": [[59, 3, 1, "c.PySys_FormatStderr", "format"]], "PySys_FormatStdout": [[59, 3, 1, "c.PySys_FormatStdout", "format"]], "PySys_GetObject": [[59, 3, 1, "c.PySys_GetObject", "name"]], "PySys_SetArgv": [[33, 3, 1, "c.PySys_SetArgv", "argc"], [33, 3, 1, "c.PySys_SetArgv", "argv"]], "PySys_SetArgvEx": [[33, 3, 1, "c.PySys_SetArgvEx", "argc"], [33, 3, 1, "c.PySys_SetArgvEx", "argv"], [33, 3, 1, "c.PySys_SetArgvEx", "updatepath"]], "PySys_SetObject": [[59, 3, 1, "c.PySys_SetObject", "name"], [59, 3, 1, "c.PySys_SetObject", "v"]], "PySys_SetPath": [[59, 3, 1, "c.PySys_SetPath", "path"]], "PySys_WriteStderr": [[59, 3, 1, "c.PySys_WriteStderr", "format"]], "PySys_WriteStdout": [[59, 3, 1, "c.PySys_WriteStdout", "format"]], "PyTZInfo_Check": [[20, 3, 1, "c.PyTZInfo_Check", "ob"]], "PyTZInfo_CheckExact": [[20, 3, 1, "c.PyTZInfo_CheckExact", "ob"]], "PyThreadState": [[33, 0, 1, "c.PyThreadState.interp", "interp"]], "PyThreadState_Clear": [[33, 3, 1, "c.PyThreadState_Clear", "tstate"]], "PyThreadState_Delete": [[33, 3, 1, "c.PyThreadState_Delete", "tstate"]], "PyThreadState_EnterTracing": [[33, 3, 1, "c.PyThreadState_EnterTracing", "tstate"]], "PyThreadState_GetFrame": [[33, 3, 1, "c.PyThreadState_GetFrame", "tstate"]], "PyThreadState_GetID": [[33, 3, 1, "c.PyThreadState_GetID", "tstate"]], "PyThreadState_GetInterpreter": [[33, 3, 1, "c.PyThreadState_GetInterpreter", "tstate"]], "PyThreadState_LeaveTracing": [[33, 3, 1, "c.PyThreadState_LeaveTracing", "tstate"]], "PyThreadState_New": [[33, 3, 1, "c.PyThreadState_New", "interp"]], "PyThreadState_Next": [[33, 3, 1, "c.PyThreadState_Next", "tstate"]], "PyThreadState_SetAsyncExc": [[33, 3, 1, "c.PyThreadState_SetAsyncExc", "exc"], [33, 3, 1, "c.PyThreadState_SetAsyncExc", "id"]], "PyThreadState_Swap": [[33, 3, 1, "c.PyThreadState_Swap", "tstate"]], "PyThread_delete_key": [[33, 3, 1, "c.PyThread_delete_key", "key"]], "PyThread_delete_key_value": [[33, 3, 1, "c.PyThread_delete_key_value", "key"]], "PyThread_get_key_value": [[33, 3, 1, "c.PyThread_get_key_value", "key"]], "PyThread_set_key_value": [[33, 3, 1, "c.PyThread_set_key_value", "key"], [33, 3, 1, "c.PyThread_set_key_value", "value"]], "PyThread_tss_create": [[33, 3, 1, "c.PyThread_tss_create", "key"]], "PyThread_tss_delete": [[33, 3, 1, "c.PyThread_tss_delete", "key"]], "PyThread_tss_free": [[33, 3, 1, "c.PyThread_tss_free", "key"]], "PyThread_tss_get": [[33, 3, 1, "c.PyThread_tss_get", "key"]], "PyThread_tss_is_created": [[33, 3, 1, "c.PyThread_tss_is_created", "key"]], "PyThread_tss_set": [[33, 3, 1, "c.PyThread_tss_set", "key"], [33, 3, 1, "c.PyThread_tss_set", "value"]], "PyTimeZone_FromOffset": [[20, 3, 1, "c.PyTimeZone_FromOffset", "offset"]], "PyTimeZone_FromOffsetAndName": [[20, 3, 1, "c.PyTimeZone_FromOffsetAndName", "name"], [20, 3, 1, "c.PyTimeZone_FromOffsetAndName", "offset"]], "PyTime_Check": [[20, 3, 1, "c.PyTime_Check", "ob"]], "PyTime_CheckExact": [[20, 3, 1, "c.PyTime_CheckExact", "ob"]], "PyTime_FromTime": [[20, 3, 1, "c.PyTime_FromTime", "hour"], [20, 3, 1, "c.PyTime_FromTime", "minute"], [20, 3, 1, "c.PyTime_FromTime", "second"], [20, 3, 1, "c.PyTime_FromTime", "usecond"]], "PyTime_FromTimeAndFold": [[20, 3, 1, "c.PyTime_FromTimeAndFold", "fold"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "hour"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "minute"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "second"], [20, 3, 1, "c.PyTime_FromTimeAndFold", "usecond"]], "PyTraceMalloc_Track": [[42, 3, 1, "c.PyTraceMalloc_Track", "domain"], [42, 3, 1, "c.PyTraceMalloc_Track", "ptr"], [42, 3, 1, "c.PyTraceMalloc_Track", "size"]], "PyTraceMalloc_Untrack": [[42, 3, 1, "c.PyTraceMalloc_Untrack", "domain"], [42, 3, 1, "c.PyTraceMalloc_Untrack", "ptr"]], "PyTuple_Check": [[60, 3, 1, "c.PyTuple_Check", "p"]], "PyTuple_CheckExact": [[60, 3, 1, "c.PyTuple_CheckExact", "p"]], "PyTuple_GET_ITEM": [[60, 3, 1, "c.PyTuple_GET_ITEM", "p"], [60, 3, 1, "c.PyTuple_GET_ITEM", "pos"]], "PyTuple_GET_SIZE": [[60, 3, 1, "c.PyTuple_GET_SIZE", "p"]], "PyTuple_GetItem": [[60, 3, 1, "c.PyTuple_GetItem", "p"], [60, 3, 1, "c.PyTuple_GetItem", "pos"]], "PyTuple_GetSlice": [[60, 3, 1, "c.PyTuple_GetSlice", "high"], [60, 3, 1, "c.PyTuple_GetSlice", "low"], [60, 3, 1, "c.PyTuple_GetSlice", "p"]], "PyTuple_New": [[60, 3, 1, "c.PyTuple_New", "len"]], "PyTuple_Pack": [[60, 3, 1, "c.PyTuple_Pack", "n"]], "PyTuple_SET_ITEM": [[60, 3, 1, "c.PyTuple_SET_ITEM", "o"], [60, 3, 1, "c.PyTuple_SET_ITEM", "p"], [60, 3, 1, "c.PyTuple_SET_ITEM", "pos"]], "PyTuple_SetItem": [[60, 3, 1, "c.PyTuple_SetItem", "o"], [60, 3, 1, "c.PyTuple_SetItem", "p"], [60, 3, 1, "c.PyTuple_SetItem", "pos"]], "PyTuple_Size": [[60, 3, 1, "c.PyTuple_Size", "p"]], "PyTypeObject": [[63, 0, 1, "c.PyTypeObject.tp_alloc", "tp_alloc"], [63, 0, 1, "c.PyTypeObject.tp_as_async", "tp_as_async"], [63, 0, 1, "c.PyTypeObject.tp_as_buffer", "tp_as_buffer"], [63, 0, 1, "c.PyTypeObject.tp_as_mapping", "tp_as_mapping"], [63, 0, 1, "c.PyTypeObject.tp_as_number", "tp_as_number"], [63, 0, 1, "c.PyTypeObject.tp_as_sequence", "tp_as_sequence"], [63, 0, 1, "c.PyTypeObject.tp_base", "tp_base"], [63, 0, 1, "c.PyTypeObject.tp_bases", "tp_bases"], [63, 0, 1, "c.PyTypeObject.tp_basicsize", "tp_basicsize"], [63, 0, 1, "c.PyTypeObject.tp_cache", "tp_cache"], [63, 0, 1, "c.PyTypeObject.tp_call", "tp_call"], [63, 0, 1, "c.PyTypeObject.tp_clear", "tp_clear"], [63, 0, 1, "c.PyTypeObject.tp_dealloc", "tp_dealloc"], [63, 0, 1, "c.PyTypeObject.tp_del", "tp_del"], [63, 0, 1, "c.PyTypeObject.tp_descr_get", "tp_descr_get"], [63, 0, 1, "c.PyTypeObject.tp_descr_set", "tp_descr_set"], [63, 0, 1, "c.PyTypeObject.tp_dict", "tp_dict"], [63, 0, 1, "c.PyTypeObject.tp_dictoffset", "tp_dictoffset"], [63, 0, 1, "c.PyTypeObject.tp_doc", "tp_doc"], [63, 0, 1, "c.PyTypeObject.tp_finalize", "tp_finalize"], [63, 0, 1, "c.PyTypeObject.tp_flags", "tp_flags"], [63, 0, 1, "c.PyTypeObject.tp_free", "tp_free"], [63, 0, 1, "c.PyTypeObject.tp_getattr", "tp_getattr"], [63, 0, 1, "c.PyTypeObject.tp_getattro", "tp_getattro"], [63, 0, 1, "c.PyTypeObject.tp_getset", "tp_getset"], [63, 0, 1, "c.PyTypeObject.tp_hash", "tp_hash"], [63, 0, 1, "c.PyTypeObject.tp_init", "tp_init"], [63, 0, 1, "c.PyTypeObject.tp_is_gc", "tp_is_gc"], [63, 0, 1, "c.PyTypeObject.tp_itemsize", "tp_itemsize"], [63, 0, 1, "c.PyTypeObject.tp_iter", "tp_iter"], [63, 0, 1, "c.PyTypeObject.tp_iternext", "tp_iternext"], [63, 0, 1, "c.PyTypeObject.tp_members", "tp_members"], [63, 0, 1, "c.PyTypeObject.tp_methods", "tp_methods"], [63, 0, 1, "c.PyTypeObject.tp_mro", "tp_mro"], [63, 0, 1, "c.PyTypeObject.tp_name", "tp_name"], [63, 0, 1, "c.PyTypeObject.tp_new", "tp_new"], [63, 0, 1, "c.PyTypeObject.tp_repr", "tp_repr"], [63, 0, 1, "c.PyTypeObject.tp_richcompare", "tp_richcompare"], [63, 0, 1, "c.PyTypeObject.tp_setattr", "tp_setattr"], [63, 0, 1, "c.PyTypeObject.tp_setattro", "tp_setattro"], [63, 0, 1, "c.PyTypeObject.tp_str", "tp_str"], [63, 0, 1, "c.PyTypeObject.tp_subclasses", "tp_subclasses"], [63, 0, 1, "c.PyTypeObject.tp_traverse", "tp_traverse"], [63, 0, 1, "c.PyTypeObject.tp_vectorcall", "tp_vectorcall"], [63, 0, 1, "c.PyTypeObject.tp_vectorcall_offset", "tp_vectorcall_offset"], [63, 0, 1, "c.PyTypeObject.tp_version_tag", "tp_version_tag"], [63, 0, 1, "c.PyTypeObject.tp_watched", "tp_watched"], [63, 0, 1, "c.PyTypeObject.tp_weaklist", "tp_weaklist"], [63, 0, 1, "c.PyTypeObject.tp_weaklistoffset", "tp_weaklistoffset"]], "PyType_AddWatcher": [[61, 3, 1, "c.PyType_AddWatcher", "callback"]], "PyType_Check": [[61, 3, 1, "c.PyType_Check", "o"]], "PyType_CheckExact": [[61, 3, 1, "c.PyType_CheckExact", "o"]], "PyType_ClearWatcher": [[61, 3, 1, "c.PyType_ClearWatcher", "watcher_id"]], "PyType_FromMetaclass": [[61, 3, 1, "c.PyType_FromMetaclass", "bases"], [61, 3, 1, "c.PyType_FromMetaclass", "metaclass"], [61, 3, 1, "c.PyType_FromMetaclass", "module"], [61, 3, 1, "c.PyType_FromMetaclass", "spec"]], "PyType_FromModuleAndSpec": [[61, 3, 1, "c.PyType_FromModuleAndSpec", "bases"], [61, 3, 1, "c.PyType_FromModuleAndSpec", "module"], [61, 3, 1, "c.PyType_FromModuleAndSpec", "spec"]], "PyType_FromSpec": [[61, 3, 1, "c.PyType_FromSpec", "spec"]], "PyType_FromSpecWithBases": [[61, 3, 1, "c.PyType_FromSpecWithBases", "bases"], [61, 3, 1, "c.PyType_FromSpecWithBases", "spec"]], "PyType_GenericAlloc": [[61, 3, 1, "c.PyType_GenericAlloc", "nitems"], [61, 3, 1, "c.PyType_GenericAlloc", "type"]], "PyType_GenericNew": [[61, 3, 1, "c.PyType_GenericNew", "args"], [61, 3, 1, "c.PyType_GenericNew", "kwds"], [61, 3, 1, "c.PyType_GenericNew", "type"]], "PyType_GetDict": [[61, 3, 1, "c.PyType_GetDict", "type"]], "PyType_GetFlags": [[61, 3, 1, "c.PyType_GetFlags", "type"]], "PyType_GetModule": [[61, 3, 1, "c.PyType_GetModule", "type"]], "PyType_GetModuleByDef": [[61, 3, 1, "c.PyType_GetModuleByDef", "def"], [61, 3, 1, "c.PyType_GetModuleByDef", "type"]], "PyType_GetModuleState": [[61, 3, 1, "c.PyType_GetModuleState", "type"]], "PyType_GetName": [[61, 3, 1, "c.PyType_GetName", "type"]], "PyType_GetQualName": [[61, 3, 1, "c.PyType_GetQualName", "type"]], "PyType_GetSlot": [[61, 3, 1, "c.PyType_GetSlot", "slot"], [61, 3, 1, "c.PyType_GetSlot", "type"]], "PyType_GetTypeDataSize": [[49, 3, 1, "c.PyType_GetTypeDataSize", "cls"]], "PyType_HasFeature": [[61, 3, 1, "c.PyType_HasFeature", "feature"], [61, 3, 1, "c.PyType_HasFeature", "o"]], "PyType_IS_GC": [[61, 3, 1, "c.PyType_IS_GC", "o"]], "PyType_IsSubtype": [[61, 3, 1, "c.PyType_IsSubtype", "a"], [61, 3, 1, "c.PyType_IsSubtype", "b"]], "PyType_Modified": [[61, 3, 1, "c.PyType_Modified", "type"]], "PyType_Ready": [[61, 3, 1, "c.PyType_Ready", "type"]], "PyType_Slot": [[61, 0, 1, "c.PyType_Slot.pfunc", "pfunc"], [61, 0, 1, "c.PyType_Slot.slot", "slot"]], "PyType_Spec": [[61, 0, 1, "c.PyType_Spec.basicsize", "basicsize"], [61, 0, 1, "c.PyType_Spec.flags", "flags"], [61, 0, 1, "c.PyType_Spec.itemsize", "itemsize"], [61, 0, 1, "c.PyType_Spec.name", "name"], [61, 0, 1, "c.PyType_Spec.slots", "slots"]], "PyType_Watch": [[61, 3, 1, "c.PyType_Watch", "type"], [61, 3, 1, "c.PyType_Watch", "watcher_id"]], "PyUnicodeDecodeError_Create": [[23, 3, 1, "c.PyUnicodeDecodeError_Create", "encoding"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "length"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "object"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "reason"], [23, 3, 1, "c.PyUnicodeDecodeError_Create", "start"]], "PyUnicodeDecodeError_GetEncoding": [[23, 3, 1, "c.PyUnicodeDecodeError_GetEncoding", "exc"]], "PyUnicodeDecodeError_GetEnd": [[23, 3, 1, "c.PyUnicodeDecodeError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_GetEnd", "exc"]], "PyUnicodeDecodeError_GetObject": [[23, 3, 1, "c.PyUnicodeDecodeError_GetObject", "exc"]], "PyUnicodeDecodeError_GetReason": [[23, 3, 1, "c.PyUnicodeDecodeError_GetReason", "exc"]], "PyUnicodeDecodeError_GetStart": [[23, 3, 1, "c.PyUnicodeDecodeError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_GetStart", "start"]], "PyUnicodeDecodeError_SetEnd": [[23, 3, 1, "c.PyUnicodeDecodeError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeDecodeError_SetEnd", "exc"]], "PyUnicodeDecodeError_SetReason": [[23, 3, 1, "c.PyUnicodeDecodeError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_SetReason", "reason"]], "PyUnicodeDecodeError_SetStart": [[23, 3, 1, "c.PyUnicodeDecodeError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeDecodeError_SetStart", "start"]], "PyUnicodeEncodeError_GetEncoding": [[23, 3, 1, "c.PyUnicodeEncodeError_GetEncoding", "exc"]], "PyUnicodeEncodeError_GetEnd": [[23, 3, 1, "c.PyUnicodeEncodeError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeEncodeError_GetEnd", "exc"]], "PyUnicodeEncodeError_GetObject": [[23, 3, 1, "c.PyUnicodeEncodeError_GetObject", "exc"]], "PyUnicodeEncodeError_GetReason": [[23, 3, 1, "c.PyUnicodeEncodeError_GetReason", "exc"]], "PyUnicodeEncodeError_GetStart": [[23, 3, 1, "c.PyUnicodeEncodeError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_GetStart", "start"]], "PyUnicodeEncodeError_SetEnd": [[23, 3, 1, "c.PyUnicodeEncodeError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeEncodeError_SetEnd", "exc"]], "PyUnicodeEncodeError_SetReason": [[23, 3, 1, "c.PyUnicodeEncodeError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_SetReason", "reason"]], "PyUnicodeEncodeError_SetStart": [[23, 3, 1, "c.PyUnicodeEncodeError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeEncodeError_SetStart", "start"]], "PyUnicodeTranslateError_GetEnd": [[23, 3, 1, "c.PyUnicodeTranslateError_GetEnd", "end"], [23, 3, 1, "c.PyUnicodeTranslateError_GetEnd", "exc"]], "PyUnicodeTranslateError_GetObject": [[23, 3, 1, "c.PyUnicodeTranslateError_GetObject", "exc"]], "PyUnicodeTranslateError_GetReason": [[23, 3, 1, "c.PyUnicodeTranslateError_GetReason", "exc"]], "PyUnicodeTranslateError_GetStart": [[23, 3, 1, "c.PyUnicodeTranslateError_GetStart", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_GetStart", "start"]], "PyUnicodeTranslateError_SetEnd": [[23, 3, 1, "c.PyUnicodeTranslateError_SetEnd", "end"], [23, 3, 1, "c.PyUnicodeTranslateError_SetEnd", "exc"]], "PyUnicodeTranslateError_SetReason": [[23, 3, 1, "c.PyUnicodeTranslateError_SetReason", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_SetReason", "reason"]], "PyUnicodeTranslateError_SetStart": [[23, 3, 1, "c.PyUnicodeTranslateError_SetStart", "exc"], [23, 3, 1, "c.PyUnicodeTranslateError_SetStart", "start"]], "PyUnicode_1BYTE_DATA": [[64, 3, 1, "c.PyUnicode_1BYTE_DATA", "unicode"]], "PyUnicode_2BYTE_DATA": [[64, 3, 1, "c.PyUnicode_2BYTE_DATA", "unicode"]], "PyUnicode_4BYTE_DATA": [[64, 3, 1, "c.PyUnicode_4BYTE_DATA", "unicode"]], "PyUnicode_AsASCIIString": [[64, 3, 1, "c.PyUnicode_AsASCIIString", "unicode"]], "PyUnicode_AsCharmapString": [[64, 3, 1, "c.PyUnicode_AsCharmapString", "mapping"], [64, 3, 1, "c.PyUnicode_AsCharmapString", "unicode"]], "PyUnicode_AsEncodedString": [[64, 3, 1, "c.PyUnicode_AsEncodedString", "encoding"], [64, 3, 1, "c.PyUnicode_AsEncodedString", "errors"], [64, 3, 1, "c.PyUnicode_AsEncodedString", "unicode"]], "PyUnicode_AsLatin1String": [[64, 3, 1, "c.PyUnicode_AsLatin1String", "unicode"]], "PyUnicode_AsMBCSString": [[64, 3, 1, "c.PyUnicode_AsMBCSString", "unicode"]], "PyUnicode_AsRawUnicodeEscapeString": [[64, 3, 1, "c.PyUnicode_AsRawUnicodeEscapeString", "unicode"]], "PyUnicode_AsUCS4": [[64, 3, 1, "c.PyUnicode_AsUCS4", "buffer"], [64, 3, 1, "c.PyUnicode_AsUCS4", "buflen"], [64, 3, 1, "c.PyUnicode_AsUCS4", "copy_null"], [64, 3, 1, "c.PyUnicode_AsUCS4", "unicode"]], "PyUnicode_AsUCS4Copy": [[64, 3, 1, "c.PyUnicode_AsUCS4Copy", "unicode"]], "PyUnicode_AsUTF16String": [[64, 3, 1, "c.PyUnicode_AsUTF16String", "unicode"]], "PyUnicode_AsUTF32String": [[64, 3, 1, "c.PyUnicode_AsUTF32String", "unicode"]], "PyUnicode_AsUTF8": [[64, 3, 1, "c.PyUnicode_AsUTF8", "unicode"]], "PyUnicode_AsUTF8AndSize": [[64, 3, 1, "c.PyUnicode_AsUTF8AndSize", "size"], [64, 3, 1, "c.PyUnicode_AsUTF8AndSize", "unicode"]], "PyUnicode_AsUTF8String": [[64, 3, 1, "c.PyUnicode_AsUTF8String", "unicode"]], "PyUnicode_AsUnicodeEscapeString": [[64, 3, 1, "c.PyUnicode_AsUnicodeEscapeString", "unicode"]], "PyUnicode_AsWideChar": [[64, 3, 1, "c.PyUnicode_AsWideChar", "size"], [64, 3, 1, "c.PyUnicode_AsWideChar", "unicode"], [64, 3, 1, "c.PyUnicode_AsWideChar", "wstr"]], "PyUnicode_AsWideCharString": [[64, 3, 1, "c.PyUnicode_AsWideCharString", "size"], [64, 3, 1, "c.PyUnicode_AsWideCharString", "unicode"]], "PyUnicode_Check": [[64, 3, 1, "c.PyUnicode_Check", "obj"]], "PyUnicode_CheckExact": [[64, 3, 1, "c.PyUnicode_CheckExact", "obj"]], "PyUnicode_Compare": [[64, 3, 1, "c.PyUnicode_Compare", "left"], [64, 3, 1, "c.PyUnicode_Compare", "right"]], "PyUnicode_CompareWithASCIIString": [[64, 3, 1, "c.PyUnicode_CompareWithASCIIString", "string"], [64, 3, 1, "c.PyUnicode_CompareWithASCIIString", "unicode"]], "PyUnicode_Concat": [[64, 3, 1, "c.PyUnicode_Concat", "left"], [64, 3, 1, "c.PyUnicode_Concat", "right"]], "PyUnicode_Contains": [[64, 3, 1, "c.PyUnicode_Contains", "substr"], [64, 3, 1, "c.PyUnicode_Contains", "unicode"]], "PyUnicode_CopyCharacters": [[64, 3, 1, "c.PyUnicode_CopyCharacters", "from"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "from_start"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "how_many"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "to"], [64, 3, 1, "c.PyUnicode_CopyCharacters", "to_start"]], "PyUnicode_Count": [[64, 3, 1, "c.PyUnicode_Count", "end"], [64, 3, 1, "c.PyUnicode_Count", "start"], [64, 3, 1, "c.PyUnicode_Count", "substr"], [64, 3, 1, "c.PyUnicode_Count", "unicode"]], "PyUnicode_DATA": [[64, 3, 1, "c.PyUnicode_DATA", "unicode"]], "PyUnicode_Decode": [[64, 3, 1, "c.PyUnicode_Decode", "encoding"], [64, 3, 1, "c.PyUnicode_Decode", "errors"], [64, 3, 1, "c.PyUnicode_Decode", "size"], [64, 3, 1, "c.PyUnicode_Decode", "str"]], "PyUnicode_DecodeASCII": [[64, 3, 1, "c.PyUnicode_DecodeASCII", "errors"], [64, 3, 1, "c.PyUnicode_DecodeASCII", "size"], [64, 3, 1, "c.PyUnicode_DecodeASCII", "str"]], "PyUnicode_DecodeCharmap": [[64, 3, 1, "c.PyUnicode_DecodeCharmap", "errors"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "length"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "mapping"], [64, 3, 1, "c.PyUnicode_DecodeCharmap", "str"]], "PyUnicode_DecodeFSDefault": [[64, 3, 1, "c.PyUnicode_DecodeFSDefault", "str"]], "PyUnicode_DecodeFSDefaultAndSize": [[64, 3, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "size"], [64, 3, 1, "c.PyUnicode_DecodeFSDefaultAndSize", "str"]], "PyUnicode_DecodeLatin1": [[64, 3, 1, "c.PyUnicode_DecodeLatin1", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLatin1", "size"], [64, 3, 1, "c.PyUnicode_DecodeLatin1", "str"]], "PyUnicode_DecodeLocale": [[64, 3, 1, "c.PyUnicode_DecodeLocale", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLocale", "str"]], "PyUnicode_DecodeLocaleAndSize": [[64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "errors"], [64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "length"], [64, 3, 1, "c.PyUnicode_DecodeLocaleAndSize", "str"]], "PyUnicode_DecodeMBCS": [[64, 3, 1, "c.PyUnicode_DecodeMBCS", "errors"], [64, 3, 1, "c.PyUnicode_DecodeMBCS", "size"], [64, 3, 1, "c.PyUnicode_DecodeMBCS", "str"]], "PyUnicode_DecodeMBCSStateful": [[64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeMBCSStateful", "str"]], "PyUnicode_DecodeRawUnicodeEscape": [[64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "errors"], [64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "size"], [64, 3, 1, "c.PyUnicode_DecodeRawUnicodeEscape", "str"]], "PyUnicode_DecodeUTF16": [[64, 3, 1, "c.PyUnicode_DecodeUTF16", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF16", "str"]], "PyUnicode_DecodeUTF16Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF16Stateful", "str"]], "PyUnicode_DecodeUTF32": [[64, 3, 1, "c.PyUnicode_DecodeUTF32", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF32", "str"]], "PyUnicode_DecodeUTF32Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "byteorder"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF32Stateful", "str"]], "PyUnicode_DecodeUTF7": [[64, 3, 1, "c.PyUnicode_DecodeUTF7", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF7", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF7", "str"]], "PyUnicode_DecodeUTF7Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF7Stateful", "str"]], "PyUnicode_DecodeUTF8": [[64, 3, 1, "c.PyUnicode_DecodeUTF8", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF8", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF8", "str"]], "PyUnicode_DecodeUTF8Stateful": [[64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "consumed"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "size"], [64, 3, 1, "c.PyUnicode_DecodeUTF8Stateful", "str"]], "PyUnicode_DecodeUnicodeEscape": [[64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "errors"], [64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "size"], [64, 3, 1, "c.PyUnicode_DecodeUnicodeEscape", "str"]], "PyUnicode_EncodeCodePage": [[64, 3, 1, "c.PyUnicode_EncodeCodePage", "code_page"], [64, 3, 1, "c.PyUnicode_EncodeCodePage", "errors"], [64, 3, 1, "c.PyUnicode_EncodeCodePage", "unicode"]], "PyUnicode_EncodeFSDefault": [[64, 3, 1, "c.PyUnicode_EncodeFSDefault", "unicode"]], "PyUnicode_EncodeLocale": [[64, 3, 1, "c.PyUnicode_EncodeLocale", "errors"], [64, 3, 1, "c.PyUnicode_EncodeLocale", "unicode"]], "PyUnicode_FSConverter": [[64, 3, 1, "c.PyUnicode_FSConverter", "obj"], [64, 3, 1, "c.PyUnicode_FSConverter", "result"]], "PyUnicode_FSDecoder": [[64, 3, 1, "c.PyUnicode_FSDecoder", "obj"], [64, 3, 1, "c.PyUnicode_FSDecoder", "result"]], "PyUnicode_Fill": [[64, 3, 1, "c.PyUnicode_Fill", "fill_char"], [64, 3, 1, "c.PyUnicode_Fill", "length"], [64, 3, 1, "c.PyUnicode_Fill", "start"], [64, 3, 1, "c.PyUnicode_Fill", "unicode"]], "PyUnicode_Find": [[64, 3, 1, "c.PyUnicode_Find", "direction"], [64, 3, 1, "c.PyUnicode_Find", "end"], [64, 3, 1, "c.PyUnicode_Find", "start"], [64, 3, 1, "c.PyUnicode_Find", "substr"], [64, 3, 1, "c.PyUnicode_Find", "unicode"]], "PyUnicode_FindChar": [[64, 3, 1, "c.PyUnicode_FindChar", "ch"], [64, 3, 1, "c.PyUnicode_FindChar", "direction"], [64, 3, 1, "c.PyUnicode_FindChar", "end"], [64, 3, 1, "c.PyUnicode_FindChar", "start"], [64, 3, 1, "c.PyUnicode_FindChar", "unicode"]], "PyUnicode_Format": [[64, 3, 1, "c.PyUnicode_Format", "args"], [64, 3, 1, "c.PyUnicode_Format", "format"]], "PyUnicode_FromEncodedObject": [[64, 3, 1, "c.PyUnicode_FromEncodedObject", "encoding"], [64, 3, 1, "c.PyUnicode_FromEncodedObject", "errors"], [64, 3, 1, "c.PyUnicode_FromEncodedObject", "obj"]], "PyUnicode_FromFormat": [[64, 3, 1, "c.PyUnicode_FromFormat", "format"]], "PyUnicode_FromFormatV": [[64, 3, 1, "c.PyUnicode_FromFormatV", "format"], [64, 3, 1, "c.PyUnicode_FromFormatV", "vargs"]], "PyUnicode_FromKindAndData": [[64, 3, 1, "c.PyUnicode_FromKindAndData", "buffer"], [64, 3, 1, "c.PyUnicode_FromKindAndData", "kind"], [64, 3, 1, "c.PyUnicode_FromKindAndData", "size"]], "PyUnicode_FromObject": [[64, 3, 1, "c.PyUnicode_FromObject", "obj"]], "PyUnicode_FromString": [[64, 3, 1, "c.PyUnicode_FromString", "str"]], "PyUnicode_FromStringAndSize": [[64, 3, 1, "c.PyUnicode_FromStringAndSize", "size"], [64, 3, 1, "c.PyUnicode_FromStringAndSize", "str"]], "PyUnicode_FromWideChar": [[64, 3, 1, "c.PyUnicode_FromWideChar", "size"], [64, 3, 1, "c.PyUnicode_FromWideChar", "wstr"]], "PyUnicode_GET_LENGTH": [[64, 3, 1, "c.PyUnicode_GET_LENGTH", "unicode"]], "PyUnicode_GetLength": [[64, 3, 1, "c.PyUnicode_GetLength", "unicode"]], "PyUnicode_InternFromString": [[64, 3, 1, "c.PyUnicode_InternFromString", "str"]], "PyUnicode_InternInPlace": [[64, 3, 1, "c.PyUnicode_InternInPlace", "p_unicode"]], "PyUnicode_IsIdentifier": [[64, 3, 1, "c.PyUnicode_IsIdentifier", "unicode"]], "PyUnicode_Join": [[64, 3, 1, "c.PyUnicode_Join", "separator"], [64, 3, 1, "c.PyUnicode_Join", "seq"]], "PyUnicode_KIND": [[64, 3, 1, "c.PyUnicode_KIND", "unicode"]], "PyUnicode_MAX_CHAR_VALUE": [[64, 3, 1, "c.PyUnicode_MAX_CHAR_VALUE", "unicode"]], "PyUnicode_New": [[64, 3, 1, "c.PyUnicode_New", "maxchar"], [64, 3, 1, "c.PyUnicode_New", "size"]], "PyUnicode_READ": [[64, 3, 1, "c.PyUnicode_READ", "data"], [64, 3, 1, "c.PyUnicode_READ", "index"], [64, 3, 1, "c.PyUnicode_READ", "kind"]], "PyUnicode_READY": [[64, 3, 1, "c.PyUnicode_READY", "unicode"]], "PyUnicode_READ_CHAR": [[64, 3, 1, "c.PyUnicode_READ_CHAR", "index"], [64, 3, 1, "c.PyUnicode_READ_CHAR", "unicode"]], "PyUnicode_ReadChar": [[64, 3, 1, "c.PyUnicode_ReadChar", "index"], [64, 3, 1, "c.PyUnicode_ReadChar", "unicode"]], "PyUnicode_Replace": [[64, 3, 1, "c.PyUnicode_Replace", "maxcount"], [64, 3, 1, "c.PyUnicode_Replace", "replstr"], [64, 3, 1, "c.PyUnicode_Replace", "substr"], [64, 3, 1, "c.PyUnicode_Replace", "unicode"]], "PyUnicode_RichCompare": [[64, 3, 1, "c.PyUnicode_RichCompare", "left"], [64, 3, 1, "c.PyUnicode_RichCompare", "op"], [64, 3, 1, "c.PyUnicode_RichCompare", "right"]], "PyUnicode_Split": [[64, 3, 1, "c.PyUnicode_Split", "maxsplit"], [64, 3, 1, "c.PyUnicode_Split", "sep"], [64, 3, 1, "c.PyUnicode_Split", "unicode"]], "PyUnicode_Splitlines": [[64, 3, 1, "c.PyUnicode_Splitlines", "keepends"], [64, 3, 1, "c.PyUnicode_Splitlines", "unicode"]], "PyUnicode_Substring": [[64, 3, 1, "c.PyUnicode_Substring", "end"], [64, 3, 1, "c.PyUnicode_Substring", "start"], [64, 3, 1, "c.PyUnicode_Substring", "unicode"]], "PyUnicode_Tailmatch": [[64, 3, 1, "c.PyUnicode_Tailmatch", "direction"], [64, 3, 1, "c.PyUnicode_Tailmatch", "end"], [64, 3, 1, "c.PyUnicode_Tailmatch", "start"], [64, 3, 1, "c.PyUnicode_Tailmatch", "substr"], [64, 3, 1, "c.PyUnicode_Tailmatch", "unicode"]], "PyUnicode_Translate": [[64, 3, 1, "c.PyUnicode_Translate", "errors"], [64, 3, 1, "c.PyUnicode_Translate", "table"], [64, 3, 1, "c.PyUnicode_Translate", "unicode"]], "PyUnicode_WRITE": [[64, 3, 1, "c.PyUnicode_WRITE", "data"], [64, 3, 1, "c.PyUnicode_WRITE", "index"], [64, 3, 1, "c.PyUnicode_WRITE", "kind"], [64, 3, 1, "c.PyUnicode_WRITE", "value"]], "PyUnicode_WriteChar": [[64, 3, 1, "c.PyUnicode_WriteChar", "character"], [64, 3, 1, "c.PyUnicode_WriteChar", "index"], [64, 3, 1, "c.PyUnicode_WriteChar", "unicode"]], "PyUnstable_Code_GetExtra": [[13, 3, 1, "c.PyUnstable_Code_GetExtra", "code"], [13, 3, 1, "c.PyUnstable_Code_GetExtra", "extra"], [13, 3, 1, "c.PyUnstable_Code_GetExtra", "index"]], "PyUnstable_Code_New": [[13, 3, 1, "c.PyUnstable_Code_New", "argcount"], [13, 3, 1, "c.PyUnstable_Code_New", "cellvars"], [13, 3, 1, "c.PyUnstable_Code_New", "code"], [13, 3, 1, "c.PyUnstable_Code_New", "consts"], [13, 3, 1, "c.PyUnstable_Code_New", "exceptiontable"], [13, 3, 1, "c.PyUnstable_Code_New", "filename"], [13, 3, 1, "c.PyUnstable_Code_New", "firstlineno"], [13, 3, 1, "c.PyUnstable_Code_New", "flags"], [13, 3, 1, "c.PyUnstable_Code_New", "freevars"], [13, 3, 1, "c.PyUnstable_Code_New", "kwonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_New", "linetable"], [13, 3, 1, "c.PyUnstable_Code_New", "name"], [13, 3, 1, "c.PyUnstable_Code_New", "names"], [13, 3, 1, "c.PyUnstable_Code_New", "nlocals"], [13, 3, 1, "c.PyUnstable_Code_New", "qualname"], [13, 3, 1, "c.PyUnstable_Code_New", "stacksize"], [13, 3, 1, "c.PyUnstable_Code_New", "varnames"]], "PyUnstable_Code_NewWithPosOnlyArgs": [[13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "argcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "cellvars"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "code"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "consts"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "exceptiontable"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "filename"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "firstlineno"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "flags"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "freevars"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "kwonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "linetable"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "name"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "names"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "nlocals"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "posonlyargcount"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "qualname"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "stacksize"], [13, 3, 1, "c.PyUnstable_Code_NewWithPosOnlyArgs", "varnames"]], "PyUnstable_Code_SetExtra": [[13, 3, 1, "c.PyUnstable_Code_SetExtra", "code"], [13, 3, 1, "c.PyUnstable_Code_SetExtra", "extra"], [13, 3, 1, "c.PyUnstable_Code_SetExtra", "index"]], "PyUnstable_Eval_RequestCodeExtraIndex": [[13, 3, 1, "c.PyUnstable_Eval_RequestCodeExtraIndex", "free"]], "PyUnstable_Exc_PrepReraiseStar": [[23, 3, 1, "c.PyUnstable_Exc_PrepReraiseStar", "excs"], [23, 3, 1, "c.PyUnstable_Exc_PrepReraiseStar", "orig"]], "PyUnstable_GC_VisitObjects": [[28, 3, 1, "c.PyUnstable_GC_VisitObjects", "arg"], [28, 3, 1, "c.PyUnstable_GC_VisitObjects", "callback"]], "PyUnstable_InterpreterFrame_GetCode": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetCode", "frame"]], "PyUnstable_InterpreterFrame_GetLasti": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetLasti", "frame"]], "PyUnstable_InterpreterFrame_GetLine": [[26, 3, 1, "c.PyUnstable_InterpreterFrame_GetLine", "frame"]], "PyUnstable_Long_CompactValue": [[39, 3, 1, "c.PyUnstable_Long_CompactValue", "op"]], "PyUnstable_Long_IsCompact": [[39, 3, 1, "c.PyUnstable_Long_IsCompact", "op"]], "PyUnstable_Object_GC_NewWithExtraData": [[28, 3, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "extra_size"], [28, 3, 1, "c.PyUnstable_Object_GC_NewWithExtraData", "type"]], "PyUnstable_Type_AssignVersionTag": [[61, 3, 1, "c.PyUnstable_Type_AssignVersionTag", "type"]], "PyUnstable_WritePerfMapEntry": [[51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "code_addr"], [51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "code_size"], [51, 3, 1, "c.PyUnstable_WritePerfMapEntry", "entry_name"]], "PyVarObject": [[63, 0, 1, "c.PyVarObject.ob_size", "ob_size"]], "PyVectorcall_Call": [[10, 3, 1, "c.PyVectorcall_Call", "callable"], [10, 3, 1, "c.PyVectorcall_Call", "dict"], [10, 3, 1, "c.PyVectorcall_Call", "tuple"]], "PyVectorcall_Function": [[10, 3, 1, "c.PyVectorcall_Function", "op"]], "PyVectorcall_NARGS": [[10, 3, 1, "c.PyVectorcall_NARGS", "nargsf"]], "PyWeakref_Check": [[67, 3, 1, "c.PyWeakref_Check", "ob"]], "PyWeakref_CheckProxy": [[67, 3, 1, "c.PyWeakref_CheckProxy", "ob"]], "PyWeakref_CheckRef": [[67, 3, 1, "c.PyWeakref_CheckRef", "ob"]], "PyWeakref_GET_OBJECT": [[67, 3, 1, "c.PyWeakref_GET_OBJECT", "ref"]], "PyWeakref_GetObject": [[67, 3, 1, "c.PyWeakref_GetObject", "ref"]], "PyWeakref_NewProxy": [[67, 3, 1, "c.PyWeakref_NewProxy", "callback"], [67, 3, 1, "c.PyWeakref_NewProxy", "ob"]], "PyWeakref_NewRef": [[67, 3, 1, "c.PyWeakref_NewRef", "callback"], [67, 3, 1, "c.PyWeakref_NewRef", "ob"]], "PyWideStringList": [[34, 0, 1, "c.PyWideStringList.items", "items"], [34, 0, 1, "c.PyWideStringList.length", "length"]], "PyWideStringList_Append": [[34, 3, 1, "c.PyWideStringList_Append", "item"], [34, 3, 1, "c.PyWideStringList_Append", "list"]], "PyWideStringList_Insert": [[34, 3, 1, "c.PyWideStringList_Insert", "index"], [34, 3, 1, "c.PyWideStringList_Insert", "item"], [34, 3, 1, "c.PyWideStringList_Insert", "list"]], "Py_AddPendingCall": [[33, 3, 1, "c.Py_AddPendingCall", "arg"], [33, 3, 1, "c.Py_AddPendingCall", "func"]], "Py_AtExit": [[59, 3, 1, "c.Py_AtExit", "func"]], "Py_BuildValue": [[5, 3, 1, "c.Py_BuildValue", "format"]], "Py_BytesMain": [[66, 3, 1, "c.Py_BytesMain", "argc"], [66, 3, 1, "c.Py_BytesMain", "argv"]], "Py_CLEAR": [[52, 3, 1, "c.Py_CLEAR", "o"]], "Py_CompileString": [[66, 3, 1, "c.Py_CompileString", "filename"], [66, 3, 1, "c.Py_CompileString", "start"], [66, 3, 1, "c.Py_CompileString", "str"]], "Py_CompileStringExFlags": [[66, 3, 1, "c.Py_CompileStringExFlags", "filename"], [66, 3, 1, "c.Py_CompileStringExFlags", "flags"], [66, 3, 1, "c.Py_CompileStringExFlags", "optimize"], [66, 3, 1, "c.Py_CompileStringExFlags", "start"], [66, 3, 1, "c.Py_CompileStringExFlags", "str"]], "Py_CompileStringFlags": [[66, 3, 1, "c.Py_CompileStringFlags", "filename"], [66, 3, 1, "c.Py_CompileStringFlags", "flags"], [66, 3, 1, "c.Py_CompileStringFlags", "start"], [66, 3, 1, "c.Py_CompileStringFlags", "str"]], "Py_CompileStringObject": [[66, 3, 1, "c.Py_CompileStringObject", "filename"], [66, 3, 1, "c.Py_CompileStringObject", "flags"], [66, 3, 1, "c.Py_CompileStringObject", "optimize"], [66, 3, 1, "c.Py_CompileStringObject", "start"], [66, 3, 1, "c.Py_CompileStringObject", "str"]], "Py_DECREF": [[52, 3, 1, "c.Py_DECREF", "o"]], "Py_DecRef": [[52, 3, 1, "c.Py_DecRef", "o"]], "Py_DecodeLocale": [[59, 3, 1, "c.Py_DecodeLocale", "arg"], [59, 3, 1, "c.Py_DecodeLocale", "size"]], "Py_EncodeLocale": [[59, 3, 1, "c.Py_EncodeLocale", "error_pos"], [59, 3, 1, "c.Py_EncodeLocale", "text"]], "Py_EndInterpreter": [[33, 3, 1, "c.Py_EndInterpreter", "tstate"]], "Py_EnterRecursiveCall": [[23, 3, 1, "c.Py_EnterRecursiveCall", "where"]], "Py_Exit": [[59, 3, 1, "c.Py_Exit", "status"]], "Py_ExitStatusException": [[34, 3, 1, "c.Py_ExitStatusException", "status"]], "Py_FatalError": [[59, 3, 1, "c.Py_FatalError", "message"]], "Py_FdIsInteractive": [[59, 3, 1, "c.Py_FdIsInteractive", "filename"], [59, 3, 1, "c.Py_FdIsInteractive", "fp"]], "Py_GenericAlias": [[62, 3, 1, "c.Py_GenericAlias", "args"], [62, 3, 1, "c.Py_GenericAlias", "origin"]], "Py_GetArgcArgv": [[34, 3, 1, "c.Py_GetArgcArgv", "argc"], [34, 3, 1, "c.Py_GetArgcArgv", "argv"]], "Py_INCREF": [[52, 3, 1, "c.Py_INCREF", "o"]], "Py_IS_TYPE": [[58, 3, 1, "c.Py_IS_TYPE", "o"], [58, 3, 1, "c.Py_IS_TYPE", "type"]], "Py_IncRef": [[52, 3, 1, "c.Py_IncRef", "o"]], "Py_InitializeEx": [[33, 3, 1, "c.Py_InitializeEx", "initsigs"]], "Py_InitializeFromConfig": [[34, 3, 1, "c.Py_InitializeFromConfig", "config"]], "Py_Is": [[58, 3, 1, "c.Py_Is", "x"], [58, 3, 1, "c.Py_Is", "y"]], "Py_IsFalse": [[58, 3, 1, "c.Py_IsFalse", "x"]], "Py_IsNone": [[58, 3, 1, "c.Py_IsNone", "x"]], "Py_IsTrue": [[58, 3, 1, "c.Py_IsTrue", "x"]], "Py_Main": [[66, 3, 1, "c.Py_Main", "argc"], [66, 3, 1, "c.Py_Main", "argv"]], "Py_NewInterpreterFromConfig": [[33, 3, 1, "c.Py_NewInterpreterFromConfig", "config"], [33, 3, 1, "c.Py_NewInterpreterFromConfig", "tstate_p"]], "Py_NewRef": [[52, 3, 1, "c.Py_NewRef", "o"]], "Py_PreInitialize": [[34, 3, 1, "c.Py_PreInitialize", "preconfig"]], "Py_PreInitializeFromArgs": [[34, 3, 1, "c.Py_PreInitializeFromArgs", "argc"], [34, 3, 1, "c.Py_PreInitializeFromArgs", "argv"], [34, 3, 1, "c.Py_PreInitializeFromArgs", "preconfig"]], "Py_PreInitializeFromBytesArgs": [[34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "argc"], [34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "argv"], [34, 3, 1, "c.Py_PreInitializeFromBytesArgs", "preconfig"]], "Py_REFCNT": [[52, 3, 1, "c.Py_REFCNT", "o"]], "Py_ReprEnter": [[23, 3, 1, "c.Py_ReprEnter", "object"]], "Py_ReprLeave": [[23, 3, 1, "c.Py_ReprLeave", "object"]], "Py_SET_REFCNT": [[52, 3, 1, "c.Py_SET_REFCNT", "o"], [52, 3, 1, "c.Py_SET_REFCNT", "refcnt"]], "Py_SET_SIZE": [[58, 3, 1, "c.Py_SET_SIZE", "o"], [58, 3, 1, "c.Py_SET_SIZE", "size"]], "Py_SET_TYPE": [[58, 3, 1, "c.Py_SET_TYPE", "o"], [58, 3, 1, "c.Py_SET_TYPE", "type"]], "Py_SIZE": [[58, 3, 1, "c.Py_SIZE", "o"]], "Py_SetProgramName": [[33, 3, 1, "c.Py_SetProgramName", "name"]], "Py_SetPythonHome": [[33, 3, 1, "c.Py_SetPythonHome", "home"]], "Py_SetStandardStreamEncoding": [[33, 3, 1, "c.Py_SetStandardStreamEncoding", "encoding"], [33, 3, 1, "c.Py_SetStandardStreamEncoding", "errors"]], "Py_TYPE": [[58, 3, 1, "c.Py_TYPE", "o"]], "Py_UNICODE_ISALNUM": [[64, 3, 1, "c.Py_UNICODE_ISALNUM", "ch"]], "Py_UNICODE_ISALPHA": [[64, 3, 1, "c.Py_UNICODE_ISALPHA", "ch"]], "Py_UNICODE_ISDECIMAL": [[64, 3, 1, "c.Py_UNICODE_ISDECIMAL", "ch"]], "Py_UNICODE_ISDIGIT": [[64, 3, 1, "c.Py_UNICODE_ISDIGIT", "ch"]], "Py_UNICODE_ISLINEBREAK": [[64, 3, 1, "c.Py_UNICODE_ISLINEBREAK", "ch"]], "Py_UNICODE_ISLOWER": [[64, 3, 1, "c.Py_UNICODE_ISLOWER", "ch"]], "Py_UNICODE_ISNUMERIC": [[64, 3, 1, "c.Py_UNICODE_ISNUMERIC", "ch"]], "Py_UNICODE_ISPRINTABLE": [[64, 3, 1, "c.Py_UNICODE_ISPRINTABLE", "ch"]], "Py_UNICODE_ISSPACE": [[64, 3, 1, "c.Py_UNICODE_ISSPACE", "ch"]], "Py_UNICODE_ISTITLE": [[64, 3, 1, "c.Py_UNICODE_ISTITLE", "ch"]], "Py_UNICODE_ISUPPER": [[64, 3, 1, "c.Py_UNICODE_ISUPPER", "ch"]], "Py_UNICODE_IS_HIGH_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_HIGH_SURROGATE", "ch"]], "Py_UNICODE_IS_LOW_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_LOW_SURROGATE", "ch"]], "Py_UNICODE_IS_SURROGATE": [[64, 3, 1, "c.Py_UNICODE_IS_SURROGATE", "ch"]], "Py_UNICODE_JOIN_SURROGATES": [[64, 3, 1, "c.Py_UNICODE_JOIN_SURROGATES", "high"], [64, 3, 1, "c.Py_UNICODE_JOIN_SURROGATES", "low"]], "Py_UNICODE_TODECIMAL": [[64, 3, 1, "c.Py_UNICODE_TODECIMAL", "ch"]], "Py_UNICODE_TODIGIT": [[64, 3, 1, "c.Py_UNICODE_TODIGIT", "ch"]], "Py_UNICODE_TOLOWER": [[64, 3, 1, "c.Py_UNICODE_TOLOWER", "ch"]], "Py_UNICODE_TONUMERIC": [[64, 3, 1, "c.Py_UNICODE_TONUMERIC", "ch"]], "Py_UNICODE_TOTITLE": [[64, 3, 1, "c.Py_UNICODE_TOTITLE", "ch"]], "Py_UNICODE_TOUPPER": [[64, 3, 1, "c.Py_UNICODE_TOUPPER", "ch"]], "Py_VISIT": [[28, 3, 1, "c.Py_VISIT", "o"]], "Py_VaBuildValue": [[5, 3, 1, "c.Py_VaBuildValue", "format"], [5, 3, 1, "c.Py_VaBuildValue", "vargs"]], "Py_XDECREF": [[52, 3, 1, "c.Py_XDECREF", "o"]], "Py_XINCREF": [[52, 3, 1, "c.Py_XINCREF", "o"]], "Py_XNewRef": [[52, 3, 1, "c.Py_XNewRef", "o"]], "Py_buffer": [[7, 0, 1, "c.Py_buffer.buf", "buf"], [7, 0, 1, "c.Py_buffer.format", "format"], [7, 0, 1, "c.Py_buffer.internal", "internal"], [7, 0, 1, "c.Py_buffer.itemsize", "itemsize"], [7, 0, 1, "c.Py_buffer.len", "len"], [7, 0, 1, "c.Py_buffer.ndim", "ndim"], [7, 0, 1, "c.Py_buffer.obj", "obj"], [7, 0, 1, "c.Py_buffer.readonly", "readonly"], [7, 0, 1, "c.Py_buffer.shape", "shape"], [7, 0, 1, "c.Py_buffer.strides", "strides"], [7, 0, 1, "c.Py_buffer.suboffsets", "suboffsets"]], "Py_mod_create": [[45, 2, 1, "c.Py_mod_create.create_module", "create_module"]], "Py_mod_create.create_module": [[45, 3, 1, "c.Py_mod_create.create_module", "def"], [45, 3, 1, "c.Py_mod_create.create_module", "spec"]], "Py_mod_exec": [[45, 2, 1, "c.Py_mod_exec.exec_module", "exec_module"]], "Py_mod_exec.exec_module": [[45, 3, 1, "c.Py_mod_exec.exec_module", "module"]], "StopIteration": [[213, 7, 1, "", "value"]], "SyntaxError": [[213, 7, 1, "", "end_lineno"], [213, 7, 1, "", "end_offset"], [213, 7, 1, "", "filename"], [213, 7, 1, "", "lineno"], [213, 7, 1, "", "offset"], [213, 7, 1, "", "text"]], "SystemExit": [[213, 7, 1, "", "code"]], "UnicodeError": [[213, 7, 1, "", "encoding"], [213, 7, 1, "", "end"], [213, 7, 1, "", "object"], [213, 7, 1, "", "reason"], [213, 7, 1, "", "start"]], "_PyBytes_Resize": [[9, 3, 1, "c._PyBytes_Resize", "bytes"], [9, 3, 1, "c._PyBytes_Resize", "newsize"]], "_PyInterpreterState_GetEvalFrameFunc": [[33, 3, 1, "c._PyInterpreterState_GetEvalFrameFunc", "interp"]], "_PyInterpreterState_SetEvalFrameFunc": [[33, 3, 1, "c._PyInterpreterState_SetEvalFrameFunc", "eval_frame"], [33, 3, 1, "c._PyInterpreterState_SetEvalFrameFunc", "interp"]], "_PyObject_GetDictPtr": [[49, 3, 1, "c._PyObject_GetDictPtr", "obj"]], "_PyObject_New": [[3, 3, 1, "c._PyObject_New", "type"]], "_PyObject_NewVar": [[3, 3, 1, "c._PyObject_NewVar", "size"], [3, 3, 1, "c._PyObject_NewVar", "type"]], "_PyTuple_Resize": [[60, 3, 1, "c._PyTuple_Resize", "newsize"], [60, 3, 1, "c._PyTuple_Resize", "p"]], "_Py_c_diff": [[15, 3, 1, "c._Py_c_diff", "left"], [15, 3, 1, "c._Py_c_diff", "right"]], "_Py_c_neg": [[15, 3, 1, "c._Py_c_neg", "num"]], "_Py_c_pow": [[15, 3, 1, "c._Py_c_pow", "exp"], [15, 3, 1, "c._Py_c_pow", "num"]], "_Py_c_prod": [[15, 3, 1, "c._Py_c_prod", "left"], [15, 3, 1, "c._Py_c_prod", "right"]], "_Py_c_quot": [[15, 3, 1, "c._Py_c_quot", "dividend"], [15, 3, 1, "c._Py_c_quot", "divisor"]], "_Py_c_sum": [[15, 3, 1, "c._Py_c_sum", "left"], [15, 3, 1, "c._Py_c_sum", "right"]], "__future__": [[113, 11, 1, "future__._Feature", "_Feature"]], "__future__._Feature": [[113, 7, 1, "future__._Feature.compiler_flag", "compiler_flag"], [113, 8, 1, "future__._Feature.getMandatoryRelease", "getMandatoryRelease"], [113, 8, 1, "future__._Feature.getOptionalRelease", "getOptionalRelease"]], "_inittab": [[31, 0, 1, "c._inittab.initfunc", "initfunc"], [31, 0, 1, "c._inittab.name", "name"]], "_thread": [[115, 9, 1, "thread.LockType", "LockType"], [115, 9, 1, "thread.TIMEOUT_MAX", "TIMEOUT_MAX"], [115, 12, 1, "thread.allocate_lock", "allocate_lock"], [115, 6, 1, "thread.error", "error"], [115, 12, 1, "thread.exit", "exit"], [115, 12, 1, "thread.get_ident", "get_ident"], [115, 12, 1, "thread.get_native_id", "get_native_id"], [115, 12, 1, "thread.interrupt_main", "interrupt_main"], [115, 12, 1, "thread.stack_size", "stack_size"], [115, 12, 1, "thread.start_new_thread", "start_new_thread"]], "_thread.lock": [[115, 8, 1, "thread.lock.acquire", "acquire"], [115, 8, 1, "thread.lock.locked", "locked"], [115, 8, 1, "thread.lock.release", "release"]], "_tkinter": [[369, 9, 1, "tkinter.EXCEPTION", "EXCEPTION"], [369, 9, 1, "tkinter.READABLE", "READABLE"], [369, 9, 1, "tkinter.WRITABLE", "WRITABLE"]], "_tkinter.Widget.tk": [[369, 8, 1, "tkinter.Widget.tk.createfilehandler", "createfilehandler"], [369, 8, 1, "tkinter.Widget.tk.deletefilehandler", "deletefilehandler"]], "abc": [[116, 11, 1, "", "ABC"], [116, 11, 1, "", "ABCMeta"], [116, 12, 1, "", "abstractclassmethod"], [116, 12, 1, "", "abstractmethod"], [116, 12, 1, "", "abstractproperty"], [116, 12, 1, "", "abstractstaticmethod"], [116, 12, 1, "", "get_cache_token"], [116, 12, 1, "", "update_abstractmethods"]], "abc.ABCMeta": [[116, 8, 1, "", "__subclasshook__"], [116, 8, 1, "", "register"]], "agen": [[430, 8, 1, "", "__anext__"], [430, 8, 1, "", "aclose"], [430, 8, 1, "", "asend"], [430, 8, 1, "", "athrow"]], "aifc": [[117, 12, 1, "", "open"]], "aifc.aifc": [[117, 8, 1, "", "aifc"], [117, 8, 1, "", "aiff"], [117, 8, 1, "", "close"], [117, 8, 1, "", "getcompname"], [117, 8, 1, "", "getcomptype"], [117, 8, 1, "", "getframerate"], [117, 8, 1, "", "getmark"], [117, 8, 1, "", "getmarkers"], [117, 8, 1, "", "getnchannels"], [117, 8, 1, "", "getnframes"], [117, 8, 1, "", "getparams"], [117, 8, 1, "", "getsampwidth"], [117, 8, 1, "", "readframes"], [117, 8, 1, "", "rewind"], [117, 8, 1, "", "setcomptype"], [117, 8, 1, "", "setframerate"], [117, 8, 1, "", "setmark"], [117, 8, 1, "", "setnchannels"], [117, 8, 1, "", "setnframes"], [117, 8, 1, "", "setparams"], [117, 8, 1, "", "setpos"], [117, 8, 1, "", "setsampwidth"], [117, 8, 1, "", "tell"], [117, 8, 1, "", "writeframes"], [117, 8, 1, "", "writeframesraw"]], "argparse": [[120, 11, 1, "", "Action"], [120, 11, 1, "", "ArgumentDefaultsHelpFormatter"], [120, 6, 1, "", "ArgumentError"], [120, 11, 1, "", "ArgumentParser"], [120, 6, 1, "", "ArgumentTypeError"], [120, 11, 1, "", "FileType"], [120, 11, 1, "", "MetavarTypeHelpFormatter"], [120, 11, 1, "", "Namespace"], [120, 11, 1, "", "RawDescriptionHelpFormatter"], [120, 11, 1, "", "RawTextHelpFormatter"]], "argparse.ArgumentParser": [[120, 8, 1, "", "add_argument"], [120, 8, 1, "", "add_argument_group"], [120, 8, 1, "", "add_mutually_exclusive_group"], [120, 8, 1, "", "add_subparsers"], [120, 8, 1, "", "convert_arg_line_to_args"], [120, 8, 1, "", "error"], [120, 8, 1, "", "exit"], [120, 8, 1, "", "format_help"], [120, 8, 1, "", "format_usage"], [120, 8, 1, "", "get_default"], [120, 8, 1, "", "parse_args"], [120, 8, 1, "", "parse_intermixed_args"], [120, 8, 1, "", "parse_known_args"], [120, 8, 1, "", "parse_known_intermixed_args"], [120, 8, 1, "", "print_help"], [120, 8, 1, "", "print_usage"], [120, 8, 1, "", "set_defaults"]], "array": [[121, 11, 1, "", "array"], [121, 9, 1, "", "typecodes"]], "array.array": [[121, 8, 1, "", "append"], [121, 8, 1, "", "buffer_info"], [121, 8, 1, "", "byteswap"], [121, 8, 1, "", "count"], [121, 8, 1, "", "extend"], [121, 8, 1, "", "frombytes"], [121, 8, 1, "", "fromfile"], [121, 8, 1, "", "fromlist"], [121, 8, 1, "", "fromunicode"], [121, 8, 1, "", "index"], [121, 8, 1, "", "insert"], [121, 7, 1, "", "itemsize"], [121, 8, 1, "", "pop"], [121, 8, 1, "", "remove"], [121, 8, 1, "", "reverse"], [121, 8, 1, "", "tobytes"], [121, 8, 1, "", "tofile"], [121, 8, 1, "", "tolist"], [121, 8, 1, "", "tounicode"], [121, 7, 1, "", "typecode"]], "ast": [[122, 11, 1, "", "AST"], [122, 11, 1, "", "Add"], [122, 11, 1, "", "And"], [122, 11, 1, "", "AnnAssign"], [122, 11, 1, "", "Assert"], [122, 11, 1, "", "Assign"], [122, 11, 1, "", "AsyncFor"], [122, 11, 1, "", "AsyncFunctionDef"], [122, 11, 1, "", "AsyncWith"], [122, 11, 1, "", "Attribute"], [122, 11, 1, "", "AugAssign"], [122, 11, 1, "", "Await"], [122, 11, 1, "", "BinOp"], [122, 11, 1, "", "BitAnd"], [122, 11, 1, "", "BitOr"], [122, 11, 1, "", "BitXor"], [122, 11, 1, "", "BoolOp"], [122, 11, 1, "", "Break"], [122, 11, 1, "", "Call"], [122, 11, 1, "", "ClassDef"], [122, 11, 1, "", "Compare"], [122, 11, 1, "", "Constant"], [122, 11, 1, "", "Continue"], [122, 11, 1, "", "Del"], [122, 11, 1, "", "Delete"], [122, 11, 1, "", "Dict"], [122, 11, 1, "", "DictComp"], [122, 11, 1, "", "Div"], [122, 11, 1, "", "Eq"], [122, 11, 1, "", "ExceptHandler"], [122, 11, 1, "", "Expr"], [122, 11, 1, "", "Expression"], [122, 11, 1, "", "FloorDiv"], [122, 11, 1, "", "For"], [122, 11, 1, "", "FormattedValue"], [122, 11, 1, "", "FunctionDef"], [122, 11, 1, "", "FunctionType"], [122, 11, 1, "", "GeneratorExp"], [122, 11, 1, "", "Global"], [122, 11, 1, "", "Gt"], [122, 11, 1, "", "GtE"], [122, 11, 1, "", "If"], [122, 11, 1, "", "IfExp"], [122, 11, 1, "", "Import"], [122, 11, 1, "", "ImportFrom"], [122, 11, 1, "", "In"], [122, 11, 1, "", "Interactive"], [122, 11, 1, "", "Invert"], [122, 11, 1, "", "Is"], [122, 11, 1, "", "IsNot"], [122, 11, 1, "", "JoinedStr"], [122, 11, 1, "", "LShift"], [122, 11, 1, "", "Lambda"], [122, 11, 1, "", "List"], [122, 11, 1, "", "ListComp"], [122, 11, 1, "", "Load"], [122, 11, 1, "", "Lt"], [122, 11, 1, "", "LtE"], [122, 11, 1, "", "MatMult"], [122, 11, 1, "", "Match"], [122, 11, 1, "", "MatchAs"], [122, 11, 1, "", "MatchClass"], [122, 11, 1, "", "MatchMapping"], [122, 11, 1, "", "MatchOr"], [122, 11, 1, "", "MatchSequence"], [122, 11, 1, "", "MatchSingleton"], [122, 11, 1, "", "MatchStar"], [122, 11, 1, "", "MatchValue"], [122, 11, 1, "", "Mod"], [122, 11, 1, "", "Module"], [122, 11, 1, "", "Mult"], [122, 11, 1, "", "Name"], [122, 11, 1, "", "NamedExpr"], [122, 11, 1, "", "NodeTransformer"], [122, 11, 1, "", "NodeVisitor"], [122, 11, 1, "", "Nonlocal"], [122, 11, 1, "", "Not"], [122, 11, 1, "", "NotEq"], [122, 11, 1, "", "NotIn"], [122, 11, 1, "", "Or"], [122, 11, 1, "", "ParamSpec"], [122, 11, 1, "", "Pass"], [122, 11, 1, "", "Pow"], [122, 9, 1, "", "PyCF_ALLOW_TOP_LEVEL_AWAIT"], [122, 9, 1, "", "PyCF_ONLY_AST"], [122, 9, 1, "", "PyCF_TYPE_COMMENTS"], [122, 11, 1, "", "RShift"], [122, 11, 1, "", "Raise"], [122, 11, 1, "", "Return"], [122, 11, 1, "", "Set"], [122, 11, 1, "", "SetComp"], [122, 11, 1, "", "Slice"], [122, 11, 1, "", "Starred"], [122, 11, 1, "", "Store"], [122, 11, 1, "", "Sub"], [122, 11, 1, "", "Subscript"], [122, 11, 1, "", "Try"], [122, 11, 1, "", "TryStar"], [122, 11, 1, "", "Tuple"], [122, 11, 1, "", "TypeAlias"], [122, 11, 1, "", "TypeVar"], [122, 11, 1, "", "TypeVarTuple"], [122, 11, 1, "", "UAdd"], [122, 11, 1, "", "USub"], [122, 11, 1, "", "UnaryOp"], [122, 11, 1, "", "While"], [122, 11, 1, "", "With"], [122, 11, 1, "", "Yield"], [122, 11, 1, "", "YieldFrom"], [122, 11, 1, "", "alias"], [122, 11, 1, "", "arg"], [122, 11, 1, "", "arguments"], [122, 11, 1, "", "comprehension"], [122, 12, 1, "", "copy_location"], [122, 12, 1, "", "dump"], [122, 12, 1, "", "fix_missing_locations"], [122, 12, 1, "", "get_docstring"], [122, 12, 1, "", "get_source_segment"], [122, 12, 1, "", "increment_lineno"], [122, 12, 1, "", "iter_child_nodes"], [122, 12, 1, "", "iter_fields"], [122, 11, 1, "", "keyword"], [122, 12, 1, "", "literal_eval"], [122, 11, 1, "", "match_case"], [122, 12, 1, "", "parse"], [122, 12, 1, "", "unparse"], [122, 12, 1, "", "walk"], [122, 11, 1, "", "withitem"], [122, 14, 1, "cmdoption-ast-h", "--help"], [122, 14, 1, "cmdoption-ast-a", "--include-attributes"], [122, 14, 1, "cmdoption-ast-indent", "--indent"], [122, 14, 1, "cmdoption-ast-mode", "--mode"], [122, 14, 1, "cmdoption-ast-no-type-comments", "--no-type-comments"], [122, 14, 1, "cmdoption-ast-a", "-a"], [122, 14, 1, "cmdoption-ast-h", "-h"], [122, 14, 1, "cmdoption-ast-i", "-i"], [122, 14, 1, "cmdoption-ast-m", "-m"]], "ast.AST": [[122, 7, 1, "", "_fields"], [122, 7, 1, "", "col_offset"], [122, 7, 1, "", "end_col_offset"], [122, 7, 1, "", "end_lineno"], [122, 7, 1, "", "lineno"]], "ast.Assign": [[122, 7, 1, "", "type_comment"]], "ast.For": [[122, 7, 1, "", "type_comment"]], "ast.FunctionDef": [[122, 7, 1, "", "type_comment"]], "ast.NodeVisitor": [[122, 8, 1, "", "generic_visit"], [122, 8, 1, "", "visit"], [122, 8, 1, "", "visit_Constant"]], "ast.With": [[122, 7, 1, "", "type_comment"]], "ast.arg": [[122, 7, 1, "", "type_comment"]], "asyncio": [[139, 9, 1, "", "ALL_COMPLETED"], [132, 11, 1, "", "AbstractChildWatcher"], [126, 11, 1, "", "AbstractEventLoop"], [132, 11, 1, "", "AbstractEventLoopPolicy"], [138, 11, 1, "", "Barrier"], [133, 11, 1, "", "BaseProtocol"], [133, 11, 1, "", "BaseTransport"], [138, 11, 1, "", "BoundedSemaphore"], [138, 6, 1, "", "BrokenBarrierError"], [133, 11, 1, "", "BufferedProtocol"], [127, 6, 1, "", "CancelledError"], [138, 11, 1, "", "Condition"], [133, 11, 1, "", "DatagramProtocol"], [133, 11, 1, "", "DatagramTransport"], [132, 11, 1, "", "DefaultEventLoopPolicy"], [138, 11, 1, "", "Event"], [139, 9, 1, "", "FIRST_COMPLETED"], [139, 9, 1, "", "FIRST_EXCEPTION"], [132, 11, 1, "", "FastChildWatcher"], [129, 11, 1, "", "Future"], [126, 11, 1, "", "Handle"], [127, 6, 1, "", "IncompleteReadError"], [127, 6, 1, "", "InvalidStateError"], [134, 11, 1, "", "LifoQueue"], [127, 6, 1, "", "LimitOverrunError"], [138, 11, 1, "", "Lock"], [132, 11, 1, "", "MultiLoopChildWatcher"], [132, 11, 1, "", "PidfdChildWatcher"], [134, 11, 1, "", "PriorityQueue"], [126, 11, 1, "", "ProactorEventLoop"], [133, 11, 1, "", "Protocol"], [134, 11, 1, "", "Queue"], [134, 6, 1, "", "QueueEmpty"], [134, 6, 1, "", "QueueFull"], [133, 11, 1, "", "ReadTransport"], [135, 11, 1, "", "Runner"], [132, 11, 1, "", "SafeChildWatcher"], [126, 11, 1, "", "SelectorEventLoop"], [138, 11, 1, "", "Semaphore"], [127, 6, 1, "", "SendfileNotAvailableError"], [126, 11, 1, "", "Server"], [136, 11, 1, "", "StreamReader"], [136, 11, 1, "", "StreamWriter"], [133, 11, 1, "", "SubprocessProtocol"], [133, 11, 1, "", "SubprocessTransport"], [139, 11, 1, "", "Task"], [139, 11, 1, "", "TaskGroup"], [132, 11, 1, "", "ThreadedChildWatcher"], [139, 11, 1, "", "Timeout"], [127, 6, 1, "", "TimeoutError"], [126, 11, 1, "", "TimerHandle"], [133, 11, 1, "", "Transport"], [132, 11, 1, "", "WindowsProactorEventLoopPolicy"], [132, 11, 1, "", "WindowsSelectorEventLoopPolicy"], [133, 11, 1, "", "WriteTransport"], [128, 12, 1, "", "_enter_task"], [128, 12, 1, "", "_leave_task"], [128, 12, 1, "", "_register_task"], [128, 12, 1, "", "_unregister_task"], [139, 12, 1, "", "all_tasks"], [139, 12, 1, "", "as_completed"], [139, 12, 1, "", "create_eager_task_factory"], [137, 12, 1, "", "create_subprocess_exec"], [137, 12, 1, "", "create_subprocess_shell"], [139, 12, 1, "", "create_task"], [139, 12, 1, "", "current_task"], [139, 12, 1, "", "eager_task_factory"], [129, 12, 1, "", "ensure_future"], [139, 12, 1, "", "gather"], [132, 12, 1, "", "get_child_watcher"], [126, 12, 1, "", "get_event_loop"], [132, 12, 1, "", "get_event_loop_policy"], [126, 12, 1, "", "get_running_loop"], [139, 12, 1, "", "iscoroutine"], [129, 12, 1, "", "isfuture"], [126, 12, 1, "", "new_event_loop"], [136, 12, 1, "", "open_connection"], [136, 12, 1, "", "open_unix_connection"], [135, 12, 1, "", "run"], [139, 12, 1, "", "run_coroutine_threadsafe"], [132, 12, 1, "", "set_child_watcher"], [126, 12, 1, "", "set_event_loop"], [132, 12, 1, "", "set_event_loop_policy"], [139, 12, 1, "", "shield"], [139, 12, 1, "", "sleep"], [136, 12, 1, "", "start_server"], [136, 12, 1, "", "start_unix_server"], [139, 12, 1, "", "timeout"], [139, 12, 1, "", "timeout_at"], [139, 12, 1, "", "to_thread"], [139, 12, 1, "", "wait"], [139, 12, 1, "", "wait_for"], [129, 12, 1, "", "wrap_future"]], "asyncio.AbstractChildWatcher": [[132, 8, 1, "", "add_child_handler"], [132, 8, 1, "", "attach_loop"], [132, 8, 1, "", "close"], [132, 8, 1, "", "is_active"], [132, 8, 1, "", "remove_child_handler"]], "asyncio.AbstractEventLoopPolicy": [[132, 8, 1, "", "get_child_watcher"], [132, 8, 1, "", "get_event_loop"], [132, 8, 1, "", "new_event_loop"], [132, 8, 1, "", "set_child_watcher"], [132, 8, 1, "", "set_event_loop"]], "asyncio.Barrier": [[138, 8, 1, "", "abort"], [138, 7, 1, "", "broken"], [138, 7, 1, "", "n_waiting"], [138, 7, 1, "", "parties"], [138, 8, 1, "", "reset"], [138, 8, 1, "", "wait"]], "asyncio.BaseProtocol": [[133, 8, 1, "", "connection_lost"], [133, 8, 1, "", "connection_made"], [133, 8, 1, "", "pause_writing"], [133, 8, 1, "", "resume_writing"]], "asyncio.BaseTransport": [[133, 8, 1, "", "close"], [133, 8, 1, "", "get_extra_info"], [133, 8, 1, "", "get_protocol"], [133, 8, 1, "", "is_closing"], [133, 8, 1, "", "set_protocol"]], "asyncio.BufferedProtocol": [[133, 8, 1, "", "buffer_updated"], [133, 8, 1, "", "eof_received"], [133, 8, 1, "", "get_buffer"]], "asyncio.Condition": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "notify"], [138, 8, 1, "", "notify_all"], [138, 8, 1, "", "release"], [138, 8, 1, "", "wait"], [138, 8, 1, "", "wait_for"]], "asyncio.DatagramProtocol": [[133, 8, 1, "", "datagram_received"], [133, 8, 1, "", "error_received"]], "asyncio.DatagramTransport": [[133, 8, 1, "", "abort"], [133, 8, 1, "", "sendto"]], "asyncio.Event": [[138, 8, 1, "", "clear"], [138, 8, 1, "", "is_set"], [138, 8, 1, "", "set"], [138, 8, 1, "", "wait"]], "asyncio.Future": [[128, 8, 1, "", "__init__"], [129, 8, 1, "", "add_done_callback"], [129, 8, 1, "", "cancel"], [129, 8, 1, "", "cancelled"], [129, 8, 1, "", "done"], [129, 8, 1, "", "exception"], [129, 8, 1, "", "get_loop"], [129, 8, 1, "", "remove_done_callback"], [129, 8, 1, "", "result"], [129, 8, 1, "", "set_exception"], [129, 8, 1, "", "set_result"]], "asyncio.Handle": [[126, 8, 1, "", "cancel"], [126, 8, 1, "", "cancelled"], [126, 8, 1, "", "get_context"]], "asyncio.IncompleteReadError": [[127, 7, 1, "", "expected"], [127, 7, 1, "", "partial"]], "asyncio.LimitOverrunError": [[127, 7, 1, "", "consumed"]], "asyncio.Lock": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "release"]], "asyncio.Protocol": [[133, 8, 1, "", "data_received"], [133, 8, 1, "", "eof_received"]], "asyncio.Queue": [[134, 8, 1, "", "empty"], [134, 8, 1, "", "full"], [134, 8, 1, "", "get"], [134, 8, 1, "", "get_nowait"], [134, 8, 1, "", "join"], [134, 7, 1, "", "maxsize"], [134, 8, 1, "", "put"], [134, 8, 1, "", "put_nowait"], [134, 8, 1, "", "qsize"], [134, 8, 1, "", "task_done"]], "asyncio.ReadTransport": [[133, 8, 1, "", "is_reading"], [133, 8, 1, "", "pause_reading"], [133, 8, 1, "", "resume_reading"]], "asyncio.Runner": [[135, 8, 1, "", "close"], [135, 8, 1, "", "get_loop"], [135, 8, 1, "", "run"]], "asyncio.Semaphore": [[138, 8, 1, "", "acquire"], [138, 8, 1, "", "locked"], [138, 8, 1, "", "release"]], "asyncio.Server": [[126, 8, 1, "", "close"], [126, 8, 1, "", "get_loop"], [126, 8, 1, "", "is_serving"], [126, 8, 1, "", "serve_forever"], [126, 7, 1, "", "sockets"], [126, 8, 1, "", "start_serving"], [126, 8, 1, "", "wait_closed"]], "asyncio.StreamReader": [[136, 8, 1, "", "at_eof"], [136, 8, 1, "", "feed_eof"], [136, 8, 1, "", "read"], [136, 8, 1, "", "readexactly"], [136, 8, 1, "", "readline"], [136, 8, 1, "", "readuntil"]], "asyncio.StreamWriter": [[136, 8, 1, "", "can_write_eof"], [136, 8, 1, "", "close"], [136, 8, 1, "", "drain"], [136, 8, 1, "", "get_extra_info"], [136, 8, 1, "", "is_closing"], [136, 8, 1, "", "start_tls"], [136, 7, 1, "", "transport"], [136, 8, 1, "", "wait_closed"], [136, 8, 1, "", "write"], [136, 8, 1, "", "write_eof"], [136, 8, 1, "", "writelines"]], "asyncio.SubprocessProtocol": [[133, 8, 1, "", "pipe_connection_lost"], [133, 8, 1, "", "pipe_data_received"], [133, 8, 1, "", "process_exited"]], "asyncio.SubprocessTransport": [[133, 8, 1, "", "close"], [133, 8, 1, "", "get_pid"], [133, 8, 1, "", "get_pipe_transport"], [133, 8, 1, "", "get_returncode"], [133, 8, 1, "", "kill"], [133, 8, 1, "", "send_signal"], [133, 8, 1, "", "terminate"]], "asyncio.Task": [[128, 8, 1, "", "__init__"], [139, 8, 1, "", "add_done_callback"], [139, 8, 1, "", "cancel"], [139, 8, 1, "", "cancelled"], [139, 8, 1, "", "cancelling"], [139, 8, 1, "", "done"], [139, 8, 1, "", "exception"], [139, 8, 1, "", "get_context"], [139, 8, 1, "", "get_coro"], [139, 8, 1, "", "get_name"], [139, 8, 1, "", "get_stack"], [139, 8, 1, "", "print_stack"], [139, 8, 1, "", "remove_done_callback"], [139, 8, 1, "", "result"], [139, 8, 1, "", "set_name"], [139, 8, 1, "", "uncancel"]], "asyncio.TaskGroup": [[139, 8, 1, "", "create_task"]], "asyncio.Timeout": [[139, 8, 1, "", "expired"], [139, 8, 1, "", "reschedule"], [139, 8, 1, "", "when"]], "asyncio.TimerHandle": [[126, 8, 1, "", "when"]], "asyncio.WriteTransport": [[133, 8, 1, "", "abort"], [133, 8, 1, "", "can_write_eof"], [133, 8, 1, "", "get_write_buffer_limits"], [133, 8, 1, "", "get_write_buffer_size"], [133, 8, 1, "", "set_write_buffer_limits"], [133, 8, 1, "", "write"], [133, 8, 1, "", "write_eof"], [133, 8, 1, "", "writelines"]], "asyncio.loop": [[126, 8, 1, "", "add_reader"], [126, 8, 1, "", "add_signal_handler"], [126, 8, 1, "", "add_writer"], [126, 8, 1, "", "call_at"], [126, 8, 1, "", "call_exception_handler"], [126, 8, 1, "", "call_later"], [126, 8, 1, "", "call_soon"], [126, 8, 1, "", "call_soon_threadsafe"], [126, 8, 1, "", "close"], [126, 8, 1, "", "connect_accepted_socket"], [126, 8, 1, "", "connect_read_pipe"], [126, 8, 1, "", "connect_write_pipe"], [126, 8, 1, "", "create_connection"], [126, 8, 1, "", "create_datagram_endpoint"], [126, 8, 1, "", "create_future"], [126, 8, 1, "", "create_server"], [126, 8, 1, "", "create_task"], [126, 8, 1, "", "create_unix_connection"], [126, 8, 1, "", "create_unix_server"], [126, 8, 1, "", "default_exception_handler"], [126, 8, 1, "", "get_debug"], [126, 8, 1, "", "get_exception_handler"], [126, 8, 1, "", "get_task_factory"], [126, 8, 1, "", "getaddrinfo"], [126, 8, 1, "", "getnameinfo"], [126, 8, 1, "", "is_closed"], [126, 8, 1, "", "is_running"], [126, 8, 1, "", "remove_reader"], [126, 8, 1, "", "remove_signal_handler"], [126, 8, 1, "", "remove_writer"], [126, 8, 1, "", "run_forever"], [126, 8, 1, "", "run_in_executor"], [126, 8, 1, "", "run_until_complete"], [126, 8, 1, "", "sendfile"], [126, 8, 1, "", "set_debug"], [126, 8, 1, "", "set_default_executor"], [126, 8, 1, "", "set_exception_handler"], [126, 8, 1, "", "set_task_factory"], [126, 8, 1, "", "shutdown_asyncgens"], [126, 8, 1, "", "shutdown_default_executor"], [126, 7, 1, "", "slow_callback_duration"], [126, 8, 1, "", "sock_accept"], [126, 8, 1, "", "sock_connect"], [126, 8, 1, "", "sock_recv"], [126, 8, 1, "", "sock_recv_into"], [126, 8, 1, "", "sock_recvfrom"], [126, 8, 1, "", "sock_recvfrom_into"], [126, 8, 1, "", "sock_sendall"], [126, 8, 1, "", "sock_sendfile"], [126, 8, 1, "", "sock_sendto"], [126, 8, 1, "", "start_tls"], [126, 8, 1, "", "stop"], [126, 8, 1, "", "subprocess_exec"], [126, 8, 1, "", "subprocess_shell"], [126, 8, 1, "", "time"]], "asyncio.subprocess": [[137, 9, 1, "", "DEVNULL"], [137, 9, 1, "", "PIPE"], [137, 11, 1, "", "Process"], [137, 9, 1, "", "STDOUT"]], "asyncio.subprocess.Process": [[137, 8, 1, "", "communicate"], [137, 8, 1, "", "kill"], [137, 7, 1, "", "pid"], [137, 7, 1, "", "returncode"], [137, 8, 1, "", "send_signal"], [137, 7, 1, "", "stderr"], [137, 7, 1, "", "stdin"], [137, 7, 1, "", "stdout"], [137, 8, 1, "", "terminate"], [137, 8, 1, "", "wait"]], "atexit": [[140, 12, 1, "", "register"], [140, 12, 1, "", "unregister"]], "audioop": [[141, 12, 1, "", "add"], [141, 12, 1, "", "adpcm2lin"], [141, 12, 1, "", "alaw2lin"], [141, 12, 1, "", "avg"], [141, 12, 1, "", "avgpp"], [141, 12, 1, "", "bias"], [141, 12, 1, "", "byteswap"], [141, 12, 1, "", "cross"], [141, 6, 1, "", "error"], [141, 12, 1, "", "findfactor"], [141, 12, 1, "", "findfit"], [141, 12, 1, "", "findmax"], [141, 12, 1, "", "getsample"], [141, 12, 1, "", "lin2adpcm"], [141, 12, 1, "", "lin2alaw"], [141, 12, 1, "", "lin2lin"], [141, 12, 1, "", "lin2ulaw"], [141, 12, 1, "", "max"], [141, 12, 1, "", "maxpp"], [141, 12, 1, "", "minmax"], [141, 12, 1, "", "mul"], [141, 12, 1, "", "ratecv"], [141, 12, 1, "", "reverse"], [141, 12, 1, "", "rms"], [141, 12, 1, "", "tomono"], [141, 12, 1, "", "tostereo"], [141, 12, 1, "", "ulaw2lin"]], "base64": [[143, 12, 1, "", "a85decode"], [143, 12, 1, "", "a85encode"], [143, 12, 1, "", "b16decode"], [143, 12, 1, "", "b16encode"], [143, 12, 1, "", "b32decode"], [143, 12, 1, "", "b32encode"], [143, 12, 1, "", "b32hexdecode"], [143, 12, 1, "", "b32hexencode"], [143, 12, 1, "", "b64decode"], [143, 12, 1, "", "b64encode"], [143, 12, 1, "", "b85decode"], [143, 12, 1, "", "b85encode"], [143, 12, 1, "", "decode"], [143, 12, 1, "", "decodebytes"], [143, 12, 1, "", "encode"], [143, 12, 1, "", "encodebytes"], [143, 12, 1, "", "standard_b64decode"], [143, 12, 1, "", "standard_b64encode"], [143, 12, 1, "", "urlsafe_b64decode"], [143, 12, 1, "", "urlsafe_b64encode"]], "bdb": [[144, 11, 1, "", "Bdb"], [144, 6, 1, "", "BdbQuit"], [144, 11, 1, "", "Breakpoint"], [144, 12, 1, "", "checkfuncname"], [144, 12, 1, "", "effective"], [144, 12, 1, "", "set_trace"]], "bdb.Bdb": [[144, 8, 1, "", "break_anywhere"], [144, 8, 1, "", "break_here"], [144, 8, 1, "", "canonic"], [144, 8, 1, "", "clear_all_breaks"], [144, 8, 1, "", "clear_all_file_breaks"], [144, 8, 1, "", "clear_bpbynumber"], [144, 8, 1, "", "clear_break"], [144, 8, 1, "", "dispatch_call"], [144, 8, 1, "", "dispatch_exception"], [144, 8, 1, "", "dispatch_line"], [144, 8, 1, "", "dispatch_return"], [144, 8, 1, "", "do_clear"], [144, 8, 1, "", "format_stack_entry"], [144, 8, 1, "", "get_all_breaks"], [144, 8, 1, "", "get_bpbynumber"], [144, 8, 1, "", "get_break"], [144, 8, 1, "", "get_breaks"], [144, 8, 1, "", "get_file_breaks"], [144, 8, 1, "", "get_stack"], [144, 8, 1, "", "is_skipped_line"], [144, 8, 1, "", "reset"], [144, 8, 1, "", "run"], [144, 8, 1, "", "runcall"], [144, 8, 1, "", "runctx"], [144, 8, 1, "", "runeval"], [144, 8, 1, "", "set_break"], [144, 8, 1, "", "set_continue"], [144, 8, 1, "", "set_next"], [144, 8, 1, "", "set_quit"], [144, 8, 1, "", "set_return"], [144, 8, 1, "", "set_step"], [144, 8, 1, "", "set_trace"], [144, 8, 1, "", "set_until"], [144, 8, 1, "", "stop_here"], [144, 8, 1, "", "trace_dispatch"], [144, 8, 1, "", "user_call"], [144, 8, 1, "", "user_exception"], [144, 8, 1, "", "user_line"], [144, 8, 1, "", "user_return"]], "bdb.Breakpoint": [[144, 7, 1, "", "bpbynumber"], [144, 8, 1, "", "bpformat"], [144, 7, 1, "", "bplist"], [144, 8, 1, "", "bpprint"], [144, 7, 1, "", "cond"], [144, 8, 1, "", "deleteMe"], [144, 8, 1, "", "disable"], [144, 8, 1, "", "enable"], [144, 7, 1, "", "enabled"], [144, 7, 1, "", "file"], [144, 7, 1, "", "funcname"], [144, 7, 1, "", "hits"], [144, 7, 1, "", "ignore"], [144, 7, 1, "", "line"], [144, 7, 1, "", "temporary"]], "binascii": [[146, 6, 1, "", "Error"], [146, 6, 1, "", "Incomplete"], [146, 12, 1, "", "a2b_base64"], [146, 12, 1, "", "a2b_hex"], [146, 12, 1, "", "a2b_qp"], [146, 12, 1, "", "a2b_uu"], [146, 12, 1, "", "b2a_base64"], [146, 12, 1, "", "b2a_hex"], [146, 12, 1, "", "b2a_qp"], [146, 12, 1, "", "b2a_uu"], [146, 12, 1, "", "crc32"], [146, 12, 1, "", "crc_hqx"], [146, 12, 1, "", "hexlify"], [146, 12, 1, "", "unhexlify"]], "bisect": [[147, 12, 1, "", "bisect"], [147, 12, 1, "", "bisect_left"], [147, 12, 1, "", "bisect_right"], [147, 12, 1, "", "insort"], [147, 12, 1, "", "insort_left"], [147, 12, 1, "", "insort_right"]], "bytearray": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "decode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "bytes": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "decode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "bz2": [[149, 11, 1, "", "BZ2Compressor"], [149, 11, 1, "", "BZ2Decompressor"], [149, 11, 1, "", "BZ2File"], [149, 12, 1, "", "compress"], [149, 12, 1, "", "decompress"], [149, 12, 1, "", "open"]], "bz2.BZ2Compressor": [[149, 8, 1, "", "compress"], [149, 8, 1, "", "flush"]], "bz2.BZ2Decompressor": [[149, 8, 1, "", "decompress"], [149, 7, 1, "", "eof"], [149, 7, 1, "", "needs_input"], [149, 7, 1, "", "unused_data"]], "bz2.BZ2File": [[149, 8, 1, "", "fileno"], [149, 8, 1, "", "peek"], [149, 8, 1, "", "read1"], [149, 8, 1, "", "readable"], [149, 8, 1, "", "readinto"], [149, 8, 1, "", "seekable"], [149, 8, 1, "", "writable"]], "calendar": [[150, 9, 1, "", "APRIL"], [150, 9, 1, "", "AUGUST"], [150, 11, 1, "", "Calendar"], [150, 9, 1, "", "DECEMBER"], [150, 11, 1, "", "Day"], [150, 9, 1, "", "FEBRUARY"], [150, 9, 1, "", "FRIDAY"], [150, 11, 1, "", "HTMLCalendar"], [150, 6, 1, "", "IllegalMonthError"], [150, 6, 1, "", "IllegalWeekdayError"], [150, 9, 1, "", "JANUARY"], [150, 9, 1, "", "JULY"], [150, 9, 1, "", "JUNE"], [150, 11, 1, "", "LocaleHTMLCalendar"], [150, 11, 1, "", "LocaleTextCalendar"], [150, 9, 1, "", "MARCH"], [150, 9, 1, "", "MAY"], [150, 9, 1, "", "MONDAY"], [150, 11, 1, "", "Month"], [150, 9, 1, "", "NOVEMBER"], [150, 9, 1, "", "OCTOBER"], [150, 9, 1, "", "SATURDAY"], [150, 9, 1, "", "SEPTEMBER"], [150, 9, 1, "", "SUNDAY"], [150, 9, 1, "", "THURSDAY"], [150, 9, 1, "", "TUESDAY"], [150, 11, 1, "", "TextCalendar"], [150, 9, 1, "", "WEDNESDAY"], [150, 12, 1, "", "calendar"], [150, 9, 1, "", "day_abbr"], [150, 9, 1, "", "day_name"], [150, 12, 1, "", "firstweekday"], [150, 12, 1, "", "isleap"], [150, 12, 1, "", "leapdays"], [150, 12, 1, "", "month"], [150, 9, 1, "", "month_abbr"], [150, 9, 1, "", "month_name"], [150, 12, 1, "", "monthcalendar"], [150, 12, 1, "", "monthrange"], [150, 12, 1, "", "prcal"], [150, 12, 1, "", "prmonth"], [150, 12, 1, "", "setfirstweekday"], [150, 12, 1, "", "timegm"], [150, 12, 1, "", "weekday"], [150, 12, 1, "", "weekheader"], [150, 14, 1, "cmdoption-calendar-css", "--css"], [150, 14, 1, "cmdoption-calendar-encoding", "--encoding"], [150, 14, 1, "cmdoption-calendar-help", "--help"], [150, 14, 1, "cmdoption-calendar-lines", "--lines"], [150, 14, 1, "cmdoption-calendar-locale", "--locale"], [150, 14, 1, "cmdoption-calendar-months", "--months"], [150, 14, 1, "cmdoption-calendar-spacing", "--spacing"], [150, 14, 1, "cmdoption-calendar-type", "--type"], [150, 14, 1, "cmdoption-calendar-width", "--width"], [150, 14, 1, "cmdoption-calendar-locale", "-L"], [150, 14, 1, "cmdoption-calendar-css", "-c"], [150, 14, 1, "cmdoption-calendar-encoding", "-e"], [150, 14, 1, "cmdoption-calendar-help", "-h"], [150, 14, 1, "cmdoption-calendar-lines", "-l"], [150, 14, 1, "cmdoption-calendar-months", "-m"], [150, 14, 1, "cmdoption-calendar-spacing", "-s"], [150, 14, 1, "cmdoption-calendar-type", "-t"], [150, 14, 1, "cmdoption-calendar-width", "-w"], [150, 14, 1, "cmdoption-calendar-arg-month", "month"], [150, 14, 1, "cmdoption-calendar-arg-year", "year"]], "calendar.Calendar": [[150, 8, 1, "", "itermonthdates"], [150, 8, 1, "", "itermonthdays"], [150, 8, 1, "", "itermonthdays2"], [150, 8, 1, "", "itermonthdays3"], [150, 8, 1, "", "itermonthdays4"], [150, 8, 1, "", "iterweekdays"], [150, 8, 1, "", "monthdatescalendar"], [150, 8, 1, "", "monthdays2calendar"], [150, 8, 1, "", "monthdayscalendar"], [150, 8, 1, "", "yeardatescalendar"], [150, 8, 1, "", "yeardays2calendar"], [150, 8, 1, "", "yeardayscalendar"]], "calendar.HTMLCalendar": [[150, 7, 1, "", "cssclass_month"], [150, 7, 1, "", "cssclass_month_head"], [150, 7, 1, "", "cssclass_noday"], [150, 7, 1, "", "cssclass_year"], [150, 7, 1, "", "cssclass_year_head"], [150, 7, 1, "", "cssclasses"], [150, 7, 1, "", "cssclasses_weekday_head"], [150, 8, 1, "", "formatmonth"], [150, 8, 1, "", "formatmonthname"], [150, 8, 1, "", "formatyear"], [150, 8, 1, "", "formatyearpage"]], "calendar.IllegalMonthError": [[150, 7, 1, "", "month"]], "calendar.IllegalWeekdayError": [[150, 7, 1, "", "weekday"]], "calendar.TextCalendar": [[150, 8, 1, "", "formatmonth"], [150, 8, 1, "", "formatyear"], [150, 8, 1, "", "prmonth"], [150, 8, 1, "", "pryear"]], "cgi": [[151, 12, 1, "", "parse"], [151, 12, 1, "", "parse_header"], [151, 12, 1, "", "parse_multipart"], [151, 12, 1, "", "print_directory"], [151, 12, 1, "", "print_environ"], [151, 12, 1, "", "print_environ_usage"], [151, 12, 1, "", "print_form"], [151, 12, 1, "", "test"]], "cgi.FieldStorage": [[151, 8, 1, "", "getfirst"], [151, 8, 1, "", "getlist"]], "cgitb": [[152, 12, 1, "", "enable"], [152, 12, 1, "", "handler"], [152, 12, 1, "", "html"], [152, 12, 1, "", "text"]], "chunk": [[153, 11, 1, "", "Chunk"]], "chunk.Chunk": [[153, 8, 1, "", "close"], [153, 8, 1, "", "getname"], [153, 8, 1, "", "getsize"], [153, 8, 1, "", "isatty"], [153, 8, 1, "", "read"], [153, 8, 1, "", "seek"], [153, 8, 1, "", "skip"], [153, 8, 1, "", "tell"]], "class": [[344, 7, 1, "", "__bases__"], [428, 8, 1, "", "__instancecheck__"], [344, 7, 1, "", "__mro__"], [428, 8, 1, "", "__subclasscheck__"], [344, 8, 1, "", "__subclasses__"], [344, 8, 1, "", "mro"]], "cmath": [[154, 12, 1, "", "acos"], [154, 12, 1, "", "acosh"], [154, 12, 1, "", "asin"], [154, 12, 1, "", "asinh"], [154, 12, 1, "", "atan"], [154, 12, 1, "", "atanh"], [154, 12, 1, "", "cos"], [154, 12, 1, "", "cosh"], [154, 9, 1, "", "e"], [154, 12, 1, "", "exp"], [154, 9, 1, "", "inf"], [154, 9, 1, "", "infj"], [154, 12, 1, "", "isclose"], [154, 12, 1, "", "isfinite"], [154, 12, 1, "", "isinf"], [154, 12, 1, "", "isnan"], [154, 12, 1, "", "log"], [154, 12, 1, "", "log10"], [154, 9, 1, "", "nan"], [154, 9, 1, "", "nanj"], [154, 12, 1, "", "phase"], [154, 9, 1, "", "pi"], [154, 12, 1, "", "polar"], [154, 12, 1, "", "rect"], [154, 12, 1, "", "sin"], [154, 12, 1, "", "sinh"], [154, 12, 1, "", "sqrt"], [154, 12, 1, "", "tan"], [154, 12, 1, "", "tanh"], [154, 9, 1, "", "tau"]], "cmd": [[155, 11, 1, "", "Cmd"]], "cmd.Cmd": [[155, 8, 1, "", "cmdloop"], [155, 7, 1, "", "cmdqueue"], [155, 8, 1, "", "columnize"], [155, 8, 1, "", "completedefault"], [155, 8, 1, "", "default"], [155, 8, 1, "", "do_help"], [155, 7, 1, "", "doc_header"], [155, 8, 1, "", "emptyline"], [155, 7, 1, "", "identchars"], [155, 7, 1, "", "intro"], [155, 7, 1, "", "lastcmd"], [155, 7, 1, "", "misc_header"], [155, 8, 1, "", "onecmd"], [155, 8, 1, "", "postcmd"], [155, 8, 1, "", "postloop"], [155, 8, 1, "", "precmd"], [155, 8, 1, "", "preloop"], [155, 7, 1, "", "prompt"], [155, 7, 1, "", "ruler"], [155, 7, 1, "", "undoc_header"], [155, 7, 1, "", "use_rawinput"]], "code": [[157, 11, 1, "", "InteractiveConsole"], [157, 11, 1, "", "InteractiveInterpreter"], [157, 12, 1, "", "compile_command"], [157, 12, 1, "", "interact"]], "code.InteractiveConsole": [[157, 8, 1, "", "interact"], [157, 8, 1, "", "push"], [157, 8, 1, "", "raw_input"], [157, 8, 1, "", "resetbuffer"]], "code.InteractiveInterpreter": [[157, 8, 1, "", "runcode"], [157, 8, 1, "", "runsource"], [157, 8, 1, "", "showsyntaxerror"], [157, 8, 1, "", "showtraceback"], [157, 8, 1, "", "write"]], "codecs": [[158, 9, 1, "", "BOM"], [158, 9, 1, "", "BOM_BE"], [158, 9, 1, "", "BOM_LE"], [158, 9, 1, "", "BOM_UTF16"], [158, 9, 1, "", "BOM_UTF16_BE"], [158, 9, 1, "", "BOM_UTF16_LE"], [158, 9, 1, "", "BOM_UTF32"], [158, 9, 1, "", "BOM_UTF32_BE"], [158, 9, 1, "", "BOM_UTF32_LE"], [158, 9, 1, "", "BOM_UTF8"], [158, 11, 1, "", "Codec"], [158, 11, 1, "", "CodecInfo"], [158, 12, 1, "", "EncodedFile"], [158, 11, 1, "", "IncrementalDecoder"], [158, 11, 1, "", "IncrementalEncoder"], [158, 11, 1, "", "StreamReader"], [158, 11, 1, "", "StreamReaderWriter"], [158, 11, 1, "", "StreamRecoder"], [158, 11, 1, "", "StreamWriter"], [158, 12, 1, "", "backslashreplace_errors"], [158, 12, 1, "", "decode"], [158, 12, 1, "", "encode"], [158, 12, 1, "", "getdecoder"], [158, 12, 1, "", "getencoder"], [158, 12, 1, "", "getincrementaldecoder"], [158, 12, 1, "", "getincrementalencoder"], [158, 12, 1, "", "getreader"], [158, 12, 1, "", "getwriter"], [158, 12, 1, "", "ignore_errors"], [158, 12, 1, "", "iterdecode"], [158, 12, 1, "", "iterencode"], [158, 12, 1, "", "lookup"], [158, 12, 1, "", "lookup_error"], [158, 12, 1, "", "namereplace_errors"], [158, 12, 1, "", "open"], [158, 12, 1, "", "register"], [158, 12, 1, "", "register_error"], [158, 12, 1, "", "replace_errors"], [158, 12, 1, "", "strict_errors"], [158, 12, 1, "", "unregister"], [158, 12, 1, "", "xmlcharrefreplace_errors"]], "codecs.Codec": [[158, 8, 1, "", "decode"], [158, 8, 1, "", "encode"]], "codecs.CodecInfo": [[158, 7, 1, "", "decode"], [158, 7, 1, "", "encode"], [158, 7, 1, "", "incrementaldecoder"], [158, 7, 1, "", "incrementalencoder"], [158, 7, 1, "", "name"], [158, 7, 1, "", "streamreader"], [158, 7, 1, "", "streamwriter"]], "codecs.IncrementalDecoder": [[158, 8, 1, "", "decode"], [158, 8, 1, "", "getstate"], [158, 8, 1, "", "reset"], [158, 8, 1, "", "setstate"]], "codecs.IncrementalEncoder": [[158, 8, 1, "", "encode"], [158, 8, 1, "", "getstate"], [158, 8, 1, "", "reset"], [158, 8, 1, "", "setstate"]], "codecs.StreamReader": [[158, 8, 1, "", "read"], [158, 8, 1, "", "readline"], [158, 8, 1, "", "readlines"], [158, 8, 1, "", "reset"]], "codecs.StreamWriter": [[158, 8, 1, "", "reset"], [158, 8, 1, "", "write"], [158, 8, 1, "", "writelines"]], "codeobject": [[428, 7, 1, "", "co_argcount"], [428, 7, 1, "", "co_cellvars"], [428, 7, 1, "", "co_code"], [428, 7, 1, "", "co_consts"], [428, 7, 1, "", "co_filename"], [428, 7, 1, "", "co_firstlineno"], [428, 7, 1, "", "co_flags"], [428, 7, 1, "", "co_freevars"], [428, 7, 1, "", "co_kwonlyargcount"], [428, 8, 1, "", "co_lines"], [428, 7, 1, "", "co_lnotab"], [428, 7, 1, "", "co_name"], [428, 7, 1, "", "co_names"], [428, 7, 1, "", "co_nlocals"], [428, 8, 1, "", "co_positions"], [428, 7, 1, "", "co_posonlyargcount"], [428, 7, 1, "", "co_qualname"], [428, 7, 1, "", "co_stacksize"], [428, 7, 1, "", "co_varnames"], [428, 8, 1, "", "replace"]], "codeop": [[159, 11, 1, "", "CommandCompiler"], [159, 11, 1, "", "Compile"], [159, 12, 1, "", "compile_command"]], "collections": [[160, 11, 1, "", "ChainMap"], [160, 11, 1, "", "Counter"], [160, 11, 1, "", "OrderedDict"], [160, 11, 1, "", "UserDict"], [160, 11, 1, "", "UserList"], [160, 11, 1, "", "UserString"], [161, 10, 0, "-", "abc"], [160, 11, 1, "", "defaultdict"], [160, 11, 1, "", "deque"], [160, 12, 1, "", "namedtuple"]], "collections.ChainMap": [[160, 7, 1, "", "maps"], [160, 8, 1, "", "new_child"], [160, 7, 1, "", "parents"]], "collections.Counter": [[160, 8, 1, "", "elements"], [160, 8, 1, "", "fromkeys"], [160, 8, 1, "", "most_common"], [160, 8, 1, "", "subtract"], [160, 8, 1, "", "total"], [160, 8, 1, "", "update"]], "collections.OrderedDict": [[160, 8, 1, "", "move_to_end"], [160, 8, 1, "", "popitem"]], "collections.UserDict": [[160, 7, 1, "", "data"]], "collections.UserList": [[160, 7, 1, "", "data"]], "collections.UserString": [[160, 7, 1, "", "data"]], "collections.abc": [[161, 11, 1, "", "AsyncGenerator"], [161, 11, 1, "", "AsyncIterable"], [161, 11, 1, "", "AsyncIterator"], [161, 11, 1, "", "Awaitable"], [161, 11, 1, "", "Buffer"], [161, 11, 1, "", "ByteString"], [161, 11, 1, "", "Callable"], [161, 11, 1, "", "Collection"], [161, 11, 1, "", "Container"], [161, 11, 1, "", "Coroutine"], [161, 11, 1, "", "Generator"], [161, 11, 1, "", "Hashable"], [161, 11, 1, "", "ItemsView"], [161, 11, 1, "", "Iterable"], [161, 11, 1, "", "Iterator"], [161, 11, 1, "", "KeysView"], [161, 11, 1, "", "Mapping"], [161, 11, 1, "", "MappingView"], [161, 11, 1, "", "MutableMapping"], [161, 11, 1, "", "MutableSequence"], [161, 11, 1, "", "MutableSet"], [161, 11, 1, "", "Reversible"], [161, 11, 1, "", "Sequence"], [161, 11, 1, "", "Set"], [161, 11, 1, "", "Sized"], [161, 11, 1, "", "ValuesView"]], "collections.defaultdict": [[160, 8, 1, "", "__missing__"], [160, 7, 1, "", "default_factory"]], "collections.deque": [[160, 8, 1, "", "append"], [160, 8, 1, "", "appendleft"], [160, 8, 1, "", "clear"], [160, 8, 1, "", "copy"], [160, 8, 1, "", "count"], [160, 8, 1, "", "extend"], [160, 8, 1, "", "extendleft"], [160, 8, 1, "", "index"], [160, 8, 1, "", "insert"], [160, 7, 1, "", "maxlen"], [160, 8, 1, "", "pop"], [160, 8, 1, "", "popleft"], [160, 8, 1, "", "remove"], [160, 8, 1, "", "reverse"], [160, 8, 1, "", "rotate"]], "collections.somenamedtuple": [[160, 8, 1, "", "_asdict"], [160, 7, 1, "", "_field_defaults"], [160, 7, 1, "", "_fields"], [160, 8, 1, "", "_make"], [160, 8, 1, "", "_replace"]], "colorsys": [[162, 12, 1, "", "hls_to_rgb"], [162, 12, 1, "", "hsv_to_rgb"], [162, 12, 1, "", "rgb_to_hls"], [162, 12, 1, "", "rgb_to_hsv"], [162, 12, 1, "", "rgb_to_yiq"], [162, 12, 1, "", "yiq_to_rgb"]], "compileall": [[163, 12, 1, "", "compile_dir"], [163, 12, 1, "", "compile_file"], [163, 12, 1, "", "compile_path"], [163, 14, 1, "cmdoption-compileall-hardlink-dupes", "--hardlink-dupes"], [163, 14, 1, "cmdoption-compileall-invalidation-mode", "--invalidation-mode"], [163, 14, 1, "cmdoption-compileall-b", "-b"], [163, 14, 1, "cmdoption-compileall-d", "-d"], [163, 14, 1, "cmdoption-compileall-e", "-e"], [163, 14, 1, "cmdoption-compileall-f", "-f"], [163, 14, 1, "cmdoption-compileall-i", "-i"], [163, 14, 1, "cmdoption-compileall-j", "-j"], [163, 14, 1, "cmdoption-compileall-l", "-l"], [163, 14, 1, "cmdoption-compileall-o", "-o"], [163, 14, 1, "cmdoption-compileall-p", "-p"], [163, 14, 1, "cmdoption-compileall-q", "-q"], [163, 14, 1, "cmdoption-compileall-r", "-r"], [163, 14, 1, "cmdoption-compileall-s", "-s"], [163, 14, 1, "cmdoption-compileall-x", "-x"], [163, 14, 1, "cmdoption-compileall-arg-directory", "directory"], [163, 14, 1, "cmdoption-compileall-arg-file", "file"]], "concurrent": [[166, 10, 0, "-", "futures"]], "concurrent.futures": [[166, 9, 1, "", "ALL_COMPLETED"], [166, 6, 1, "", "BrokenExecutor"], [166, 6, 1, "", "CancelledError"], [166, 11, 1, "", "Executor"], [166, 9, 1, "", "FIRST_COMPLETED"], [166, 9, 1, "", "FIRST_EXCEPTION"], [166, 11, 1, "", "Future"], [166, 6, 1, "", "InvalidStateError"], [166, 11, 1, "", "ProcessPoolExecutor"], [166, 11, 1, "", "ThreadPoolExecutor"], [166, 6, 1, "", "TimeoutError"], [166, 12, 1, "", "as_completed"], [166, 12, 1, "", "wait"]], "concurrent.futures.Executor": [[166, 8, 1, "", "map"], [166, 8, 1, "", "shutdown"], [166, 8, 1, "", "submit"]], "concurrent.futures.Future": [[166, 8, 1, "", "add_done_callback"], [166, 8, 1, "", "cancel"], [166, 8, 1, "", "cancelled"], [166, 8, 1, "", "done"], [166, 8, 1, "", "exception"], [166, 8, 1, "", "result"], [166, 8, 1, "", "running"], [166, 8, 1, "", "set_exception"], [166, 8, 1, "", "set_result"], [166, 8, 1, "", "set_running_or_notify_cancel"]], "concurrent.futures.process": [[166, 6, 1, "", "BrokenProcessPool"]], "concurrent.futures.thread": [[166, 6, 1, "", "BrokenThreadPool"]], "configparser": [[167, 11, 1, "", "BasicInterpolation"], [167, 11, 1, "", "ConfigParser"], [167, 6, 1, "", "DuplicateOptionError"], [167, 6, 1, "", "DuplicateSectionError"], [167, 6, 1, "", "Error"], [167, 11, 1, "", "ExtendedInterpolation"], [167, 6, 1, "", "InterpolationDepthError"], [167, 6, 1, "", "InterpolationError"], [167, 6, 1, "", "InterpolationMissingOptionError"], [167, 6, 1, "", "InterpolationSyntaxError"], [167, 9, 1, "", "MAX_INTERPOLATION_DEPTH"], [167, 6, 1, "", "MissingSectionHeaderError"], [167, 6, 1, "", "NoOptionError"], [167, 6, 1, "", "NoSectionError"], [167, 6, 1, "", "ParsingError"], [167, 11, 1, "", "RawConfigParser"]], "configparser.ConfigParser": [[167, 7, 1, "", "BOOLEAN_STATES"], [167, 7, 1, "", "SECTCRE"], [167, 8, 1, "", "add_section"], [167, 8, 1, "", "defaults"], [167, 8, 1, "", "get"], [167, 8, 1, "", "getboolean"], [167, 8, 1, "", "getfloat"], [167, 8, 1, "", "getint"], [167, 8, 1, "", "has_option"], [167, 8, 1, "", "has_section"], [167, 8, 1, "", "items"], [167, 8, 1, "", "options"], [167, 8, 1, "", "optionxform"], [167, 8, 1, "", "read"], [167, 8, 1, "", "read_dict"], [167, 8, 1, "", "read_file"], [167, 8, 1, "", "read_string"], [167, 8, 1, "", "remove_option"], [167, 8, 1, "", "remove_section"], [167, 8, 1, "", "sections"], [167, 8, 1, "", "set"], [167, 8, 1, "", "write"]], "configparser.RawConfigParser": [[167, 8, 1, "", "add_section"], [167, 8, 1, "", "set"]], "container": [[344, 8, 1, "", "__iter__"]], "contextlib": [[169, 11, 1, "", "AbstractAsyncContextManager"], [169, 11, 1, "", "AbstractContextManager"], [169, 11, 1, "", "AsyncContextDecorator"], [169, 11, 1, "", "AsyncExitStack"], [169, 11, 1, "", "ContextDecorator"], [169, 11, 1, "", "ExitStack"], [169, 12, 1, "", "aclosing"], [169, 12, 1, "", "asynccontextmanager"], [169, 12, 1, "", "chdir"], [169, 12, 1, "", "closing"], [169, 12, 1, "", "contextmanager"], [169, 12, 1, "", "nullcontext"], [169, 12, 1, "", "redirect_stderr"], [169, 12, 1, "", "redirect_stdout"], [169, 12, 1, "", "suppress"]], "contextlib.AsyncExitStack": [[169, 8, 1, "", "aclose"], [169, 8, 1, "", "enter_async_context"], [169, 8, 1, "", "push_async_callback"], [169, 8, 1, "", "push_async_exit"]], "contextlib.ExitStack": [[169, 8, 1, "", "callback"], [169, 8, 1, "", "close"], [169, 8, 1, "", "enter_context"], [169, 8, 1, "", "pop_all"], [169, 8, 1, "", "push"]], "contextmanager": [[344, 8, 1, "", "__enter__"], [344, 8, 1, "", "__exit__"]], "contextvars": [[170, 11, 1, "", "Context"], [170, 11, 1, "", "ContextVar"], [170, 11, 1, "", "Token"], [170, 12, 1, "", "copy_context"]], "contextvars.Context": [[170, 8, 1, "", "copy"], [170, 8, 1, "", "get"], [170, 8, 1, "", "items"], [170, 8, 1, "", "keys"], [170, 8, 1, "", "run"], [170, 8, 1, "", "values"]], "contextvars.ContextVar": [[170, 8, 1, "", "get"], [170, 7, 1, "", "name"], [170, 8, 1, "", "reset"], [170, 8, 1, "", "set"]], "contextvars.Token": [[170, 7, 1, "", "MISSING"], [170, 7, 1, "", "old_value"], [170, 7, 1, "", "var"]], "copy": [[171, 6, 1, "", "Error"], [171, 12, 1, "", "copy"], [171, 12, 1, "", "deepcopy"]], "copyreg": [[172, 12, 1, "", "constructor"], [172, 12, 1, "", "pickle"]], "coroutine": [[428, 8, 1, "", "close"], [428, 8, 1, "", "send"], [428, 8, 1, "", "throw"]], "crypt": [[173, 9, 1, "", "METHOD_BLOWFISH"], [173, 9, 1, "", "METHOD_CRYPT"], [173, 9, 1, "", "METHOD_MD5"], [173, 9, 1, "", "METHOD_SHA256"], [173, 9, 1, "", "METHOD_SHA512"], [173, 12, 1, "", "crypt"], [173, 7, 1, "", "methods"], [173, 12, 1, "", "mksalt"]], "csv": [[175, 11, 1, "", "Dialect"], [175, 11, 1, "", "DictReader"], [175, 11, 1, "", "DictWriter"], [175, 6, 1, "", "Error"], [175, 9, 1, "", "QUOTE_ALL"], [175, 9, 1, "", "QUOTE_MINIMAL"], [175, 9, 1, "", "QUOTE_NONE"], [175, 9, 1, "", "QUOTE_NONNUMERIC"], [175, 9, 1, "", "QUOTE_NOTNULL"], [175, 9, 1, "", "QUOTE_STRINGS"], [175, 11, 1, "", "Sniffer"], [175, 11, 1, "", "excel"], [175, 11, 1, "", "excel_tab"], [175, 12, 1, "", "field_size_limit"], [175, 12, 1, "", "get_dialect"], [175, 12, 1, "", "list_dialects"], [175, 12, 1, "", "reader"], [175, 12, 1, "", "register_dialect"], [175, 11, 1, "", "unix_dialect"], [175, 12, 1, "", "unregister_dialect"], [175, 12, 1, "", "writer"]], "csv.Dialect": [[175, 7, 1, "", "delimiter"], [175, 7, 1, "", "doublequote"], [175, 7, 1, "", "escapechar"], [175, 7, 1, "", "lineterminator"], [175, 7, 1, "", "quotechar"], [175, 7, 1, "", "quoting"], [175, 7, 1, "", "skipinitialspace"], [175, 7, 1, "", "strict"]], "csv.DictReader": [[175, 7, 1, "", "fieldnames"]], "csv.DictWriter": [[175, 8, 1, "", "writeheader"]], "csv.Sniffer": [[175, 8, 1, "", "has_header"], [175, 8, 1, "", "sniff"]], "csv.csvreader": [[175, 8, 1, "", "__next__"], [175, 7, 1, "", "dialect"], [175, 7, 1, "", "line_num"]], "csv.csvwriter": [[175, 7, 1, "", "dialect"], [175, 8, 1, "", "writerow"], [175, 8, 1, "", "writerows"]], "ctypes": [[176, 6, 1, "", "ArgumentError"], [176, 11, 1, "", "Array"], [176, 11, 1, "", "BigEndianStructure"], [176, 11, 1, "", "BigEndianUnion"], [176, 11, 1, "", "CDLL"], [176, 12, 1, "", "CFUNCTYPE"], [176, 12, 1, "", "DllCanUnloadNow"], [176, 12, 1, "", "DllGetClassObject"], [176, 12, 1, "", "FormatError"], [176, 12, 1, "", "GetLastError"], [176, 11, 1, "", "HRESULT"], [176, 11, 1, "", "LibraryLoader"], [176, 11, 1, "", "LittleEndianStructure"], [176, 11, 1, "", "LittleEndianUnion"], [176, 11, 1, "", "OleDLL"], [176, 12, 1, "", "POINTER"], [176, 12, 1, "", "PYFUNCTYPE"], [176, 11, 1, "", "PyDLL"], [176, 11, 1, "", "Structure"], [176, 11, 1, "", "Union"], [176, 12, 1, "", "WINFUNCTYPE"], [176, 11, 1, "", "WinDLL"], [176, 12, 1, "", "WinError"], [176, 11, 1, "", "_CData"], [176, 11, 1, "", "_FuncPtr"], [176, 11, 1, "", "_Pointer"], [176, 11, 1, "", "_SimpleCData"], [176, 12, 1, "", "addressof"], [176, 12, 1, "", "alignment"], [176, 12, 1, "", "byref"], [176, 11, 1, "", "c_bool"], [176, 11, 1, "", "c_byte"], [176, 11, 1, "", "c_char"], [176, 11, 1, "", "c_char_p"], [176, 11, 1, "", "c_double"], [176, 11, 1, "", "c_float"], [176, 11, 1, "", "c_int"], [176, 11, 1, "", "c_int16"], [176, 11, 1, "", "c_int32"], [176, 11, 1, "", "c_int64"], [176, 11, 1, "", "c_int8"], [176, 11, 1, "", "c_long"], [176, 11, 1, "", "c_longdouble"], [176, 11, 1, "", "c_longlong"], [176, 11, 1, "", "c_short"], [176, 11, 1, "", "c_size_t"], [176, 11, 1, "", "c_ssize_t"], [176, 11, 1, "", "c_time_t"], [176, 11, 1, "", "c_ubyte"], [176, 11, 1, "", "c_uint"], [176, 11, 1, "", "c_uint16"], [176, 11, 1, "", "c_uint32"], [176, 11, 1, "", "c_uint64"], [176, 11, 1, "", "c_uint8"], [176, 11, 1, "", "c_ulong"], [176, 11, 1, "", "c_ulonglong"], [176, 11, 1, "", "c_ushort"], [176, 11, 1, "", "c_void_p"], [176, 11, 1, "", "c_wchar"], [176, 11, 1, "", "c_wchar_p"], [176, 12, 1, "", "cast"], [176, 12, 1, "", "create_string_buffer"], [176, 12, 1, "", "create_unicode_buffer"], [176, 12, 1, "", "get_errno"], [176, 12, 1, "", "get_last_error"], [176, 12, 1, "", "memmove"], [176, 12, 1, "", "memset"], [176, 12, 1, "", "pointer"], [176, 11, 1, "", "py_object"], [176, 12, 1, "", "resize"], [176, 12, 1, "", "set_errno"], [176, 12, 1, "", "set_last_error"], [176, 12, 1, "", "sizeof"], [176, 12, 1, "", "string_at"], [176, 12, 1, "", "wstring_at"]], "ctypes.Array": [[176, 7, 1, "", "_length_"], [176, 7, 1, "", "_type_"]], "ctypes.LibraryLoader": [[176, 8, 1, "", "LoadLibrary"]], "ctypes.PyDLL": [[176, 7, 1, "", "_handle"], [176, 7, 1, "", "_name"]], "ctypes.Structure": [[176, 7, 1, "", "_anonymous_"], [176, 7, 1, "", "_fields_"], [176, 7, 1, "", "_pack_"]], "ctypes._CData": [[176, 7, 1, "", "_b_base_"], [176, 7, 1, "", "_b_needsfree_"], [176, 7, 1, "", "_objects"], [176, 8, 1, "", "from_address"], [176, 8, 1, "", "from_buffer"], [176, 8, 1, "", "from_buffer_copy"], [176, 8, 1, "", "from_param"], [176, 8, 1, "", "in_dll"]], "ctypes._FuncPtr": [[176, 7, 1, "", "argtypes"], [176, 7, 1, "", "errcheck"], [176, 7, 1, "", "restype"]], "ctypes._Pointer": [[176, 7, 1, "", "_type_"], [176, 7, 1, "", "contents"]], "ctypes._SimpleCData": [[176, 7, 1, "", "value"]], "ctypes.util": [[176, 12, 1, "", "find_library"], [176, 12, 1, "", "find_msvcrt"]], "curses": [[177, 9, 1, "", "ACS_BBSS"], [177, 9, 1, "", "ACS_BLOCK"], [177, 9, 1, "", "ACS_BOARD"], [177, 9, 1, "", "ACS_BSBS"], [177, 9, 1, "", "ACS_BSSB"], [177, 9, 1, "", "ACS_BSSS"], [177, 9, 1, "", "ACS_BTEE"], [177, 9, 1, "", "ACS_BULLET"], [177, 9, 1, "", "ACS_CKBOARD"], [177, 9, 1, "", "ACS_DARROW"], [177, 9, 1, "", "ACS_DEGREE"], [177, 9, 1, "", "ACS_DIAMOND"], [177, 9, 1, "", "ACS_GEQUAL"], [177, 9, 1, "", "ACS_HLINE"], [177, 9, 1, "", "ACS_LANTERN"], [177, 9, 1, "", "ACS_LARROW"], [177, 9, 1, "", "ACS_LEQUAL"], [177, 9, 1, "", "ACS_LLCORNER"], [177, 9, 1, "", "ACS_LRCORNER"], [177, 9, 1, "", "ACS_LTEE"], [177, 9, 1, "", "ACS_NEQUAL"], [177, 9, 1, "", "ACS_PI"], [177, 9, 1, "", "ACS_PLMINUS"], [177, 9, 1, "", "ACS_PLUS"], [177, 9, 1, "", "ACS_RARROW"], [177, 9, 1, "", "ACS_RTEE"], [177, 9, 1, "", "ACS_S1"], [177, 9, 1, "", "ACS_S3"], [177, 9, 1, "", "ACS_S7"], [177, 9, 1, "", "ACS_S9"], [177, 9, 1, "", "ACS_SBBS"], [177, 9, 1, "", "ACS_SBSB"], [177, 9, 1, "", "ACS_SBSS"], [177, 9, 1, "", "ACS_SSBB"], [177, 9, 1, "", "ACS_SSBS"], [177, 9, 1, "", "ACS_SSSB"], [177, 9, 1, "", "ACS_SSSS"], [177, 9, 1, "", "ACS_STERLING"], [177, 9, 1, "", "ACS_TTEE"], [177, 9, 1, "", "ACS_UARROW"], [177, 9, 1, "", "ACS_ULCORNER"], [177, 9, 1, "", "ACS_URCORNER"], [177, 9, 1, "", "ACS_VLINE"], [177, 9, 1, "", "A_ALTCHARSET"], [177, 9, 1, "", "A_ATTRIBUTES"], [177, 9, 1, "", "A_BLINK"], [177, 9, 1, "", "A_BOLD"], [177, 9, 1, "", "A_CHARTEXT"], [177, 9, 1, "", "A_COLOR"], [177, 9, 1, "", "A_DIM"], [177, 9, 1, "", "A_HORIZONTAL"], [177, 9, 1, "", "A_INVIS"], [177, 9, 1, "", "A_ITALIC"], [177, 9, 1, "", "A_LEFT"], [177, 9, 1, "", "A_LOW"], [177, 9, 1, "", "A_NORMAL"], [177, 9, 1, "", "A_PROTECT"], [177, 9, 1, "", "A_REVERSE"], [177, 9, 1, "", "A_RIGHT"], [177, 9, 1, "", "A_STANDOUT"], [177, 9, 1, "", "A_TOP"], [177, 9, 1, "", "A_UNDERLINE"], [177, 9, 1, "", "A_VERTICAL"], [177, 9, 1, "", "BUTTON_ALT"], [177, 9, 1, "", "BUTTON_CTRL"], [177, 9, 1, "", "BUTTON_SHIFT"], [177, 9, 1, "", "BUTTONn_CLICKED"], [177, 9, 1, "", "BUTTONn_DOUBLE_CLICKED"], [177, 9, 1, "", "BUTTONn_PRESSED"], [177, 9, 1, "", "BUTTONn_RELEASED"], [177, 9, 1, "", "BUTTONn_TRIPLE_CLICKED"], [177, 9, 1, "", "COLORS"], [177, 9, 1, "", "COLOR_BLACK"], [177, 9, 1, "", "COLOR_BLUE"], [177, 9, 1, "", "COLOR_CYAN"], [177, 9, 1, "", "COLOR_GREEN"], [177, 9, 1, "", "COLOR_MAGENTA"], [177, 9, 1, "", "COLOR_PAIRS"], [177, 9, 1, "", "COLOR_RED"], [177, 9, 1, "", "COLOR_WHITE"], [177, 9, 1, "", "COLOR_YELLOW"], [177, 9, 1, "", "COLS"], [177, 9, 1, "", "ERR"], [177, 9, 1, "", "KEY_A1"], [177, 9, 1, "", "KEY_A3"], [177, 9, 1, "", "KEY_B2"], [177, 9, 1, "", "KEY_BACKSPACE"], [177, 9, 1, "", "KEY_BEG"], [177, 9, 1, "", "KEY_BREAK"], [177, 9, 1, "", "KEY_BTAB"], [177, 9, 1, "", "KEY_C1"], [177, 9, 1, "", "KEY_C3"], [177, 9, 1, "", "KEY_CANCEL"], [177, 9, 1, "", "KEY_CATAB"], [177, 9, 1, "", "KEY_CLEAR"], [177, 9, 1, "", "KEY_CLOSE"], [177, 9, 1, "", "KEY_COMMAND"], [177, 9, 1, "", "KEY_COPY"], [177, 9, 1, "", "KEY_CREATE"], [177, 9, 1, "", "KEY_CTAB"], [177, 9, 1, "", "KEY_DC"], [177, 9, 1, "", "KEY_DL"], [177, 9, 1, "", "KEY_DOWN"], [177, 9, 1, "", "KEY_EIC"], [177, 9, 1, "", "KEY_END"], [177, 9, 1, "", "KEY_ENTER"], [177, 9, 1, "", "KEY_EOL"], [177, 9, 1, "", "KEY_EOS"], [177, 9, 1, "", "KEY_EXIT"], [177, 9, 1, "", "KEY_F0"], [177, 9, 1, "", "KEY_FIND"], [177, 9, 1, "", "KEY_Fn"], [177, 9, 1, "", "KEY_HELP"], [177, 9, 1, "", "KEY_HOME"], [177, 9, 1, "", "KEY_IC"], [177, 9, 1, "", "KEY_IL"], [177, 9, 1, "", "KEY_LEFT"], [177, 9, 1, "", "KEY_LL"], [177, 9, 1, "", "KEY_MARK"], [177, 9, 1, "", "KEY_MAX"], [177, 9, 1, "", "KEY_MESSAGE"], [177, 9, 1, "", "KEY_MIN"], [177, 9, 1, "", "KEY_MOUSE"], [177, 9, 1, "", "KEY_MOVE"], [177, 9, 1, "", "KEY_NEXT"], [177, 9, 1, "", "KEY_NPAGE"], [177, 9, 1, "", "KEY_OPEN"], [177, 9, 1, "", "KEY_OPTIONS"], [177, 9, 1, "", "KEY_PPAGE"], [177, 9, 1, "", "KEY_PREVIOUS"], [177, 9, 1, "", "KEY_PRINT"], [177, 9, 1, "", "KEY_REDO"], [177, 9, 1, "", "KEY_REFERENCE"], [177, 9, 1, "", "KEY_REFRESH"], [177, 9, 1, "", "KEY_REPLACE"], [177, 9, 1, "", "KEY_RESET"], [177, 9, 1, "", "KEY_RESIZE"], [177, 9, 1, "", "KEY_RESTART"], [177, 9, 1, "", "KEY_RESUME"], [177, 9, 1, "", "KEY_RIGHT"], [177, 9, 1, "", "KEY_SAVE"], [177, 9, 1, "", "KEY_SBEG"], [177, 9, 1, "", "KEY_SCANCEL"], [177, 9, 1, "", "KEY_SCOMMAND"], [177, 9, 1, "", "KEY_SCOPY"], [177, 9, 1, "", "KEY_SCREATE"], [177, 9, 1, "", "KEY_SDC"], [177, 9, 1, "", "KEY_SDL"], [177, 9, 1, "", "KEY_SELECT"], [177, 9, 1, "", "KEY_SEND"], [177, 9, 1, "", "KEY_SEOL"], [177, 9, 1, "", "KEY_SEXIT"], [177, 9, 1, "", "KEY_SF"], [177, 9, 1, "", "KEY_SFIND"], [177, 9, 1, "", "KEY_SHELP"], [177, 9, 1, "", "KEY_SHOME"], [177, 9, 1, "", "KEY_SIC"], [177, 9, 1, "", "KEY_SLEFT"], [177, 9, 1, "", "KEY_SMESSAGE"], [177, 9, 1, "", "KEY_SMOVE"], [177, 9, 1, "", "KEY_SNEXT"], [177, 9, 1, "", "KEY_SOPTIONS"], [177, 9, 1, "", "KEY_SPREVIOUS"], [177, 9, 1, "", "KEY_SPRINT"], [177, 9, 1, "", "KEY_SR"], [177, 9, 1, "", "KEY_SREDO"], [177, 9, 1, "", "KEY_SREPLACE"], [177, 9, 1, "", "KEY_SRESET"], [177, 9, 1, "", "KEY_SRIGHT"], [177, 9, 1, "", "KEY_SRSUME"], [177, 9, 1, "", "KEY_SSAVE"], [177, 9, 1, "", "KEY_SSUSPEND"], [177, 9, 1, "", "KEY_STAB"], [177, 9, 1, "", "KEY_SUNDO"], [177, 9, 1, "", "KEY_SUSPEND"], [177, 9, 1, "", "KEY_UNDO"], [177, 9, 1, "", "KEY_UP"], [177, 9, 1, "", "LINES"], [177, 9, 1, "", "OK"], [177, 9, 1, "", "__version__"], [178, 10, 0, "-", "ascii"], [177, 12, 1, "", "baudrate"], [177, 12, 1, "", "beep"], [177, 12, 1, "", "can_change_color"], [177, 12, 1, "", "cbreak"], [177, 12, 1, "", "color_content"], [177, 12, 1, "", "color_pair"], [177, 12, 1, "", "curs_set"], [177, 12, 1, "", "def_prog_mode"], [177, 12, 1, "", "def_shell_mode"], [177, 12, 1, "", "delay_output"], [177, 12, 1, "", "doupdate"], [177, 12, 1, "", "echo"], [177, 12, 1, "", "endwin"], [177, 12, 1, "", "erasechar"], [177, 6, 1, "", "error"], [177, 12, 1, "", "filter"], [177, 12, 1, "", "flash"], [177, 12, 1, "", "flushinp"], [177, 12, 1, "", "get_escdelay"], [177, 12, 1, "", "get_tabsize"], [177, 12, 1, "", "getmouse"], [177, 12, 1, "", "getsyx"], [177, 12, 1, "", "getwin"], [177, 12, 1, "", "halfdelay"], [177, 12, 1, "", "has_colors"], [177, 12, 1, "", "has_extended_color_support"], [177, 12, 1, "", "has_ic"], [177, 12, 1, "", "has_il"], [177, 12, 1, "", "has_key"], [177, 12, 1, "", "init_color"], [177, 12, 1, "", "init_pair"], [177, 12, 1, "", "initscr"], [177, 12, 1, "", "is_term_resized"], [177, 12, 1, "", "isendwin"], [177, 12, 1, "", "keyname"], [177, 12, 1, "", "killchar"], [177, 12, 1, "", "longname"], [177, 12, 1, "", "meta"], [177, 12, 1, "", "mouseinterval"], [177, 12, 1, "", "mousemask"], [177, 12, 1, "", "napms"], [177, 9, 1, "", "ncurses_version"], [177, 12, 1, "", "newpad"], [177, 12, 1, "", "newwin"], [177, 12, 1, "", "nl"], [177, 12, 1, "", "nocbreak"], [177, 12, 1, "", "noecho"], [177, 12, 1, "", "nonl"], [177, 12, 1, "", "noqiflush"], [177, 12, 1, "", "noraw"], [177, 12, 1, "", "pair_content"], [177, 12, 1, "", "pair_number"], [179, 10, 0, "-", "panel"], [177, 12, 1, "", "putp"], [177, 12, 1, "", "qiflush"], [177, 12, 1, "", "raw"], [177, 12, 1, "", "reset_prog_mode"], [177, 12, 1, "", "reset_shell_mode"], [177, 12, 1, "", "resetty"], [177, 12, 1, "", "resize_term"], [177, 12, 1, "", "resizeterm"], [177, 12, 1, "", "savetty"], [177, 12, 1, "", "set_escdelay"], [177, 12, 1, "", "set_tabsize"], [177, 12, 1, "", "setsyx"], [177, 12, 1, "", "setupterm"], [177, 12, 1, "", "start_color"], [177, 12, 1, "", "termattrs"], [177, 12, 1, "", "termname"], [177, 10, 0, "-", "textpad"], [177, 12, 1, "", "tigetflag"], [177, 12, 1, "", "tigetnum"], [177, 12, 1, "", "tigetstr"], [177, 12, 1, "", "tparm"], [177, 12, 1, "", "typeahead"], [177, 12, 1, "", "unctrl"], [177, 12, 1, "", "unget_wch"], [177, 12, 1, "", "ungetch"], [177, 12, 1, "", "ungetmouse"], [177, 12, 1, "", "update_lines_cols"], [177, 12, 1, "", "use_default_colors"], [177, 12, 1, "", "use_env"], [177, 9, 1, "", "version"], [177, 12, 1, "", "wrapper"]], "curses.ascii": [[178, 9, 1, "", "ACK"], [178, 9, 1, "", "BEL"], [178, 9, 1, "", "BS"], [178, 9, 1, "", "CAN"], [178, 9, 1, "", "CR"], [178, 9, 1, "", "DC1"], [178, 9, 1, "", "DC2"], [178, 9, 1, "", "DC3"], [178, 9, 1, "", "DC4"], [178, 9, 1, "", "DEL"], [178, 9, 1, "", "DLE"], [178, 9, 1, "", "EM"], [178, 9, 1, "", "ENQ"], [178, 9, 1, "", "EOT"], [178, 9, 1, "", "ESC"], [178, 9, 1, "", "ETB"], [178, 9, 1, "", "ETX"], [178, 9, 1, "", "FF"], [178, 9, 1, "", "FS"], [178, 9, 1, "", "GS"], [178, 9, 1, "", "HT"], [178, 9, 1, "", "LF"], [178, 9, 1, "", "NAK"], [178, 9, 1, "", "NL"], [178, 9, 1, "", "NUL"], [178, 9, 1, "", "RS"], [178, 9, 1, "", "SI"], [178, 9, 1, "", "SO"], [178, 9, 1, "", "SOH"], [178, 9, 1, "", "SP"], [178, 9, 1, "", "STX"], [178, 9, 1, "", "SUB"], [178, 9, 1, "", "SYN"], [178, 9, 1, "", "TAB"], [178, 9, 1, "", "US"], [178, 9, 1, "", "VT"], [178, 12, 1, "", "alt"], [178, 12, 1, "", "ascii"], [178, 9, 1, "", "controlnames"], [178, 12, 1, "", "ctrl"], [178, 12, 1, "", "isalnum"], [178, 12, 1, "", "isalpha"], [178, 12, 1, "", "isascii"], [178, 12, 1, "", "isblank"], [178, 12, 1, "", "iscntrl"], [178, 12, 1, "", "isctrl"], [178, 12, 1, "", "isdigit"], [178, 12, 1, "", "isgraph"], [178, 12, 1, "", "islower"], [178, 12, 1, "", "ismeta"], [178, 12, 1, "", "isprint"], [178, 12, 1, "", "ispunct"], [178, 12, 1, "", "isspace"], [178, 12, 1, "", "isupper"], [178, 12, 1, "", "isxdigit"], [178, 12, 1, "", "unctrl"]], "curses.panel": [[179, 12, 1, "", "bottom_panel"], [179, 12, 1, "", "new_panel"], [179, 12, 1, "", "top_panel"], [179, 12, 1, "", "update_panels"]], "curses.panel.Panel": [[179, 8, 1, "", "above"], [179, 8, 1, "", "below"], [179, 8, 1, "", "bottom"], [179, 8, 1, "", "hidden"], [179, 8, 1, "", "hide"], [179, 8, 1, "", "move"], [179, 8, 1, "", "replace"], [179, 8, 1, "", "set_userptr"], [179, 8, 1, "", "show"], [179, 8, 1, "", "top"], [179, 8, 1, "", "userptr"], [179, 8, 1, "", "window"]], "curses.textpad": [[177, 11, 1, "", "Textbox"], [177, 12, 1, "", "rectangle"]], "curses.textpad.Textbox": [[177, 8, 1, "", "do_command"], [177, 8, 1, "", "edit"], [177, 8, 1, "", "gather"], [177, 7, 1, "", "stripspaces"]], "curses.window": [[177, 8, 1, "", "addch"], [177, 8, 1, "", "addnstr"], [177, 8, 1, "", "addstr"], [177, 8, 1, "", "attroff"], [177, 8, 1, "", "attron"], [177, 8, 1, "", "attrset"], [177, 8, 1, "", "bkgd"], [177, 8, 1, "", "bkgdset"], [177, 8, 1, "", "border"], [177, 8, 1, "", "box"], [177, 8, 1, "", "chgat"], [177, 8, 1, "", "clear"], [177, 8, 1, "", "clearok"], [177, 8, 1, "", "clrtobot"], [177, 8, 1, "", "clrtoeol"], [177, 8, 1, "", "cursyncup"], [177, 8, 1, "", "delch"], [177, 8, 1, "", "deleteln"], [177, 8, 1, "", "derwin"], [177, 8, 1, "", "echochar"], [177, 8, 1, "", "enclose"], [177, 7, 1, "", "encoding"], [177, 8, 1, "", "erase"], [177, 8, 1, "", "get_wch"], [177, 8, 1, "", "getbegyx"], [177, 8, 1, "", "getbkgd"], [177, 8, 1, "", "getch"], [177, 8, 1, "", "getkey"], [177, 8, 1, "", "getmaxyx"], [177, 8, 1, "", "getparyx"], [177, 8, 1, "", "getstr"], [177, 8, 1, "", "getyx"], [177, 8, 1, "", "hline"], [177, 8, 1, "", "idcok"], [177, 8, 1, "", "idlok"], [177, 8, 1, "", "immedok"], [177, 8, 1, "", "inch"], [177, 8, 1, "", "insch"], [177, 8, 1, "", "insdelln"], [177, 8, 1, "", "insertln"], [177, 8, 1, "", "insnstr"], [177, 8, 1, "", "insstr"], [177, 8, 1, "", "instr"], [177, 8, 1, "", "is_linetouched"], [177, 8, 1, "", "is_wintouched"], [177, 8, 1, "", "keypad"], [177, 8, 1, "", "leaveok"], [177, 8, 1, "", "move"], [177, 8, 1, "", "mvderwin"], [177, 8, 1, "", "mvwin"], [177, 8, 1, "", "nodelay"], [177, 8, 1, "", "notimeout"], [177, 8, 1, "", "noutrefresh"], [177, 8, 1, "", "overlay"], [177, 8, 1, "", "overwrite"], [177, 8, 1, "", "putwin"], [177, 8, 1, "", "redrawln"], [177, 8, 1, "", "redrawwin"], [177, 8, 1, "", "refresh"], [177, 8, 1, "", "resize"], [177, 8, 1, "", "scroll"], [177, 8, 1, "", "scrollok"], [177, 8, 1, "", "setscrreg"], [177, 8, 1, "", "standend"], [177, 8, 1, "", "standout"], [177, 8, 1, "", "subpad"], [177, 8, 1, "", "subwin"], [177, 8, 1, "", "syncdown"], [177, 8, 1, "", "syncok"], [177, 8, 1, "", "syncup"], [177, 8, 1, "", "timeout"], [177, 8, 1, "", "touchline"], [177, 8, 1, "", "touchwin"], [177, 8, 1, "", "untouchwin"], [177, 8, 1, "", "vline"]], "dataclasses": [[181, 11, 1, "", "Field"], [181, 6, 1, "", "FrozenInstanceError"], [181, 9, 1, "", "KW_ONLY"], [181, 9, 1, "", "MISSING"], [181, 12, 1, "", "__post_init__"], [181, 12, 1, "", "asdict"], [181, 12, 1, "", "astuple"], [181, 12, 1, "", "dataclass"], [181, 12, 1, "", "field"], [181, 12, 1, "", "fields"], [181, 12, 1, "", "is_dataclass"], [181, 12, 1, "", "make_dataclass"], [181, 12, 1, "", "replace"]], "datetime": [[183, 9, 1, "", "MAXYEAR"], [183, 9, 1, "", "MINYEAR"], [183, 7, 1, "", "UTC"], [183, 11, 1, "", "date"], [183, 11, 1, "", "datetime"], [183, 11, 1, "", "time"], [183, 11, 1, "", "timedelta"], [183, 11, 1, "", "timezone"], [183, 11, 1, "", "tzinfo"]], "datetime.date": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "ctime"], [183, 7, 1, "", "day"], [183, 8, 1, "", "fromisocalendar"], [183, 8, 1, "", "fromisoformat"], [183, 8, 1, "", "fromordinal"], [183, 8, 1, "", "fromtimestamp"], [183, 8, 1, "", "isocalendar"], [183, 8, 1, "", "isoformat"], [183, 8, 1, "", "isoweekday"], [183, 7, 1, "", "max"], [183, 7, 1, "", "min"], [183, 7, 1, "", "month"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 8, 1, "", "strftime"], [183, 8, 1, "", "timetuple"], [183, 8, 1, "", "today"], [183, 8, 1, "", "toordinal"], [183, 8, 1, "", "weekday"], [183, 7, 1, "", "year"]], "datetime.datetime": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "astimezone"], [183, 8, 1, "", "combine"], [183, 8, 1, "", "ctime"], [183, 8, 1, "", "date"], [183, 7, 1, "", "day"], [183, 8, 1, "", "dst"], [183, 7, 1, "", "fold"], [183, 8, 1, "", "fromisocalendar"], [183, 8, 1, "", "fromisoformat"], [183, 8, 1, "", "fromordinal"], [183, 8, 1, "", "fromtimestamp"], [183, 7, 1, "", "hour"], [183, 8, 1, "", "isocalendar"], [183, 8, 1, "", "isoformat"], [183, 8, 1, "", "isoweekday"], [183, 7, 1, "", "max"], [183, 7, 1, "", "microsecond"], [183, 7, 1, "", "min"], [183, 7, 1, "", "minute"], [183, 7, 1, "", "month"], [183, 8, 1, "", "now"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 7, 1, "", "second"], [183, 8, 1, "", "strftime"], [183, 8, 1, "", "strptime"], [183, 8, 1, "", "time"], [183, 8, 1, "", "timestamp"], [183, 8, 1, "", "timetuple"], [183, 8, 1, "", "timetz"], [183, 8, 1, "", "today"], [183, 8, 1, "", "toordinal"], [183, 7, 1, "", "tzinfo"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcfromtimestamp"], [183, 8, 1, "", "utcnow"], [183, 8, 1, "", "utcoffset"], [183, 8, 1, "", "utctimetuple"], [183, 8, 1, "", "weekday"], [183, 7, 1, "", "year"]], "datetime.time": [[183, 8, 1, "", "__format__"], [183, 8, 1, "", "__str__"], [183, 8, 1, "", "dst"], [183, 7, 1, "", "fold"], [183, 8, 1, "", "fromisoformat"], [183, 7, 1, "", "hour"], [183, 8, 1, "", "isoformat"], [183, 7, 1, "", "max"], [183, 7, 1, "", "microsecond"], [183, 7, 1, "", "min"], [183, 7, 1, "", "minute"], [183, 8, 1, "", "replace"], [183, 7, 1, "", "resolution"], [183, 7, 1, "", "second"], [183, 8, 1, "", "strftime"], [183, 7, 1, "", "tzinfo"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcoffset"]], "datetime.timedelta": [[183, 7, 1, "", "max"], [183, 7, 1, "", "min"], [183, 7, 1, "", "resolution"], [183, 8, 1, "", "total_seconds"]], "datetime.timezone": [[183, 8, 1, "", "dst"], [183, 8, 1, "", "fromutc"], [183, 8, 1, "", "tzname"], [183, 7, 1, "", "utc"], [183, 8, 1, "", "utcoffset"]], "datetime.tzinfo": [[183, 8, 1, "", "dst"], [183, 8, 1, "", "fromutc"], [183, 8, 1, "", "tzname"], [183, 8, 1, "", "utcoffset"]], "dbm": [[184, 10, 0, "-", "dumb"], [184, 6, 1, "", "error"], [184, 10, 0, "-", "gnu"], [184, 10, 0, "-", "ndbm"], [184, 12, 1, "", "open"], [184, 12, 1, "", "whichdb"]], "dbm.dumb": [[184, 6, 1, "", "error"], [184, 12, 1, "", "open"]], "dbm.dumb.dumbdbm": [[184, 8, 1, "", "close"], [184, 8, 1, "", "sync"]], "dbm.gnu": [[184, 6, 1, "", "error"], [184, 12, 1, "", "open"], [184, 9, 1, "", "open_flags"]], "dbm.gnu.gdbm": [[184, 8, 1, "", "close"], [184, 8, 1, "", "firstkey"], [184, 8, 1, "", "nextkey"], [184, 8, 1, "", "reorganize"], [184, 8, 1, "", "sync"]], "dbm.ndbm": [[184, 6, 1, "", "error"], [184, 9, 1, "", "library"], [184, 12, 1, "", "open"]], "dbm.ndbm.ndbm": [[184, 8, 1, "", "close"]], "decimal": [[186, 11, 1, "", "BasicContext"], [186, 11, 1, "", "Clamped"], [186, 11, 1, "", "Context"], [186, 11, 1, "", "Decimal"], [186, 11, 1, "", "DecimalException"], [186, 11, 1, "", "DefaultContext"], [186, 11, 1, "", "DivisionByZero"], [186, 11, 1, "", "ExtendedContext"], [186, 11, 1, "", "FloatOperation"], [186, 9, 1, "", "HAVE_CONTEXTVAR"], [186, 9, 1, "", "HAVE_THREADS"], [186, 11, 1, "", "Inexact"], [186, 11, 1, "", "InvalidOperation"], [186, 9, 1, "", "MAX_EMAX"], [186, 9, 1, "", "MAX_PREC"], [186, 9, 1, "", "MIN_EMIN"], [186, 9, 1, "", "MIN_ETINY"], [186, 11, 1, "", "Overflow"], [186, 9, 1, "", "ROUND_05UP"], [186, 9, 1, "", "ROUND_CEILING"], [186, 9, 1, "", "ROUND_DOWN"], [186, 9, 1, "", "ROUND_FLOOR"], [186, 9, 1, "", "ROUND_HALF_DOWN"], [186, 9, 1, "", "ROUND_HALF_EVEN"], [186, 9, 1, "", "ROUND_HALF_UP"], [186, 9, 1, "", "ROUND_UP"], [186, 11, 1, "", "Rounded"], [186, 11, 1, "", "Subnormal"], [186, 11, 1, "", "Underflow"], [186, 12, 1, "", "getcontext"], [186, 12, 1, "", "localcontext"], [186, 12, 1, "", "setcontext"]], "decimal.Context": [[186, 8, 1, "", "Etiny"], [186, 8, 1, "", "Etop"], [186, 8, 1, "", "abs"], [186, 8, 1, "", "add"], [186, 8, 1, "", "canonical"], [186, 8, 1, "", "clear_flags"], [186, 8, 1, "", "clear_traps"], [186, 8, 1, "", "compare"], [186, 8, 1, "", "compare_signal"], [186, 8, 1, "", "compare_total"], [186, 8, 1, "", "compare_total_mag"], [186, 8, 1, "", "copy"], [186, 8, 1, "", "copy_abs"], [186, 8, 1, "", "copy_decimal"], [186, 8, 1, "", "copy_negate"], [186, 8, 1, "", "copy_sign"], [186, 8, 1, "", "create_decimal"], [186, 8, 1, "", "create_decimal_from_float"], [186, 8, 1, "", "divide"], [186, 8, 1, "", "divide_int"], [186, 8, 1, "", "divmod"], [186, 8, 1, "", "exp"], [186, 8, 1, "", "fma"], [186, 8, 1, "", "is_canonical"], [186, 8, 1, "", "is_finite"], [186, 8, 1, "", "is_infinite"], [186, 8, 1, "", "is_nan"], [186, 8, 1, "", "is_normal"], [186, 8, 1, "", "is_qnan"], [186, 8, 1, "", "is_signed"], [186, 8, 1, "", "is_snan"], [186, 8, 1, "", "is_subnormal"], [186, 8, 1, "", "is_zero"], [186, 8, 1, "", "ln"], [186, 8, 1, "", "log10"], [186, 8, 1, "", "logb"], [186, 8, 1, "", "logical_and"], [186, 8, 1, "", "logical_invert"], [186, 8, 1, "", "logical_or"], [186, 8, 1, "", "logical_xor"], [186, 8, 1, "", "max"], [186, 8, 1, "", "max_mag"], [186, 8, 1, "", "min"], [186, 8, 1, "", "min_mag"], [186, 8, 1, "", "minus"], [186, 8, 1, "", "multiply"], [186, 8, 1, "", "next_minus"], [186, 8, 1, "", "next_plus"], [186, 8, 1, "", "next_toward"], [186, 8, 1, "", "normalize"], [186, 8, 1, "", "number_class"], [186, 8, 1, "", "plus"], [186, 8, 1, "", "power"], [186, 8, 1, "", "quantize"], [186, 8, 1, "", "radix"], [186, 8, 1, "", "remainder"], [186, 8, 1, "", "remainder_near"], [186, 8, 1, "", "rotate"], [186, 8, 1, "", "same_quantum"], [186, 8, 1, "", "scaleb"], [186, 8, 1, "", "shift"], [186, 8, 1, "", "sqrt"], [186, 8, 1, "", "subtract"], [186, 8, 1, "", "to_eng_string"], [186, 8, 1, "", "to_integral_exact"], [186, 8, 1, "", "to_sci_string"]], "decimal.Decimal": [[186, 8, 1, "", "adjusted"], [186, 8, 1, "", "as_integer_ratio"], [186, 8, 1, "", "as_tuple"], [186, 8, 1, "", "canonical"], [186, 8, 1, "", "compare"], [186, 8, 1, "", "compare_signal"], [186, 8, 1, "", "compare_total"], [186, 8, 1, "", "compare_total_mag"], [186, 8, 1, "", "conjugate"], [186, 8, 1, "", "copy_abs"], [186, 8, 1, "", "copy_negate"], [186, 8, 1, "", "copy_sign"], [186, 8, 1, "", "exp"], [186, 8, 1, "", "fma"], [186, 8, 1, "", "from_float"], [186, 8, 1, "", "is_canonical"], [186, 8, 1, "", "is_finite"], [186, 8, 1, "", "is_infinite"], [186, 8, 1, "", "is_nan"], [186, 8, 1, "", "is_normal"], [186, 8, 1, "", "is_qnan"], [186, 8, 1, "", "is_signed"], [186, 8, 1, "", "is_snan"], [186, 8, 1, "", "is_subnormal"], [186, 8, 1, "", "is_zero"], [186, 8, 1, "", "ln"], [186, 8, 1, "", "log10"], [186, 8, 1, "", "logb"], [186, 8, 1, "", "logical_and"], [186, 8, 1, "", "logical_invert"], [186, 8, 1, "", "logical_or"], [186, 8, 1, "", "logical_xor"], [186, 8, 1, "", "max"], [186, 8, 1, "", "max_mag"], [186, 8, 1, "", "min"], [186, 8, 1, "", "min_mag"], [186, 8, 1, "", "next_minus"], [186, 8, 1, "", "next_plus"], [186, 8, 1, "", "next_toward"], [186, 8, 1, "", "normalize"], [186, 8, 1, "", "number_class"], [186, 8, 1, "", "quantize"], [186, 8, 1, "", "radix"], [186, 8, 1, "", "remainder_near"], [186, 8, 1, "", "rotate"], [186, 8, 1, "", "same_quantum"], [186, 8, 1, "", "scaleb"], [186, 8, 1, "", "shift"], [186, 8, 1, "", "sqrt"], [186, 8, 1, "", "to_eng_string"], [186, 8, 1, "", "to_integral"], [186, 8, 1, "", "to_integral_exact"], [186, 8, 1, "", "to_integral_value"]], "definition": [[344, 7, 1, "", "__name__"], [344, 7, 1, "", "__qualname__"], [344, 7, 1, "", "__type_params__"]], "dict": [[344, 8, 1, "", "clear"], [344, 8, 1, "", "copy"], [344, 8, 1, "", "fromkeys"], [344, 8, 1, "", "get"], [344, 8, 1, "", "items"], [344, 8, 1, "", "keys"], [344, 8, 1, "", "pop"], [344, 8, 1, "", "popitem"], [344, 8, 1, "", "setdefault"], [344, 8, 1, "", "update"], [344, 8, 1, "", "values"]], "difflib": [[190, 11, 1, "", "Differ"], [190, 11, 1, "", "HtmlDiff"], [190, 12, 1, "", "IS_CHARACTER_JUNK"], [190, 12, 1, "", "IS_LINE_JUNK"], [190, 11, 1, "", "SequenceMatcher"], [190, 12, 1, "", "context_diff"], [190, 12, 1, "", "diff_bytes"], [190, 12, 1, "", "get_close_matches"], [190, 12, 1, "", "ndiff"], [190, 12, 1, "", "restore"], [190, 12, 1, "", "unified_diff"]], "difflib.Differ": [[190, 8, 1, "", "compare"]], "difflib.HtmlDiff": [[190, 8, 1, "", "__init__"], [190, 8, 1, "", "make_file"], [190, 8, 1, "", "make_table"]], "difflib.SequenceMatcher": [[190, 8, 1, "", "find_longest_match"], [190, 8, 1, "", "get_grouped_opcodes"], [190, 8, 1, "", "get_matching_blocks"], [190, 8, 1, "", "get_opcodes"], [190, 8, 1, "", "quick_ratio"], [190, 8, 1, "", "ratio"], [190, 8, 1, "", "real_quick_ratio"], [190, 8, 1, "", "set_seq1"], [190, 8, 1, "", "set_seq2"], [190, 8, 1, "", "set_seqs"]], "dis": [[191, 11, 1, "", "Bytecode"], [191, 11, 1, "", "Instruction"], [191, 11, 1, "", "Positions"], [191, 9, 1, "", "cmp_op"], [191, 12, 1, "", "code_info"], [191, 12, 1, "", "dis"], [191, 12, 1, "", "disassemble"], [191, 12, 1, "", "disco"], [191, 12, 1, "", "distb"], [191, 12, 1, "", "findlabels"], [191, 12, 1, "", "findlinestarts"], [191, 12, 1, "", "get_instructions"], [191, 9, 1, "", "hasarg"], [191, 9, 1, "", "hascompare"], [191, 9, 1, "", "hasconst"], [191, 9, 1, "", "hasexc"], [191, 9, 1, "", "hasfree"], [191, 9, 1, "", "hasjabs"], [191, 9, 1, "", "hasjrel"], [191, 9, 1, "", "haslocal"], [191, 9, 1, "", "hasname"], [191, 9, 1, "", "opmap"], [191, 9, 1, "", "opname"], [191, 12, 1, "", "show_code"], [191, 12, 1, "", "stack_effect"], [191, 14, 1, "cmdoption-dis-h", "--help"], [191, 14, 1, "cmdoption-dis-h", "-h"]], "dis.Bytecode": [[191, 9, 1, "", "codeobj"], [191, 8, 1, "", "dis"], [191, 9, 1, "", "first_line"], [191, 8, 1, "", "from_traceback"], [191, 8, 1, "", "info"]], "dis.Instruction": [[191, 9, 1, "", "arg"], [191, 9, 1, "", "argrepr"], [191, 9, 1, "", "argval"], [191, 9, 1, "", "is_jump_target"], [191, 9, 1, "", "offset"], [191, 9, 1, "", "opcode"], [191, 9, 1, "", "opname"], [191, 9, 1, "", "positions"], [191, 9, 1, "", "starts_line"]], "dis.Positions": [[191, 9, 1, "", "col_offset"], [191, 9, 1, "", "end_col_offset"], [191, 9, 1, "", "end_lineno"], [191, 9, 1, "", "lineno"]], "doctest": [[193, 9, 1, "", "COMPARISON_FLAGS"], [193, 9, 1, "", "DONT_ACCEPT_BLANKLINE"], [193, 9, 1, "", "DONT_ACCEPT_TRUE_FOR_1"], [193, 11, 1, "", "DebugRunner"], [193, 12, 1, "", "DocFileSuite"], [193, 11, 1, "", "DocTest"], [193, 6, 1, "", "DocTestFailure"], [193, 11, 1, "", "DocTestFinder"], [193, 11, 1, "", "DocTestParser"], [193, 11, 1, "", "DocTestRunner"], [193, 12, 1, "", "DocTestSuite"], [193, 9, 1, "", "ELLIPSIS"], [193, 11, 1, "", "Example"], [193, 9, 1, "", "FAIL_FAST"], [193, 9, 1, "", "IGNORE_EXCEPTION_DETAIL"], [193, 9, 1, "", "NORMALIZE_WHITESPACE"], [193, 11, 1, "", "OutputChecker"], [193, 9, 1, "", "REPORTING_FLAGS"], [193, 9, 1, "", "REPORT_CDIFF"], [193, 9, 1, "", "REPORT_NDIFF"], [193, 9, 1, "", "REPORT_ONLY_FIRST_FAILURE"], [193, 9, 1, "", "REPORT_UDIFF"], [193, 9, 1, "", "SKIP"], [193, 6, 1, "", "UnexpectedException"], [193, 12, 1, "", "debug"], [193, 12, 1, "", "debug_src"], [193, 6, 1, "", "failureException"], [193, 12, 1, "", "register_optionflag"], [193, 12, 1, "", "run_docstring_examples"], [193, 12, 1, "", "script_from_examples"], [193, 12, 1, "", "set_unittest_reportflags"], [193, 12, 1, "", "testfile"], [193, 12, 1, "", "testmod"], [193, 12, 1, "", "testsource"]], "doctest.DocTest": [[193, 7, 1, "", "docstring"], [193, 7, 1, "", "examples"], [193, 7, 1, "", "filename"], [193, 7, 1, "", "globs"], [193, 7, 1, "", "lineno"], [193, 7, 1, "", "name"]], "doctest.DocTestFailure": [[193, 7, 1, "", "example"], [193, 7, 1, "", "got"], [193, 7, 1, "", "test"]], "doctest.DocTestFinder": [[193, 8, 1, "", "find"]], "doctest.DocTestParser": [[193, 8, 1, "", "get_doctest"], [193, 8, 1, "", "get_examples"], [193, 8, 1, "", "parse"]], "doctest.DocTestRunner": [[193, 8, 1, "", "report_failure"], [193, 8, 1, "", "report_start"], [193, 8, 1, "", "report_success"], [193, 8, 1, "", "report_unexpected_exception"], [193, 8, 1, "", "run"], [193, 8, 1, "", "summarize"]], "doctest.Example": [[193, 7, 1, "", "exc_msg"], [193, 7, 1, "", "indent"], [193, 7, 1, "", "lineno"], [193, 7, 1, "", "options"], [193, 7, 1, "", "source"], [193, 7, 1, "", "want"]], "doctest.OutputChecker": [[193, 8, 1, "", "check_output"], [193, 8, 1, "", "output_difference"]], "doctest.UnexpectedException": [[193, 7, 1, "", "example"], [193, 7, 1, "", "exc_info"], [193, 7, 1, "", "test"]], "email": [[195, 10, 0, "-", "charset"], [197, 10, 0, "-", "contentmanager"], [198, 10, 0, "-", "encoders"], [199, 10, 0, "-", "errors"], [201, 10, 0, "-", "generator"], [202, 10, 0, "-", "header"], [203, 10, 0, "-", "headerregistry"], [204, 10, 0, "-", "iterators"], [205, 10, 0, "-", "message"], [207, 12, 1, "", "message_from_binary_file"], [207, 12, 1, "", "message_from_bytes"], [207, 12, 1, "", "message_from_file"], [207, 12, 1, "", "message_from_string"], [206, 10, 0, "-", "mime"], [207, 10, 0, "-", "parser"], [208, 10, 0, "-", "policy"], [209, 10, 0, "-", "utils"]], "email.charset": [[195, 11, 1, "", "Charset"], [195, 12, 1, "", "add_alias"], [195, 12, 1, "", "add_charset"], [195, 12, 1, "", "add_codec"]], "email.charset.Charset": [[195, 8, 1, "", "__eq__"], [195, 8, 1, "", "__ne__"], [195, 8, 1, "", "__str__"], [195, 8, 1, "", "body_encode"], [195, 7, 1, "", "body_encoding"], [195, 8, 1, "", "get_body_encoding"], [195, 8, 1, "", "get_output_charset"], [195, 8, 1, "", "header_encode"], [195, 8, 1, "", "header_encode_lines"], [195, 7, 1, "", "header_encoding"], [195, 7, 1, "", "input_charset"], [195, 7, 1, "", "input_codec"], [195, 7, 1, "", "output_charset"], [195, 7, 1, "", "output_codec"]], "email.contentmanager": [[197, 11, 1, "", "ContentManager"], [197, 8, 1, "", "get_content"], [197, 9, 1, "", "raw_data_manager"], [197, 8, 1, "", "set_content"]], "email.contentmanager.ContentManager": [[197, 8, 1, "", "add_get_handler"], [197, 8, 1, "", "add_set_handler"], [197, 8, 1, "", "get_content"], [197, 8, 1, "", "set_content"]], "email.encoders": [[198, 12, 1, "", "encode_7or8bit"], [198, 12, 1, "", "encode_base64"], [198, 12, 1, "", "encode_noop"], [198, 12, 1, "", "encode_quopri"]], "email.errors": [[199, 6, 1, "", "BoundaryError"], [199, 6, 1, "", "HeaderDefect"], [199, 6, 1, "", "HeaderParseError"], [199, 6, 1, "", "MessageDefect"], [199, 6, 1, "", "MessageError"], [199, 6, 1, "", "MessageParseError"], [199, 6, 1, "", "MultipartConversionError"]], "email.generator": [[201, 11, 1, "", "BytesGenerator"], [201, 11, 1, "", "DecodedGenerator"], [201, 11, 1, "", "Generator"]], "email.generator.BytesGenerator": [[201, 8, 1, "", "clone"], [201, 8, 1, "", "flatten"], [201, 8, 1, "", "write"]], "email.generator.Generator": [[201, 8, 1, "", "clone"], [201, 8, 1, "", "flatten"], [201, 8, 1, "", "write"]], "email.header": [[202, 11, 1, "", "Header"], [202, 12, 1, "", "decode_header"], [202, 12, 1, "", "make_header"]], "email.header.Header": [[202, 8, 1, "", "__eq__"], [202, 8, 1, "", "__ne__"], [202, 8, 1, "", "__str__"], [202, 8, 1, "", "append"], [202, 8, 1, "", "encode"]], "email.headerregistry": [[203, 11, 1, "", "Address"], [203, 11, 1, "", "AddressHeader"], [203, 11, 1, "", "BaseHeader"], [203, 11, 1, "", "ContentDispositionHeader"], [203, 11, 1, "", "ContentTransferEncoding"], [203, 11, 1, "", "ContentTypeHeader"], [203, 11, 1, "", "DateHeader"], [203, 11, 1, "", "Group"], [203, 11, 1, "", "HeaderRegistry"], [203, 11, 1, "", "MIMEVersionHeader"], [203, 11, 1, "", "ParameterizedMIMEHeader"], [203, 11, 1, "", "SingleAddressHeader"], [203, 11, 1, "", "UnstructuredHeader"]], "email.headerregistry.Address": [[203, 8, 1, "", "__str__"], [203, 7, 1, "", "addr_spec"], [203, 7, 1, "", "display_name"], [203, 7, 1, "", "domain"], [203, 7, 1, "", "username"]], "email.headerregistry.AddressHeader": [[203, 7, 1, "", "addresses"], [203, 7, 1, "", "groups"]], "email.headerregistry.BaseHeader": [[203, 7, 1, "", "defects"], [203, 8, 1, "", "fold"], [203, 7, 1, "", "max_count"], [203, 7, 1, "", "name"]], "email.headerregistry.ContentDispositionHeader": [[203, 7, 1, "", "content_disposition"]], "email.headerregistry.ContentTransferEncoding": [[203, 7, 1, "", "cte"]], "email.headerregistry.ContentTypeHeader": [[203, 7, 1, "", "content_type"], [203, 7, 1, "", "maintype"], [203, 7, 1, "", "subtype"]], "email.headerregistry.DateHeader": [[203, 7, 1, "", "datetime"]], "email.headerregistry.Group": [[203, 8, 1, "", "__str__"], [203, 7, 1, "", "addresses"], [203, 7, 1, "", "display_name"]], "email.headerregistry.HeaderRegistry": [[203, 8, 1, "", "__call__"], [203, 8, 1, "", "__getitem__"], [203, 8, 1, "", "map_to_type"]], "email.headerregistry.MIMEVersionHeader": [[203, 7, 1, "", "major"], [203, 7, 1, "", "minor"], [203, 7, 1, "", "version"]], "email.headerregistry.ParameterizedMIMEHeader": [[203, 7, 1, "", "params"]], "email.headerregistry.SingleAddressHeader": [[203, 7, 1, "", "address"]], "email.iterators": [[204, 12, 1, "", "_structure"], [204, 12, 1, "", "body_line_iterator"], [204, 12, 1, "", "typed_subpart_iterator"]], "email.message": [[205, 11, 1, "", "EmailMessage"], [205, 11, 1, "", "MIMEPart"], [196, 11, 1, "", "Message"]], "email.message.EmailMessage": [[205, 8, 1, "", "__bytes__"], [205, 8, 1, "", "__contains__"], [205, 8, 1, "", "__delitem__"], [205, 8, 1, "", "__getitem__"], [205, 8, 1, "", "__len__"], [205, 8, 1, "", "__setitem__"], [205, 8, 1, "", "__str__"], [205, 8, 1, "", "add_alternative"], [205, 8, 1, "", "add_attachment"], [205, 8, 1, "", "add_header"], [205, 8, 1, "", "add_related"], [205, 8, 1, "", "as_bytes"], [205, 8, 1, "", "as_string"], [205, 8, 1, "", "clear"], [205, 8, 1, "", "clear_content"], [205, 7, 1, "", "defects"], [205, 8, 1, "", "del_param"], [205, 7, 1, "", "epilogue"], [205, 8, 1, "", "get"], [205, 8, 1, "", "get_all"], [205, 8, 1, "", "get_body"], [205, 8, 1, "", "get_boundary"], [205, 8, 1, "", "get_charsets"], [205, 8, 1, "", "get_content"], [205, 8, 1, "", "get_content_charset"], [205, 8, 1, "", "get_content_disposition"], [205, 8, 1, "", "get_content_maintype"], [205, 8, 1, "", "get_content_subtype"], [205, 8, 1, "", "get_content_type"], [205, 8, 1, "", "get_default_type"], [205, 8, 1, "", "get_filename"], [205, 8, 1, "", "get_unixfrom"], [205, 8, 1, "", "is_attachment"], [205, 8, 1, "", "is_multipart"], [205, 8, 1, "", "items"], [205, 8, 1, "", "iter_attachments"], [205, 8, 1, "", "iter_parts"], [205, 8, 1, "", "keys"], [205, 8, 1, "", "make_alternative"], [205, 8, 1, "", "make_mixed"], [205, 8, 1, "", "make_related"], [205, 7, 1, "", "preamble"], [205, 8, 1, "", "replace_header"], [205, 8, 1, "", "set_boundary"], [205, 8, 1, "", "set_content"], [205, 8, 1, "", "set_default_type"], [205, 8, 1, "", "set_param"], [205, 8, 1, "", "set_unixfrom"], [205, 8, 1, "", "values"], [205, 8, 1, "", "walk"]], "email.message.Message": [[196, 8, 1, "", "__bytes__"], [196, 8, 1, "", "__contains__"], [196, 8, 1, "", "__delitem__"], [196, 8, 1, "", "__getitem__"], [196, 8, 1, "", "__len__"], [196, 8, 1, "", "__setitem__"], [196, 8, 1, "", "__str__"], [196, 8, 1, "", "add_header"], [196, 8, 1, "", "as_bytes"], [196, 8, 1, "", "as_string"], [196, 8, 1, "", "attach"], [196, 7, 1, "", "defects"], [196, 8, 1, "", "del_param"], [196, 7, 1, "", "epilogue"], [196, 8, 1, "", "get"], [196, 8, 1, "", "get_all"], [196, 8, 1, "", "get_boundary"], [196, 8, 1, "", "get_charset"], [196, 8, 1, "", "get_charsets"], [196, 8, 1, "", "get_content_charset"], [196, 8, 1, "", "get_content_disposition"], [196, 8, 1, "", "get_content_maintype"], [196, 8, 1, "", "get_content_subtype"], [196, 8, 1, "", "get_content_type"], [196, 8, 1, "", "get_default_type"], [196, 8, 1, "", "get_filename"], [196, 8, 1, "", "get_param"], [196, 8, 1, "", "get_params"], [196, 8, 1, "", "get_payload"], [196, 8, 1, "", "get_unixfrom"], [196, 8, 1, "", "is_multipart"], [196, 8, 1, "", "items"], [196, 8, 1, "", "keys"], [196, 7, 1, "", "preamble"], [196, 8, 1, "", "replace_header"], [196, 8, 1, "", "set_boundary"], [196, 8, 1, "", "set_charset"], [196, 8, 1, "", "set_default_type"], [196, 8, 1, "", "set_param"], [196, 8, 1, "", "set_payload"], [196, 8, 1, "", "set_type"], [196, 8, 1, "", "set_unixfrom"], [196, 8, 1, "", "values"], [196, 8, 1, "", "walk"]], "email.mime": [[206, 10, 0, "-", "application"], [206, 10, 0, "-", "audio"], [206, 10, 0, "-", "base"], [206, 10, 0, "-", "image"], [206, 10, 0, "-", "message"], [206, 10, 0, "-", "multipart"], [206, 10, 0, "-", "nonmultipart"], [206, 10, 0, "-", "text"]], "email.mime.application": [[206, 11, 1, "", "MIMEApplication"]], "email.mime.audio": [[206, 11, 1, "", "MIMEAudio"]], "email.mime.base": [[206, 11, 1, "", "MIMEBase"]], "email.mime.image": [[206, 11, 1, "", "MIMEImage"]], "email.mime.message": [[206, 11, 1, "", "MIMEMessage"]], "email.mime.multipart": [[206, 11, 1, "", "MIMEMultipart"]], "email.mime.nonmultipart": [[206, 11, 1, "", "MIMENonMultipart"]], "email.mime.text": [[206, 11, 1, "", "MIMEText"]], "email.parser": [[207, 11, 1, "", "BytesFeedParser"], [207, 11, 1, "", "BytesHeaderParser"], [207, 11, 1, "", "BytesParser"], [207, 11, 1, "", "FeedParser"], [207, 11, 1, "", "HeaderParser"], [207, 11, 1, "", "Parser"]], "email.parser.BytesFeedParser": [[207, 8, 1, "", "close"], [207, 8, 1, "", "feed"]], "email.parser.BytesParser": [[207, 8, 1, "", "parse"], [207, 8, 1, "", "parsebytes"]], "email.parser.Parser": [[207, 8, 1, "", "parse"], [207, 8, 1, "", "parsestr"]], "email.policy": [[208, 11, 1, "", "Compat32"], [208, 11, 1, "", "EmailPolicy"], [208, 9, 1, "", "HTTP"], [208, 11, 1, "", "Policy"], [208, 9, 1, "", "SMTP"], [208, 9, 1, "", "SMTPUTF8"], [208, 9, 1, "", "compat32"], [208, 9, 1, "", "default"], [208, 9, 1, "", "strict"]], "email.policy.Compat32": [[208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "mangle_from_"]], "email.policy.EmailPolicy": [[208, 7, 1, "", "content_manager"], [208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 7, 1, "", "header_factory"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_max_count"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "refold_source"], [208, 7, 1, "", "utf8"]], "email.policy.Policy": [[208, 8, 1, "", "clone"], [208, 7, 1, "", "cte_type"], [208, 8, 1, "", "fold"], [208, 8, 1, "", "fold_binary"], [208, 8, 1, "", "handle_defect"], [208, 8, 1, "", "header_fetch_parse"], [208, 8, 1, "", "header_max_count"], [208, 8, 1, "", "header_source_parse"], [208, 8, 1, "", "header_store_parse"], [208, 7, 1, "", "linesep"], [208, 7, 1, "", "mangle_from_"], [208, 7, 1, "", "max_line_length"], [208, 7, 1, "", "message_factory"], [208, 7, 1, "", "raise_on_defect"], [208, 8, 1, "", "register_defect"]], "email.utils": [[209, 12, 1, "", "collapse_rfc2231_value"], [209, 12, 1, "", "decode_params"], [209, 12, 1, "", "decode_rfc2231"], [209, 12, 1, "", "encode_rfc2231"], [209, 12, 1, "", "format_datetime"], [209, 12, 1, "", "formataddr"], [209, 12, 1, "", "formatdate"], [209, 12, 1, "", "getaddresses"], [209, 12, 1, "", "localtime"], [209, 12, 1, "", "make_msgid"], [209, 12, 1, "", "mktime_tz"], [209, 12, 1, "", "parseaddr"], [209, 12, 1, "", "parsedate"], [209, 12, 1, "", "parsedate_to_datetime"], [209, 12, 1, "", "parsedate_tz"], [209, 12, 1, "", "quote"], [209, 12, 1, "", "unquote"]], "encodings": [[158, 10, 0, "-", "idna"], [158, 10, 0, "-", "mbcs"], [158, 10, 0, "-", "utf_8_sig"]], "encodings.idna": [[158, 12, 1, "", "ToASCII"], [158, 12, 1, "", "ToUnicode"], [158, 12, 1, "", "nameprep"]], "ensurepip": [[210, 12, 1, "", "bootstrap"], [210, 12, 1, "", "version"]], "enum": [[211, 11, 1, "", "Enum"], [211, 11, 1, "", "EnumCheck"], [211, 11, 1, "", "EnumType"], [211, 11, 1, "", "Flag"], [211, 11, 1, "", "FlagBoundary"], [211, 11, 1, "", "IntEnum"], [211, 11, 1, "", "IntFlag"], [211, 11, 1, "", "ReprEnum"], [211, 11, 1, "", "StrEnum"], [211, 11, 1, "", "auto"], [211, 12, 1, "", "global_enum"], [211, 12, 1, "", "member"], [211, 12, 1, "", "nonmember"], [211, 12, 1, "", "property"], [211, 12, 1, "", "show_flag_values"], [211, 12, 1, "", "unique"], [211, 12, 1, "", "verify"]], "enum.Enum": [[211, 8, 1, "", "__dir__"], [211, 8, 1, "", "__format__"], [211, 8, 1, "", "__init__"], [211, 8, 1, "", "__init_subclass__"], [211, 8, 1, "", "__new__"], [211, 8, 1, "", "__repr__"], [211, 8, 1, "", "__str__"], [211, 8, 1, "", "_generate_next_value_"], [211, 7, 1, "", "_ignore_"], [211, 8, 1, "", "_missing_"], [211, 7, 1, "", "_name_"], [211, 7, 1, "", "_order_"], [211, 7, 1, "", "_value_"], [211, 7, 1, "", "name"], [211, 7, 1, "", "value"]], "enum.EnumCheck": [[211, 7, 1, "", "CONTINUOUS"], [211, 7, 1, "", "NAMED_FLAGS"], [211, 7, 1, "", "UNIQUE"]], "enum.EnumType": [[211, 8, 1, "", "__call__"], [211, 8, 1, "", "__contains__"], [211, 8, 1, "", "__dir__"], [211, 8, 1, "", "__getitem__"], [211, 8, 1, "", "__iter__"], [211, 8, 1, "", "__len__"], [211, 7, 1, "", "__members__"], [211, 8, 1, "", "__reversed__"]], "enum.Flag": [[211, 8, 1, "", "__and__"], [211, 8, 1, "", "__contains__"], [211, 8, 1, "", "__or__"], [211, 8, 1, "", "__xor__"], [211, 8, 1, "", "_numeric_repr_"]], "enum.FlagBoundary": [[211, 7, 1, "", "CONFORM"], [211, 7, 1, "", "EJECT"], [211, 7, 1, "", "KEEP"], [211, 7, 1, "", "STRICT"]], "errno": [[212, 9, 1, "", "E2BIG"], [212, 9, 1, "", "EACCES"], [212, 9, 1, "", "EADDRINUSE"], [212, 9, 1, "", "EADDRNOTAVAIL"], [212, 9, 1, "", "EADV"], [212, 9, 1, "", "EAFNOSUPPORT"], [212, 9, 1, "", "EAGAIN"], [212, 9, 1, "", "EALREADY"], [212, 9, 1, "", "EBADE"], [212, 9, 1, "", "EBADF"], [212, 9, 1, "", "EBADFD"], [212, 9, 1, "", "EBADMSG"], [212, 9, 1, "", "EBADR"], [212, 9, 1, "", "EBADRQC"], [212, 9, 1, "", "EBADSLT"], [212, 9, 1, "", "EBFONT"], [212, 9, 1, "", "EBUSY"], [212, 9, 1, "", "ECANCELED"], [212, 9, 1, "", "ECHILD"], [212, 9, 1, "", "ECHRNG"], [212, 9, 1, "", "ECOMM"], [212, 9, 1, "", "ECONNABORTED"], [212, 9, 1, "", "ECONNREFUSED"], [212, 9, 1, "", "ECONNRESET"], [212, 9, 1, "", "EDEADLK"], [212, 9, 1, "", "EDEADLOCK"], [212, 9, 1, "", "EDESTADDRREQ"], [212, 9, 1, "", "EDOM"], [212, 9, 1, "", "EDOTDOT"], [212, 9, 1, "", "EDQUOT"], [212, 9, 1, "", "EEXIST"], [212, 9, 1, "", "EFAULT"], [212, 9, 1, "", "EFBIG"], [212, 9, 1, "", "EHOSTDOWN"], [212, 9, 1, "", "EHOSTUNREACH"], [212, 9, 1, "", "EIDRM"], [212, 9, 1, "", "EILSEQ"], [212, 9, 1, "", "EINPROGRESS"], [212, 9, 1, "", "EINTR"], [212, 9, 1, "", "EINVAL"], [212, 9, 1, "", "EIO"], [212, 9, 1, "", "EISCONN"], [212, 9, 1, "", "EISDIR"], [212, 9, 1, "", "EISNAM"], [212, 9, 1, "", "EL2HLT"], [212, 9, 1, "", "EL2NSYNC"], [212, 9, 1, "", "EL3HLT"], [212, 9, 1, "", "EL3RST"], [212, 9, 1, "", "ELIBACC"], [212, 9, 1, "", "ELIBBAD"], [212, 9, 1, "", "ELIBEXEC"], [212, 9, 1, "", "ELIBMAX"], [212, 9, 1, "", "ELIBSCN"], [212, 9, 1, "", "ELNRNG"], [212, 9, 1, "", "ELOOP"], [212, 9, 1, "", "EMFILE"], [212, 9, 1, "", "EMLINK"], [212, 9, 1, "", "EMSGSIZE"], [212, 9, 1, "", "EMULTIHOP"], [212, 9, 1, "", "ENAMETOOLONG"], [212, 9, 1, "", "ENAVAIL"], [212, 9, 1, "", "ENETDOWN"], [212, 9, 1, "", "ENETRESET"], [212, 9, 1, "", "ENETUNREACH"], [212, 9, 1, "", "ENFILE"], [212, 9, 1, "", "ENOANO"], [212, 9, 1, "", "ENOBUFS"], [212, 9, 1, "", "ENOCSI"], [212, 9, 1, "", "ENODATA"], [212, 9, 1, "", "ENODEV"], [212, 9, 1, "", "ENOENT"], [212, 9, 1, "", "ENOEXEC"], [212, 9, 1, "", "ENOLCK"], [212, 9, 1, "", "ENOLINK"], [212, 9, 1, "", "ENOMEM"], [212, 9, 1, "", "ENOMSG"], [212, 9, 1, "", "ENONET"], [212, 9, 1, "", "ENOPKG"], [212, 9, 1, "", "ENOPROTOOPT"], [212, 9, 1, "", "ENOSPC"], [212, 9, 1, "", "ENOSR"], [212, 9, 1, "", "ENOSTR"], [212, 9, 1, "", "ENOSYS"], [212, 9, 1, "", "ENOTBLK"], [212, 9, 1, "", "ENOTCAPABLE"], [212, 9, 1, "", "ENOTCONN"], [212, 9, 1, "", "ENOTDIR"], [212, 9, 1, "", "ENOTEMPTY"], [212, 9, 1, "", "ENOTNAM"], [212, 9, 1, "", "ENOTRECOVERABLE"], [212, 9, 1, "", "ENOTSOCK"], [212, 9, 1, "", "ENOTSUP"], [212, 9, 1, "", "ENOTTY"], [212, 9, 1, "", "ENOTUNIQ"], [212, 9, 1, "", "ENXIO"], [212, 9, 1, "", "EOPNOTSUPP"], [212, 9, 1, "", "EOVERFLOW"], [212, 9, 1, "", "EOWNERDEAD"], [212, 9, 1, "", "EPERM"], [212, 9, 1, "", "EPFNOSUPPORT"], [212, 9, 1, "", "EPIPE"], [212, 9, 1, "", "EPROTO"], [212, 9, 1, "", "EPROTONOSUPPORT"], [212, 9, 1, "", "EPROTOTYPE"], [212, 9, 1, "", "EQFULL"], [212, 9, 1, "", "ERANGE"], [212, 9, 1, "", "EREMCHG"], [212, 9, 1, "", "EREMOTE"], [212, 9, 1, "", "EREMOTEIO"], [212, 9, 1, "", "ERESTART"], [212, 9, 1, "", "EROFS"], [212, 9, 1, "", "ESHUTDOWN"], [212, 9, 1, "", "ESOCKTNOSUPPORT"], [212, 9, 1, "", "ESPIPE"], [212, 9, 1, "", "ESRCH"], [212, 9, 1, "", "ESRMNT"], [212, 9, 1, "", "ESTALE"], [212, 9, 1, "", "ESTRPIPE"], [212, 9, 1, "", "ETIME"], [212, 9, 1, "", "ETIMEDOUT"], [212, 9, 1, "", "ETOOMANYREFS"], [212, 9, 1, "", "ETXTBSY"], [212, 9, 1, "", "EUCLEAN"], [212, 9, 1, "", "EUNATCH"], [212, 9, 1, "", "EUSERS"], [212, 9, 1, "", "EWOULDBLOCK"], [212, 9, 1, "", "EXDEV"], [212, 9, 1, "", "EXFULL"], [212, 9, 1, "", "errorcode"]], "faulthandler": [[214, 12, 1, "", "cancel_dump_traceback_later"], [214, 12, 1, "", "disable"], [214, 12, 1, "", "dump_traceback"], [214, 12, 1, "", "dump_traceback_later"], [214, 12, 1, "", "enable"], [214, 12, 1, "", "is_enabled"], [214, 12, 1, "", "register"], [214, 12, 1, "", "unregister"]], "fcntl": [[215, 9, 1, "", "LOCK_EX"], [215, 9, 1, "", "LOCK_NB"], [215, 9, 1, "", "LOCK_SH"], [215, 9, 1, "", "LOCK_UN"], [215, 12, 1, "", "fcntl"], [215, 12, 1, "", "flock"], [215, 12, 1, "", "ioctl"], [215, 12, 1, "", "lockf"]], "filecmp": [[216, 7, 1, "", "DEFAULT_IGNORES"], [216, 12, 1, "", "clear_cache"], [216, 12, 1, "", "cmp"], [216, 12, 1, "", "cmpfiles"], [216, 11, 1, "", "dircmp"]], "filecmp.dircmp": [[216, 7, 1, "", "common"], [216, 7, 1, "", "common_dirs"], [216, 7, 1, "", "common_files"], [216, 7, 1, "", "common_funny"], [216, 7, 1, "", "diff_files"], [216, 7, 1, "", "funny_files"], [216, 7, 1, "", "left"], [216, 7, 1, "", "left_list"], [216, 7, 1, "", "left_only"], [216, 8, 1, "", "report"], [216, 8, 1, "", "report_full_closure"], [216, 8, 1, "", "report_partial_closure"], [216, 7, 1, "", "right"], [216, 7, 1, "", "right_list"], [216, 7, 1, "", "right_only"], [216, 7, 1, "", "same_files"], [216, 7, 1, "", "subdirs"]], "fileinput": [[218, 11, 1, "", "FileInput"], [218, 12, 1, "", "close"], [218, 12, 1, "", "filelineno"], [218, 12, 1, "", "filename"], [218, 12, 1, "", "fileno"], [218, 12, 1, "", "hook_compressed"], [218, 12, 1, "", "hook_encoded"], [218, 12, 1, "", "input"], [218, 12, 1, "", "isfirstline"], [218, 12, 1, "", "isstdin"], [218, 12, 1, "", "lineno"], [218, 12, 1, "", "nextfile"]], "float": [[344, 8, 1, "", "as_integer_ratio"], [344, 8, 1, "", "fromhex"], [344, 8, 1, "", "hex"], [344, 8, 1, "", "is_integer"]], "fnmatch": [[220, 12, 1, "", "filter"], [220, 12, 1, "", "fnmatch"], [220, 12, 1, "", "fnmatchcase"], [220, 12, 1, "", "translate"]], "fractions": [[221, 11, 1, "", "Fraction"]], "fractions.Fraction": [[221, 8, 1, "", "__ceil__"], [221, 8, 1, "", "__floor__"], [221, 8, 1, "", "__format__"], [221, 8, 1, "", "__round__"], [221, 8, 1, "", "as_integer_ratio"], [221, 7, 1, "", "denominator"], [221, 8, 1, "", "from_decimal"], [221, 8, 1, "", "from_float"], [221, 8, 1, "", "is_integer"], [221, 8, 1, "", "limit_denominator"], [221, 7, 1, "", "numerator"]], "frame": [[428, 8, 1, "", "clear"], [428, 7, 1, "", "f_back"], [428, 7, 1, "", "f_builtins"], [428, 7, 1, "", "f_code"], [428, 7, 1, "", "f_globals"], [428, 7, 1, "", "f_lasti"], [428, 7, 1, "", "f_lineno"], [428, 7, 1, "", "f_locals"], [428, 7, 1, "", "f_trace"], [428, 7, 1, "", "f_trace_lines"], [428, 7, 1, "", "f_trace_opcodes"]], "frozenset": [[344, 8, 1, "", "add"], [344, 8, 1, "", "clear"], [344, 8, 1, "", "copy"], [344, 8, 1, "", "difference"], [344, 8, 1, "", "difference_update"], [344, 8, 1, "", "discard"], [344, 8, 1, "", "intersection"], [344, 8, 1, "", "intersection_update"], [344, 8, 1, "", "isdisjoint"], [344, 8, 1, "", "issubset"], [344, 8, 1, "", "issuperset"], [344, 8, 1, "", "pop"], [344, 8, 1, "", "remove"], [344, 8, 1, "", "symmetric_difference"], [344, 8, 1, "", "symmetric_difference_update"], [344, 8, 1, "", "union"], [344, 8, 1, "", "update"]], "ftplib": [[223, 11, 1, "", "FTP"], [223, 11, 1, "", "FTP_TLS"], [223, 9, 1, "", "all_errors"], [223, 6, 1, "", "error_perm"], [223, 6, 1, "", "error_proto"], [223, 6, 1, "", "error_reply"], [223, 6, 1, "", "error_temp"]], "ftplib.FTP": [[223, 8, 1, "", "abort"], [223, 8, 1, "", "close"], [223, 8, 1, "", "connect"], [223, 8, 1, "", "cwd"], [223, 8, 1, "", "delete"], [223, 8, 1, "", "dir"], [223, 8, 1, "", "getwelcome"], [223, 8, 1, "", "login"], [223, 8, 1, "", "mkd"], [223, 8, 1, "", "mlsd"], [223, 8, 1, "", "nlst"], [223, 8, 1, "", "ntransfercmd"], [223, 8, 1, "", "pwd"], [223, 8, 1, "", "quit"], [223, 8, 1, "", "rename"], [223, 8, 1, "", "retrbinary"], [223, 8, 1, "", "retrlines"], [223, 8, 1, "", "rmd"], [223, 8, 1, "", "sendcmd"], [223, 8, 1, "", "set_debuglevel"], [223, 8, 1, "", "set_pasv"], [223, 8, 1, "", "size"], [223, 8, 1, "", "storbinary"], [223, 8, 1, "", "storlines"], [223, 8, 1, "", "transfercmd"], [223, 8, 1, "", "voidcmd"]], "ftplib.FTP_TLS": [[223, 8, 1, "", "auth"], [223, 8, 1, "", "ccc"], [223, 8, 1, "", "prot_c"], [223, 8, 1, "", "prot_p"], [223, 7, 1, "", "ssl_version"]], "function": [[428, 7, 1, "", "__annotations__"], [428, 7, 1, "", "__closure__"], [428, 7, 1, "", "__code__"], [428, 7, 1, "", "__defaults__"], [428, 7, 1, "", "__dict__"], [428, 7, 1, "", "__doc__"], [428, 7, 1, "", "__globals__"], [428, 7, 1, "", "__kwdefaults__"], [428, 7, 1, "", "__module__"], [428, 7, 1, "", "__name__"], [428, 7, 1, "", "__qualname__"], [428, 7, 1, "", "__type_params__"]], "functools": [[226, 12, 1, "", "cache"], [226, 12, 1, "", "cached_property"], [226, 12, 1, "", "cmp_to_key"], [226, 12, 1, "", "lru_cache"], [226, 12, 1, "", "partial"], [226, 11, 1, "", "partialmethod"], [226, 12, 1, "", "reduce"], [226, 12, 1, "", "singledispatch"], [226, 11, 1, "", "singledispatchmethod"], [226, 12, 1, "", "total_ordering"], [226, 12, 1, "", "update_wrapper"], [226, 12, 1, "", "wraps"]], "functools.partial": [[226, 7, 1, "", "args"], [226, 7, 1, "", "func"], [226, 7, 1, "", "keywords"]], "gc": [[227, 9, 1, "", "DEBUG_COLLECTABLE"], [227, 9, 1, "", "DEBUG_LEAK"], [227, 9, 1, "", "DEBUG_SAVEALL"], [227, 9, 1, "", "DEBUG_STATS"], [227, 9, 1, "", "DEBUG_UNCOLLECTABLE"], [227, 9, 1, "", "callbacks"], [227, 12, 1, "", "collect"], [227, 12, 1, "", "disable"], [227, 12, 1, "", "enable"], [227, 12, 1, "", "freeze"], [227, 9, 1, "", "garbage"], [227, 12, 1, "", "get_count"], [227, 12, 1, "", "get_debug"], [227, 12, 1, "", "get_freeze_count"], [227, 12, 1, "", "get_objects"], [227, 12, 1, "", "get_referents"], [227, 12, 1, "", "get_referrers"], [227, 12, 1, "", "get_stats"], [227, 12, 1, "", "get_threshold"], [227, 12, 1, "", "is_finalized"], [227, 12, 1, "", "is_tracked"], [227, 12, 1, "", "isenabled"], [227, 12, 1, "", "set_debug"], [227, 12, 1, "", "set_threshold"], [227, 12, 1, "", "unfreeze"]], "generator": [[430, 8, 1, "", "__next__"], [430, 8, 1, "", "close"], [430, 8, 1, "", "send"], [430, 8, 1, "", "throw"]], "genericalias": [[344, 7, 1, "", "__args__"], [344, 7, 1, "", "__origin__"], [344, 7, 1, "", "__parameters__"], [344, 7, 1, "", "__unpacked__"]], "getopt": [[228, 6, 1, "", "GetoptError"], [228, 6, 1, "", "error"], [228, 12, 1, "", "getopt"], [228, 12, 1, "", "gnu_getopt"]], "getpass": [[229, 6, 1, "", "GetPassWarning"], [229, 12, 1, "", "getpass"], [229, 12, 1, "", "getuser"]], "gettext": [[230, 11, 1, "", "GNUTranslations"], [230, 11, 1, "", "NullTranslations"], [230, 12, 1, "", "bindtextdomain"], [230, 12, 1, "", "dgettext"], [230, 12, 1, "", "dngettext"], [230, 12, 1, "", "dnpgettext"], [230, 12, 1, "", "dpgettext"], [230, 12, 1, "", "find"], [230, 12, 1, "", "gettext"], [230, 12, 1, "", "install"], [230, 12, 1, "", "ngettext"], [230, 12, 1, "", "npgettext"], [230, 12, 1, "", "pgettext"], [230, 12, 1, "", "textdomain"], [230, 12, 1, "", "translation"]], "gettext.GNUTranslations": [[230, 8, 1, "", "gettext"], [230, 8, 1, "", "ngettext"], [230, 8, 1, "", "npgettext"], [230, 8, 1, "", "pgettext"]], "gettext.NullTranslations": [[230, 8, 1, "", "_parse"], [230, 8, 1, "", "add_fallback"], [230, 8, 1, "", "charset"], [230, 8, 1, "", "gettext"], [230, 8, 1, "", "info"], [230, 8, 1, "", "install"], [230, 8, 1, "", "ngettext"], [230, 8, 1, "", "npgettext"], [230, 8, 1, "", "pgettext"]], "glob": [[231, 12, 1, "", "escape"], [231, 12, 1, "", "glob"], [231, 12, 1, "", "iglob"]], "graphlib": [[232, 6, 1, "", "CycleError"], [232, 11, 1, "", "TopologicalSorter"]], "graphlib.TopologicalSorter": [[232, 8, 1, "", "add"], [232, 8, 1, "", "done"], [232, 8, 1, "", "get_ready"], [232, 8, 1, "", "is_active"], [232, 8, 1, "", "prepare"], [232, 8, 1, "", "static_order"]], "grp": [[233, 12, 1, "", "getgrall"], [233, 12, 1, "", "getgrgid"], [233, 12, 1, "", "getgrnam"]], "gzip": [[234, 6, 1, "", "BadGzipFile"], [234, 11, 1, "", "GzipFile"], [234, 12, 1, "", "compress"], [234, 12, 1, "", "decompress"], [234, 12, 1, "", "open"], [234, 14, 1, "cmdoption-gzip-best", "--best"], [234, 14, 1, "cmdoption-gzip-d", "--decompress"], [234, 14, 1, "cmdoption-gzip-fast", "--fast"], [234, 14, 1, "cmdoption-gzip-h", "--help"], [234, 14, 1, "cmdoption-gzip-d", "-d"], [234, 14, 1, "cmdoption-gzip-h", "-h"], [234, 14, 1, "cmdoption-gzip-arg-file", "file"]], "gzip.GzipFile": [[234, 7, 1, "", "mtime"], [234, 7, 1, "", "name"], [234, 8, 1, "", "peek"]], "hashlib": [[235, 9, 1, "", "algorithms_available"], [235, 9, 1, "", "algorithms_guaranteed"], [235, 12, 1, "", "blake2b"], [235, 12, 1, "", "blake2s"], [235, 12, 1, "", "file_digest"], [235, 12, 1, "", "md5"], [235, 12, 1, "", "new"], [235, 12, 1, "", "pbkdf2_hmac"], [235, 12, 1, "", "scrypt"], [235, 12, 1, "", "sha1"], [235, 12, 1, "", "sha224"], [235, 12, 1, "", "sha256"], [235, 12, 1, "", "sha384"], [235, 12, 1, "", "sha3_224"], [235, 12, 1, "", "sha3_256"], [235, 12, 1, "", "sha3_384"], [235, 12, 1, "", "sha3_512"], [235, 12, 1, "", "sha512"], [235, 12, 1, "", "shake_128"], [235, 12, 1, "", "shake_256"]], "hashlib.blake2b": [[235, 9, 1, "", "MAX_DIGEST_SIZE"], [235, 9, 1, "", "MAX_KEY_SIZE"], [235, 9, 1, "", "PERSON_SIZE"], [235, 9, 1, "", "SALT_SIZE"]], "hashlib.blake2s": [[235, 9, 1, "", "MAX_DIGEST_SIZE"], [235, 9, 1, "", "MAX_KEY_SIZE"], [235, 9, 1, "", "PERSON_SIZE"], [235, 9, 1, "", "SALT_SIZE"]], "hashlib.hash": [[235, 9, 1, "", "block_size"], [235, 8, 1, "", "copy"], [235, 8, 1, "", "digest"], [235, 9, 1, "", "digest_size"], [235, 8, 1, "", "hexdigest"], [235, 7, 1, "", "name"], [235, 8, 1, "", "update"]], "hashlib.shake": [[235, 8, 1, "", "digest"], [235, 8, 1, "", "hexdigest"]], "heapq": [[236, 12, 1, "", "heapify"], [236, 12, 1, "", "heappop"], [236, 12, 1, "", "heappush"], [236, 12, 1, "", "heappushpop"], [236, 12, 1, "", "heapreplace"], [236, 12, 1, "", "merge"], [236, 12, 1, "", "nlargest"], [236, 12, 1, "", "nsmallest"]], "hmac": [[237, 12, 1, "", "compare_digest"], [237, 12, 1, "", "digest"], [237, 12, 1, "", "new"]], "hmac.HMAC": [[237, 7, 1, "", "block_size"], [237, 8, 1, "", "copy"], [237, 8, 1, "", "digest"], [237, 7, 1, "", "digest_size"], [237, 8, 1, "", "hexdigest"], [237, 7, 1, "", "name"], [237, 8, 1, "", "update"]], "html": [[239, 10, 0, "-", "entities"], [238, 12, 1, "", "escape"], [240, 10, 0, "-", "parser"], [238, 12, 1, "", "unescape"]], "html.entities": [[239, 9, 1, "", "codepoint2name"], [239, 9, 1, "", "entitydefs"], [239, 9, 1, "", "html5"], [239, 9, 1, "", "name2codepoint"]], "html.parser": [[240, 11, 1, "", "HTMLParser"]], "html.parser.HTMLParser": [[240, 8, 1, "", "close"], [240, 8, 1, "", "feed"], [240, 8, 1, "", "get_starttag_text"], [240, 8, 1, "", "getpos"], [240, 8, 1, "", "handle_charref"], [240, 8, 1, "", "handle_comment"], [240, 8, 1, "", "handle_data"], [240, 8, 1, "", "handle_decl"], [240, 8, 1, "", "handle_endtag"], [240, 8, 1, "", "handle_entityref"], [240, 8, 1, "", "handle_pi"], [240, 8, 1, "", "handle_startendtag"], [240, 8, 1, "", "handle_starttag"], [240, 8, 1, "", "reset"], [240, 8, 1, "", "unknown_decl"]], "http": [[241, 11, 1, "", "HTTPMethod"], [241, 11, 1, "", "HTTPStatus"], [242, 10, 0, "-", "client"], [243, 10, 0, "-", "cookiejar"], [244, 10, 0, "-", "cookies"], [245, 10, 0, "-", "server"]], "http.client": [[242, 6, 1, "", "BadStatusLine"], [242, 6, 1, "", "CannotSendHeader"], [242, 6, 1, "", "CannotSendRequest"], [242, 11, 1, "", "HTTPConnection"], [242, 6, 1, "", "HTTPException"], [242, 11, 1, "", "HTTPMessage"], [242, 11, 1, "", "HTTPResponse"], [242, 11, 1, "", "HTTPSConnection"], [242, 9, 1, "", "HTTPS_PORT"], [242, 9, 1, "", "HTTP_PORT"], [242, 6, 1, "", "ImproperConnectionState"], [242, 6, 1, "", "IncompleteRead"], [242, 6, 1, "", "InvalidURL"], [242, 6, 1, "", "LineTooLong"], [242, 6, 1, "", "NotConnected"], [242, 6, 1, "", "RemoteDisconnected"], [242, 6, 1, "", "ResponseNotReady"], [242, 6, 1, "", "UnimplementedFileMode"], [242, 6, 1, "", "UnknownProtocol"], [242, 6, 1, "", "UnknownTransferEncoding"], [242, 12, 1, "", "parse_headers"], [242, 9, 1, "", "responses"]], "http.client.HTTPConnection": [[242, 7, 1, "", "blocksize"], [242, 8, 1, "", "close"], [242, 8, 1, "", "connect"], [242, 8, 1, "", "endheaders"], [242, 8, 1, "", "get_proxy_response_headers"], [242, 8, 1, "", "getresponse"], [242, 8, 1, "", "putheader"], [242, 8, 1, "", "putrequest"], [242, 8, 1, "", "request"], [242, 8, 1, "", "send"], [242, 8, 1, "", "set_debuglevel"], [242, 8, 1, "", "set_tunnel"]], "http.client.HTTPResponse": [[242, 7, 1, "", "closed"], [242, 7, 1, "", "debuglevel"], [242, 8, 1, "", "fileno"], [242, 8, 1, "", "getcode"], [242, 8, 1, "", "getheader"], [242, 8, 1, "", "getheaders"], [242, 8, 1, "", "geturl"], [242, 7, 1, "", "headers"], [242, 8, 1, "", "info"], [242, 7, 1, "", "msg"], [242, 8, 1, "", "read"], [242, 8, 1, "", "readinto"], [242, 7, 1, "", "reason"], [242, 7, 1, "", "status"], [242, 7, 1, "", "url"], [242, 7, 1, "", "version"]], "http.cookiejar": [[243, 11, 1, "", "Cookie"], [243, 11, 1, "", "CookieJar"], [243, 11, 1, "", "CookiePolicy"], [243, 11, 1, "", "DefaultCookiePolicy"], [243, 11, 1, "", "FileCookieJar"], [243, 11, 1, "", "LWPCookieJar"], [243, 6, 1, "", "LoadError"], [243, 11, 1, "", "MozillaCookieJar"]], "http.cookiejar.Cookie": [[243, 7, 1, "", "comment"], [243, 7, 1, "", "comment_url"], [243, 7, 1, "", "discard"], [243, 7, 1, "", "domain"], [243, 7, 1, "", "domain_initial_dot"], [243, 7, 1, "", "domain_specified"], [243, 7, 1, "", "expires"], [243, 8, 1, "", "get_nonstandard_attr"], [243, 8, 1, "", "has_nonstandard_attr"], [243, 8, 1, "", "is_expired"], [243, 7, 1, "", "name"], [243, 7, 1, "", "path"], [243, 7, 1, "", "port"], [243, 7, 1, "", "port_specified"], [243, 7, 1, "", "rfc2109"], [243, 7, 1, "", "secure"], [243, 8, 1, "", "set_nonstandard_attr"], [243, 7, 1, "", "value"], [243, 7, 1, "", "version"]], "http.cookiejar.CookieJar": [[243, 8, 1, "", "add_cookie_header"], [243, 8, 1, "", "clear"], [243, 8, 1, "", "clear_session_cookies"], [243, 8, 1, "", "extract_cookies"], [243, 8, 1, "", "make_cookies"], [243, 8, 1, "", "set_cookie"], [243, 8, 1, "", "set_cookie_if_ok"], [243, 8, 1, "", "set_policy"]], "http.cookiejar.CookiePolicy": [[243, 8, 1, "", "domain_return_ok"], [243, 7, 1, "", "hide_cookie2"], [243, 7, 1, "", "netscape"], [243, 8, 1, "", "path_return_ok"], [243, 8, 1, "", "return_ok"], [243, 7, 1, "", "rfc2965"], [243, 8, 1, "", "set_ok"]], "http.cookiejar.DefaultCookiePolicy": [[243, 7, 1, "", "DomainLiberal"], [243, 7, 1, "", "DomainRFC2965Match"], [243, 7, 1, "", "DomainStrict"], [243, 7, 1, "", "DomainStrictNoDots"], [243, 7, 1, "", "DomainStrictNonDomain"], [243, 8, 1, "", "allowed_domains"], [243, 8, 1, "", "blocked_domains"], [243, 8, 1, "", "is_blocked"], [243, 8, 1, "", "is_not_allowed"], [243, 7, 1, "", "rfc2109_as_netscape"], [243, 8, 1, "", "set_allowed_domains"], [243, 8, 1, "", "set_blocked_domains"], [243, 7, 1, "", "strict_domain"], [243, 7, 1, "", "strict_ns_domain"], [243, 7, 1, "", "strict_ns_set_initial_dollar"], [243, 7, 1, "", "strict_ns_set_path"], [243, 7, 1, "", "strict_ns_unverifiable"], [243, 7, 1, "", "strict_rfc2965_unverifiable"]], "http.cookiejar.FileCookieJar": [[243, 7, 1, "", "delayload"], [243, 7, 1, "", "filename"], [243, 8, 1, "", "load"], [243, 8, 1, "", "revert"], [243, 8, 1, "", "save"]], "http.cookies": [[244, 11, 1, "", "BaseCookie"], [244, 6, 1, "", "CookieError"], [244, 11, 1, "", "Morsel"], [244, 11, 1, "", "SimpleCookie"]], "http.cookies.BaseCookie": [[244, 8, 1, "", "js_output"], [244, 8, 1, "", "load"], [244, 8, 1, "", "output"], [244, 8, 1, "", "value_decode"], [244, 8, 1, "", "value_encode"]], "http.cookies.Morsel": [[244, 8, 1, "", "OutputString"], [244, 7, 1, "", "coded_value"], [244, 7, 1, "", "comment"], [244, 8, 1, "", "copy"], [244, 7, 1, "", "domain"], [244, 7, 1, "", "expires"], [244, 7, 1, "", "httponly"], [244, 8, 1, "", "isReservedKey"], [244, 8, 1, "", "js_output"], [244, 7, 1, "", "key"], [244, 8, 1, "", "output"], [244, 7, 1, "", "path"], [244, 7, 1, "", "samesite"], [244, 7, 1, "", "secure"], [244, 8, 1, "", "set"], [244, 8, 1, "", "setdefault"], [244, 8, 1, "", "update"], [244, 7, 1, "", "value"], [244, 7, 1, "", "version"]], "http.server": [[245, 11, 1, "", "BaseHTTPRequestHandler"], [245, 11, 1, "", "CGIHTTPRequestHandler"], [245, 11, 1, "", "HTTPServer"], [245, 11, 1, "", "SimpleHTTPRequestHandler"], [245, 11, 1, "", "ThreadingHTTPServer"]], "http.server.BaseHTTPRequestHandler": [[245, 7, 1, "", "MessageClass"], [245, 8, 1, "", "address_string"], [245, 7, 1, "", "client_address"], [245, 7, 1, "", "close_connection"], [245, 7, 1, "", "command"], [245, 8, 1, "", "date_time_string"], [245, 8, 1, "", "end_headers"], [245, 7, 1, "", "error_content_type"], [245, 7, 1, "", "error_message_format"], [245, 8, 1, "", "flush_headers"], [245, 8, 1, "", "handle"], [245, 8, 1, "", "handle_expect_100"], [245, 8, 1, "", "handle_one_request"], [245, 7, 1, "", "headers"], [245, 8, 1, "", "log_date_time_string"], [245, 8, 1, "", "log_error"], [245, 8, 1, "", "log_message"], [245, 8, 1, "", "log_request"], [245, 7, 1, "", "path"], [245, 7, 1, "", "protocol_version"], [245, 7, 1, "", "request_version"], [245, 7, 1, "", "requestline"], [245, 7, 1, "", "responses"], [245, 7, 1, "", "rfile"], [245, 8, 1, "", "send_error"], [245, 8, 1, "", "send_header"], [245, 8, 1, "", "send_response"], [245, 8, 1, "", "send_response_only"], [245, 7, 1, "", "server"], [245, 7, 1, "", "server_version"], [245, 7, 1, "", "sys_version"], [245, 8, 1, "", "version_string"], [245, 7, 1, "", "wfile"]], "http.server.CGIHTTPRequestHandler": [[245, 7, 1, "", "cgi_directories"], [245, 8, 1, "", "do_POST"]], "http.server.SimpleHTTPRequestHandler": [[245, 8, 1, "", "do_GET"], [245, 8, 1, "", "do_HEAD"], [245, 7, 1, "", "extensions_map"], [245, 7, 1, "", "server_version"]], "imaplib": [[248, 11, 1, "", "IMAP4"], [248, 11, 1, "", "IMAP4_SSL"], [248, 11, 1, "", "IMAP4_stream"], [248, 12, 1, "", "Int2AP"], [248, 12, 1, "", "Internaldate2tuple"], [248, 12, 1, "", "ParseFlags"], [248, 12, 1, "", "Time2Internaldate"]], "imaplib.IMAP4": [[248, 7, 1, "", "PROTOCOL_VERSION"], [248, 6, 1, "", "abort"], [248, 8, 1, "", "append"], [248, 8, 1, "", "authenticate"], [248, 8, 1, "", "check"], [248, 8, 1, "", "close"], [248, 8, 1, "", "copy"], [248, 8, 1, "", "create"], [248, 7, 1, "", "debug"], [248, 8, 1, "", "delete"], [248, 8, 1, "", "deleteacl"], [248, 8, 1, "", "enable"], [248, 6, 1, "", "error"], [248, 8, 1, "", "expunge"], [248, 8, 1, "", "fetch"], [248, 8, 1, "", "getacl"], [248, 8, 1, "", "getannotation"], [248, 8, 1, "", "getquota"], [248, 8, 1, "", "getquotaroot"], [248, 8, 1, "", "list"], [248, 8, 1, "", "login"], [248, 8, 1, "", "login_cram_md5"], [248, 8, 1, "", "logout"], [248, 8, 1, "", "lsub"], [248, 8, 1, "", "myrights"], [248, 8, 1, "", "namespace"], [248, 8, 1, "", "noop"], [248, 8, 1, "", "open"], [248, 8, 1, "", "partial"], [248, 8, 1, "", "proxyauth"], [248, 8, 1, "", "read"], [248, 8, 1, "", "readline"], [248, 6, 1, "", "readonly"], [248, 8, 1, "", "recent"], [248, 8, 1, "", "rename"], [248, 8, 1, "", "response"], [248, 8, 1, "", "search"], [248, 8, 1, "", "select"], [248, 8, 1, "", "send"], [248, 8, 1, "", "setacl"], [248, 8, 1, "", "setannotation"], [248, 8, 1, "", "setquota"], [248, 8, 1, "", "shutdown"], [248, 8, 1, "", "socket"], [248, 8, 1, "", "sort"], [248, 8, 1, "", "starttls"], [248, 8, 1, "", "status"], [248, 8, 1, "", "store"], [248, 8, 1, "", "subscribe"], [248, 8, 1, "", "thread"], [248, 8, 1, "", "uid"], [248, 8, 1, "", "unselect"], [248, 8, 1, "", "unsubscribe"], [248, 7, 1, "", "utf8_enabled"], [248, 8, 1, "", "xatom"]], "imghdr": [[249, 9, 1, "", "tests"], [249, 12, 1, "", "what"]], "importlib": [[250, 12, 1, "", "__import__"], [250, 10, 0, "-", "abc"], [250, 12, 1, "", "import_module"], [250, 12, 1, "", "invalidate_caches"], [250, 10, 0, "-", "machinery"], [251, 10, 0, "-", "metadata"], [250, 12, 1, "", "reload"], [252, 10, 0, "-", "resources"], [250, 10, 0, "-", "util"]], "importlib.abc": [[250, 11, 1, "", "ExecutionLoader"], [250, 11, 1, "", "FileLoader"], [250, 11, 1, "", "InspectLoader"], [250, 11, 1, "", "Loader"], [250, 11, 1, "", "MetaPathFinder"], [250, 11, 1, "", "PathEntryFinder"], [250, 11, 1, "", "ResourceLoader"], [250, 11, 1, "", "ResourceReader"], [250, 11, 1, "", "SourceLoader"], [250, 11, 1, "", "Traversable"], [250, 11, 1, "", "TraversableResources"]], "importlib.abc.ExecutionLoader": [[250, 8, 1, "", "get_filename"]], "importlib.abc.FileLoader": [[250, 8, 1, "", "get_data"], [250, 8, 1, "", "get_filename"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.abc.InspectLoader": [[250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 8, 1, "", "source_to_code"]], "importlib.abc.Loader": [[250, 8, 1, "", "create_module"], [250, 8, 1, "", "exec_module"], [250, 8, 1, "", "load_module"]], "importlib.abc.MetaPathFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.abc.PathEntryFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.abc.ResourceLoader": [[250, 8, 1, "", "get_data"]], "importlib.abc.ResourceReader": [[250, 8, 1, "", "contents"], [250, 8, 1, "", "is_resource"], [250, 8, 1, "", "open_resource"], [250, 8, 1, "", "resource_path"]], "importlib.abc.SourceLoader": [[250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 8, 1, "", "path_mtime"], [250, 8, 1, "", "path_stats"], [250, 8, 1, "", "set_data"]], "importlib.abc.Traversable": [[250, 8, 1, "", "__truediv__"], [250, 8, 1, "", "is_dir"], [250, 8, 1, "", "is_file"], [250, 8, 1, "", "iterdir"], [250, 8, 1, "", "joinpath"], [250, 7, 1, "", "name"], [250, 8, 1, "", "open"], [250, 8, 1, "", "read_bytes"], [250, 8, 1, "", "read_text"]], "importlib.abc.TraversableResources": [[250, 8, 1, "", "files"]], "importlib.machinery": [[250, 7, 1, "", "BYTECODE_SUFFIXES"], [250, 11, 1, "", "BuiltinImporter"], [250, 7, 1, "", "DEBUG_BYTECODE_SUFFIXES"], [250, 7, 1, "", "EXTENSION_SUFFIXES"], [250, 11, 1, "", "ExtensionFileLoader"], [250, 11, 1, "", "FileFinder"], [250, 11, 1, "", "FrozenImporter"], [250, 11, 1, "", "ModuleSpec"], [250, 11, 1, "", "NamespaceLoader"], [250, 7, 1, "", "OPTIMIZED_BYTECODE_SUFFIXES"], [250, 11, 1, "", "PathFinder"], [250, 7, 1, "", "SOURCE_SUFFIXES"], [250, 11, 1, "", "SourceFileLoader"], [250, 11, 1, "", "SourcelessFileLoader"], [250, 11, 1, "", "WindowsRegistryFinder"], [250, 12, 1, "", "all_suffixes"]], "importlib.machinery.ExtensionFileLoader": [[250, 8, 1, "", "create_module"], [250, 8, 1, "", "exec_module"], [250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_filename"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.machinery.FileFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"], [250, 7, 1, "", "path"], [250, 8, 1, "", "path_hook"]], "importlib.machinery.ModuleSpec": [[250, 7, 1, "", "cached"], [250, 7, 1, "", "has_location"], [250, 7, 1, "", "loader"], [250, 7, 1, "", "loader_state"], [250, 7, 1, "", "name"], [250, 7, 1, "", "origin"], [250, 7, 1, "", "parent"], [250, 7, 1, "", "submodule_search_locations"]], "importlib.machinery.PathFinder": [[250, 8, 1, "", "find_spec"], [250, 8, 1, "", "invalidate_caches"]], "importlib.machinery.SourceFileLoader": [[250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"], [250, 8, 1, "", "path_stats"], [250, 8, 1, "", "set_data"]], "importlib.machinery.SourcelessFileLoader": [[250, 8, 1, "", "get_code"], [250, 8, 1, "", "get_source"], [250, 8, 1, "", "is_package"], [250, 8, 1, "", "load_module"], [250, 7, 1, "", "name"], [250, 7, 1, "", "path"]], "importlib.resources": [[252, 11, 1, "", "Anchor"], [252, 9, 1, "", "Package"], [252, 9, 1, "", "Resource"], [253, 10, 0, "-", "abc"], [252, 12, 1, "", "as_file"], [252, 12, 1, "", "contents"], [252, 12, 1, "", "files"], [252, 12, 1, "", "is_resource"], [252, 12, 1, "", "open_binary"], [252, 12, 1, "", "open_text"], [252, 12, 1, "", "path"], [252, 12, 1, "", "read_binary"], [252, 12, 1, "", "read_text"]], "importlib.resources.abc": [[253, 11, 1, "", "ResourceReader"], [253, 11, 1, "", "Traversable"], [253, 11, 1, "", "TraversableResources"]], "importlib.resources.abc.ResourceReader": [[253, 8, 1, "", "contents"], [253, 8, 1, "", "is_resource"], [253, 8, 1, "", "open_resource"], [253, 8, 1, "", "resource_path"]], "importlib.resources.abc.Traversable": [[253, 8, 1, "", "__truediv__"], [253, 8, 1, "", "is_dir"], [253, 8, 1, "", "is_file"], [253, 8, 1, "", "iterdir"], [253, 8, 1, "", "joinpath"], [253, 7, 1, "", "name"], [253, 8, 1, "", "open"], [253, 8, 1, "", "read_bytes"], [253, 8, 1, "", "read_text"]], "importlib.resources.abc.TraversableResources": [[253, 8, 1, "", "files"]], "importlib.util": [[250, 11, 1, "", "LazyLoader"], [250, 7, 1, "", "MAGIC_NUMBER"], [250, 12, 1, "", "_incompatible_extension_module_restrictions"], [250, 12, 1, "", "cache_from_source"], [250, 12, 1, "", "decode_source"], [250, 12, 1, "", "find_spec"], [250, 12, 1, "", "module_from_spec"], [250, 12, 1, "", "resolve_name"], [250, 12, 1, "", "source_from_cache"], [250, 12, 1, "", "source_hash"], [250, 12, 1, "", "spec_from_file_location"], [250, 12, 1, "", "spec_from_loader"]], "importlib.util.LazyLoader": [[250, 8, 1, "", "factory"]], "inspect": [[255, 11, 1, "", "BoundArguments"], [255, 11, 1, "", "BufferFlags"], [255, 9, 1, "", "CO_ASYNC_GENERATOR"], [255, 9, 1, "", "CO_COROUTINE"], [255, 9, 1, "", "CO_GENERATOR"], [255, 9, 1, "", "CO_ITERABLE_COROUTINE"], [255, 9, 1, "", "CO_NESTED"], [255, 9, 1, "", "CO_NEWLOCALS"], [255, 9, 1, "", "CO_OPTIMIZED"], [255, 9, 1, "", "CO_VARARGS"], [255, 9, 1, "", "CO_VARKEYWORDS"], [255, 11, 1, "", "FrameInfo"], [255, 11, 1, "", "Parameter"], [255, 11, 1, "", "Signature"], [255, 11, 1, "", "Traceback"], [255, 12, 1, "", "cleandoc"], [255, 12, 1, "", "currentframe"], [255, 12, 1, "", "formatargvalues"], [255, 12, 1, "", "get_annotations"], [255, 12, 1, "", "getargvalues"], [255, 12, 1, "", "getasyncgenlocals"], [255, 12, 1, "", "getasyncgenstate"], [255, 12, 1, "", "getattr_static"], [255, 12, 1, "", "getcallargs"], [255, 12, 1, "", "getclasstree"], [255, 12, 1, "", "getclosurevars"], [255, 12, 1, "", "getcomments"], [255, 12, 1, "", "getcoroutinelocals"], [255, 12, 1, "", "getcoroutinestate"], [255, 12, 1, "", "getdoc"], [255, 12, 1, "", "getfile"], [255, 12, 1, "", "getframeinfo"], [255, 12, 1, "", "getfullargspec"], [255, 12, 1, "", "getgeneratorlocals"], [255, 12, 1, "", "getgeneratorstate"], [255, 12, 1, "", "getinnerframes"], [255, 12, 1, "", "getmembers"], [255, 12, 1, "", "getmembers_static"], [255, 12, 1, "", "getmodule"], [255, 12, 1, "", "getmodulename"], [255, 12, 1, "", "getmro"], [255, 12, 1, "", "getouterframes"], [255, 12, 1, "", "getsource"], [255, 12, 1, "", "getsourcefile"], [255, 12, 1, "", "getsourcelines"], [255, 12, 1, "", "isabstract"], [255, 12, 1, "", "isasyncgen"], [255, 12, 1, "", "isasyncgenfunction"], [255, 12, 1, "", "isawaitable"], [255, 12, 1, "", "isbuiltin"], [255, 12, 1, "", "isclass"], [255, 12, 1, "", "iscode"], [255, 12, 1, "", "iscoroutine"], [255, 12, 1, "", "iscoroutinefunction"], [255, 12, 1, "", "isdatadescriptor"], [255, 12, 1, "", "isframe"], [255, 12, 1, "", "isfunction"], [255, 12, 1, "", "isgenerator"], [255, 12, 1, "", "isgeneratorfunction"], [255, 12, 1, "", "isgetsetdescriptor"], [255, 12, 1, "", "ismemberdescriptor"], [255, 12, 1, "", "ismethod"], [255, 12, 1, "", "ismethoddescriptor"], [255, 12, 1, "", "ismethodwrapper"], [255, 12, 1, "", "ismodule"], [255, 12, 1, "", "isroutine"], [255, 12, 1, "", "istraceback"], [255, 12, 1, "", "markcoroutinefunction"], [255, 12, 1, "", "signature"], [255, 12, 1, "", "stack"], [255, 12, 1, "", "trace"], [255, 12, 1, "", "unwrap"], [255, 14, 1, "cmdoption-inspect-details", "--details"]], "inspect.BoundArguments": [[255, 8, 1, "", "apply_defaults"], [255, 7, 1, "", "args"], [255, 7, 1, "", "arguments"], [255, 7, 1, "", "kwargs"], [255, 7, 1, "", "signature"]], "inspect.BufferFlags": [[255, 7, 1, "", "ANY_CONTIGUOUS"], [255, 7, 1, "", "CONTIG"], [255, 7, 1, "", "CONTIG_RO"], [255, 7, 1, "", "C_CONTIGUOUS"], [255, 7, 1, "", "FORMAT"], [255, 7, 1, "", "FULL"], [255, 7, 1, "", "FULL_RO"], [255, 7, 1, "", "F_CONTIGUOUS"], [255, 7, 1, "", "INDIRECT"], [255, 7, 1, "", "ND"], [255, 7, 1, "", "READ"], [255, 7, 1, "", "RECORDS"], [255, 7, 1, "", "RECORDS_RO"], [255, 7, 1, "", "SIMPLE"], [255, 7, 1, "", "STRIDED"], [255, 7, 1, "", "STRIDED_RO"], [255, 7, 1, "", "STRIDES"], [255, 7, 1, "", "WRITABLE"], [255, 7, 1, "", "WRITE"]], "inspect.FrameInfo": [[255, 7, 1, "", "code_context"], [255, 7, 1, "", "filename"], [255, 7, 1, "", "frame"], [255, 7, 1, "", "function"], [255, 7, 1, "", "index"], [255, 7, 1, "", "lineno"], [255, 7, 1, "", "positions"]], "inspect.Parameter": [[255, 7, 1, "", "annotation"], [255, 7, 1, "", "default"], [255, 7, 1, "", "empty"], [255, 7, 1, "", "kind"], [255, 7, 1, "", "name"], [255, 8, 1, "", "replace"]], "inspect.Parameter.kind": [[255, 7, 1, "", "description"]], "inspect.Signature": [[255, 8, 1, "", "bind"], [255, 8, 1, "", "bind_partial"], [255, 7, 1, "", "empty"], [255, 8, 1, "", "from_callable"], [255, 7, 1, "", "parameters"], [255, 8, 1, "", "replace"], [255, 7, 1, "", "return_annotation"]], "inspect.Traceback": [[255, 7, 1, "", "code_context"], [255, 7, 1, "", "filename"], [255, 7, 1, "", "function"], [255, 7, 1, "", "index"], [255, 7, 1, "", "lineno"], [255, 7, 1, "", "positions"]], "instance": [[344, 7, 1, "", "__class__"]], "int": [[344, 8, 1, "", "as_integer_ratio"], [344, 8, 1, "", "bit_count"], [344, 8, 1, "", "bit_length"], [344, 8, 1, "", "from_bytes"], [344, 8, 1, "", "is_integer"], [344, 8, 1, "", "to_bytes"]], "io": [[258, 6, 1, "", "BlockingIOError"], [258, 11, 1, "", "BufferedIOBase"], [258, 11, 1, "", "BufferedRWPair"], [258, 11, 1, "", "BufferedRandom"], [258, 11, 1, "", "BufferedReader"], [258, 11, 1, "", "BufferedWriter"], [258, 11, 1, "", "BytesIO"], [258, 9, 1, "", "DEFAULT_BUFFER_SIZE"], [258, 11, 1, "", "FileIO"], [258, 11, 1, "", "IOBase"], [258, 11, 1, "", "IncrementalNewlineDecoder"], [258, 11, 1, "", "RawIOBase"], [258, 11, 1, "", "StringIO"], [258, 11, 1, "", "TextIOBase"], [258, 11, 1, "", "TextIOWrapper"], [258, 6, 1, "", "UnsupportedOperation"], [258, 12, 1, "", "open"], [258, 12, 1, "", "open_code"], [258, 12, 1, "", "text_encoding"]], "io.BufferedIOBase": [[258, 8, 1, "", "detach"], [258, 7, 1, "", "raw"], [258, 8, 1, "", "read"], [258, 8, 1, "", "read1"], [258, 8, 1, "", "readinto"], [258, 8, 1, "", "readinto1"], [258, 8, 1, "", "write"]], "io.BufferedReader": [[258, 8, 1, "", "peek"], [258, 8, 1, "", "read"], [258, 8, 1, "", "read1"]], "io.BufferedWriter": [[258, 8, 1, "", "flush"], [258, 8, 1, "", "write"]], "io.BytesIO": [[258, 8, 1, "", "getbuffer"], [258, 8, 1, "", "getvalue"], [258, 8, 1, "", "read1"], [258, 8, 1, "", "readinto1"]], "io.FileIO": [[258, 7, 1, "", "mode"], [258, 7, 1, "", "name"]], "io.IOBase": [[258, 8, 1, "", "__del__"], [258, 8, 1, "", "close"], [258, 7, 1, "", "closed"], [258, 8, 1, "", "fileno"], [258, 8, 1, "", "flush"], [258, 8, 1, "", "isatty"], [258, 8, 1, "", "readable"], [258, 8, 1, "", "readline"], [258, 8, 1, "", "readlines"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "seekable"], [258, 8, 1, "", "tell"], [258, 8, 1, "", "truncate"], [258, 8, 1, "", "writable"], [258, 8, 1, "", "writelines"]], "io.RawIOBase": [[258, 8, 1, "", "read"], [258, 8, 1, "", "readall"], [258, 8, 1, "", "readinto"], [258, 8, 1, "", "write"]], "io.StringIO": [[258, 8, 1, "", "getvalue"]], "io.TextIOBase": [[258, 7, 1, "", "buffer"], [258, 8, 1, "", "detach"], [258, 7, 1, "", "encoding"], [258, 7, 1, "", "errors"], [258, 7, 1, "", "newlines"], [258, 8, 1, "", "read"], [258, 8, 1, "", "readline"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "tell"], [258, 8, 1, "", "write"]], "io.TextIOWrapper": [[258, 7, 1, "", "line_buffering"], [258, 8, 1, "", "reconfigure"], [258, 8, 1, "", "seek"], [258, 8, 1, "", "tell"], [258, 7, 1, "", "write_through"]], "ipaddress": [[259, 6, 1, "", "AddressValueError"], [259, 11, 1, "", "IPv4Address"], [259, 11, 1, "", "IPv4Interface"], [259, 11, 1, "", "IPv4Network"], [259, 11, 1, "", "IPv6Address"], [259, 11, 1, "", "IPv6Interface"], [259, 11, 1, "", "IPv6Network"], [259, 6, 1, "", "NetmaskValueError"], [259, 12, 1, "", "collapse_addresses"], [259, 12, 1, "", "get_mixed_type_key"], [259, 12, 1, "", "ip_address"], [259, 12, 1, "", "ip_interface"], [259, 12, 1, "", "ip_network"], [259, 12, 1, "", "summarize_address_range"], [259, 12, 1, "", "v4_int_to_packed"], [259, 12, 1, "", "v6_int_to_packed"]], "ipaddress.IPv4Address": [[259, 8, 1, "", "__format__"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "is_global"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "packed"], [259, 7, 1, "", "reverse_pointer"], [259, 7, 1, "", "version"]], "ipaddress.IPv4Interface": [[259, 7, 1, "", "ip"], [259, 7, 1, "", "network"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv4Network": [[259, 8, 1, "", "address_exclude"], [259, 7, 1, "", "broadcast_address"], [259, 8, 1, "", "compare_networks"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "hostmask"], [259, 8, 1, "", "hosts"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "netmask"], [259, 7, 1, "", "network_address"], [259, 7, 1, "", "num_addresses"], [259, 8, 1, "", "overlaps"], [259, 7, 1, "", "prefixlen"], [259, 8, 1, "", "subnet_of"], [259, 8, 1, "", "subnets"], [259, 8, 1, "", "supernet"], [259, 8, 1, "", "supernet_of"], [259, 7, 1, "", "version"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv6Address": [[259, 8, 1, "", "__format__"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "ipv4_mapped"], [259, 7, 1, "", "is_global"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_site_local"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "packed"], [259, 7, 1, "", "reverse_pointer"], [259, 7, 1, "", "scope_id"], [259, 7, 1, "", "sixtofour"], [259, 7, 1, "", "teredo"], [259, 7, 1, "", "version"]], "ipaddress.IPv6Interface": [[259, 7, 1, "", "ip"], [259, 7, 1, "", "network"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "ipaddress.IPv6Network": [[259, 8, 1, "", "address_exclude"], [259, 7, 1, "", "broadcast_address"], [259, 8, 1, "", "compare_networks"], [259, 7, 1, "", "compressed"], [259, 7, 1, "", "exploded"], [259, 7, 1, "", "hostmask"], [259, 8, 1, "", "hosts"], [259, 7, 1, "", "is_link_local"], [259, 7, 1, "", "is_loopback"], [259, 7, 1, "", "is_multicast"], [259, 7, 1, "", "is_private"], [259, 7, 1, "", "is_reserved"], [259, 7, 1, "", "is_site_local"], [259, 7, 1, "", "is_unspecified"], [259, 7, 1, "", "max_prefixlen"], [259, 7, 1, "", "netmask"], [259, 7, 1, "", "network_address"], [259, 7, 1, "", "num_addresses"], [259, 8, 1, "", "overlaps"], [259, 7, 1, "", "prefixlen"], [259, 8, 1, "", "subnet_of"], [259, 8, 1, "", "subnets"], [259, 8, 1, "", "supernet"], [259, 8, 1, "", "supernet_of"], [259, 7, 1, "", "version"], [259, 7, 1, "", "with_hostmask"], [259, 7, 1, "", "with_netmask"], [259, 7, 1, "", "with_prefixlen"]], "iterator": [[344, 8, 1, "", "__iter__"], [344, 8, 1, "", "__next__"]], "itertools": [[261, 12, 1, "", "accumulate"], [261, 12, 1, "", "batched"], [261, 12, 1, "", "chain"], [261, 12, 1, "", "combinations"], [261, 12, 1, "", "combinations_with_replacement"], [261, 12, 1, "", "compress"], [261, 12, 1, "", "count"], [261, 12, 1, "", "cycle"], [261, 12, 1, "", "dropwhile"], [261, 12, 1, "", "filterfalse"], [261, 12, 1, "", "groupby"], [261, 12, 1, "", "islice"], [261, 12, 1, "", "pairwise"], [261, 12, 1, "", "permutations"], [261, 12, 1, "", "product"], [261, 12, 1, "", "repeat"], [261, 12, 1, "", "starmap"], [261, 12, 1, "", "takewhile"], [261, 12, 1, "", "tee"], [261, 12, 1, "", "zip_longest"]], "itertools.chain": [[261, 8, 1, "", "from_iterable"]], "json": [[262, 6, 1, "", "JSONDecodeError"], [262, 11, 1, "", "JSONDecoder"], [262, 11, 1, "", "JSONEncoder"], [262, 12, 1, "", "dump"], [262, 12, 1, "", "dumps"], [262, 12, 1, "", "load"], [262, 12, 1, "", "loads"], [262, 10, 0, "-", "tool"]], "json.JSONDecodeError": [[262, 7, 1, "", "colno"], [262, 7, 1, "", "doc"], [262, 7, 1, "", "lineno"], [262, 7, 1, "", "msg"], [262, 7, 1, "", "pos"]], "json.JSONDecoder": [[262, 8, 1, "", "decode"], [262, 8, 1, "", "raw_decode"]], "json.JSONEncoder": [[262, 8, 1, "", "default"], [262, 8, 1, "", "encode"], [262, 8, 1, "", "iterencode"]], "json.tool": [[262, 14, 1, "cmdoption-json.tool-indent", "--compact"], [262, 14, 1, "cmdoption-json.tool-h", "--help"], [262, 14, 1, "cmdoption-json.tool-indent", "--indent"], [262, 14, 1, "cmdoption-json.tool-json-lines", "--json-lines"], [262, 14, 1, "cmdoption-json.tool-no-ensure-ascii", "--no-ensure-ascii"], [262, 14, 1, "cmdoption-json.tool-indent", "--no-indent"], [262, 14, 1, "cmdoption-json.tool-sort-keys", "--sort-keys"], [262, 14, 1, "cmdoption-json.tool-indent", "--tab"], [262, 14, 1, "cmdoption-json.tool-h", "-h"], [262, 14, 1, "cmdoption-json.tool-arg-infile", "infile"], [262, 14, 1, "cmdoption-json.tool-arg-outfile", "outfile"]], "keyword": [[263, 12, 1, "", "iskeyword"], [263, 12, 1, "", "issoftkeyword"], [263, 9, 1, "", "kwlist"], [263, 9, 1, "", "softkwlist"]], "linecache": [[265, 12, 1, "", "checkcache"], [265, 12, 1, "", "clearcache"], [265, 12, 1, "", "getline"], [265, 12, 1, "", "lazycache"]], "list": [[344, 8, 1, "", "sort"]], "locale": [[266, 9, 1, "", "ABDAY_1"], [266, 9, 1, "", "ABDAY_2"], [266, 9, 1, "", "ABDAY_3"], [266, 9, 1, "", "ABDAY_4"], [266, 9, 1, "", "ABDAY_5"], [266, 9, 1, "", "ABDAY_6"], [266, 9, 1, "", "ABDAY_7"], [266, 9, 1, "", "ABMON_1"], [266, 9, 1, "", "ABMON_10"], [266, 9, 1, "", "ABMON_11"], [266, 9, 1, "", "ABMON_12"], [266, 9, 1, "", "ABMON_2"], [266, 9, 1, "", "ABMON_3"], [266, 9, 1, "", "ABMON_4"], [266, 9, 1, "", "ABMON_5"], [266, 9, 1, "", "ABMON_6"], [266, 9, 1, "", "ABMON_7"], [266, 9, 1, "", "ABMON_8"], [266, 9, 1, "", "ABMON_9"], [266, 9, 1, "", "ALT_DIGITS"], [266, 9, 1, "", "CHAR_MAX"], [266, 9, 1, "", "CODESET"], [266, 9, 1, "", "CRNCYSTR"], [266, 9, 1, "", "DAY_1"], [266, 9, 1, "", "DAY_2"], [266, 9, 1, "", "DAY_3"], [266, 9, 1, "", "DAY_4"], [266, 9, 1, "", "DAY_5"], [266, 9, 1, "", "DAY_6"], [266, 9, 1, "", "DAY_7"], [266, 9, 1, "", "D_FMT"], [266, 9, 1, "", "D_T_FMT"], [266, 9, 1, "", "ERA"], [266, 9, 1, "", "ERA_D_FMT"], [266, 9, 1, "", "ERA_D_T_FMT"], [266, 9, 1, "", "ERA_T_FMT"], [266, 6, 1, "", "Error"], [266, 9, 1, "", "LC_ALL"], [266, 9, 1, "", "LC_COLLATE"], [266, 9, 1, "", "LC_CTYPE"], [266, 9, 1, "", "LC_MESSAGES"], [266, 9, 1, "", "LC_MONETARY"], [266, 9, 1, "", "LC_NUMERIC"], [266, 9, 1, "", "LC_TIME"], [266, 9, 1, "", "MON_1"], [266, 9, 1, "", "MON_10"], [266, 9, 1, "", "MON_11"], [266, 9, 1, "", "MON_12"], [266, 9, 1, "", "MON_2"], [266, 9, 1, "", "MON_3"], [266, 9, 1, "", "MON_4"], [266, 9, 1, "", "MON_5"], [266, 9, 1, "", "MON_6"], [266, 9, 1, "", "MON_7"], [266, 9, 1, "", "MON_8"], [266, 9, 1, "", "MON_9"], [266, 9, 1, "", "NOEXPR"], [266, 9, 1, "", "RADIXCHAR"], [266, 9, 1, "", "THOUSEP"], [266, 9, 1, "", "T_FMT"], [266, 9, 1, "", "T_FMT_AMPM"], [266, 9, 1, "", "YESEXPR"], [266, 12, 1, "", "atof"], [266, 12, 1, "", "atoi"], [266, 12, 1, "", "bind_textdomain_codeset"], [266, 12, 1, "", "bindtextdomain"], [266, 12, 1, "", "currency"], [266, 12, 1, "", "dcgettext"], [266, 12, 1, "", "delocalize"], [266, 12, 1, "", "dgettext"], [266, 12, 1, "", "format_string"], [266, 12, 1, "", "getdefaultlocale"], [266, 12, 1, "", "getencoding"], [266, 12, 1, "", "getlocale"], [266, 12, 1, "", "getpreferredencoding"], [266, 12, 1, "", "gettext"], [266, 12, 1, "", "localeconv"], [266, 12, 1, "", "localize"], [266, 12, 1, "", "nl_langinfo"], [266, 12, 1, "", "normalize"], [266, 12, 1, "", "resetlocale"], [266, 12, 1, "", "setlocale"], [266, 12, 1, "", "str"], [266, 12, 1, "", "strcoll"], [266, 12, 1, "", "strxfrm"], [266, 12, 1, "", "textdomain"]], "logging": [[267, 11, 1, "", "BufferingFormatter"], [267, 9, 1, "", "CRITICAL"], [267, 9, 1, "", "DEBUG"], [267, 9, 1, "", "ERROR"], [269, 11, 1, "", "FileHandler"], [267, 11, 1, "", "Filter"], [267, 11, 1, "", "Formatter"], [267, 11, 1, "", "Handler"], [267, 9, 1, "", "INFO"], [267, 11, 1, "", "LogRecord"], [267, 11, 1, "", "Logger"], [267, 11, 1, "", "LoggerAdapter"], [267, 9, 1, "", "NOTSET"], [269, 11, 1, "", "NullHandler"], [269, 11, 1, "", "StreamHandler"], [267, 9, 1, "", "WARNING"], [267, 12, 1, "", "addLevelName"], [267, 12, 1, "", "basicConfig"], [267, 12, 1, "", "captureWarnings"], [268, 10, 0, "-", "config"], [267, 12, 1, "", "critical"], [267, 12, 1, "", "debug"], [267, 12, 1, "", "disable"], [267, 12, 1, "", "error"], [267, 12, 1, "", "exception"], [267, 12, 1, "", "getHandlerByName"], [267, 12, 1, "", "getHandlerNames"], [267, 12, 1, "", "getLevelName"], [267, 12, 1, "", "getLevelNamesMapping"], [267, 12, 1, "", "getLogRecordFactory"], [267, 12, 1, "", "getLogger"], [267, 12, 1, "", "getLoggerClass"], [269, 10, 0, "-", "handlers"], [267, 12, 1, "", "info"], [267, 7, 1, "", "lastResort"], [267, 12, 1, "", "log"], [267, 12, 1, "", "makeLogRecord"], [267, 7, 1, "", "raiseExceptions"], [267, 12, 1, "", "setLogRecordFactory"], [267, 12, 1, "", "setLoggerClass"], [267, 12, 1, "", "shutdown"], [267, 12, 1, "", "warning"]], "logging.BufferingFormatter": [[267, 8, 1, "", "format"], [267, 8, 1, "", "formatFooter"], [267, 8, 1, "", "formatHeader"]], "logging.FileHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "emit"]], "logging.Filter": [[267, 8, 1, "", "filter"]], "logging.Formatter": [[267, 8, 1, "", "format"], [267, 8, 1, "", "formatException"], [267, 8, 1, "", "formatStack"], [267, 8, 1, "", "formatTime"]], "logging.Handler": [[267, 8, 1, "", "__init__"], [267, 8, 1, "", "acquire"], [267, 8, 1, "", "addFilter"], [267, 8, 1, "", "close"], [267, 8, 1, "", "createLock"], [267, 8, 1, "", "emit"], [267, 8, 1, "", "filter"], [267, 8, 1, "", "flush"], [267, 8, 1, "", "format"], [267, 8, 1, "", "handle"], [267, 8, 1, "", "handleError"], [267, 8, 1, "", "release"], [267, 8, 1, "", "removeFilter"], [267, 8, 1, "", "setFormatter"], [267, 8, 1, "", "setLevel"]], "logging.LogRecord": [[267, 8, 1, "", "getMessage"]], "logging.Logger": [[267, 8, 1, "", "addFilter"], [267, 8, 1, "", "addHandler"], [267, 8, 1, "", "critical"], [267, 8, 1, "", "debug"], [267, 7, 1, "", "disabled"], [267, 8, 1, "", "error"], [267, 8, 1, "", "exception"], [267, 8, 1, "", "filter"], [267, 8, 1, "", "findCaller"], [267, 8, 1, "", "getChild"], [267, 8, 1, "", "getChildren"], [267, 8, 1, "", "getEffectiveLevel"], [267, 8, 1, "", "handle"], [267, 7, 1, "", "handlers"], [267, 8, 1, "", "hasHandlers"], [267, 8, 1, "", "info"], [267, 8, 1, "", "isEnabledFor"], [267, 7, 1, "", "level"], [267, 8, 1, "", "log"], [267, 8, 1, "", "makeRecord"], [267, 7, 1, "", "name"], [267, 7, 1, "", "parent"], [267, 7, 1, "", "propagate"], [267, 8, 1, "", "removeFilter"], [267, 8, 1, "", "removeHandler"], [267, 8, 1, "", "setLevel"], [267, 8, 1, "", "warning"]], "logging.LoggerAdapter": [[267, 7, 1, "", "_log"], [267, 7, 1, "", "manager"], [267, 8, 1, "", "process"]], "logging.NullHandler": [[269, 8, 1, "", "createLock"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "handle"]], "logging.StreamHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "setStream"], [269, 7, 1, "", "terminator"]], "logging.config": [[268, 12, 1, "", "dictConfig"], [268, 12, 1, "", "fileConfig"], [268, 12, 1, "", "listen"], [268, 12, 1, "", "stopListening"]], "logging.handlers": [[269, 11, 1, "", "BaseRotatingHandler"], [269, 11, 1, "", "BufferingHandler"], [269, 11, 1, "", "DatagramHandler"], [269, 11, 1, "", "HTTPHandler"], [269, 11, 1, "", "MemoryHandler"], [269, 11, 1, "", "NTEventLogHandler"], [269, 11, 1, "", "QueueHandler"], [269, 11, 1, "", "QueueListener"], [269, 11, 1, "", "RotatingFileHandler"], [269, 11, 1, "", "SMTPHandler"], [269, 11, 1, "", "SocketHandler"], [269, 11, 1, "", "SysLogHandler"], [269, 11, 1, "", "TimedRotatingFileHandler"], [269, 11, 1, "", "WatchedFileHandler"]], "logging.handlers.BaseRotatingHandler": [[269, 7, 1, "", "namer"], [269, 8, 1, "", "rotate"], [269, 8, 1, "", "rotation_filename"], [269, 7, 1, "", "rotator"]], "logging.handlers.BufferingHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "shouldFlush"]], "logging.handlers.DatagramHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "makeSocket"], [269, 8, 1, "", "send"]], "logging.handlers.HTTPHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "mapLogRecord"]], "logging.handlers.MemoryHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "flush"], [269, 8, 1, "", "setTarget"], [269, 8, 1, "", "shouldFlush"]], "logging.handlers.NTEventLogHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "getEventCategory"], [269, 8, 1, "", "getEventType"], [269, 8, 1, "", "getMessageID"]], "logging.handlers.QueueHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "enqueue"], [269, 7, 1, "", "listener"], [269, 8, 1, "", "prepare"]], "logging.handlers.QueueListener": [[269, 8, 1, "", "dequeue"], [269, 8, 1, "", "enqueue_sentinel"], [269, 8, 1, "", "handle"], [269, 8, 1, "", "prepare"], [269, 8, 1, "", "start"], [269, 8, 1, "", "stop"]], "logging.handlers.RotatingFileHandler": [[269, 8, 1, "", "doRollover"], [269, 8, 1, "", "emit"]], "logging.handlers.SMTPHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "getSubject"]], "logging.handlers.SocketHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "createSocket"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "handleError"], [269, 8, 1, "", "makePickle"], [269, 8, 1, "", "makeSocket"], [269, 8, 1, "", "send"]], "logging.handlers.SysLogHandler": [[269, 8, 1, "", "close"], [269, 8, 1, "", "createSocket"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "encodePriority"], [269, 8, 1, "", "mapPriority"]], "logging.handlers.TimedRotatingFileHandler": [[269, 8, 1, "", "doRollover"], [269, 8, 1, "", "emit"], [269, 8, 1, "", "getFilesToDelete"]], "logging.handlers.WatchedFileHandler": [[269, 8, 1, "", "emit"], [269, 8, 1, "", "reopenIfNeeded"]], "logging.logging.Formatter": [[101, 8, 1, "", "__init__"]], "lzma": [[270, 11, 1, "", "LZMACompressor"], [270, 11, 1, "", "LZMADecompressor"], [270, 6, 1, "", "LZMAError"], [270, 11, 1, "", "LZMAFile"], [270, 12, 1, "", "compress"], [270, 12, 1, "", "decompress"], [270, 12, 1, "", "is_check_supported"], [270, 12, 1, "", "open"]], "lzma.LZMACompressor": [[270, 8, 1, "", "compress"], [270, 8, 1, "", "flush"]], "lzma.LZMADecompressor": [[270, 7, 1, "", "check"], [270, 8, 1, "", "decompress"], [270, 7, 1, "", "eof"], [270, 7, 1, "", "needs_input"], [270, 7, 1, "", "unused_data"]], "lzma.LZMAFile": [[270, 8, 1, "", "peek"]], "mailbox": [[271, 11, 1, "", "Babyl"], [271, 11, 1, "", "BabylMessage"], [271, 6, 1, "", "Error"], [271, 6, 1, "", "ExternalClashError"], [271, 6, 1, "", "FormatError"], [271, 11, 1, "", "MH"], [271, 11, 1, "", "MHMessage"], [271, 11, 1, "", "MMDF"], [271, 11, 1, "", "MMDFMessage"], [271, 11, 1, "", "Mailbox"], [271, 11, 1, "", "Maildir"], [271, 11, 1, "", "MaildirMessage"], [271, 11, 1, "", "Message"], [271, 6, 1, "", "NoSuchMailboxError"], [271, 6, 1, "", "NotEmptyError"], [271, 11, 1, "", "mbox"], [271, 11, 1, "", "mboxMessage"]], "mailbox.Babyl": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_labels"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.BabylMessage": [[271, 8, 1, "", "add_label"], [271, 8, 1, "", "get_labels"], [271, 8, 1, "", "get_visible"], [271, 8, 1, "", "remove_label"], [271, 8, 1, "", "set_labels"], [271, 8, 1, "", "set_visible"], [271, 8, 1, "", "update_visible"]], "mailbox.MH": [[271, 8, 1, "", "__delitem__"], [271, 8, 1, "", "add_folder"], [271, 8, 1, "", "close"], [271, 8, 1, "", "discard"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_folder"], [271, 8, 1, "", "get_sequences"], [271, 8, 1, "", "list_folders"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "pack"], [271, 8, 1, "", "remove"], [271, 8, 1, "", "remove_folder"], [271, 8, 1, "", "set_sequences"], [271, 8, 1, "", "unlock"]], "mailbox.MHMessage": [[271, 8, 1, "", "add_sequence"], [271, 8, 1, "", "get_sequences"], [271, 8, 1, "", "remove_sequence"], [271, 8, 1, "", "set_sequences"]], "mailbox.MMDF": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.MMDFMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_from"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_from"]], "mailbox.Mailbox": [[271, 8, 1, "", "__contains__"], [271, 8, 1, "", "__delitem__"], [271, 8, 1, "", "__getitem__"], [271, 8, 1, "", "__iter__"], [271, 8, 1, "", "__len__"], [271, 8, 1, "", "__setitem__"], [271, 8, 1, "", "add"], [271, 8, 1, "", "clear"], [271, 8, 1, "", "close"], [271, 8, 1, "", "discard"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get"], [271, 8, 1, "", "get_bytes"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_message"], [271, 8, 1, "", "get_string"], [271, 8, 1, "", "items"], [271, 8, 1, "", "iteritems"], [271, 8, 1, "", "iterkeys"], [271, 8, 1, "", "itervalues"], [271, 8, 1, "", "keys"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "pop"], [271, 8, 1, "", "popitem"], [271, 8, 1, "", "remove"], [271, 8, 1, "", "unlock"], [271, 8, 1, "", "update"], [271, 8, 1, "", "values"]], "mailbox.Maildir": [[271, 8, 1, "", "__setitem__"], [271, 8, 1, "", "add"], [271, 8, 1, "", "add_folder"], [271, 8, 1, "", "clean"], [271, 8, 1, "", "close"], [271, 7, 1, "", "colon"], [271, 8, 1, "", "flush"], [271, 8, 1, "", "get_file"], [271, 8, 1, "", "get_folder"], [271, 8, 1, "", "list_folders"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "remove_folder"], [271, 8, 1, "", "unlock"], [271, 8, 1, "", "update"]], "mailbox.MaildirMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_date"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_info"], [271, 8, 1, "", "get_subdir"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_date"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_info"], [271, 8, 1, "", "set_subdir"]], "mailbox.mbox": [[271, 8, 1, "", "get_file"], [271, 8, 1, "", "lock"], [271, 8, 1, "", "unlock"]], "mailbox.mboxMessage": [[271, 8, 1, "", "add_flag"], [271, 8, 1, "", "get_flags"], [271, 8, 1, "", "get_from"], [271, 8, 1, "", "remove_flag"], [271, 8, 1, "", "set_flags"], [271, 8, 1, "", "set_from"]], "mailcap": [[272, 12, 1, "", "findmatch"], [272, 12, 1, "", "getcaps"]], "marshal": [[274, 12, 1, "", "dump"], [274, 12, 1, "", "dumps"], [274, 12, 1, "", "load"], [274, 12, 1, "", "loads"], [274, 9, 1, "", "version"]], "math": [[275, 12, 1, "", "acos"], [275, 12, 1, "", "acosh"], [275, 12, 1, "", "asin"], [275, 12, 1, "", "asinh"], [275, 12, 1, "", "atan"], [275, 12, 1, "", "atan2"], [275, 12, 1, "", "atanh"], [275, 12, 1, "", "cbrt"], [275, 12, 1, "", "ceil"], [275, 12, 1, "", "comb"], [275, 12, 1, "", "copysign"], [275, 12, 1, "", "cos"], [275, 12, 1, "", "cosh"], [275, 12, 1, "", "degrees"], [275, 12, 1, "", "dist"], [275, 9, 1, "", "e"], [275, 12, 1, "", "erf"], [275, 12, 1, "", "erfc"], [275, 12, 1, "", "exp"], [275, 12, 1, "", "exp2"], [275, 12, 1, "", "expm1"], [275, 12, 1, "", "fabs"], [275, 12, 1, "", "factorial"], [275, 12, 1, "", "floor"], [275, 12, 1, "", "fmod"], [275, 12, 1, "", "frexp"], [275, 12, 1, "", "fsum"], [275, 12, 1, "", "gamma"], [275, 12, 1, "", "gcd"], [275, 12, 1, "", "hypot"], [275, 9, 1, "", "inf"], [275, 12, 1, "", "isclose"], [275, 12, 1, "", "isfinite"], [275, 12, 1, "", "isinf"], [275, 12, 1, "", "isnan"], [275, 12, 1, "", "isqrt"], [275, 12, 1, "", "lcm"], [275, 12, 1, "", "ldexp"], [275, 12, 1, "", "lgamma"], [275, 12, 1, "", "log"], [275, 12, 1, "", "log10"], [275, 12, 1, "", "log1p"], [275, 12, 1, "", "log2"], [275, 12, 1, "", "modf"], [275, 9, 1, "", "nan"], [275, 12, 1, "", "nextafter"], [275, 12, 1, "", "perm"], [275, 9, 1, "", "pi"], [275, 12, 1, "", "pow"], [275, 12, 1, "", "prod"], [275, 12, 1, "", "radians"], [275, 12, 1, "", "remainder"], [275, 12, 1, "", "sin"], [275, 12, 1, "", "sinh"], [275, 12, 1, "", "sqrt"], [275, 12, 1, "", "sumprod"], [275, 12, 1, "", "tan"], [275, 12, 1, "", "tanh"], [275, 9, 1, "", "tau"], [275, 12, 1, "", "trunc"], [275, 12, 1, "", "ulp"]], "memoryview": [[344, 8, 1, "", "__eq__"], [344, 7, 1, "", "c_contiguous"], [344, 8, 1, "", "cast"], [344, 7, 1, "", "contiguous"], [344, 7, 1, "", "f_contiguous"], [344, 7, 1, "", "format"], [344, 8, 1, "", "hex"], [344, 7, 1, "", "itemsize"], [344, 7, 1, "", "nbytes"], [344, 7, 1, "", "ndim"], [344, 7, 1, "", "obj"], [344, 7, 1, "", "readonly"], [344, 8, 1, "", "release"], [344, 7, 1, "", "shape"], [344, 7, 1, "", "strides"], [344, 7, 1, "", "suboffsets"], [344, 8, 1, "", "tobytes"], [344, 8, 1, "", "tolist"], [344, 8, 1, "", "toreadonly"]], "method": [[428, 7, 1, "", "__doc__"], [428, 7, 1, "", "__func__"], [428, 7, 1, "", "__module__"], [428, 7, 1, "", "__name__"], [428, 7, 1, "", "__self__"]], "mimetypes": [[276, 11, 1, "", "MimeTypes"], [276, 12, 1, "", "add_type"], [276, 9, 1, "", "common_types"], [276, 9, 1, "", "encodings_map"], [276, 12, 1, "", "guess_all_extensions"], [276, 12, 1, "", "guess_extension"], [276, 12, 1, "", "guess_type"], [276, 12, 1, "", "init"], [276, 9, 1, "", "inited"], [276, 9, 1, "", "knownfiles"], [276, 12, 1, "", "read_mime_types"], [276, 9, 1, "", "suffix_map"], [276, 9, 1, "", "types_map"]], "mimetypes.MimeTypes": [[276, 7, 1, "", "encodings_map"], [276, 8, 1, "", "guess_all_extensions"], [276, 8, 1, "", "guess_extension"], [276, 8, 1, "", "guess_type"], [276, 8, 1, "", "read"], [276, 8, 1, "", "read_windows_registry"], [276, 8, 1, "", "readfp"], [276, 7, 1, "", "suffix_map"], [276, 7, 1, "", "types_map"], [276, 7, 1, "", "types_map_inv"]], "mmap": [[278, 9, 1, "", "MADV_AUTOSYNC"], [278, 9, 1, "", "MADV_CORE"], [278, 9, 1, "", "MADV_DODUMP"], [278, 9, 1, "", "MADV_DOFORK"], [278, 9, 1, "", "MADV_DONTDUMP"], [278, 9, 1, "", "MADV_DONTFORK"], [278, 9, 1, "", "MADV_DONTNEED"], [278, 9, 1, "", "MADV_FREE"], [278, 9, 1, "", "MADV_FREE_REUSABLE"], [278, 9, 1, "", "MADV_FREE_REUSE"], [278, 9, 1, "", "MADV_HUGEPAGE"], [278, 9, 1, "", "MADV_HWPOISON"], [278, 9, 1, "", "MADV_MERGEABLE"], [278, 9, 1, "", "MADV_NOCORE"], [278, 9, 1, "", "MADV_NOHUGEPAGE"], [278, 9, 1, "", "MADV_NORMAL"], [278, 9, 1, "", "MADV_NOSYNC"], [278, 9, 1, "", "MADV_PROTECT"], [278, 9, 1, "", "MADV_RANDOM"], [278, 9, 1, "", "MADV_REMOVE"], [278, 9, 1, "", "MADV_SEQUENTIAL"], [278, 9, 1, "", "MADV_SOFT_OFFLINE"], [278, 9, 1, "", "MADV_UNMERGEABLE"], [278, 9, 1, "", "MADV_WILLNEED"], [278, 9, 1, "", "MAP_ALIGNED_SUPER"], [278, 9, 1, "", "MAP_ANON"], [278, 9, 1, "", "MAP_ANONYMOUS"], [278, 9, 1, "", "MAP_CONCEAL"], [278, 9, 1, "", "MAP_DENYWRITE"], [278, 9, 1, "", "MAP_EXECUTABLE"], [278, 9, 1, "", "MAP_POPULATE"], [278, 9, 1, "", "MAP_PRIVATE"], [278, 9, 1, "", "MAP_SHARED"], [278, 9, 1, "", "MAP_STACK"], [278, 11, 1, "", "mmap"]], "mmap.mmap": [[278, 8, 1, "", "close"], [278, 7, 1, "", "closed"], [278, 8, 1, "", "find"], [278, 8, 1, "", "flush"], [278, 8, 1, "", "madvise"], [278, 8, 1, "", "move"], [278, 8, 1, "", "read"], [278, 8, 1, "", "read_byte"], [278, 8, 1, "", "readline"], [278, 8, 1, "", "resize"], [278, 8, 1, "", "rfind"], [278, 8, 1, "", "seek"], [278, 8, 1, "", "size"], [278, 8, 1, "", "tell"], [278, 8, 1, "", "write"], [278, 8, 1, "", "write_byte"]], "modulefinder": [[279, 12, 1, "", "AddPackagePath"], [279, 11, 1, "", "ModuleFinder"], [279, 12, 1, "", "ReplacePackage"]], "modulefinder.ModuleFinder": [[279, 7, 1, "", "modules"], [279, 8, 1, "", "report"], [279, 8, 1, "", "run_script"]], "msilib": [[281, 11, 1, "", "Binary"], [281, 11, 1, "", "CAB"], [281, 11, 1, "", "Control"], [281, 12, 1, "", "CreateRecord"], [281, 11, 1, "", "Dialog"], [281, 11, 1, "", "Directory"], [281, 12, 1, "", "FCICreate"], [281, 11, 1, "", "Feature"], [281, 12, 1, "", "OpenDatabase"], [281, 11, 1, "", "RadioButtonGroup"], [281, 12, 1, "", "UuidCreate"], [281, 12, 1, "", "add_data"], [281, 12, 1, "", "add_stream"], [281, 12, 1, "", "add_tables"], [281, 12, 1, "", "gen_uuid"], [281, 12, 1, "", "init_database"], [281, 9, 1, "", "schema"], [281, 9, 1, "", "sequence"], [281, 9, 1, "", "text"]], "msilib.CAB": [[281, 8, 1, "", "append"], [281, 8, 1, "", "commit"]], "msilib.Control": [[281, 8, 1, "", "condition"], [281, 8, 1, "", "event"], [281, 8, 1, "", "mapping"]], "msilib.Database": [[281, 8, 1, "", "Close"], [281, 8, 1, "", "Commit"], [281, 8, 1, "", "GetSummaryInformation"], [281, 8, 1, "", "OpenView"]], "msilib.Dialog": [[281, 8, 1, "", "bitmap"], [281, 8, 1, "", "checkbox"], [281, 8, 1, "", "control"], [281, 8, 1, "", "line"], [281, 8, 1, "", "pushbutton"], [281, 8, 1, "", "radiogroup"], [281, 8, 1, "", "text"]], "msilib.Directory": [[281, 8, 1, "", "add_file"], [281, 8, 1, "", "glob"], [281, 8, 1, "", "remove_pyc"], [281, 8, 1, "", "start_component"]], "msilib.Feature": [[281, 8, 1, "", "set_current"]], "msilib.RadioButtonGroup": [[281, 8, 1, "", "add"]], "msilib.Record": [[281, 8, 1, "", "ClearData"], [281, 8, 1, "", "GetFieldCount"], [281, 8, 1, "", "GetInteger"], [281, 8, 1, "", "GetString"], [281, 8, 1, "", "SetInteger"], [281, 8, 1, "", "SetStream"], [281, 8, 1, "", "SetString"]], "msilib.SummaryInformation": [[281, 8, 1, "", "GetProperty"], [281, 8, 1, "", "GetPropertyCount"], [281, 8, 1, "", "Persist"], [281, 8, 1, "", "SetProperty"]], "msilib.View": [[281, 8, 1, "", "Close"], [281, 8, 1, "", "Execute"], [281, 8, 1, "", "Fetch"], [281, 8, 1, "", "GetColumnInfo"], [281, 8, 1, "", "Modify"]], "msvcrt": [[282, 9, 1, "", "CRT_ASSEMBLY_VERSION"], [282, 9, 1, "", "LIBRARIES_ASSEMBLY_NAME_PREFIX"], [282, 9, 1, "", "LK_LOCK"], [282, 9, 1, "", "LK_NBLCK"], [282, 9, 1, "", "LK_NBRLCK"], [282, 9, 1, "", "LK_RLCK"], [282, 9, 1, "", "LK_UNLCK"], [282, 9, 1, "", "VC_ASSEMBLY_PUBLICKEYTOKEN"], [282, 12, 1, "", "get_osfhandle"], [282, 12, 1, "", "getch"], [282, 12, 1, "", "getche"], [282, 12, 1, "", "getwch"], [282, 12, 1, "", "getwche"], [282, 12, 1, "", "heapmin"], [282, 12, 1, "", "kbhit"], [282, 12, 1, "", "locking"], [282, 12, 1, "", "open_osfhandle"], [282, 12, 1, "", "putch"], [282, 12, 1, "", "putwch"], [282, 12, 1, "", "setmode"], [282, 12, 1, "", "ungetch"], [282, 12, 1, "", "ungetwch"]], "multiprocessing": [[283, 12, 1, "", "Array"], [283, 6, 1, "", "AuthenticationError"], [283, 11, 1, "", "Barrier"], [283, 11, 1, "", "BoundedSemaphore"], [283, 6, 1, "", "BufferTooShort"], [283, 11, 1, "", "Condition"], [283, 11, 1, "", "Event"], [283, 11, 1, "", "JoinableQueue"], [283, 11, 1, "", "Lock"], [283, 12, 1, "", "Manager"], [283, 12, 1, "", "Pipe"], [283, 11, 1, "", "Process"], [283, 6, 1, "", "ProcessError"], [283, 11, 1, "", "Queue"], [283, 11, 1, "", "RLock"], [283, 11, 1, "", "Semaphore"], [283, 11, 1, "", "SimpleQueue"], [283, 6, 1, "", "TimeoutError"], [283, 12, 1, "", "Value"], [283, 12, 1, "", "active_children"], [283, 10, 0, "-", "connection"], [283, 12, 1, "", "cpu_count"], [283, 12, 1, "", "current_process"], [283, 10, 0, "-", "dummy"], [283, 12, 1, "", "freeze_support"], [283, 12, 1, "", "get_all_start_methods"], [283, 12, 1, "", "get_context"], [283, 12, 1, "", "get_logger"], [283, 12, 1, "", "get_start_method"], [283, 12, 1, "", "log_to_stderr"], [283, 10, 0, "-", "managers"], [283, 12, 1, "", "parent_process"], [283, 10, 0, "-", "pool"], [283, 12, 1, "", "set_executable"], [283, 12, 1, "", "set_forkserver_preload"], [283, 12, 1, "", "set_start_method"], [284, 10, 0, "-", "shared_memory"], [283, 10, 0, "-", "sharedctypes"]], "multiprocessing.JoinableQueue": [[283, 8, 1, "", "join"], [283, 8, 1, "", "task_done"]], "multiprocessing.Lock": [[283, 8, 1, "", "acquire"], [283, 8, 1, "", "release"]], "multiprocessing.Process": [[283, 7, 1, "", "authkey"], [283, 8, 1, "", "close"], [283, 7, 1, "", "daemon"], [283, 7, 1, "", "exitcode"], [283, 8, 1, "", "is_alive"], [283, 8, 1, "", "join"], [283, 8, 1, "", "kill"], [283, 7, 1, "", "name"], [283, 7, 1, "", "pid"], [283, 8, 1, "", "run"], [283, 7, 1, "", "sentinel"], [283, 8, 1, "", "start"], [283, 8, 1, "", "terminate"]], "multiprocessing.Queue": [[283, 8, 1, "", "cancel_join_thread"], [283, 8, 1, "", "close"], [283, 8, 1, "", "empty"], [283, 8, 1, "", "full"], [283, 8, 1, "", "get"], [283, 8, 1, "", "get_nowait"], [283, 8, 1, "", "join_thread"], [283, 8, 1, "", "put"], [283, 8, 1, "", "put_nowait"], [283, 8, 1, "", "qsize"]], "multiprocessing.RLock": [[283, 8, 1, "", "acquire"], [283, 8, 1, "", "release"]], "multiprocessing.SimpleQueue": [[283, 8, 1, "", "close"], [283, 8, 1, "", "empty"], [283, 8, 1, "", "get"], [283, 8, 1, "", "put"]], "multiprocessing.connection": [[283, 12, 1, "", "Client"], [283, 11, 1, "", "Connection"], [283, 11, 1, "", "Listener"], [283, 12, 1, "", "answer_challenge"], [283, 12, 1, "", "deliver_challenge"], [283, 12, 1, "", "wait"]], "multiprocessing.connection.Connection": [[283, 8, 1, "", "close"], [283, 8, 1, "", "fileno"], [283, 8, 1, "", "poll"], [283, 8, 1, "", "recv"], [283, 8, 1, "", "recv_bytes"], [283, 8, 1, "", "recv_bytes_into"], [283, 8, 1, "", "send"], [283, 8, 1, "", "send_bytes"]], "multiprocessing.connection.Listener": [[283, 8, 1, "", "accept"], [283, 7, 1, "", "address"], [283, 8, 1, "", "close"], [283, 7, 1, "", "last_accepted"]], "multiprocessing.managers": [[283, 11, 1, "", "BaseManager"], [283, 11, 1, "", "BaseProxy"], [283, 11, 1, "", "Namespace"], [284, 11, 1, "", "SharedMemoryManager"], [283, 11, 1, "", "SyncManager"]], "multiprocessing.managers.BaseManager": [[283, 7, 1, "", "address"], [283, 8, 1, "", "connect"], [283, 8, 1, "", "get_server"], [283, 8, 1, "", "register"], [283, 8, 1, "", "shutdown"], [283, 8, 1, "", "start"]], "multiprocessing.managers.BaseProxy": [[283, 8, 1, "", "__repr__"], [283, 8, 1, "", "__str__"], [283, 8, 1, "", "_callmethod"], [283, 8, 1, "", "_getvalue"]], "multiprocessing.managers.SharedMemoryManager": [[284, 8, 1, "", "ShareableList"], [284, 8, 1, "", "SharedMemory"]], "multiprocessing.managers.SyncManager": [[283, 8, 1, "", "Array"], [283, 8, 1, "", "Barrier"], [283, 8, 1, "", "BoundedSemaphore"], [283, 8, 1, "", "Condition"], [283, 8, 1, "", "Event"], [283, 8, 1, "", "Lock"], [283, 8, 1, "", "Namespace"], [283, 8, 1, "", "Queue"], [283, 8, 1, "", "RLock"], [283, 8, 1, "", "Semaphore"], [283, 8, 1, "", "Value"], [283, 8, 1, "", "dict"], [283, 8, 1, "", "list"]], "multiprocessing.pool": [[283, 11, 1, "", "AsyncResult"], [283, 11, 1, "", "Pool"], [283, 11, 1, "", "ThreadPool"]], "multiprocessing.pool.AsyncResult": [[283, 8, 1, "", "get"], [283, 8, 1, "", "ready"], [283, 8, 1, "", "successful"], [283, 8, 1, "", "wait"]], "multiprocessing.pool.Pool": [[283, 8, 1, "", "apply"], [283, 8, 1, "", "apply_async"], [283, 8, 1, "", "close"], [283, 8, 1, "", "imap"], [283, 8, 1, "", "imap_unordered"], [283, 8, 1, "", "join"], [283, 8, 1, "", "map"], [283, 8, 1, "", "map_async"], [283, 8, 1, "", "starmap"], [283, 8, 1, "", "starmap_async"], [283, 8, 1, "", "terminate"]], "multiprocessing.shared_memory": [[284, 11, 1, "", "ShareableList"], [284, 11, 1, "", "SharedMemory"]], "multiprocessing.shared_memory.ShareableList": [[284, 8, 1, "", "count"], [284, 7, 1, "", "format"], [284, 8, 1, "", "index"], [284, 7, 1, "", "shm"]], "multiprocessing.shared_memory.SharedMemory": [[284, 7, 1, "", "buf"], [284, 8, 1, "", "close"], [284, 7, 1, "", "name"], [284, 7, 1, "", "size"], [284, 8, 1, "", "unlink"]], "multiprocessing.sharedctypes": [[283, 12, 1, "", "Array"], [283, 12, 1, "", "RawArray"], [283, 12, 1, "", "RawValue"], [283, 12, 1, "", "Value"], [283, 12, 1, "", "copy"], [283, 12, 1, "", "synchronized"]], "netrc": [[286, 6, 1, "", "NetrcParseError"], [286, 11, 1, "", "netrc"]], "netrc.NetrcParseError": [[286, 7, 1, "", "filename"], [286, 7, 1, "", "lineno"], [286, 7, 1, "", "msg"]], "netrc.netrc": [[286, 8, 1, "", "__repr__"], [286, 8, 1, "", "authenticators"], [286, 7, 1, "", "hosts"], [286, 7, 1, "", "macros"]], "nis": [[287, 12, 1, "", "cat"], [287, 6, 1, "", "error"], [287, 12, 1, "", "get_default_domain"], [287, 12, 1, "", "maps"], [287, 12, 1, "", "match"]], "nntplib": [[288, 11, 1, "", "NNTP"], [288, 6, 1, "", "NNTPDataError"], [288, 6, 1, "", "NNTPError"], [288, 6, 1, "", "NNTPPermanentError"], [288, 6, 1, "", "NNTPProtocolError"], [288, 6, 1, "", "NNTPReplyError"], [288, 6, 1, "", "NNTPTemporaryError"], [288, 11, 1, "", "NNTP_SSL"], [288, 12, 1, "", "decode_header"]], "nntplib.NNTP": [[288, 8, 1, "", "article"], [288, 8, 1, "", "body"], [288, 8, 1, "", "date"], [288, 8, 1, "", "description"], [288, 8, 1, "", "descriptions"], [288, 8, 1, "", "getcapabilities"], [288, 8, 1, "", "getwelcome"], [288, 8, 1, "", "group"], [288, 8, 1, "", "head"], [288, 8, 1, "", "help"], [288, 8, 1, "", "ihave"], [288, 8, 1, "", "last"], [288, 8, 1, "", "list"], [288, 8, 1, "", "login"], [288, 8, 1, "", "newgroups"], [288, 8, 1, "", "newnews"], [288, 8, 1, "", "next"], [288, 7, 1, "", "nntp_implementation"], [288, 7, 1, "", "nntp_version"], [288, 8, 1, "", "over"], [288, 8, 1, "", "post"], [288, 8, 1, "", "quit"], [288, 8, 1, "", "set_debuglevel"], [288, 8, 1, "", "slave"], [288, 8, 1, "", "starttls"], [288, 8, 1, "", "stat"], [288, 8, 1, "", "xhdr"], [288, 8, 1, "", "xover"]], "nntplib.NNTPError": [[288, 7, 1, "", "response"]], "numbers": [[289, 11, 1, "", "Complex"], [289, 11, 1, "", "Integral"], [289, 11, 1, "", "Number"], [289, 11, 1, "", "Rational"], [289, 11, 1, "", "Real"]], "numbers.Complex": [[289, 8, 1, "", "conjugate"], [289, 7, 1, "", "imag"], [289, 7, 1, "", "real"]], "numbers.Rational": [[289, 7, 1, "", "denominator"], [289, 7, 1, "", "numerator"]], "object": [[428, 8, 1, "", "__abs__"], [428, 8, 1, "", "__add__"], [428, 8, 1, "", "__aenter__"], [428, 8, 1, "", "__aexit__"], [428, 8, 1, "", "__aiter__"], [428, 8, 1, "", "__and__"], [428, 8, 1, "", "__anext__"], [428, 8, 1, "", "__await__"], [428, 8, 1, "", "__bool__"], [428, 8, 1, "", "__buffer__"], [428, 8, 1, "", "__bytes__"], [428, 8, 1, "", "__call__"], [428, 8, 1, "", "__ceil__"], [428, 8, 1, "", "__class_getitem__"], [428, 8, 1, "", "__complex__"], [428, 8, 1, "", "__contains__"], [428, 8, 1, "", "__del__"], [428, 8, 1, "", "__delattr__"], [428, 8, 1, "", "__delete__"], [428, 8, 1, "", "__delitem__"], [344, 7, 1, "", "__dict__"], [428, 8, 1, "", "__dir__"], [428, 8, 1, "", "__divmod__"], [428, 8, 1, "", "__enter__"], [428, 8, 1, "", "__eq__"], [428, 8, 1, "", "__exit__"], [428, 8, 1, "", "__float__"], [428, 8, 1, "", "__floor__"], [428, 8, 1, "", "__floordiv__"], [428, 8, 1, "", "__format__"], [428, 8, 1, "", "__ge__"], [428, 8, 1, "", "__get__"], [428, 8, 1, "", "__getattr__"], [428, 8, 1, "", "__getattribute__"], [428, 8, 1, "", "__getitem__"], [299, 8, 1, "", "__getnewargs__"], [299, 8, 1, "", "__getnewargs_ex__"], [299, 8, 1, "", "__getstate__"], [428, 8, 1, "", "__gt__"], [428, 8, 1, "", "__hash__"], [428, 8, 1, "", "__iadd__"], [428, 8, 1, "", "__iand__"], [428, 8, 1, "", "__ifloordiv__"], [428, 8, 1, "", "__ilshift__"], [428, 8, 1, "", "__imatmul__"], [428, 8, 1, "", "__imod__"], [428, 8, 1, "", "__imul__"], [428, 8, 1, "", "__index__"], [428, 8, 1, "", "__init__"], [428, 8, 1, "", "__init_subclass__"], [428, 8, 1, "", "__int__"], [428, 8, 1, "", "__invert__"], [428, 8, 1, "", "__ior__"], [428, 8, 1, "", "__ipow__"], [428, 8, 1, "", "__irshift__"], [428, 8, 1, "", "__isub__"], [428, 8, 1, "", "__iter__"], [428, 8, 1, "", "__itruediv__"], [428, 8, 1, "", "__ixor__"], [428, 8, 1, "", "__le__"], [428, 8, 1, "", "__len__"], [428, 8, 1, "", "__length_hint__"], [428, 8, 1, "", "__lshift__"], [428, 8, 1, "", "__lt__"], [428, 9, 1, "", "__match_args__"], [428, 8, 1, "", "__matmul__"], [428, 8, 1, "", "__missing__"], [428, 8, 1, "", "__mod__"], [428, 8, 1, "", "__mro_entries__"], [428, 8, 1, "", "__mul__"], [428, 8, 1, "", "__ne__"], [428, 8, 1, "", "__neg__"], [428, 8, 1, "", "__new__"], [428, 7, 1, "", "__objclass__"], [428, 8, 1, "", "__or__"], [428, 8, 1, "", "__pos__"], [428, 8, 1, "", "__pow__"], [428, 8, 1, "", "__radd__"], [428, 8, 1, "", "__rand__"], [428, 8, 1, "", "__rdivmod__"], [299, 8, 1, "", "__reduce__"], [299, 8, 1, "", "__reduce_ex__"], [428, 8, 1, "", "__release_buffer__"], [428, 8, 1, "", "__repr__"], [428, 8, 1, "", "__reversed__"], [428, 8, 1, "", "__rfloordiv__"], [428, 8, 1, "", "__rlshift__"], [428, 8, 1, "", "__rmatmul__"], [428, 8, 1, "", "__rmod__"], [428, 8, 1, "", "__rmul__"], [428, 8, 1, "", "__ror__"], [428, 8, 1, "", "__round__"], [428, 8, 1, "", "__rpow__"], [428, 8, 1, "", "__rrshift__"], [428, 8, 1, "", "__rshift__"], [428, 8, 1, "", "__rsub__"], [428, 8, 1, "", "__rtruediv__"], [428, 8, 1, "", "__rxor__"], [428, 8, 1, "", "__set__"], [428, 8, 1, "", "__set_name__"], [428, 8, 1, "", "__setattr__"], [428, 8, 1, "", "__setitem__"], [299, 8, 1, "", "__setstate__"], [428, 9, 1, "", "__slots__"], [428, 8, 1, "", "__str__"], [428, 8, 1, "", "__sub__"], [428, 8, 1, "", "__truediv__"], [428, 8, 1, "", "__trunc__"], [428, 8, 1, "", "__xor__"]], "operator": [[291, 12, 1, "", "__abs__"], [291, 12, 1, "", "__add__"], [291, 12, 1, "", "__and__"], [291, 12, 1, "", "__call__"], [291, 12, 1, "", "__concat__"], [291, 12, 1, "", "__contains__"], [291, 12, 1, "", "__delitem__"], [291, 12, 1, "", "__eq__"], [291, 12, 1, "", "__floordiv__"], [291, 12, 1, "", "__ge__"], [291, 12, 1, "", "__getitem__"], [291, 12, 1, "", "__gt__"], [291, 12, 1, "", "__iadd__"], [291, 12, 1, "", "__iand__"], [291, 12, 1, "", "__iconcat__"], [291, 12, 1, "", "__ifloordiv__"], [291, 12, 1, "", "__ilshift__"], [291, 12, 1, "", "__imatmul__"], [291, 12, 1, "", "__imod__"], [291, 12, 1, "", "__imul__"], [291, 12, 1, "", "__index__"], [291, 12, 1, "", "__inv__"], [291, 12, 1, "", "__invert__"], [291, 12, 1, "", "__ior__"], [291, 12, 1, "", "__ipow__"], [291, 12, 1, "", "__irshift__"], [291, 12, 1, "", "__isub__"], [291, 12, 1, "", "__itruediv__"], [291, 12, 1, "", "__ixor__"], [291, 12, 1, "", "__le__"], [291, 12, 1, "", "__lshift__"], [291, 12, 1, "", "__lt__"], [291, 12, 1, "", "__matmul__"], [291, 12, 1, "", "__mod__"], [291, 12, 1, "", "__mul__"], [291, 12, 1, "", "__ne__"], [291, 12, 1, "", "__neg__"], [291, 12, 1, "", "__not__"], [291, 12, 1, "", "__or__"], [291, 12, 1, "", "__pos__"], [291, 12, 1, "", "__pow__"], [291, 12, 1, "", "__rshift__"], [291, 12, 1, "", "__setitem__"], [291, 12, 1, "", "__sub__"], [291, 12, 1, "", "__truediv__"], [291, 12, 1, "", "__xor__"], [291, 12, 1, "", "abs"], [291, 12, 1, "", "add"], [291, 12, 1, "", "and_"], [291, 12, 1, "", "attrgetter"], [291, 12, 1, "", "call"], [291, 12, 1, "", "concat"], [291, 12, 1, "", "contains"], [291, 12, 1, "", "countOf"], [291, 12, 1, "", "delitem"], [291, 12, 1, "", "eq"], [291, 12, 1, "", "floordiv"], [291, 12, 1, "", "ge"], [291, 12, 1, "", "getitem"], [291, 12, 1, "", "gt"], [291, 12, 1, "", "iadd"], [291, 12, 1, "", "iand"], [291, 12, 1, "", "iconcat"], [291, 12, 1, "", "ifloordiv"], [291, 12, 1, "", "ilshift"], [291, 12, 1, "", "imatmul"], [291, 12, 1, "", "imod"], [291, 12, 1, "", "imul"], [291, 12, 1, "", "index"], [291, 12, 1, "", "indexOf"], [291, 12, 1, "", "inv"], [291, 12, 1, "", "invert"], [291, 12, 1, "", "ior"], [291, 12, 1, "", "ipow"], [291, 12, 1, "", "irshift"], [291, 12, 1, "", "is_"], [291, 12, 1, "", "is_not"], [291, 12, 1, "", "isub"], [291, 12, 1, "", "itemgetter"], [291, 12, 1, "", "itruediv"], [291, 12, 1, "", "ixor"], [291, 12, 1, "", "le"], [291, 12, 1, "", "length_hint"], [291, 12, 1, "", "lshift"], [291, 12, 1, "", "lt"], [291, 12, 1, "", "matmul"], [291, 12, 1, "", "methodcaller"], [291, 12, 1, "", "mod"], [291, 12, 1, "", "mul"], [291, 12, 1, "", "ne"], [291, 12, 1, "", "neg"], [291, 12, 1, "", "not_"], [291, 12, 1, "", "or_"], [291, 12, 1, "", "pos"], [291, 12, 1, "", "pow"], [291, 12, 1, "", "rshift"], [291, 12, 1, "", "setitem"], [291, 12, 1, "", "sub"], [291, 12, 1, "", "truediv"], [291, 12, 1, "", "truth"], [291, 12, 1, "", "xor"]], "optparse": [[292, 6, 1, "", "AmbiguousOptionError"], [292, 6, 1, "", "BadOptionError"], [292, 11, 1, "", "Option"], [292, 6, 1, "", "OptionConflictError"], [292, 6, 1, "", "OptionError"], [292, 11, 1, "", "OptionGroup"], [292, 11, 1, "", "OptionParser"], [292, 6, 1, "", "OptionValueError"], [292, 11, 1, "", "Values"]], "optparse.Option": [[292, 7, 1, "", "ACTIONS"], [292, 7, 1, "", "ALWAYS_TYPED_ACTIONS"], [292, 7, 1, "", "STORE_ACTIONS"], [292, 7, 1, "", "TYPED_ACTIONS"], [292, 7, 1, "", "TYPES"], [292, 7, 1, "", "TYPE_CHECKER"], [292, 7, 1, "", "action"], [292, 7, 1, "", "callback"], [292, 7, 1, "", "callback_args"], [292, 7, 1, "", "callback_kwargs"], [292, 7, 1, "", "choices"], [292, 7, 1, "", "const"], [292, 7, 1, "", "default"], [292, 7, 1, "", "dest"], [292, 7, 1, "", "help"], [292, 7, 1, "", "metavar"], [292, 7, 1, "", "nargs"], [292, 7, 1, "", "type"]], "optparse.OptionParser": [[292, 8, 1, "", "add_option"], [292, 8, 1, "", "disable_interspersed_args"], [292, 8, 1, "", "enable_interspersed_args"], [292, 8, 1, "", "get_option"], [292, 8, 1, "", "get_option_group"], [292, 8, 1, "", "get_usage"], [292, 8, 1, "", "get_version"], [292, 8, 1, "", "has_option"], [292, 8, 1, "", "parse_args"], [292, 8, 1, "", "print_usage"], [292, 8, 1, "", "print_version"], [292, 8, 1, "", "remove_option"], [292, 8, 1, "", "set_defaults"], [292, 8, 1, "", "set_usage"]], "os": [[293, 9, 1, "", "CLD_CONTINUED"], [293, 9, 1, "", "CLD_DUMPED"], [293, 9, 1, "", "CLD_EXITED"], [293, 9, 1, "", "CLD_KILLED"], [293, 9, 1, "", "CLD_STOPPED"], [293, 9, 1, "", "CLD_TRAPPED"], [293, 9, 1, "", "CLONE_FILES"], [293, 9, 1, "", "CLONE_FS"], [293, 9, 1, "", "CLONE_NEWCGROUP"], [293, 9, 1, "", "CLONE_NEWIPC"], [293, 9, 1, "", "CLONE_NEWNET"], [293, 9, 1, "", "CLONE_NEWNS"], [293, 9, 1, "", "CLONE_NEWPID"], [293, 9, 1, "", "CLONE_NEWTIME"], [293, 9, 1, "", "CLONE_NEWUSER"], [293, 9, 1, "", "CLONE_NEWUTS"], [293, 9, 1, "", "CLONE_SIGHAND"], [293, 9, 1, "", "CLONE_SYSVSEM"], [293, 9, 1, "", "CLONE_THREAD"], [293, 9, 1, "", "CLONE_VM"], [293, 11, 1, "", "DirEntry"], [293, 9, 1, "", "EFD_CLOEXEC"], [293, 9, 1, "", "EFD_NONBLOCK"], [293, 9, 1, "", "EFD_SEMAPHORE"], [293, 9, 1, "", "EX_CANTCREAT"], [293, 9, 1, "", "EX_CONFIG"], [293, 9, 1, "", "EX_DATAERR"], [293, 9, 1, "", "EX_IOERR"], [293, 9, 1, "", "EX_NOHOST"], [293, 9, 1, "", "EX_NOINPUT"], [293, 9, 1, "", "EX_NOPERM"], [293, 9, 1, "", "EX_NOTFOUND"], [293, 9, 1, "", "EX_NOUSER"], [293, 9, 1, "", "EX_OK"], [293, 9, 1, "", "EX_OSERR"], [293, 9, 1, "", "EX_OSFILE"], [293, 9, 1, "", "EX_PROTOCOL"], [293, 9, 1, "", "EX_SOFTWARE"], [293, 9, 1, "", "EX_TEMPFAIL"], [293, 9, 1, "", "EX_UNAVAILABLE"], [293, 9, 1, "", "EX_USAGE"], [293, 9, 1, "", "F_LOCK"], [293, 9, 1, "", "F_OK"], [293, 9, 1, "", "F_TEST"], [293, 9, 1, "", "F_TLOCK"], [293, 9, 1, "", "F_ULOCK"], [293, 9, 1, "", "GRND_NONBLOCK"], [293, 9, 1, "", "GRND_RANDOM"], [293, 9, 1, "", "MFD_ALLOW_SEALING"], [293, 9, 1, "", "MFD_CLOEXEC"], [293, 9, 1, "", "MFD_HUGETLB"], [293, 9, 1, "", "MFD_HUGE_16GB"], [293, 9, 1, "", "MFD_HUGE_16MB"], [293, 9, 1, "", "MFD_HUGE_1GB"], [293, 9, 1, "", "MFD_HUGE_1MB"], [293, 9, 1, "", "MFD_HUGE_256MB"], [293, 9, 1, "", "MFD_HUGE_2GB"], [293, 9, 1, "", "MFD_HUGE_2MB"], [293, 9, 1, "", "MFD_HUGE_32MB"], [293, 9, 1, "", "MFD_HUGE_512KB"], [293, 9, 1, "", "MFD_HUGE_512MB"], [293, 9, 1, "", "MFD_HUGE_64KB"], [293, 9, 1, "", "MFD_HUGE_8MB"], [293, 9, 1, "", "MFD_HUGE_MASK"], [293, 9, 1, "", "MFD_HUGE_SHIFT"], [293, 9, 1, "", "O_APPEND"], [293, 9, 1, "", "O_ASYNC"], [293, 9, 1, "", "O_BINARY"], [293, 9, 1, "", "O_CLOEXEC"], [293, 9, 1, "", "O_CREAT"], [293, 9, 1, "", "O_DIRECT"], [293, 9, 1, "", "O_DIRECTORY"], [293, 9, 1, "", "O_DSYNC"], [293, 9, 1, "", "O_EVTONLY"], [293, 9, 1, "", "O_EXCL"], [293, 9, 1, "", "O_EXLOCK"], [293, 9, 1, "", "O_FSYNC"], [293, 9, 1, "", "O_NDELAY"], [293, 9, 1, "", "O_NOATIME"], [293, 9, 1, "", "O_NOCTTY"], [293, 9, 1, "", "O_NOFOLLOW"], [293, 9, 1, "", "O_NOFOLLOW_ANY"], [293, 9, 1, "", "O_NOINHERIT"], [293, 9, 1, "", "O_NONBLOCK"], [293, 9, 1, "", "O_PATH"], [293, 9, 1, "", "O_RANDOM"], [293, 9, 1, "", "O_RDONLY"], [293, 9, 1, "", "O_RDWR"], [293, 9, 1, "", "O_RSYNC"], [293, 9, 1, "", "O_SEQUENTIAL"], [293, 9, 1, "", "O_SHLOCK"], [293, 9, 1, "", "O_SHORT_LIVED"], [293, 9, 1, "", "O_SYMLINK"], [293, 9, 1, "", "O_SYNC"], [293, 9, 1, "", "O_TEMPORARY"], [293, 9, 1, "", "O_TEXT"], [293, 9, 1, "", "O_TMPFILE"], [293, 9, 1, "", "O_TRUNC"], [293, 9, 1, "", "O_WRONLY"], [293, 9, 1, "", "PIDFD_NONBLOCK"], [293, 9, 1, "", "POSIX_FADV_DONTNEED"], [293, 9, 1, "", "POSIX_FADV_NOREUSE"], [293, 9, 1, "", "POSIX_FADV_NORMAL"], [293, 9, 1, "", "POSIX_FADV_RANDOM"], [293, 9, 1, "", "POSIX_FADV_SEQUENTIAL"], [293, 9, 1, "", "POSIX_FADV_WILLNEED"], [293, 9, 1, "", "POSIX_SPAWN_CLOSE"], [293, 9, 1, "", "POSIX_SPAWN_DUP2"], [293, 9, 1, "", "POSIX_SPAWN_OPEN"], [293, 9, 1, "", "PRIO_DARWIN_BG"], [293, 9, 1, "", "PRIO_DARWIN_NONUI"], [293, 9, 1, "", "PRIO_DARWIN_PROCESS"], [293, 9, 1, "", "PRIO_DARWIN_THREAD"], [293, 9, 1, "", "PRIO_PGRP"], [293, 9, 1, "", "PRIO_PROCESS"], [293, 9, 1, "", "PRIO_USER"], [293, 9, 1, "", "P_ALL"], [293, 9, 1, "", "P_DETACH"], [293, 9, 1, "", "P_NOWAIT"], [293, 9, 1, "", "P_NOWAITO"], [293, 9, 1, "", "P_OVERLAY"], [293, 9, 1, "", "P_PGID"], [293, 9, 1, "", "P_PID"], [293, 9, 1, "", "P_PIDFD"], [293, 9, 1, "", "P_WAIT"], [293, 11, 1, "", "PathLike"], [293, 9, 1, "", "RTLD_DEEPBIND"], [293, 9, 1, "", "RTLD_GLOBAL"], [293, 9, 1, "", "RTLD_LAZY"], [293, 9, 1, "", "RTLD_LOCAL"], [293, 9, 1, "", "RTLD_NODELETE"], [293, 9, 1, "", "RTLD_NOLOAD"], [293, 9, 1, "", "RTLD_NOW"], [293, 9, 1, "", "RWF_APPEND"], [293, 9, 1, "", "RWF_DSYNC"], [293, 9, 1, "", "RWF_HIPRI"], [293, 9, 1, "", "RWF_NOWAIT"], [293, 9, 1, "", "RWF_SYNC"], [293, 9, 1, "", "R_OK"], [293, 9, 1, "", "SCHED_BATCH"], [293, 9, 1, "", "SCHED_FIFO"], [293, 9, 1, "", "SCHED_IDLE"], [293, 9, 1, "", "SCHED_OTHER"], [293, 9, 1, "", "SCHED_RESET_ON_FORK"], [293, 9, 1, "", "SCHED_RR"], [293, 9, 1, "", "SCHED_SPORADIC"], [293, 9, 1, "", "SEEK_CUR"], [293, 9, 1, "", "SEEK_DATA"], [293, 9, 1, "", "SEEK_END"], [293, 9, 1, "", "SEEK_HOLE"], [293, 9, 1, "", "SEEK_SET"], [293, 9, 1, "", "SF_MNOWAIT"], [293, 9, 1, "", "SF_NOCACHE"], [293, 9, 1, "", "SF_NODISKIO"], [293, 9, 1, "", "SF_SYNC"], [293, 9, 1, "", "SPLICE_F_MORE"], [293, 9, 1, "", "SPLICE_F_MOVE"], [293, 9, 1, "", "SPLICE_F_NONBLOCK"], [293, 9, 1, "", "WCONTINUED"], [293, 12, 1, "", "WCOREDUMP"], [293, 9, 1, "", "WEXITED"], [293, 12, 1, "", "WEXITSTATUS"], [293, 12, 1, "", "WIFCONTINUED"], [293, 12, 1, "", "WIFEXITED"], [293, 12, 1, "", "WIFSIGNALED"], [293, 12, 1, "", "WIFSTOPPED"], [293, 9, 1, "", "WNOHANG"], [293, 9, 1, "", "WNOWAIT"], [293, 9, 1, "", "WSTOPPED"], [293, 12, 1, "", "WSTOPSIG"], [293, 12, 1, "", "WTERMSIG"], [293, 9, 1, "", "WUNTRACED"], [293, 9, 1, "", "W_OK"], [293, 9, 1, "", "XATTR_CREATE"], [293, 9, 1, "", "XATTR_REPLACE"], [293, 9, 1, "", "XATTR_SIZE_MAX"], [293, 9, 1, "", "X_OK"], [293, 12, 1, "", "_exit"], [293, 12, 1, "", "abort"], [293, 12, 1, "", "access"], [293, 12, 1, "", "add_dll_directory"], [293, 9, 1, "", "altsep"], [293, 12, 1, "", "chdir"], [293, 12, 1, "", "chflags"], [293, 12, 1, "", "chmod"], [293, 12, 1, "", "chown"], [293, 12, 1, "", "chroot"], [293, 12, 1, "", "close"], [293, 12, 1, "", "closerange"], [293, 12, 1, "", "confstr"], [293, 9, 1, "", "confstr_names"], [293, 12, 1, "", "copy_file_range"], [293, 12, 1, "", "cpu_count"], [293, 12, 1, "", "ctermid"], [293, 9, 1, "", "curdir"], [293, 9, 1, "", "defpath"], [293, 12, 1, "", "device_encoding"], [293, 9, 1, "", "devnull"], [293, 12, 1, "", "dup"], [293, 12, 1, "", "dup2"], [293, 9, 1, "", "environ"], [293, 9, 1, "", "environb"], [293, 6, 1, "", "error"], [293, 12, 1, "", "eventfd"], [293, 12, 1, "", "eventfd_read"], [293, 12, 1, "", "eventfd_write"], [293, 12, 1, "", "execl"], [293, 12, 1, "", "execle"], [293, 12, 1, "", "execlp"], [293, 12, 1, "", "execlpe"], [293, 12, 1, "", "execv"], [293, 12, 1, "", "execve"], [293, 12, 1, "", "execvp"], [293, 12, 1, "", "execvpe"], [293, 9, 1, "", "extsep"], [293, 12, 1, "", "fchdir"], [293, 12, 1, "", "fchmod"], [293, 12, 1, "", "fchown"], [293, 12, 1, "", "fdatasync"], [293, 12, 1, "", "fdopen"], [293, 12, 1, "", "fork"], [293, 12, 1, "", "forkpty"], [293, 12, 1, "", "fpathconf"], [293, 12, 1, "", "fsdecode"], [293, 12, 1, "", "fsencode"], [293, 12, 1, "", "fspath"], [293, 12, 1, "", "fstat"], [293, 12, 1, "", "fstatvfs"], [293, 12, 1, "", "fsync"], [293, 12, 1, "", "ftruncate"], [293, 12, 1, "", "fwalk"], [293, 12, 1, "", "get_blocking"], [293, 12, 1, "", "get_exec_path"], [293, 12, 1, "", "get_handle_inheritable"], [293, 12, 1, "", "get_inheritable"], [293, 12, 1, "", "get_terminal_size"], [293, 12, 1, "", "getcwd"], [293, 12, 1, "", "getcwdb"], [293, 12, 1, "", "getegid"], [293, 12, 1, "", "getenv"], [293, 12, 1, "", "getenvb"], [293, 12, 1, "", "geteuid"], [293, 12, 1, "", "getgid"], [293, 12, 1, "", "getgrouplist"], [293, 12, 1, "", "getgroups"], [293, 12, 1, "", "getloadavg"], [293, 12, 1, "", "getlogin"], [293, 12, 1, "", "getpgid"], [293, 12, 1, "", "getpgrp"], [293, 12, 1, "", "getpid"], [293, 12, 1, "", "getppid"], [293, 12, 1, "", "getpriority"], [293, 12, 1, "", "getrandom"], [293, 12, 1, "", "getresgid"], [293, 12, 1, "", "getresuid"], [293, 12, 1, "", "getsid"], [293, 12, 1, "", "getuid"], [293, 12, 1, "", "getxattr"], [293, 12, 1, "", "initgroups"], [293, 12, 1, "", "isatty"], [293, 12, 1, "", "kill"], [293, 12, 1, "", "killpg"], [293, 12, 1, "", "lchflags"], [293, 12, 1, "", "lchmod"], [293, 12, 1, "", "lchown"], [293, 9, 1, "", "linesep"], [293, 12, 1, "", "link"], [293, 12, 1, "", "listdir"], [293, 12, 1, "", "listdrives"], [293, 12, 1, "", "listmounts"], [293, 12, 1, "", "listvolumes"], [293, 12, 1, "", "listxattr"], [293, 12, 1, "", "lockf"], [293, 12, 1, "", "login_tty"], [293, 12, 1, "", "lseek"], [293, 12, 1, "", "lstat"], [293, 12, 1, "", "major"], [293, 12, 1, "", "makedev"], [293, 12, 1, "", "makedirs"], [293, 12, 1, "", "memfd_create"], [293, 12, 1, "", "minor"], [293, 12, 1, "", "mkdir"], [293, 12, 1, "", "mkfifo"], [293, 12, 1, "", "mknod"], [293, 9, 1, "", "name"], [293, 12, 1, "", "nice"], [293, 12, 1, "", "open"], [293, 12, 1, "", "openpty"], [293, 9, 1, "", "pardir"], [294, 10, 0, "-", "path"], [293, 12, 1, "", "pathconf"], [293, 9, 1, "", "pathconf_names"], [293, 9, 1, "", "pathsep"], [293, 12, 1, "", "pidfd_open"], [293, 12, 1, "", "pipe"], [293, 12, 1, "", "pipe2"], [293, 12, 1, "", "plock"], [293, 12, 1, "", "popen"], [293, 12, 1, "", "posix_fadvise"], [293, 12, 1, "", "posix_fallocate"], [293, 12, 1, "", "posix_spawn"], [293, 12, 1, "", "posix_spawnp"], [293, 12, 1, "", "pread"], [293, 12, 1, "", "preadv"], [293, 12, 1, "", "putenv"], [293, 12, 1, "", "pwrite"], [293, 12, 1, "", "pwritev"], [293, 12, 1, "", "read"], [293, 12, 1, "", "readlink"], [293, 12, 1, "", "readv"], [293, 12, 1, "", "register_at_fork"], [293, 12, 1, "", "remove"], [293, 12, 1, "", "removedirs"], [293, 12, 1, "", "removexattr"], [293, 12, 1, "", "rename"], [293, 12, 1, "", "renames"], [293, 12, 1, "", "replace"], [293, 12, 1, "", "rmdir"], [293, 12, 1, "", "scandir"], [293, 12, 1, "", "sched_get_priority_max"], [293, 12, 1, "", "sched_get_priority_min"], [293, 12, 1, "", "sched_getaffinity"], [293, 12, 1, "", "sched_getparam"], [293, 12, 1, "", "sched_getscheduler"], [293, 11, 1, "", "sched_param"], [293, 12, 1, "", "sched_rr_get_interval"], [293, 12, 1, "", "sched_setaffinity"], [293, 12, 1, "", "sched_setparam"], [293, 12, 1, "", "sched_setscheduler"], [293, 12, 1, "", "sched_yield"], [293, 12, 1, "", "sendfile"], [293, 9, 1, "", "sep"], [293, 12, 1, "", "set_blocking"], [293, 12, 1, "", "set_handle_inheritable"], [293, 12, 1, "", "set_inheritable"], [293, 12, 1, "", "setegid"], [293, 12, 1, "", "seteuid"], [293, 12, 1, "", "setgid"], [293, 12, 1, "", "setgroups"], [293, 12, 1, "", "setns"], [293, 12, 1, "", "setpgid"], [293, 12, 1, "", "setpgrp"], [293, 12, 1, "", "setpriority"], [293, 12, 1, "", "setregid"], [293, 12, 1, "", "setresgid"], [293, 12, 1, "", "setresuid"], [293, 12, 1, "", "setreuid"], [293, 12, 1, "", "setsid"], [293, 12, 1, "", "setuid"], [293, 12, 1, "", "setxattr"], [293, 12, 1, "", "spawnl"], [293, 12, 1, "", "spawnle"], [293, 12, 1, "", "spawnlp"], [293, 12, 1, "", "spawnlpe"], [293, 12, 1, "", "spawnv"], [293, 12, 1, "", "spawnve"], [293, 12, 1, "", "spawnvp"], [293, 12, 1, "", "spawnvpe"], [293, 12, 1, "", "splice"], [293, 12, 1, "", "startfile"], [293, 12, 1, "", "stat"], [293, 11, 1, "", "stat_result"], [293, 12, 1, "", "statvfs"], [293, 12, 1, "", "strerror"], [293, 9, 1, "", "supports_bytes_environ"], [293, 9, 1, "", "supports_dir_fd"], [293, 9, 1, "", "supports_effective_ids"], [293, 9, 1, "", "supports_fd"], [293, 9, 1, "", "supports_follow_symlinks"], [293, 12, 1, "", "symlink"], [293, 12, 1, "", "sync"], [293, 12, 1, "", "sysconf"], [293, 9, 1, "", "sysconf_names"], [293, 12, 1, "", "system"], [293, 12, 1, "", "tcgetpgrp"], [293, 12, 1, "", "tcsetpgrp"], [293, 11, 1, "", "terminal_size"], [293, 12, 1, "", "times"], [293, 12, 1, "", "truncate"], [293, 12, 1, "", "ttyname"], [293, 12, 1, "", "umask"], [293, 12, 1, "", "uname"], [293, 12, 1, "", "unlink"], [293, 12, 1, "", "unsetenv"], [293, 12, 1, "", "unshare"], [293, 12, 1, "", "urandom"], [293, 12, 1, "", "utime"], [293, 12, 1, "", "wait"], [293, 12, 1, "", "wait3"], [293, 12, 1, "", "wait4"], [293, 12, 1, "", "waitid"], [293, 12, 1, "", "waitpid"], [293, 12, 1, "", "waitstatus_to_exitcode"], [293, 12, 1, "", "walk"], [293, 12, 1, "", "write"], [293, 12, 1, "", "writev"]], "os.DirEntry": [[293, 8, 1, "", "inode"], [293, 8, 1, "", "is_dir"], [293, 8, 1, "", "is_file"], [293, 8, 1, "", "is_junction"], [293, 8, 1, "", "is_symlink"], [293, 7, 1, "", "name"], [293, 7, 1, "", "path"], [293, 8, 1, "", "stat"]], "os.PathLike": [[293, 8, 1, "", "__fspath__"]], "os.path": [[294, 12, 1, "", "abspath"], [294, 12, 1, "", "basename"], [294, 12, 1, "", "commonpath"], [294, 12, 1, "", "commonprefix"], [294, 12, 1, "", "dirname"], [294, 12, 1, "", "exists"], [294, 12, 1, "", "expanduser"], [294, 12, 1, "", "expandvars"], [294, 12, 1, "", "getatime"], [294, 12, 1, "", "getctime"], [294, 12, 1, "", "getmtime"], [294, 12, 1, "", "getsize"], [294, 12, 1, "", "isabs"], [294, 12, 1, "", "isdevdrive"], [294, 12, 1, "", "isdir"], [294, 12, 1, "", "isfile"], [294, 12, 1, "", "isjunction"], [294, 12, 1, "", "islink"], [294, 12, 1, "", "ismount"], [294, 12, 1, "", "join"], [294, 12, 1, "", "lexists"], [294, 12, 1, "", "normcase"], [294, 12, 1, "", "normpath"], [294, 12, 1, "", "realpath"], [294, 12, 1, "", "relpath"], [294, 12, 1, "", "samefile"], [294, 12, 1, "", "sameopenfile"], [294, 12, 1, "", "samestat"], [294, 12, 1, "", "split"], [294, 12, 1, "", "splitdrive"], [294, 12, 1, "", "splitext"], [294, 12, 1, "", "splitroot"], [294, 9, 1, "", "supports_unicode_filenames"]], "os.scandir": [[293, 8, 1, "", "close"]], "os.sched_param": [[293, 7, 1, "", "sched_priority"]], "os.stat_result": [[293, 7, 1, "", "st_atime"], [293, 7, 1, "", "st_atime_ns"], [293, 7, 1, "", "st_birthtime"], [293, 7, 1, "", "st_birthtime_ns"], [293, 7, 1, "", "st_blksize"], [293, 7, 1, "", "st_blocks"], [293, 7, 1, "", "st_creator"], [293, 7, 1, "", "st_ctime"], [293, 7, 1, "", "st_ctime_ns"], [293, 7, 1, "", "st_dev"], [293, 7, 1, "", "st_file_attributes"], [293, 7, 1, "", "st_flags"], [293, 7, 1, "", "st_fstype"], [293, 7, 1, "", "st_gen"], [293, 7, 1, "", "st_gid"], [293, 7, 1, "", "st_ino"], [293, 7, 1, "", "st_mode"], [293, 7, 1, "", "st_mtime"], [293, 7, 1, "", "st_mtime_ns"], [293, 7, 1, "", "st_nlink"], [293, 7, 1, "", "st_rdev"], [293, 7, 1, "", "st_reparse_tag"], [293, 7, 1, "", "st_rsize"], [293, 7, 1, "", "st_size"], [293, 7, 1, "", "st_type"], [293, 7, 1, "", "st_uid"]], "os.terminal_size": [[293, 7, 1, "", "columns"], [293, 7, 1, "", "lines"]], "ossaudiodev": [[295, 6, 1, "", "OSSAudioError"], [295, 12, 1, "", "open"], [295, 12, 1, "", "openmixer"]], "ossaudiodev.oss_audio_device": [[295, 8, 1, "", "bufsize"], [295, 8, 1, "", "channels"], [295, 8, 1, "", "close"], [295, 7, 1, "", "closed"], [295, 8, 1, "", "fileno"], [295, 8, 1, "", "getfmts"], [295, 7, 1, "", "mode"], [295, 7, 1, "", "name"], [295, 8, 1, "", "nonblock"], [295, 8, 1, "", "obufcount"], [295, 8, 1, "", "obuffree"], [295, 8, 1, "", "post"], [295, 8, 1, "", "read"], [295, 8, 1, "", "reset"], [295, 8, 1, "", "setfmt"], [295, 8, 1, "", "setparameters"], [295, 8, 1, "", "speed"], [295, 8, 1, "", "sync"], [295, 8, 1, "", "write"], [295, 8, 1, "", "writeall"]], "ossaudiodev.oss_mixer_device": [[295, 8, 1, "", "close"], [295, 8, 1, "", "controls"], [295, 8, 1, "", "fileno"], [295, 8, 1, "", "get"], [295, 8, 1, "", "get_recsrc"], [295, 8, 1, "", "reccontrols"], [295, 8, 1, "", "set"], [295, 8, 1, "", "set_recsrc"], [295, 8, 1, "", "stereocontrols"]], "pathlib": [[296, 11, 1, "", "Path"], [296, 11, 1, "", "PosixPath"], [296, 11, 1, "", "PurePath"], [296, 11, 1, "", "PurePosixPath"], [296, 11, 1, "", "PureWindowsPath"], [296, 11, 1, "", "WindowsPath"]], "pathlib.Path": [[296, 8, 1, "", "absolute"], [296, 8, 1, "", "chmod"], [296, 8, 1, "", "cwd"], [296, 8, 1, "", "exists"], [296, 8, 1, "", "expanduser"], [296, 8, 1, "", "glob"], [296, 8, 1, "", "group"], [296, 8, 1, "", "hardlink_to"], [296, 8, 1, "", "home"], [296, 8, 1, "", "is_block_device"], [296, 8, 1, "", "is_char_device"], [296, 8, 1, "", "is_dir"], [296, 8, 1, "", "is_fifo"], [296, 8, 1, "", "is_file"], [296, 8, 1, "", "is_junction"], [296, 8, 1, "", "is_mount"], [296, 8, 1, "", "is_socket"], [296, 8, 1, "", "is_symlink"], [296, 8, 1, "", "iterdir"], [296, 8, 1, "", "lchmod"], [296, 8, 1, "", "lstat"], [296, 8, 1, "", "mkdir"], [296, 8, 1, "", "open"], [296, 8, 1, "", "owner"], [296, 8, 1, "", "read_bytes"], [296, 8, 1, "", "read_text"], [296, 8, 1, "", "readlink"], [296, 8, 1, "", "rename"], [296, 8, 1, "", "replace"], [296, 8, 1, "", "resolve"], [296, 8, 1, "", "rglob"], [296, 8, 1, "", "rmdir"], [296, 8, 1, "", "samefile"], [296, 8, 1, "", "stat"], [296, 8, 1, "", "symlink_to"], [296, 8, 1, "", "touch"], [296, 8, 1, "", "unlink"], [296, 8, 1, "", "walk"], [296, 8, 1, "", "write_bytes"], [296, 8, 1, "", "write_text"]], "pathlib.PurePath": [[296, 7, 1, "", "anchor"], [296, 8, 1, "", "as_posix"], [296, 8, 1, "", "as_uri"], [296, 7, 1, "", "drive"], [296, 8, 1, "", "is_absolute"], [296, 8, 1, "", "is_relative_to"], [296, 8, 1, "", "is_reserved"], [296, 8, 1, "", "joinpath"], [296, 8, 1, "", "match"], [296, 7, 1, "", "name"], [296, 7, 1, "", "parent"], [296, 7, 1, "", "parents"], [296, 7, 1, "", "parts"], [296, 8, 1, "", "relative_to"], [296, 7, 1, "", "root"], [296, 7, 1, "", "stem"], [296, 7, 1, "", "suffix"], [296, 7, 1, "", "suffixes"], [296, 8, 1, "", "with_name"], [296, 8, 1, "", "with_segments"], [296, 8, 1, "", "with_stem"], [296, 8, 1, "", "with_suffix"]], "pdb": [[297, 11, 1, "", "Pdb"], [297, 12, 1, "", "pm"], [297, 12, 1, "", "post_mortem"], [297, 12, 1, "", "run"], [297, 12, 1, "", "runcall"], [297, 12, 1, "", "runeval"], [297, 12, 1, "", "set_trace"]], "pdb.Pdb": [[297, 8, 1, "", "run"], [297, 8, 1, "", "runcall"], [297, 8, 1, "", "runeval"], [297, 8, 1, "", "set_trace"]], "pickle": [[299, 9, 1, "", "DEFAULT_PROTOCOL"], [299, 9, 1, "", "HIGHEST_PROTOCOL"], [299, 11, 1, "", "PickleBuffer"], [299, 6, 1, "", "PickleError"], [299, 11, 1, "", "Pickler"], [299, 6, 1, "", "PicklingError"], [299, 11, 1, "", "Unpickler"], [299, 6, 1, "", "UnpicklingError"], [299, 12, 1, "", "dump"], [299, 12, 1, "", "dumps"], [299, 12, 1, "", "load"], [299, 12, 1, "", "loads"]], "pickle.PickleBuffer": [[299, 8, 1, "", "raw"], [299, 8, 1, "", "release"]], "pickle.Pickler": [[299, 7, 1, "", "dispatch_table"], [299, 8, 1, "", "dump"], [299, 7, 1, "", "fast"], [299, 8, 1, "", "persistent_id"], [299, 8, 1, "", "reducer_override"]], "pickle.Unpickler": [[299, 8, 1, "", "find_class"], [299, 8, 1, "", "load"], [299, 8, 1, "", "persistent_load"]], "pickletools": [[300, 12, 1, "", "dis"], [300, 12, 1, "", "genops"], [300, 12, 1, "", "optimize"], [300, 14, 1, "cmdoption-pickletools-a", "--annotate"], [300, 14, 1, "cmdoption-pickletools-l", "--indentlevel"], [300, 14, 1, "cmdoption-pickletools-m", "--memo"], [300, 14, 1, "cmdoption-pickletools-o", "--output"], [300, 14, 1, "cmdoption-pickletools-p", "--preamble"], [300, 14, 1, "cmdoption-pickletools-a", "-a"], [300, 14, 1, "cmdoption-pickletools-l", "-l"], [300, 14, 1, "cmdoption-pickletools-m", "-m"], [300, 14, 1, "cmdoption-pickletools-o", "-o"], [300, 14, 1, "cmdoption-pickletools-p", "-p"]], "pipes": [[301, 11, 1, "", "Template"]], "pipes.Template": [[301, 8, 1, "", "append"], [301, 8, 1, "", "clone"], [301, 8, 1, "", "copy"], [301, 8, 1, "", "debug"], [301, 8, 1, "", "open"], [301, 8, 1, "", "prepend"], [301, 8, 1, "", "reset"]], "pkgutil": [[302, 11, 1, "", "ModuleInfo"], [302, 12, 1, "", "extend_path"], [302, 12, 1, "", "find_loader"], [302, 12, 1, "", "get_data"], [302, 12, 1, "", "get_importer"], [302, 12, 1, "", "get_loader"], [302, 12, 1, "", "iter_importers"], [302, 12, 1, "", "iter_modules"], [302, 12, 1, "", "resolve_name"], [302, 12, 1, "", "walk_packages"]], "platform": [[303, 12, 1, "", "architecture"], [303, 12, 1, "", "freedesktop_os_release"], [303, 12, 1, "", "java_ver"], [303, 12, 1, "", "libc_ver"], [303, 12, 1, "", "mac_ver"], [303, 12, 1, "", "machine"], [303, 12, 1, "", "node"], [303, 12, 1, "", "platform"], [303, 12, 1, "", "processor"], [303, 12, 1, "", "python_branch"], [303, 12, 1, "", "python_build"], [303, 12, 1, "", "python_compiler"], [303, 12, 1, "", "python_implementation"], [303, 12, 1, "", "python_revision"], [303, 12, 1, "", "python_version"], [303, 12, 1, "", "python_version_tuple"], [303, 12, 1, "", "release"], [303, 12, 1, "", "system"], [303, 12, 1, "", "system_alias"], [303, 12, 1, "", "uname"], [303, 12, 1, "", "version"], [303, 12, 1, "", "win32_edition"], [303, 12, 1, "", "win32_is_iot"], [303, 12, 1, "", "win32_ver"]], "plistlib": [[304, 9, 1, "", "FMT_BINARY"], [304, 9, 1, "", "FMT_XML"], [304, 11, 1, "", "UID"], [304, 12, 1, "", "dump"], [304, 12, 1, "", "dumps"], [304, 12, 1, "", "load"], [304, 12, 1, "", "loads"]], "poplib": [[305, 11, 1, "", "POP3"], [305, 11, 1, "", "POP3_SSL"], [305, 6, 1, "", "error_proto"]], "poplib.POP3": [[305, 8, 1, "", "apop"], [305, 8, 1, "", "capa"], [305, 8, 1, "", "dele"], [305, 8, 1, "", "getwelcome"], [305, 8, 1, "", "list"], [305, 8, 1, "", "noop"], [305, 8, 1, "", "pass_"], [305, 8, 1, "", "quit"], [305, 8, 1, "", "retr"], [305, 8, 1, "", "rpop"], [305, 8, 1, "", "rset"], [305, 8, 1, "", "set_debuglevel"], [305, 8, 1, "", "stat"], [305, 8, 1, "", "stls"], [305, 8, 1, "", "top"], [305, 8, 1, "", "uidl"], [305, 8, 1, "", "user"], [305, 8, 1, "", "utf8"]], "posix": [[306, 9, 1, "", "environ"]], "pprint": [[307, 11, 1, "", "PrettyPrinter"], [307, 12, 1, "", "isreadable"], [307, 12, 1, "", "isrecursive"], [307, 12, 1, "", "pformat"], [307, 12, 1, "", "pp"], [307, 12, 1, "", "pprint"], [307, 12, 1, "", "saferepr"]], "pprint.PrettyPrinter": [[307, 8, 1, "", "format"], [307, 8, 1, "", "isreadable"], [307, 8, 1, "", "isrecursive"], [307, 8, 1, "", "pformat"], [307, 8, 1, "", "pprint"]], "profile": [[308, 11, 1, "", "Profile"], [308, 12, 1, "", "run"], [308, 12, 1, "", "runctx"]], "profile.Profile": [[308, 8, 1, "", "create_stats"], [308, 8, 1, "", "disable"], [308, 8, 1, "", "dump_stats"], [308, 8, 1, "", "enable"], [308, 8, 1, "", "print_stats"], [308, 8, 1, "", "run"], [308, 8, 1, "", "runcall"], [308, 8, 1, "", "runctx"]], "property": [[225, 12, 1, "", "deleter"], [225, 12, 1, "", "getter"], [225, 12, 1, "", "setter"]], "pstats": [[308, 11, 1, "", "Stats"]], "pstats.Stats": [[308, 8, 1, "", "add"], [308, 8, 1, "", "dump_stats"], [308, 8, 1, "", "get_stats_profile"], [308, 8, 1, "", "print_callees"], [308, 8, 1, "", "print_callers"], [308, 8, 1, "", "print_stats"], [308, 8, 1, "", "reverse_order"], [308, 8, 1, "", "sort_stats"], [308, 8, 1, "", "strip_dirs"]], "pty": [[309, 12, 1, "", "fork"], [309, 12, 1, "", "openpty"], [309, 12, 1, "", "spawn"]], "pwd": [[310, 12, 1, "", "getpwall"], [310, 12, 1, "", "getpwnam"], [310, 12, 1, "", "getpwuid"]], "py_compile": [[311, 6, 1, "", "PyCompileError"], [311, 11, 1, "", "PycInvalidationMode"], [311, 12, 1, "", "compile"]], "py_compile.PycInvalidationMode": [[311, 7, 1, "", "CHECKED_HASH"], [311, 7, 1, "", "TIMESTAMP"], [311, 7, 1, "", "UNCHECKED_HASH"]], "pyclbr": [[312, 11, 1, "", "Class"], [312, 11, 1, "", "Function"], [312, 12, 1, "", "readmodule"], [312, 12, 1, "", "readmodule_ex"]], "pyclbr.Class": [[312, 7, 1, "", "children"], [312, 7, 1, "", "file"], [312, 7, 1, "", "lineno"], [312, 7, 1, "", "methods"], [312, 7, 1, "", "module"], [312, 7, 1, "", "name"], [312, 7, 1, "", "parent"], [312, 7, 1, "", "super"]], "pyclbr.Function": [[312, 7, 1, "", "children"], [312, 7, 1, "", "file"], [312, 7, 1, "", "is_async"], [312, 7, 1, "", "lineno"], [312, 7, 1, "", "module"], [312, 7, 1, "", "name"], [312, 7, 1, "", "parent"]], "python--m-py_compile": [[311, 14, 1, "cmdoption-python-m-py_compile", "-"], [311, 14, 1, "cmdoption-python-m-py_compile-q", "--quiet"], [311, 14, 1, "cmdoption-python-m-py_compile-q", "-q"], [311, 14, 1, "cmdoption-python-m-py_compile-arg-file", "<file>"]], "python--m-sqlite3-[-h]-[-v]-[filename]-[sql]": [[340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", "--help"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", "--version"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-h", "-h"], [340, 14, 1, "cmdoption-python-m-sqlite3-h-v-filename-sql-v", "-v"]], "queue": [[316, 6, 1, "", "Empty"], [316, 6, 1, "", "Full"], [316, 11, 1, "", "LifoQueue"], [316, 11, 1, "", "PriorityQueue"], [316, 11, 1, "", "Queue"], [316, 11, 1, "", "SimpleQueue"]], "queue.Queue": [[316, 8, 1, "", "empty"], [316, 8, 1, "", "full"], [316, 8, 1, "", "get"], [316, 8, 1, "", "get_nowait"], [316, 8, 1, "", "join"], [316, 8, 1, "", "put"], [316, 8, 1, "", "put_nowait"], [316, 8, 1, "", "qsize"], [316, 8, 1, "", "task_done"]], "queue.SimpleQueue": [[316, 8, 1, "", "empty"], [316, 8, 1, "", "get"], [316, 8, 1, "", "get_nowait"], [316, 8, 1, "", "put"], [316, 8, 1, "", "put_nowait"], [316, 8, 1, "", "qsize"]], "quopri": [[317, 12, 1, "", "decode"], [317, 12, 1, "", "decodestring"], [317, 12, 1, "", "encode"], [317, 12, 1, "", "encodestring"]], "random": [[318, 11, 1, "", "Random"], [318, 11, 1, "", "SystemRandom"], [318, 12, 1, "", "betavariate"], [318, 12, 1, "", "binomialvariate"], [318, 12, 1, "", "choice"], [318, 12, 1, "", "choices"], [318, 12, 1, "", "expovariate"], [318, 12, 1, "", "gammavariate"], [318, 12, 1, "", "gauss"], [318, 12, 1, "", "getrandbits"], [318, 12, 1, "", "getstate"], [318, 12, 1, "", "lognormvariate"], [318, 12, 1, "", "normalvariate"], [318, 12, 1, "", "paretovariate"], [318, 12, 1, "", "randbytes"], [318, 12, 1, "", "randint"], [318, 12, 1, "", "random"], [318, 12, 1, "", "randrange"], [318, 12, 1, "", "sample"], [318, 12, 1, "", "seed"], [318, 12, 1, "", "setstate"], [318, 12, 1, "", "shuffle"], [318, 12, 1, "", "triangular"], [318, 12, 1, "", "uniform"], [318, 12, 1, "", "vonmisesvariate"], [318, 12, 1, "", "weibullvariate"]], "random.Random": [[318, 8, 1, "", "getrandbits"], [318, 8, 1, "", "getstate"], [318, 8, 1, "", "random"], [318, 8, 1, "", "seed"], [318, 8, 1, "", "setstate"]], "range": [[344, 7, 1, "", "start"], [344, 7, 1, "", "step"], [344, 7, 1, "", "stop"]], "re": [[319, 9, 1, "", "A"], [319, 9, 1, "", "ASCII"], [319, 9, 1, "", "DEBUG"], [319, 9, 1, "", "DOTALL"], [319, 9, 1, "", "I"], [319, 9, 1, "", "IGNORECASE"], [319, 9, 1, "", "L"], [319, 9, 1, "", "LOCALE"], [319, 9, 1, "", "M"], [319, 9, 1, "", "MULTILINE"], [319, 11, 1, "", "Match"], [319, 9, 1, "", "NOFLAG"], [319, 11, 1, "", "Pattern"], [319, 11, 1, "", "RegexFlag"], [319, 9, 1, "", "S"], [319, 9, 1, "", "U"], [319, 9, 1, "", "UNICODE"], [319, 9, 1, "", "VERBOSE"], [319, 9, 1, "", "X"], [319, 12, 1, "", "compile"], [319, 6, 1, "", "error"], [319, 12, 1, "", "escape"], [319, 12, 1, "", "findall"], [319, 12, 1, "", "finditer"], [319, 12, 1, "", "fullmatch"], [319, 12, 1, "", "match"], [319, 12, 1, "", "purge"], [319, 12, 1, "", "search"], [319, 12, 1, "", "split"], [319, 12, 1, "", "sub"], [319, 12, 1, "", "subn"]], "re.Match": [[319, 8, 1, "", "__getitem__"], [319, 8, 1, "", "end"], [319, 7, 1, "", "endpos"], [319, 8, 1, "", "expand"], [319, 8, 1, "", "group"], [319, 8, 1, "", "groupdict"], [319, 8, 1, "", "groups"], [319, 7, 1, "", "lastgroup"], [319, 7, 1, "", "lastindex"], [319, 7, 1, "", "pos"], [319, 7, 1, "", "re"], [319, 8, 1, "", "span"], [319, 8, 1, "", "start"], [319, 7, 1, "", "string"]], "re.Pattern": [[319, 8, 1, "", "findall"], [319, 8, 1, "", "finditer"], [319, 7, 1, "", "flags"], [319, 8, 1, "", "fullmatch"], [319, 7, 1, "", "groupindex"], [319, 7, 1, "", "groups"], [319, 8, 1, "", "match"], [319, 7, 1, "", "pattern"], [319, 8, 1, "", "search"], [319, 8, 1, "", "split"], [319, 8, 1, "", "sub"], [319, 8, 1, "", "subn"]], "re.error": [[319, 7, 1, "", "colno"], [319, 7, 1, "", "lineno"], [319, 7, 1, "", "msg"], [319, 7, 1, "", "pattern"], [319, 7, 1, "", "pos"]], "readline": [[320, 12, 1, "", "add_history"], [320, 12, 1, "", "append_history_file"], [320, 12, 1, "", "clear_history"], [320, 12, 1, "", "get_begidx"], [320, 12, 1, "", "get_completer"], [320, 12, 1, "", "get_completer_delims"], [320, 12, 1, "", "get_completion_type"], [320, 12, 1, "", "get_current_history_length"], [320, 12, 1, "", "get_endidx"], [320, 12, 1, "", "get_history_item"], [320, 12, 1, "", "get_history_length"], [320, 12, 1, "", "get_line_buffer"], [320, 12, 1, "", "insert_text"], [320, 12, 1, "", "parse_and_bind"], [320, 12, 1, "", "read_history_file"], [320, 12, 1, "", "read_init_file"], [320, 12, 1, "", "redisplay"], [320, 12, 1, "", "remove_history_item"], [320, 12, 1, "", "replace_history_item"], [320, 12, 1, "", "set_auto_history"], [320, 12, 1, "", "set_completer"], [320, 12, 1, "", "set_completer_delims"], [320, 12, 1, "", "set_completion_display_matches_hook"], [320, 12, 1, "", "set_history_length"], [320, 12, 1, "", "set_pre_input_hook"], [320, 12, 1, "", "set_startup_hook"], [320, 12, 1, "", "write_history_file"]], "reprlib": [[321, 11, 1, "", "Repr"], [321, 9, 1, "", "aRepr"], [321, 12, 1, "", "recursive_repr"], [321, 12, 1, "", "repr"]], "reprlib.Repr": [[321, 7, 1, "", "fillvalue"], [321, 7, 1, "", "indent"], [321, 7, 1, "", "maxarray"], [321, 7, 1, "", "maxdeque"], [321, 7, 1, "", "maxdict"], [321, 7, 1, "", "maxfrozenset"], [321, 7, 1, "", "maxlevel"], [321, 7, 1, "", "maxlist"], [321, 7, 1, "", "maxlong"], [321, 7, 1, "", "maxother"], [321, 7, 1, "", "maxset"], [321, 7, 1, "", "maxstring"], [321, 7, 1, "", "maxtuple"], [321, 8, 1, "", "repr"], [321, 8, 1, "", "repr1"]], "resource": [[322, 9, 1, "", "RLIMIT_AS"], [322, 9, 1, "", "RLIMIT_CORE"], [322, 9, 1, "", "RLIMIT_CPU"], [322, 9, 1, "", "RLIMIT_DATA"], [322, 9, 1, "", "RLIMIT_FSIZE"], [322, 9, 1, "", "RLIMIT_KQUEUES"], [322, 9, 1, "", "RLIMIT_MEMLOCK"], [322, 9, 1, "", "RLIMIT_MSGQUEUE"], [322, 9, 1, "", "RLIMIT_NICE"], [322, 9, 1, "", "RLIMIT_NOFILE"], [322, 9, 1, "", "RLIMIT_NPROC"], [322, 9, 1, "", "RLIMIT_NPTS"], [322, 9, 1, "", "RLIMIT_OFILE"], [322, 9, 1, "", "RLIMIT_RSS"], [322, 9, 1, "", "RLIMIT_RTPRIO"], [322, 9, 1, "", "RLIMIT_RTTIME"], [322, 9, 1, "", "RLIMIT_SBSIZE"], [322, 9, 1, "", "RLIMIT_SIGPENDING"], [322, 9, 1, "", "RLIMIT_STACK"], [322, 9, 1, "", "RLIMIT_SWAP"], [322, 9, 1, "", "RLIMIT_VMEM"], [322, 9, 1, "", "RLIM_INFINITY"], [322, 9, 1, "", "RUSAGE_BOTH"], [322, 9, 1, "", "RUSAGE_CHILDREN"], [322, 9, 1, "", "RUSAGE_SELF"], [322, 9, 1, "", "RUSAGE_THREAD"], [322, 6, 1, "", "error"], [322, 12, 1, "", "getpagesize"], [322, 12, 1, "", "getrlimit"], [322, 12, 1, "", "getrusage"], [322, 12, 1, "", "prlimit"], [322, 12, 1, "", "setrlimit"]], "rlcompleter": [[323, 11, 1, "", "Completer"]], "rlcompleter.Completer": [[323, 8, 1, "", "complete"]], "runpy": [[324, 12, 1, "", "run_module"], [324, 12, 1, "", "run_path"]], "sched": [[325, 11, 1, "", "scheduler"]], "sched.scheduler": [[325, 8, 1, "", "cancel"], [325, 8, 1, "", "empty"], [325, 8, 1, "", "enter"], [325, 8, 1, "", "enterabs"], [325, 7, 1, "", "queue"], [325, 8, 1, "", "run"]], "secrets": [[326, 11, 1, "", "SystemRandom"], [326, 12, 1, "", "choice"], [326, 12, 1, "", "compare_digest"], [326, 12, 1, "", "randbelow"], [326, 12, 1, "", "randbits"], [326, 12, 1, "", "token_bytes"], [326, 12, 1, "", "token_hex"], [326, 12, 1, "", "token_urlsafe"]], "select": [[328, 7, 1, "", "PIPE_BUF"], [328, 12, 1, "", "devpoll"], [328, 12, 1, "", "epoll"], [328, 6, 1, "", "error"], [328, 12, 1, "", "kevent"], [328, 12, 1, "", "kqueue"], [328, 12, 1, "", "poll"], [328, 12, 1, "", "select"]], "select.devpoll": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "select.epoll": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "fromfd"], [328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "select.kevent": [[328, 7, 1, "", "data"], [328, 7, 1, "", "fflags"], [328, 7, 1, "", "filter"], [328, 7, 1, "", "flags"], [328, 7, 1, "", "ident"], [328, 7, 1, "", "udata"]], "select.kqueue": [[328, 8, 1, "", "close"], [328, 7, 1, "", "closed"], [328, 8, 1, "", "control"], [328, 8, 1, "", "fileno"], [328, 8, 1, "", "fromfd"]], "select.poll": [[328, 8, 1, "", "modify"], [328, 8, 1, "", "poll"], [328, 8, 1, "", "register"], [328, 8, 1, "", "unregister"]], "selectors": [[329, 11, 1, "", "BaseSelector"], [329, 11, 1, "", "DefaultSelector"], [329, 11, 1, "", "DevpollSelector"], [329, 9, 1, "", "EVENT_READ"], [329, 9, 1, "", "EVENT_WRITE"], [329, 11, 1, "", "EpollSelector"], [329, 11, 1, "", "KqueueSelector"], [329, 11, 1, "", "PollSelector"], [329, 11, 1, "", "SelectSelector"], [329, 11, 1, "", "SelectorKey"]], "selectors.BaseSelector": [[329, 8, 1, "", "close"], [329, 8, 1, "", "get_key"], [329, 8, 1, "", "get_map"], [329, 8, 1, "", "modify"], [329, 8, 1, "", "register"], [329, 8, 1, "", "select"], [329, 8, 1, "", "unregister"]], "selectors.DevpollSelector": [[329, 8, 1, "", "fileno"]], "selectors.EpollSelector": [[329, 8, 1, "", "fileno"]], "selectors.KqueueSelector": [[329, 8, 1, "", "fileno"]], "selectors.SelectorKey": [[329, 7, 1, "", "data"], [329, 7, 1, "", "events"], [329, 7, 1, "", "fd"], [329, 7, 1, "", "fileobj"]], "shelve": [[330, 11, 1, "", "BsdDbShelf"], [330, 11, 1, "", "DbfilenameShelf"], [330, 11, 1, "", "Shelf"], [330, 12, 1, "", "open"]], "shelve.Shelf": [[330, 8, 1, "", "close"], [330, 8, 1, "", "sync"]], "shlex": [[331, 12, 1, "", "join"], [331, 12, 1, "", "quote"], [331, 11, 1, "", "shlex"], [331, 12, 1, "", "split"]], "shlex.shlex": [[331, 7, 1, "", "commenters"], [331, 7, 1, "", "debug"], [331, 7, 1, "", "eof"], [331, 8, 1, "", "error_leader"], [331, 7, 1, "", "escape"], [331, 7, 1, "", "escapedquotes"], [331, 8, 1, "", "get_token"], [331, 7, 1, "", "infile"], [331, 7, 1, "", "instream"], [331, 7, 1, "", "lineno"], [331, 8, 1, "", "pop_source"], [331, 7, 1, "", "punctuation_chars"], [331, 8, 1, "", "push_source"], [331, 8, 1, "", "push_token"], [331, 7, 1, "", "quotes"], [331, 8, 1, "", "read_token"], [331, 7, 1, "", "source"], [331, 8, 1, "", "sourcehook"], [331, 7, 1, "", "token"], [331, 7, 1, "", "whitespace"], [331, 7, 1, "", "whitespace_split"], [331, 7, 1, "", "wordchars"]], "shutil": [[332, 6, 1, "", "Error"], [332, 6, 1, "", "SameFileError"], [332, 12, 1, "", "chown"], [332, 12, 1, "", "copy"], [332, 12, 1, "", "copy2"], [332, 12, 1, "", "copyfile"], [332, 12, 1, "", "copyfileobj"], [332, 12, 1, "", "copymode"], [332, 12, 1, "", "copystat"], [332, 12, 1, "", "copytree"], [332, 12, 1, "", "disk_usage"], [332, 12, 1, "", "get_archive_formats"], [332, 12, 1, "", "get_terminal_size"], [332, 12, 1, "", "get_unpack_formats"], [332, 12, 1, "", "ignore_patterns"], [332, 12, 1, "", "make_archive"], [332, 12, 1, "", "move"], [332, 12, 1, "", "register_archive_format"], [332, 12, 1, "", "register_unpack_format"], [332, 12, 1, "", "rmtree"], [332, 12, 1, "", "unpack_archive"], [332, 12, 1, "", "unregister_archive_format"], [332, 12, 1, "", "unregister_unpack_format"], [332, 12, 1, "", "which"]], "shutil.rmtree": [[332, 7, 1, "", "avoids_symlink_attacks"]], "signal": [[333, 9, 1, "", "CTRL_BREAK_EVENT"], [333, 9, 1, "", "CTRL_C_EVENT"], [333, 11, 1, "", "Handlers"], [333, 9, 1, "", "ITIMER_PROF"], [333, 9, 1, "", "ITIMER_REAL"], [333, 9, 1, "", "ITIMER_VIRTUAL"], [333, 6, 1, "", "ItimerError"], [333, 9, 1, "", "NSIG"], [333, 9, 1, "", "SIGABRT"], [333, 9, 1, "", "SIGALRM"], [333, 9, 1, "", "SIGBREAK"], [333, 9, 1, "", "SIGBUS"], [333, 9, 1, "", "SIGCHLD"], [333, 9, 1, "", "SIGCLD"], [333, 9, 1, "", "SIGCONT"], [333, 9, 1, "", "SIGFPE"], [333, 9, 1, "", "SIGHUP"], [333, 9, 1, "", "SIGILL"], [333, 9, 1, "", "SIGINT"], [333, 9, 1, "", "SIGKILL"], [333, 9, 1, "", "SIGPIPE"], [333, 9, 1, "", "SIGSEGV"], [333, 9, 1, "", "SIGSTKFLT"], [333, 9, 1, "", "SIGTERM"], [333, 9, 1, "", "SIGUSR1"], [333, 9, 1, "", "SIGUSR2"], [333, 9, 1, "", "SIGWINCH"], [333, 9, 1, "", "SIG_BLOCK"], [333, 9, 1, "", "SIG_DFL"], [333, 9, 1, "", "SIG_IGN"], [333, 9, 1, "", "SIG_SETMASK"], [333, 9, 1, "", "SIG_UNBLOCK"], [333, 11, 1, "", "Sigmasks"], [333, 11, 1, "", "Signals"], [333, 12, 1, "", "alarm"], [333, 12, 1, "", "getitimer"], [333, 12, 1, "", "getsignal"], [333, 12, 1, "", "pause"], [333, 12, 1, "", "pidfd_send_signal"], [333, 12, 1, "", "pthread_kill"], [333, 12, 1, "", "pthread_sigmask"], [333, 12, 1, "", "raise_signal"], [333, 12, 1, "", "set_wakeup_fd"], [333, 12, 1, "", "setitimer"], [333, 12, 1, "", "siginterrupt"], [333, 12, 1, "", "signal"], [333, 12, 1, "", "sigpending"], [333, 12, 1, "", "sigtimedwait"], [333, 12, 1, "", "sigwait"], [333, 12, 1, "", "sigwaitinfo"], [333, 12, 1, "", "strsignal"], [333, 12, 1, "", "valid_signals"]], "site": [[334, 9, 1, "", "ENABLE_USER_SITE"], [334, 9, 1, "", "PREFIXES"], [334, 9, 1, "", "USER_BASE"], [334, 9, 1, "", "USER_SITE"], [334, 12, 1, "", "addsitedir"], [334, 12, 1, "", "getsitepackages"], [334, 12, 1, "", "getuserbase"], [334, 12, 1, "", "getusersitepackages"], [334, 12, 1, "", "main"], [334, 14, 1, "cmdoption-site-user-base", "--user-base"], [334, 14, 1, "cmdoption-site-user-site", "--user-site"]], "slice": [[428, 8, 1, "", "indices"], [225, 7, 1, "", "start"], [225, 7, 1, "", "step"], [225, 7, 1, "", "stop"]], "smtplib": [[335, 11, 1, "", "LMTP"], [335, 11, 1, "", "SMTP"], [335, 6, 1, "", "SMTPAuthenticationError"], [335, 6, 1, "", "SMTPConnectError"], [335, 6, 1, "", "SMTPDataError"], [335, 6, 1, "", "SMTPException"], [335, 6, 1, "", "SMTPHeloError"], [335, 6, 1, "", "SMTPNotSupportedError"], [335, 6, 1, "", "SMTPRecipientsRefused"], [335, 6, 1, "", "SMTPResponseException"], [335, 6, 1, "", "SMTPSenderRefused"], [335, 6, 1, "", "SMTPServerDisconnected"], [335, 11, 1, "", "SMTP_SSL"]], "smtplib.SMTP": [[335, 8, 1, "", "auth"], [335, 8, 1, "", "connect"], [335, 8, 1, "", "docmd"], [335, 8, 1, "", "ehlo"], [335, 8, 1, "", "ehlo_or_helo_if_needed"], [335, 8, 1, "", "has_extn"], [335, 8, 1, "", "helo"], [335, 8, 1, "", "login"], [335, 8, 1, "", "quit"], [335, 8, 1, "", "send_message"], [335, 8, 1, "", "sendmail"], [335, 8, 1, "", "set_debuglevel"], [335, 8, 1, "", "starttls"], [335, 8, 1, "", "verify"]], "sndhdr": [[336, 9, 1, "", "tests"], [336, 12, 1, "", "what"], [336, 12, 1, "", "whathdr"]], "socket": [[337, 9, 1, "", "AF_ALG"], [337, 9, 1, "", "AF_CAN"], [337, 9, 1, "", "AF_DIVERT"], [337, 9, 1, "", "AF_HYPERV"], [337, 9, 1, "", "AF_INET"], [337, 9, 1, "", "AF_INET6"], [337, 9, 1, "", "AF_LINK"], [337, 9, 1, "", "AF_PACKET"], [337, 9, 1, "", "AF_QIPCRTR"], [337, 9, 1, "", "AF_RDS"], [337, 9, 1, "", "AF_UNIX"], [337, 9, 1, "", "AF_UNSPEC"], [337, 9, 1, "", "AF_VSOCK"], [337, 9, 1, "", "BDADDR_ANY"], [337, 9, 1, "", "BDADDR_LOCAL"], [337, 9, 1, "", "CAN_BCM"], [337, 9, 1, "", "CAN_ISOTP"], [337, 9, 1, "", "CAN_J1939"], [337, 9, 1, "", "CAN_RAW_FD_FRAMES"], [337, 9, 1, "", "CAN_RAW_JOIN_FILTERS"], [337, 12, 1, "", "CMSG_LEN"], [337, 12, 1, "", "CMSG_SPACE"], [337, 9, 1, "", "ETHERTYPE_ARP"], [337, 9, 1, "", "ETHERTYPE_IP"], [337, 9, 1, "", "ETHERTYPE_IPV6"], [337, 9, 1, "", "ETHERTYPE_VLAN"], [337, 9, 1, "", "ETH_P_ALL"], [337, 9, 1, "", "HCI_DATA_DIR"], [337, 9, 1, "", "HCI_FILTER"], [337, 9, 1, "", "HCI_TIME_STAMP"], [337, 9, 1, "", "HVSOCKET_ADDRESS_FLAG_PASSTHRU"], [337, 9, 1, "", "HVSOCKET_CONNECTED_SUSPEND"], [337, 9, 1, "", "HVSOCKET_CONNECT_TIMEOUT"], [337, 9, 1, "", "HVSOCKET_CONNECT_TIMEOUT_MAX"], [337, 9, 1, "", "HV_GUID_BROADCAST"], [337, 9, 1, "", "HV_GUID_CHILDREN"], [337, 9, 1, "", "HV_GUID_LOOPBACK"], [337, 9, 1, "", "HV_GUID_PARENT"], [337, 9, 1, "", "HV_GUID_WILDCARD"], [337, 9, 1, "", "HV_GUID_ZERO"], [337, 9, 1, "", "HV_PROTOCOL_RAW"], [337, 9, 1, "", "IOCTL_VM_SOCKETS_GET_LOCAL_CID"], [337, 9, 1, "", "LOCAL_CREDS"], [337, 9, 1, "", "LOCAL_CREDS_PERSISTENT"], [337, 9, 1, "", "PF_CAN"], [337, 9, 1, "", "PF_DIVERT"], [337, 9, 1, "", "PF_PACKET"], [337, 9, 1, "", "PF_RDS"], [337, 9, 1, "", "SCM_CREDS2"], [337, 9, 1, "", "SIO_KEEPALIVE_VALS"], [337, 9, 1, "", "SIO_LOOPBACK_FAST_PATH"], [337, 9, 1, "", "SIO_RCVALL"], [337, 9, 1, "", "SOCK_CLOEXEC"], [337, 9, 1, "", "SOCK_DGRAM"], [337, 9, 1, "", "SOCK_NONBLOCK"], [337, 9, 1, "", "SOCK_RAW"], [337, 9, 1, "", "SOCK_RDM"], [337, 9, 1, "", "SOCK_SEQPACKET"], [337, 9, 1, "", "SOCK_STREAM"], [337, 9, 1, "", "SOL_ALG"], [337, 9, 1, "", "SOL_RDS"], [337, 9, 1, "", "SOMAXCONN"], [337, 9, 1, "", "SO_INCOMING_CPU"], [337, 9, 1, "", "SocketType"], [337, 12, 1, "", "close"], [337, 12, 1, "", "create_connection"], [337, 12, 1, "", "create_server"], [337, 6, 1, "", "error"], [337, 12, 1, "", "fromfd"], [337, 12, 1, "", "fromshare"], [337, 6, 1, "", "gaierror"], [337, 12, 1, "", "getaddrinfo"], [337, 12, 1, "", "getdefaulttimeout"], [337, 12, 1, "", "getfqdn"], [337, 12, 1, "", "gethostbyaddr"], [337, 12, 1, "", "gethostbyname"], [337, 12, 1, "", "gethostbyname_ex"], [337, 12, 1, "", "gethostname"], [337, 12, 1, "", "getnameinfo"], [337, 12, 1, "", "getprotobyname"], [337, 12, 1, "", "getservbyname"], [337, 12, 1, "", "getservbyport"], [337, 12, 1, "", "has_dualstack_ipv6"], [337, 9, 1, "", "has_ipv6"], [337, 6, 1, "", "herror"], [337, 12, 1, "", "htonl"], [337, 12, 1, "", "htons"], [337, 12, 1, "", "if_indextoname"], [337, 12, 1, "", "if_nameindex"], [337, 12, 1, "", "if_nametoindex"], [337, 12, 1, "", "inet_aton"], [337, 12, 1, "", "inet_ntoa"], [337, 12, 1, "", "inet_ntop"], [337, 12, 1, "", "inet_pton"], [337, 12, 1, "", "ntohl"], [337, 12, 1, "", "ntohs"], [337, 12, 1, "", "recv_fds"], [337, 12, 1, "", "send_fds"], [337, 12, 1, "", "setdefaulttimeout"], [337, 12, 1, "", "sethostname"], [337, 11, 1, "", "socket"], [337, 12, 1, "", "socketpair"], [337, 6, 1, "", "timeout"]], "socket.socket": [[337, 8, 1, "", "accept"], [337, 8, 1, "", "bind"], [337, 8, 1, "", "close"], [337, 8, 1, "", "connect"], [337, 8, 1, "", "connect_ex"], [337, 8, 1, "", "detach"], [337, 8, 1, "", "dup"], [337, 7, 1, "", "family"], [337, 8, 1, "", "fileno"], [337, 8, 1, "", "get_inheritable"], [337, 8, 1, "", "getblocking"], [337, 8, 1, "", "getpeername"], [337, 8, 1, "", "getsockname"], [337, 8, 1, "", "getsockopt"], [337, 8, 1, "", "gettimeout"], [337, 8, 1, "", "ioctl"], [337, 8, 1, "", "listen"], [337, 8, 1, "", "makefile"], [337, 7, 1, "", "proto"], [337, 8, 1, "", "recv"], [337, 8, 1, "", "recv_into"], [337, 8, 1, "", "recvfrom"], [337, 8, 1, "", "recvfrom_into"], [337, 8, 1, "", "recvmsg"], [337, 8, 1, "", "recvmsg_into"], [337, 8, 1, "", "send"], [337, 8, 1, "", "sendall"], [337, 8, 1, "", "sendfile"], [337, 8, 1, "", "sendmsg"], [337, 8, 1, "", "sendmsg_afalg"], [337, 8, 1, "", "sendto"], [337, 8, 1, "", "set_inheritable"], [337, 8, 1, "", "setblocking"], [337, 8, 1, "", "setsockopt"], [337, 8, 1, "", "settimeout"], [337, 8, 1, "", "share"], [337, 8, 1, "", "shutdown"], [337, 7, 1, "", "type"]], "socketserver": [[338, 11, 1, "", "BaseRequestHandler"], [338, 11, 1, "", "BaseServer"], [338, 11, 1, "", "DatagramRequestHandler"], [338, 11, 1, "", "ForkingMixIn"], [338, 11, 1, "", "ForkingTCPServer"], [338, 11, 1, "", "ForkingUDPServer"], [338, 11, 1, "", "ForkingUnixDatagramServer"], [338, 11, 1, "", "ForkingUnixStreamServer"], [338, 11, 1, "", "StreamRequestHandler"], [338, 11, 1, "", "TCPServer"], [338, 11, 1, "", "ThreadingMixIn"], [338, 11, 1, "", "ThreadingTCPServer"], [338, 11, 1, "", "ThreadingUDPServer"], [338, 11, 1, "", "ThreadingUnixDatagramServer"], [338, 11, 1, "", "ThreadingUnixStreamServer"], [338, 11, 1, "", "UDPServer"], [338, 11, 1, "", "UnixDatagramServer"], [338, 11, 1, "", "UnixStreamServer"]], "socketserver.BaseRequestHandler": [[338, 7, 1, "", "client_address"], [338, 8, 1, "", "finish"], [338, 8, 1, "", "handle"], [338, 7, 1, "", "request"], [338, 7, 1, "", "server"], [338, 8, 1, "", "setup"]], "socketserver.BaseServer": [[338, 7, 1, "", "RequestHandlerClass"], [338, 7, 1, "", "address_family"], [338, 7, 1, "", "allow_reuse_address"], [338, 8, 1, "", "fileno"], [338, 8, 1, "", "finish_request"], [338, 8, 1, "", "get_request"], [338, 8, 1, "", "handle_error"], [338, 8, 1, "", "handle_request"], [338, 8, 1, "", "handle_timeout"], [338, 8, 1, "", "process_request"], [338, 7, 1, "", "request_queue_size"], [338, 8, 1, "", "serve_forever"], [338, 8, 1, "", "server_activate"], [338, 7, 1, "", "server_address"], [338, 8, 1, "", "server_bind"], [338, 8, 1, "", "server_close"], [338, 8, 1, "", "service_actions"], [338, 8, 1, "", "shutdown"], [338, 7, 1, "", "socket"], [338, 7, 1, "", "socket_type"], [338, 7, 1, "", "timeout"], [338, 8, 1, "", "verify_request"]], "socketserver.DatagramRequestHandler": [[338, 7, 1, "", "rfile"], [338, 7, 1, "", "wfile"]], "socketserver.ThreadingMixIn": [[338, 7, 1, "", "block_on_close"], [338, 7, 1, "", "daemon_threads"]], "spwd": [[339, 12, 1, "", "getspall"], [339, 12, 1, "", "getspnam"]], "sqlite3": [[340, 11, 1, "", "Blob"], [340, 11, 1, "", "Connection"], [340, 11, 1, "", "Cursor"], [340, 6, 1, "", "DataError"], [340, 6, 1, "", "DatabaseError"], [340, 6, 1, "", "Error"], [340, 6, 1, "", "IntegrityError"], [340, 6, 1, "", "InterfaceError"], [340, 6, 1, "", "InternalError"], [340, 9, 1, "", "LEGACY_TRANSACTION_CONTROL"], [340, 6, 1, "", "NotSupportedError"], [340, 6, 1, "", "OperationalError"], [340, 9, 1, "", "PARSE_COLNAMES"], [340, 9, 1, "", "PARSE_DECLTYPES"], [340, 11, 1, "", "PrepareProtocol"], [340, 6, 1, "", "ProgrammingError"], [340, 11, 1, "", "Row"], [340, 9, 1, "", "SQLITE_DBCONFIG_DEFENSIVE"], [340, 9, 1, "", "SQLITE_DBCONFIG_DQS_DDL"], [340, 9, 1, "", "SQLITE_DBCONFIG_DQS_DML"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_FKEY"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_QPSG"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_TRIGGER"], [340, 9, 1, "", "SQLITE_DBCONFIG_ENABLE_VIEW"], [340, 9, 1, "", "SQLITE_DBCONFIG_LEGACY_ALTER_TABLE"], [340, 9, 1, "", "SQLITE_DBCONFIG_LEGACY_FILE_FORMAT"], [340, 9, 1, "", "SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE"], [340, 9, 1, "", "SQLITE_DBCONFIG_RESET_DATABASE"], [340, 9, 1, "", "SQLITE_DBCONFIG_TRIGGER_EQP"], [340, 9, 1, "", "SQLITE_DBCONFIG_TRUSTED_SCHEMA"], [340, 9, 1, "", "SQLITE_DBCONFIG_WRITABLE_SCHEMA"], [340, 9, 1, "", "SQLITE_DENY"], [340, 9, 1, "", "SQLITE_IGNORE"], [340, 9, 1, "", "SQLITE_OK"], [340, 6, 1, "", "Warning"], [340, 9, 1, "", "apilevel"], [340, 12, 1, "", "complete_statement"], [340, 12, 1, "", "connect"], [340, 12, 1, "", "enable_callback_tracebacks"], [340, 9, 1, "", "paramstyle"], [340, 12, 1, "", "register_adapter"], [340, 12, 1, "", "register_converter"], [340, 9, 1, "", "sqlite_version"], [340, 9, 1, "", "sqlite_version_info"], [340, 9, 1, "", "threadsafety"], [340, 9, 1, "", "version"], [340, 9, 1, "", "version_info"]], "sqlite3.Blob": [[340, 8, 1, "", "close"], [340, 8, 1, "", "read"], [340, 8, 1, "", "seek"], [340, 8, 1, "", "tell"], [340, 8, 1, "", "write"]], "sqlite3.Connection": [[340, 7, 1, "", "autocommit"], [340, 8, 1, "", "backup"], [340, 8, 1, "", "blobopen"], [340, 8, 1, "", "close"], [340, 8, 1, "", "commit"], [340, 8, 1, "", "create_aggregate"], [340, 8, 1, "", "create_collation"], [340, 8, 1, "", "create_function"], [340, 8, 1, "", "create_window_function"], [340, 8, 1, "", "cursor"], [340, 8, 1, "", "deserialize"], [340, 8, 1, "", "enable_load_extension"], [340, 8, 1, "", "execute"], [340, 8, 1, "", "executemany"], [340, 8, 1, "", "executescript"], [340, 8, 1, "", "getconfig"], [340, 8, 1, "", "getlimit"], [340, 7, 1, "", "in_transaction"], [340, 8, 1, "", "interrupt"], [340, 7, 1, "", "isolation_level"], [340, 8, 1, "", "iterdump"], [340, 8, 1, "", "load_extension"], [340, 8, 1, "", "rollback"], [340, 7, 1, "", "row_factory"], [340, 8, 1, "", "serialize"], [340, 8, 1, "", "set_authorizer"], [340, 8, 1, "", "set_progress_handler"], [340, 8, 1, "", "set_trace_callback"], [340, 8, 1, "", "setconfig"], [340, 8, 1, "", "setlimit"], [340, 7, 1, "", "text_factory"], [340, 7, 1, "", "total_changes"]], "sqlite3.Cursor": [[340, 7, 1, "", "arraysize"], [340, 8, 1, "", "close"], [340, 7, 1, "", "connection"], [340, 7, 1, "", "description"], [340, 8, 1, "", "execute"], [340, 8, 1, "", "executemany"], [340, 8, 1, "", "executescript"], [340, 8, 1, "", "fetchall"], [340, 8, 1, "", "fetchmany"], [340, 8, 1, "", "fetchone"], [340, 7, 1, "", "lastrowid"], [340, 7, 1, "", "row_factory"], [340, 7, 1, "", "rowcount"], [340, 8, 1, "", "setinputsizes"], [340, 8, 1, "", "setoutputsize"]], "sqlite3.Error": [[340, 7, 1, "", "sqlite_errorcode"], [340, 7, 1, "", "sqlite_errorname"]], "sqlite3.Row": [[340, 8, 1, "", "keys"]], "ssl": [[341, 9, 1, "", "ALERT_DESCRIPTION_HANDSHAKE_FAILURE"], [341, 9, 1, "", "ALERT_DESCRIPTION_INTERNAL_ERROR"], [341, 11, 1, "", "AlertDescription"], [341, 9, 1, "", "CERT_NONE"], [341, 9, 1, "", "CERT_OPTIONAL"], [341, 9, 1, "", "CERT_REQUIRED"], [341, 9, 1, "", "CHANNEL_BINDING_TYPES"], [341, 6, 1, "", "CertificateError"], [341, 12, 1, "", "DER_cert_to_PEM_cert"], [341, 9, 1, "", "HAS_ALPN"], [341, 9, 1, "", "HAS_ECDH"], [341, 9, 1, "", "HAS_NEVER_CHECK_COMMON_NAME"], [341, 9, 1, "", "HAS_NPN"], [341, 9, 1, "", "HAS_SNI"], [341, 9, 1, "", "HAS_SSLv2"], [341, 9, 1, "", "HAS_SSLv3"], [341, 9, 1, "", "HAS_TLSv1"], [341, 9, 1, "", "HAS_TLSv1_1"], [341, 9, 1, "", "HAS_TLSv1_2"], [341, 9, 1, "", "HAS_TLSv1_3"], [341, 11, 1, "", "MemoryBIO"], [341, 9, 1, "", "OPENSSL_VERSION"], [341, 9, 1, "", "OPENSSL_VERSION_INFO"], [341, 9, 1, "", "OPENSSL_VERSION_NUMBER"], [341, 9, 1, "", "OP_ALL"], [341, 9, 1, "", "OP_CIPHER_SERVER_PREFERENCE"], [341, 9, 1, "", "OP_ENABLE_KTLS"], [341, 9, 1, "", "OP_ENABLE_MIDDLEBOX_COMPAT"], [341, 9, 1, "", "OP_IGNORE_UNEXPECTED_EOF"], [341, 9, 1, "", "OP_LEGACY_SERVER_CONNECT"], [341, 9, 1, "", "OP_NO_COMPRESSION"], [341, 9, 1, "", "OP_NO_RENEGOTIATION"], [341, 9, 1, "", "OP_NO_SSLv2"], [341, 9, 1, "", "OP_NO_SSLv3"], [341, 9, 1, "", "OP_NO_TICKET"], [341, 9, 1, "", "OP_NO_TLSv1"], [341, 9, 1, "", "OP_NO_TLSv1_1"], [341, 9, 1, "", "OP_NO_TLSv1_2"], [341, 9, 1, "", "OP_NO_TLSv1_3"], [341, 9, 1, "", "OP_SINGLE_DH_USE"], [341, 9, 1, "", "OP_SINGLE_ECDH_USE"], [341, 11, 1, "", "Options"], [341, 12, 1, "", "PEM_cert_to_DER_cert"], [341, 9, 1, "", "PROTOCOL_SSLv23"], [341, 9, 1, "", "PROTOCOL_SSLv3"], [341, 9, 1, "", "PROTOCOL_TLS"], [341, 9, 1, "", "PROTOCOL_TLS_CLIENT"], [341, 9, 1, "", "PROTOCOL_TLS_SERVER"], [341, 9, 1, "", "PROTOCOL_TLSv1"], [341, 9, 1, "", "PROTOCOL_TLSv1_1"], [341, 9, 1, "", "PROTOCOL_TLSv1_2"], [341, 12, 1, "", "RAND_add"], [341, 12, 1, "", "RAND_bytes"], [341, 12, 1, "", "RAND_status"], [341, 6, 1, "", "SSLCertVerificationError"], [341, 11, 1, "", "SSLContext"], [341, 6, 1, "", "SSLEOFError"], [341, 6, 1, "", "SSLError"], [341, 11, 1, "", "SSLErrorNumber"], [341, 11, 1, "", "SSLObject"], [341, 11, 1, "", "SSLSession"], [341, 11, 1, "", "SSLSocket"], [341, 6, 1, "", "SSLSyscallError"], [341, 6, 1, "", "SSLWantReadError"], [341, 6, 1, "", "SSLWantWriteError"], [341, 6, 1, "", "SSLZeroReturnError"], [341, 11, 1, "", "TLSVersion"], [341, 9, 1, "", "VERIFY_ALLOW_PROXY_CERTS"], [341, 9, 1, "", "VERIFY_CRL_CHECK_CHAIN"], [341, 9, 1, "", "VERIFY_CRL_CHECK_LEAF"], [341, 9, 1, "", "VERIFY_DEFAULT"], [341, 9, 1, "", "VERIFY_X509_PARTIAL_CHAIN"], [341, 9, 1, "", "VERIFY_X509_STRICT"], [341, 9, 1, "", "VERIFY_X509_TRUSTED_FIRST"], [341, 11, 1, "", "VerifyFlags"], [341, 11, 1, "", "VerifyMode"], [341, 12, 1, "", "cert_time_to_seconds"], [341, 12, 1, "", "create_default_context"], [341, 12, 1, "", "enum_certificates"], [341, 12, 1, "", "enum_crls"], [341, 12, 1, "", "get_default_verify_paths"], [341, 12, 1, "", "get_server_certificate"]], "ssl.MemoryBIO": [[341, 7, 1, "", "eof"], [341, 7, 1, "", "pending"], [341, 8, 1, "", "read"], [341, 8, 1, "", "write"], [341, 8, 1, "", "write_eof"]], "ssl.Purpose": [[341, 9, 1, "", "CLIENT_AUTH"], [341, 9, 1, "", "SERVER_AUTH"]], "ssl.SSLCertVerificationError": [[341, 7, 1, "", "verify_code"], [341, 7, 1, "", "verify_message"]], "ssl.SSLContext": [[341, 8, 1, "", "cert_store_stats"], [341, 7, 1, "", "check_hostname"], [341, 8, 1, "", "get_ca_certs"], [341, 8, 1, "", "get_ciphers"], [341, 7, 1, "", "hostname_checks_common_name"], [341, 7, 1, "", "keylog_filename"], [341, 8, 1, "", "load_cert_chain"], [341, 8, 1, "", "load_default_certs"], [341, 8, 1, "", "load_dh_params"], [341, 8, 1, "", "load_verify_locations"], [341, 7, 1, "", "maximum_version"], [341, 7, 1, "", "minimum_version"], [341, 7, 1, "", "num_tickets"], [341, 7, 1, "", "options"], [341, 7, 1, "", "post_handshake_auth"], [341, 7, 1, "", "protocol"], [341, 7, 1, "", "security_level"], [341, 8, 1, "", "session_stats"], [341, 8, 1, "", "set_alpn_protocols"], [341, 8, 1, "", "set_ciphers"], [341, 8, 1, "", "set_default_verify_paths"], [341, 8, 1, "", "set_ecdh_curve"], [341, 8, 1, "", "set_npn_protocols"], [341, 7, 1, "", "set_servername_callback"], [341, 7, 1, "", "sni_callback"], [341, 7, 1, "", "sslobject_class"], [341, 7, 1, "", "sslsocket_class"], [341, 7, 1, "", "verify_flags"], [341, 7, 1, "", "verify_mode"], [341, 8, 1, "", "wrap_bio"], [341, 8, 1, "", "wrap_socket"]], "ssl.SSLError": [[341, 7, 1, "", "library"], [341, 7, 1, "", "reason"]], "ssl.SSLSession": [[341, 7, 1, "", "has_ticket"], [341, 7, 1, "", "id"], [341, 7, 1, "", "ticket_lifetime_hint"], [341, 7, 1, "", "time"], [341, 7, 1, "", "timeout"]], "ssl.SSLSocket": [[341, 8, 1, "", "cipher"], [341, 8, 1, "", "compression"], [341, 7, 1, "", "context"], [341, 8, 1, "", "do_handshake"], [341, 8, 1, "", "get_channel_binding"], [341, 8, 1, "", "getpeercert"], [341, 8, 1, "", "pending"], [341, 8, 1, "", "read"], [341, 8, 1, "", "selected_alpn_protocol"], [341, 8, 1, "", "selected_npn_protocol"], [341, 7, 1, "", "server_hostname"], [341, 7, 1, "", "server_side"], [341, 7, 1, "", "session"], [341, 7, 1, "", "session_reused"], [341, 8, 1, "", "shared_ciphers"], [341, 8, 1, "", "unwrap"], [341, 8, 1, "", "verify_client_post_handshake"], [341, 8, 1, "", "version"], [341, 8, 1, "", "write"]], "ssl.TLSVersion": [[341, 7, 1, "", "MAXIMUM_SUPPORTED"], [341, 7, 1, "", "MINIMUM_SUPPORTED"], [341, 7, 1, "", "SSLv3"], [341, 7, 1, "", "TLSv1"], [341, 7, 1, "", "TLSv1_1"], [341, 7, 1, "", "TLSv1_2"], [341, 7, 1, "", "TLSv1_3"]], "stat": [[342, 9, 1, "", "FILE_ATTRIBUTE_ARCHIVE"], [342, 9, 1, "", "FILE_ATTRIBUTE_COMPRESSED"], [342, 9, 1, "", "FILE_ATTRIBUTE_DEVICE"], [342, 9, 1, "", "FILE_ATTRIBUTE_DIRECTORY"], [342, 9, 1, "", "FILE_ATTRIBUTE_ENCRYPTED"], [342, 9, 1, "", "FILE_ATTRIBUTE_HIDDEN"], [342, 9, 1, "", "FILE_ATTRIBUTE_INTEGRITY_STREAM"], [342, 9, 1, "", "FILE_ATTRIBUTE_NORMAL"], [342, 9, 1, "", "FILE_ATTRIBUTE_NOT_CONTENT_INDEXED"], [342, 9, 1, "", "FILE_ATTRIBUTE_NO_SCRUB_DATA"], [342, 9, 1, "", "FILE_ATTRIBUTE_OFFLINE"], [342, 9, 1, "", "FILE_ATTRIBUTE_READONLY"], [342, 9, 1, "", "FILE_ATTRIBUTE_REPARSE_POINT"], [342, 9, 1, "", "FILE_ATTRIBUTE_SPARSE_FILE"], [342, 9, 1, "", "FILE_ATTRIBUTE_SYSTEM"], [342, 9, 1, "", "FILE_ATTRIBUTE_TEMPORARY"], [342, 9, 1, "", "FILE_ATTRIBUTE_VIRTUAL"], [342, 9, 1, "", "IO_REPARSE_TAG_APPEXECLINK"], [342, 9, 1, "", "IO_REPARSE_TAG_MOUNT_POINT"], [342, 9, 1, "", "IO_REPARSE_TAG_SYMLINK"], [342, 9, 1, "", "SF_APPEND"], [342, 9, 1, "", "SF_ARCHIVED"], [342, 9, 1, "", "SF_IMMUTABLE"], [342, 9, 1, "", "SF_NOUNLINK"], [342, 9, 1, "", "SF_SNAPSHOT"], [342, 9, 1, "", "ST_ATIME"], [342, 9, 1, "", "ST_CTIME"], [342, 9, 1, "", "ST_DEV"], [342, 9, 1, "", "ST_GID"], [342, 9, 1, "", "ST_INO"], [342, 9, 1, "", "ST_MODE"], [342, 9, 1, "", "ST_MTIME"], [342, 9, 1, "", "ST_NLINK"], [342, 9, 1, "", "ST_SIZE"], [342, 9, 1, "", "ST_UID"], [342, 9, 1, "", "S_ENFMT"], [342, 9, 1, "", "S_IEXEC"], [342, 9, 1, "", "S_IFBLK"], [342, 9, 1, "", "S_IFCHR"], [342, 9, 1, "", "S_IFDIR"], [342, 9, 1, "", "S_IFDOOR"], [342, 9, 1, "", "S_IFIFO"], [342, 9, 1, "", "S_IFLNK"], [342, 12, 1, "", "S_IFMT"], [342, 9, 1, "", "S_IFPORT"], [342, 9, 1, "", "S_IFREG"], [342, 9, 1, "", "S_IFSOCK"], [342, 9, 1, "", "S_IFWHT"], [342, 12, 1, "", "S_IMODE"], [342, 9, 1, "", "S_IREAD"], [342, 9, 1, "", "S_IRGRP"], [342, 9, 1, "", "S_IROTH"], [342, 9, 1, "", "S_IRUSR"], [342, 9, 1, "", "S_IRWXG"], [342, 9, 1, "", "S_IRWXO"], [342, 9, 1, "", "S_IRWXU"], [342, 12, 1, "", "S_ISBLK"], [342, 12, 1, "", "S_ISCHR"], [342, 12, 1, "", "S_ISDIR"], [342, 12, 1, "", "S_ISDOOR"], [342, 12, 1, "", "S_ISFIFO"], [342, 9, 1, "", "S_ISGID"], [342, 12, 1, "", "S_ISLNK"], [342, 12, 1, "", "S_ISPORT"], [342, 12, 1, "", "S_ISREG"], [342, 12, 1, "", "S_ISSOCK"], [342, 9, 1, "", "S_ISUID"], [342, 9, 1, "", "S_ISVTX"], [342, 12, 1, "", "S_ISWHT"], [342, 9, 1, "", "S_IWGRP"], [342, 9, 1, "", "S_IWOTH"], [342, 9, 1, "", "S_IWRITE"], [342, 9, 1, "", "S_IWUSR"], [342, 9, 1, "", "S_IXGRP"], [342, 9, 1, "", "S_IXOTH"], [342, 9, 1, "", "S_IXUSR"], [342, 9, 1, "", "UF_APPEND"], [342, 9, 1, "", "UF_COMPRESSED"], [342, 9, 1, "", "UF_HIDDEN"], [342, 9, 1, "", "UF_IMMUTABLE"], [342, 9, 1, "", "UF_NODUMP"], [342, 9, 1, "", "UF_NOUNLINK"], [342, 9, 1, "", "UF_OPAQUE"], [342, 12, 1, "", "filemode"]], "statistics": [[343, 11, 1, "", "NormalDist"], [343, 6, 1, "", "StatisticsError"], [343, 12, 1, "", "correlation"], [343, 12, 1, "", "covariance"], [343, 12, 1, "", "fmean"], [343, 12, 1, "", "geometric_mean"], [343, 12, 1, "", "harmonic_mean"], [343, 12, 1, "", "linear_regression"], [343, 12, 1, "", "mean"], [343, 12, 1, "", "median"], [343, 12, 1, "", "median_grouped"], [343, 12, 1, "", "median_high"], [343, 12, 1, "", "median_low"], [343, 12, 1, "", "mode"], [343, 12, 1, "", "multimode"], [343, 12, 1, "", "pstdev"], [343, 12, 1, "", "pvariance"], [343, 12, 1, "", "quantiles"], [343, 12, 1, "", "stdev"], [343, 12, 1, "", "variance"]], "statistics.NormalDist": [[343, 8, 1, "", "cdf"], [343, 8, 1, "", "from_samples"], [343, 8, 1, "", "inv_cdf"], [343, 7, 1, "", "mean"], [343, 7, 1, "", "median"], [343, 7, 1, "", "mode"], [343, 8, 1, "", "overlap"], [343, 8, 1, "", "pdf"], [343, 8, 1, "", "quantiles"], [343, 8, 1, "", "samples"], [343, 7, 1, "", "stdev"], [343, 7, 1, "", "variance"], [343, 8, 1, "", "zscore"]], "str": [[344, 8, 1, "", "capitalize"], [344, 8, 1, "", "casefold"], [344, 8, 1, "", "center"], [344, 8, 1, "", "count"], [344, 8, 1, "", "encode"], [344, 8, 1, "", "endswith"], [344, 8, 1, "", "expandtabs"], [344, 8, 1, "", "find"], [344, 8, 1, "", "format"], [344, 8, 1, "", "format_map"], [344, 8, 1, "", "index"], [344, 8, 1, "", "isalnum"], [344, 8, 1, "", "isalpha"], [344, 8, 1, "", "isascii"], [344, 8, 1, "", "isdecimal"], [344, 8, 1, "", "isdigit"], [344, 8, 1, "", "isidentifier"], [344, 8, 1, "", "islower"], [344, 8, 1, "", "isnumeric"], [344, 8, 1, "", "isprintable"], [344, 8, 1, "", "isspace"], [344, 8, 1, "", "istitle"], [344, 8, 1, "", "isupper"], [344, 8, 1, "", "join"], [344, 8, 1, "", "ljust"], [344, 8, 1, "", "lower"], [344, 8, 1, "", "lstrip"], [344, 8, 1, "", "maketrans"], [344, 8, 1, "", "partition"], [344, 8, 1, "", "removeprefix"], [344, 8, 1, "", "removesuffix"], [344, 8, 1, "", "replace"], [344, 8, 1, "", "rfind"], [344, 8, 1, "", "rindex"], [344, 8, 1, "", "rjust"], [344, 8, 1, "", "rpartition"], [344, 8, 1, "", "rsplit"], [344, 8, 1, "", "rstrip"], [344, 8, 1, "", "split"], [344, 8, 1, "", "splitlines"], [344, 8, 1, "", "startswith"], [344, 8, 1, "", "strip"], [344, 8, 1, "", "swapcase"], [344, 8, 1, "", "title"], [344, 8, 1, "", "translate"], [344, 8, 1, "", "upper"], [344, 8, 1, "", "zfill"]], "string": [[345, 11, 1, "", "Formatter"], [345, 11, 1, "", "Template"], [345, 9, 1, "", "ascii_letters"], [345, 9, 1, "", "ascii_lowercase"], [345, 9, 1, "", "ascii_uppercase"], [345, 12, 1, "", "capwords"], [345, 9, 1, "", "digits"], [345, 9, 1, "", "hexdigits"], [345, 9, 1, "", "octdigits"], [345, 9, 1, "", "printable"], [345, 9, 1, "", "punctuation"], [345, 9, 1, "", "whitespace"]], "string.Formatter": [[345, 8, 1, "", "check_unused_args"], [345, 8, 1, "", "convert_field"], [345, 8, 1, "", "format"], [345, 8, 1, "", "format_field"], [345, 8, 1, "", "get_field"], [345, 8, 1, "", "get_value"], [345, 8, 1, "", "parse"], [345, 8, 1, "", "vformat"]], "string.Template": [[345, 8, 1, "", "get_identifiers"], [345, 8, 1, "", "is_valid"], [345, 8, 1, "", "safe_substitute"], [345, 8, 1, "", "substitute"], [345, 7, 1, "", "template"]], "stringprep": [[346, 12, 1, "", "in_table_a1"], [346, 12, 1, "", "in_table_b1"], [346, 12, 1, "", "in_table_c11"], [346, 12, 1, "", "in_table_c11_c12"], [346, 12, 1, "", "in_table_c12"], [346, 12, 1, "", "in_table_c21"], [346, 12, 1, "", "in_table_c21_c22"], [346, 12, 1, "", "in_table_c22"], [346, 12, 1, "", "in_table_c3"], [346, 12, 1, "", "in_table_c4"], [346, 12, 1, "", "in_table_c5"], [346, 12, 1, "", "in_table_c6"], [346, 12, 1, "", "in_table_c7"], [346, 12, 1, "", "in_table_c8"], [346, 12, 1, "", "in_table_c9"], [346, 12, 1, "", "in_table_d1"], [346, 12, 1, "", "in_table_d2"], [346, 12, 1, "", "map_table_b2"], [346, 12, 1, "", "map_table_b3"]], "struct": [[347, 11, 1, "", "Struct"], [347, 12, 1, "", "calcsize"], [347, 6, 1, "", "error"], [347, 12, 1, "", "iter_unpack"], [347, 12, 1, "", "pack"], [347, 12, 1, "", "pack_into"], [347, 12, 1, "", "unpack"], [347, 12, 1, "", "unpack_from"]], "struct.Struct": [[347, 7, 1, "", "format"], [347, 8, 1, "", "iter_unpack"], [347, 8, 1, "", "pack"], [347, 8, 1, "", "pack_into"], [347, 7, 1, "", "size"], [347, 8, 1, "", "unpack"], [347, 8, 1, "", "unpack_from"]], "subprocess": [[348, 9, 1, "", "ABOVE_NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "BELOW_NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "CREATE_BREAKAWAY_FROM_JOB"], [348, 9, 1, "", "CREATE_DEFAULT_ERROR_MODE"], [348, 9, 1, "", "CREATE_NEW_CONSOLE"], [348, 9, 1, "", "CREATE_NEW_PROCESS_GROUP"], [348, 9, 1, "", "CREATE_NO_WINDOW"], [348, 6, 1, "", "CalledProcessError"], [348, 11, 1, "", "CompletedProcess"], [348, 9, 1, "", "DETACHED_PROCESS"], [348, 9, 1, "", "DEVNULL"], [348, 9, 1, "", "HIGH_PRIORITY_CLASS"], [348, 9, 1, "", "IDLE_PRIORITY_CLASS"], [348, 9, 1, "", "NORMAL_PRIORITY_CLASS"], [348, 9, 1, "", "PIPE"], [348, 11, 1, "", "Popen"], [348, 9, 1, "", "REALTIME_PRIORITY_CLASS"], [348, 9, 1, "", "STARTF_USESHOWWINDOW"], [348, 9, 1, "", "STARTF_USESTDHANDLES"], [348, 11, 1, "", "STARTUPINFO"], [348, 9, 1, "", "STDOUT"], [348, 9, 1, "", "STD_ERROR_HANDLE"], [348, 9, 1, "", "STD_INPUT_HANDLE"], [348, 9, 1, "", "STD_OUTPUT_HANDLE"], [348, 9, 1, "", "SW_HIDE"], [348, 6, 1, "", "SubprocessError"], [348, 6, 1, "", "TimeoutExpired"], [348, 12, 1, "", "call"], [348, 12, 1, "", "check_call"], [348, 12, 1, "", "check_output"], [348, 12, 1, "", "getoutput"], [348, 12, 1, "", "getstatusoutput"], [348, 12, 1, "", "run"]], "subprocess.CalledProcessError": [[348, 7, 1, "", "cmd"], [348, 7, 1, "", "output"], [348, 7, 1, "", "returncode"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"]], "subprocess.CompletedProcess": [[348, 7, 1, "", "args"], [348, 8, 1, "", "check_returncode"], [348, 7, 1, "", "returncode"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"]], "subprocess.Popen": [[348, 7, 1, "", "args"], [348, 8, 1, "", "communicate"], [348, 8, 1, "", "kill"], [348, 7, 1, "", "pid"], [348, 8, 1, "", "poll"], [348, 7, 1, "", "returncode"], [348, 8, 1, "", "send_signal"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdin"], [348, 7, 1, "", "stdout"], [348, 8, 1, "", "terminate"], [348, 8, 1, "", "wait"]], "subprocess.STARTUPINFO": [[348, 7, 1, "", "dwFlags"], [348, 7, 1, "", "hStdError"], [348, 7, 1, "", "hStdInput"], [348, 7, 1, "", "hStdOutput"], [348, 7, 1, "", "lpAttributeList"], [348, 7, 1, "", "wShowWindow"]], "subprocess.TimeoutExpired": [[348, 7, 1, "", "cmd"], [348, 7, 1, "", "output"], [348, 7, 1, "", "stderr"], [348, 7, 1, "", "stdout"], [348, 7, 1, "", "timeout"]], "sunau": [[349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G721"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G722"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G723_3"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ADPCM_G723_5"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_ALAW_8"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_DOUBLE"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_FLOAT"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_16"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_24"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_32"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_LINEAR_8"], [349, 9, 1, "", "AUDIO_FILE_ENCODING_MULAW_8"], [349, 9, 1, "", "AUDIO_FILE_MAGIC"], [349, 6, 1, "", "Error"], [349, 12, 1, "", "open"]], "sunau.AU_read": [[349, 8, 1, "", "close"], [349, 8, 1, "", "getcompname"], [349, 8, 1, "", "getcomptype"], [349, 8, 1, "", "getframerate"], [349, 8, 1, "", "getmark"], [349, 8, 1, "", "getmarkers"], [349, 8, 1, "", "getnchannels"], [349, 8, 1, "", "getnframes"], [349, 8, 1, "", "getparams"], [349, 8, 1, "", "getsampwidth"], [349, 8, 1, "", "readframes"], [349, 8, 1, "", "rewind"], [349, 8, 1, "", "setpos"], [349, 8, 1, "", "tell"]], "sunau.AU_write": [[349, 8, 1, "", "close"], [349, 8, 1, "", "setcomptype"], [349, 8, 1, "", "setframerate"], [349, 8, 1, "", "setnchannels"], [349, 8, 1, "", "setnframes"], [349, 8, 1, "", "setparams"], [349, 8, 1, "", "setsampwidth"], [349, 8, 1, "", "tell"], [349, 8, 1, "", "writeframes"], [349, 8, 1, "", "writeframesraw"]], "symtable": [[351, 11, 1, "", "Class"], [351, 11, 1, "", "Function"], [351, 11, 1, "", "Symbol"], [351, 11, 1, "", "SymbolTable"], [351, 12, 1, "", "symtable"]], "symtable.Class": [[351, 8, 1, "", "get_methods"]], "symtable.Function": [[351, 8, 1, "", "get_frees"], [351, 8, 1, "", "get_globals"], [351, 8, 1, "", "get_locals"], [351, 8, 1, "", "get_nonlocals"], [351, 8, 1, "", "get_parameters"]], "symtable.Symbol": [[351, 8, 1, "", "get_name"], [351, 8, 1, "", "get_namespace"], [351, 8, 1, "", "get_namespaces"], [351, 8, 1, "", "is_annotated"], [351, 8, 1, "", "is_assigned"], [351, 8, 1, "", "is_declared_global"], [351, 8, 1, "", "is_free"], [351, 8, 1, "", "is_global"], [351, 8, 1, "", "is_imported"], [351, 8, 1, "", "is_local"], [351, 8, 1, "", "is_namespace"], [351, 8, 1, "", "is_nonlocal"], [351, 8, 1, "", "is_parameter"], [351, 8, 1, "", "is_referenced"]], "symtable.SymbolTable": [[351, 8, 1, "", "get_children"], [351, 8, 1, "", "get_id"], [351, 8, 1, "", "get_identifiers"], [351, 8, 1, "", "get_lineno"], [351, 8, 1, "", "get_name"], [351, 8, 1, "", "get_symbols"], [351, 8, 1, "", "get_type"], [351, 8, 1, "", "has_children"], [351, 8, 1, "", "is_nested"], [351, 8, 1, "", "is_optimized"], [351, 8, 1, "", "lookup"]], "sys": [[352, 9, 1, "", "__breakpointhook__"], [352, 9, 1, "", "__displayhook__"], [352, 9, 1, "", "__excepthook__"], [352, 9, 1, "", "__interactivehook__"], [352, 9, 1, "", "__stderr__"], [352, 9, 1, "", "__stdin__"], [352, 9, 1, "", "__stdout__"], [352, 9, 1, "", "__unraisablehook__"], [352, 12, 1, "", "_clear_type_cache"], [352, 12, 1, "", "_current_exceptions"], [352, 12, 1, "", "_current_frames"], [352, 12, 1, "", "_debugmallocstats"], [352, 9, 1, "", "_emscripten_info"], [352, 12, 1, "", "_enablelegacywindowsfsencoding"], [352, 12, 1, "", "_getframe"], [352, 12, 1, "", "_getframemodulename"], [352, 9, 1, "", "_xoptions"], [352, 9, 1, "", "abiflags"], [352, 12, 1, "", "activate_stack_trampoline"], [352, 12, 1, "", "addaudithook"], [352, 9, 1, "", "api_version"], [352, 9, 1, "", "argv"], [352, 12, 1, "", "audit"], [352, 9, 1, "", "base_exec_prefix"], [352, 9, 1, "", "base_prefix"], [352, 12, 1, "", "breakpointhook"], [352, 9, 1, "", "builtin_module_names"], [352, 9, 1, "", "byteorder"], [352, 12, 1, "", "call_tracing"], [352, 9, 1, "", "copyright"], [352, 12, 1, "", "deactivate_stack_trampoline"], [352, 12, 1, "", "displayhook"], [352, 9, 1, "", "dllhandle"], [352, 9, 1, "", "dont_write_bytecode"], [352, 12, 1, "", "exc_info"], [352, 12, 1, "", "excepthook"], [352, 12, 1, "", "exception"], [352, 9, 1, "", "exec_prefix"], [352, 9, 1, "", "executable"], [352, 12, 1, "", "exit"], [352, 9, 1, "", "flags"], [352, 9, 1, "", "float_info"], [352, 9, 1, "", "float_repr_style"], [352, 12, 1, "", "get_asyncgen_hooks"], [352, 12, 1, "", "get_coroutine_origin_tracking_depth"], [352, 12, 1, "", "get_int_max_str_digits"], [352, 12, 1, "", "getallocatedblocks"], [352, 12, 1, "", "getandroidapilevel"], [352, 12, 1, "", "getdefaultencoding"], [352, 12, 1, "", "getdlopenflags"], [352, 12, 1, "", "getfilesystemencodeerrors"], [352, 12, 1, "", "getfilesystemencoding"], [352, 12, 1, "", "getprofile"], [352, 12, 1, "", "getrecursionlimit"], [352, 12, 1, "", "getrefcount"], [352, 12, 1, "", "getsizeof"], [352, 12, 1, "", "getswitchinterval"], [352, 12, 1, "", "gettrace"], [352, 12, 1, "", "getunicodeinternedsize"], [352, 12, 1, "", "getwindowsversion"], [352, 9, 1, "", "hash_info"], [352, 9, 1, "", "hexversion"], [352, 9, 1, "", "implementation"], [352, 9, 1, "", "int_info"], [352, 12, 1, "", "intern"], [352, 12, 1, "", "is_finalizing"], [352, 12, 1, "", "is_stack_trampoline_active"], [352, 9, 1, "", "last_exc"], [352, 9, 1, "", "last_traceback"], [352, 9, 1, "", "last_type"], [352, 9, 1, "", "last_value"], [352, 9, 1, "", "maxsize"], [352, 9, 1, "", "maxunicode"], [352, 9, 1, "", "meta_path"], [352, 9, 1, "", "modules"], [353, 10, 0, "-", "monitoring"], [352, 9, 1, "", "orig_argv"], [352, 9, 1, "", "path"], [352, 9, 1, "", "path_hooks"], [352, 9, 1, "", "path_importer_cache"], [352, 9, 1, "", "platform"], [352, 9, 1, "", "platlibdir"], [352, 9, 1, "", "prefix"], [352, 9, 1, "", "ps1"], [352, 9, 1, "", "ps2"], [352, 9, 1, "", "pycache_prefix"], [352, 12, 1, "", "set_asyncgen_hooks"], [352, 12, 1, "", "set_coroutine_origin_tracking_depth"], [352, 12, 1, "", "set_int_max_str_digits"], [352, 12, 1, "", "setdlopenflags"], [352, 12, 1, "", "setprofile"], [352, 12, 1, "", "setrecursionlimit"], [352, 12, 1, "", "setswitchinterval"], [352, 12, 1, "", "settrace"], [352, 9, 1, "", "stderr"], [352, 9, 1, "", "stdin"], [352, 9, 1, "", "stdlib_module_names"], [352, 9, 1, "", "stdout"], [352, 9, 1, "", "thread_info"], [352, 9, 1, "", "tracebacklimit"], [352, 12, 1, "", "unraisablehook"], [352, 9, 1, "", "version"], [352, 9, 1, "", "version_info"], [352, 9, 1, "", "warnoptions"], [352, 9, 1, "", "winver"]], "sys._emscripten_info": [[352, 7, 1, "", "emscripten_version"], [352, 7, 1, "", "pthreads"], [352, 7, 1, "", "runtime"], [352, 7, 1, "", "shared_memory"]], "sys.flags": [[352, 7, 1, "", "bytes_warning"], [352, 7, 1, "", "debug"], [352, 7, 1, "", "dev_mode"], [352, 7, 1, "", "dont_write_bytecode"], [352, 7, 1, "", "hash_randomization"], [352, 7, 1, "", "ignore_environment"], [352, 7, 1, "", "inspect"], [352, 7, 1, "", "int_max_str_digits"], [352, 7, 1, "", "interactive"], [352, 7, 1, "", "isolated"], [352, 7, 1, "", "no_site"], [352, 7, 1, "", "no_user_site"], [352, 7, 1, "", "optimize"], [352, 7, 1, "", "quiet"], [352, 7, 1, "", "safe_path"], [352, 7, 1, "", "utf8_mode"], [352, 7, 1, "", "verbose"], [352, 7, 1, "", "warn_default_encoding"]], "sys.float_info": [[352, 7, 1, "", "dig"], [352, 7, 1, "", "epsilon"], [352, 7, 1, "", "mant_dig"], [352, 7, 1, "", "max"], [352, 7, 1, "", "max_10_exp"], [352, 7, 1, "", "max_exp"], [352, 7, 1, "", "min"], [352, 7, 1, "", "min_10_exp"], [352, 7, 1, "", "min_exp"], [352, 7, 1, "", "radix"], [352, 7, 1, "", "rounds"]], "sys.hash_info": [[352, 7, 1, "", "algorithm"], [352, 7, 1, "", "hash_bits"], [352, 7, 1, "", "imag"], [352, 7, 1, "", "inf"], [352, 7, 1, "", "modulus"], [352, 7, 1, "", "nan"], [352, 7, 1, "", "seed_bits"], [352, 7, 1, "", "width"]], "sys.int_info": [[352, 7, 1, "", "bits_per_digit"], [352, 7, 1, "", "default_max_str_digits"], [352, 7, 1, "", "sizeof_digit"], [352, 7, 1, "", "str_digits_check_threshold"]], "sys.monitoring": [[353, 9, 1, "", "DISABLE"], [353, 9, 1, "", "MISSING"], [353, 12, 1, "", "free_tool_id"], [353, 12, 1, "", "get_events"], [353, 12, 1, "", "get_local_events"], [353, 12, 1, "", "get_tool"], [353, 12, 1, "", "register_callback"], [353, 12, 1, "", "restart_events"], [353, 12, 1, "", "set_events"], [353, 12, 1, "", "set_local_events"], [353, 12, 1, "", "use_tool_id"]], "sys.thread_info": [[352, 7, 1, "", "lock"], [352, 7, 1, "", "name"], [352, 7, 1, "", "version"]], "sysconfig": [[355, 12, 1, "", "_get_preferred_schemes"], [355, 12, 1, "", "get_config_h_filename"], [355, 12, 1, "", "get_config_var"], [355, 12, 1, "", "get_config_vars"], [355, 12, 1, "", "get_default_scheme"], [355, 12, 1, "", "get_makefile_filename"], [355, 12, 1, "", "get_path"], [355, 12, 1, "", "get_path_names"], [355, 12, 1, "", "get_paths"], [355, 12, 1, "", "get_platform"], [355, 12, 1, "", "get_preferred_scheme"], [355, 12, 1, "", "get_python_version"], [355, 12, 1, "", "get_scheme_names"], [355, 12, 1, "", "is_python_build"], [355, 12, 1, "", "parse_config_h"]], "syslog": [[356, 12, 1, "", "closelog"], [356, 12, 1, "", "openlog"], [356, 12, 1, "", "setlogmask"], [356, 12, 1, "", "syslog"]], "tabnanny": [[357, 6, 1, "", "NannyNag"], [357, 12, 1, "", "check"], [357, 9, 1, "", "filename_only"], [357, 12, 1, "", "process_tokens"], [357, 9, 1, "", "verbose"]], "tarfile": [[358, 9, 1, "", "AREGTYPE"], [358, 6, 1, "", "AbsoluteLinkError"], [358, 6, 1, "", "AbsolutePathError"], [358, 9, 1, "", "BLKTYPE"], [358, 9, 1, "", "CHRTYPE"], [358, 9, 1, "", "CONTTYPE"], [358, 6, 1, "", "CompressionError"], [358, 9, 1, "", "DEFAULT_FORMAT"], [358, 9, 1, "", "DIRTYPE"], [358, 9, 1, "", "ENCODING"], [358, 6, 1, "", "ExtractError"], [358, 9, 1, "", "FIFOTYPE"], [358, 6, 1, "", "FilterError"], [358, 9, 1, "", "GNUTYPE_LONGLINK"], [358, 9, 1, "", "GNUTYPE_LONGNAME"], [358, 9, 1, "", "GNUTYPE_SPARSE"], [358, 9, 1, "", "GNU_FORMAT"], [358, 6, 1, "", "HeaderError"], [358, 9, 1, "", "LNKTYPE"], [358, 6, 1, "", "LinkOutsideDestinationError"], [358, 6, 1, "", "OutsideDestinationError"], [358, 9, 1, "", "PAX_FORMAT"], [358, 9, 1, "", "REGTYPE"], [358, 6, 1, "", "ReadError"], [358, 9, 1, "", "SYMTYPE"], [358, 6, 1, "", "SpecialFileError"], [358, 6, 1, "", "StreamError"], [358, 6, 1, "", "TarError"], [358, 11, 1, "", "TarFile"], [358, 11, 1, "", "TarInfo"], [358, 9, 1, "", "USTAR_FORMAT"], [358, 12, 1, "", "data_filter"], [358, 12, 1, "", "fully_trusted_filter"], [358, 12, 1, "", "is_tarfile"], [358, 12, 1, "", "open"], [358, 12, 1, "", "tar_filter"], [358, 14, 1, "cmdoption-tarfile-create", "--create"], [358, 14, 1, "cmdoption-tarfile-extract", "--extract"], [358, 14, 1, "cmdoption-tarfile-filter", "--filter"], [358, 14, 1, "cmdoption-tarfile-list", "--list"], [358, 14, 1, "cmdoption-tarfile-test", "--test"], [358, 14, 1, "cmdoption-tarfile-v", "--verbose"], [358, 14, 1, "cmdoption-tarfile-c", "-c"], [358, 14, 1, "cmdoption-tarfile-e", "-e"], [358, 14, 1, "cmdoption-tarfile-l", "-l"], [358, 14, 1, "cmdoption-tarfile-t", "-t"], [358, 14, 1, "cmdoption-tarfile-v", "-v"]], "tarfile.FilterError": [[358, 7, 1, "", "tarinfo"]], "tarfile.TarFile": [[358, 8, 1, "", "add"], [358, 8, 1, "", "addfile"], [358, 8, 1, "", "close"], [358, 7, 1, "", "errorlevel"], [358, 8, 1, "", "extract"], [358, 8, 1, "", "extractall"], [358, 8, 1, "", "extractfile"], [358, 7, 1, "", "extraction_filter"], [358, 8, 1, "", "getmember"], [358, 8, 1, "", "getmembers"], [358, 8, 1, "", "getnames"], [358, 8, 1, "", "gettarinfo"], [358, 8, 1, "", "list"], [358, 8, 1, "", "next"], [358, 8, 1, "", "open"], [358, 7, 1, "", "pax_headers"]], "tarfile.TarInfo": [[358, 7, 1, "", "chksum"], [358, 7, 1, "", "devmajor"], [358, 7, 1, "", "devminor"], [358, 8, 1, "", "frombuf"], [358, 8, 1, "", "fromtarfile"], [358, 7, 1, "", "gid"], [358, 7, 1, "", "gname"], [358, 8, 1, "", "isblk"], [358, 8, 1, "", "ischr"], [358, 8, 1, "", "isdev"], [358, 8, 1, "", "isdir"], [358, 8, 1, "", "isfifo"], [358, 8, 1, "", "isfile"], [358, 8, 1, "", "islnk"], [358, 8, 1, "", "isreg"], [358, 8, 1, "", "issym"], [358, 7, 1, "", "linkname"], [358, 7, 1, "", "mode"], [358, 7, 1, "", "mtime"], [358, 7, 1, "", "name"], [358, 7, 1, "", "offset"], [358, 7, 1, "", "offset_data"], [358, 7, 1, "", "pax_headers"], [358, 8, 1, "", "replace"], [358, 7, 1, "", "size"], [358, 7, 1, "", "sparse"], [358, 8, 1, "", "tobuf"], [358, 7, 1, "", "type"], [358, 7, 1, "", "uid"], [358, 7, 1, "", "uname"]], "telnetlib": [[359, 11, 1, "", "Telnet"]], "telnetlib.Telnet": [[359, 8, 1, "", "close"], [359, 8, 1, "", "expect"], [359, 8, 1, "", "fileno"], [359, 8, 1, "", "get_socket"], [359, 8, 1, "", "interact"], [359, 8, 1, "", "msg"], [359, 8, 1, "", "mt_interact"], [359, 8, 1, "", "open"], [359, 8, 1, "", "read_all"], [359, 8, 1, "", "read_eager"], [359, 8, 1, "", "read_lazy"], [359, 8, 1, "", "read_sb_data"], [359, 8, 1, "", "read_some"], [359, 8, 1, "", "read_until"], [359, 8, 1, "", "read_very_eager"], [359, 8, 1, "", "read_very_lazy"], [359, 8, 1, "", "set_debuglevel"], [359, 8, 1, "", "set_option_negotiation_callback"], [359, 8, 1, "", "write"]], "tempfile": [[360, 12, 1, "", "NamedTemporaryFile"], [360, 11, 1, "", "SpooledTemporaryFile"], [360, 11, 1, "", "TemporaryDirectory"], [360, 12, 1, "", "TemporaryFile"], [360, 12, 1, "", "gettempdir"], [360, 12, 1, "", "gettempdirb"], [360, 12, 1, "", "gettempprefix"], [360, 12, 1, "", "gettempprefixb"], [360, 12, 1, "", "mkdtemp"], [360, 12, 1, "", "mkstemp"], [360, 12, 1, "", "mktemp"], [360, 9, 1, "", "tempdir"]], "tempfile.SpooledTemporaryFile": [[360, 8, 1, "", "rollover"]], "tempfile.TemporaryDirectory": [[360, 8, 1, "", "cleanup"], [360, 7, 1, "", "name"]], "termios": [[361, 9, 1, "", "TCSADRAIN"], [361, 9, 1, "", "TCSAFLUSH"], [361, 9, 1, "", "TCSANOW"], [361, 12, 1, "", "tcdrain"], [361, 12, 1, "", "tcflow"], [361, 12, 1, "", "tcflush"], [361, 12, 1, "", "tcgetattr"], [361, 12, 1, "", "tcgetwinsize"], [361, 12, 1, "", "tcsendbreak"], [361, 12, 1, "", "tcsetattr"], [361, 12, 1, "", "tcsetwinsize"]], "test": [[362, 10, 0, "-", "regrtest"], [362, 10, 0, "-", "support"]], "test.support": [[362, 9, 1, "", "ALWAYS_EQ"], [362, 9, 1, "", "HAVE_DOCSTRINGS"], [362, 9, 1, "", "INTERNET_TIMEOUT"], [362, 9, 1, "", "LARGEST"], [362, 9, 1, "", "LONG_TIMEOUT"], [362, 9, 1, "", "LOOPBACK_TIMEOUT"], [362, 9, 1, "", "MAX_Py_ssize_t"], [362, 9, 1, "", "MISSING_C_DOCSTRINGS"], [362, 11, 1, "", "Matcher"], [362, 9, 1, "", "NEVER_EQ"], [362, 9, 1, "", "PGO"], [362, 9, 1, "", "PIPE_MAX_SIZE"], [362, 9, 1, "", "Py_DEBUG"], [362, 6, 1, "", "ResourceDenied"], [362, 9, 1, "", "SHORT_TIMEOUT"], [362, 9, 1, "", "SMALLEST"], [362, 9, 1, "", "SOCK_MAX_SIZE"], [362, 11, 1, "", "SaveSignals"], [362, 11, 1, "", "SuppressCrashReport"], [362, 9, 1, "", "TEST_DATA_DIR"], [362, 9, 1, "", "TEST_HOME_DIR"], [362, 9, 1, "", "TEST_HTTP_URL"], [362, 9, 1, "", "TEST_SUPPORT_DIR"], [362, 6, 1, "", "TestFailed"], [362, 12, 1, "", "adjust_int_max_str_digits"], [362, 12, 1, "", "anticipate_failure"], [362, 12, 1, "", "args_from_interpreter_flags"], [362, 12, 1, "", "bigaddrspacetest"], [362, 12, 1, "", "bigmemtest"], [362, 12, 1, "", "busy_retry"], [362, 10, 0, "-", "bytecode_helper"], [362, 12, 1, "", "calcobjsize"], [362, 12, 1, "", "calcvobjsize"], [362, 12, 1, "", "captured_stderr"], [362, 12, 1, "", "captured_stdin"], [362, 12, 1, "", "captured_stdout"], [362, 12, 1, "", "catch_unraisable_exception"], [362, 12, 1, "", "check__all__"], [362, 12, 1, "", "check_disallow_instantiation"], [362, 12, 1, "", "check_free_after_iterating"], [362, 12, 1, "", "check_impl_detail"], [362, 12, 1, "", "check_syntax_error"], [362, 12, 1, "", "checksizeof"], [362, 12, 1, "", "cpython_only"], [362, 12, 1, "", "detect_api_mismatch"], [362, 12, 1, "", "disable_faulthandler"], [362, 12, 1, "", "disable_gc"], [362, 12, 1, "", "findfile"], [362, 12, 1, "", "flush_std_streams"], [362, 12, 1, "", "gc_collect"], [362, 12, 1, "", "get_attribute"], [362, 12, 1, "", "get_original_stdout"], [362, 12, 1, "", "get_pagesize"], [362, 12, 1, "", "impl_detail"], [362, 10, 0, "-", "import_helper"], [362, 9, 1, "", "is_android"], [362, 9, 1, "", "is_jython"], [362, 12, 1, "", "is_resource_enabled"], [362, 12, 1, "", "load_package_tests"], [362, 9, 1, "", "max_memuse"], [362, 12, 1, "", "missing_compiler_executable"], [362, 12, 1, "", "no_tracing"], [362, 12, 1, "", "open_urlresource"], [362, 12, 1, "", "optim_args_from_interpreter_flags"], [362, 10, 0, "-", "os_helper"], [362, 12, 1, "", "patch"], [362, 12, 1, "", "print_warning"], [362, 12, 1, "", "python_is_optimized"], [362, 9, 1, "", "real_max_memuse"], [362, 12, 1, "", "reap_children"], [362, 12, 1, "", "record_original_stdout"], [362, 12, 1, "", "refcount_test"], [362, 12, 1, "", "requires"], [362, 12, 1, "", "requires_IEEE_754"], [362, 12, 1, "", "requires_bz2"], [362, 12, 1, "", "requires_docstrings"], [362, 12, 1, "", "requires_freebsd_version"], [362, 12, 1, "", "requires_gzip"], [362, 12, 1, "", "requires_limited_api"], [362, 12, 1, "", "requires_linux_version"], [362, 12, 1, "", "requires_lzma"], [362, 12, 1, "", "requires_mac_version"], [362, 12, 1, "", "requires_resource"], [362, 12, 1, "", "requires_zlib"], [362, 12, 1, "", "run_in_subinterp"], [362, 12, 1, "", "run_with_locale"], [362, 12, 1, "", "run_with_tz"], [362, 10, 0, "-", "script_helper"], [362, 12, 1, "", "set_memlimit"], [362, 12, 1, "", "setswitchinterval"], [362, 12, 1, "", "skip_if_broken_multiprocessing_synchronize"], [362, 12, 1, "", "sleeping_retry"], [362, 10, 0, "-", "socket_helper"], [362, 12, 1, "", "sortdict"], [362, 12, 1, "", "swap_attr"], [362, 12, 1, "", "swap_item"], [362, 12, 1, "", "system_must_validate_cert"], [362, 10, 0, "-", "threading_helper"], [362, 9, 1, "", "unix_shell"], [362, 9, 1, "", "verbose"], [362, 12, 1, "", "wait_process"], [362, 10, 0, "-", "warnings_helper"], [362, 12, 1, "", "with_pymalloc"]], "test.support.Matcher": [[362, 8, 1, "", "match_value"], [362, 8, 1, "", "matches"]], "test.support.SaveSignals": [[362, 8, 1, "", "restore"], [362, 8, 1, "", "save"]], "test.support.bytecode_helper": [[362, 11, 1, "", "BytecodeTestCase"]], "test.support.bytecode_helper.BytecodeTestCase": [[362, 8, 1, "", "assertInBytecode"], [362, 8, 1, "", "assertNotInBytecode"], [362, 8, 1, "", "get_disassembly_as_string"]], "test.support.import_helper": [[362, 11, 1, "", "CleanImport"], [362, 11, 1, "", "DirsOnSysPath"], [362, 12, 1, "", "forget"], [362, 12, 1, "", "import_fresh_module"], [362, 12, 1, "", "import_module"], [362, 12, 1, "", "make_legacy_pyc"], [362, 12, 1, "", "modules_cleanup"], [362, 12, 1, "", "modules_setup"], [362, 12, 1, "", "unload"]], "test.support.os_helper": [[362, 11, 1, "", "EnvironmentVarGuard"], [362, 9, 1, "", "FS_NONASCII"], [362, 11, 1, "", "FakePath"], [362, 9, 1, "", "SAVEDCWD"], [362, 9, 1, "", "TESTFN"], [362, 9, 1, "", "TESTFN_NONASCII"], [362, 9, 1, "", "TESTFN_UNDECODABLE"], [362, 9, 1, "", "TESTFN_UNENCODABLE"], [362, 9, 1, "", "TESTFN_UNICODE"], [362, 12, 1, "", "can_symlink"], [362, 12, 1, "", "can_xattr"], [362, 12, 1, "", "change_cwd"], [362, 12, 1, "", "create_empty_file"], [362, 12, 1, "", "fd_count"], [362, 12, 1, "", "fs_is_case_insensitive"], [362, 12, 1, "", "make_bad_fd"], [362, 12, 1, "", "rmdir"], [362, 12, 1, "", "rmtree"], [362, 12, 1, "", "skip_unless_symlink"], [362, 12, 1, "", "skip_unless_xattr"], [362, 12, 1, "", "temp_cwd"], [362, 12, 1, "", "temp_dir"], [362, 12, 1, "", "temp_umask"], [362, 12, 1, "", "unlink"]], "test.support.os_helper.EnvironmentVarGuard": [[362, 8, 1, "", "set"], [362, 8, 1, "", "unset"]], "test.support.script_helper": [[362, 12, 1, "", "assert_python_failure"], [362, 12, 1, "", "assert_python_ok"], [362, 12, 1, "", "interpreter_requires_environment"], [362, 12, 1, "", "kill_python"], [362, 12, 1, "", "make_pkg"], [362, 12, 1, "", "make_script"], [362, 12, 1, "", "make_zip_pkg"], [362, 12, 1, "", "make_zip_script"], [362, 12, 1, "", "run_python_until_end"], [362, 12, 1, "", "spawn_python"]], "test.support.socket_helper": [[362, 9, 1, "", "IPV6_ENABLED"], [362, 12, 1, "", "bind_port"], [362, 12, 1, "", "bind_unix_socket"], [362, 12, 1, "", "find_unused_port"], [362, 12, 1, "", "skip_unless_bind_unix_socket"], [362, 12, 1, "", "transient_internet"]], "test.support.threading_helper": [[362, 12, 1, "", "catch_threading_exception"], [362, 12, 1, "", "join_thread"], [362, 12, 1, "", "reap_threads"], [362, 12, 1, "", "start_threads"], [362, 12, 1, "", "threading_cleanup"], [362, 12, 1, "", "threading_setup"], [362, 12, 1, "", "wait_threads_exit"]], "test.support.warnings_helper": [[362, 11, 1, "", "WarningsRecorder"], [362, 12, 1, "", "check_no_resource_warning"], [362, 12, 1, "", "check_syntax_warning"], [362, 12, 1, "", "check_warnings"], [362, 12, 1, "", "ignore_warnings"]], "textwrap": [[364, 11, 1, "", "TextWrapper"], [364, 12, 1, "", "dedent"], [364, 12, 1, "", "fill"], [364, 12, 1, "", "indent"], [364, 12, 1, "", "shorten"], [364, 12, 1, "", "wrap"]], "textwrap.TextWrapper": [[364, 7, 1, "", "break_long_words"], [364, 7, 1, "", "break_on_hyphens"], [364, 7, 1, "", "drop_whitespace"], [364, 7, 1, "", "expand_tabs"], [364, 8, 1, "", "fill"], [364, 7, 1, "", "fix_sentence_endings"], [364, 7, 1, "", "initial_indent"], [364, 7, 1, "", "max_lines"], [364, 7, 1, "", "placeholder"], [364, 7, 1, "", "replace_whitespace"], [364, 7, 1, "", "subsequent_indent"], [364, 7, 1, "", "tabsize"], [364, 7, 1, "", "width"], [364, 8, 1, "", "wrap"]], "threading": [[365, 11, 1, "", "Barrier"], [365, 11, 1, "", "BoundedSemaphore"], [365, 6, 1, "", "BrokenBarrierError"], [365, 11, 1, "", "Condition"], [365, 11, 1, "", "Event"], [365, 11, 1, "", "Lock"], [365, 11, 1, "", "RLock"], [365, 11, 1, "", "Semaphore"], [365, 9, 1, "", "TIMEOUT_MAX"], [365, 11, 1, "", "Thread"], [365, 11, 1, "", "Timer"], [365, 9, 1, "", "__excepthook__"], [365, 12, 1, "", "active_count"], [365, 12, 1, "", "current_thread"], [365, 12, 1, "", "enumerate"], [365, 12, 1, "", "excepthook"], [365, 12, 1, "", "get_ident"], [365, 12, 1, "", "get_native_id"], [365, 12, 1, "", "getprofile"], [365, 12, 1, "", "gettrace"], [365, 11, 1, "", "local"], [365, 12, 1, "", "main_thread"], [365, 12, 1, "", "setprofile"], [365, 12, 1, "", "setprofile_all_threads"], [365, 12, 1, "", "settrace"], [365, 12, 1, "", "settrace_all_threads"], [365, 12, 1, "", "stack_size"]], "threading.Barrier": [[365, 8, 1, "", "abort"], [365, 7, 1, "", "broken"], [365, 7, 1, "", "n_waiting"], [365, 7, 1, "", "parties"], [365, 8, 1, "", "reset"], [365, 8, 1, "", "wait"]], "threading.Condition": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "notify"], [365, 8, 1, "", "notify_all"], [365, 8, 1, "", "release"], [365, 8, 1, "", "wait"], [365, 8, 1, "", "wait_for"]], "threading.Event": [[365, 8, 1, "", "clear"], [365, 8, 1, "", "is_set"], [365, 8, 1, "", "set"], [365, 8, 1, "", "wait"]], "threading.Lock": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "locked"], [365, 8, 1, "", "release"]], "threading.RLock": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "release"]], "threading.Semaphore": [[365, 8, 1, "", "acquire"], [365, 8, 1, "", "release"]], "threading.Thread": [[365, 7, 1, "", "daemon"], [365, 8, 1, "", "getName"], [365, 7, 1, "", "ident"], [365, 8, 1, "", "isDaemon"], [365, 8, 1, "", "is_alive"], [365, 8, 1, "", "join"], [365, 7, 1, "", "name"], [365, 7, 1, "", "native_id"], [365, 8, 1, "", "run"], [365, 8, 1, "", "setDaemon"], [365, 8, 1, "", "setName"], [365, 8, 1, "", "start"]], "threading.Timer": [[365, 8, 1, "", "cancel"]], "time": [[366, 9, 1, "", "CLOCK_BOOTTIME"], [366, 9, 1, "", "CLOCK_HIGHRES"], [366, 9, 1, "", "CLOCK_MONOTONIC"], [366, 9, 1, "", "CLOCK_MONOTONIC_RAW"], [366, 9, 1, "", "CLOCK_PROCESS_CPUTIME_ID"], [366, 9, 1, "", "CLOCK_PROF"], [366, 9, 1, "", "CLOCK_REALTIME"], [366, 9, 1, "", "CLOCK_TAI"], [366, 9, 1, "", "CLOCK_THREAD_CPUTIME_ID"], [366, 9, 1, "", "CLOCK_UPTIME"], [366, 9, 1, "", "CLOCK_UPTIME_RAW"], [366, 9, 1, "", "altzone"], [366, 12, 1, "", "asctime"], [366, 12, 1, "", "clock_getres"], [366, 12, 1, "", "clock_gettime"], [366, 12, 1, "", "clock_gettime_ns"], [366, 12, 1, "", "clock_settime"], [366, 12, 1, "", "clock_settime_ns"], [366, 12, 1, "", "ctime"], [366, 9, 1, "", "daylight"], [366, 12, 1, "", "get_clock_info"], [366, 12, 1, "", "gmtime"], [366, 12, 1, "", "localtime"], [366, 12, 1, "", "mktime"], [366, 12, 1, "", "monotonic"], [366, 12, 1, "", "monotonic_ns"], [366, 12, 1, "", "perf_counter"], [366, 12, 1, "", "perf_counter_ns"], [366, 12, 1, "", "process_time"], [366, 12, 1, "", "process_time_ns"], [366, 12, 1, "", "pthread_getcpuclockid"], [366, 12, 1, "", "sleep"], [366, 12, 1, "", "strftime"], [366, 12, 1, "", "strptime"], [366, 11, 1, "", "struct_time"], [366, 12, 1, "", "thread_time"], [366, 12, 1, "", "thread_time_ns"], [366, 12, 1, "", "time"], [366, 12, 1, "", "time_ns"], [366, 9, 1, "", "timezone"], [366, 9, 1, "", "tzname"], [366, 12, 1, "", "tzset"]], "time.struct_time": [[366, 7, 1, "", "tm_gmtoff"], [366, 7, 1, "", "tm_hour"], [366, 7, 1, "", "tm_isdst"], [366, 7, 1, "", "tm_mday"], [366, 7, 1, "", "tm_min"], [366, 7, 1, "", "tm_mon"], [366, 7, 1, "", "tm_sec"], [366, 7, 1, "", "tm_wday"], [366, 7, 1, "", "tm_yday"], [366, 7, 1, "", "tm_year"], [366, 7, 1, "", "tm_zone"]], "timeit": [[367, 11, 1, "", "Timer"], [367, 12, 1, "", "default_timer"], [367, 12, 1, "", "repeat"], [367, 12, 1, "", "timeit"], [367, 14, 1, "cmdoption-timeit-h", "--help"], [367, 14, 1, "cmdoption-timeit-n", "--number"], [367, 14, 1, "cmdoption-timeit-p", "--process"], [367, 14, 1, "cmdoption-timeit-r", "--repeat"], [367, 14, 1, "cmdoption-timeit-s", "--setup"], [367, 14, 1, "cmdoption-timeit-u", "--unit"], [367, 14, 1, "cmdoption-timeit-v", "--verbose"], [367, 14, 1, "cmdoption-timeit-h", "-h"], [367, 14, 1, "cmdoption-timeit-n", "-n"], [367, 14, 1, "cmdoption-timeit-p", "-p"], [367, 14, 1, "cmdoption-timeit-r", "-r"], [367, 14, 1, "cmdoption-timeit-s", "-s"], [367, 14, 1, "cmdoption-timeit-u", "-u"], [367, 14, 1, "cmdoption-timeit-v", "-v"]], "timeit.Timer": [[367, 8, 1, "", "autorange"], [367, 8, 1, "", "print_exc"], [367, 8, 1, "", "repeat"], [367, 8, 1, "", "timeit"]], "tkinter": [[369, 12, 1, "", "Tcl"], [369, 11, 1, "", "Tk"], [370, 10, 0, "-", "colorchooser"], [189, 10, 0, "-", "commondialog"], [371, 10, 0, "-", "dnd"], [189, 10, 0, "-", "filedialog"], [372, 10, 0, "-", "font"], [373, 10, 0, "-", "messagebox"], [374, 10, 0, "-", "scrolledtext"], [189, 10, 0, "-", "simpledialog"], [375, 10, 0, "-", "tix"], [376, 10, 0, "-", "ttk"]], "tkinter.Tk": [[369, 7, 1, "", "children"], [369, 7, 1, "", "master"], [369, 7, 1, "", "tk"]], "tkinter.colorchooser": [[370, 11, 1, "", "Chooser"], [370, 12, 1, "", "askcolor"]], "tkinter.commondialog": [[189, 11, 1, "", "Dialog"]], "tkinter.commondialog.Dialog": [[189, 8, 1, "", "show"]], "tkinter.dnd": [[371, 11, 1, "", "DndHandler"], [371, 12, 1, "", "dnd_start"]], "tkinter.dnd.DndHandler": [[371, 8, 1, "", "cancel"], [371, 8, 1, "", "finish"], [371, 8, 1, "", "on_motion"], [371, 8, 1, "", "on_release"]], "tkinter.filedialog": [[189, 11, 1, "", "Directory"], [189, 11, 1, "", "FileDialog"], [189, 11, 1, "", "LoadFileDialog"], [189, 11, 1, "", "Open"], [189, 11, 1, "", "SaveAs"], [189, 11, 1, "", "SaveFileDialog"], [189, 12, 1, "", "askdirectory"], [189, 12, 1, "", "askopenfile"], [189, 12, 1, "", "askopenfilename"], [189, 12, 1, "", "askopenfilenames"], [189, 12, 1, "", "askopenfiles"], [189, 12, 1, "", "asksaveasfile"], [189, 12, 1, "", "asksaveasfilename"]], "tkinter.filedialog.FileDialog": [[189, 8, 1, "", "cancel_command"], [189, 8, 1, "", "dirs_double_event"], [189, 8, 1, "", "dirs_select_event"], [189, 8, 1, "", "files_double_event"], [189, 8, 1, "", "files_select_event"], [189, 8, 1, "", "filter_command"], [189, 8, 1, "", "get_filter"], [189, 8, 1, "", "get_selection"], [189, 8, 1, "", "go"], [189, 8, 1, "", "ok_event"], [189, 8, 1, "", "quit"], [189, 8, 1, "", "set_filter"], [189, 8, 1, "", "set_selection"]], "tkinter.filedialog.LoadFileDialog": [[189, 8, 1, "", "ok_command"]], "tkinter.filedialog.SaveFileDialog": [[189, 8, 1, "", "ok_command"]], "tkinter.font": [[372, 9, 1, "", "BOLD"], [372, 11, 1, "", "Font"], [372, 9, 1, "", "ITALIC"], [372, 9, 1, "", "NORMAL"], [372, 9, 1, "", "ROMAN"], [372, 12, 1, "", "families"], [372, 12, 1, "", "names"], [372, 12, 1, "", "nametofont"]], "tkinter.font.Font": [[372, 8, 1, "", "actual"], [372, 8, 1, "", "cget"], [372, 8, 1, "", "config"], [372, 8, 1, "", "copy"], [372, 8, 1, "", "measure"], [372, 8, 1, "", "metrics"]], "tkinter.messagebox": [[373, 9, 1, "", "ABORT"], [373, 9, 1, "", "ABORTRETRYIGNORE"], [373, 9, 1, "", "CANCEL"], [373, 9, 1, "", "ERROR"], [373, 9, 1, "", "IGNORE"], [373, 9, 1, "", "INFO"], [373, 11, 1, "", "Message"], [373, 9, 1, "", "NO"], [373, 9, 1, "", "OK"], [373, 9, 1, "", "OKCANCEL"], [373, 9, 1, "", "QUESTION"], [373, 9, 1, "", "RETRY"], [373, 9, 1, "", "RETRYCANCEL"], [373, 9, 1, "", "WARNING"], [373, 9, 1, "", "YES"], [373, 9, 1, "", "YESNO"], [373, 9, 1, "", "YESNOCANCEL"], [373, 12, 1, "", "askokcancel"], [373, 12, 1, "", "askquestion"], [373, 12, 1, "", "askretrycancel"], [373, 12, 1, "", "askyesno"], [373, 12, 1, "", "askyesnocancel"], [373, 12, 1, "", "showerror"], [373, 12, 1, "", "showinfo"], [373, 12, 1, "", "showwarning"]], "tkinter.messagebox.Message": [[373, 8, 1, "", "show"]], "tkinter.scrolledtext": [[374, 11, 1, "", "ScrolledText"]], "tkinter.scrolledtext.ScrolledText": [[374, 7, 1, "", "frame"], [374, 7, 1, "", "vbar"]], "tkinter.simpledialog": [[189, 11, 1, "", "Dialog"], [189, 12, 1, "", "askfloat"], [189, 12, 1, "", "askinteger"], [189, 12, 1, "", "askstring"]], "tkinter.simpledialog.Dialog": [[189, 8, 1, "", "body"], [189, 8, 1, "", "buttonbox"]], "tkinter.tix": [[375, 11, 1, "", "Balloon"], [375, 11, 1, "", "ButtonBox"], [375, 11, 1, "", "CheckList"], [375, 11, 1, "", "ComboBox"], [375, 11, 1, "", "Control"], [375, 11, 1, "", "DirList"], [375, 11, 1, "", "DirSelectBox"], [375, 11, 1, "", "DirSelectDialog"], [375, 11, 1, "", "DirTree"], [375, 11, 1, "", "ExFileSelectBox"], [375, 11, 1, "", "FileEntry"], [375, 11, 1, "", "FileSelectBox"], [375, 11, 1, "", "Form"], [375, 11, 1, "", "HList"], [375, 11, 1, "", "InputOnly"], [375, 11, 1, "", "LabelEntry"], [375, 11, 1, "", "LabelFrame"], [375, 11, 1, "", "ListNoteBook"], [375, 11, 1, "", "Meter"], [375, 11, 1, "", "NoteBook"], [375, 11, 1, "", "OptionMenu"], [375, 11, 1, "", "PanedWindow"], [375, 11, 1, "", "PopupMenu"], [375, 11, 1, "", "Select"], [375, 11, 1, "", "StdButtonBox"], [375, 11, 1, "", "TList"], [375, 11, 1, "", "Tk"], [375, 11, 1, "", "Tree"], [375, 11, 1, "", "tixCommand"]], "tkinter.tix.tixCommand": [[375, 8, 1, "", "tix_addbitmapdir"], [375, 8, 1, "", "tix_cget"], [375, 8, 1, "", "tix_configure"], [375, 8, 1, "", "tix_filedialog"], [375, 8, 1, "", "tix_getbitmap"], [375, 8, 1, "", "tix_getimage"], [375, 8, 1, "", "tix_option_get"], [375, 8, 1, "", "tix_resetoptions"]], "tkinter.ttk": [[376, 11, 1, "", "Combobox"], [376, 11, 1, "", "Notebook"], [376, 11, 1, "", "Progressbar"], [376, 11, 1, "", "Spinbox"], [376, 11, 1, "", "Style"], [376, 11, 1, "", "Treeview"], [376, 11, 1, "", "Widget"]], "tkinter.ttk.Combobox": [[376, 8, 1, "", "current"], [376, 8, 1, "", "get"], [376, 8, 1, "", "set"]], "tkinter.ttk.Notebook": [[376, 8, 1, "", "add"], [376, 8, 1, "", "enable_traversal"], [376, 8, 1, "", "forget"], [376, 8, 1, "", "hide"], [376, 8, 1, "", "identify"], [376, 8, 1, "", "index"], [376, 8, 1, "", "insert"], [376, 8, 1, "", "select"], [376, 8, 1, "", "tab"], [376, 8, 1, "", "tabs"]], "tkinter.ttk.Progressbar": [[376, 8, 1, "", "start"], [376, 8, 1, "", "step"], [376, 8, 1, "", "stop"]], "tkinter.ttk.Spinbox": [[376, 8, 1, "", "get"], [376, 8, 1, "", "set"]], "tkinter.ttk.Style": [[376, 8, 1, "", "configure"], [376, 8, 1, "", "element_create"], [376, 8, 1, "", "element_names"], [376, 8, 1, "", "element_options"], [376, 8, 1, "", "layout"], [376, 8, 1, "", "lookup"], [376, 8, 1, "", "map"], [376, 8, 1, "", "theme_create"], [376, 8, 1, "", "theme_names"], [376, 8, 1, "", "theme_settings"], [376, 8, 1, "", "theme_use"]], "tkinter.ttk.Treeview": [[376, 8, 1, "", "bbox"], [376, 8, 1, "", "column"], [376, 8, 1, "", "delete"], [376, 8, 1, "", "detach"], [376, 8, 1, "", "exists"], [376, 8, 1, "", "focus"], [376, 8, 1, "", "get_children"], [376, 8, 1, "", "heading"], [376, 8, 1, "", "identify"], [376, 8, 1, "", "identify_column"], [376, 8, 1, "", "identify_element"], [376, 8, 1, "", "identify_region"], [376, 8, 1, "", "identify_row"], [376, 8, 1, "", "index"], [376, 8, 1, "", "insert"], [376, 8, 1, "", "item"], [376, 8, 1, "", "move"], [376, 8, 1, "", "next"], [376, 8, 1, "", "parent"], [376, 8, 1, "", "prev"], [376, 8, 1, "", "reattach"], [376, 8, 1, "", "see"], [376, 8, 1, "", "selection"], [376, 8, 1, "", "selection_add"], [376, 8, 1, "", "selection_remove"], [376, 8, 1, "", "selection_set"], [376, 8, 1, "", "selection_toggle"], [376, 8, 1, "", "set"], [376, 8, 1, "", "set_children"], [376, 8, 1, "", "tag_bind"], [376, 8, 1, "", "tag_configure"], [376, 8, 1, "", "tag_has"], [376, 8, 1, "", "xview"], [376, 8, 1, "", "yview"]], "tkinter.ttk.Widget": [[376, 8, 1, "", "identify"], [376, 8, 1, "", "instate"], [376, 8, 1, "", "state"]], "token": [[377, 9, 1, "", "AMPER"], [377, 9, 1, "", "AMPEREQUAL"], [377, 9, 1, "", "ASYNC"], [377, 9, 1, "", "AT"], [377, 9, 1, "", "ATEQUAL"], [377, 9, 1, "", "AWAIT"], [377, 9, 1, "", "CIRCUMFLEX"], [377, 9, 1, "", "CIRCUMFLEXEQUAL"], [377, 9, 1, "", "COLON"], [377, 9, 1, "", "COLONEQUAL"], [377, 9, 1, "", "COMMA"], [377, 9, 1, "", "COMMENT"], [377, 9, 1, "", "DEDENT"], [377, 9, 1, "", "DOT"], [377, 9, 1, "", "DOUBLESLASH"], [377, 9, 1, "", "DOUBLESLASHEQUAL"], [377, 9, 1, "", "DOUBLESTAR"], [377, 9, 1, "", "DOUBLESTAREQUAL"], [377, 9, 1, "", "ELLIPSIS"], [377, 9, 1, "", "ENCODING"], [377, 9, 1, "", "ENDMARKER"], [377, 9, 1, "", "EQEQUAL"], [377, 9, 1, "", "EQUAL"], [377, 9, 1, "", "ERRORTOKEN"], [377, 9, 1, "", "EXCLAMATION"], [377, 9, 1, "", "FSTRING_END"], [377, 9, 1, "", "FSTRING_MIDDLE"], [377, 9, 1, "", "FSTRING_START"], [377, 9, 1, "", "GREATER"], [377, 9, 1, "", "GREATEREQUAL"], [377, 9, 1, "", "INDENT"], [377, 12, 1, "", "ISEOF"], [377, 12, 1, "", "ISNONTERMINAL"], [377, 12, 1, "", "ISTERMINAL"], [377, 9, 1, "", "LBRACE"], [377, 9, 1, "", "LEFTSHIFT"], [377, 9, 1, "", "LEFTSHIFTEQUAL"], [377, 9, 1, "", "LESS"], [377, 9, 1, "", "LESSEQUAL"], [377, 9, 1, "", "LPAR"], [377, 9, 1, "", "LSQB"], [377, 9, 1, "", "MINEQUAL"], [377, 9, 1, "", "MINUS"], [377, 9, 1, "", "NAME"], [377, 9, 1, "", "NEWLINE"], [377, 9, 1, "", "NL"], [377, 9, 1, "", "NOTEQUAL"], [377, 9, 1, "", "NT_OFFSET"], [377, 9, 1, "", "NUMBER"], [377, 9, 1, "", "N_TOKENS"], [377, 9, 1, "", "OP"], [377, 9, 1, "", "PERCENT"], [377, 9, 1, "", "PERCENTEQUAL"], [377, 9, 1, "", "PLUS"], [377, 9, 1, "", "PLUSEQUAL"], [377, 9, 1, "", "RARROW"], [377, 9, 1, "", "RBRACE"], [377, 9, 1, "", "RIGHTSHIFT"], [377, 9, 1, "", "RIGHTSHIFTEQUAL"], [377, 9, 1, "", "RPAR"], [377, 9, 1, "", "RSQB"], [377, 9, 1, "", "SEMI"], [377, 9, 1, "", "SLASH"], [377, 9, 1, "", "SLASHEQUAL"], [377, 9, 1, "", "SOFT_KEYWORD"], [377, 9, 1, "", "STAR"], [377, 9, 1, "", "STAREQUAL"], [377, 9, 1, "", "STRING"], [377, 9, 1, "", "TILDE"], [377, 9, 1, "", "TYPE_COMMENT"], [377, 9, 1, "", "TYPE_IGNORE"], [377, 9, 1, "", "VBAR"], [377, 9, 1, "", "VBAREQUAL"], [377, 9, 1, "", "tok_name"]], "tokenize": [[378, 6, 1, "", "TokenError"], [378, 12, 1, "", "detect_encoding"], [378, 12, 1, "", "generate_tokens"], [378, 12, 1, "", "open"], [378, 12, 1, "", "tokenize"], [378, 12, 1, "", "untokenize"], [378, 14, 1, "cmdoption-tokenize-e", "--exact"], [378, 14, 1, "cmdoption-tokenize-h", "--help"], [378, 14, 1, "cmdoption-tokenize-e", "-e"], [378, 14, 1, "cmdoption-tokenize-h", "-h"]], "tomllib": [[379, 6, 1, "", "TOMLDecodeError"], [379, 12, 1, "", "load"], [379, 12, 1, "", "loads"]], "trace": [[380, 11, 1, "", "CoverageResults"], [380, 11, 1, "", "Trace"], [380, 14, 1, "cmdoption-trace-c", "--count"], [380, 14, 1, "cmdoption-trace-C", "--coverdir"], [380, 14, 1, "cmdoption-trace-f", "--file"], [380, 14, 1, "cmdoption-trace-help", "--help"], [380, 14, 1, "cmdoption-trace-ignore-dir", "--ignore-dir"], [380, 14, 1, "cmdoption-trace-ignore-module", "--ignore-module"], [380, 14, 1, "cmdoption-trace-l", "--listfuncs"], [380, 14, 1, "cmdoption-trace-m", "--missing"], [380, 14, 1, "cmdoption-trace-R", "--no-report"], [380, 14, 1, "cmdoption-trace-r", "--report"], [380, 14, 1, "cmdoption-trace-s", "--summary"], [380, 14, 1, "cmdoption-trace-g", "--timing"], [380, 14, 1, "cmdoption-trace-t", "--trace"], [380, 14, 1, "cmdoption-trace-T", "--trackcalls"], [380, 14, 1, "cmdoption-trace-version", "--version"], [380, 14, 1, "cmdoption-trace-C", "-C"], [380, 14, 1, "cmdoption-trace-R", "-R"], [380, 14, 1, "cmdoption-trace-T", "-T"], [380, 14, 1, "cmdoption-trace-c", "-c"], [380, 14, 1, "cmdoption-trace-f", "-f"], [380, 14, 1, "cmdoption-trace-g", "-g"], [380, 14, 1, "cmdoption-trace-l", "-l"], [380, 14, 1, "cmdoption-trace-m", "-m"], [380, 14, 1, "cmdoption-trace-r", "-r"], [380, 14, 1, "cmdoption-trace-s", "-s"], [380, 14, 1, "cmdoption-trace-t", "-t"]], "trace.CoverageResults": [[380, 8, 1, "", "update"], [380, 8, 1, "", "write_results"]], "trace.Trace": [[380, 8, 1, "", "results"], [380, 8, 1, "", "run"], [380, 8, 1, "", "runctx"], [380, 8, 1, "", "runfunc"]], "traceback": [[381, 11, 1, "", "FrameSummary"], [381, 11, 1, "", "StackSummary"], [381, 11, 1, "", "TracebackException"], [381, 12, 1, "", "clear_frames"], [381, 12, 1, "", "extract_stack"], [381, 12, 1, "", "extract_tb"], [381, 12, 1, "", "format_exc"], [381, 12, 1, "", "format_exception"], [381, 12, 1, "", "format_exception_only"], [381, 12, 1, "", "format_list"], [381, 12, 1, "", "format_stack"], [381, 12, 1, "", "format_tb"], [381, 12, 1, "", "print_exc"], [381, 12, 1, "", "print_exception"], [381, 12, 1, "", "print_last"], [381, 12, 1, "", "print_stack"], [381, 12, 1, "", "print_tb"], [428, 7, 1, "", "tb_frame"], [428, 7, 1, "", "tb_lasti"], [428, 7, 1, "", "tb_lineno"], [428, 7, 1, "", "tb_next"], [381, 12, 1, "", "walk_stack"], [381, 12, 1, "", "walk_tb"]], "traceback.FrameSummary": [[381, 7, 1, "", "filename"], [381, 7, 1, "", "line"], [381, 7, 1, "", "lineno"], [381, 7, 1, "", "name"]], "traceback.StackSummary": [[381, 8, 1, "", "extract"], [381, 8, 1, "", "format"], [381, 8, 1, "", "format_frame_summary"], [381, 8, 1, "", "from_list"]], "traceback.TracebackException": [[381, 7, 1, "", "__cause__"], [381, 7, 1, "", "__context__"], [381, 7, 1, "", "__notes__"], [381, 7, 1, "", "__suppress_context__"], [381, 7, 1, "", "end_lineno"], [381, 7, 1, "", "end_offset"], [381, 7, 1, "", "exc_type"], [381, 7, 1, "", "exceptions"], [381, 7, 1, "", "filename"], [381, 8, 1, "", "format"], [381, 8, 1, "", "format_exception_only"], [381, 8, 1, "", "from_exception"], [381, 7, 1, "", "lineno"], [381, 7, 1, "", "msg"], [381, 7, 1, "", "offset"], [381, 8, 1, "", "print"], [381, 7, 1, "", "stack"], [381, 7, 1, "", "text"]], "tracemalloc": [[382, 11, 1, "", "DomainFilter"], [382, 11, 1, "", "Filter"], [382, 11, 1, "", "Frame"], [382, 11, 1, "", "Snapshot"], [382, 11, 1, "", "Statistic"], [382, 11, 1, "", "StatisticDiff"], [382, 11, 1, "", "Trace"], [382, 11, 1, "", "Traceback"], [382, 12, 1, "", "clear_traces"], [382, 12, 1, "", "get_object_traceback"], [382, 12, 1, "", "get_traceback_limit"], [382, 12, 1, "", "get_traced_memory"], [382, 12, 1, "", "get_tracemalloc_memory"], [382, 12, 1, "", "is_tracing"], [382, 12, 1, "", "reset_peak"], [382, 12, 1, "", "start"], [382, 12, 1, "", "stop"], [382, 12, 1, "", "take_snapshot"]], "tracemalloc.DomainFilter": [[382, 7, 1, "", "domain"], [382, 7, 1, "", "inclusive"]], "tracemalloc.Filter": [[382, 7, 1, "", "all_frames"], [382, 7, 1, "", "domain"], [382, 7, 1, "", "filename_pattern"], [382, 7, 1, "", "inclusive"], [382, 7, 1, "", "lineno"]], "tracemalloc.Frame": [[382, 7, 1, "", "filename"], [382, 7, 1, "", "lineno"]], "tracemalloc.Snapshot": [[382, 8, 1, "", "compare_to"], [382, 8, 1, "", "dump"], [382, 8, 1, "", "filter_traces"], [382, 8, 1, "", "load"], [382, 8, 1, "", "statistics"], [382, 7, 1, "", "traceback_limit"], [382, 7, 1, "", "traces"]], "tracemalloc.Statistic": [[382, 7, 1, "", "count"], [382, 7, 1, "", "size"], [382, 7, 1, "", "traceback"]], "tracemalloc.StatisticDiff": [[382, 7, 1, "", "count"], [382, 7, 1, "", "count_diff"], [382, 7, 1, "", "size"], [382, 7, 1, "", "size_diff"], [382, 7, 1, "", "traceback"]], "tracemalloc.Trace": [[382, 7, 1, "", "domain"], [382, 7, 1, "", "size"], [382, 7, 1, "", "traceback"]], "tracemalloc.Traceback": [[382, 8, 1, "", "format"], [382, 7, 1, "", "total_nframe"]], "tty": [[383, 12, 1, "", "cfmakecbreak"], [383, 12, 1, "", "cfmakeraw"], [383, 12, 1, "", "setcbreak"], [383, 12, 1, "", "setraw"]], "turtle": [[384, 11, 1, "", "RawPen"], [384, 11, 1, "", "RawTurtle"], [384, 11, 1, "", "Screen"], [384, 11, 1, "", "ScrolledCanvas"], [384, 11, 1, "", "Shape"], [384, 11, 1, "", "Turtle"], [384, 11, 1, "", "TurtleScreen"], [384, 11, 1, "", "Vec2D"], [384, 12, 1, "", "addshape"], [384, 12, 1, "", "back"], [384, 12, 1, "", "backward"], [384, 12, 1, "", "begin_fill"], [384, 12, 1, "", "begin_poly"], [384, 12, 1, "", "bgcolor"], [384, 12, 1, "", "bgpic"], [384, 12, 1, "", "bk"], [384, 12, 1, "", "bye"], [384, 12, 1, "", "circle"], [384, 12, 1, "", "clear"], [384, 12, 1, "", "clearscreen"], [384, 12, 1, "", "clearstamp"], [384, 12, 1, "", "clearstamps"], [384, 12, 1, "", "clone"], [384, 12, 1, "", "color"], [384, 12, 1, "", "colormode"], [384, 12, 1, "", "degrees"], [384, 12, 1, "", "delay"], [384, 12, 1, "", "distance"], [384, 12, 1, "", "done"], [384, 12, 1, "", "dot"], [384, 12, 1, "", "down"], [384, 12, 1, "", "end_fill"], [384, 12, 1, "", "end_poly"], [384, 12, 1, "", "exitonclick"], [384, 12, 1, "", "fd"], [384, 12, 1, "", "fillcolor"], [384, 12, 1, "", "filling"], [384, 12, 1, "", "forward"], [384, 12, 1, "", "get_poly"], [384, 12, 1, "", "get_shapepoly"], [384, 12, 1, "", "getcanvas"], [384, 12, 1, "", "getpen"], [384, 12, 1, "", "getscreen"], [384, 12, 1, "", "getshapes"], [384, 12, 1, "", "getturtle"], [384, 12, 1, "", "goto"], [384, 12, 1, "", "heading"], [384, 12, 1, "", "hideturtle"], [384, 12, 1, "", "home"], [384, 12, 1, "", "ht"], [384, 12, 1, "", "isdown"], [384, 12, 1, "", "isvisible"], [384, 12, 1, "", "left"], [384, 12, 1, "", "listen"], [384, 12, 1, "", "lt"], [384, 12, 1, "", "mainloop"], [384, 12, 1, "", "mode"], [384, 12, 1, "", "numinput"], [384, 12, 1, "", "onclick"], [384, 12, 1, "", "ondrag"], [384, 12, 1, "", "onkey"], [384, 12, 1, "", "onkeypress"], [384, 12, 1, "", "onkeyrelease"], [384, 12, 1, "", "onrelease"], [384, 12, 1, "", "onscreenclick"], [384, 12, 1, "", "ontimer"], [384, 12, 1, "", "pd"], [384, 12, 1, "", "pen"], [384, 12, 1, "", "pencolor"], [384, 12, 1, "", "pendown"], [384, 12, 1, "", "pensize"], [384, 12, 1, "", "penup"], [384, 12, 1, "", "pos"], [384, 12, 1, "", "position"], [384, 12, 1, "", "pu"], [384, 12, 1, "", "radians"], [384, 12, 1, "", "register_shape"], [384, 12, 1, "", "reset"], [384, 12, 1, "", "resetscreen"], [384, 12, 1, "", "resizemode"], [384, 12, 1, "", "right"], [384, 12, 1, "", "rt"], [384, 12, 1, "", "screensize"], [384, 12, 1, "", "seth"], [384, 12, 1, "", "setheading"], [384, 12, 1, "", "setpos"], [384, 12, 1, "", "setposition"], [384, 12, 1, "", "settiltangle"], [384, 12, 1, "", "setundobuffer"], [384, 12, 1, "", "setup"], [384, 12, 1, "", "setworldcoordinates"], [384, 12, 1, "", "setx"], [384, 12, 1, "", "sety"], [384, 12, 1, "", "shape"], [384, 12, 1, "", "shapesize"], [384, 12, 1, "", "shapetransform"], [384, 12, 1, "", "shearfactor"], [384, 12, 1, "", "showturtle"], [384, 12, 1, "", "speed"], [384, 12, 1, "", "st"], [384, 12, 1, "", "stamp"], [384, 12, 1, "", "teleport"], [384, 12, 1, "", "textinput"], [384, 12, 1, "", "tilt"], [384, 12, 1, "", "tiltangle"], [384, 12, 1, "", "title"], [384, 12, 1, "", "towards"], [384, 12, 1, "", "tracer"], [384, 12, 1, "", "turtles"], [384, 12, 1, "", "turtlesize"], [384, 12, 1, "", "undo"], [384, 12, 1, "", "undobufferentries"], [384, 12, 1, "", "up"], [384, 12, 1, "", "update"], [384, 12, 1, "", "width"], [384, 12, 1, "", "window_height"], [384, 12, 1, "", "window_width"], [384, 12, 1, "", "write"], [384, 12, 1, "", "write_docstringdict"], [384, 12, 1, "", "xcor"], [384, 12, 1, "", "ycor"]], "turtle.Shape": [[384, 8, 1, "", "addcomponent"]], "types": [[385, 9, 1, "", "AsyncGeneratorType"], [385, 9, 1, "", "BuiltinFunctionType"], [385, 9, 1, "", "BuiltinMethodType"], [385, 9, 1, "", "CellType"], [385, 9, 1, "", "ClassMethodDescriptorType"], [385, 11, 1, "", "CodeType"], [385, 9, 1, "", "CoroutineType"], [385, 12, 1, "", "DynamicClassAttribute"], [385, 9, 1, "", "EllipsisType"], [385, 9, 1, "", "FrameType"], [385, 9, 1, "", "FunctionType"], [385, 9, 1, "", "GeneratorType"], [385, 11, 1, "", "GenericAlias"], [385, 9, 1, "", "GetSetDescriptorType"], [385, 9, 1, "", "LambdaType"], [385, 11, 1, "", "MappingProxyType"], [385, 9, 1, "", "MemberDescriptorType"], [385, 9, 1, "", "MethodDescriptorType"], [385, 9, 1, "", "MethodType"], [385, 9, 1, "", "MethodWrapperType"], [385, 11, 1, "", "ModuleType"], [385, 9, 1, "", "NoneType"], [385, 9, 1, "", "NotImplementedType"], [385, 11, 1, "", "SimpleNamespace"], [385, 11, 1, "", "TracebackType"], [385, 11, 1, "", "UnionType"], [385, 9, 1, "", "WrapperDescriptorType"], [385, 12, 1, "", "coroutine"], [385, 12, 1, "", "get_original_bases"], [385, 12, 1, "", "new_class"], [385, 12, 1, "", "prepare_class"], [385, 12, 1, "", "resolve_bases"]], "types.MappingProxyType": [[385, 8, 1, "", "copy"], [385, 8, 1, "", "get"], [385, 8, 1, "", "items"], [385, 8, 1, "", "keys"], [385, 8, 1, "", "values"]], "types.ModuleType": [[385, 7, 1, "", "__doc__"], [385, 7, 1, "", "__loader__"], [385, 7, 1, "", "__name__"], [385, 7, 1, "", "__package__"], [385, 7, 1, "", "__spec__"]], "typing": [[386, 11, 1, "", "AbstractSet"], [386, 9, 1, "", "Annotated"], [386, 9, 1, "", "Any"], [386, 9, 1, "", "AnyStr"], [386, 11, 1, "", "AsyncContextManager"], [386, 11, 1, "", "AsyncGenerator"], [386, 11, 1, "", "AsyncIterable"], [386, 11, 1, "", "AsyncIterator"], [386, 11, 1, "", "Awaitable"], [386, 11, 1, "", "BinaryIO"], [386, 11, 1, "", "ByteString"], [386, 9, 1, "", "Callable"], [386, 11, 1, "", "ChainMap"], [386, 9, 1, "", "ClassVar"], [386, 11, 1, "", "Collection"], [386, 9, 1, "", "Concatenate"], [386, 11, 1, "", "Container"], [386, 11, 1, "", "ContextManager"], [386, 11, 1, "", "Coroutine"], [386, 11, 1, "", "Counter"], [386, 11, 1, "", "DefaultDict"], [386, 11, 1, "", "Deque"], [386, 11, 1, "", "Dict"], [386, 9, 1, "", "Final"], [386, 11, 1, "", "ForwardRef"], [386, 11, 1, "", "FrozenSet"], [386, 11, 1, "", "Generator"], [386, 11, 1, "", "Generic"], [386, 11, 1, "", "Hashable"], [386, 11, 1, "", "IO"], [386, 11, 1, "", "ItemsView"], [386, 11, 1, "", "Iterable"], [386, 11, 1, "", "Iterator"], [386, 11, 1, "", "KeysView"], [386, 11, 1, "", "List"], [386, 9, 1, "", "Literal"], [386, 9, 1, "", "LiteralString"], [386, 11, 1, "", "Mapping"], [386, 11, 1, "", "MappingView"], [386, 11, 1, "", "Match"], [386, 11, 1, "", "MutableMapping"], [386, 11, 1, "", "MutableSequence"], [386, 11, 1, "", "MutableSet"], [386, 11, 1, "", "NamedTuple"], [386, 9, 1, "", "Never"], [386, 11, 1, "", "NewType"], [386, 9, 1, "", "NoReturn"], [386, 9, 1, "", "NotRequired"], [386, 9, 1, "", "Optional"], [386, 11, 1, "", "OrderedDict"], [386, 11, 1, "", "ParamSpec"], [386, 9, 1, "", "ParamSpecArgs"], [386, 9, 1, "", "ParamSpecKwargs"], [386, 11, 1, "", "Pattern"], [386, 11, 1, "", "Protocol"], [386, 9, 1, "", "Required"], [386, 11, 1, "", "Reversible"], [386, 9, 1, "", "Self"], [386, 11, 1, "", "Sequence"], [386, 11, 1, "", "Set"], [386, 11, 1, "", "Sized"], [386, 11, 1, "", "SupportsAbs"], [386, 11, 1, "", "SupportsBytes"], [386, 11, 1, "", "SupportsComplex"], [386, 11, 1, "", "SupportsFloat"], [386, 11, 1, "", "SupportsIndex"], [386, 11, 1, "", "SupportsInt"], [386, 11, 1, "", "SupportsRound"], [386, 9, 1, "", "TYPE_CHECKING"], [386, 11, 1, "", "Text"], [386, 11, 1, "", "TextIO"], [386, 9, 1, "", "Tuple"], [386, 11, 1, "", "Type"], [386, 9, 1, "", "TypeAlias"], [386, 11, 1, "", "TypeAliasType"], [386, 9, 1, "", "TypeGuard"], [386, 11, 1, "", "TypeVar"], [386, 11, 1, "", "TypeVarTuple"], [386, 11, 1, "", "TypedDict"], [386, 9, 1, "", "Union"], [386, 9, 1, "", "Unpack"], [386, 11, 1, "", "ValuesView"], [386, 12, 1, "", "assert_never"], [386, 12, 1, "", "assert_type"], [386, 12, 1, "", "cast"], [386, 12, 1, "", "clear_overloads"], [386, 12, 1, "", "dataclass_transform"], [386, 12, 1, "", "final"], [386, 12, 1, "", "get_args"], [386, 12, 1, "", "get_origin"], [386, 12, 1, "", "get_overloads"], [386, 12, 1, "", "get_type_hints"], [386, 12, 1, "", "is_typeddict"], [386, 12, 1, "", "no_type_check"], [386, 12, 1, "", "no_type_check_decorator"], [386, 12, 1, "", "overload"], [386, 12, 1, "", "override"], [386, 12, 1, "", "reveal_type"], [386, 12, 1, "", "runtime_checkable"], [386, 12, 1, "", "type_check_only"]], "typing.NewType": [[386, 7, 1, "", "__module__"], [386, 7, 1, "", "__name__"], [386, 7, 1, "", "__supertype__"]], "typing.ParamSpec": [[386, 7, 1, "", "__name__"], [386, 7, 1, "", "args"], [386, 7, 1, "", "kwargs"]], "typing.TypeAliasType": [[386, 7, 1, "", "__module__"], [386, 7, 1, "", "__name__"], [386, 7, 1, "", "__type_params__"], [386, 7, 1, "", "__value__"]], "typing.TypeVar": [[386, 7, 1, "", "__bound__"], [386, 7, 1, "", "__constraints__"], [386, 7, 1, "", "__contravariant__"], [386, 7, 1, "", "__covariant__"], [386, 7, 1, "", "__infer_variance__"], [386, 7, 1, "", "__name__"]], "typing.TypeVarTuple": [[386, 7, 1, "", "__name__"]], "typing.TypedDict": [[386, 7, 1, "", "__optional_keys__"], [386, 7, 1, "", "__required_keys__"], [386, 7, 1, "", "__total__"]], "unicodedata": [[387, 12, 1, "", "bidirectional"], [387, 12, 1, "", "category"], [387, 12, 1, "", "combining"], [387, 12, 1, "", "decimal"], [387, 12, 1, "", "decomposition"], [387, 12, 1, "", "digit"], [387, 12, 1, "", "east_asian_width"], [387, 12, 1, "", "is_normalized"], [387, 12, 1, "", "lookup"], [387, 12, 1, "", "mirrored"], [387, 12, 1, "", "name"], [387, 12, 1, "", "normalize"], [387, 12, 1, "", "numeric"], [387, 9, 1, "", "ucd_3_2_0"], [387, 9, 1, "", "unidata_version"]], "unittest": [[388, 11, 1, "", "FunctionTestCase"], [388, 11, 1, "", "IsolatedAsyncioTestCase"], [388, 6, 1, "", "SkipTest"], [388, 11, 1, "", "TestCase"], [388, 11, 1, "", "TestLoader"], [388, 11, 1, "", "TestResult"], [388, 11, 1, "", "TestSuite"], [388, 11, 1, "", "TextTestResult"], [388, 11, 1, "", "TextTestRunner"], [388, 12, 1, "", "addModuleCleanup"], [388, 9, 1, "", "defaultTestLoader"], [388, 12, 1, "", "doModuleCleanups"], [388, 8, 1, "", "enterModuleContext"], [388, 12, 1, "", "expectedFailure"], [388, 12, 1, "", "installHandler"], [388, 12, 1, "", "main"], [389, 10, 0, "-", "mock"], [388, 12, 1, "", "registerResult"], [388, 12, 1, "", "removeHandler"], [388, 12, 1, "", "removeResult"], [388, 12, 1, "", "skip"], [388, 12, 1, "", "skipIf"], [388, 12, 1, "", "skipUnless"], [388, 14, 1, "cmdoption-unittest-b", "--buffer"], [388, 14, 1, "cmdoption-unittest-c", "--catch"], [388, 14, 1, "cmdoption-unittest-durations", "--durations"], [388, 14, 1, "cmdoption-unittest-f", "--failfast"], [388, 14, 1, "cmdoption-unittest-locals", "--locals"], [388, 14, 1, "cmdoption-unittest-b", "-b"], [388, 14, 1, "cmdoption-unittest-c", "-c"], [388, 14, 1, "cmdoption-unittest-f", "-f"], [388, 14, 1, "cmdoption-unittest-k", "-k"]], "unittest-discover": [[388, 14, 1, "cmdoption-unittest-discover-p", "--pattern"], [388, 14, 1, "cmdoption-unittest-discover-s", "--start-directory"], [388, 14, 1, "cmdoption-unittest-discover-t", "--top-level-directory"], [388, 14, 1, "cmdoption-unittest-discover-v", "--verbose"], [388, 14, 1, "cmdoption-unittest-discover-p", "-p"], [388, 14, 1, "cmdoption-unittest-discover-s", "-s"], [388, 14, 1, "cmdoption-unittest-discover-t", "-t"], [388, 14, 1, "cmdoption-unittest-discover-v", "-v"]], "unittest.IsolatedAsyncioTestCase": [[388, 8, 1, "", "addAsyncCleanup"], [388, 8, 1, "", "asyncSetUp"], [388, 8, 1, "", "asyncTearDown"], [388, 8, 1, "", "enterAsyncContext"], [388, 8, 1, "", "run"]], "unittest.TestCase": [[388, 8, 1, "", "addClassCleanup"], [388, 8, 1, "", "addCleanup"], [388, 8, 1, "", "addTypeEqualityFunc"], [388, 8, 1, "", "assertAlmostEqual"], [388, 8, 1, "", "assertCountEqual"], [388, 8, 1, "", "assertDictEqual"], [388, 8, 1, "", "assertEqual"], [388, 8, 1, "", "assertFalse"], [388, 8, 1, "", "assertGreater"], [388, 8, 1, "", "assertGreaterEqual"], [388, 8, 1, "", "assertIn"], [388, 8, 1, "", "assertIs"], [388, 8, 1, "", "assertIsInstance"], [388, 8, 1, "", "assertIsNone"], [388, 8, 1, "", "assertIsNot"], [388, 8, 1, "", "assertIsNotNone"], [388, 8, 1, "", "assertLess"], [388, 8, 1, "", "assertLessEqual"], [388, 8, 1, "", "assertListEqual"], [388, 8, 1, "", "assertLogs"], [388, 8, 1, "", "assertMultiLineEqual"], [388, 8, 1, "", "assertNoLogs"], [388, 8, 1, "", "assertNotAlmostEqual"], [388, 8, 1, "", "assertNotEqual"], [388, 8, 1, "", "assertNotIn"], [388, 8, 1, "", "assertNotIsInstance"], [388, 8, 1, "", "assertNotRegex"], [388, 8, 1, "", "assertRaises"], [388, 8, 1, "", "assertRaisesRegex"], [388, 8, 1, "", "assertRegex"], [388, 8, 1, "", "assertSequenceEqual"], [388, 8, 1, "", "assertSetEqual"], [388, 8, 1, "", "assertTrue"], [388, 8, 1, "", "assertTupleEqual"], [388, 8, 1, "", "assertWarns"], [388, 8, 1, "", "assertWarnsRegex"], [388, 8, 1, "", "countTestCases"], [388, 8, 1, "", "debug"], [388, 8, 1, "", "defaultTestResult"], [388, 8, 1, "", "doClassCleanups"], [388, 8, 1, "", "doCleanups"], [388, 8, 1, "", "enterClassContext"], [388, 8, 1, "", "enterContext"], [388, 8, 1, "", "fail"], [388, 7, 1, "", "failureException"], [388, 8, 1, "", "id"], [388, 7, 1, "", "longMessage"], [388, 7, 1, "", "maxDiff"], [388, 7, 1, "", "output"], [388, 7, 1, "", "records"], [388, 8, 1, "", "run"], [388, 8, 1, "", "setUp"], [388, 8, 1, "", "setUpClass"], [388, 8, 1, "", "shortDescription"], [388, 8, 1, "", "skipTest"], [388, 8, 1, "", "subTest"], [388, 8, 1, "", "tearDown"], [388, 8, 1, "", "tearDownClass"]], "unittest.TestLoader": [[388, 8, 1, "", "discover"], [388, 7, 1, "", "errors"], [388, 8, 1, "", "getTestCaseNames"], [388, 8, 1, "", "loadTestsFromModule"], [388, 8, 1, "", "loadTestsFromName"], [388, 8, 1, "", "loadTestsFromNames"], [388, 8, 1, "", "loadTestsFromTestCase"], [388, 7, 1, "", "sortTestMethodsUsing"], [388, 7, 1, "", "suiteClass"], [388, 7, 1, "", "testMethodPrefix"], [388, 7, 1, "", "testNamePatterns"]], "unittest.TestResult": [[388, 8, 1, "", "addDuration"], [388, 8, 1, "", "addError"], [388, 8, 1, "", "addExpectedFailure"], [388, 8, 1, "", "addFailure"], [388, 8, 1, "", "addSkip"], [388, 8, 1, "", "addSubTest"], [388, 8, 1, "", "addSuccess"], [388, 8, 1, "", "addUnexpectedSuccess"], [388, 7, 1, "", "buffer"], [388, 7, 1, "", "collectedDurations"], [388, 7, 1, "", "errors"], [388, 7, 1, "", "expectedFailures"], [388, 7, 1, "", "failfast"], [388, 7, 1, "", "failures"], [388, 7, 1, "", "shouldStop"], [388, 7, 1, "", "skipped"], [388, 8, 1, "", "startTest"], [388, 8, 1, "", "startTestRun"], [388, 8, 1, "", "stop"], [388, 8, 1, "", "stopTest"], [388, 8, 1, "", "stopTestRun"], [388, 7, 1, "", "tb_locals"], [388, 7, 1, "", "testsRun"], [388, 7, 1, "", "unexpectedSuccesses"], [388, 8, 1, "", "wasSuccessful"]], "unittest.TestSuite": [[388, 8, 1, "", "__iter__"], [388, 8, 1, "", "addTest"], [388, 8, 1, "", "addTests"], [388, 8, 1, "", "countTestCases"], [388, 8, 1, "", "debug"], [388, 8, 1, "", "run"]], "unittest.TextTestRunner": [[388, 8, 1, "", "_makeResult"], [388, 8, 1, "", "run"]], "unittest.mock": [[389, 9, 1, "", "ANY"], [389, 11, 1, "", "AsyncMock"], [389, 9, 1, "", "DEFAULT"], [389, 9, 1, "", "FILTER_DIR"], [389, 11, 1, "", "MagicMock"], [389, 11, 1, "", "Mock"], [389, 11, 1, "", "NonCallableMagicMock"], [389, 11, 1, "", "NonCallableMock"], [389, 11, 1, "", "PropertyMock"], [389, 12, 1, "", "call"], [389, 12, 1, "", "create_autospec"], [389, 12, 1, "", "mock_open"], [389, 12, 1, "", "patch"], [389, 12, 1, "", "seal"], [389, 9, 1, "", "sentinel"]], "unittest.mock.AsyncMock": [[389, 8, 1, "", "assert_any_await"], [389, 8, 1, "", "assert_awaited"], [389, 8, 1, "", "assert_awaited_once"], [389, 8, 1, "", "assert_awaited_once_with"], [389, 8, 1, "", "assert_awaited_with"], [389, 8, 1, "", "assert_has_awaits"], [389, 8, 1, "", "assert_not_awaited"], [389, 7, 1, "", "await_args"], [389, 7, 1, "", "await_args_list"], [389, 7, 1, "", "await_count"], [389, 8, 1, "", "reset_mock"]], "unittest.mock.Mock": [[389, 7, 1, "", "__class__"], [389, 8, 1, "", "__dir__"], [389, 8, 1, "", "_get_child_mock"], [389, 8, 1, "", "assert_any_call"], [389, 8, 1, "", "assert_called"], [389, 8, 1, "", "assert_called_once"], [389, 8, 1, "", "assert_called_once_with"], [389, 8, 1, "", "assert_called_with"], [389, 8, 1, "", "assert_has_calls"], [389, 8, 1, "", "assert_not_called"], [389, 8, 1, "", "attach_mock"], [389, 7, 1, "", "call_args"], [389, 7, 1, "", "call_args_list"], [389, 7, 1, "", "call_count"], [389, 7, 1, "", "called"], [389, 8, 1, "", "configure_mock"], [389, 7, 1, "", "method_calls"], [389, 8, 1, "", "mock_add_spec"], [389, 7, 1, "", "mock_calls"], [389, 8, 1, "", "reset_mock"], [389, 7, 1, "", "return_value"], [389, 7, 1, "", "side_effect"]], "unittest.mock.call": [[389, 8, 1, "", "call_list"]], "unittest.mock.patch": [[389, 12, 1, "", "dict"], [389, 12, 1, "", "multiple"], [389, 12, 1, "", "object"], [389, 12, 1, "", "stopall"]], "urllib": [[393, 10, 0, "-", "error"], [394, 10, 0, "-", "parse"], [395, 10, 0, "-", "request"], [395, 10, 0, "-", "response"], [396, 10, 0, "-", "robotparser"]], "urllib.error": [[393, 6, 1, "", "ContentTooShortError"], [393, 6, 1, "", "HTTPError"], [393, 6, 1, "", "URLError"]], "urllib.error.ContentTooShortError": [[393, 7, 1, "", "content"]], "urllib.error.HTTPError": [[393, 7, 1, "", "code"], [393, 7, 1, "", "fp"], [393, 7, 1, "", "headers"], [393, 7, 1, "", "reason"], [393, 7, 1, "", "url"]], "urllib.error.URLError": [[393, 7, 1, "", "reason"]], "urllib.parse": [[394, 11, 1, "", "DefragResult"], [394, 11, 1, "", "DefragResultBytes"], [394, 11, 1, "", "ParseResult"], [394, 11, 1, "", "ParseResultBytes"], [394, 11, 1, "", "SplitResult"], [394, 11, 1, "", "SplitResultBytes"], [394, 12, 1, "", "parse_qs"], [394, 12, 1, "", "parse_qsl"], [394, 12, 1, "", "quote"], [394, 12, 1, "", "quote_from_bytes"], [394, 12, 1, "", "quote_plus"], [394, 12, 1, "", "unquote"], [394, 12, 1, "", "unquote_plus"], [394, 12, 1, "", "unquote_to_bytes"], [394, 12, 1, "", "unwrap"], [394, 12, 1, "", "urldefrag"], [394, 12, 1, "", "urlencode"], [394, 12, 1, "", "urljoin"], [394, 12, 1, "", "urlparse"], [394, 12, 1, "", "urlsplit"], [394, 12, 1, "", "urlunparse"], [394, 12, 1, "", "urlunsplit"]], "urllib.parse.urllib.parse.SplitResult": [[394, 8, 1, "", "geturl"]], "urllib.request": [[395, 11, 1, "", "AbstractBasicAuthHandler"], [395, 11, 1, "", "AbstractDigestAuthHandler"], [395, 11, 1, "", "BaseHandler"], [395, 11, 1, "", "CacheFTPHandler"], [395, 11, 1, "", "DataHandler"], [395, 11, 1, "", "FTPHandler"], [395, 11, 1, "", "FancyURLopener"], [395, 11, 1, "", "FileHandler"], [395, 11, 1, "", "HTTPBasicAuthHandler"], [395, 11, 1, "", "HTTPCookieProcessor"], [395, 11, 1, "", "HTTPDefaultErrorHandler"], [395, 11, 1, "", "HTTPDigestAuthHandler"], [395, 11, 1, "", "HTTPErrorProcessor"], [395, 11, 1, "", "HTTPHandler"], [395, 11, 1, "", "HTTPPasswordMgr"], [395, 11, 1, "", "HTTPPasswordMgrWithDefaultRealm"], [395, 11, 1, "", "HTTPPasswordMgrWithPriorAuth"], [395, 11, 1, "", "HTTPRedirectHandler"], [395, 11, 1, "", "HTTPSHandler"], [395, 11, 1, "", "OpenerDirector"], [395, 11, 1, "", "ProxyBasicAuthHandler"], [395, 11, 1, "", "ProxyDigestAuthHandler"], [395, 11, 1, "", "ProxyHandler"], [395, 11, 1, "", "Request"], [395, 11, 1, "", "URLopener"], [395, 11, 1, "", "UnknownHandler"], [395, 12, 1, "", "build_opener"], [395, 12, 1, "", "getproxies"], [395, 12, 1, "", "install_opener"], [395, 12, 1, "", "pathname2url"], [395, 12, 1, "", "url2pathname"], [395, 12, 1, "", "urlcleanup"], [395, 12, 1, "", "urlopen"], [395, 12, 1, "", "urlretrieve"]], "urllib.request.AbstractBasicAuthHandler": [[395, 8, 1, "", "http_error_auth_reqed"]], "urllib.request.AbstractDigestAuthHandler": [[395, 8, 1, "", "http_error_auth_reqed"]], "urllib.request.BaseHandler": [[395, 8, 1, "", "add_parent"], [395, 8, 1, "", "close"], [395, 8, 1, "", "default_open"], [395, 8, 1, "", "http_error_default"], [395, 7, 1, "", "parent"], [395, 8, 1, "", "unknown_open"]], "urllib.request.CacheFTPHandler": [[395, 8, 1, "", "setMaxConns"], [395, 8, 1, "", "setTimeout"]], "urllib.request.DataHandler": [[395, 8, 1, "", "data_open"]], "urllib.request.FTPHandler": [[395, 8, 1, "", "ftp_open"]], "urllib.request.FancyURLopener": [[395, 8, 1, "", "prompt_user_passwd"]], "urllib.request.FileHandler": [[395, 8, 1, "", "file_open"]], "urllib.request.HTTPBasicAuthHandler": [[395, 8, 1, "", "http_error_401"]], "urllib.request.HTTPCookieProcessor": [[395, 7, 1, "", "cookiejar"]], "urllib.request.HTTPDigestAuthHandler": [[395, 8, 1, "", "http_error_401"]], "urllib.request.HTTPErrorProcessor": [[395, 8, 1, "", "http_response"], [395, 8, 1, "", "https_response"]], "urllib.request.HTTPHandler": [[395, 8, 1, "", "http_open"]], "urllib.request.HTTPPasswordMgr": [[395, 8, 1, "", "add_password"], [395, 8, 1, "", "find_user_password"]], "urllib.request.HTTPPasswordMgrWithPriorAuth": [[395, 8, 1, "", "add_password"], [395, 8, 1, "", "find_user_password"], [395, 8, 1, "", "is_authenticated"], [395, 8, 1, "", "update_authenticated"]], "urllib.request.HTTPRedirectHandler": [[395, 8, 1, "", "http_error_301"], [395, 8, 1, "", "http_error_302"], [395, 8, 1, "", "http_error_303"], [395, 8, 1, "", "http_error_307"], [395, 8, 1, "", "http_error_308"], [395, 8, 1, "", "redirect_request"]], "urllib.request.HTTPSHandler": [[395, 8, 1, "", "https_open"]], "urllib.request.OpenerDirector": [[395, 8, 1, "", "add_handler"], [395, 8, 1, "", "error"], [395, 8, 1, "", "open"]], "urllib.request.ProxyBasicAuthHandler": [[395, 8, 1, "", "http_error_407"]], "urllib.request.ProxyDigestAuthHandler": [[395, 8, 1, "", "http_error_407"]], "urllib.request.Request": [[395, 8, 1, "", "add_header"], [395, 8, 1, "", "add_unredirected_header"], [395, 7, 1, "", "data"], [395, 7, 1, "", "full_url"], [395, 8, 1, "", "get_full_url"], [395, 8, 1, "", "get_header"], [395, 8, 1, "", "get_method"], [395, 8, 1, "", "has_header"], [395, 8, 1, "", "header_items"], [395, 7, 1, "", "host"], [395, 7, 1, "", "method"], [395, 7, 1, "", "origin_req_host"], [395, 8, 1, "", "remove_header"], [395, 7, 1, "", "selector"], [395, 8, 1, "", "set_proxy"], [395, 7, 1, "", "type"], [395, 7, 1, "", "unverifiable"]], "urllib.request.URLopener": [[395, 8, 1, "", "open"], [395, 8, 1, "", "open_unknown"], [395, 8, 1, "", "retrieve"], [395, 7, 1, "", "version"]], "urllib.request.UnknownHandler": [[395, 8, 1, "", "unknown_open"]], "urllib.response": [[395, 11, 1, "", "addinfourl"]], "urllib.response.addinfourl": [[395, 7, 1, "", "code"], [395, 8, 1, "", "getcode"], [395, 8, 1, "", "geturl"], [395, 7, 1, "", "headers"], [395, 8, 1, "", "info"], [395, 7, 1, "", "status"], [395, 7, 1, "", "url"]], "urllib.robotparser": [[396, 11, 1, "", "RobotFileParser"]], "urllib.robotparser.RobotFileParser": [[396, 8, 1, "", "can_fetch"], [396, 8, 1, "", "crawl_delay"], [396, 8, 1, "", "modified"], [396, 8, 1, "", "mtime"], [396, 8, 1, "", "parse"], [396, 8, 1, "", "read"], [396, 8, 1, "", "request_rate"], [396, 8, 1, "", "set_url"], [396, 8, 1, "", "site_maps"]], "uu": [[397, 6, 1, "", "Error"], [397, 12, 1, "", "decode"], [397, 12, 1, "", "encode"]], "uuid": [[398, 9, 1, "", "NAMESPACE_DNS"], [398, 9, 1, "", "NAMESPACE_OID"], [398, 9, 1, "", "NAMESPACE_URL"], [398, 9, 1, "", "NAMESPACE_X500"], [398, 9, 1, "", "RESERVED_FUTURE"], [398, 9, 1, "", "RESERVED_MICROSOFT"], [398, 9, 1, "", "RESERVED_NCS"], [398, 9, 1, "", "RFC_4122"], [398, 11, 1, "", "SafeUUID"], [398, 11, 1, "", "UUID"], [398, 12, 1, "", "getnode"], [398, 12, 1, "", "uuid1"], [398, 12, 1, "", "uuid3"], [398, 12, 1, "", "uuid4"], [398, 12, 1, "", "uuid5"], [398, 14, 1, "cmdoption-uuid-h", "--help"], [398, 14, 1, "cmdoption-uuid-name", "--name"], [398, 14, 1, "cmdoption-uuid-namespace", "--namespace"], [398, 14, 1, "cmdoption-uuid-uuid", "--uuid"], [398, 14, 1, "cmdoption-uuid-N", "-N"], [398, 14, 1, "cmdoption-uuid-h", "-h"], [398, 14, 1, "cmdoption-uuid-n", "-n"], [398, 14, 1, "cmdoption-uuid-u", "-u"]], "uuid.SafeUUID": [[398, 7, 1, "", "safe"], [398, 7, 1, "", "unknown"], [398, 7, 1, "", "unsafe"]], "uuid.UUID": [[398, 7, 1, "", "bytes"], [398, 7, 1, "", "bytes_le"], [398, 7, 1, "", "clock_seq"], [398, 7, 1, "", "clock_seq_hi_variant"], [398, 7, 1, "", "clock_seq_low"], [398, 7, 1, "", "fields"], [398, 7, 1, "", "hex"], [398, 7, 1, "", "int"], [398, 7, 1, "", "is_safe"], [398, 7, 1, "", "node"], [398, 7, 1, "", "time"], [398, 7, 1, "", "time_hi_version"], [398, 7, 1, "", "time_low"], [398, 7, 1, "", "time_mid"], [398, 7, 1, "", "urn"], [398, 7, 1, "", "variant"], [398, 7, 1, "", "version"]], "venv": [[399, 11, 1, "", "EnvBuilder"], [399, 12, 1, "", "create"]], "venv.EnvBuilder": [[399, 8, 1, "", "create"], [399, 8, 1, "", "create_configuration"], [399, 8, 1, "", "ensure_directories"], [399, 8, 1, "", "install_scripts"], [399, 8, 1, "", "post_setup"], [399, 8, 1, "", "setup_python"], [399, 8, 1, "", "setup_scripts"], [399, 8, 1, "", "upgrade_dependencies"]], "warnings": [[400, 11, 1, "", "catch_warnings"], [400, 12, 1, "", "filterwarnings"], [400, 12, 1, "", "formatwarning"], [400, 12, 1, "", "resetwarnings"], [400, 12, 1, "", "showwarning"], [400, 12, 1, "", "simplefilter"], [400, 12, 1, "", "warn"], [400, 12, 1, "", "warn_explicit"]], "wave": [[401, 6, 1, "", "Error"], [401, 11, 1, "", "Wave_read"], [401, 11, 1, "", "Wave_write"], [401, 12, 1, "", "open"]], "wave.Wave_read": [[401, 8, 1, "", "close"], [401, 8, 1, "", "getcompname"], [401, 8, 1, "", "getcomptype"], [401, 8, 1, "", "getframerate"], [401, 8, 1, "", "getmark"], [401, 8, 1, "", "getmarkers"], [401, 8, 1, "", "getnchannels"], [401, 8, 1, "", "getnframes"], [401, 8, 1, "", "getparams"], [401, 8, 1, "", "getsampwidth"], [401, 8, 1, "", "readframes"], [401, 8, 1, "", "rewind"], [401, 8, 1, "", "setpos"], [401, 8, 1, "", "tell"]], "wave.Wave_write": [[401, 8, 1, "", "close"], [401, 8, 1, "", "setcomptype"], [401, 8, 1, "", "setframerate"], [401, 8, 1, "", "setnchannels"], [401, 8, 1, "", "setnframes"], [401, 8, 1, "", "setparams"], [401, 8, 1, "", "setsampwidth"], [401, 8, 1, "", "tell"], [401, 8, 1, "", "writeframes"], [401, 8, 1, "", "writeframesraw"]], "weakref": [[402, 9, 1, "", "CallableProxyType"], [402, 9, 1, "", "ProxyType"], [402, 9, 1, "", "ProxyTypes"], [402, 9, 1, "", "ReferenceType"], [402, 11, 1, "", "WeakKeyDictionary"], [402, 11, 1, "", "WeakMethod"], [402, 11, 1, "", "WeakSet"], [402, 11, 1, "", "WeakValueDictionary"], [402, 11, 1, "", "finalize"], [402, 12, 1, "", "getweakrefcount"], [402, 12, 1, "", "getweakrefs"], [402, 12, 1, "", "proxy"], [402, 11, 1, "", "ref"]], "weakref.WeakKeyDictionary": [[402, 8, 1, "", "keyrefs"]], "weakref.WeakValueDictionary": [[402, 8, 1, "", "valuerefs"]], "weakref.finalize": [[402, 8, 1, "", "__call__"], [402, 7, 1, "", "alive"], [402, 7, 1, "", "atexit"], [402, 8, 1, "", "detach"], [402, 8, 1, "", "peek"]], "weakref.ref": [[402, 7, 1, "", "__callback__"]], "webbrowser": [[403, 6, 1, "", "Error"], [403, 12, 1, "", "get"], [403, 7, 1, "", "name"], [403, 12, 1, "", "open"], [403, 12, 1, "", "open_new"], [403, 12, 1, "", "open_new_tab"], [403, 12, 1, "", "register"]], "webbrowser.controller": [[403, 8, 1, "", "open"], [403, 8, 1, "", "open_new"], [403, 8, 1, "", "open_new_tab"]], "winreg": [[405, 12, 1, "", "CloseKey"], [405, 12, 1, "", "ConnectRegistry"], [405, 12, 1, "", "CreateKey"], [405, 12, 1, "", "CreateKeyEx"], [405, 12, 1, "", "DeleteKey"], [405, 12, 1, "", "DeleteKeyEx"], [405, 12, 1, "", "DeleteValue"], [405, 12, 1, "", "DisableReflectionKey"], [405, 12, 1, "", "EnableReflectionKey"], [405, 12, 1, "", "EnumKey"], [405, 12, 1, "", "EnumValue"], [405, 12, 1, "", "ExpandEnvironmentStrings"], [405, 12, 1, "", "FlushKey"], [405, 9, 1, "", "HKEY_CLASSES_ROOT"], [405, 9, 1, "", "HKEY_CURRENT_CONFIG"], [405, 9, 1, "", "HKEY_CURRENT_USER"], [405, 9, 1, "", "HKEY_DYN_DATA"], [405, 9, 1, "", "HKEY_LOCAL_MACHINE"], [405, 9, 1, "", "HKEY_PERFORMANCE_DATA"], [405, 9, 1, "", "HKEY_USERS"], [405, 9, 1, "", "KEY_ALL_ACCESS"], [405, 9, 1, "", "KEY_CREATE_LINK"], [405, 9, 1, "", "KEY_CREATE_SUB_KEY"], [405, 9, 1, "", "KEY_ENUMERATE_SUB_KEYS"], [405, 9, 1, "", "KEY_EXECUTE"], [405, 9, 1, "", "KEY_NOTIFY"], [405, 9, 1, "", "KEY_QUERY_VALUE"], [405, 9, 1, "", "KEY_READ"], [405, 9, 1, "", "KEY_SET_VALUE"], [405, 9, 1, "", "KEY_WOW64_32KEY"], [405, 9, 1, "", "KEY_WOW64_64KEY"], [405, 9, 1, "", "KEY_WRITE"], [405, 12, 1, "", "LoadKey"], [405, 12, 1, "", "OpenKey"], [405, 12, 1, "", "OpenKeyEx"], [405, 12, 1, "", "QueryInfoKey"], [405, 12, 1, "", "QueryReflectionKey"], [405, 12, 1, "", "QueryValue"], [405, 12, 1, "", "QueryValueEx"], [405, 9, 1, "", "REG_BINARY"], [405, 9, 1, "", "REG_DWORD"], [405, 9, 1, "", "REG_DWORD_BIG_ENDIAN"], [405, 9, 1, "", "REG_DWORD_LITTLE_ENDIAN"], [405, 9, 1, "", "REG_EXPAND_SZ"], [405, 9, 1, "", "REG_FULL_RESOURCE_DESCRIPTOR"], [405, 9, 1, "", "REG_LINK"], [405, 9, 1, "", "REG_MULTI_SZ"], [405, 9, 1, "", "REG_NONE"], [405, 9, 1, "", "REG_QWORD"], [405, 9, 1, "", "REG_QWORD_LITTLE_ENDIAN"], [405, 9, 1, "", "REG_RESOURCE_LIST"], [405, 9, 1, "", "REG_RESOURCE_REQUIREMENTS_LIST"], [405, 9, 1, "", "REG_SZ"], [405, 12, 1, "", "SaveKey"], [405, 12, 1, "", "SetValue"], [405, 12, 1, "", "SetValueEx"]], "winreg.PyHKEY": [[405, 8, 1, "", "Close"], [405, 8, 1, "", "Detach"], [405, 8, 1, "", "__enter__"], [405, 8, 1, "", "__exit__"]], "winsound": [[406, 12, 1, "", "Beep"], [406, 9, 1, "", "MB_ICONASTERISK"], [406, 9, 1, "", "MB_ICONEXCLAMATION"], [406, 9, 1, "", "MB_ICONHAND"], [406, 9, 1, "", "MB_ICONQUESTION"], [406, 9, 1, "", "MB_OK"], [406, 12, 1, "", "MessageBeep"], [406, 12, 1, "", "PlaySound"], [406, 9, 1, "", "SND_ALIAS"], [406, 9, 1, "", "SND_ASYNC"], [406, 9, 1, "", "SND_FILENAME"], [406, 9, 1, "", "SND_LOOP"], [406, 9, 1, "", "SND_MEMORY"], [406, 9, 1, "", "SND_NODEFAULT"], [406, 9, 1, "", "SND_NOSTOP"], [406, 9, 1, "", "SND_NOWAIT"], [406, 9, 1, "", "SND_PURGE"]], "wsgiref": [[407, 10, 0, "-", "handlers"], [407, 10, 0, "-", "headers"], [407, 10, 0, "-", "simple_server"], [407, 10, 0, "-", "types"], [407, 10, 0, "-", "util"], [407, 10, 0, "-", "validate"]], "wsgiref.handlers": [[407, 11, 1, "", "BaseCGIHandler"], [407, 11, 1, "", "BaseHandler"], [407, 11, 1, "", "CGIHandler"], [407, 11, 1, "", "IISCGIHandler"], [407, 11, 1, "", "SimpleHandler"], [407, 12, 1, "", "read_environ"]], "wsgiref.handlers.BaseHandler": [[407, 8, 1, "", "_flush"], [407, 8, 1, "", "_write"], [407, 8, 1, "", "add_cgi_vars"], [407, 7, 1, "", "error_body"], [407, 7, 1, "", "error_headers"], [407, 8, 1, "", "error_output"], [407, 7, 1, "", "error_status"], [407, 8, 1, "", "get_scheme"], [407, 8, 1, "", "get_stderr"], [407, 8, 1, "", "get_stdin"], [407, 7, 1, "", "http_version"], [407, 8, 1, "", "log_exception"], [407, 7, 1, "", "origin_server"], [407, 7, 1, "", "os_environ"], [407, 8, 1, "", "run"], [407, 8, 1, "", "sendfile"], [407, 7, 1, "", "server_software"], [407, 8, 1, "", "setup_environ"], [407, 7, 1, "", "traceback_limit"], [407, 7, 1, "", "wsgi_file_wrapper"], [407, 7, 1, "", "wsgi_multiprocess"], [407, 7, 1, "", "wsgi_multithread"], [407, 7, 1, "", "wsgi_run_once"]], "wsgiref.headers": [[407, 11, 1, "", "Headers"]], "wsgiref.headers.Headers": [[407, 8, 1, "", "add_header"], [407, 8, 1, "", "get_all"]], "wsgiref.simple_server": [[407, 11, 1, "", "WSGIRequestHandler"], [407, 11, 1, "", "WSGIServer"], [407, 12, 1, "", "demo_app"], [407, 12, 1, "", "make_server"]], "wsgiref.simple_server.WSGIRequestHandler": [[407, 8, 1, "", "get_environ"], [407, 8, 1, "", "get_stderr"], [407, 8, 1, "", "handle"]], "wsgiref.simple_server.WSGIServer": [[407, 8, 1, "", "get_app"], [407, 8, 1, "", "set_app"]], "wsgiref.types": [[407, 11, 1, "", "ErrorStream"], [407, 11, 1, "", "FileWrapper"], [407, 11, 1, "", "InputStream"], [407, 11, 1, "", "StartResponse"], [407, 9, 1, "", "WSGIApplication"], [407, 9, 1, "", "WSGIEnvironment"]], "wsgiref.util": [[407, 11, 1, "", "FileWrapper"], [407, 12, 1, "", "application_uri"], [407, 12, 1, "", "guess_scheme"], [407, 12, 1, "", "is_hop_by_hop"], [407, 12, 1, "", "request_uri"], [407, 12, 1, "", "setup_testing_defaults"], [407, 12, 1, "", "shift_path_info"]], "wsgiref.validate": [[407, 12, 1, "", "validator"]], "xdrlib": [[408, 6, 1, "", "ConversionError"], [408, 6, 1, "", "Error"], [408, 11, 1, "", "Packer"], [408, 11, 1, "", "Unpacker"]], "xdrlib.Packer": [[408, 8, 1, "", "get_buffer"], [408, 8, 1, "", "pack_array"], [408, 8, 1, "", "pack_bytes"], [408, 8, 1, "", "pack_double"], [408, 8, 1, "", "pack_farray"], [408, 8, 1, "", "pack_float"], [408, 8, 1, "", "pack_fopaque"], [408, 8, 1, "", "pack_fstring"], [408, 8, 1, "", "pack_list"], [408, 8, 1, "", "pack_opaque"], [408, 8, 1, "", "pack_string"], [408, 8, 1, "", "reset"]], "xdrlib.Unpacker": [[408, 8, 1, "", "done"], [408, 8, 1, "", "get_buffer"], [408, 8, 1, "", "get_position"], [408, 8, 1, "", "reset"], [408, 8, 1, "", "set_position"], [408, 8, 1, "", "unpack_array"], [408, 8, 1, "", "unpack_bytes"], [408, 8, 1, "", "unpack_double"], [408, 8, 1, "", "unpack_farray"], [408, 8, 1, "", "unpack_float"], [408, 8, 1, "", "unpack_fopaque"], [408, 8, 1, "", "unpack_fstring"], [408, 8, 1, "", "unpack_list"], [408, 8, 1, "", "unpack_opaque"], [408, 8, 1, "", "unpack_string"]], "xml": [[410, 10, 0, "-", "dom"], [414, 10, 0, "-", "sax"]], "xml.dom": [[410, 6, 1, "", "DOMException"], [410, 6, 1, "", "DomstringSizeErr"], [410, 9, 1, "", "EMPTY_NAMESPACE"], [410, 6, 1, "", "HierarchyRequestErr"], [410, 6, 1, "", "IndexSizeErr"], [410, 6, 1, "", "InuseAttributeErr"], [410, 6, 1, "", "InvalidAccessErr"], [410, 6, 1, "", "InvalidCharacterErr"], [410, 6, 1, "", "InvalidModificationErr"], [410, 6, 1, "", "InvalidStateErr"], [410, 6, 1, "", "NamespaceErr"], [410, 6, 1, "", "NoDataAllowedErr"], [410, 6, 1, "", "NoModificationAllowedErr"], [410, 6, 1, "", "NotFoundErr"], [410, 6, 1, "", "NotSupportedErr"], [410, 6, 1, "", "SyntaxErr"], [410, 6, 1, "", "WrongDocumentErr"], [410, 9, 1, "", "XHTML_NAMESPACE"], [410, 9, 1, "", "XMLNS_NAMESPACE"], [410, 9, 1, "", "XML_NAMESPACE"], [410, 12, 1, "", "getDOMImplementation"], [411, 10, 0, "-", "minidom"], [412, 10, 0, "-", "pulldom"], [410, 12, 1, "", "registerDOMImplementation"]], "xml.dom.Attr": [[410, 7, 1, "", "localName"], [410, 7, 1, "", "name"], [410, 7, 1, "", "prefix"], [410, 7, 1, "", "value"]], "xml.dom.Comment": [[410, 7, 1, "", "data"]], "xml.dom.DOMImplementation": [[410, 8, 1, "", "createDocument"], [410, 8, 1, "", "createDocumentType"], [410, 8, 1, "", "hasFeature"]], "xml.dom.Document": [[410, 8, 1, "", "createAttribute"], [410, 8, 1, "", "createAttributeNS"], [410, 8, 1, "", "createComment"], [410, 8, 1, "", "createElement"], [410, 8, 1, "", "createElementNS"], [410, 8, 1, "", "createProcessingInstruction"], [410, 8, 1, "", "createTextNode"], [410, 7, 1, "", "documentElement"], [410, 8, 1, "", "getElementsByTagName"], [410, 8, 1, "", "getElementsByTagNameNS"]], "xml.dom.DocumentType": [[410, 7, 1, "", "entities"], [410, 7, 1, "", "internalSubset"], [410, 7, 1, "", "name"], [410, 7, 1, "", "notations"], [410, 7, 1, "", "publicId"], [410, 7, 1, "", "systemId"]], "xml.dom.Element": [[410, 8, 1, "", "getAttribute"], [410, 8, 1, "", "getAttributeNS"], [410, 8, 1, "", "getAttributeNode"], [410, 8, 1, "", "getAttributeNodeNS"], [410, 8, 1, "", "getElementsByTagName"], [410, 8, 1, "", "getElementsByTagNameNS"], [410, 8, 1, "", "hasAttribute"], [410, 8, 1, "", "hasAttributeNS"], [410, 8, 1, "", "removeAttribute"], [410, 8, 1, "", "removeAttributeNS"], [410, 8, 1, "", "removeAttributeNode"], [410, 8, 1, "", "setAttribute"], [410, 8, 1, "", "setAttributeNS"], [410, 8, 1, "", "setAttributeNode"], [410, 8, 1, "", "setAttributeNodeNS"], [410, 7, 1, "", "tagName"]], "xml.dom.NamedNodeMap": [[410, 8, 1, "", "item"], [410, 7, 1, "", "length"]], "xml.dom.Node": [[410, 8, 1, "", "appendChild"], [410, 7, 1, "", "attributes"], [410, 7, 1, "", "childNodes"], [410, 8, 1, "", "cloneNode"], [410, 7, 1, "", "firstChild"], [410, 8, 1, "", "hasAttributes"], [410, 8, 1, "", "hasChildNodes"], [410, 8, 1, "", "insertBefore"], [410, 8, 1, "", "isSameNode"], [410, 7, 1, "", "lastChild"], [410, 7, 1, "", "localName"], [410, 7, 1, "", "namespaceURI"], [410, 7, 1, "", "nextSibling"], [410, 7, 1, "", "nodeName"], [410, 7, 1, "", "nodeType"], [410, 7, 1, "", "nodeValue"], [410, 8, 1, "", "normalize"], [410, 7, 1, "", "parentNode"], [410, 7, 1, "", "prefix"], [410, 7, 1, "", "previousSibling"], [410, 8, 1, "", "removeChild"], [410, 8, 1, "", "replaceChild"]], "xml.dom.NodeList": [[410, 8, 1, "", "item"], [410, 7, 1, "", "length"]], "xml.dom.ProcessingInstruction": [[410, 7, 1, "", "data"], [410, 7, 1, "", "target"]], "xml.dom.Text": [[410, 7, 1, "", "data"]], "xml.dom.minidom": [[411, 12, 1, "", "parse"], [411, 12, 1, "", "parseString"]], "xml.dom.minidom.Node": [[411, 8, 1, "", "toprettyxml"], [411, 8, 1, "", "toxml"], [411, 8, 1, "", "unlink"], [411, 8, 1, "", "writexml"]], "xml.dom.pulldom": [[412, 11, 1, "", "DOMEventStream"], [412, 11, 1, "", "PullDom"], [412, 11, 1, "", "SAX2DOM"], [412, 9, 1, "", "default_bufsize"], [412, 12, 1, "", "parse"], [412, 12, 1, "", "parseString"]], "xml.dom.pulldom.DOMEventStream": [[412, 8, 1, "", "expandNode"], [412, 8, 1, "", "getEvent"], [412, 8, 1, "", "reset"]], "xml.etree": [[413, 10, 0, "-", "ElementInclude"], [413, 10, 0, "-", "ElementTree"]], "xml.etree.ElementInclude": [[413, 12, 1, "", "default_loader"], [413, 12, 1, "", "include"]], "xml.etree.ElementTree": [[413, 11, 1, "", "C14NWriterTarget"], [413, 12, 1, "", "Comment"], [413, 11, 1, "", "Element"], [413, 11, 1, "", "ElementTree"], [413, 11, 1, "", "ParseError"], [413, 12, 1, "", "ProcessingInstruction"], [413, 11, 1, "", "QName"], [413, 12, 1, "", "SubElement"], [413, 11, 1, "", "TreeBuilder"], [413, 12, 1, "", "XML"], [413, 12, 1, "", "XMLID"], [413, 11, 1, "", "XMLParser"], [413, 11, 1, "", "XMLPullParser"], [413, 12, 1, "", "canonicalize"], [413, 12, 1, "", "dump"], [413, 12, 1, "", "fromstring"], [413, 12, 1, "", "fromstringlist"], [413, 12, 1, "", "indent"], [413, 12, 1, "", "iselement"], [413, 12, 1, "", "iterparse"], [413, 12, 1, "", "parse"], [413, 12, 1, "", "register_namespace"], [413, 12, 1, "", "tostring"], [413, 12, 1, "", "tostringlist"]], "xml.etree.ElementTree.Element": [[413, 8, 1, "", "append"], [413, 7, 1, "", "attrib"], [413, 8, 1, "", "clear"], [413, 8, 1, "", "extend"], [413, 8, 1, "", "find"], [413, 8, 1, "", "findall"], [413, 8, 1, "", "findtext"], [413, 8, 1, "", "get"], [413, 8, 1, "", "insert"], [413, 8, 1, "", "items"], [413, 8, 1, "", "iter"], [413, 8, 1, "", "iterfind"], [413, 8, 1, "", "itertext"], [413, 8, 1, "", "keys"], [413, 8, 1, "", "makeelement"], [413, 8, 1, "", "remove"], [413, 8, 1, "", "set"], [413, 7, 1, "", "tag"], [413, 7, 1, "", "tail"], [413, 7, 1, "", "text"]], "xml.etree.ElementTree.ElementTree": [[413, 8, 1, "", "_setroot"], [413, 8, 1, "", "find"], [413, 8, 1, "", "findall"], [413, 8, 1, "", "findtext"], [413, 8, 1, "", "getroot"], [413, 8, 1, "", "iter"], [413, 8, 1, "", "iterfind"], [413, 8, 1, "", "parse"], [413, 8, 1, "", "write"]], "xml.etree.ElementTree.ParseError": [[413, 7, 1, "", "code"], [413, 7, 1, "", "position"]], "xml.etree.ElementTree.TreeBuilder": [[413, 8, 1, "", "close"], [413, 8, 1, "", "comment"], [413, 8, 1, "", "data"], [413, 8, 1, "", "doctype"], [413, 8, 1, "", "end"], [413, 8, 1, "", "end_ns"], [413, 8, 1, "", "pi"], [413, 8, 1, "", "start"], [413, 8, 1, "", "start_ns"]], "xml.etree.ElementTree.XMLParser": [[413, 8, 1, "", "close"], [413, 8, 1, "", "feed"], [413, 8, 1, "", "flush"]], "xml.etree.ElementTree.XMLPullParser": [[413, 8, 1, "", "close"], [413, 8, 1, "", "feed"], [413, 8, 1, "", "flush"], [413, 8, 1, "", "read_events"]], "xml.parsers": [[314, 10, 0, "-", "expat"]], "xml.parsers.expat": [[314, 12, 1, "", "ErrorString"], [314, 6, 1, "", "ExpatError"], [314, 12, 1, "", "ParserCreate"], [314, 9, 1, "", "XMLParserType"], [314, 6, 1, "", "error"], [314, 10, 0, "-", "errors"], [314, 10, 0, "-", "model"]], "xml.parsers.expat.ExpatError": [[314, 7, 1, "", "code"], [314, 7, 1, "", "lineno"], [314, 7, 1, "", "offset"]], "xml.parsers.expat.errors": [[314, 9, 1, "", "XML_ERROR_ABORTED"], [314, 9, 1, "", "XML_ERROR_AMPLIFICATION_LIMIT_BREACH"], [314, 9, 1, "", "XML_ERROR_ASYNC_ENTITY"], [314, 9, 1, "", "XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_BAD_CHAR_REF"], [314, 9, 1, "", "XML_ERROR_BINARY_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING"], [314, 9, 1, "", "XML_ERROR_DUPLICATE_ATTRIBUTE"], [314, 9, 1, "", "XML_ERROR_ENTITY_DECLARED_IN_PE"], [314, 9, 1, "", "XML_ERROR_EXTERNAL_ENTITY_HANDLING"], [314, 9, 1, "", "XML_ERROR_FEATURE_REQUIRES_XML_DTD"], [314, 9, 1, "", "XML_ERROR_FINISHED"], [314, 9, 1, "", "XML_ERROR_INCOMPLETE_PE"], [314, 9, 1, "", "XML_ERROR_INCORRECT_ENCODING"], [314, 9, 1, "", "XML_ERROR_INVALID_ARGUMENT"], [314, 9, 1, "", "XML_ERROR_INVALID_TOKEN"], [314, 9, 1, "", "XML_ERROR_JUNK_AFTER_DOC_ELEMENT"], [314, 9, 1, "", "XML_ERROR_MISPLACED_XML_PI"], [314, 9, 1, "", "XML_ERROR_NOT_STANDALONE"], [314, 9, 1, "", "XML_ERROR_NOT_SUSPENDED"], [314, 9, 1, "", "XML_ERROR_NO_BUFFER"], [314, 9, 1, "", "XML_ERROR_NO_ELEMENTS"], [314, 9, 1, "", "XML_ERROR_NO_MEMORY"], [314, 9, 1, "", "XML_ERROR_PARAM_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_PARTIAL_CHAR"], [314, 9, 1, "", "XML_ERROR_PUBLICID"], [314, 9, 1, "", "XML_ERROR_RECURSIVE_ENTITY_REF"], [314, 9, 1, "", "XML_ERROR_RESERVED_NAMESPACE_URI"], [314, 9, 1, "", "XML_ERROR_RESERVED_PREFIX_XML"], [314, 9, 1, "", "XML_ERROR_RESERVED_PREFIX_XMLNS"], [314, 9, 1, "", "XML_ERROR_SUSPENDED"], [314, 9, 1, "", "XML_ERROR_SUSPEND_PE"], [314, 9, 1, "", "XML_ERROR_SYNTAX"], [314, 9, 1, "", "XML_ERROR_TAG_MISMATCH"], [314, 9, 1, "", "XML_ERROR_TEXT_DECL"], [314, 9, 1, "", "XML_ERROR_UNBOUND_PREFIX"], [314, 9, 1, "", "XML_ERROR_UNCLOSED_CDATA_SECTION"], [314, 9, 1, "", "XML_ERROR_UNCLOSED_TOKEN"], [314, 9, 1, "", "XML_ERROR_UNDECLARING_PREFIX"], [314, 9, 1, "", "XML_ERROR_UNDEFINED_ENTITY"], [314, 9, 1, "", "XML_ERROR_UNEXPECTED_STATE"], [314, 9, 1, "", "XML_ERROR_UNKNOWN_ENCODING"], [314, 9, 1, "", "XML_ERROR_XML_DECL"], [314, 9, 1, "", "codes"], [314, 9, 1, "", "messages"]], "xml.parsers.expat.xmlparser": [[314, 8, 1, "", "AttlistDeclHandler"], [314, 8, 1, "", "CharacterDataHandler"], [314, 8, 1, "", "CommentHandler"], [314, 7, 1, "", "CurrentByteIndex"], [314, 7, 1, "", "CurrentColumnNumber"], [314, 7, 1, "", "CurrentLineNumber"], [314, 8, 1, "", "DefaultHandler"], [314, 8, 1, "", "DefaultHandlerExpand"], [314, 8, 1, "", "ElementDeclHandler"], [314, 8, 1, "", "EndCdataSectionHandler"], [314, 8, 1, "", "EndDoctypeDeclHandler"], [314, 8, 1, "", "EndElementHandler"], [314, 8, 1, "", "EndNamespaceDeclHandler"], [314, 8, 1, "", "EntityDeclHandler"], [314, 7, 1, "", "ErrorByteIndex"], [314, 7, 1, "", "ErrorCode"], [314, 7, 1, "", "ErrorColumnNumber"], [314, 7, 1, "", "ErrorLineNumber"], [314, 8, 1, "", "ExternalEntityParserCreate"], [314, 8, 1, "", "ExternalEntityRefHandler"], [314, 8, 1, "", "GetBase"], [314, 8, 1, "", "GetInputContext"], [314, 8, 1, "", "GetReparseDeferralEnabled"], [314, 8, 1, "", "NotStandaloneHandler"], [314, 8, 1, "", "NotationDeclHandler"], [314, 8, 1, "", "Parse"], [314, 8, 1, "", "ParseFile"], [314, 8, 1, "", "ProcessingInstructionHandler"], [314, 8, 1, "", "SetBase"], [314, 8, 1, "", "SetParamEntityParsing"], [314, 8, 1, "", "SetReparseDeferralEnabled"], [314, 8, 1, "", "StartCdataSectionHandler"], [314, 8, 1, "", "StartDoctypeDeclHandler"], [314, 8, 1, "", "StartElementHandler"], [314, 8, 1, "", "StartNamespaceDeclHandler"], [314, 8, 1, "", "UnparsedEntityDeclHandler"], [314, 8, 1, "", "UseForeignDTD"], [314, 8, 1, "", "XmlDeclHandler"], [314, 7, 1, "", "buffer_size"], [314, 7, 1, "", "buffer_text"], [314, 7, 1, "", "buffer_used"], [314, 7, 1, "", "ordered_attributes"], [314, 7, 1, "", "specified_attributes"]], "xml.sax": [[414, 6, 1, "", "SAXException"], [414, 6, 1, "", "SAXNotRecognizedException"], [414, 6, 1, "", "SAXNotSupportedException"], [414, 6, 1, "", "SAXParseException"], [415, 10, 0, "-", "handler"], [414, 12, 1, "", "make_parser"], [414, 12, 1, "", "parse"], [414, 12, 1, "", "parseString"], [417, 10, 0, "-", "saxutils"], [416, 10, 0, "-", "xmlreader"]], "xml.sax.SAXException": [[414, 8, 1, "", "getException"], [414, 8, 1, "", "getMessage"]], "xml.sax.handler": [[415, 11, 1, "", "ContentHandler"], [415, 11, 1, "", "DTDHandler"], [415, 11, 1, "", "EntityResolver"], [415, 11, 1, "", "ErrorHandler"], [415, 11, 1, "", "LexicalHandler"], [415, 9, 1, "", "all_features"], [415, 9, 1, "", "all_properties"], [415, 9, 1, "", "feature_external_ges"], [415, 9, 1, "", "feature_external_pes"], [415, 9, 1, "", "feature_namespace_prefixes"], [415, 9, 1, "", "feature_namespaces"], [415, 9, 1, "", "feature_string_interning"], [415, 9, 1, "", "feature_validation"], [415, 9, 1, "", "property_declaration_handler"], [415, 9, 1, "", "property_dom_node"], [415, 9, 1, "", "property_lexical_handler"], [415, 9, 1, "", "property_xml_string"]], "xml.sax.handler.ContentHandler": [[415, 8, 1, "", "characters"], [415, 8, 1, "", "endDocument"], [415, 8, 1, "", "endElement"], [415, 8, 1, "", "endElementNS"], [415, 8, 1, "", "endPrefixMapping"], [415, 8, 1, "", "ignorableWhitespace"], [415, 8, 1, "", "processingInstruction"], [415, 8, 1, "", "setDocumentLocator"], [415, 8, 1, "", "skippedEntity"], [415, 8, 1, "", "startDocument"], [415, 8, 1, "", "startElement"], [415, 8, 1, "", "startElementNS"], [415, 8, 1, "", "startPrefixMapping"]], "xml.sax.handler.DTDHandler": [[415, 8, 1, "", "notationDecl"], [415, 8, 1, "", "unparsedEntityDecl"]], "xml.sax.handler.EntityResolver": [[415, 8, 1, "", "resolveEntity"]], "xml.sax.handler.ErrorHandler": [[415, 8, 1, "", "error"], [415, 8, 1, "", "fatalError"], [415, 8, 1, "", "warning"]], "xml.sax.handler.LexicalHandler": [[415, 8, 1, "", "comment"], [415, 8, 1, "", "endCDATA"], [415, 8, 1, "", "endDTD"], [415, 8, 1, "", "startCDATA"], [415, 8, 1, "", "startDTD"]], "xml.sax.saxutils": [[417, 11, 1, "", "XMLFilterBase"], [417, 11, 1, "", "XMLGenerator"], [417, 12, 1, "", "escape"], [417, 12, 1, "", "prepare_input_source"], [417, 12, 1, "", "quoteattr"], [417, 12, 1, "", "unescape"]], "xml.sax.xmlreader": [[416, 11, 1, "", "AttributesImpl"], [416, 11, 1, "", "AttributesNSImpl"], [416, 11, 1, "", "IncrementalParser"], [416, 11, 1, "", "InputSource"], [416, 11, 1, "", "Locator"], [416, 11, 1, "", "XMLReader"]], "xml.sax.xmlreader.Attributes": [[416, 8, 1, "", "getLength"], [416, 8, 1, "", "getNames"], [416, 8, 1, "", "getType"], [416, 8, 1, "", "getValue"]], "xml.sax.xmlreader.AttributesNS": [[416, 8, 1, "", "getNameByQName"], [416, 8, 1, "", "getQNameByName"], [416, 8, 1, "", "getQNames"], [416, 8, 1, "", "getValueByQName"]], "xml.sax.xmlreader.IncrementalParser": [[416, 8, 1, "", "close"], [416, 8, 1, "", "feed"], [416, 8, 1, "", "reset"]], "xml.sax.xmlreader.InputSource": [[416, 8, 1, "", "getByteStream"], [416, 8, 1, "", "getCharacterStream"], [416, 8, 1, "", "getEncoding"], [416, 8, 1, "", "getPublicId"], [416, 8, 1, "", "getSystemId"], [416, 8, 1, "", "setByteStream"], [416, 8, 1, "", "setCharacterStream"], [416, 8, 1, "", "setEncoding"], [416, 8, 1, "", "setPublicId"], [416, 8, 1, "", "setSystemId"]], "xml.sax.xmlreader.Locator": [[416, 8, 1, "", "getColumnNumber"], [416, 8, 1, "", "getLineNumber"], [416, 8, 1, "", "getPublicId"], [416, 8, 1, "", "getSystemId"]], "xml.sax.xmlreader.XMLReader": [[416, 8, 1, "", "getContentHandler"], [416, 8, 1, "", "getDTDHandler"], [416, 8, 1, "", "getEntityResolver"], [416, 8, 1, "", "getErrorHandler"], [416, 8, 1, "", "getFeature"], [416, 8, 1, "", "getProperty"], [416, 8, 1, "", "parse"], [416, 8, 1, "", "setContentHandler"], [416, 8, 1, "", "setDTDHandler"], [416, 8, 1, "", "setEntityResolver"], [416, 8, 1, "", "setErrorHandler"], [416, 8, 1, "", "setFeature"], [416, 8, 1, "", "setLocale"], [416, 8, 1, "", "setProperty"]], "xmlrpc": [[419, 10, 0, "-", "client"], [420, 10, 0, "-", "server"]], "xmlrpc.client": [[419, 11, 1, "", "Binary"], [419, 11, 1, "", "DateTime"], [419, 11, 1, "", "Fault"], [419, 11, 1, "", "MultiCall"], [419, 11, 1, "", "ProtocolError"], [419, 11, 1, "", "ServerProxy"], [419, 12, 1, "", "dumps"], [419, 12, 1, "", "loads"]], "xmlrpc.client.Binary": [[419, 7, 1, "", "data"], [419, 8, 1, "", "decode"], [419, 8, 1, "", "encode"]], "xmlrpc.client.DateTime": [[419, 8, 1, "", "decode"], [419, 8, 1, "", "encode"]], "xmlrpc.client.Fault": [[419, 7, 1, "", "faultCode"], [419, 7, 1, "", "faultString"]], "xmlrpc.client.ProtocolError": [[419, 7, 1, "", "errcode"], [419, 7, 1, "", "errmsg"], [419, 7, 1, "", "headers"], [419, 7, 1, "", "url"]], "xmlrpc.client.ServerProxy.system": [[419, 8, 1, "", "listMethods"], [419, 8, 1, "", "methodHelp"], [419, 8, 1, "", "methodSignature"]], "xmlrpc.server": [[420, 11, 1, "", "CGIXMLRPCRequestHandler"], [420, 11, 1, "", "DocCGIXMLRPCRequestHandler"], [420, 11, 1, "", "DocXMLRPCRequestHandler"], [420, 11, 1, "", "DocXMLRPCServer"], [420, 11, 1, "", "SimpleXMLRPCRequestHandler"], [420, 11, 1, "", "SimpleXMLRPCServer"]], "xmlrpc.server.CGIXMLRPCRequestHandler": [[420, 8, 1, "", "handle_request"], [420, 8, 1, "", "register_function"], [420, 8, 1, "", "register_instance"], [420, 8, 1, "", "register_introspection_functions"], [420, 8, 1, "", "register_multicall_functions"]], "xmlrpc.server.DocCGIXMLRPCRequestHandler": [[420, 8, 1, "", "set_server_documentation"], [420, 8, 1, "", "set_server_name"], [420, 8, 1, "", "set_server_title"]], "xmlrpc.server.DocXMLRPCServer": [[420, 8, 1, "", "set_server_documentation"], [420, 8, 1, "", "set_server_name"], [420, 8, 1, "", "set_server_title"]], "xmlrpc.server.SimpleXMLRPCRequestHandler": [[420, 7, 1, "", "rpc_paths"]], "xmlrpc.server.SimpleXMLRPCServer": [[420, 8, 1, "", "register_function"], [420, 8, 1, "", "register_instance"], [420, 8, 1, "", "register_introspection_functions"], [420, 8, 1, "", "register_multicall_functions"]], "zipapp": [[421, 12, 1, "", "create_archive"], [421, 12, 1, "", "get_interpreter"], [421, 14, 1, "cmdoption-zipapp-c", "--compress"], [421, 14, 1, "cmdoption-zipapp-h", "--help"], [421, 14, 1, "cmdoption-zipapp-info", "--info"], [421, 14, 1, "cmdoption-zipapp-m", "--main"], [421, 14, 1, "cmdoption-zipapp-o", "--output"], [421, 14, 1, "cmdoption-zipapp-p", "--python"], [421, 14, 1, "cmdoption-zipapp-c", "-c"], [421, 14, 1, "cmdoption-zipapp-h", "-h"], [421, 14, 1, "cmdoption-zipapp-m", "-m"], [421, 14, 1, "cmdoption-zipapp-o", "-o"], [421, 14, 1, "cmdoption-zipapp-p", "-p"]], "zipfile": [[422, 6, 1, "", "BadZipFile"], [422, 6, 1, "", "BadZipfile"], [422, 6, 1, "", "LargeZipFile"], [422, 11, 1, "", "Path"], [422, 11, 1, "", "PyZipFile"], [422, 9, 1, "", "ZIP_BZIP2"], [422, 9, 1, "", "ZIP_DEFLATED"], [422, 9, 1, "", "ZIP_LZMA"], [422, 9, 1, "", "ZIP_STORED"], [422, 11, 1, "", "ZipFile"], [422, 11, 1, "", "ZipInfo"], [422, 12, 1, "", "is_zipfile"], [422, 14, 1, "cmdoption-zipfile-create", "--create"], [422, 14, 1, "cmdoption-zipfile-extract", "--extract"], [422, 14, 1, "cmdoption-zipfile-list", "--list"], [422, 14, 1, "cmdoption-zipfile-metadata-encoding", "--metadata-encoding"], [422, 14, 1, "cmdoption-zipfile-test", "--test"], [422, 14, 1, "cmdoption-zipfile-c", "-c"], [422, 14, 1, "cmdoption-zipfile-e", "-e"], [422, 14, 1, "cmdoption-zipfile-l", "-l"], [422, 14, 1, "cmdoption-zipfile-t", "-t"]], "zipfile.Path": [[422, 8, 1, "", "exists"], [422, 8, 1, "", "is_dir"], [422, 8, 1, "", "is_file"], [422, 8, 1, "", "iterdir"], [422, 8, 1, "", "joinpath"], [422, 7, 1, "", "name"], [422, 8, 1, "", "open"], [422, 8, 1, "", "read_bytes"], [422, 8, 1, "", "read_text"], [422, 9, 1, "", "stem"], [422, 9, 1, "", "suffix"], [422, 9, 1, "", "suffixes"]], "zipfile.PyZipFile": [[422, 8, 1, "", "writepy"]], "zipfile.ZipFile": [[422, 8, 1, "", "close"], [422, 7, 1, "", "comment"], [422, 7, 1, "", "debug"], [422, 8, 1, "", "extract"], [422, 8, 1, "", "extractall"], [422, 7, 1, "", "filename"], [422, 8, 1, "", "getinfo"], [422, 8, 1, "", "infolist"], [422, 8, 1, "", "mkdir"], [422, 8, 1, "", "namelist"], [422, 8, 1, "", "open"], [422, 8, 1, "", "printdir"], [422, 8, 1, "", "read"], [422, 8, 1, "", "setpassword"], [422, 8, 1, "", "testzip"], [422, 8, 1, "", "write"], [422, 8, 1, "", "writestr"]], "zipfile.ZipInfo": [[422, 7, 1, "", "CRC"], [422, 7, 1, "", "comment"], [422, 7, 1, "", "compress_size"], [422, 7, 1, "", "compress_type"], [422, 7, 1, "", "create_system"], [422, 7, 1, "", "create_version"], [422, 7, 1, "", "date_time"], [422, 7, 1, "", "external_attr"], [422, 7, 1, "", "extra"], [422, 7, 1, "", "extract_version"], [422, 7, 1, "", "file_size"], [422, 7, 1, "", "filename"], [422, 7, 1, "", "flag_bits"], [422, 8, 1, "", "from_file"], [422, 7, 1, "", "header_offset"], [422, 7, 1, "", "internal_attr"], [422, 8, 1, "", "is_dir"], [422, 7, 1, "", "reserved"], [422, 7, 1, "", "volume"]], "zipimport": [[423, 6, 1, "", "ZipImportError"], [423, 11, 1, "", "zipimporter"]], "zipimport.zipimporter": [[423, 7, 1, "", "archive"], [423, 8, 1, "", "create_module"], [423, 8, 1, "", "exec_module"], [423, 8, 1, "", "find_spec"], [423, 8, 1, "", "get_code"], [423, 8, 1, "", "get_data"], [423, 8, 1, "", "get_filename"], [423, 8, 1, "", "get_source"], [423, 8, 1, "", "invalidate_caches"], [423, 8, 1, "", "is_package"], [423, 8, 1, "", "load_module"], [423, 7, 1, "", "prefix"]], "zlib": [[424, 9, 1, "", "ZLIB_RUNTIME_VERSION"], [424, 9, 1, "", "ZLIB_VERSION"], [424, 12, 1, "", "adler32"], [424, 12, 1, "", "compress"], [424, 12, 1, "", "compressobj"], [424, 12, 1, "", "crc32"], [424, 12, 1, "", "decompress"], [424, 12, 1, "", "decompressobj"], [424, 6, 1, "", "error"]], "zlib.Compress": [[424, 8, 1, "", "compress"], [424, 8, 1, "", "copy"], [424, 8, 1, "", "flush"]], "zlib.Decompress": [[424, 8, 1, "", "copy"], [424, 8, 1, "", "decompress"], [424, 7, 1, "", "eof"], [424, 8, 1, "", "flush"], [424, 7, 1, "", "unconsumed_tail"], [424, 7, 1, "", "unused_data"]], "zoneinfo": [[425, 6, 1, "", "InvalidTZPathWarning"], [425, 9, 1, "", "TZPATH"], [425, 11, 1, "", "ZoneInfo"], [425, 6, 1, "", "ZoneInfoNotFoundError"], [425, 12, 1, "", "available_timezones"], [425, 12, 1, "", "reset_tzpath"]], "zoneinfo.ZoneInfo": [[425, 8, 1, "", "clear_cache"], [425, 8, 1, "", "from_file"], [425, 7, 1, "", "key"], [425, 8, 1, "", "no_cache"]]}, "objnames": {"0": ["c", "member", "C \u6210\u54e1\u51fd\u6578"], "1": ["c", "macro", "C \u5de8\u96c6"], "2": ["c", "function", "C \u51fd\u5f0f"], "3": ["c", "functionParam", "C \u51fd\u5f0f\u53c3\u6578"], "4": ["c", "type", "C \u578b\u5225"], "5": ["c", "struct", "C \u7d50\u69cb"], "6": ["py", "exception", "Python \u4f8b\u5916"], "7": ["py", "attribute", "Python \u5c6c\u6027"], "8": ["py", "method", "Python \u65b9\u6cd5"], "9": ["py", "data", "Python \u8cc7\u6599"], "10": ["py", "module", "Python \u6a21\u7d44"], "11": ["py", "class", "Python \u985e\u5225"], "12": ["py", "function", "Python \u51fd\u5f0f"], "13": ["std", "pdbcommand", "pdbcommand"], "14": ["std", "cmdoption", "\u7a0b\u5f0f\u9078\u9805"], "15": ["std", "envvar", "\u74b0\u5883\u8b8a\u6578"], "16": ["std", "opcode", "opcode"], "17": ["std", "monitoring-event", "monitoring-event"], "18": ["std", "2to3fixer", "2to3fixer"]}, "objtypes": {"0": "c:member", "1": "c:macro", "2": "c:function", "3": "c:functionParam", "4": "c:type", "5": "c:struct", "6": "py:exception", "7": "py:attribute", "8": "py:method", "9": "py:data", "10": "py:module", "11": "py:class", "12": "py:function", "13": "std:pdbcommand", "14": "std:cmdoption", "15": "std:envvar", "16": "std:opcode", "17": "std:monitoring-event", "18": "std:2to3fixer"}, "terms": {"00": [33, 89, 104, 107, 109, 183, 186, 221, 235, 267, 319, 341, 366, 384, 425, 451, 452, 455, 467, 468, 469, 475, 479, 482, 483], "000": [160, 176, 183, 186, 235, 261, 282, 308, 461, 474, 475, 476], "0000": [87, 99, 109, 158, 183, 203, 209, 259, 344, 366, 428, 462, 475, 476, 483], "00000": 186, "000000": [176, 183, 366, 464], "00000000": 158, "0000000000000000": 98, "000000120": 345, "0000003": 186, "0000007f": 158, "00000080": 158, "000001": 183, "0000050000069649e": 275, "0000050000166668e": 275, "000007ff": 158, "00000800": 158, "00001": 478, "000027119750287": 481, "00003": 478, "00005": 186, "0000ffff": 158, "0001": [99, 183, 435, 480, 483], "000100": 183, "00010000": 158, "00010203": 398, "0001100110011": 466, "0001100110011001100110011001100110011001100110011": 444, "00012": 446, "000178": 467, "0002": 183, "000384": 183, "00042": 344, "0007": 259, "000s": 388, "001": [84, 183, 225, 261, 271, 308, 366, 435], "0010ffff": 158, "0011001100110011001100110011001100110011001100110011": 78, "00111": 211, "00112444be1e": [398, 467], "001j": 435, "001s": 388, "002": [183, 308, 344], "0023": 186, "003": [225, 428, 446, 455], "00308d78": 98, "003244936839808227": 444, "00365b68": 98, "003s": 474, "004": 267, "0041": 430, "0042": 344, "0043": [387, 430], "0045": 465, "004643": 78, "0049": 387, "0051575902860057365": 444, "005s": 388, "0060000": 186, "0061": 109, "0062": 109, "0063": 109, "0065": 109, "007": 378, "00797": 454, "007b": 109, "007f": [344, 435], "00c7": [387, 430], "00df": 109, "00e9": 109, "00ea": 109, "00ff": [158, 475, 476, 483], "01": [89, 96, 102, 107, 146, 183, 186, 209, 225, 235, 240, 267, 332, 337, 339, 341, 344, 366, 408, 422, 425, 430, 451, 461, 463, 465, 466, 467, 475, 476, 479, 480, 483], "010": [225, 261, 362], "0102030405060708090a0b0c0d0e0f00": 235, "010x": 146, "011": 261, "01110011": 225, "012": [244, 261, 344, 463], "0123": 344, "01234": 344, "01234567": 345, "0123456789": [337, 344, 345], "0123456789abcdef": 446, "0123456789abcdefabcdef": 345, "013": 261, "0130": [106, 319], "0131": [106, 319], "013671875": 475, "013765762467652909": 475, "014": 271, "0144": 85, "017": 186, "017f": [106, 319], "018": 160, "01875": 343, "01bb6f00122b177f36cab49cea8b6b26": 341, "01ff": 462, "01t00": 183, "01t01": 451, "01t03": 425, "01t12": 183, "01z": 183, "02": [102, 104, 183, 186, 267, 283, 332, 366, 423, 451, 462, 464, 465, 466, 475, 479, 483], "021": 261, "0224": 469, "023": 261, "024": 483, "024e": 94, "0268e7": 94, "0286": 483, "029035": [103, 465], "02d": 319, "02e": 186, "02s": 476, "02x": 345, "03": [101, 102, 183, 186, 267, 341, 345, 347, 366, 451, 465, 467, 483], "0302": 109, "030712": 183, "031107": 465, "031edd7d41651593c5fe5c006fa5752b37fddff7bc4e843aa6af0c950f4b9406": 235, "0321336330": 369, "0327": [387, 430], "033": [98, 177, 483], "0330": 183, "0340": 483, "037": 271, "03894": 341, "03d": [200, 267, 344], "04": [86, 89, 92, 183, 345, 347, 366, 425, 448, 467, 469, 472, 479, 480, 483], "0400": [183, 476], "040070": 78, "0405": 398, "04215312199994514": 367, "042173697819788e": 444, "042178034628478e": 444, "04d": [85, 226], "04e": 308, "04t00": 183, "04x": [87, 109], "05": [89, 102, 134, 154, 183, 261, 275, 319, 341, 347, 366, 452, 467, 468, 479, 483], "0500": [183, 209], "0518e6": 94, "052": 468, "054": 101, "055": 101, "05954861408025609": 318, "0596158101": 369, "05edt": 366, "06": [86, 102, 183, 245, 267, 332, 449, 467, 479, 483], "0607": 398, "0625": [283, 449], "063415": 183, "0660": [344, 462], "07": [102, 183, 267, 271, 319, 345, 366, 378, 425, 467, 468, 479, 482, 483], "0718": 483, "0720": 470, "073": [469, 483], "075": 481, "0755": [151, 483], "0758": 483, "0772": 483, "077e010": 435, "07a5610bae9d": 483, "08": [104, 183, 209, 245, 267, 341, 366, 425, 482, 483], "0809": 398, "0810874155219827": 343, "08588060699912603": 367, "0876": 483, "0877": 367, "09": [85, 102, 154, 209, 267, 275, 332, 341, 448, 483], "0999999999999996": 462, "09999999999999995": 452, "09x": 472, "0a": 464, "0a0b0c0d0e0f": 398, "0a1": [113, 483], "0a2": [113, 483], "0a3": [113, 483], "0a3b9": 319, "0a4": 483, "0a5": 33, "0abc": 259, "0alpha1": 462, "0an": 80, "0b": [18, 47, 225, 292, 344, 345, 468, 475], "0b0": 211, "0b1": [113, 483], "0b100101": [344, 469, 471], "0b10011": 344, "0b100110111": 435, "0b1010": [225, 470], "0b101010": 345, "0b10101101": 468, "0b101111": 468, "0b11": 225, "0b11000000101010000000000000000001": 259, "0b1101": 468, "0b1110": 225, "0b2": [455, 483], "0b3": 483, "0b4": [479, 483], "0b_1110_0101": 435, "0beta1": 462, "0bf2": 109, "0bn": 80, "0c": 347, "0c076caaa8": 455, "0c9aee199e5d": [398, 467], "0cf1": 475, "0cf2": 475, "0db8": 99, "0def": 259, "0e": 186, "0e0": 435, "0f": [267, 475, 483], "0f84": 109, "0g": [469, 483], "0goofi": 465, "0h": [341, 483], "0i": 483, "0if": [472, 474], "0in": [472, 474], "0j": [186, 225, 344, 419, 483], "0l": [35, 73, 347], "0o": [18, 47, 85, 225, 344, 345, 468, 475], "0o10": [85, 225], "0o12": 225, "0o177": 435, "0o21": 468, "0o24": 475, "0o377": [435, 473, 474, 483], "0o444": 296, "0o52": [345, 468], "0o600": 293, "0o644": 151, "0o666": [151, 184, 293, 296, 397], "0o70": 225, "0o700": [293, 474, 483], "0o720": 470, "0o755": 151, "0o777": [293, 296], "0p": [480, 483], "0rc1": 483, "0rcn": 80, "0s": 347, "0x": [9, 18, 47, 64, 85, 87, 94, 106, 138, 176, 193, 225, 244, 283, 292, 344, 345, 384, 389, 390, 435, 466, 475, 483], "0x0": [96, 158], "0x00": [109, 178, 191], "0x000000000041a6b1": 96, "0x000000000041b717": 96, "0x000000000041b7c0": 96, "0x00000000004371c3": 98, "0x00000000004374e1": 98, "0x000000000044060a": 96, "0x0000000000440d1b": 96, "0x0000000000440d94": 96, "0x0000000000446647": 96, "0x00000000004466aa": 96, "0x00000000004cd1e6": 96, "0x000000000053db6c": 98, "0x000000000053dba8": 98, "0x0000000000584abd": 96, "0x0000000000630ce2": 98, "0x00000000008d6be8": 98, "0x00000000008d6bea": 98, "0x00000000008d6bf6": 98, "0x00000000008d6bf8": 98, "0x00000010": 98, "0x00000014": 98, "0x00000020": [98, 176], "0x00000024": 98, "0x00000030": 98, "0x00000031": 98, "0x00000038e46d73e3": 96, "0x00000045": 98, "0x00000046": 98, "0x00000144": 98, "0x00000254": 98, "0x00000274": 98, "0x00007fb899f39700": [214, 476], "0x00007fbcdbd32700": 479, "0x00010000": 483, "0x002d6c30": 98, "0x00a1db50": 440, "0x00ac18f0": 193, "0x00b18c90": 93, "0x00c45070": 93, "0x01": [4, 191, 337], "0x0100": 483, "0x010502f0": 352, "0x02": [191, 479], "0x03": [4, 191], "0x03020000": 57, "0x030401a2": 4, "0x03050400": [56, 480, 483], "0x03060000": [56, 480, 483], "0x03060100": [56, 480, 483], "0x03080000": [473, 481], "0x03090000": [100, 482], "0x030900a4": [472, 473], "0x030900b1": 473, "0x030a0000": 57, "0x030a00a1": 473, "0x030a00f0": 4, "0x030b0000": [473, 483], "0x030b00a2": 473, "0x04": [4, 191, 428], "0x08": [191, 428], "0x0bf2": 109, "0x1": [186, 344, 444, 468, 471, 472, 474], "0x10": 428, "0x1000": 428, "0x100020bf": 341, "0x101739a10": 475, "0x101e0cef0": 251, "0x1021": 146, "0x1022bd788": 475, "0x103528488": 251, "0x1035a2840": 226, "0x103fe0000": 226, "0x1053bb7c8": 139, "0x10_0000_0000_0000": 318, "0x10c90e650": 440, "0x10ffff": [109, 225, 352, 476], "0x12": 398, "0x12131415": 347, "0x1234": 398, "0x12345678": 398, "0x12345678123456781234567812345678": 398, "0x144": 85, "0x16d07cc": 85, "0x18": 211, "0x1d000000": 176, "0x1f": [178, 472, 474], "0x1for": [472, 474], "0x2": 4, "0x20": [64, 143, 344, 428], "0x2000": 428, "0x20000000": 483, "0x2001_0db8_0000_0000_0000_0000_0000_1000": 259, "0x265e": 109, "0x2a": [225, 345], "0x3": 344, "0x30c00a0": 176, "0x34": 398, "0x37f080": 469, "0x37f850": 469, "0x3dad39f5e0": 96, "0x3dad3a95a0": 96, "0x3dbdc7ea70": 96, "0x3dbdf85820": 96, "0x3ff": 347, "0x400": 435, "0x400cad2c": 465, "0x400cad4c": 465, "0x402c2080": 466, "0x402c2090": 466, "0x402ef0d4": 466, "0x4198d0": 85, "0x50": 109, "0x5678": 398, "0x567812345678": 398, "0x5c2b8d": 96, "0x63d0f8": 96, "0x6d72c0": 96, "0x7352a0": 85, "0x7e30e0": 96, "0x7e7820": 96, "0x7e7d20": 96, "0x7eba00": 96, "0x7f": [178, 344], "0x7f19e0": 96, "0x7f3ddc9f4350": 344, "0x7f46b9fe31e0": 476, "0x7fa66db2be58": 413, "0x7fb5d302f9d0": 93, "0x7fbcd41666f8": 479, "0x7fbcd41666fc": 479, "0x7fc859830220": 402, "0x7fffac0011c0": 96, "0x7fffac001640": 96, "0x7fffac001c90": 96, "0x7fffb8001a10": 96, "0x7fffb8001c40": 96, "0x7fffc8002090": 96, "0x7fffd00019d0": 96, "0x7fffd00024a0": 96, "0x7fffdf5fe710": 96, "0x7fffe4001580": 96, "0x7fffefa18710": 96, "0x7ffff2128500": 96, "0x7ffff7f14360": 96, "0x7ffff7fb1868": 96, "0x7ffff7fb6020": 96, "0x7ffff7fb6080": 96, "0x7ffff7fb60f0": 96, "0x7ffff7fb6160": 96, "0x7ffff7fb61d0": 96, "0x7ffff7fb6240": 96, "0x7ffff7fb62b0": 96, "0x7ffff7fc6340": 96, "0x7ffff7fd5ee8": 96, "0x7ffff7fe2700": 96, "0x7fffff7fefe8": 96, "0x7fffffff": 483, "0x80": [59, 109, 178, 344, 483], "0x8116870": 464, "0x8117f90": [464, 465], "0x858770": 96, "0x858860": 96, "0x858a90": 96, "0x928310": 96, "0x9420b04": 96, "0x948e82c": 96, "0x984b464": 96, "0x984b474": 96, "0x984b494": 96, "0x98fa6e4": 96, "0x98faaa4": 96, "0x98fab44": 96, "0x98fad24": 96, "0x99262ac": 96, "0x9aead74": 96, "0x_ff_ff_ff_ff": 479, "0xa": 4, "0xa5": 85, "0xaa4560": 96, "0xaacd80": 96, "0xaace60": 96, "0xad4730": 96, "0xb": 4, "0xb2": 85, "0xb771b7f4": 96, "0xb77e6fac": 413, "0xb77ec1cc": 413, "0xb77ec26c": 413, "0xb77ec2ac": 413, "0xbb": 158, "0xbf": 158, "0xc": 4, "0xc000": 106, "0xc185a0": 96, "0xc191e0": 96, "0xc9c790": 96, "0xc9c7f8": 96, "0xcb": [42, 479, 483], "0xcb5380": 96, "0xcd": [42, 483], "0xd75060": 96, "0xd750e0": 96, "0xd75160": 96, "0xd751e0": 96, "0xd7ee60": 96, "0xd7fd10": 96, "0xd7ff40": 96, "0xd800": 64, "0xd80160": 96, "0xd80260": 96, "0xd802e0": 96, "0xd803e0": 96, "0xdb": [42, 479, 483], "0xdbff": 64, "0xdc00": 64, "0xdd": [42, 483], "0xdeadbeef": 435, "0xdecafbad": [102, 267], "0xdfff": 64, "0xef": 158, "0xf": 4, "0xface": 225, "0xfb": [42, 479, 483], "0xfd": [42, 483], "0xff": [59, 158, 225, 344], "0xffd2": 106, "0xfffe": [64, 158], "0xffff": [352, 476, 483], "0xffffffff": [465, 479, 483], "0xffffffffl": 465, "0xmnn00pp0l": 483, "0xxxx": 483, "0xxxxxxx": 158, "10": [4, 10, 14, 18, 20, 22, 23, 26, 28, 33, 34, 36, 39, 45, 47, 49, 52, 55, 57, 58, 61, 63, 64, 68, 73, 78, 79, 84, 87, 92, 93, 94, 95, 98, 101, 102, 103, 106, 108, 109, 110, 112, 113, 115, 116, 120, 121, 122, 123, 126, 129, 131, 134, 135, 136, 137, 138, 139, 143, 147, 149, 150, 151, 154, 155, 158, 160, 163, 169, 176, 177, 181, 183, 185, 186, 188, 191, 193, 209, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 231, 233, 235, 236, 237, 241, 242, 250, 251, 252, 255, 258, 259, 261, 266, 267, 268, 274, 275, 278, 282, 283, 284, 286, 288, 291, 292, 293, 294, 296, 303, 304, 307, 308, 311, 312, 318, 319, 322, 325, 326, 330, 332, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 355, 360, 362, 364, 365, 366, 367, 369, 372, 378, 381, 384, 385, 386, 388, 390, 394, 395, 407, 413, 415, 420, 422, 423, 425, 427, 428, 429, 430, 431, 432, 435, 440, 441, 442, 443, 444, 446, 448, 449, 451, 452, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 482, 484], "100": [85, 92, 102, 109, 110, 117, 125, 126, 136, 147, 155, 181, 183, 186, 190, 201, 208, 214, 225, 241, 245, 259, 261, 266, 275, 283, 284, 295, 318, 329, 337, 343, 344, 345, 358, 366, 367, 376, 384, 388, 395, 405, 407, 419, 427, 430, 441, 444, 446, 449, 450, 451, 452, 462, 465, 467, 468, 469, 472, 473, 475, 477, 478, 481, 483], "1000": [59, 85, 98, 102, 109, 149, 173, 177, 183, 221, 247, 259, 261, 275, 283, 284, 320, 329, 344, 345, 352, 369, 382, 384, 426, 440, 441, 444, 446, 449, 450, 462, 467, 468, 469, 475, 476, 481], "10000": [95, 308, 333, 367, 384, 465, 476, 483], "100000": [73, 225, 308, 367, 382, 465], "1000000": [104, 167, 183, 221, 225, 283, 308, 367, 441, 469, 479, 483], "10000000": 318, "100000000": 247, "1000000000": 340, "100000000000": 466, "1000000000000000": 479, "1000000000000000055511151231257827021181583404541015625": [186, 444, 469], "10000000000000001": 444, "100000000000000088817841970012523233890533447265625": [186, 471, 475], "1000000000000001": [466, 471], "1000000000000403": 261, "1000003": 475, "100001": 483, "1000026": 186, "1000110": 483, "1000158": 483, "100039": 483, "100050": 483, "100061": 483, "100086": 483, "100098": 483, "1000s": 483, "1001": [78, 158, 345], "10010": 226, "100101": 344, "100107": 483, "100110": 483, "100112": 483, "100117": 483, "100126": 483, "100131": 483, "100133": 483, "100143": 483, "100146": 483, "100160": [474, 483], "1001604": 468, "100161": 474, "100180": 483, "100188": 483, "10022": 483, "100220": 483, "100221": 483, "100222": 483, "100228": 483, "10023": 341, "100234": [474, 483], "100247": 483, "100268": 483, "100272": 483, "100287": 483, "100288": 483, "1003": 294, "10030": 483, "100320": 483, "100340": 483, "100342": 483, "100344": [474, 483], "100348": 483, "100357": 483, "100363": 483, "100370": 483, "100372": 483, "100374": 483, "10042": 477, "100425": [474, 483], "10042ed0": 441, "100454": 483, "100472": 483, "100474": 483, "100479": 483, "100485": [474, 483], "100488": 483, "10049": [480, 483], "1005": 382, "100519": 483, "100530": 483, "100540": 483, "100562": 483, "100573": 483, "100581": 474, "100585": 483, "100598": 474, "100616": 483, "100637": 483, "100649": 483, "100668": 483, "100689": 483, "100690": 483, "1007": 102, "100712": 483, "100719": 483, "100720": 483, "100726": 483, "100740": 483, "100750": 483, "10076": [480, 483], "100762": 483, "100776": 483, "100792": 483, "100795": 483, "100805": 483, "100809": 483, "100813": 483, "100814": 483, "100833": 483, "100884": 483, "100892": 483, "100923": 483, "10093": 475, "100942": 483, "100982": 483, "100985": 483, "100_000": [93, 343], "100_000_000_000": 435, "100k": 77, "100s": 75, "100x": 476, "101": [110, 120, 241, 261, 318, 343, 345, 382, 389, 444, 461, 469, 475], "1010": [345, 481], "10100": 211, "101000": [474, 483], "101006": 483, "101010": 345, "101015": 483, "101037": 483, "101046": 483, "101060": 483, "1011": [343, 345], "101101": 474, "101135": 483, "101143": 483, "101144": 483, "101152": 483, "101193": 474, "101196": 483, "101225": 483, "101251": 483, "101264": 474, "101266": 483, "101277": 483, "101282": 483, "101283": 483, "101291": 483, "101293": 483, "1013": 426, "10131": 483, "101313": 483, "101317": 483, "101323": 483, "101326": 483, "101334": 483, "101360": 483, "101362": 483, "101372": 483, "101377": 483, "1014": 408, "101400": 483, "101408": 483, "10141": 476, "101430": 483, "101438": 483, "101441": 474, "101446": 483, "10145": 96, "101467": 483, "1015": 481, "101517": 483, "10152": 343, "101520": 483, "101522": 483, "101525": 474, "101538": 483, "101541": 483, "101543": 483, "101561": [474, 483], "101566": 483, "101570": 483, "101578": [474, 483], "101588": [474, 483], "10160": 475, "101614": 483, "101632": [474, 483], "101634": 483, "101640": 483, "10166": 343, "101673": 483, "101688": 483, "101693": 483, "101696": 483, "101698": 474, "101727": 483, "101759": 483, "101763": 483, "101765": 483, "101773": 483, "101799": [474, 483], "10181": 476, "101819": 483, "101827": 474, "101849": 483, "101857": 483, "101865": 483, "101866": 474, "101881": 483, "101892": 483, "101907": 483, "101936": 483, "101952": 483, "101961": 483, "101967": 483, "10197": 477, "101975": 483, "101979": 483, "10199": 475, "101997": 483, "102": [102, 186, 241, 261, 343, 469, 475, 481, 482], "102013": 483, "102019": 483, "102024": 483, "102027": 483, "10203": [478, 483], "102038": 483, "102056": 483, "102069": 483, "102103": 483, "102114": 483, "102126": 483, "102153": 483, "102179": 483, "102192": [474, 483], "10220": 475, "102213": 483, "102250": 483, "102255": 483, "102281": 483, "1023": 347, "102300": 483, "102302": 483, "102310": 483, "102336": 483, "102344": 483, "102356": 483, "102362": 483, "102378": 483, "102388": 483, "102397": 483, "1024": [87, 109, 175, 186, 215, 235, 268, 309, 337, 338, 341, 344, 382, 435, 451, 483], "10240": 358, "102406": 483, "102416": 483, "102433": [474, 483], "102491": 483, "102493": 483, "1025": 483, "102500": [474, 483], "102509": 483, "102512": 483, "102519": [474, 483], "102537": 483, "102541": 483, "102549": 483, "102578": 483, "10259": 96, "102594": 483, "10260": 96, "102613": 483, "102615": 483, "102628": 483, "102670": 483, "102690": 483, "102700": 483, "102701": 483, "102711": 483, "10272": 475, "102748": [474, 483], "102755": [474, 483], "102778": [474, 483], "10278": 476, "102780": 483, "102795": 483, "102809": 483, "102818": 483, "102823": 483, "102828": [474, 483], "102839": 483, "102853": 474, "102856": [474, 483], "102859": [474, 483], "102871": [474, 483], "102947": 483, "102953": 483, "102956": 483, "102973": 483, "102978": 483, "102980": 483, "102988": 483, "102997": 483, "103": [241, 261, 343, 344, 382, 461, 469, 475, 482, 483], "1030": 183, "103000": 483, "103015": [474, 483], "103023": 483, "103046": 483, "103053": 483, "103056": 483, "103068": 483, "103082": [474, 483], "103085": 483, "103088": 483, "103091": 483, "103092": 483, "103112": 483, "10314": 475, "103142": 483, "103143": 483, "103176": [474, 483], "103179": 474, "103186": 483, "103193": [474, 483], "103194": 483, "103204": 483, "10321": 475, "103220": 483, "103225": 483, "103242": 483, "103256": 483, "103285": 483, "103295": 483, "103323": 483, "103329": 483, "103333": 483, "103357": 483, "103365": 483, "1034053": 469, "103449": 483, "103462": 483, "103472": 483, "1034791200": 465, "103487": 474, "103488": 483, "103489": [474, 483], "103492": 483, "103497": 474, "1034h": 483, "103509": [474, 483], "103525": 483, "103532": 483, "103533": 483, "103538": 483, "103545": 483, "103548": 483, "103556": 483, "103559": 483, "103578": 483, "103583": 483, "103584": 483, "103590": [474, 483], "103596": 483, "1036": 382, "103629": [474, 483], "103631": 483, "103636": [474, 483], "103646": 483, "103650": 483, "103673": 483, "103685": 483, "103693": [474, 483], "103699": [474, 483], "103743": 483, "103763": 483, "103764": 474, "10379": [480, 483], "103791": 483, "103793": [474, 483], "103801": 483, "10381": [480, 483], "103820": 483, "103822": 483, "103839": 483, "103845": 483, "103848": 483, "103857": [474, 483], "103861": 483, "103872": 483, "103895": 483, "103899": 483, "103907": 483, "103935": 483, "10395": [478, 483], "103956": 483, "103963": 483, "103968": 483, "103977": 483, "103987": 483, "103_410": 343, "104": [96, 186, 343, 475, 481, 482, 483], "104018": 483, "104028": 483, "104035": 483, "104049": 483, "104066": 483, "104078": 483, "104090": 483, "104102": 483, "104104": 483, "104106": 483, "104108": 483, "104109": 483, "104110": 474, "104114": 483, "104138": 474, "104139": 483, "104140": 474, "104142": 483, "104144": 483, "104180": 483, "104210": 474, "104263": 483, "104265": 483, "104282": 483, "104301": 483, "10430216751806065": 444, "104307": 483, "104310": 483, "104340": 483, "104372": 483, "104389": 483, "104392": 483, "104399": 483, "104405": 483, "104432": 483, "104461": 483, "104482": 483, "104484": 483, "104490": 483, "104494": 483, "104496": 483, "104499": 483, "1045": 481, "104522": 483, "104536": 483, "104554": 483, "104555": 483, "104572": 483, "104600": 483, "104615": 483, "104621": 483, "104623": 483, "104668": [474, 483], "104690": 483, "104692": 483, "104719": 483, "104736": 483, "104797": 483, "104799": 483, "104803": 483, "104812": 483, "104820": 483, "104825": 483, "104874": 483, "104879": 483, "104935": 483, "104943": 483, "104947": 483, "104955": 483, "10496": 483, "104972": 483, "104976": 483, "104996": 483, "105": [96, 186, 343], "105002": 483, "105013": 483, "105017": 483, "105035": 483, "105052": 483, "105071": 483, "105080": 483, "105084": 483, "105089": 483, "10510": 483, "105102": 483, "105113": 483, "105115": 483, "10513": 483, "105144": 483, "105146": 483, "10516": 476, "105162": 483, "105164": 483, "10518": 475, "105194": 483, "105227": 483, "105235": 483, "105239": 483, "105259": 483, "105280": 483, "105324": 483, "105332": 483, "105340": 483, "10536": 483, "105375": 483, "105387": [474, 483], "105390": 483, "1054041": [481, 483], "105435": 483, "105436": 483, "10544": [480, 481, 483], "105486": 483, "105497": 483, "10554": 475, "105549": 483, "105564": 483, "105587": 483, "105588": 483, "105603": 483, "105605": 483, "105626": 483, "105658": 483, "105699": 483, "105716": 483, "10572": 483, "105736": 483, "105745": 483, "105776": 483, "105800": 483, "105808": 483, "105829": 483, "105831": 483, "105840": 483, "10586": 475, "105866": 483, "10590": [478, 483], "105908": 483, "10593": 475, "105967": 483, "105974": 483, "105979": 483, "105987": 483, "106": [235, 261, 343, 461, 464], "1060": [343, 481, 483], "106052": 483, "106075": 483, "106092": 483, "1061": 483, "106118": 483, "106145": 483, "106152": 483, "106176": 483, "106186": 483, "10620": 475, "106232": 483, "106233": 483, "106242": 483, "106263": 483, "106292": 483, "1063": 223, "106330": 483, "106350": 483, "106359": 483, "106396": 483, "106403": 483, "10650": 483, "106503": 483, "106510": 483, "106524": 483, "106530": 483, "106531": 474, "10656": 483, "106560": 483, "106584": 483, "106602": 483, "106669": 483, "106684": 483, "106714": 483, "106719": 483, "106723": 483, "106752": 483, "106774": 483, "10679": 475, "1068": 382, "1068268": 469, "106831": 483, "106844": 483, "106881": 483, "106895": 483, "106897": 483, "106898": 483, "106905": 483, "106917": 483, "106931": 483, "106939": 284, "106948": 483, "106962": 483, "106970": 483, "107": [343, 461], "107008": 483, "107077": 483, "107080": 483, "1071": 343, "10711": 475, "107155": 483, "10716": 483, "107178": 483, "107219": 483, "107226": 483, "107237": 483, "107263": 483, "107305": 483, "10735": [344, 472, 473, 480, 481, 482], "107396": 483, "1074": 483, "10740": 483, "10744": 483, "10746": 483, "10747": 483, "10755": 476, "107565": 483, "107576": 483, "107715": 483, "107724": 483, "10775": 476, "107774": 483, "107805": 483, "107810": 483, "107814": 483, "10783": 475, "10784": 476, "107845": 483, "1079": 476, "107901": 483, "107913": 483, "107915": 483, "107916": 483, "107963": 483, "108": [343, 382, 461], "1080": 469, "108083": 483, "108111": 483, "108269": 483, "10827": 475, "108295": 483, "108310": 483, "10838": 483, "108388": 483, "108390": 483, "108469": 483, "108487": 483, "108520": 483, "108654": 483, "10866": 476, "10868": 476, "108682": 483, "1087": 288, "108732": 483, "108740": 483, "1087418": 469, "108791": 483, "1088": 288, "10882": 476, "108826": 483, "108834": 483, "108843": 483, "108851": 483, "10889": 475, "1089": 288, "108927": 483, "108959": 483, "108962": 483, "108976": 483, "108987": 483, "109": [343, 382, 461], "1090": 288, "109015": 483, "109047": 483, "109052": 483, "1091": 288, "10910": 483, "109114": 483, "109118": 483, "109120": 483, "109179": 483, "109181": 483, "109191": 483, "109195": 483, "1092": 288, "109207": 483, "109209": 483, "109216": 483, "109219": 483, "109230": 483, "109237": 483, "10924": 476, "109286": 483, "1093": 288, "109341": 483, "109351": 483, "109371": 483, "109375": 483, "109396": 483, "1094": 288, "10945": [482, 483], "109475": 483, "109496": 483, "1095": [183, 288], "109521": 483, "109534": 483, "109538": 483, "109580": 483, "109590": 483, "109593": 483, "109594": 483, "109596": 483, "1096": 288, "109613": 483, "109627": 483, "109631": 483, "109653": 483, "10968": 476, "109719": 483, "109747": 483, "1097797": 477, "10978": 483, "109782": 483, "109786": 483, "109793": 483, "10980": 475, "109818": 483, "109823": 483, "109853": 483, "109858": 483, "109889": 483, "109894": 483, "109972": 483, "1099726899285419": 166, "109974": 483, "10998": 476, "109980": 483, "109981": 483, "109991": 483, "10_000": [318, 343], "10_152": 343, "10_756": 343, "10aedt": 366, "10c": 347, "10d": 446, "10e6": 85, "10ffff": [87, 158, 428, 476, 483], "10j": 435, "10m": 284, "10px": 467, "10s": [102, 347], "10shhb": 347, "10x": [475, 476, 477, 480, 483], "10xxxxxx": 158, "11": [4, 7, 13, 23, 25, 26, 31, 33, 34, 35, 43, 52, 57, 58, 59, 60, 61, 68, 72, 85, 87, 89, 92, 93, 94, 95, 96, 100, 101, 102, 104, 105, 106, 109, 112, 113, 117, 120, 122, 126, 127, 128, 135, 136, 138, 139, 141, 146, 150, 151, 152, 153, 158, 160, 166, 169, 173, 175, 176, 181, 183, 184, 186, 191, 193, 211, 212, 213, 215, 218, 221, 225, 226, 230, 231, 234, 235, 236, 241, 242, 245, 247, 249, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 272, 275, 278, 281, 283, 287, 288, 291, 293, 295, 296, 297, 299, 301, 307, 318, 319, 321, 322, 330, 332, 333, 334, 336, 337, 339, 340, 341, 343, 344, 345, 347, 348, 349, 352, 354, 355, 358, 359, 360, 361, 362, 364, 366, 378, 379, 381, 383, 386, 388, 395, 397, 399, 400, 403, 407, 408, 412, 422, 423, 424, 425, 427, 428, 430, 431, 435, 436, 442, 446, 455, 456, 461, 464, 465, 466, 468, 470, 472, 474, 475, 477, 478, 479, 484], "110": [261, 305, 343, 345, 441], "1100": [343, 471], "110000": 464, "110017": 483, "110031": 483, "110033": 483, "110036": 483, "110038": 483, "110045": 483, "110088": 483, "1101": 468, "11015": 483, "11016": 477, "110167": 483, "110190": 483, "110196": 483, "1102": 483, "110237": 483, "11025": 295, "110259": 483, "110267": 483, "110345": 483, "110365": 483, "110367": 483, "110378": 483, "110388": 483, "110392": 483, "110395": 483, "1104": 483, "110437": 483, "110455": 483, "110459": 483, "110488": 483, "110514": 483, "110519": 483, "110543": 483, "110590": 483, "1106316": 468, "110647": 483, "110696": 483, "11072": 476, "110746": 483, "110782": 483, "110820": 483, "11085": 476, "11089": 476, "110894": 483, "1109": 343, "110910": 483, "110913": 483, "110918": 483, "110932": 483, "110938": 483, "110950": 483, "110995": 483, "110xxxxx": 158, "111": [96, 109, 225, 261, 343, 345, 461], "1110": 225, "111015": 483, "11102": 483, "111046": 483, "111049": 483, "11105": 483, "111058": 483, "11109": 476, "111092": 483, "1110xxxx": 158, "11110xxx": 158, "11111111": [186, 344], "1111111111111111": 283, "11111113": 186, "11113": 476, "111159": 483, "111165": 483, "111174": 483, "111187": 483, "11122": 483, "111239": 483, "111251": 483, "111253": 483, "111293": 483, "111295": 483, "111342": 483, "111356": 483, "111358": 483, "111366": 483, "111380": 483, "1114111": [64, 352, 476], "1114112": [64, 158], "111460": 483, "111531": 483, "111541": 483, "1115886": 468, "111615": 483, "111654": 483, "111699": 483, "11175": 477, "111775": 483, "111784": 483, "111804": 483, "11183": 476, "111841": 483, "111856": 483, "111877": 483, "11191": 483, "11192": 483, "11193": 483, "111942": 483, "111_845": 343, "112": [186, 259, 343, 382, 472, 481, 482, 483], "112006": 483, "11205": 483, "112087": 483, "112088": 483, "112105": 483, "112125": 483, "112215": 483, "11223": 476, "112243": 483, "112266": 483, "112272535095293": 166, "112281": 483, "1123": [366, 471], "112305": 483, "11233": 483, "112334": 483, "112343": 483, "112356": 483, "112358": 483, "112364": 483, "112367": 483, "112387": 483, "112388": 483, "112414": 483, "112438": 483, "1125": 158, "112509": 483, "112536": 483, "112559": 483, "112578": 483, "112582705942171": 166, "1125899906842624": 444, "11259": 483, "112618": 483, "112625": 483, "112645": 483, "112672": 483, "11271": [478, 483], "112716": 483, "112769": 483, "11281": 476, "112826": 474, "112867": 483, "11289": 476, "112898": 483, "11291": 476, "112932": 483, "112943": 483, "11297": 476, "113": [186, 221, 449], "113009": 483, "113028": 483, "113171": 483, "113188": 483, "113199": 483, "113214": 483, "113246": 483, "113267": 483, "113269": 483, "113280": 483, "113297": 483, "113320": 483, "113358": 483, "113407": 483, "113421": 483, "113516": 483, "113538": 483, "113543": 483, "113594": 483, "113602": 483, "113659": 483, "113661": 483, "1137": 468, "113703": 483, "113729": 483, "11377": 476, "113781": 483, "113877": 483, "11388": 476, "113892": 483, "11390": 477, "113903": 483, "113951": 483, "113964": 483, "114": [109, 122, 225], "114014": 483, "114053": 483, "114071": 483, "114077": 483, "11408": 98, "114096": 483, "11410": 483, "11414": 98, "114149": 483, "11418": 98, "1142331976": 78, "11424": 98, "114257": 483, "11428": 98, "1143": 160, "114328": 483, "11433": 98, "114388": 483, "114440": 483, "114492": 483, "1145": 103, "11453": 483, "114539": 348, "114563": 483, "114572": 483, "11471": 483, "114763": 483, "114781": 483, "114828": 483, "114887": 483, "114959": 483, "114965": 483, "115": [122, 225, 261, 345, 382, 483], "115009": 483, "115011": 483, "115015": 483, "115049": 483, "115059": 483, "1150640792": 176, "115122": 483, "115133": 483, "115154": 483, "115165": 483, "115167": 483, "115197": 483, "115233": 483, "115243": 483, "115280095190773": 166, "115392": 483, "115398": 483, "115399": 483, "11549": 480, "115543": 483, "115554": 483, "115570": 483, "11558": 483, "115596": 483, "115618": 483, "11571": 483, "115712": 483, "115720": 483, "115797848077099": 166, "1158": 468, "115809": 483, "115823": 483, "115874": 483, "115881": 483, "115886": 483, "11591": 476, "11594": 483, "115978": 483, "115979": 483, "11599": 483, "116034": 483, "116040": 483, "11610": 476, "116117": 483, "116143": 483, "116145": 483, "1162": 343, "11620": 483, "116296": 483, "116307": 483, "116313": 483, "116325": 483, "116333": 483, "116401": 483, "116484": 483, "116600": 483, "116604": 483, "116626": 483, "116735": 483, "116741": 483, "116764": 483, "116767": 483, "116773": 483, "116811": 483, "116869": 483, "11688": 476, "11694": 483, "116957": 483, "117": [382, 463, 483], "117021": 483, "117084": 483, "11709": 483, "117110": 483, "117178": 483, "117187": 483, "117216": 288, "117233": 483, "117267": 483, "1172711": 476, "117310": 483, "117313": 483, "11734": [479, 483], "117467": 483, "117503": 483, "117534": 483, "117535": 483, "117566": 483, "1176": 223, "117691": 483, "117692": 483, "117881": 483, "117894": 483, "117928": 483, "11798": 477, "117995": 483, "118013": 483, "1180193": 469, "118033": 483, "118042": 483, "1181": 468, "11811": 476, "11816": 477, "118164": 483, "118168": 483, "11822": [480, 483], "118221": 483, "11824": 483, "118263": 483, "118272": 483, "118314": 483, "118347": 483, "118404": 483, "118486": [474, 483], "118507": 483, "118513": 483, "118643": 483, "11866": 483, "11874": 483, "118868": 483, "11888": 476, "118997": 483, "119": [288, 343, 382, 481], "119011": 483, "119050": 483, "119070": 483, "119118": 483, "11913": [480, 483], "119174": 483, "1192": 343, "119213": 483, "119311": 483, "1193128": 468, "1193577": 468, "11939": 477, "119395": 483, "11953": 483, "119585": 483, "11959": 477, "119690": 483, "119819": 483, "119821": 483, "1198569": [480, 483], "11a1": 483, "11a2": 483, "11a4": 483, "11a7": 483, "11alpha": 483, "11b1": 483, "11da": [398, 467], "11s": 102, "11x": 472, "12": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 482, 484], "120": [59, 72, 95, 155, 193, 226, 261, 352, 384, 469, 479, 481, 483], "1200": [343, 456], "120000j": 471, "1200313": 476, "12006": 479, "120121": 483, "12016": 476, "12021": 476, "120211": 483, "12022": [473, 483], "120244": 483, "12049": 476, "12067": 483, "120x": 476, "121": [343, 469], "12100": 476, "12139": 476, "12144": 483, "12168": 269, "12170": 476, "12178": 483, "1218234": 483, "12191": 476, "122": [469, 479], "12202": 483, "1220212": 469, "1221598": 468, "12220": 483, "1222585": 469, "12239": 483, "1224": 343, "123": [35, 73, 100, 102, 106, 122, 186, 221, 225, 261, 268, 337, 344, 347, 430, 440, 446, 462, 464, 468, 469, 471, 475], "1230540": [481, 483], "12306": 476, "12319": [479, 483], "12326": 476, "12328": 476, "1233329": 479, "1234": [176, 186, 259, 313, 329, 344, 378, 398, 442, 468, 472, 478, 483], "12345": [102, 176, 225, 440, 442, 465, 471, 479, 483], "123456": 183, "1234567": [186, 221, 452, 471], "12345678": 398, "12345678123456781234567812345678": 398, "123456789": 186, "1234567890": [345, 468], "123456789012": 466, "1234567890123": 464, "1234567890123l": 464, "1235": 166, "12380": 476, "12382": 483, "12387": 483, "123e": 186, "124": [469, 471, 475, 477], "12410": 483, "12414": 483, "12419": 269, "12428": 477, "12442": 476, "12458": 483, "1246": 94, "12486": 483, "125": [221, 446, 449, 468], "1250": 158, "1251": 158, "12518": 483, "1252": [158, 448, 452], "12523": 483, "12524": 242, "1253": 158, "1254": [158, 319], "12546": 483, "1255": 158, "12551": 476, "1256": 158, "1257": 158, "1258": 158, "126": [176, 259, 382, 481], "12629": 476, "12639": 483, "12646": 476, "127": [35, 58, 64, 102, 107, 109, 126, 133, 136, 170, 245, 247, 259, 283, 293, 338, 341, 344, 348, 352, 362, 382, 467, 478, 483], "1270084485": 96, "12707": 483, "12708": 476, "12715": 476, "12720": 476, "12728": 483, "1273829": 468, "1275": 466, "12753": 476, "1276": 382, "12760": 476, "12782": 472, "128": [35, 64, 87, 99, 102, 109, 141, 160, 177, 186, 226, 235, 259, 284, 293, 340, 341, 384, 398, 435, 449, 467, 474, 478, 483], "12800": 483, "12803": 476, "12822": 483, "1283": 483, "12844": [480, 483], "1286": 475, "12866": 477, "12885": 483, "12888": 476, "1289118": 475, "12892": 477, "129": 343, "12900": 483, "12915": [302, 483], "12921": 477, "12923": 483, "1294959": [482, 483], "1296": 261, "1297230027": 293, "1297230295": 293, "12_345": 225, "12b1": 483, "12beta1": 483, "12beta4": 483, "12f": 466, "12g": [444, 462], "12j": 471, "12s": 102, "12x": 476, "13": [68, 95, 98, 102, 104, 109, 112, 117, 139, 141, 150, 151, 152, 153, 158, 160, 173, 176, 183, 193, 211, 226, 236, 241, 249, 259, 261, 266, 272, 278, 281, 287, 294, 295, 301, 322, 332, 336, 339, 340, 343, 344, 345, 349, 352, 359, 360, 378, 386, 397, 403, 408, 429, 441, 444, 446, 449, 450, 464, 465, 466, 467, 468, 469, 473, 475, 477, 478, 480, 481, 482, 483, 484], "130": [101, 259, 343, 469], "130283799226640": 84, "130283807619344": 84, "130283816012048": 84, "130283824404752": 84, "130283832797456": 84, "13041": 483, "13051": 483, "13054": 476, "13062": 476, "13096": 483, "13097": 483, "1310": 343, "131002": 426, "1311": 483, "13121": 476, "13128": 483, "13153": [481, 483], "132": 235, "13201": 476, "13204": 483, "1321": 235, "13216": 476, "1322": [478, 483], "13223": 483, "13226": 476, "132263": 183, "13227": 476, "13231": 109, "13232": 102, "13236": 483, "13245": 476, "13248": [477, 479, 483], "13266": 477, "13273": 476, "1327883547": 296, "13295": 476, "133": 382, "1330538": 468, "13312": 483, "1334": 382, "13341": 215, "13357": 476, "13358": 476, "13374": 476, "13390": 477, "1339796": 468, "13411": 476, "13449": 476, "13464": 476, "13477": 477, "13487": 483, "13501": 483, "135143996": 463, "13521": 476, "13550": 476, "13553": 483, "13583": [478, 483], "13585": 476, "13586": 483, "13592": 477, "13598": 483, "135_000": 483, "136": 463, "13600": 413, "13601": [482, 483], "13609": 476, "13611": [481, 483], "13620": 476, "13626": 476, "13627": 476, "13631": 483, "13633": 477, "13634": 476, "13635": 476, "13637": 476, "13641": 476, "1368247": 469, "136kb": 453, "137": 481, "13742": [478, 483], "13743": 483, "13748": 476, "13756": 483, "13773": 477, "13777": 476, "13790": 483, "13802": [479, 480, 483], "1381": 468, "13814": 483, "13847": 476, "13857": 476, "13866": [478, 483], "13884": 483, "13886": 483, "13891296": 85, "13896": 477, "139": [186, 382, 464], "13901272": 85, "13916": 483, "13918": [478, 483], "13936": [183, 478, 483], "1393667": 468, "13938": 483, "13952": 483, "13959": 476, "13960": 476, "13968": [478, 483], "13988": 476, "1399": 475, "13993": 476, "139966783348904": 176, "139966785747344": 176, "13b": 483, "13th": 378, "14": [61, 68, 85, 89, 95, 96, 98, 106, 109, 121, 139, 141, 150, 158, 160, 161, 166, 176, 177, 183, 186, 191, 193, 209, 225, 236, 241, 247, 250, 253, 259, 261, 283, 293, 296, 302, 319, 322, 332, 337, 340, 343, 344, 345, 352, 358, 366, 378, 386, 398, 413, 428, 430, 432, 435, 442, 444, 446, 449, 452, 464, 466, 467, 469, 472, 473, 475, 478, 483, 484], "140": [384, 469, 483], "1400": 261, "140000": [176, 345], "140000000000000124344978758017532527446746826171875": 186, "140000000000001": 467, "1400001049": 176, "140018365411392": 176, "140161580456576": [389, 390], "14040": 476, "140736940992272": 96, "140737213728528": 96, "140737354016512": 96, "14099": 483, "14105": 483, "141100": 413, "14117": 483, "1412": 96, "14127": 476, "14132": 483, "1414213": 221, "1415": [167, 186, 468], "14156": 483, "14159": [442, 444], "141592": 275, "1415926535": 186, "14159265358979": 352, "141592653589793": [154, 444, 475], "141592653589793115997963468544185161590576171875": 186, "1415926535897932": 221, "141592653589793238462643383": 186, "14159265359": [167, 444, 446], "1415926536": 481, "1415927": 283, "14159292": 186, "141593e": 221, "1416": [186, 442], "14166": 476, "14180": 476, "14191": [480, 483], "142": [382, 442, 446], "14203": 483, "14204": 476, "14210": 476, "1422": 341, "14243": 483, "14260": 483, "14265": 483, "14285": 483, "142857": [186, 193], "142857142857": 193, "14285714285714285": [193, 446], "142857142857142857142857142857142857": 452, "142857142857142857142857142857142857142857142857142857142857": 186, "1428571428571428571428571428571428571429": 221, "1428571428571428571428571429": [186, 466], "142857143": [186, 466], "143": [186, 248, 382, 384, 464], "14315": 483, "14323": 477, "143401161400469": 444, "143401161448607": 444, "14368": 451, "14373": [478, 483], "14377": 477, "14386": 476, "144": [85, 226, 261, 441, 449, 450, 481], "14400": 183, "14432": 477, "1444529": 468, "1445": 96, "14455": 477, "1446": 382, "14465": 483, "14470": 477, "14493": 476, "14538": 476, "1454": 382, "14546": 483, "14588": 476, "14605": 476, "14621": 477, "14624": 476, "14625": 477, "14626": 476, "14631": 477, "14646": 476, "14647": 483, "1465": 382, "14678": [472, 483], "147": [102, 481], "1473257": 468, "14738": 476, "14758": 478, "14794": 477, "148": 382, "14807": 476, "14837": 476, "148957571865031": 318, "1490190": 468, "14910": [478, 483], "14916": 483, "1491866": 468, "1492704": 477, "1492e7": 94, "14935": 483, "14976": [480, 483], "14977": 483, "14_15_93": 435, "14_15_93j": 435, "14e": 435, "14j": 435, "15": [68, 78, 85, 92, 95, 98, 101, 102, 108, 109, 131, 150, 158, 160, 167, 181, 183, 193, 203, 211, 215, 223, 236, 241, 247, 258, 259, 261, 266, 267, 288, 293, 299, 318, 319, 322, 340, 341, 343, 344, 345, 348, 352, 366, 367, 378, 381, 387, 424, 425, 435, 446, 456, 463, 465, 466, 467, 468, 469, 471, 472, 473, 475, 478, 479, 480, 481, 482, 483], "150": [343, 384, 388, 465, 469], "1500": [384, 483], "15002": 483, "15006": 476, "15010": 483, "15014": [478, 483], "15026": 476, "15027": [478, 483], "15037": 483, "1505": 465, "15061": 476, "15068": 483, "1507": [102, 468], "1508": 102, "15088": [482, 483], "15114": [476, 477, 478, 483], "15132": 477, "15133": 483, "1513695": 468, "1514420": 483, "1515": 469, "1515144883": 341, "15153": 476, "15156": 476, "1519638": [478, 483], "152": 93, "15204": 477, "1521": [143, 317], "15216": [480, 483], "1521950": 479, "1522": [146, 317], "1523": 469, "15234": 483, "15238": 476, "1524": 272, "15248": [481, 483], "1526": 382, "15275": 483, "1529353": [479, 480, 481, 483], "153": 102, "15303": 483, "15308": 483, "1530959": 468, "1533": 469, "1533909": 468, "1534": 468, "15347": 483, "15348": 483, "15359": 477, "15369": 483, "1537": 468, "1537721": 475, "1537850": 468, "15381": [478, 483], "154": [223, 284, 382, 466, 475], "15417": 477, "1542": 483, "1543": 96, "1544": 96, "15442": 477, "1545": 96, "15450": 483, "15452": 477, "1546": 96, "1547": 96, "1548": 96, "15480": 477, "155": [96, 319], "15506": 483, "15511187532873822802242430164693032110632597200169861120000": 468, "15513": 483, "15522": 483, "15523": 483, "15528": 477, "15530bba69924174860db778f2c6f8104d3aaf9d26241840c8c4a641c8d000a9": 235, "15582": [478, 483], "15596": 477, "15627": 477, "1563": 382, "15641": 477, "1565525": 477, "156641360502280": 98, "156641360518804": 98, "156641360532797": 98, "156641360546807": 98, "156641360563367": 98, "156641360578365": 98, "156641360591757": 98, "156641360605556": 98, "156641360617482": 98, "156641360629814": 98, "156641360642285": 98, "156641360656770": 98, "156641360669707": 98, "156641360687853": 98, "156641360700719": 98, "156641360719640": 98, "156641360732567": 98, "156641360747370": 98, "1569291": 475, "15696": 483, "157": [186, 479], "15701": 477, "1571184": 469, "15758": 477, "15759": 483, "15765": 337, "15767": 479, "15786": [479, 480, 483], "158": 474, "1580": 471, "15801": 483, "15805": 477, "15806": 477, "1581": 382, "1581073": 468, "15812": 483, "15819": 483, "1583": 468, "15836": 483, "1583863": 469, "15859": 483, "15873": [480, 483], "1588": 469, "1589": 475, "15903": 483, "1590864": 469, "15913": 483, "15916": [478, 483], "1591665": 468, "15944": 483, "15955": [478, 483], "15958": 477, "1596321": 483, "15968": 483, "1597": 441, "1599845": 468, "15999": 483, "15g": 352, "15s": [102, 267, 268, 469, 475], "15x": [475, 482, 483], "16": [4, 5, 16, 34, 41, 47, 68, 78, 85, 89, 94, 95, 96, 102, 107, 109, 117, 121, 141, 146, 150, 158, 173, 176, 177, 183, 193, 211, 221, 225, 226, 235, 236, 240, 259, 261, 262, 267, 283, 292, 293, 295, 314, 318, 319, 322, 326, 332, 337, 341, 343, 344, 345, 348, 352, 366, 369, 378, 398, 424, 426, 435, 440, 442, 444, 446, 449, 451, 452, 453, 456, 462, 464, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "160": [369, 382, 384, 426], "16000": 483, "1601": 405, "1602": 483, "16034": 477, "16043": 483, "16047": 483, "16049": 477, "1607951": 469, "16099": [479, 483], "161": 483, "16104": 478, "16110": 477, "16113": [479, 483], "1612262": [479, 480, 483], "16129": 477, "16133": 483, "16135": 477, "1613500": 483, "16136": 477, "1614": 382, "16148": 477, "1616979": [469, 475], "1617161": 483, "16180": 483, "16181": 483, "16182": 483, "16203": 477, "1621": 483, "16233": 483, "1625": 476, "16255": 483, "16285": [480, 483], "1629": 468, "16290": 477, "163": 483, "1631171": 468, "16314": [478, 483], "1632": 319, "16324": [478, 483], "16329": 483, "16333": 477, "1635": 468, "16351": 477, "1635741": [472, 483], "16379": [473, 483], "1638033": 468, "16382": 483, "16384": 303, "16396": 483, "1640": 468, "16421": 477, "16423": 477, "1646": 468, "16464": 477, "1647489": 483, "16475": 477, "1648": 468, "16484": 483, "16486": 477, "16488": 477, "1649190": 468, "16499": 477, "165": [85, 267, 343], "16500": [480, 483], "16518": [478, 483], "16522": 477, "1652342830": 325, "1652342835": 325, "1652342840": 325, "16531": [478, 483], "16537": 483, "1653741": 483, "1655": [469, 471], "1657": 468, "16580": 483, "16594": 483, "16595": 477, "16596": 477, "166": [382, 386], "16613": 477, "16620": 483, "16624": 477, "16632": 477, "1663329": 468, "1664": [469, 471], "16662": [478, 483], "1667": 483, "16674": 477, "16685": 477, "16690": 483, "16692": 477, "16694": 477, "167": 382, "16709": 477, "16711680": 344, "1673007": 476, "1674032": 469, "16742": 477, "1675": 332, "16754": 477, "1675423": 468, "1675951": 475, "16764": [479, 483], "16772": 477, "16795": 483, "168": [99, 102, 243, 259, 267, 345], "16806": 483, "16808": [478, 483], "1681432": 468, "16832": 477, "1683368": 468, "16840": 483, "16864": [479, 483], "1686487": 468, "16865": 483, "16893": 483, "1690608": 476, "16914": [478, 483], "16935": 477, "1696199": [469, 471], "16965": 483, "16967": 477, "16970": 483, "16991": [478, 483], "16995": 483, "16997": 477, "16be": 158, "16fd2706": [398, 467], "16g": 352, "16le": 158, "16mb": 483, "17": [4, 68, 94, 95, 102, 109, 139, 150, 183, 186, 190, 193, 208, 223, 236, 257, 261, 292, 293, 319, 366, 378, 426, 444, 449, 463, 466, 468, 469, 471, 474, 475, 477, 478, 483, 484], "170": [343, 384], "1700": 347, "1700288": 468, "17005": [482, 483], "17015": 477, "1703178": 483, "17045": 483, "1706815": 468, "17087": 477, "17094": 477, "17095": 483, "17115": 477, "17128": 483, "17134": 477, "17140": 483, "17150": 477, "17159": 477, "17162": 477, "17172": 483, "17185": 483, "172": [109, 343, 476], "17201": 477, "17211": 479, "17214": 483, "17219": 483, "1722344": 469, "17232": 483, "17239": [481, 483], "17258": 483, "17272": 477, "17276": 477, "1727780": 468, "1728": 382, "17288": 483, "1729": 283, "17293": 483, "173": 468, "1730": 248, "17323": 477, "1734346": 468, "1736190": 468, "17373": [478, 483], "1738": 394, "17381": 483, "17386": 483, "17390": 483, "1739468": [468, 471, 478], "17396": 483, "1739906": 468, "17400": 477, "17401": 483, "17422": 483, "17434": 477, "17442": [478, 483], "17445": [478, 483], "17457": 477, "1745761": 476, "17467": 477, "17481": 477, "17482": 226, "17485": 477, "17487": 477, "17498": 483, "1750": 341, "17500": 483, "175091447274739": 343, "17527": 483, "1753": 483, "17530": 483, "1753245": 468, "17535": [480, 481, 483], "1755": [288, 476], "17552": [478, 483], "17561": [481, 483], "17565798759460449": 465, "17574405670166016": 465, "17582": 483, "17596": 483, "17599": 483, "176": 117, "17603": 483, "17611": [481, 483], "17616": 477, "17618": 477, "17621": [478, 483], "17633": 483, "17636": [478, 483], "17642": 483, "1764286": 483, "17643": 477, "17654": 483, "1766": 266, "17660": 478, "1770": 109, "17711": 483, "17717": 483, "1772673": 477, "1772833": 475, "17735": 483, "17741": 477, "1775025": 468, "17752": 483, "17756": 483, "17764": 477, "17765": 483, "1777412": 475, "17792": 483, "17799": 483, "178": 85, "17804": 477, "17818": 477, "17826": 483, "17827": 477, "17828": 477, "17839": 477, "1783957616": 467, "17852": 483, "17853": 477, "17861": 483, "17884": [479, 483], "1788835886": 369, "17896": 483, "179": 369, "17909": [479, 483], "17911": [478, 483], "17914": 477, "17916": 477, "17923": 483, "17934": 477, "17941": [479, 483], "17970987693706186": 451, "1798": 468, "17f": 444, "17g": [462, 471], "17x": [261, 472, 483], "18": [80, 89, 95, 98, 109, 150, 183, 186, 193, 223, 226, 236, 296, 318, 319, 332, 341, 343, 344, 347, 352, 376, 446, 451, 465, 466, 469, 472, 473, 474, 475, 480, 481, 482, 483], "180": [155, 235, 343, 384, 475], "1800146073117523": 318, "18010": 483, "18011": 477, "18014398509481984l": 468, "18018": [479, 483], "18020": 477, "18039": [478, 483], "1804289383": 176, "18049": 483, "18058": 477, "18060": 483, "18065": 477, "18072": 477, "18075": 483, "1808": [394, 478, 483], "18093": 483, "18096": 483, "18104": 483, "1811": 469, "18111": 477, "1812": 483, "18128": 483, "18132": 483, "18138": 477, "18143": 477, "18147": 477, "18149": 477, "18159": 478, "1817": 468, "18174": 483, "1818": [469, 471], "1819": 468, "18192": 477, "18193": 477, "18193507194519043": 465, "18194": 477, "18214": 477, "18216": 483, "18219": 483, "18240": 477, "18283": 483, "18287": 483, "18288201344": 466, "18288201344j": 466, "1828820134592177245001": 466, "18292": 483, "183": 369, "18314": 483, "18319": 483, "1832": 408, "18338": 477, "18348": 483, "18369": 483, "18372": 483, "18374": 483, "18378": 483, "18379": 477, "18383": 483, "18393": 477, "18395": [478, 483], "184": 337, "18401": 483, "18408": 477, "18409": 483, "18410": 483, "18416": 477, "18446744073709551616": [462, 469], "18446744073709551616l": 464, "18473": 483, "18492": 483, "185": [382, 471], "18518": 483, "18520": 477, "18531": 483, "18532": 477, "18533": 483, "18540": 483, "18554": 483, "18569": 477, "18578": 483, "18582": 477, "18585": 477, "18592": 483, "18596": 477, "18600": 477, "18604": 483, "1861": 468, "18615": [478, 483], "18622": 483, "18626": 477, "18643": 483, "1866884": 483, "18673": 477, "18682": 483, "18684": 483, "1869": 335, "18690": 477, "187": 467, "1870": 476, "18711": [478, 483], "18725": 477, "18726": [479, 483], "18748": [188, 481, 483], "1875": 483, "18756": 477, "18764": 477, "18771": 477, "18775": 477, "1878": 468, "18787": 483, "18794": 477, "18802": 483, "18807": [477, 483], "18818": 477, "18819": 483, "18823": 477, "18844": [479, 483], "18853": 483, "18878": 477, "18882": 477, "18891": 477, "18893": 483, "18896": [480, 483], "189": 479, "18901": 477, "18910": 483, "18920": 477, "18922": 477, "18929": 477, "1893": 337, "18931": [478, 483], "18937": 477, "1895": 426, "18966": [480, 483], "18973": 483, "18974": 483, "18978": 477, "18982": 483, "18983": [478, 483], "18999": 477, "18t15": 183, "18x": 472, "19": [86, 89, 95, 96, 101, 102, 106, 109, 139, 150, 160, 176, 183, 186, 193, 209, 223, 236, 261, 293, 341, 343, 344, 345, 423, 465, 466, 467, 468, 469, 472, 475, 481, 482, 483], "190": [85, 343, 464], "1900": [86, 183, 366, 435, 468, 475], "19003": 483, "1902": 483, "19030": 477, "19072": [473, 483], "19076": 483, "19078": 477, "19104": 483, "19105": 483, "19132": 477, "19143": 483, "19152": 477, "19157": 483, "19165": 483, "19176": 483, "19199": 477, "192": [99, 102, 243, 259, 267, 345], "19201": 477, "19205": 477, "19209": 477, "19218": 477, "19219": 477, "19222": [477, 478], "19223": 477, "19235": [478, 483], "1926": 475, "19261": 477, "19266": 477, "19270": 483, "19274": 477, "19282": 477, "1929": 483, "19292": 477, "193": [243, 384, 470], "1932": 483, "19324": 477, "19343": 477, "19361": [478, 483], "19375": 477, "19380": [478, 483], "19385": 483, "1939": 305, "19398": 483, "19407": 483, "19413": 477, "19414": 483, "19417": 483, "19435": 483, "1944": 183, "1945": 183, "19450": 483, "1946": 337, "19460": 483, "19466": 483, "19468": 483, "19475": [479, 483], "19489": 483, "19493": 483, "19494": [478, 483], "195": [343, 479], "19500": [479, 483], "19505": [478, 483], "19524": 483, "19537": 483, "19542": 483, "19546": 483, "19548": 483, "19552": 477, "19555": 477, "19569": 483, "1957": 340, "19573": 483, "1960": 147, "19610": 483, "19611": [479, 483], "19619": 477, "19628": [478, 483], "1963": 147, "1964": 451, "19641": 477, "19655": 483, "1966": 183, "19662": 478, "19665591977536678": 367, "19668": 477, "1967": [183, 384, 469], "19674": 477, "19675": 483, "19676": [478, 483], "1968": 34, "19689": 477, "1969": 366, "19696": 483, "19697": 483, "1970": [78, 80, 147, 150, 183, 339, 366, 483], "19705": 483, "1971": [262, 340, 343], "19711": 483, "19717": 483, "1972": [109, 340, 465, 466, 467], "19722": 477, "19737": 483, "19746": [478, 483], "19748": 483, "1975": [93, 147, 262, 340, 343, 449, 481], "19764": [480, 483], "19771": 483, "19775": [478, 483], "19776": [478, 483], "19777": [478, 483], "1979": [340, 343], "1980": [158, 190, 422, 483], "1980s": 468, "1982": [340, 343, 366], "19824": 483, "1983": [340, 343], "1984": 340, "19840": 478, "1985": [153, 340], "19858": 483, "1986": [147, 183], "19865": 483, "1987": [154, 158, 183, 408], "1988": [183, 190, 358, 468], "19883": 483, "19884": 483, "1989": [80, 183, 468], "19891": 483, "19896": 483, "199": 241, "1990": 426, "19903": 483, "1990s": [468, 483], "1991": [33, 69, 80, 340, 426], "19925": 483, "1993": [366, 483], "19930": [480, 483], "19933": 483, "19937": 318, "1994": [245, 426], "19940": [478, 483], "19946": 477, "1995": [33, 69, 209, 426, 462, 483], "1996": 426, "19962": 483, "1997": [33, 147, 426, 469, 475], "19977": [478, 483], "1998": [106, 111, 318, 426], "19980": 483, "1999": [352, 366, 395, 426], "1999149567": 369, "19995": 483, "19996": 483, "1999999999999999555910790149937383830547332763671875": 78, "19999999999999996": 78, "1999999999999999997": 186, "199999999999ap": 471, "19da": 475, "19s": 476, "1_000": [261, 483], "1_000_000": [318, 479, 483], "1_000_000_000_000_000": 479, "1_000_000_000_000_007": 261, "1_000_000_000_000_403": 261, "1_234_567": 221, "1_400": 343, "1_650_000_000": 325, "1_680": 343, "1a": [211, 479], "1a2": 4, "1b": 483, "1beta1": 462, "1bf21a98c78a1c376ae9": 235, "1c": 483, "1d": [344, 483], "1e": [154, 225, 275, 345, 347, 430, 478, 483], "1e100": [193, 275, 430, 435], "1e100j": 435, "1e25": 474, "1e300": 193, "1e50": 344, "1e500": 18, "1e6": 225, "1e9": 483, "1e9999999999999999999": 186, "1els": [472, 474], "1f": [102, 318, 382, 483], "1f600": 109, "1f609": 109, "1g": [469, 483], "1h": [98, 469], "1i": 483, "1j": [87, 154, 262, 389, 483], "1k": 483, "1l": [35, 341, 464, 465, 468, 469, 483], "1m": 483, "1mb": 469, "1n": 483, "1not": 483, "1or": [472, 474], "1p2": 460, "1q": 483, "1s": [120, 483], "1st": [85, 183, 261], "1t": 483, "1u": 483, "1v": 483, "1w": 483, "20": [78, 85, 89, 92, 93, 95, 98, 101, 102, 106, 109, 134, 139, 150, 155, 176, 181, 183, 186, 193, 209, 211, 221, 235, 236, 247, 255, 259, 261, 267, 283, 293, 296, 308, 318, 319, 321, 322, 337, 341, 343, 344, 352, 358, 366, 367, 384, 386, 394, 396, 426, 435, 440, 449, 451, 455, 456, 462, 466, 467, 468, 469, 471, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "200": [78, 85, 110, 155, 177, 186, 190, 223, 241, 242, 245, 337, 341, 344, 369, 384, 388, 395, 407, 427, 446, 452, 465, 479, 481, 483], "2000": [69, 85, 101, 150, 158, 223, 269, 284, 366, 384, 426, 441, 444, 462, 465, 468, 475, 476, 477, 483], "20000": [186, 367], "200000": [176, 367], "2001": [69, 99, 102, 209, 259, 332, 358, 366, 413, 422, 426, 463, 464, 465, 468, 475, 481, 483], "2001_0db8_0000_0000_0000_0000_0000_1000": 259, "2002": [103, 109, 183, 259, 426, 464, 465], "20022": 483, "20028": 483, "2003": [102, 183, 267, 413, 423, 451, 465, 468, 483], "20030112190404": 288, "20035": [478, 483], "2004": [158, 183, 376, 426, 466], "20041": 483, "20047": 483, "2004h": 483, "2005": [101, 102, 183, 271, 426, 466, 467, 468, 483], "20059": [479, 483], "2006": [78, 95, 183, 267, 314, 411, 413, 422, 426, 467, 482], "20060816": [314, 411, 413], "20061227": 106, "2007": [183, 369, 426, 468, 483], "20071127": 395, "20076": 483, "20079": 483, "2008": [33, 158, 183, 223, 332, 347, 413, 426, 468, 469, 470, 475, 483], "20087": 483, "2009": [102, 183, 319, 340, 390, 426, 463, 469, 471], "20092": [481, 483], "20098": [478, 483], "200c": 469, "200x100": 369, "200x200": 384, "201": [96, 110, 241, 261, 369, 462], "2010": [101, 102, 109, 267, 332, 345, 352, 390, 469, 475], "20104": 483, "2011": [183, 203, 341, 413, 426, 428, 455, 475], "20111104": 183, "20111104t000523": 183, "2012": [85, 92, 109, 223, 476, 482, 483], "20120": 483, "2013": [92, 102, 109, 183, 294, 341, 426, 483], "201311": 483, "2014": [183, 237, 341, 468, 469, 477, 483], "20140210194412": 103, "20145": 483, "2015": [102, 183, 326, 426, 456, 478, 483], "20152": 483, "20155": 483, "2016": [78, 183, 341, 446, 453, 461, 479, 480, 483], "20160321211320": 467, "20160331090247": 467, "20161005": 455, "2017": [86, 294, 341, 435, 456, 483], "20170": 483, "20170401": 483, "20173": 483, "20177": 483, "20179": 483, "2018": [341, 473, 480, 483], "20180": 483, "20180309043602": 483, "20180410025338": 467, "20184": 483, "20188": [478, 483], "2019": [183, 343, 455, 481, 483], "20190511": 177, "20191": [426, 483], "20191204": 183, "20197": [478, 483], "202": [110, 183, 235, 241], "2020": [105, 344, 425, 426, 469, 472, 473, 480, 481, 482, 483], "202002l": 483, "20200703234532": 469, "20201124024954": 467, "20204": [478, 483], "2021": [183, 426, 468, 472, 483], "20210": 483, "20210224183619": 84, "20210619163128": 469, "20211": 483, "20218": [478, 483], "2022": [158, 183, 195, 235, 448, 451, 466, 473, 483], "20220517033456": 426, "2023": [69, 102, 409, 426, 474, 483], "20239": 483, "2024": [474, 483], "20260": 483, "20274": 483, "2028": 262, "20283": 483, "20284": 483, "20285": 483, "20289": [478, 483], "2029": 262, "20291": 483, "20295": [478, 483], "203": [110, 241], "20314": 483, "2033": 468, "20334": [478, 483], "20335": 483, "20355": 483, "20361": [480, 483], "20362": 483, "20366": 483, "20369": 483, "2037": 483, "203718": 200, "20378": 483, "2038": [183, 366, 483], "20383": [478, 483], "20387": 483, "20392": 483, "2039930378537762": 481, "204": [110, 241, 245, 384], "20416": [478, 483], "20421": [478, 483], "20438": 478, "20440": 483, "20443": [482, 483], "2045": [143, 194, 196, 202, 203, 205, 419], "2046": [194, 197, 202], "2047": [194, 202, 203, 208, 209, 235, 475], "20476": 479, "2048": [107, 341, 405, 483], "20480": [478, 483], "20486": [480, 483], "20490": 483, "20491": 483, "20499": 483, "204_199": 343, "205": [68, 110, 241, 245, 288, 402, 483, 484], "20504": 483, "20508": 483, "20519": 483, "2052": [478, 483], "20523": [482, 483], "20524": 483, "20526": 483, "20535": 483, "20537": [478, 483], "20539": 483, "2054": 469, "20567": 483, "20572": 483, "20574": 483, "20577": 483, "20578": 478, "20586": 483, "20589": 483, "206": [110, 241], "2060": [158, 248], "20602": 483, "20625": 477, "20627": [478, 483], "20633": 483, "20635": 483, "20636": 483, "20637": 483, "20639": 483, "20640": 483, "20644": 483, "20668": 483, "2068": [244, 366], "20684": 483, "20691": [478, 483], "20692": 483, "207": [68, 241, 308, 484], "20709": 483, "20710": 477, "20726": [478, 483], "20729": 483, "20731": 483, "20743": 483, "20746": 483, "20765": 483, "20766": 483, "20769": 483, "20778": 483, "20784": 477, "20791": 483, "208": [68, 241, 484], "2080": 318, "20804": [480, 483], "20816": 483, "20817": 483, "20825": [480, 483], "20826": [478, 483], "20844": 483, "20849": [481, 483], "20875": 483, "20879": 483, "20884": 483, "20891": 483, "20896": 483, "20900": 483, "20904": 483, "20907": 483, "2091": [479, 483], "20912": 483, "20928": 483, "20929": 483, "20939": 483, "20942": 483, "20951": [478, 483], "20968": [478, 483], "20980": 483, "20990": 483, "20995": [480, 483], "20998": 483, "20d9cd024d4fb086aae819a1432dd2466de12947831b75c5a30cf2676095d3b4": 235, "20ni": 394, "20th": 462, "20x": [472, 474], "21": [78, 95, 98, 102, 109, 150, 183, 186, 190, 203, 223, 226, 235, 236, 319, 341, 343, 366, 378, 382, 441, 449, 450, 455, 464, 465, 467, 468, 475, 476, 479, 481, 482, 483], "210": 261, "2100": 435, "21000": 483, "21013": 483, "21015": 483, "21016": 483, "21032": 483, "21037": 483, "2104": 464, "21041": [472, 483], "21043": 483, "21044": 483, "21047": [478, 483], "21052": 483, "21057": 483, "21058": 483, "21060": 483, "21068": 483, "2107": [422, 483], "21071": [480, 483], "21075": 483, "21076": [478, 483], "21079": 483, "21082": [293, 483], "21083": 478, "21085": 483, "21088": 483, "2109": [243, 244], "21090": 483, "21091": 483, "21093": 483, "21097": 483, "21099": 483, "210s": 474, "211": [154, 288, 476], "21101": 483, "21112": 483, "21116": 483, "21117": 483, "21120": 483, "21121": 483, "21122": 483, "21124": 483, "21127": 483, "21131": 483, "21134": 483, "21136": 483, "21137": 483, "21139": 483, "21141": 483, "21145": [481, 483], "21147": 483, "21149": 483, "21151": 483, "21155": 483, "21156": [478, 483], "21159": 483, "21166": 483, "21167": 483, "21169": 483, "21171": 483, "21172": 483, "21173": 483, "21176": [478, 483], "2118": 477, "21192": 483, "21193": 483, "21197": 483, "21200": 483, "21201": 483, "21203": 483, "21205": [478, 483], "21207": 483, "21209": 483, "21212": 167, "21217": 483, "2122": [481, 483], "21222": 483, "21223": 483, "21226": 483, "21233": [478, 483], "21236": 483, "21238": [478, 483], "21239": 483, "2125": 468, "21256": 483, "21257": 483, "21262": [478, 483], "21263": 483, "21269": 483, "21270": 483, "21271": [479, 483], "21272": 483, "21274": 483, "21275": 483, "21276": 483, "21277": 483, "21284": 483, "21285": 483, "21291": 483, "21295": 483, "212a": [106, 319], "21302": [473, 483], "21304": 469, "21305": 469, "21306": 469, "21307": 469, "21308": 469, "2131": 382, "21310": 483, "21311": 483, "21312": 483, "21313": 483, "21314": 483, "21315": 483, "21321": 483, "21323": 483, "21326": [478, 483], "21332": 483, "21338": [478, 483], "2135": 483, "21354": 483, "21356": 483, "21377": 483, "2138": 468, "21386": 483, "21389": 483, "21391": 483, "21396": 483, "21398": 483, "214": [186, 308], "21402": 483, "21407": 483, "21408": 483, "21417": [480, 483], "21418": 483, "21421": 483, "21423": [480, 483], "21424": 483, "21425": 483, "21435": 483, "21446": 483, "21448": 483, "21455": [478, 483], "21456": 483, "21462": 469, "21463": 483, "21469": 483, "21474": 483, "2147483647": [419, 435, 467], "2147483648": 419, "21476": 483, "21477": 483, "21478": 483, "21486": [478, 483], "21487": [478, 483], "21491": 483, "21493": 483, "21499": 483, "21503": 483, "21513": 483, "21514": 483, "21515": 483, "21519": 483, "2152": 483, "21520": 483, "21522": 483, "21523": 483, "21525": 483, "21526": 483, "21527": [478, 483], "21529": 483, "21536": [481, 483], "21538": 483, "21539": [478, 483], "21548": 483, "21549": [478, 483], "2155": 344, "21552": 483, "21565": 478, "21578": 483, "21580": 483, "2159": 483, "21590": [479, 483], "21597": 483, "216": [337, 446, 449], "2160": 387, "21600": 483, "21605": 483, "21618": 483, "21619": 483, "21629": 483, "21634": 483, "21642": 483, "21649": 483, "21650": [478, 483], "21668": 483, "21669": 483, "2167": 109, "21671": 469, "21676": 483, "21677": 483, "21679": 483, "2168": 109, "21686": 483, "21694": 483, "21695": 483, "21697": 483, "217": [68, 382, 484], "21703": 483, "21704": 483, "21706": 478, "21707": 483, "21708": [479, 483], "2171": 96, "21711": 483, "21714": 483, "217160342717258261933904529e": 378, "21716034272e": 378, "21717": [478, 483], "21718": 483, "21719": [478, 483], "21720": 483, "21722": 483, "21723": 483, "21725": [478, 483], "21729": 483, "21736": 483, "21740": 483, "2175": [478, 483], "21750": 483, "21760": 483, "21765": 483, "21766": 483, "21767": 483, "21775": 483, "21776": 483, "21777": 483, "21781": 483, "21793": [478, 483], "21795": [478, 483], "218": [68, 226, 484], "2180": 483, "21800": [478, 483], "21801": 483, "21802": 483, "21804": [478, 483], "21811": 483, "21815": [479, 483], "21817": 483, "21827": 483, "2183": [194, 196, 205, 483], "21832": 483, "21858": 483, "21859": 483, "21862": [480, 483], "21863": 483, "21866": 483, "21872": 483, "2188": 341, "21883": 483, "21888": 483, "21897": 483, "21905": 483, "21906": 483, "21907": 483, "21916": 483, "21918": 483, "21923": 483, "21925": 483, "21931": 483, "21932": 483, "21933": 483, "21939": 483, "21940": 483, "21942": 483, "21947": 483, "21951": 483, "21958": 483, "2196": 468, "21965": [478, 483], "21966": 483, "21971": 483, "21975": 483, "21976": 483, "2197947391": 341, "21983": 483, "21986": 483, "21987": 483, "21991": 483, "21995": 483, "21st": 483, "22": [33, 77, 96, 102, 106, 109, 150, 160, 173, 176, 183, 191, 236, 247, 259, 261, 267, 284, 318, 337, 341, 343, 345, 384, 423, 426, 444, 465, 474, 475, 481, 482, 483], "220": [337, 341, 441], "22002": 483, "22003": [478, 483], "22005": 483, "22018": [478, 483], "2202": 483, "22027": [478, 483], "22031": 483, "22032": 483, "22033": 483, "22038": 483, "22042": 483, "22043": [478, 483], "22044": 483, "22047": 483, "22050": 295, "22051": 483, "22054": [478, 483], "22060": 483, "22062": 483, "22068": 483, "2207": 95, "22077": 483, "22079": 483, "22082": 483, "22085": 483, "22091": 483, "22095": 483, "22098": 483, "221": 223, "22102": 483, "22104": 483, "22107": 483, "2211": [478, 483], "22111": 483, "22115": [479, 483], "22116": 483, "22117": 483, "22118": [478, 483], "22120": 483, "22127": 483, "22138": 483, "22140": 483, "22153": 483, "22155": 483, "22165": 483, "22166": 483, "22168": 483, "22173": 483, "22176": 483, "22181": [478, 483], "22182": 483, "22184": 483, "22185": 483, "22189": [478, 483], "22201": 483, "22206": 483, "22215": 483, "22216": 483, "22217": 483, "22219": 483, "22222": 452, "22222222": 344, "22226": 483, "22227": 483, "22233": 483, "22236": 483, "22241": 483, "22247": 483, "22257": [480, 483], "22258": 483, "22274": 483, "22276": [473, 483], "22278": 483, "22286": [478, 483], "22287": 483, "22289": 483, "223": 158, "2231": [194, 196, 202, 205, 209, 483], "22314": 483, "22335": 483, "22338": 483, "2235": 468, "22351": 483, "22352": 483, "22359": 483, "22362": 483, "22364": 483, "22366": [478, 483], "22370": 483, "22377": 483, "22384": 483, "22385": 483, "22389": [478, 483], "22390": 483, "22394": 483, "22396": 483, "223967b49e49": 479, "224": [341, 467, 483], "2240": 468, "22406": 483, "22407": [478, 483], "22410": 483, "22415": 483, "22417": 483, "22419": 483, "22423": 483, "22427": 483, "22435": 483, "22437": [478, 483], "22445": 483, "22448": 483, "22449": 483, "22450": 483, "22453": [478, 483], "22454": 483, "22457": 483, "22462": 483, "22464": 478, "22470": 483, "22485": 483, "22486": [478, 482, 483], "22490": 483, "22493": [479, 483], "225": [343, 384, 462], "2250": 468, "22508": 483, "22517": 483, "2251799813685248": [221, 475], "2251799813685248l": 468, "22518": 483, "22519": 483, "22520": 483, "22524": [478, 483], "22536": 483, "22540": [478, 483], "22547": 483, "22557": 483, "22558": 483, "22560": 478, "22578": [478, 483], "2258": 102, "22585": 483, "22589": [480, 483], "22591": 483, "22592": 483, "226": [223, 241], "22602": 483, "22604": 483, "22609": 483, "22615": 483, "22619": [478, 483], "22631": 483, "22636": 483, "22638": [478, 483], "22640": [481, 483], "22641": 483, "22642": 483, "22643": 483, "22644": 483, "22653": 483, "22665": 483, "2267": 465, "22674": 483, "22676": 483, "226805979": 451, "22681": [478, 483], "22682": [478, 483], "22687": 483, "22696": [478, 483], "227": [68, 113, 484], "22703": 483, "22708": 483, "22721": 483, "22726": 483, "22733": 483, "22735": 483, "22759": 483, "22769": 483, "22770": 483, "22775": 483, "22776": 483, "22783": 483, "22788": [478, 483], "22796": [478, 483], "228": 343, "22806": 483, "22807": [480, 483], "22812": 483, "22815": 483, "22818": [478, 483], "22820": 483, "22821": 483, "22824": 483, "22826": 483, "22829": 479, "22834": [478, 483], "22836": 483, "22838": 483, "22841": 483, "22847": [478, 483], "22849": 483, "22854": 483, "22859": 483, "22865": 483, "22869": 483, "22872": 483, "2288": 483, "22885": 483, "22894": 483, "22896": 483, "22898": [479, 480, 483], "229": [68, 484], "22902": 483, "22903": 483, "22906": 483, "22908": 483, "22915": 483, "22919": 483, "2292": 483, "22921": 483, "22928": 483, "22931": 483, "22932": 483, "22935": 483, "22936": [478, 483], "22939": 483, "22940": [478, 483], "2295": 241, "22955": [478, 483], "22958": 483, "22959": 483, "22960": [478, 483], "22966": 483, "22970": 483, "22977": 483, "22980": 483, "22982": 483, "22986": 483, "22995": 483, "23": [20, 94, 96, 98, 102, 109, 150, 183, 186, 209, 225, 226, 236, 259, 261, 267, 283, 319, 332, 337, 344, 348, 359, 366, 367, 464, 465, 473, 475, 477, 478, 479, 481, 482, 483], "230": [68, 223, 475, 479, 484], "23000e": 186, "23001": [478, 483], "23004": 483, "23008": 483, "23009": 483, "23014": 478, "23016": 483, "23026": [479, 483], "23033": [480, 483], "23034": [479, 483], "23041": 483, "23048": 483, "23051": 483, "23057": [481, 483], "2305843009213693951": 475, "23063": 483, "23071": 483, "23076": 483, "23078": 483, "23082": 483, "23086": [478, 483], "23093": 483, "23094": 483, "23096": 483, "23098": 483, "23099": 483, "231": 102, "23103": 483, "23111": 483, "23112": 483, "2312": 158, "23132": 483, "23133": [478, 483], "23136": 483, "23138": 483, "23143": 483, "23144": 483, "23146": 483, "2315": 382, "23165": 483, "23171": [478, 483], "23180": 483, "23184": 483, "23185": [478, 483], "23186": [478, 483], "23192": 483, "23193": [478, 483], "232": [68, 484], "23205": 483, "23206": [478, 483], "23209": 483, "23211": 483, "23214": 483, "23215": 483, "23216": 483, "23220": 483, "23224": 483, "23225": 483, "23229": [479, 483], "23239": [478, 483], "2324": 241, "23247": 483, "23248": 483, "23250": 483, "23252": [478, 483], "23253": 483, "23254": 483, "23260": 483, "23262": 483, "23266": [478, 483], "23268": 483, "23275": 483, "23285": 483, "23290": 483, "233": [109, 226, 441, 449, 450], "23302": 483, "23309": 483, "23310": 483, "23319": 483, "23321": 483, "23325": 483, "23326": 483, "23328": 483, "23329": 483, "2333": 469, "23330": 483, "23338": 483, "23342": [478, 483], "23344": [478, 483], "23345": 483, "2335": 469, "23353": 483, "23361": 483, "23363": 483, "23364": 483, "23366": 483, "23367": 483, "23369": 483, "23374": 483, "23378": 483, "23392": 483, "23395": 483, "23399": 483, "234": [68, 186, 345, 452, 471, 478, 484], "23400": 483, "23403": 483, "23404": [469, 478, 479, 483], "23411": 483, "23413": 386, "2342": [248, 464], "23420": 483, "23421": 483, "23426": 483, "23427": [472, 483], "23430": [479, 483], "23437": [478, 483], "23441": 483, "23445": 483, "2345": 186, "23451": 483, "2345678": 186, "23456789": 186, "23460": 483, "23464": [478, 483], "23465": 483, "23466": 483, "23476": 483, "23481": 483, "23485": 483, "23488": [478, 483], "234881026": 293, "23491": [478, 483], "23492": 483, "235": [68, 250, 483, 484], "23500": 483, "23501": 483, "23502": 483, "23504": 483, "23517": 483, "23521": 483, "23529": 483, "23539": 483, "23544": 483, "23552": [479, 483], "23563": 483, "23564": 483, "23566": [478, 483], "23568": [478, 483], "23571": 483, "23572": 483, "23573": [478, 483], "23576": 483, "23581": [478, 483], "23583": 483, "23585": 483, "23589": 483, "23591": [479, 483], "23596": 483, "236": [68, 113, 436, 484], "23600": 483, "23601": 483, "23605": [478, 483], "23606": 483, "23611": [478, 483], "23615": 483, "23618": 483, "23622": [478, 483], "23629": 483, "23631": 483, "23632": [478, 483], "236337": 103, "236343": 103, "23640": 483, "23646": 483, "23647": 483, "23652": 483, "23657": 483, "23661": 483, "23668": [478, 483], "23671": [478, 483], "23672": 483, "2368": 394, "23681": [478, 483], "23686": 483, "23688": 483, "23689": 483, "23691": 483, "23699": [480, 483], "237": [68, 344, 470, 484], "23700": 483, "23702679807320237": 367, "23703": 483, "23704": [478, 483], "23706": 483, "23715": 483, "23718": 483, "23722": [479, 481, 483], "23725": 483, "23726": 483, "23728": 483, "2373": 259, "23731": 483, "23735": 483, "23742": 483, "23745": 483, "23749": [480, 483], "23752": 483, "23753": 483, "23765": 483, "2377": 476, "23775": 483, "23779": 483, "23780": 483, "23782": 483, "23792": 483, "23796": 483, "23799": 483, "238": [66, 68, 87, 113, 470, 484], "23801": 483, "23804": 483, "23811": 483, "23815": 483, "23817": 483, "23819": 483, "23831": [481, 483], "23834": 483, "23835": [480, 483], "23836": 483, "23838": 483, "23839": 483, "23840": 483, "23846": 483, "23848": [479, 483], "23853": [478, 483], "23859": 483, "23865": 483, "23867": 481, "23880": 483, "23881": 483, "23882": [473, 483], "23883": [479, 483], "23887": 483, "23888": 483, "23890": 483, "23894": 483, "23896": 483, "23898": 483, "239": 176, "23903": 483, "23908": 483, "23910": [478, 483], "23911": 483, "23914": 483, "23917": 483, "23919": 483, "23927": 483, "23934": 483, "23935": 483, "23944": 483, "23955": 483, "2396": [394, 469, 478, 480, 483], "23968": 483, "2397": 395, "23972": 483, "23973": 483, "23977": 483, "23985": 483, "23992": 483, "23996": 483, "23998": 483, "23e": 186, "23e999": 186, "23z": 183, "24": [4, 85, 94, 95, 96, 99, 106, 109, 139, 141, 150, 183, 186, 193, 209, 236, 259, 261, 295, 319, 332, 343, 344, 347, 349, 366, 424, 435, 469, 473, 476, 477, 481, 482, 483], "240": [288, 384], "24000": 483, "24001": 483, "2401": 465, "24017": [478, 483], "24018": [478, 483], "24022": 483, "24029": 483, "24031": 483, "24037": 483, "24044": 483, "24048": 483, "24064": [478, 483], "24076": 483, "24077": 483, "24091": 483, "24094": 483, "24096": 483, "24097": 483, "24098": 483, "241": [68, 484], "24102": 483, "24103": 483, "24114": 483, "24115": 483, "24120": 483, "24129": 483, "24132": 483, "24134": 483, "24136": 483, "24137": 483, "24139": [473, 483], "24142": 483, "24155": 483, "24160": [472, 483], "24164": [479, 483], "24178": 483, "24179": 483, "24184": [478, 483], "24190": [478, 483], "24192": 483, "24199": 483, "24206": 483, "24209": 483, "24211": [478, 483], "24214": 483, "2422": [469, 475], "24225": [479, 483], "242274": 483, "24230": 483, "24234": [473, 483], "24241": 483, "24244": 483, "24248": [478, 483], "24254": 483, "24257": 483, "24259": 483, "24266": 483, "24268": [478, 483], "24270": [478, 483], "24276": 483, "24277": [479, 483], "24284": [478, 483], "24285": 483, "24291": 483, "24298": 483, "243": [382, 463], "24305": 483, "24310": 483, "24324": 483, "24326": 483, "24328": 483, "24329": 483, "24334": 483, "24336": 483, "24340": 483, "24345": 483, "24347": 483, "24348": 483, "24351": 483, "24359": 483, "24360": 483, "24362": 483, "24368": 483, "24369": 483, "24373": 483, "24377": 483, "2439": 468, "24391": 483, "244": 382, "24400": [478, 483], "24402": 483, "24407": 483, "24408": 483, "24412": [481, 483], "24416": [482, 483], "24421": 483, "24426": 483, "2443": 475, "24432": 483, "24444": 483, "24450": [478, 483], "24452": 483, "24454": [479, 483], "24455": 483, "24456": 483, "24458": 483, "24464": [472, 483], "24467": 483, "24483": 483, "24484": 483, "24489": 483, "2449": 305, "24492": 483, "24514": 483, "24521": 483, "24522": 483, "24538": 483, "24552": 483, "24562": 483, "24564": 483, "24567": 483, "24569": 483, "24570": 483, "24580": 483, "24583": 483, "24594": 483, "24596": 483, "246": [340, 468, 483], "24603": 483, "24608": 483, "24618": 483, "24619": 483, "24620": 483, "24631": 483, "24633": 483, "24634": 483, "24635": 483, "24643": 483, "24657": 483, "24658": 483, "2466": 483, "24667": 483, "24669": 483, "24683": 483, "24684": 483, "24687": 483, "24688": 483, "24693": 483, "24695": 483, "247": 477, "24700": [480, 483], "24705": 483, "24723": 483, "24726": 483, "24729": 483, "24731": 483, "24744": [480, 483], "24745": 483, "24746": 483, "24748": 483, "24750": 483, "24751": 483, "24759": 483, "24764": 483, "24769": 483, "2476979795053773": [221, 475], "24773": [479, 483], "24774": 483, "24782": 483, "24790": 483, "24791": 483, "24792": 483, "24798": 483, "248": 337, "24801": 483, "24802": 483, "24806": 483, "24808": 483, "24820": 483, "24821": [480, 483], "24824": 483, "24838": 483, "24839": 483, "24847": 483, "24848": 483, "24857": 483, "24861": 483, "24867": 483, "2487": 464, "24870": 479, "24874": 483, "24879": [479, 483], "24881": 483, "24882": 483, "24884": 479, "24891": 483, "249": [340, 467, 474, 483], "24902": 483, "24903": 483, "24905": [473, 483], "24910": 483, "24912": 483, "24913": 483, "24915": 483, "24917": 483, "24932": 483, "2495": 96, "24952": 483, "24959": 483, "24960": 483, "24964": 483, "24965": 483, "24972": 483, "24975": 483, "24982": 483, "24986": 483, "24988": 483, "24989": 483, "24992": 483, "24n": 345, "25": [4, 85, 94, 95, 126, 150, 183, 186, 190, 221, 236, 259, 261, 283, 318, 319, 322, 335, 337, 340, 343, 344, 361, 378, 382, 384, 424, 442, 446, 448, 449, 451, 462, 464, 465, 466, 468, 469, 473, 474, 476, 478, 479, 480, 481, 482, 483], "250": [126, 223, 308, 335, 340, 384, 469], "25002": 479, "25003": 483, "25007": 483, "25008": 483, "25011": [479, 483], "25019": 483, "25022": 483, "25027": 483, "25029": 483, "25032": 483, "25034": 483, "2504": [481, 483], "25041": 483, "25047": 483, "25054": [480, 483], "25060": 483, "25066": 483, "25068": 483, "25071": 483, "25081": 483, "25089": 483, "25091": 483, "25092": 483, "25099": 483, "251": 468, "25102": 483, "25108": 483, "25111": 483, "25112": 483, "25118": 483, "2512": 102, "25126": 483, "25130": 483, "25131": 483, "25135": 483, "25136": 483, "25143": 483, "25144": 483, "25150": 483, "25154": [479, 483], "25155": 483, "25163": 483, "25164": 483, "25165": 483, "25169": 483, "25172": 483, "25173": 483, "25177": 483, "2518": 241, "25182": 483, "25188": 483, "25195": 483, "25198": 483, "25199": 483, "252": [68, 99, 428, 483, 484], "25203": 483, "25209": [479, 483], "25213": 483, "25219": 483, "25221": 483, "25224": 483, "25225": 483, "25227": [479, 483], "25232": 483, "25233": 483, "25237": 483, "25246": 483, "25260": 483, "25262": 483, "25264": 483, "25267": [479, 483], "2527": [478, 483], "25270": 483, "25274": 483, "25280": 483, "25283": 483, "25285": 483, "25287": [479, 483], "253": [68, 99, 484], "25301": [479, 483], "25304": 483, "2531": [96, 469, 475], "25313": 483, "25316": 483, "25319": 483, "25320": 483, "25324": 483, "25328": 483, "25339": 483, "253425": 476, "25348": 483, "25349": [479, 483], "25351": 483, "25357": [479, 483], "25361": 483, "25364": 483, "25377": 483, "25380": 483, "25381": 483, "25382": [479, 483], "25387": 483, "25388": 483, "25390": 483, "25395": 483, "25399": [479, 483], "254": [99, 483], "25400": 483, "25401": [479, 483], "25402": 483, "25406": 483, "25407": 483, "25410": 483, "25411": 483, "25416aea0573": 337, "25421": 483, "25427": [481, 483], "25430": 483, "25440": 483, "25441": 483, "25446": 483, "25447": 483, "25449": 483, "25450": 483, "25451": [481, 483], "25455": 483, "25462": 483, "25464": 483, "25471": 483, "25478": 483, "25483": 479, "25485": [479, 483], "25498": 483, "255": [35, 64, 68, 87, 92, 99, 109, 113, 158, 160, 177, 191, 225, 235, 259, 344, 347, 384, 430, 473, 476, 478, 480, 483, 484], "2550": 426, "25500": 483, "25503": 483, "25507": 483, "25510": 483, "25514": 483, "25515": 483, "25530": 483, "25532": 483, "25554": 483, "25555": 483, "25564": 483, "25569": 483, "25578": 483, "25583": 483, "25584": 483, "25590": 483, "25593": [479, 483], "25596": [479, 483], "25597": 483, "256": [39, 42, 64, 87, 99, 158, 173, 177, 186, 225, 235, 270, 326, 341, 344, 358, 428, 449, 466, 467, 481, 482, 483], "25604": 483, "25609": [479, 483], "25612": [480, 483], "25616": 483, "25624": 483, "25625": [473, 483], "25626": 483, "25628": [479, 483], "25630": 483, "25638": [479, 483], "25651": 483, "25652": 483, "25658": [480, 483], "25659": 483, "25660": 483, "25663": 483, "25672": 483, "25674": 483, "25677": 483, "25684": 483, "25688": 483, "25691": 483, "25696": 483, "256color": [177, 483], "256k": 467, "257": 483, "25702": 483, "25707": 483, "25709": 483, "25711": 483, "25715": 483, "25717": 483, "25718": 483, "25720": 483, "25725": 483, "2573": 467, "25735": 483, "25738": 483, "25745": 483, "25750": 483, "25758": 483, "25761": 483, "25764": 483, "25766": 483, "25768": [479, 483], "25771": 483, "25778": 483, "2578": 469, "25780": [482, 483], "25782": 483, "25788": [479, 483], "25791": [479, 483], "25794": 483, "25802": 483, "25803": 483, "25805": 483, "25822": 483, "25825": 483, "25827": 483, "25843": 483, "25850": 483, "25856": 483, "25860": 483, "25862": 483, "25869": [479, 483], "25873": [479, 483], "25887": 483, "25894": 483, "25895": 483, "259": [468, 483], "25902": 483, "25905": 483, "25911": 483, "25913": 483, "25914": 483, "25920": 483, "25924": 483, "25928": [479, 483], "25931": 483, "25935": 483, "25939": 483, "25940": 483, "25942": [480, 483], "25945": 483, "25949": 483, "2595": 305, "25951": 483, "25953": [479, 483], "25958": [479, 483], "25961": 483, "25969": 483, "25971": [479, 483], "25973": 483, "25974": 483, "25987": 479, "25988": [480, 483], "25994": [479, 483], "25995": 483, "25996": [480, 483], "25c8": 337, "25t00": 183, "25x": 473, "26": [92, 94, 101, 104, 150, 183, 211, 236, 259, 283, 318, 332, 341, 366, 367, 378, 394, 423, 426, 465, 466, 469, 475, 479, 481, 482, 483], "260": [440, 461, 469, 479], "26002": 483, "26012": 483, "26013": 483, "26014": 483, "26015": 483, "26020": 483, "26027": 483, "26032": [479, 483], "26039": [479, 483], "2604": 483, "26040": 483, "26041": 483, "26045": 483, "26050": 483, "26053": 483, "26058": 483, "2606": 337, "26065": 483, "26067": 483, "26069": 483, "26071": 483, "26073": 483, "26079": 483, "26081": [479, 483], "26099": 483, "261": [464, 483], "26103": 483, "26107": 483, "26110": [480, 483], "26117": 483, "26120": 483, "26121": [480, 483], "26129": [479, 483], "26131": [472, 483], "26133": 483, "26136": 483, "26146": [479, 483], "26147": 483, "26154": 483, "2616": [110, 242, 393, 395, 407, 475], "26163": 483, "26167": 483, "26168": 483, "26171": 483, "26175": 483, "26177": 483, "2618": 469, "26182": 483, "26185": 483, "26186": 483, "26187": 483, "26194": 483, "26198": 483, "262": 382, "26202": 483, "26204": 483, "26219": [481, 483], "26221": 479, "26227": 483, "26228": 483, "26241": 472, "26243": [479, 483], "26249": [479, 483], "26253": 483, "26268": 483, "26271": 483, "26273": [479, 480, 483], "26280": 483, "26282": [479, 483], "26288": 483, "26289": 483, "26293": 483, "26295": 483, "263": [68, 109, 250, 378, 467, 483, 484], "26302": 483, "26307": 483, "26309": 483, "26312": 483, "26313": 483, "26315": 483, "26316": 483, "26323": [479, 483], "26325": 483, "26331": 483, "26335": [479, 483], "26353": 483, "26355": 483, "26359": [479, 483], "26367": 483, "26373": 483, "26385": 483, "26386": 483, "26389": [472, 483], "264": [293, 347, 464], "2640": [223, 482, 483], "26402": 483, "26404": [479, 483], "26406": 483, "26407": 483, "26423": 483, "26439": 483, "26457": 483, "26464": 483, "26465": 483, "26467": [481, 483], "26470": [479, 483], "26475": 483, "26478": 483, "26482": [479, 483], "26488": 483, "26489": 483, "26492": [479, 483], "26494": 483, "26499": 483, "265": 483, "26502": 483, "26510": [480, 483], "26513": 483, "26516": [479, 483], "26523": 483, "265252859812191058636308480000000": 193, "26526": 483, "26530": 483, "26536": [479, 483], "26543": 483, "26544": 483, "26552": 483, "26556": 483, "26558": 483, "26560": 483, "26563": 483, "26564": [479, 483], "26567": [479, 483], "26568": 479, "26569": 483, "26574": [479, 483], "26579": [473, 483], "26581": 483, "26583": 483, "26585": 483, "26586": 483, "26587": [479, 483], "26588": [479, 483], "26589": 483, "26590": 483, "265e": 109, "265f": 109, "26616": 483, "26617": 483, "26624": 483, "266262841": 444, "2663": 468, "266310978": 444, "26634": 483, "26637": 483, "26641": 483, "26644": 483, "26647": [479, 483], "2665": 96, "26654": 483, "26657": 483, "26659": 483, "26660": 483, "26661": 483, "26662": 483, "26664": 483, "26667": 483, "26673": 483, "26676": 483, "26680": 483, "26685": [479, 483], "26704": 483, "26707": [481, 483], "26709": 483, "26711": 483, "26717": 483, "26718": 483, "26721": [479, 483], "26730": 483, "26732": 483, "26733": 483, "26735": 483, "26736": 483, "26741": [479, 483], "26750": 483, "26754": [479, 483], "26782": 483, "26789": 483, "26791": 483, "26792": 483, "26796": 483, "26798": [479, 483], "26799": 483, "26800": 483, "26801": 483, "26802": 483, "26804": 483, "26806": 483, "26807": 483, "26809": 483, "26811": 483, "26819": 483, "26822": 483, "26823": [479, 483], "26826": 483, "26835": 483, "26836": [481, 483], "26837": 483, "26839": 483, "26844": 483, "268443839": 341, "26848": 483, "26851": 483, "26864": 483, "26865": 479, "26867": 483, "26868": 483, "26870": [479, 483], "26873": 483, "26881": 483, "26884": 483, "26885": [479, 483], "26892": 483, "269": [96, 188, 483], "2690": 475, "26900": 483, "26903": 483, "26906": 483, "26907": 479, "26909": 483, "26915": 483, "26919": 483, "26920": 483, "26923": 483, "26930": 483, "26932": [452, 483], "26936": 483, "26937": 483, "26939": 483, "26944": 483, "26952": 483, "26967": 483, "26977": 483, "26978": [481, 483], "26981": 483, "26983": 483, "26984": 483, "26985": 483, "26991": 483, "26996": 483, "27": [94, 150, 183, 236, 257, 293, 319, 337, 341, 343, 367, 378, 435, 446, 449, 462, 465, 471, 472, 475, 476, 480, 481, 482, 483], "270": [183, 384], "27005": 483, "27007": 483, "27014": 483, "27025": 483, "27027": 483, "27029": 483, "27030": 483, "27031": 483, "27033": 483, "27034": 483, "27038": 483, "27039": 483, "27040": [479, 483], "27041": [479, 483], "27043": 483, "27044": 483, "27048": 483, "27053": 483, "27056": [479, 483], "27057": 483, "2706": 475, "27062": 483, "27064": 483, "27066": 483, "27078": [479, 483], "27079": 483, "27080": 483, "27083": 483, "27095": [479, 483], "27097": 483, "27099": [479, 480, 483], "271": 483, "27100": 483, "27114": 483, "27115": 483, "27117": 483, "27122": 483, "27129": 483, "27130": 483, "27137": 483, "27138": 483, "27140": [479, 483], "27141": 483, "27144": 483, "27145": 483, "27147": 483, "27156": 483, "27157": 483, "27164": 483, "27167": 483, "27169": 483, "27172": [479, 483], "27173": 483, "27177": [479, 483], "27181": [479, 481, 483], "27186": [479, 483], "2719": 468, "27190": 483, "27196": 483, "27199": 483, "272": [473, 483], "27212": 483, "27213": [479, 483], "27214": 483, "27222": 483, "27223": 483, "27229": 483, "27238": 483, "27239": 483, "27240": 483, "27243": [479, 483], "27245": 483, "27262": 483, "2727368790656328": 367, "27275": 483, "27278": 483, "27285": 483, "27286": 483, "27294": 483, "273": [68, 158, 270, 284, 423, 484], "27300": 483, "27309": 483, "27310": 483, "27313": 483, "27319": 483, "2732": [394, 469, 475], "27321": 483, "27330": 483, "27331": [479, 483], "27332": 483, "27334": 483, "27340": 483, "27348": 483, "27350": [479, 483], "27355": 483, "27358": 483, "27364": [479, 483], "27365": 483, "27366": 483, "27369": 483, "27372": 483, "27380": 483, "27392": [479, 483], "27397": 483, "274": 470, "27413": 483, "27418": 483, "27419": 483, "27427": 483, "27428": 483, "27434": 483, "27441": 483, "27442": 483, "27443": 483, "27445": 483, "27452": 483, "27453": 483, "27456": [479, 480, 483], "2746": 469, "27466": 483, "27469": 483, "27472": 483, "27473": 483, "27477": 483, "27485": 483, "27487": 483, "27494": 483, "27497": 483, "27500": 483, "27506": 483, "27507": 483, "27512": 483, "27513": 483, "27514": 483, "27517": 483, "27522": 483, "27524": 483, "27533": 483, "27535": 483, "27539": 483, "27541": 483, "27558": 483, "27566": 483, "27567": 483, "27568": 483, "27570": 483, "27573": 483, "27574": [479, 483], "27575": 483, "27576": 483, "27580": 483, "27581": 483, "27584": [480, 483], "27585": 483, "27587": 483, "27593": 483, "27594": 483, "27598": [479, 483], "27599": 483, "27609": 483, "27610": 483, "27611": 483, "27620": 483, "27621": 483, "27629": 483, "27635": 483, "27639": 483, "27640": [472, 483], "27641": 483, "27643": 483, "27645": [480, 483], "27646": 483, "27647": 483, "27656": 483, "27657": 483, "27659": 483, "27661": [479, 483], "27662": 483, "27664": [479, 483], "27666": 483, "27683": 483, "27691": 483, "277": [68, 484], "27704": 483, "27705": 483, "27706": 483, "27713": 483, "27714": 483, "27718": 483, "27731": 483, "27736": 483, "27737": 483, "2774": 241, "27744": [479, 483], "27752": 483, "27756": 483, "27758": 483, "27759": 483, "27760": 483, "27766": [479, 483], "27772": 483, "27773": 483, "27774": 483, "27776": 483, "27778": 483, "27781": [479, 483], "27782": 483, "27783": 483, "27787": 483, "27792": 483, "27794": 483, "278": [68, 87, 484], "27805": 483, "27807": 483, "27811": 483, "27812": 483, "27819": [479, 483], "27820": 483, "27821": 483, "27827": 483, "27832": 483, "27842": [479, 483], "27850": [479, 483], "27861": 483, "27863": 483, "27866": 483, "27867": [480, 483], "27870": 483, "27876": 384, "27881": 483, "27883": 483, "27884": 483, "27891": 483, "27897": 483, "279": [68, 226, 484], "27906": 483, "27911": 483, "27917": 483, "27919": [479, 483], "27922": 483, "27928": [479, 483], "27929": 483, "27930": 483, "27931": 483, "27932": [479, 483], "27936": 483, "27939": 483, "27942": 483, "27945": 483, "27946": 483, "27948": 483, "27952": 483, "27953": 483, "27955": 483, "27959": [479, 483], "27961": 483, "27972": 483, "27976": 483, "27979": [480, 483], "27982": [479, 483], "27983": 483, "27985": [479, 483], "27987": 483, "27988": 483, "27998": 483, "27999": 483, "27t00": 183, "28": [4, 33, 98, 102, 150, 186, 226, 236, 259, 340, 366, 384, 466, 467, 468, 472, 475, 481, 482, 483], "280": 479, "2800": 337, "28003": [479, 483], "28005": 483, "28008": 483, "28009": 483, "28015": 483, "28019": 483, "28022": [479, 483], "28023": 483, "28025": [479, 483], "28027": 483, "28029": [482, 483], "28037": 483, "28043": [479, 483], "28046": 483, "28047": 483, "28050": 479, "28055": 483, "28065": 483, "28066": 483, "28070": 483, "28071": 483, "28075": 483, "28080": [473, 483], "28082": 483, "28085": 479, "28086": 483, "28087": 483, "28097": 483, "28102": 483, "28110": 483, "28114": 483, "28115": 483, "28120": 483, "28124": [480, 483], "28126": 483, "28128": 483, "28131": 483, "28134": [480, 483], "28137": [480, 483], "28138": 483, "28146": 483, "28147": 483, "28148": 483, "28161": 483, "28162": 483, "28163": 483, "28164": 483, "28167": 483, "28174": 483, "28176": 483, "2818": 475, "28180": 483, "28181": 483, "28182": 483, "28183": 483, "28189": 483, "2819": 468, "28192": 483, "282": [68, 267, 332, 484], "28200": 483, "28201": 483, "28203": 483, "28208": 483, "2821": 194, "28214": 483, "28217": 483, "2822": [196, 202, 209, 242, 245, 271, 366, 451, 464], "28225": 483, "28226": 483, "28227": 483, "28228": 483, "28229": 483, "28231": 483, "28238": [481, 483], "28240": 483, "28247": 483, "28248": 483, "28249": 483, "28251": 483, "28253": 483, "28254": 483, "28255": 483, "28257": [479, 483], "28258": 483, "28269": 483, "28275": 483, "28280": [480, 483], "28281": 483, "28286": [482, 483], "28289": 483, "28292": [480, 483], "28293": 483, "28298": 483, "283": [80, 183], "283000": 183, "28307": [473, 483], "28314": 483, "28317": 483, "283185": 275, "28321": 483, "28322": 483, "28325": 483, "28326": 483, "28332": [480, 483], "28333": 483, "28334": 483, "28350": 483, "28353": 483, "28367": 483, "28368": 483, "28369": 483, "28370": [479, 483], "28371": 483, "28372": 483, "28376": 483, "28379": 483, "28380": 483, "28387": 483, "28399": 483, "284": 382, "28401": 483, "28402": 483, "28409": 483, "28411": [480, 483], "28414": [480, 483], "28416": 483, "28426": 483, "28427": 483, "28430": 483, "28440": [469, 483], "28441": 483, "28444": 483, "28448": 483, "28449": 483, "2846": [469, 475], "28468": [472, 483], "28469": 483, "28471": 483, "28480": 483, "28485": 483, "28488": 483, "28492": 483, "285": [68, 87, 440, 484], "28500": 483, "28503": 483, "285078": 384, "28509": 483, "28512": 483, "28513": 483, "28517": 483, "28518": 483, "28522": 483, "28523": 483, "28524": 267, "28528": 483, "28532": 483, "28538": 483, "28544": [479, 483], "28548": 483, "28549": 483, "28552": 483, "28556": 483, "28557": 483, "28563": 483, "28564": [480, 483], "28572": 483, "28577": 483, "28580": 483, "28583": 483, "28596": 483, "28598": 483, "28600": 483, "28603": 483, "28604": 483, "28612": 483, "28613": [479, 483], "28617": 483, "28621": 483, "28624": 483, "28634": 483, "28638": [480, 483], "28639": 483, "28643": 483, "28648": 483, "28652": 483, "28653": 483, "28660": 483, "28665": 483, "28666": 483, "28668": 483, "28676": 483, "28682": [480, 483], "28683": 483, "28684": 483, "28685": [480, 483], "28692": [480, 483], "28699": 483, "28703": 483, "28704": 483, "28707": 480, "2871": 468, "28720": [479, 483], "28721": 483, "28724": [482, 483], "28727": 483, "28731": 483, "28732": 483, "28735": 483, "28739": 483, "28740": [480, 483], "28746": 483, "28748": 483, "28752": 483, "28761": [480, 483], "28762": 483, "28768": 483, "28769": [480, 483], "28770": 483, "28774": 483, "28779": 483, "28782": 483, "28787": 483, "28791": 483, "28797": 483, "28799": [480, 483], "288": 467, "28805": 483, "28806": 483, "28808": 483, "28822": [480, 483], "28835": 483, "28843": 483, "28847": [480, 483], "28849": 483, "28850": 483, "28856": 483, "28866": 483, "28871": 483, "28876": 483, "28893": 483, "28894": 480, "28896": 483, "28898": 483, "289": [68, 95, 226, 308, 484], "28918": 483, "28923": 483, "28927": [480, 483], "28929": 483, "28932": 483, "28936": 483, "28950": 483, "28958": 483, "28961": 483, "28963": 483, "28964": 483, "28969": 483, "28974": [480, 483], "2898": 468, "28985": 483, "28990": 483, "28991": 483, "28994": 483, "29": [4, 98, 102, 106, 150, 183, 186, 190, 236, 259, 261, 267, 318, 366, 465, 468, 472, 476, 481, 482, 483], "290": 226, "29000": [183, 483], "29011": 483, "29034": 483, "29040": 483, "29049": 483, "29055": 483, "29058": 483, "2906": 468, "29061": 483, "29071": 483, "29073": 483, "29076": 483, "29079": 483, "29080": 483, "29083": 483, "29084": 483, "29085": 483, "29094": 483, "29097": 483, "291": 462, "29100": 483, "29102": [480, 483], "29103": 483, "29104": 483, "29110": 483, "29119": 483, "29136": [480, 483], "29137": [480, 483], "29139": 483, "29142": 483, "29156": 183, "29159": 483, "29169": 483, "29183": 483, "29192": [480, 483], "29193": [480, 483], "29195": 483, "29196": 483, "29197": 483, "292": [68, 102, 267, 345, 484], "29203": 483, "29204": 483, "29209": [481, 483], "29210": 483, "29212": 483, "29218": [480, 483], "29219": 483, "29235": [481, 483], "29237": 483, "29240": [480, 483], "29243": 483, "29248": 483, "29255": 483, "29262": 483, "2927": 477, "29271": 483, "29286": 480, "29290": 483, "29293": 483, "29298": 483, "293": [68, 382, 484], "29300": 480, "29302": [480, 483], "29316": 483, "29319": 483, "29326": 483, "29327": 483, "29335": 483, "29337": 483, "29338": 483, "29341": 483, "29347": 483, "29349": 483, "29367": 483, "29368": 483, "2937": 469, "29376": 483, "29377": [480, 483], "29384": 483, "29392": 483, "29403": 483, "29409": 483, "29410": [473, 483], "29412": 483, "294144947901014": 481, "29416": 483, "29418": [473, 483], "29435": 483, "29438": 483, "29442": 483, "29444": 483, "29446": 483, "29452": 480, "29456": 483, "29463": 483, "29469": [480, 483], "29478": 483, "295": [288, 474, 483], "29505": 483, "29507": 480, "295147905179352891391": 469, "29515": 483, "29519": 483, "29532": 483, "29534": 483, "29537": 483, "29546": [480, 483], "29548": [482, 483], "29553": 483, "29564": [98, 483], "29565": 98, "29566": [98, 483], "29567": 98, "29568": [98, 483], "29569": 98, "29570": 98, "29571": [98, 483], "29572": 483, "29576": [480, 483], "29577": 483, "29579": 483, "29581": 483, "29585": [480, 483], "29587": 483, "29590": 483, "29591": 483, "29600": 483, "29602": 483, "29607": 483, "29613": 483, "29615": 483, "29619": 483, "29620": 483, "29623": 483, "29636": 483, "29639": 483, "2964": 243, "29643": 483, "29645": 483, "29649": 483, "2965": [243, 395, 483], "29654": [480, 483], "29673": 483, "29679": 480, "29683": 483, "29684": 483, "29688": 483, "29692": 483, "29694": 483, "29695": 483, "29703": 483, "29704": [382, 483], "29706": 483, "29708": [480, 483], "29711": 483, "29714": 483, "29723": 483, "29727": 483, "29728": [480, 483], "29734": 483, "29741": 483, "29742": 483, "29743": 483, "29748": 483, "29753": 483, "29755": 483, "29778": 483, "29781": 483, "298": 382, "2980": 288, "29800": 483, "29816": 483, "29822": 483, "2983": [469, 471], "29832": 483, "29839": 483, "29847": 483, "29849": 483, "2985": 468, "29851": [480, 483], "29854": 483, "29859": 483, "29861": 483, "2987": [469, 475], "29870": 483, "29877": 483, "29882": [472, 483], "29883": [481, 483], "29884": 483, "29890": 483, "29894": 483, "299": [110, 223, 241], "29901": 483, "29910": 483, "29911": 483, "29914": 483, "29922": 483, "29931": 483, "29935": 483, "29941": 483, "29942": 483, "29949": 483, "29953": 483, "29960": 483, "29962": [480, 483], "29970": [480, 483], "29979": [480, 483], "29980": 473, "29982": 483, "29988": 483, "29990": 483, "29995": [480, 483], "29998": 483, "29s": 476, "2_147_483_648": 173, "2_500": 318, "2_900": 343, "2a": [345, 483], "2a3": 352, "2a4": 483, "2am": 183, "2b": [337, 479], "2c": [84, 369, 483], "2d": [344, 446, 483], "2devel9": 469, "2e": [186, 483], "2e2": 186, "2ef0": 344, "2f": [102, 134, 221, 345, 394, 444, 468, 469, 471, 483], "2fel": 394, "2g": 483, "2gib": 483, "2h": 483, "2i": 369, "2j": [73, 98, 225, 262, 483], "2k": [341, 483], "2l": [35, 462], "2m": 483, "2n": [468, 483], "2nd": [85, 261, 319, 369, 483], "2o": 483, "2s": 483, "2t00": 183, "2to3": [68, 87, 187, 254, 468, 469, 470, 473, 474, 475, 483], "2x": [474, 476, 479, 483], "30": [78, 84, 85, 92, 93, 95, 98, 101, 102, 126, 136, 150, 155, 160, 183, 186, 193, 236, 259, 261, 267, 269, 293, 316, 318, 321, 337, 343, 344, 345, 362, 365, 366, 367, 384, 423, 440, 441, 451, 452, 456, 465, 466, 467, 469, 471, 472, 473, 477, 478, 479, 480, 481, 482, 483], "300": [73, 92, 102, 110, 155, 241, 247, 384, 395, 427, 452, 475, 483], "3000": [78, 87, 113, 385, 386, 427, 428, 468, 470], "30000": 466, "3000000000000003": 186, "30003": 483, "30008": 483, "3001": 475, "30014": [480, 483], "30017": 483, "3002": 469, "30024": [480, 483], "30038": 483, "30039": 483, "30040": 483, "30048": 483, "30050": [480, 483], "30052": 483, "30054": 480, "30057": 483, "30058": 483, "30061": 483, "30064": 483, "30068": 483, "30070": 483, "30077": 483, "3008": 468, "30085": 483, "30088": 483, "3009": 102, "30095": 480, "301": [68, 102, 110, 241, 395, 483, 484], "30101": 483, "30102": 483, "30103": [480, 483], "30119": 483, "3013": 102, "30143": 483, "30149": 483, "3015": 483, "30155": [472, 483], "30156": 483, "30157": 483, "30167": 483, "30176": 483, "30177": 483, "30185": 483, "3018611848820001": 367, "30190": 483, "30197": 483, "302": [68, 87, 110, 225, 241, 242, 245, 250, 265, 302, 324, 352, 395, 423, 432, 467, 468, 471, 476, 483, 484], "30202": 483, "30205": 483, "30215": [480, 483], "30218": 483, "30228": 483, "30237": 483, "30241": [480, 483], "30243": 483, "30245": 483, "30249": 483, "30256": 483, "302585092994045684017991455": 186, "30262": [481, 483], "30266": 483, "30285": [480, 483], "30290": 483, "30291": [480, 483], "30298": 483, "30299": 483, "303": [80, 110, 241, 395], "30301": 483, "30302": [480, 483], "30303": 483, "30306": 483, "30319": 483, "30329": 483, "30340": 483, "30345": 483, "30346": 483, "30347": 483, "30348": 483, "30349": [480, 483], "30353": 483, "30357": 483, "30362": [480, 483], "30375": 483, "30378": 483, "30383": 483, "30389": 483, "30397": 483, "30399": [480, 483], "303e": 94, "304": [110, 241, 245, 480], "30404": 483, "30406": [480, 483], "30414": 483, "30416": 483, "30418": 483, "30427": 483, "30436": [480, 483], "30441": 483, "30450": [480, 483], "30455": 483, "30458": 483, "30459": [472, 483], "30463": 483, "30465": 483, "30470": 483, "30485": 483, "30486": 483, "30495": 483, "30496": 483, "305": [68, 110, 175, 241, 484], "30500": 483, "30501": 483, "30502": 483, "30508": [480, 483], "30511": 483, "30512": [473, 483], "30520": [480, 483], "30522": [480, 483], "30523": 483, "30526": [480, 483], "30532": 483, "30533": [473, 483], "30537": [480, 483], "30540": 483, "30541": [480, 483], "30553": 483, "30555": 483, "30557": 483, "3056": 259, "30561": 483, "30566": 483, "30570": 483, "30579": [480, 483], "30581": 483, "30589": 483, "30595": 483, "30596": [480, 483], "30597": 483, "306": 382, "30604": 483, "30605": 483, "30607": 483, "30616": 483, "30617": 483, "30618": [482, 483], "30622": [480, 483], "30624": 483, "30639": 483, "30642": 483, "30645": 483, "30654": 483, "30657": 483, "30661": 481, "30664": 483, "30670": [481, 483], "30674": 483, "30675": 483, "3068": 483, "30681": 483, "30682": 483, "30687": 483, "30688": [481, 483], "30693": [480, 483], "30694": 483, "30695": 483, "30696": 483, "30697": [479, 480, 483], "307": [68, 110, 241, 299, 395, 484], "30703": 483, "30708": [480, 483], "30715": 483, "3072": 483, "30721": 483, "30722": 483, "30723": 483, "30728": 483, "30730": 483, "30731": 483, "30736": 483, "30746": 483, "30747": 483, "30765": 483, "30768": 483, "30773": [482, 483], "30777": 483, "30779": 483, "30780": 483, "30781": 483, "30788": 483, "30794": [480, 483], "308": [68, 226, 241, 430, 483, 484], "30803": 483, "30805": 483, "30806": 483, "30807": 483, "30808": 483, "30814": 483, "30817": 483, "30822": 483, "30828": 483, "30832": 483, "30835": 483, "30840": 483, "30851": 483, "30853": 483, "30854": 483, "30856": 483, "30858": 483, "30860": 483, "30863": 483, "30870": 483, "30876": 483, "30877": 483, "30879": 483, "30881": 483, "30886": 483, "30897": [480, 483], "30899": 483, "309": [68, 484], "30913": 483, "30916": 483, "30917": 483, "30919": 483, "30934": 483, "30946": 483, "30947": 483, "30961": 483, "30966": [482, 483], "30977": [481, 483], "30978": 483, "30981": 483, "30983": 483, "30987": 483, "30988": 483, "30993": 483, "30_687": 343, "30pm": 183, "30s": 98, "30t21": 465, "30x": [395, 476], "31": [20, 93, 106, 150, 173, 176, 178, 183, 211, 234, 259, 262, 318, 319, 343, 344, 352, 366, 419, 422, 424, 425, 435, 451, 465, 467, 468, 475, 480, 481, 482, 483], "310": 176, "3100": 468, "31001": 483, "31002": 483, "31003": 483, "31004": 483, "3101": [68, 345, 484], "31014": 483, "3102": [469, 470], "31033": 483, "3104": [436, 470], "31047": 483, "3105": [68, 113, 470, 484], "31050": 483, "31051": 483, "31058735": 444, "3106": [68, 484], "31060": 483, "31061": 483, "3107": [427, 441, 470, 478, 480], "31070": 483, "31071": 483, "31072": [480, 483], "3108": 470, "31080": [480, 483], "31082": 483, "31083": 483, "3109": 470, "31095": 483, "310d": 483, "311": 341, "3110": [68, 470, 484], "31107": 483, "31109": 483, "3111": 470, "31113": 483, "3112": [68, 113, 470, 484], "31122": 483, "31128": [480, 483], "3113": 470, "31130": 483, "31135": 483, "3114": 470, "3115": [122, 385, 427, 428, 470, 476], "31151": [480, 483], "3116": [68, 87, 470, 471, 484], "31161": 483, "31163": 483, "31169": 483, "31170": 483, "31174": 483, "31177": 483, "31178": 483, "31179": [480, 483], "3118": [68, 344, 470, 481, 483, 484], "31183": 483, "31185": 483, "3119": [49, 68, 116, 161, 428, 470, 484], "3120": [250, 435, 470], "31202": 483, "31205": 483, "31206": 483, "3121": [45, 470, 483], "3123": 470, "31233": [480, 483], "31234": 483, "31238": 483, "31241": 483, "31243": 483, "31245": [480, 483], "31247": 483, "31249": 483, "3126155": 318, "3127": [68, 470, 484], "31271": 483, "3128": 395, "31281": 483, "31285": 483, "31287": 483, "3129": [68, 427, 470, 484], "31291": 483, "31292": 483, "31293": 483, "31294": 483, "31299": 483, "31307": 483, "31308": 483, "3131": [435, 470, 483], "31310": 483, "31311": 483, "31315": 483, "3132": [436, 470], "31320": 483, "31325": 483, "31326": 483, "31333": [480, 483], "31334": 483, "31336": 483, "31338": [480, 483], "3134": [213, 470, 483], "31340": 483, "31341": 483, "31343": 483, "31344": [480, 483], "31346": 483, "31347": 483, "3135": [428, 469, 470], "31350": 483, "31351": 483, "31353": [480, 483], "31354": 483, "31356": 483, "31358": 483, "31368": [480, 483], "31369": 483, "3137": [68, 484], "31370": [480, 483], "31373": 483, "3138": 470, "31380": 483, "31389": [480, 483], "31392": 483, "31399": [480, 483], "314": [68, 85, 484], "31400": 483, "3141": [68, 116, 289, 470, 484], "31410": 483, "31411": 483, "31414": 483, "31415": [480, 483], "314159": 475, "31416": 483, "31418": 483, "31421": 483, "31423": 483, "31425": 483, "31429": [480, 483], "31431": 483, "31432": 483, "3144": 476, "31446": 483, "31453": 483, "31457": 483, "31459": 483, "31460": 483, "3147": [31, 68, 85, 163, 250, 311, 324, 362, 432, 450, 476, 484], "31471": 483, "31477": 483, "31478": 483, "3148": [68, 166, 484], "31480": 483, "31482": 483, "31488": 483, "3149": [68, 352, 483, 484], "31490": 483, "31492": 483, "31493": 483, "31499": 483, "31500": 483, "31505": 483, "31506": 483, "31508": [481, 483], "3151": [23, 68, 213, 322, 328, 337, 465, 484], "31512": 483, "31516": 483, "31518": 483, "31522": 483, "31525": 483, "31532": 483, "31536": 483, "31536000": 183, "31537": 483, "3154": [299, 477, 483], "31540": [480, 483], "31544": 483, "31546": 483, "3155": [68, 87, 484], "31553": [481, 483], "31556": 483, "31558": [480, 483], "31559": 483, "3156": 477, "31566": 483, "31569": 483, "31574": [480, 483], "31577": 483, "3158": 477, "31583": 483, "31588": 483, "31592": 483, "31596": 483, "31602": 483, "31608": 483, "31609": 483, "31618": 483, "31619": 483, "31620": 483, "31624": 483, "31625": 483, "31626": 483, "3163": 476, "31632": 483, "31638": [480, 483], "31639": [480, 483], "3164": 102, "31641": 483, "31642": 483, "31647": 483, "31648": [480, 483], "31649": 483, "31650": [480, 483], "31653": 483, "31658": 483, "3166": 469, "31662": 483, "31664": [480, 483], "31671": [480, 483], "31672": 483, "31673": 483, "31675": 483, "31680": [481, 483], "31690": [480, 483], "31692": 469, "31696": 483, "31699": 483, "31701": 483, "31702": [480, 483], "31705": 483, "31708": 483, "31709": [480, 483], "3171": 259, "31715": 483, "31718": 483, "31721": 483, "31728": 483, "31731": 483, "31731050786291404": 475, "31733": 469, "31752": 483, "31756": [480, 483], "31758": 483, "31764": [176, 483], "31770": 483, "31778": [480, 483], "31781": 483, "31783": 483, "31784": 483, "31786": 483, "31787": 483, "318": [68, 427, 484], "31800": 483, "31801": [480, 483], "31802": 483, "31803": 483, "31804": 483, "31806": 483, "31809": 483, "31819": [480, 483], "31821": 483, "31825": 483, "31827": 483, "31829": 483, "31831": 483, "31834": 483, "31836": 483, "31843": [480, 483], "31844": [472, 483], "31845": 483, "3184678262814532": 481, "31848": 483, "31849": 483, "31852": 483, "31853": 483, "31854": 483, "31855": 483, "31857": 483, "31858": 483, "31860": [479, 480, 483], "31861": [472, 483], "31862": 483, "31866": 483, "31870": [472, 483], "31884": 483, "3189": 483, "31891": 483, "31893": 483, "31897": 483, "31900": [479, 480, 483], "31901": 483, "31902": 483, "31903": 483, "31904": 483, "31908": 483, "31917": 483, "31920": 483, "31922": 483, "31926": 483, "31927": 483, "31933": 483, "31934": 483, "31938": 483, "31943": [480, 483], "31944": 483, "31945": [480, 483], "31949": 483, "31956": [472, 483], "31957": 483, "31961": 483, "31966": 483, "31970": [480, 483], "31972": 483, "31975": [480, 483], "31976": 483, "31985": [480, 483], "3199": 382, "31993": 483, "32": [4, 16, 25, 41, 42, 59, 68, 86, 94, 95, 98, 99, 106, 107, 109, 115, 121, 139, 141, 146, 153, 158, 166, 176, 186, 215, 226, 235, 250, 251, 259, 261, 262, 270, 283, 293, 303, 304, 306, 311, 318, 326, 333, 337, 343, 344, 347, 349, 352, 365, 366, 388, 398, 405, 406, 422, 423, 424, 428, 435, 446, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "320": [226, 388], "32000": 344, "32001": 344, "32002": [344, 483], "32011": 483, "32012": [480, 483], "32015": 483, "32018": 483, "32021": 483, "32023": [480, 483], "32025": [480, 483], "32028": 483, "32030": 483, "32034": 483, "32037": 483, "32043": [480, 483], "32046": 483, "32056": 483, "32059": 483, "32066": [480, 483], "32069": 483, "3207": 468, "32071": [480, 483], "32072": 483, "32088": 483, "32089": 483, "32096": 483, "320px": 467, "321": [125, 186], "32100": 483, "321000e": 186, "32101": 483, "32102": [480, 481, 483], "32105": 483, "32107": [480, 483], "32108": 483, "32110": 483, "32117": [481, 483], "32121": [480, 483], "32125": 483, "32126": 483, "32129": 483, "32136": 483, "32137": 483, "32138": 483, "32143": 483, "32146": 483, "32147": 483, "32154": 483, "32159": 483, "32164": 483, "32173": 483, "32174": 483, "32176": 483, "32178": 483, "32182": 483, "32185": [480, 483], "32186": 483, "32193": [480, 483], "32199": 483, "321e": 186, "322": [68, 484], "32206": [480, 483], "32207": 483, "3221225984": 99, "3221225985": [99, 259], "32214": 483, "32215": 483, "32217": 483, "32218": 483, "32221": 483, "32222": 483, "32225": 483, "32226": [480, 483], "32227": [480, 483], "32228": 483, "32230": [480, 483], "32232": 483, "32236": 483, "32241": 483, "32248": [480, 483], "32250": [480, 483], "32251": [480, 483], "32252": 483, "32253": [480, 483], "32255": 483, "32257": 483, "32259": 483, "32260": 483, "32264": 483, "32265": [480, 483], "32269": [480, 483], "32270": 483, "32272": 483, "32273": 483, "32277": 483, "32278": 483, "32279": 483, "32282": 483, "32285": [481, 483], "3229": 241, "32296": [480, 483], "32299": 483, "323": [166, 479], "32302": 483, "32303": [480, 483], "32304": [480, 483], "32305": [480, 483], "32308": [480, 483], "32309": [482, 483], "32311": [480, 483], "32314": [480, 481, 483], "32320": [480, 483], "32321": 483, "3232235521": [259, 345], "32323": 483, "32327": [480, 483], "32329": 483, "32331": [480, 483], "32337": 483, "32348": [480, 483], "32351": [480, 483], "32355": [480, 483], "32356": [480, 483], "32357": 483, "32363": 483, "32370": 483, "32373": [480, 483], "32374": 483, "32379": 483, "32380": [481, 483], "32381": 483, "32388": [481, 483], "32390": 483, "32391": [480, 483], "32394": 483, "32399": 483, "324": [68, 85, 348, 484], "32403": [480, 483], "32404": 483, "32409": 483, "32410": [480, 483], "32411": 483, "32415": [480, 483], "32417": [481, 483], "32418": [480, 483], "32422": 483, "32424": 483, "32430": [481, 483], "32433": [480, 483], "32436": [480, 483], "32441": [480, 483], "32454": [480, 483], "32455": 483, "32457": 483, "32467": 483, "32468": 483, "32473": 483, "32489": [481, 483], "32490": 483, "32492": [481, 483], "32493": 483, "32494": 483, "32498": 483, "32499": 483, "325": [183, 186, 467], "32500": 483, "32502": 483, "32503": 483, "32505": 483, "32506": 483, "32507": 483, "32512": 483, "32513": 483, "32515": 483, "32517": 483, "32521": 483, "32528": [481, 483], "32533": 483, "32544": [480, 483], "32547": 483, "32549": 483, "32550": [480, 483], "32551": 483, "32554": 483, "32555": 483, "32556": 483, "32557": 483, "32560": 483, "32568": 483, "32574": 483, "32576": 483, "32583": 483, "32585": [480, 483], "32587": 483, "32588": 483, "32591": [480, 483], "32592": 483, "32593": 483, "32596": 483, "32598": 483, "326": 319, "32602": 483, "32604": 483, "32609": 480, "32610": 483, "32613": 483, "32614": 483, "32622": 483, "32627": 483, "32630": [480, 483], "32631": 483, "32635": 483, "32643": 483, "32647": 483, "32649": 483, "32650": 483, "32659": [480, 483], "32660": 483, "32662": [480, 483], "32663": 483, "32670": [480, 483], "32677": [480, 483], "32680": 483, "32681": 483, "32684": 483, "32685": 483, "32689": 483, "32690": [480, 483], "32691": 483, "32695": 483, "32697": 483, "327": [68, 473, 484], "32703": 483, "32710": 483, "32711": 483, "32713": 483, "32717": 480, "32718": [481, 483], "32721": 483, "32722": 483, "32724": 483, "32726": 483, "32727": 483, "32734": 483, "32741": [480, 483], "32745": 483, "32749": [481, 483], "32751": [481, 482, 483], "32759": 483, "32765": 483, "32767": [75, 347], "32768": [109, 220, 341, 347, 424, 483], "32775": 483, "32777": 483, "32780": 483, "32782": 483, "32788": 483, "32792": [480, 483], "32793": 483, "328": [68, 113, 225, 250, 432, 470, 476, 484], "3280": 341, "32800": 483, "32819": 483, "32820": 483, "32826": 483, "32831": 483, "32836": 483, "32837": 483, "32841": 483, "32844": 483, "32849": 483, "3285": 183, "32852": 483, "32856": [482, 483], "32857": 483, "32859": 483, "32861": 483, "32872": 483, "32873": 483, "32874": 483, "32885": 483, "32889": 483, "32890": 483, "32892": [481, 483], "32894": 483, "32896": 483, "32898": 483, "32901": 483, "32903": 483, "32905": 483, "32910": 483, "32911": 483, "32912": 483, "32913": 483, "32916": 483, "32922": 483, "32925": 483, "32929": 483, "32932": 483, "32933": 483, "32940": 483, "32941": [481, 483], "32946": 483, "32947": [480, 483], "32951": [480, 483], "32953": 483, "32960": 483, "32962": 483, "32968": 483, "32969": 483, "32970": 483, "32972": [481, 483], "32981": 483, "32984": 483, "32989": 483, "32990": 483, "32995": 483, "32999": 483, "32be": 158, "32bit": [337, 464, 483], "32c18f": 384, "32k": 483, "32le": 158, "32m": 475, "32mu": 475, "32x": 472, "33": [86, 96, 147, 160, 176, 178, 261, 283, 284, 319, 352, 389, 444, 450, 451, 464, 465, 466, 475, 481, 482, 483], "33000": 483, "33001": 483, "33005": 483, "33009": 483, "33012": 483, "33015": 483, "33016": 483, "33018": 483, "33021": 483, "33026": 483, "33034": 483, "33037": 483, "33041": [481, 483], "33042": 483, "33043": 483, "33053": [480, 483], "33056": 483, "33060": 296, "33061": 483, "33064": 483, "33065": 483, "33073": [481, 483], "33078": 483, "33083": [481, 483], "33089": [481, 483], "33096": 483, "33097": [480, 483], "331": [68, 484], "33100": 483, "33106": [481, 483], "33109": 483, "33110": 483, "33116": 483, "33123": 483, "33125": [482, 483], "33126": 483, "33127": 483, "33128": 483, "33131": 483, "33134": 483, "33136": 483, "33138": 483, "33141": 483, "33144": 483, "33163": 483, "33164": 483, "33165": 483, "33169": [480, 483], "33175": 483, "33176": 483, "33178": 483, "33182": 483, "33184": 483, "33185": 483, "33188": 293, "33189": 483, "33195": 483, "33197": 483, "33199": 483, "33201": 483, "33203": 483, "33204": 483, "33205": 483, "33209": 483, "33217": [480, 483], "33224": 483, "33231": 483, "33234": [481, 483], "33237": 483, "33238": 483, "33251": 483, "33254": 483, "33256": 483, "33262": [482, 483], "33263": 483, "33265": 483, "33266": 483, "33270": 483, "33274": 483, "33276": 483, "33277": 296, "33281": 483, "33289": 483, "33291": 483, "333": [78, 85, 442, 444, 467], "3330": 259, "33305": 483, "33306": 483, "33308": 483, "33311": 483, "33312": 483, "33316": 483, "33329": 483, "3333": [68, 407, 484], "33331": 483, "33332": 483, "33333333": 344, "33334": 483, "33336": 483, "33346": [473, 483], "33348": 483, "33349": 483, "33358": 483, "33361": 483, "33363": 483, "33365": 483, "33375": 483, "33377": 483, "33378": 483, "33383": 483, "33387": 483, "3339": 101, "33391": 483, "33392": 473, "33393": 483, "33394": 483, "33407": [481, 483], "33409": 483, "33416": [481, 483], "33418": 483, "33421": 483, "33422": 483, "33433": 483, "33451": 483, "33452526613163807108170062053440751665152000000000": 468, "33453": 483, "33460": 483, "33461": 483, "33462": [481, 483], "33469": 483, "33475": 483, "33476": 483, "33479": 483, "33482": 483, "33483": 483, "33487": 483, "33495": 483, "33497": 483, "33499": [481, 483], "335": 366, "33503": 483, "33504": 483, "33505": 483, "33509": 483, "33512": 483, "33516": 483, "33519": 483, "33522": 483, "33524": 483, "33529": 483, "33530": [481, 483], "33536": 483, "33540": [480, 483], "33541": 483, "33542": 483, "33548": 483, "33562": 483, "33564": 483, "33569": 483, "33570": 483, "33578": 483, "33582": 483, "3359300": 341, "33594": 483, "33597": [481, 483], "33604": 483, "33608": 483, "33610": 483, "33613": 483, "33614": 483, "33618": [480, 483], "33622": 483, "33623": 483, "33625": 483, "33628": 483, "33635": 483, "33642": [479, 480, 483], "33648": 483, "33652": 483, "33654": 483, "33655": 483, "33656": [479, 480, 483], "3366": 469, "33660": 483, "33663": 483, "33664": 483, "33671": [332, 481, 483], "33672": 483, "33674": 483, "33679": [479, 480, 483], "33684": 483, "33687": 483, "33689": 483, "33693": 483, "33694": 483, "33695": [481, 483], "337": 384, "33706": 483, "33710": [481, 483], "33717": 483, "33720": [35, 483], "33721": [481, 483], "33725": [283, 481, 483], "33729": 483, "33731": 483, "33734": 483, "33736": 483, "33738": 483, "33746": 483, "33763": 483, "33767": 483, "33768": [479, 480, 483], "33769": 483, "33770": 483, "33775": 483, "33778": 483, "33786": 483, "3379": 469, "33792": [480, 483], "338": [68, 324, 432, 455, 484], "33803": 483, "33805": 483, "33809": [473, 483], "33812": 483, "33817": 483, "33818": [481, 483], "3382": 469, "33824": 483, "33832": 483, "33833": 483, "33839": 483, "33842": 483, "33843": 483, "33847": 483, "33851": 483, "33855": 483, "33856": 483, "33871": 483, "33873": 483, "33895": 483, "33897": [481, 483], "33899": [479, 480, 481, 483], "339": 467, "33901": 483, "33904": 483, "33905": 483, "33906": 483, "33907": 483, "33916": 483, "33917": 483, "33924": 483, "33929": 483, "33930": 483, "33932": 483, "33936": 483, "33944": 483, "33947": 483, "33954": 483, "33956": 483, "33962": [472, 482, 483], "33967": 483, "33972": 483, "33974": 483, "33975": 483, "33978": 483, "33985": 483, "33987": 483, "33989": 483, "33af": 109, "33cc8c": 384, "33md": 475, "34": [33, 96, 102, 139, 183, 186, 221, 226, 337, 341, 343, 430, 441, 449, 450, 475, 483], "34001": 483, "34002": 483, "34003": [481, 483], "34006": 483, "34008": 483, "34010": 483, "34011": 483, "34013": 483, "34019": 483, "34022": 483, "34035": 483, "34037": [482, 483], "34041": 483, "34042": 483, "34043": 483, "34044": 483, "34047": 483, "34052": 483, "34054": 483, "34055": 483, "34056": 483, "34060": 483, "34062": 483, "34065": 483, "34066": 483, "34068": 483, "3407": 465, "34070": 483, "34075": [481, 483], "34080": 483, "34081": 483, "34087": 483, "34093": 483, "34097": 483, "340k": 463, "341": [68, 102, 484], "34100": 483, "34108": 483, "34113": 483, "34118": 483, "34120": 483, "34121": 483, "34125": 483, "34126": 483, "34127": 483, "34139": 483, "34141": 483, "34144": 483, "34149": 483, "34151": 483, "34155": 483, "34160": [481, 483], "34164": 483, "34170": 483, "34171": 483, "34193": 483, "34197": 483, "342": [68, 95, 161, 367, 430, 484], "34200": 483, "34204": [472, 483], "34213": 483, "34215": 483, "34225": 483, "34226": 483, "34228": 483, "34245": 483, "34246": 483, "34247": 480, "34248": 483, "34251": 483, "3426": [469, 483], "34263": 483, "34266": 483, "34270": [481, 483], "34271": 483, "34272": 483, "34275": 483, "34279": 483, "3428": 319, "34282": 483, "34293": 483, "34294": 483, "343": [68, 87, 113, 169, 427, 428, 446, 449, 470, 484], "34303": 483, "34318": 483, "34320": 483, "34323": 483, "34331": 483, "34333": 483, "34334": 483, "34341": 483, "34347": 483, "34353": 483, "34363": 483, "34373": 483, "34377": 483, "34384": 483, "3439": [469, 471], "34391": 483, "34398": 483, "34399": 483, "344": 382, "34400": 483, "34401": 483, "34403": 483, "34405": 483, "34408": 483, "34410": 483, "34412": 483, "34421": 483, "34424": 483, "34427": 483, "34441": 483, "34443": 483, "34449": 483, "3445": 475, "34454": 483, "34463": 483, "34472": 483, "34485": 483, "34488": 483, "34490": 483, "345": [319, 466, 471], "34515": 483, "34519": 483, "34521": 483, "345216": 183, "34523": 483, "34527": 483, "34530": 483, "34532": 483, "34536": 483, "34537": 483, "34538": 482, "3454": [346, 465, 483], "34542": 483, "34547": 483, "34548": 483, "34552": 483, "34555": 483, "34556": 483, "34558": 483, "34561": 483, "34563": 483, "34567": [435, 479], "34569": 483, "34572": 483, "34574": 483, "34579": 483, "34581": 483, "34582": 483, "34585": 483, "34587": 483, "34588": 483, "34594": 483, "34596": 483, "345s": 476, "346": 96, "34602": 483, "34603": 483, "34604": 483, "34610": 483, "34616": [481, 483], "34622": 483, "34623": 483, "34625": 483, "34630": 483, "34631": 483, "34632": [481, 483], "34636": 483, "34637": 483, "34638": 483, "34641": [481, 483], "34651": [481, 483], "34652": 483, "34653": 483, "34658": 483, "34659": [481, 483], "34661": 483, "34666": 483, "34670": [481, 483], "34672": 483, "34679": 483, "34683": 483, "34687": [481, 483], "34691": 483, "347": [382, 467], "34706": 483, "34710": 483, "34711": 483, "34720": 483, "34725": 483, "34728": 483, "3473": 468, "34735": 483, "34738": 483, "34745": 483, "34749": 483, "34750": 483, "34751": 483, "34758": 483, "34762": [17, 480, 483], "34764": 483, "34765": 483, "34767": 483, "34769": 483, "34770": 483, "34774": 483, "34775": [482, 483], "34776": 483, "34784": 483, "34788": [482, 483], "34789": 483, "34790": [481, 482, 483], "34791": 483, "34793": [482, 483], "34794": 483, "34798": 483, "348": 96, "34803": 483, "34812": 483, "34816": 483, "34819": 483, "34822": [482, 483], "34824": 483, "34828": 483, "34829": [481, 483], "34844": 483, "34849": 483, "34850": [481, 483], "34854": 483, "34861": 483, "34864": 483, "34866": 483, "3487": 468, "34871": 483, "34872": 483, "34876": 483, "34879": 483, "3488": 475, "34880": [482, 483], "34886": 483, "34890": 483, "34897": 483, "34898": [481, 483], "3490": [158, 465], "34900": 483, "34903": 483, "34909": 483, "3491": [465, 483], "34910": 483, "34911": 483, "34913": 483, "34916": 473, "3492": [158, 465], "34922": 483, "34925": 483, "34926": 483, "3493": 337, "34932": 483, "34936": 483, "34939": 483, "34941": 483, "34956": [482, 483], "34962": 483, "34966": 483, "34967": 483, "34969": 483, "3497": 94, "34970": 483, "34973": 483, "34974": 483, "34975": [473, 483], "34977": 483, "34983": 483, "34989": 483, "34990": 483, "34a04430": 84, "35": [93, 95, 186, 225, 318, 343, 403, 435, 465, 466, 467, 468, 474, 475, 479, 481, 482, 483], "35008": 483, "3501": 248, "35011": 483, "35017": 483, "35018": [472, 483], "35022": 483, "35024": 483, "35025": 483, "35029": 483, "35035": 483, "35038": 483, "35042": 483, "35044": 483, "35045": 483, "35047": [481, 483], "35050": 483, "35052": 483, "35053": 483, "35059": [481, 483], "35062": 483, "35065": 483, "35066": 483, "35067": 483, "35070": 483, "35078": 483, "35079": 483, "35081": [481, 483], "35082": 483, "35087": 483, "35088": 483, "35089": 483, "35093": 483, "35097": 483, "35099": 483, "35113": 483, "35114": 483, "35121": 483, "35125": 483, "35132": 483, "35134": [472, 473, 481, 483], "351364": 466, "35139": 483, "3514": 475, "3515": 102, "35152": 483, "35153": [481, 483], "35168": 483, "35169": 483, "35178": 483, "35182": 483, "35183": 483, "35186": 483, "35189": 483, "35193": 483, "35196": 483, "35198": 483, "352": [68, 468, 470, 473, 483, 484], "35202": 483, "35208": 483, "35213": 483, "35214": 483, "35224": [481, 483], "35226": 483, "35246": 483, "35252": 483, "35257": 483, "35259": 483, "35269": 483, "35277": 483, "35279": 483, "35283": [481, 483], "35292": 483, "35293": 483, "35296": 483, "35299": 483, "353": [35, 68, 472, 483, 484], "3530": 483, "35304892063140869": 465, "35306": 483, "35308": 483, "35310": 483, "35312": 483, "35317": 483, "35321": 483, "35322": 483, "35328": 483, "35330": 483, "35332": 483, "35336": 483, "35341": 483, "35344": 483, "35345": [481, 483], "35346": 483, "35348": 483, "35351": 483, "35352": 483, "35357": 483, "35360": 483, "35370": 483, "35371": 483, "3537115888337719": 444, "35372": 483, "35376": 483, "35378": 483, "35379": 483, "35380": 483, "35381": 483, "35389": 483, "35394": 483, "35397": 483, "35401": 483, "35402": 483, "35409": 483, "35412": 483, "35415": 483, "35416": 483, "3542": [337, 483], "35423": 483, "35424": 483, "35431": [481, 483], "35436": 483, "35444": 483, "35445": 483, "35455": 483, "35459": 481, "35471": [481, 483], "35474": 483, "35477": 483, "3548": [146, 466], "35488": 483, "35491": 483, "35493": 483, "35494": 483, "35498": [472, 483], "35499": 483, "354aa": 319, "355": [186, 221], "35500": 483, "35502": 483, "35504": 483, "35505": 483, "35511": 483, "35512": 483, "35513": 483, "35519": 483, "35521": 483, "35523": 483, "35526": 483, "35537": [481, 483], "35540": 483, "35545": 483, "35550": 483, "35551": 483, "35552": 483, "35555": 483, "35560": 483, "35564": 483, "35568": 483, "35569": 483, "35581": 483, "35582": 481, "35585": 483, "35588": 483, "35591": 483, "35596": 483, "35598": 483, "356": 467, "35606": [481, 483], "356099432828281": 481, "3561": 476, "35610": 483, "35614": 483, "35615": 483, "35619": 483, "35621": 483, "35623": 483, "35634": 483, "35640": 483, "35641": 483, "35642": 483, "35643": 483, "35652": 483, "3566": 478, "35660": 483, "35661": 483, "35664": [481, 483], "35668": 483, "35673": 483, "35674": 483, "35682": 483, "35683": 483, "35689": 483, "35692": 483, "35699": 483, "357": [68, 484], "35702": [481, 483], "35704": 483, "35712": [482, 483], "35713": [481, 483], "35714": 483, "35715": 483, "35717": 483, "35719": 483, "35720": 483, "35721": 483, "35724": 483, "35726": 483, "35727": 483, "35728": 483, "35733": 483, "35746": 483, "35753": 483, "35755": 483, "35758": 483, "35763": 483, "35764": 483, "35766": [481, 483], "35769": 483, "35770": 483, "35771": 483, "35772": 483, "35780": 483, "35797": 483, "35798": 483, "35800": [473, 482, 483], "35802": 483, "35803": 483, "35805": 483, "35807": 483, "35808": 483, "35810": [481, 482, 483], "35811": 483, "35813": [481, 483], "35814": 483, "3582": 469, "35823": 483, "35833": 483, "35843": 483, "35845": 483, "35847": 483, "3585": 469, "35854": 483, "35859": [473, 483], "35864": [481, 483], "35872": 483, "35873": 483, "35877": 483, "35883": 483, "35884": [481, 483], "35886": [481, 483], "35890": 483, "35892": 481, "35899": 483, "35900": [481, 483], "35904": [481, 483], "35907": 483, "35911": 483, "35917": 483, "35918": 483, "35920": 483, "35922": 483, "35923": 483, "35924": 483, "35925": 483, "35926": 483, "35928": 483, "3592984": 382, "35930": 483, "35931": 483, "35934": 483, "35936": 483, "35941": 483, "35942": 483, "35943": 483, "35947": 483, "35950": 483, "35952": 483, "35960": 483, "35961": 483, "35967": 483, "35970": 483, "35975": 483, "35976": 483, "35983": 483, "35991": 483, "35992": 483, "35993": 483, "35998": 483, "36": [18, 39, 101, 104, 109, 225, 261, 271, 283, 318, 322, 343, 345, 366, 442, 446, 449, 451, 452, 453, 472, 475, 477, 481, 482, 483], "360": 384, "3600": [126, 133, 139, 169, 183], "36002": 483, "36004": [481, 483], "36007": 483, "36010": 483, "36012": [481, 483], "36016": [481, 483], "36018": [481, 483], "36019": 483, "3602": 382, "36020": [472, 483], "36025": 483, "36027": [481, 483], "36028797018963968": 444, "3602879701896397": 444, "36035": 483, "36037": 483, "3603bae63c13": 483, "36043": 483, "36044": [482, 483], "36045": 483, "36046": 483, "36048": [481, 483], "36050": 483, "36051": 483, "36052": 483, "360620266859": 261, "36073": 483, "36076": 483, "36083": 483, "36084": [481, 483], "36085": [481, 483], "36091": 483, "36096": 483, "361": 468, "36103": 483, "36106": 483, "36123": 483, "36124": 483, "36127": 481, "36130": 483, "36138": 483, "36139": 483, "36142": 483, "36143": 483, "36144": [482, 483], "36146": 483, "36152": 483, "36157": 483, "36161": 483, "36169": 483, "36176": 483, "36179": 483, "36184": 483, "36188": 483, "362": [68, 87, 98, 255, 484], "36205": 483, "36210": 483, "36216": 483, "36218": 483, "36227": 483, "36231": 483, "36232": 483, "36234": 483, "36235": 483, "36236": 483, "36239": 483, "36250": 483, "36251": 483, "36252": 483, "36256": 483, "36260": 483, "36262": 483, "36264": [481, 483], "36266": 483, "36267": 483, "36268": [481, 483], "36272": 483, "36279": 483, "36280": 483, "36282": 483, "36285": 483, "36287": 483, "3628800": 226, "36290": 483, "36297": [481, 483], "36298": 483, "36301": 483, "36302": 483, "36305": 483, "36310": 483, "36311": 483, "36312": 483, "3632": 469, "36320": [481, 483], "36321": 483, "36324": 483, "36326": [481, 483], "36329": 483, "36332": 483, "36333": 483, "36341": 483, "36342": 483, "36345": 483, "36346": [472, 482, 483], "36348": [481, 483], "36350": [482, 483], "36351": 483, "36352": 483, "36356": 483, "36365": 483, "36366": 483, "36368": 483, "36374": 483, "36379": 483, "36381": [481, 483], "36384": [481, 482, 483], "36385": 483, "36389": 483, "36390": 483, "36396": 483, "36398": 483, "36401": 483, "36402": 483, "3640375": 325, "36405": 483, "36406": 483, "36407": 483, "36409": [482, 483], "36412": 483, "36419": 483, "36421": 483, "36425": 483, "3642538": 325, "36429": 483, "36430": 483, "36433": 483, "3643398": 325, "36434": 483, "36436": 483, "36440": 483, "36441": 483, "36443": 483, "36452": 483, "36454": 483, "36459": 483, "36465": [472, 481, 483], "36470": 483, "36475": [481, 483], "36487": 483, "36492": [481, 483], "365": [94, 183, 341, 343, 366], "3650": 183, "36500": 483, "36503": 483, "36504": 483, "36508": 483, "36509": 483, "36515": 483, "36517": 483, "36520": 483, "36522": 483, "3652260728": 343, "36523": 483, "36533": 483, "36540": [481, 483], "36541": 483, "36542": 483, "36543": [482, 483], "36544": 483, "36546": [481, 483], "36548": 483, "36549": 483, "36559": 483, "36560": 483, "36564": 483, "36565": 483, "36575": 483, "36577": 483, "36582": 483, "36588": [481, 483], "36589": 483, "3659": 223, "36590": 483, "36594": 483, "36598": 483, "366": [68, 94, 98, 183, 250, 324, 366, 432, 470, 476, 484], "36601": 483, "36605": 483, "36607": 483, "36611": 483, "36613": 483, "36618": 483, "36623": [481, 483], "36625": 483, "36629": 483, "36634": 483, "36635": 483, "36641": 483, "36649": 483, "3665": 476, "36650": 483, "36669": [481, 483], "36673": [481, 483], "36674": 483, "36676": [481, 483], "36686": 483, "36698": 483, "367": 94, "36700": 483, "36707": [481, 483], "36710": 482, "36719": 483, "36721": [481, 483], "36722": [481, 483], "36725": 483, "36728": [481, 483], "36734": 483, "36737": 483, "36742": 483, "36747": 483, "36748": 483, "36763": [481, 483], "36772": [481, 483], "36778": 483, "36779": 483, "36781": 483, "36782": 483, "36783": 483, "36785": [481, 483], "36786": 483, "36793": [481, 483], "36797": 483, "368": 382, "36801": 483, "36802": 483, "36806": 483, "36807": 483, "36813": 483, "36814": 483, "36816": 483, "36817": [481, 483], "368181376027291943": 96, "36819": 483, "36820": 483, "36826": 483, "36829": [481, 483], "36831796169281006": 465, "36832": 483, "36833": 483, "36842": 483, "36845": 483, "36851": 483, "36854": 483, "36861": 483, "36867": 483, "36868": 483, "36871": 483, "36878": 483, "36880": 483, "36887": [481, 483], "36888": 483, "36889": 483, "36895": [481, 483], "36896": 483, "369": 481, "36907": 483, "36915": 483, "36916": 483, "36917": [481, 483], "36919": 483, "36921": [481, 483], "36922": 483, "36933": [481, 483], "36946": 483, "36948": 483, "3694863": 325, "36949": 483, "36952": [481, 483], "36958": 483, "36959": 483, "36960": 483, "3696074": 325, "369612": 325, "36965": 483, "36969": 483, "3697174": 325, "36972": 483, "36974": [481, 482, 483], "36982": [472, 483], "36983": 483, "36984": 483, "36991": 483, "36993": 483, "36996": 483, "36999": [481, 483], "37": [96, 176, 245, 318, 343, 344, 345, 382, 406, 451, 466, 469, 471, 472, 473, 480, 481, 482, 483], "370": [68, 334, 455, 470, 483, 484], "37001": 483, "37004": 483, "37007": [481, 483], "37008": 483, "37022": 483, "37027": [481, 483], "37027556854118704": 367, "37028": [481, 483], "37029": 483, "37032": [481, 483], "37034": 483, "37035": 483, "37038": 483, "37039": 483, "37045": 483, "37046": 483, "37047": 483, "37049": 483, "37050": 483, "37053": 483, "37054": 483, "37058": 483, "37064": 483, "37069": 483, "37072": 483, "37076": 483, "37077": 483, "37081": 483, "37085": 483, "37087": 483, "3709": [475, 476], "37098": 483, "371": [68, 470, 484], "37107": 483, "37111": 483, "37120": 483, "37122": 483, "37123": 483, "3712595970846668": 367, "37126": 483, "37128": [481, 483], "37129": 483, "37140": 483, "37149": 483, "37150": 483, "37151": 483, "37153": 483, "37158": 483, "37160": 483, "37163": 483, "37165": 483, "37169": 483, "37170": 483, "37173": 483, "37177": 483, "37178": [481, 483], "37189": 483, "37192": 332, "37193": 483, "37194": [482, 483], "37199": 483, "372": [68, 484], "3720238095238095": [343, 451], "37205": 483, "37206": 483, "37207": [482, 483], "37210": 483, "37212": 483, "37213": 483, "37215": 483, "37219": 483, "37221": [481, 483], "37228": [479, 480, 481, 482, 483], "37231": 483, "37251": 483, "37252": 483, "37256": 483, "37257": [482, 483], "37261": 483, "37266": 483, "37267": 483, "37268": 483, "37269": 483, "37278": 483, "37279": 483, "37280": 483, "37283": 483, "37284": 483, "37295": [473, 483], "373": [105, 469], "37300": 483, "37305": 483, "37308": 483, "37312": [482, 483], "37315": [482, 483], "37316": 483, "37319": 472, "37320": [482, 483], "37321": 483, "37324": [472, 483], "37325": 483, "37328": 483, "37330": [473, 483], "37335": 483, "37337": 483, "37340": [482, 483], "37345": 483, "37347": 483, "37348": [482, 483], "37351": [481, 483], "37354": 483, "37358": 483, "37359": 483, "37362": 483, "37363": 483, "37364": 483, "37369": 483, "37372": 483, "37376": [482, 483], "37380": 483, "37388": [482, 483], "37392": [482, 483], "37394": 483, "3740": 344, "37400": 483, "37404": [482, 483], "37405": 483, "37406": 483, "37409": 483, "37411": 483, "37412": [481, 483], "37414": [482, 483], "37415": 483, "37417": 483, "37420": 483, "37421": 483, "37424": 483, "37428": 483, "37433": 483, "37434": 483, "37437": 483, "37440": 483, "37441694736480713": 465, "37444": [482, 483], "37444887175646646": 318, "37445": 483, "37448": 483, "37449": 483, "37456": 483, "37461": 483, "37463": 483, "37467": 483, "37468": 483, "37472": 483, "37474": 483, "37478": 483, "37479": 483, "37481": [481, 483], "37482": 483, "37483": [482, 483], "37487": 483, "37488": 483, "37491": 483, "375": [283, 343], "37502": 483, "37520": 483, "37521": 483, "37523": 483, "37526": 483, "37530": 483, "37531": 483, "37534": 483, "37537": 483, "37540": [482, 483], "37543": 483, "37549": 483, "37555": 483, "37556": 483, "37558": 483, "37578": 483, "37579": 483, "37587": 483, "37593": 483, "37596": 483, "3761": 102, "37619": 483, "37627": [480, 481, 483], "37628": 483, "37630": [482, 483], "37633": 483, "37642": 483, "37645": [482, 483], "37648": 483, "37658": 483, "37663": [482, 483], "37664": 483, "37672": 483, "37675": 483, "37685": 483, "37689": 483, "37691": 483, "37692": 483, "37695": 483, "37697": 483, "377": [226, 441, 449, 450], "3770": 283, "37702": 483, "37703": 483, "37704": 483, "37705": 483, "37707": [482, 483], "37723": 483, "37725": 483, "37726": 483, "37734": 483, "37738": 483, "37742": [482, 483], "37748": 483, "37751": [482, 483], "37757": 483, "37759": 483, "37760": 483, "37764": 483, "37765": [481, 482, 483], "37772": 483, "37778": 483, "37785": 483, "37788": 483, "37798": 483, "378": [68, 96, 345, 382, 484], "37802": 483, "37803": 483, "37804": [482, 483], "37805": 483, "3781": 468, "37810": 483, "37811": 483, "37812": 483, "37814e6": 94, "37819": [481, 483], "37824": 483, "37828": 483, "37830": 483, "37834": [481, 483], "37838": 483, "37840": 483, "37849": 483, "37851": 483, "37863": 483, "37866875250654886": 367, "37868": 483, "37876": 483, "37878": [482, 483], "37879": 483, "37880": 483, "37885": 483, "37892": [472, 483], "37902": 483, "37903": [472, 483], "37915": 483, "37926": 483, "37929": 483, "37931": 483, "37936": 483, "37937": 483, "37942": 483, "37945": 483, "37947": 483, "37950": 483, "37951": [481, 483], "37953": 483, "37957": 483, "37958": 483, "37960": 483, "37961": 483, "37964": 483, "37965": 483, "37966": [481, 483], "37971": 483, "37972": 483, "37977": 483, "37979": 483, "37986": [482, 483], "37994": 483, "37995": [482, 483], "37999": [472, 483], "37m": 481, "38": [101, 102, 190, 225, 267, 337, 382, 465, 472, 481, 482, 483], "380": [68, 353, 430, 484], "38005": 483, "38006": 483, "38008": 483, "38010": 483, "38013": 483, "38018": 483, "38019": 483, "38020": 483, "38021": 483, "38026": 483, "38030": 483, "38031": 483, "38037": 483, "38041": 483, "38045": 483, "38049": 483, "3805": 465, "38053": 483, "38056": 483, "38059": 483, "38061": [482, 483], "38062": 483, "38066": 483, "38069": 483, "38071": 483, "38072": 483, "38073": 483, "38074": 483, "38075": 483, "38076": 483, "38077": 483, "38080": 483, "38081": 483, "38086": 483, "38087": 483, "38088": 483, "38089": 483, "38091": 483, "38092": 483, "38093": 483, "381": 382, "38108": 483, "38109": 483, "3811": 468, "38110": 483, "38112": [482, 483], "38113": 483, "38114": 483, "38115": 483, "38116": 483, "38117": 483, "38118": 483, "38121": 483, "38124": 483, "38132": 483, "38133": 483, "38134": 483, "38136": 483, "38140": 483, "38142": 483, "38144": [472, 483], "38148": 483, "38149": 483, "38153": 483, "38155": 483, "38156": 483, "38161": 483, "38163": 483, "38169": 483, "38174": 483, "38175": 483, "38183": 483, "38185": 483, "38191": 483, "38200": [472, 483], "38205": 483, "38210": 483, "38212": 483, "38216": 483, "38219": 483, "38234": [481, 483], "38236": 483, "38237": 483, "38239": 483, "38242": 483, "38243": 483, "38248": 483, "38249": 483, "38250": 483, "38252": 483, "38256": 483, "38265": 483, "38266": 483, "38267": 483, "38270": 483, "38271": 483, "38275": 483, "38291": [386, 472, 483], "38293": 483, "38294": 483, "383": [64, 158, 337, 483], "38301": 483, "38302": [472, 483], "38303": 483, "38307": [472, 483], "38308": 483, "38310": 483, "38312": [482, 483], "38317": 483, "38319": 483, "38324": 483, "38325": 483, "38328": 483, "38329": 483, "38332": 483, "38334": 483, "38341": 483, "38344": 483, "38344867356679524": 367, "38347": 483, "38348": 483, "38351": 483, "38352": 483, "38355": 483, "38359": 483, "38360": 483, "38361": 483, "38371": [473, 482, 483], "38373": 483, "38377": 483, "38378": 483, "38379": [482, 483], "38380": 483, "38387": 483, "38392": 483, "38395": 483, "384": [68, 183, 467, 472, 474, 482, 483, 484], "38402": 483, "38405": 483, "38410": 483, "38415": 483, "38417": 483, "38418": 483, "38422": 483, "38431": 483, "38435": 483, "38437": 483, "38438": 483, "38439": 483, "38443": 483, "38449": 483, "38453": 483, "38465": 483, "38468": 483, "38469": 483, "38470": 483, "38472": 483, "38473": 483, "38478": 483, "38488": 483, "38490": [472, 483], "38492": 483, "38493": [482, 483], "385": 475, "38500": [482, 483], "38502": 483, "38506": 483, "38519": 483, "38521": 483, "38523": 483, "38525": 483, "38527": 483, "38529": 483, "38530": [472, 483], "38535": 483, "38536": 483, "38540": 483, "38546": 483, "38547": 483, "38565": 483, "38576": 483, "38586": 483, "38588": 483, "38589": 483, "38592": 483, "38597": 483, "38598": 483, "3860": 469, "38602": [482, 483], "38605": 483, "38610": 483, "38613": 483, "38614": 483, "38615": [482, 483], "38622": 483, "38629": 483, "38630": 483, "38631": 483, "38634": 483, "38636": 483, "38639": 483, "38640": 483, "38641": 483, "38643": 483, "38644": [482, 483], "38650": [482, 483], "38659": 483, "38662": 483, "38668": 483, "38669": 483, "38673": 483, "38684": 483, "38686": 483, "38688": 483, "38689": 483, "38691": 483, "38692": [482, 483], "38693": 483, "38698": 483, "387": [57, 80, 213, 343], "38704": 483, "38707": 483, "38708": 483, "38712": [482, 483], "38713": [482, 483], "38716": 483, "38722": 483, "38723": 483, "38724": 483, "3873": 475, "38731": [472, 483], "38741": 483, "38761": 483, "38778": 483, "38785": 483, "38786": 483, "38787": [482, 483], "3879": 259, "38792": 483, "38804": 483, "38807": 483, "38809": 483, "38811": 483, "38816": 483, "38820": [472, 483], "38821": 483, "38822": 483, "38823": 483, "38834": 483, "38835": [482, 483], "38839": 483, "38840": 483, "38841": 483, "38852": 483, "38857": 483, "38858": 483, "38859": 483, "38862": 483, "38863": 483, "38870": [482, 483], "38871": 483, "38875": 483, "38876": 483, "38878": 483, "38880": 483, "38881": 483, "38883": 483, "38891": 483, "38892": 483, "38894": 483, "38896": [482, 483], "38899": 483, "389": [68, 484], "38901": 483, "38905609893": 186, "389056098930650227230427461": 186, "38907": 483, "38908": [472, 483], "38913": 483, "38914": 483, "38916": [482, 483], "38918": 483, "38920": 483, "38922": 483, "38927": 483, "38928": 483, "38932": 483, "38941": 483, "38943": 483, "38944": [481, 482, 483], "38945": 483, "38956": 483, "38960": 483, "38964": 483, "38965": 483, "38971": 483, "38976": 483, "38978": 483, "38979": 483, "38980": [472, 483], "38982": 483, "38986": 483, "38991": 483, "38992": 483, "38994": 483, "39": [96, 160, 183, 193, 283, 293, 366, 456, 466, 472, 476, 481, 482, 483], "39006": 483, "39007": 483, "39008": 483, "39010": 483, "39011": [482, 483], "39017": 483, "39019": 483, "39022": 483, "39026": 483, "39028": 483, "39031": 483, "39033": 483, "39039": 483, "39040": 483, "39048": 483, "39050": 483, "39055": 483, "39056": 483, "39057": 483, "39058": 483, "39064": 483, "39068": 483, "39073": 483, "39075": 483, "39080": 483, "39082": 483, "39087": 483, "39091": 483, "391": [68, 484], "39101": 483, "39104": 483, "39107": 483, "39114": 483, "39129": 483, "39142": 483, "39144": 483, "39148": 483, "39152": 483, "39153": 483, "39156": [482, 483], "39158": 483, "39160": 483, "39164": 483, "39166": 483, "39168": 483, "39184": 483, "39185": 483, "39191": 483, "39198": 483, "392": 475, "39200": 483, "39207": [482, 483], "39209": 483, "39215": 483, "39216": 483, "39218": 483, "39219": 483, "39220": 483, "39235": 483, "39239": [482, 483], "3924": 469, "39242": 483, "39244": 483, "39245": 483, "39259": [482, 483], "39264": 483, "3927": 259, "39273": [472, 483], "39274": 483, "39288": [482, 483], "39297": 483, "393": [64, 68, 158, 352, 472, 482, 483, 484], "39305": 483, "39310": [482, 483], "39313": 483, "39314": 483, "39316": 483, "39320": 483, "39322": [482, 483], "39327": 483, "39328": 382, "39329": [482, 483], "39336": [482, 483], "39337": [472, 483], "39342": 483, "39349": [482, 483], "39350": [482, 483], "39351": [482, 483], "39353": [482, 483], "39357": [482, 483], "39359": 483, "39360": 483, "39366": [482, 483], "39369": [382, 483], "39372": [482, 483], "39377": [482, 483], "39380": 483, "39381": 483, "39382": 483, "39384": 483, "39385": [472, 483], "39386": 483, "39388": 483, "39389": 483, "39390": 483, "39392": 483, "39393": 483, "39394": 483, "39395": [482, 483], "39396": 483, "39401": 483, "39406": 483, "39411": 483, "39413": [482, 483], "39416": 483, "39421": 483, "39427": 483, "39430": 483, "39432": 483, "39434": [482, 483], "39435": 483, "39439": 483, "39448": 483, "39450": 483, "39452": 483, "39453": 483, "39465": [482, 483], "39474": 483, "39479": [482, 483], "39481": [482, 483], "39485": 483, "39489": [482, 483], "39491": 483, "39492": 483, "39493": 483, "39495": 483, "39498": 483, "39500": 483, "39502": 483, "39503": 483, "39507": [482, 483], "39509": [482, 483], "39510": 483, "39511": 483, "39517": 483, "39520": 483, "39522": 483, "39529": 483, "39530": 483, "39542": [482, 483], "39546": 483, "39548": 483, "39549": 483, "39553": 483, "3955516149999312": 367, "39559": 483, "39562": [482, 483], "39567": 483, "39572": 483, "39573": [472, 473, 483], "39579": 483, "39580": 483, "39583": 483, "39586": [482, 483], "39587": 483, "39590": 483, "39595": 483, "39600": 483, "39603": 483, "39606": 483, "39609": 483, "39610": 483, "39615": 483, "39619": 483, "39622": 483, "39627": 483, "39631": 483, "39638": [482, 483], "39639": [482, 483], "39648": [482, 483], "39649": 483, "39651": 483, "39652": 483, "39654": 483, "39656": 483, "39663": 483, "39667": 483, "39674": 483, "39677": 483, "39678": 483, "39679": 483, "39681": 483, "39682": 483, "39693": 483, "397": [68, 332, 461, 478, 483, 484], "39702": [482, 483], "39705": 483, "39716": 483, "39717": 483, "39718": 483, "39719": 483, "3972": [109, 469], "39728": 483, "3972e6": 94, "39744": 483, "39761": 483, "39763": 483, "39764": 483, "39769": 483, "3977": 288, "39775": [482, 483], "39776": 483, "39778": 483, "39781": 483, "39789": 483, "39791": [482, 483], "39793": 483, "39794": 483, "398": 476, "39812": [482, 483], "39824": 483, "39825": 483, "39826": 483, "39828": 483, "39829": 483, "39830": 483, "39847": 483, "39850": 483, "39852": 483, "39855": 483, "3986": [245, 394, 469, 472, 478, 479, 480, 481, 482, 483], "39868": 483, "39871": 483, "39877": [482, 483], "39879": 483, "39881": 483, "39882": [482, 483], "39883": 483, "39884": 483, "39885": 483, "39889": 483, "39899": 483, "399": [241, 483], "39906": [472, 483], "39915": 483, "39916": 483, "39916800": 468, "39926": [482, 483], "39930": 483, "39934": 483, "39936": 483, "39939": [482, 483], "39942": 483, "39946": [482, 483], "39947": [482, 483], "39950": [472, 483], "39953": 483, "39960": 483, "39965": 483, "39966": 483, "39968": 483, "39969": [482, 483], "39984": [482, 483], "39988": [482, 483], "39991": 483, "39994": 483, "39995": 483, "39999": 483, "3ad2a9b37c6070e374c7a8c508fe20ca86b6ed54e286e93a0318e95e881db5aa": 235, "3b8a": [398, 467], "3bsd": 337, "3c": [85, 369], "3ca4": [398, 467], "3d": [344, 446], "3d363ff7401e02026f4a4687d4863c": 235, "3des": [167, 341, 479, 483], "3dgamer": 464, "3dm": 98, "3e": 378, "3f": [85, 160, 446, 475, 481], "3gpp": 483, "3gpp2": 483, "3i": 369, "3j": [225, 289, 469], "3l": 462, "3rc1": 483, "3rd": [84, 319, 334, 386, 446, 476, 483], "3s": 347, "3tk": 369, "3to2": 483, "3x": [261, 477, 483], "3x4": 442, "40": [92, 93, 95, 96, 101, 155, 160, 183, 193, 247, 267, 308, 318, 319, 321, 332, 343, 366, 375, 384, 424, 441, 451, 452, 472, 477, 480, 481, 482, 483], "400": [73, 102, 110, 117, 155, 223, 241, 283, 288, 335, 369, 384, 441, 452, 472], "4000": 452, "40000": [446, 483], "40000000000000002": 468, "40003": 483, "40010": [482, 483], "40014": 483, "40016": 483, "40017": 483, "40019": 483, "40020": 483, "40024": [482, 483], "40025": 483, "4004": 344, "40050": 483, "40052": 483, "40055": 483, "40059": [473, 483], "40066": [472, 483], "40067": 483, "4007": 259, "40077": 483, "40082": 483, "40084": 483, "40089": 483, "40091": 483, "40094": [482, 483], "400s": 75, "401": [110, 241, 395, 441, 472, 478, 483], "40105": 483, "40108": 483, "40116": [473, 483], "40121": 483, "40126": 483, "40128": 483, "40137": 483, "40138": 483, "40141": 483, "40146": 483, "40148": 483, "40149": 483, "40158": 483, "40162": 483, "40163": 483, "40164": 483, "4017": 102, "40170": [473, 482, 483], "40173": 483, "40176": [472, 483], "40179": 483, "40181": 483, "40182": [482, 483], "40183617287970225": 367, "40190": 483, "40192": [482, 483], "40196": 483, "402": [110, 241, 382], "40204": 483, "40208": [482, 483], "40217": [63, 482, 483], "40219": 483, "4022": 483, "40222": [473, 483], "40228": 483, "40234": 483, "40241": [482, 483], "40246": 483, "40257": [482, 483], "40260": 483, "40262": 483, "40263": 483, "40267": 483, "40270": 483, "40273": 483, "40275": 483, "40277": 483, "40280": 483, "40282": 483, "40286": [482, 483], "40287": 483, "40290": 483, "40291": [482, 483], "40296": 483, "403": [110, 241, 245, 441, 472], "4030": [474, 483], "40304": 483, "40313": 483, "40318": 483, "40321": 483, "40325": 483, "40328": 483, "40330": 483, "40334": [472, 482, 483], "40355": 483, "40358": 483, "40360": [473, 482, 483], "40375": [482, 483], "40385": 483, "40389": 483, "40394": 483, "40396": 483, "40397": 483, "40398": 483, "404": [110, 151, 241, 242, 245, 262, 395, 407, 419, 420, 441, 472, 478], "40408": 483, "40412": 483, "40417": 483, "40421": [482, 483], "40422": 483, "40423": 483, "40428": [482, 483], "40429": [473, 483], "40431": 483, "40432": 483, "40436": 483, "40443": 483, "40447": 483, "40448": 483, "40453": 483, "40457": 483, "40458": 483, "40459": 483, "40465": [473, 482, 483], "40468": [472, 482, 483], "40477": 483, "40479": [482, 483], "40480": 483, "40492": 483, "40495": [482, 483], "40497": 483, "40499": 483, "405": [68, 110, 241, 399, 484], "40501": 483, "40502": 483, "40503": 483, "40504": 483, "40511": 483, "40514": 483, "40515": 483, "40521": 483, "40523": 483, "40527": 483, "40536": 483, "40541": 483, "40545": 483, "40549": 483, "40550": 483, "40552": 483, "40559": 483, "40561": 483, "40563": 483, "40564": 483, "40566": 483, "40571": 483, "40585": 483, "40592": 483, "40593": 483, "40596": 483, "40597": 483, "406": [110, 241], "40607": 483, "40611": 483, "40612": 483, "40614": 483, "40617": 483, "40620": 483, "40624": 483, "40626": 483, "40630": 482, "40631": 483, "40636": 483, "40637": 483, "40645": [472, 483], "40648": 483, "40650": 483, "40653": 483, "40662": 483, "40663": 483, "40665": 483, "40670": 483, "40671": 483, "40676": 483, "40677": 483, "40679": 483, "40680": 483, "40683": 483, "40684": 483, "40692": 483, "40695": 483, "40696": 483, "40698": [482, 483], "407": [110, 241], "40701": 483, "40703": 483, "40723": 483, "40724": 483, "40726": 483, "40737": 483, "4074": 469, "40741": 483, "40744": [472, 483], "40750": 483, "40754": 483, "40755": 483, "40756": 483, "40759": 483, "40767": 483, "40777": 483, "40780": 483, "40782": 483, "40791": 483, "40792": [472, 483], "40795": 483, "408": [110, 241], "40807": 483, "40810": [472, 483], "40816": 483, "40823": 483, "40824": [482, 483], "40826": 483, "40834": 483, "40838": 483, "40839": [472, 483], "40847": 483, "40849": [472, 483], "40854": 483, "40855": 483, "40859": 483, "4086": 341, "40870": 483, "40874": 483, "40876": 483, "40880": 483, "40882": 483, "40883": 483, "40884": 483, "40889": 483, "40890": [472, 483], "40897": 483, "409": [68, 110, 241, 484], "40903": 483, "40904": 483, "40910": 483, "40924": 483, "40927": 483, "40928": 483, "40939": 483, "40943": [472, 483], "40947": 483, "40948": 483, "40950": 483, "40955": 483, "40956": 483, "40957": 483, "40958": 483, "4096": [89, 107, 109, 115, 160, 173, 223, 225, 235, 337, 344, 365, 475], "40960": 109, "40964": 483, "40967": [482, 483], "40968": 483, "40979": 483, "4098": [344, 442, 446], "40985": 483, "40989": 483, "40998": 483, "40g": 221, "40x": 395, "41": [101, 261, 307, 318, 319, 343, 419, 451, 468, 482, 483], "410": [110, 241], "41001": [472, 483], "41002": 483, "41003": 483, "41004": 483, "41005": 483, "41006": [472, 483], "41009": 483, "41011": 483, "41025": 483, "41028": 483, "41031": 483, "41039": 483, "41043": 483, "41045": 483, "41048": 483, "41052": 483, "41056": 483, "41058": 483, "41061": 483, "41064": [472, 483], "41068": 483, "41069": 483, "41073": [472, 483], "41074": 483, "41076": 483, "41084": 483, "41085": 483, "41086": 483, "41094": 483, "411": [87, 110, 241, 267, 352, 382, 483], "41100": [482, 483], "41103": [472, 483], "41116": 483, "41123": [472, 473, 483], "41137": [473, 483], "41138": 483, "41139": [472, 483], "41142": 483, "41144": 483, "41149": 483, "41152": 483, "41161": 483, "41162": 483, "41175": 483, "41180": 483, "41182": 483, "41193": 483, "41194": 483, "41195": 483, "412": [68, 110, 226, 241, 484], "41207": 483, "41215": 483, "41218": 483, "4122": [68, 254, 256, 467], "41229": [472, 483], "41233": 483, "41235": 483, "41246": 483, "41247": 483, "41249": 483, "41252": 483, "41260": 483, "4127": [344, 442, 446], "41273": 483, "41282": 483, "41287": 483, "41288": 483, "41295": 483, "41299": 483, "413": [110, 241, 483], "41300": 483, "41304": 483, "41306": 483, "41314": 483, "41316": 483, "41317": 483, "41322": 483, "41323": 483, "41324": 483, "41332": [472, 483], "41333": 483, "41334": [472, 483], "41340": 483, "41341": 483, "41342": 483, "41344": 483, "4136": [469, 471], "41361": 483, "41364": 483, "41369": 483, "41370": 483, "41373": 483, "41374": 483, "41384": 483, "4139": 442, "414": [68, 110, 186, 241, 343, 382, 435, 465, 483, 484], "41402": 483, "41403": 483, "41412": 483, "4142": 344, "41421": 483, "414213": 221, "41421356": 186, "414213562373095048801688724": 186, "4142135623730951": 186, "4142135623730951j": 154, "41422": 483, "41425": 483, "41428": [472, 483], "41431": 483, "41435": 483, "41439": 483, "41440": [472, 483], "41440500499993504": 367, "41443": 483, "41462": 483, "41467": 483, "41468": 483, "41471": 483, "41473": 483, "41477": 483, "41486": [472, 483], "41490": 483, "41491": 483, "41492": 483, "41497": 483, "41498": 483, "41499": 176, "415": [110, 241], "41503": 483, "41513": 483, "41515": 483, "41517": 483, "41520": 483, "41521": 483, "41524": 483, "41525": 483, "41526": 483, "41528": 483, "41531": 483, "41533": 483, "41543": [472, 483], "41546": 483, "41557": 483, "41559": [472, 483], "41561": 483, "41576": 483, "41586": 483, "416": [110, 241, 382], "41602": 483, "41604": 483, "41609": 483, "41611": 483, "41617": 483, "41620": 483, "41621": 483, "41624": 483, "41625": [472, 483], "41627": 483, "41631": 483, "41638": 483, "41654": 483, "41659": 483, "41662": 483, "41670": 483, "41675": 483, "41681": 483, "41686": 483, "41687": 483, "41689": 483, "4169": 318, "41690": 483, "41692": [472, 483], "41696": 483, "417": [110, 241, 245], "41706": 483, "41710": [473, 483], "41713": [472, 483], "41718": 472, "41720": 483, "41726": 483, "41730": 483, "41731": 483, "41732": 483, "41735": 483, "41739": 483, "41744": 483, "41747": 483, "41748": 483, "41754": 483, "41756": [472, 483], "41773": 483, "41774": 483, "41775": 483, "41780": 483, "41784": [472, 483], "41789": 483, "41792": [472, 483], "41796": 483, "417a": 469, "418": [241, 441, 472, 476, 482, 483], "4180": [175, 483], "41805": 483, "41810": [472, 483], "41815": 483, "41816": [472, 483], "41817": 483, "41818": 483, "41825": 483, "41831": 483, "41832": [472, 483], "41833": 483, "41834": [472, 483], "41837": 483, "41840": 483, "41842": [472, 483], "41845": 483, "41848": 482, "41861": 483, "41870": [472, 483], "41873": [472, 483], "41876": 483, "41877": 483, "41887": 483, "41889": 483, "41891": 483, "41894": 483, "419": [382, 471], "41900": 483, "41902": 483, "41905": 483, "41906": 483, "41907": 483, "41909": 483, "41910": 483, "41916": 483, "41922": [472, 483], "41923": [472, 483], "41928": 483, "4193": 259, "41930": [473, 483], "41933": 483, "41936": [472, 483], "41939": 483, "41943": 483, "41944": 483, "4195": 471, "41960": 483, "41963": 483, "41966": 483, "41970": 483, "41972": [472, 483], "41974": [472, 483], "41976": 483, "41979": 483, "41984": 483, "41986": 483, "41993": 483, "41994": 483, "42": [78, 85, 94, 96, 101, 120, 122, 125, 129, 139, 160, 169, 170, 176, 186, 193, 225, 226, 255, 268, 283, 284, 292, 296, 297, 318, 343, 344, 345, 367, 381, 384, 386, 388, 389, 420, 427, 429, 440, 441, 446, 449, 466, 467, 468, 475, 476, 479, 481, 482, 483], "420": [68, 87, 250, 432, 483, 484], "42005": 483, "42008": 483, "4201": 471, "42010": 483, "42012": [473, 483], "42014": 483, "42015": 483, "42021": 483, "42030": 483, "42035": [473, 483], "42043": 483, "42047": 483, "42051": 483, "42059": 483, "42061": 483, "42064": 483, "42065": 483, "42066": 483, "42073": 483, "42083": 483, "42085": 483, "42087": 483, "42089": 483, "42090": 483, "42093": [472, 483], "42095": 483, "421": [68, 241, 352, 483, 484], "42103": 483, "42111": 483, "42116": 483, "42119": 483, "42120": 483, "42123": 483, "42125": 483, "42128": 483, "42129": 483, "42131": [472, 483], "42133": [472, 483], "42134": [472, 483], "42135": [472, 483], "42136": [472, 483], "42137": [472, 483], "42140": 483, "42143": 483, "42146": 483, "42150": 483, "42151": 483, "42153": 483, "42157": [472, 483], "42158": 483, "42163": 483, "4217": 223, "42171": 483, "42174": 483, "42183": 483, "42195": [472, 482, 483], "42197": 483, "42199": 483, "421e": 94, "422": 241, "42202": [472, 483], "42206": 483, "42212": 483, "42214": 483, "42217": 483, "42218": 483, "42222": 483, "42225": 483, "42232": 483, "42233": 483, "42235": 483, "42236": 483, "42237": 483, "42238": 483, "42246": 483, "42248": 483, "42249": 483, "42251": [472, 483], "42255": [473, 483], "42257": 483, "42260": [472, 483], "42262": [472, 483], "42264": [472, 483], "42266": 483, "42268": 483, "42269": [472, 483], "42278": 483, "42282": 483, "42296": 483, "42299": [472, 483], "423": 241, "42308": [472, 483], "42316": 483, "42318": 483, "42323": 483, "42328": 483, "42332": 483, "42333": [472, 483], "42340": 483, "42345": [472, 482, 483], "42349": 483, "42350": 483, "42351": 386, "42361": 483, "42369": 483, "42374": 483, "42375": 483, "42378": [269, 483], "42381": 483, "42382": 483, "42383": 483, "42384": 483, "42385": 483, "42388": 483, "42392": [472, 483], "42393": [472, 483], "42398": 483, "424": [241, 477], "42403": 483, "42406": 483, "42413": [472, 483], "42415": 483, "42423": [472, 483], "42426": 483, "42435": 483, "42470": 483, "42482": 483, "42487": 483, "425": [98, 241, 482, 483], "42500": 483, "425000000": [186, 476], "42504": 483, "42508": 483, "42517": 483, "42532": 483, "42536": 483, "4254": [478, 483], "42540": 483, "42540766411282592856903984951653826560": 99, "42540766411282592856903984951653826561": 99, "42553": 483, "42562": 483, "42572654": 446, "42576": 483, "4258": [469, 471, 481], "42584": 483, "42591": 483, "42598": 483, "42599": 472, "426": [98, 241], "42603": [472, 483], "42604": 483, "42609": 483, "42613": 483, "42615": 483, "42627": 483, "42630": 483, "42639": [472, 483], "42641": 483, "42644": 483, "42655": 483, "42658": 483, "42678": 483, "42681": 483, "42685": 483, "42686": 483, "42692": 483, "4272": 469, "42721": 483, "42725": [472, 483], "42726": 483, "42727": 483, "42737": [472, 483], "42739": 483, "42740": 483, "42745": 483, "42747": 483, "42756": 483, "42759": 483, "42772": 483, "42777": 483, "42780": 483, "42782": 483, "42794": 483, "42799": 483, "428": [241, 296, 477], "42800": 483, "42802": [472, 483], "42806": 483, "42808": 483, "42811": 483, "42814": 483, "42819": 483, "42823": 483, "42827": 483, "42834": 483, "42846": 483, "42848": 483, "4285": [469, 471], "42851": 483, "42854": 483, "42856": [472, 483], "42862": 483, "42864": [472, 483], "42866": 483, "42874": 483, "42877": 483, "42882": 483, "42885": 483, "42892": 483, "429": [241, 477], "42901": 483, "42904": 483, "4291": [259, 483], "42914": [472, 483], "42918": 483, "42919": 483, "42923": 483, "42924": 483, "42927": [472, 483], "4293": 469, "42931": 483, "42934": 483, "42938": 483, "42944": 483, "4294967295": [455, 479], "4294967296": [99, 259, 470], "42955": [472, 483], "42958": 483, "42960": 483, "42967": [472, 479, 480, 481, 482, 483], "42971": 483, "42972": 483, "42979": 483, "42986": 483, "42988": 483, "42990": [472, 483], "42994": 483, "42997": [472, 483], "42_572_654": 446, "42els": 483, "43": [104, 160, 173, 183, 223, 341, 344, 367, 441, 475, 481, 482, 483], "4300": [34, 344, 472, 473, 480, 481, 482], "43008": [472, 482, 483], "43012": 483, "43014": 483, "43017": [472, 483], "43024": 483, "4303": 483, "43030": 483, "43031": 483, "43066": 483, "43075": 483, "43077": 483, "43080": [472, 483], "43084": 483, "43086": 483, "431": 241, "43102": 483, "43103": [472, 483], "43105": 483, "43106": [472, 483], "43108": 483, "43109": 483, "43112": 483, "43118": 483, "43121": 483, "43124": 483, "43125": 483, "43137": 483, "4314": 186, "43146": 483, "43149": [472, 483], "43153": 483, "43155": 483, "43158": 483, "43162": 483, "43163": 483, "43172": 483, "43174": 483, "43176": 483, "43179": 483, "43181": 483, "43199": 483, "432": [34, 480, 483], "43216": [473, 483], "43218": 483, "4322": 110, "43224": [473, 483], "43232": 483, "43234": [473, 483], "43239": 483, "43244": [472, 483], "43245": 483, "43251": 483, "43253": 483, "43258": 483, "43260": 483, "43265": 483, "43270": 483, "43277": [472, 483], "43278": 483, "43283": 483, "43284": 483, "43285": 483, "43287": [472, 483], "43288": 483, "43295": 483, "43296": 483, "43298": 483, "433028": [479, 483], "433030": [473, 483], "4331": [343, 477], "43312": 483, "43316": 483, "43317": 483, "43318": 483, "43321": 483, "43323": 483, "43332": 483, "43352": 483, "43354": 483, "43356": [472, 483], "43362": 483, "43368": 483, "43369": 483, "43372": 483, "43390": 483, "43392": 483, "43399": 483, "433b": [398, 467], "434": [68, 247], "43406": 483, "43407": 483, "43410": 483, "43413": 483, "43414": 483, "43420": 483, "43422": 483, "43423": 483, "43424": 483, "43425": 483, "43428": 483, "43433": 483, "43434": 483, "43439": [472, 483], "43440": 483, "43445": 483, "43452": [472, 483], "43464": 483, "43466": [472, 483], "43472": 483, "43475": [472, 483], "43478": 483, "43492": 483, "43497": 483, "43498": 483, "435": [308, 477], "4350": 483, "43510": 483, "43517": 483, "43521": 483, "43522": 483, "43532": [472, 483], "43534": 483, "43538": 483, "43541": 483, "43542": 483, "43555": 483, "43558": 483, "4356": [472, 483], "43567": 483, "43568": 483, "43571": [472, 483], "43575": [472, 483], "43577": 483, "43592": 483, "436": [68, 319], "43607": 483, "43612": 483, "43613": 483, "43617": 483, "43625": 483, "43631": 483, "43643": 483, "4365": 469, "43650": 483, "43652": 483, "43655": 483, "43660": 483, "43666": 483, "43667": 483, "43669": [472, 483], "43672": [472, 483], "43680": 483, "43682": [472, 483], "43683": 483, "43688": [472, 483], "43689": 483, "43693": 483, "437": 158, "43706": 483, "43712": [472, 483], "43720": [472, 483], "43721": 483, "43723": 483, "43731": 483, "43733": 483, "43739": 483, "43744": 483, "43745": 483, "43751": 483, "43752": 483, "43753": [472, 483], "43754": 483, "43755": [482, 483], "43756": 483, "43757": 472, "43760": [472, 473, 483], "43762": [472, 483], "43764": 483, "43766": [472, 483], "43772": 483, "43774": 483, "43776": 483, "43778": 483, "43780": 483, "43783": 472, "43785": [472, 483], "43787": 483, "43788": [472, 483], "43789": [472, 483], "43791": [472, 483], "43794": [472, 483], "43795": [472, 483], "43797": [472, 483], "43798": 483, "43799": [472, 483], "4380": 259, "43811": [472, 483], "43817": [472, 483], "43820": 483, "43822": [472, 483], "43823": [472, 483], "43827": 483, "43833": [472, 483], "4384": 471, "43842": 483, "43843": 483, "43846": 483, "43851": 483, "43853": 483, "43857": 483, "43858": 483, "43859": 483, "43867": 483, "43868": [472, 483], "43869": 483, "43879": 483, "43880": [472, 483], "43882": [481, 483], "43892": 483, "43895": 483, "43901": [472, 483], "43905": 483, "43907": 483, "43908": [472, 473, 483], "43913": 483, "43914": [472, 483], "43916": [472, 483], "43918": 483, "43920": [472, 483], "43921": 483, "43923": 473, "43926": 483, "43930": 483, "43931": [473, 483], "43933": 483, "43937": 483, "43938": 483, "43945": 483, "4395": 483, "43950": [473, 483], "43952": 483, "43957": 483, "43959": 483, "43961": 483, "43962": 483, "43963": 483, "43972": 483, "43974": [473, 483], "43977": 483, "43979": 483, "4397e6": 94, "43981": 483, "43984": 483, "43987": 483, "43993": 483, "43998": [472, 483], "43b3c982cf697e0c5ab22172d1ca7421": 235, "43c": 369, "44": [117, 160, 186, 284, 318, 328, 387, 472, 476, 481, 482], "440": 384, "44002": 483, "44009": 483, "44010": [472, 483], "44011": 483, "44015": 483, "44018": 483, "44019": [473, 483], "44022": 483, "44024": 483, "44025": 483, "44026": 483, "44029": [473, 483], "44032": 483, "44035": 483, "44050": 483, "44059": 483, "44061": 483, "44072": 483, "44074": 483, "44077": [472, 483], "44081": 483, "44089": 483, "44092": [473, 483], "44094": 483, "44095": 483, "44098": 483, "441": [478, 483], "44100": [117, 295], "44110": 483, "44113": 483, "44114": 483, "44131": 483, "44133": 483, "44142": 483, "44143": 483, "44145": 483, "44150": 483, "44154": 483, "44156": 483, "44168": 483, "44173": 483, "44180": 483, "44184": 483, "44187": 483, "44195": 483, "442": [63, 68, 75, 227, 482, 483], "44201": 483, "44210": 483, "44219": 483, "44220": 483, "44232": 483, "44235": [473, 483], "44241": 483, "44242": 483, "44246": 483, "44254": 483, "44258": [473, 483], "44260": 483, "44263": [473, 483], "4428": 382, "44287": 483, "44289": 483, "44297": 483, "443": [87, 136, 242, 341, 477], "44304": 483, "44305": [472, 483], "44313": 483, "44317": 483, "44322": 483, "44335": 483, "44337": 483, "44338": 483, "44339": [473, 483], "44340": [473, 483], "44342": 483, "44347": 483, "44348": 483, "44349": 483, "44351": 483, "44353": 483, "44356": 483, "44357": [473, 483], "44359": 483, "44362": 483, "44363": 483, "44364": 483, "44368": 483, "44376": 483, "44378": 483, "44381": 483, "44389": 483, "44392": 483, "44394": 483, "44395": 483, "44396": 483, "44404": 483, "44409": 483, "44422": 483, "44434": 483, "44439": 483, "4444": 469, "44441": 483, "44444444": 344, "44446": 483, "4445": 186, "44451": 483, "44453": 483, "44456": 483, "44458": 483, "44461": 483, "44464": 483, "44466": [472, 483], "44468": 483, "44471": [473, 483], "44472": 483, "44482": 483, "44483": 483, "44486": 483, "44490": [472, 483], "44491": [473, 483], "44493": 483, "445": 68, "44511": 483, "44515": 483, "44516": 483, "44523": 483, "44524": 483, "44525": 483, "44530": 483, "44535": 483, "44539": 483, "44544": 483, "44547": [473, 483], "44549": 483, "44553": 483, "44554": 483, "44558": 483, "44561": 483, "44562": 483, "44566": 483, "44569": [473, 483], "44572": 483, "44581": 483, "44582": 483, "44584": [472, 483], "44587": 483, "44589": 483, "44590": [473, 483], "44592": 483, "44594": 483, "446": [68, 469], "44600": 483, "44605": 483, "44606": 483, "44608": 483, "44611": [473, 483], "44613": 483, "44631": 483, "44633": 483, "44635": 483, "44636": 483, "44638": 483, "44646": 483, "44647": 483, "44648": 483, "44649": 483, "44651": 483, "44653": 483, "44655": 483, "44661": 483, "44662": 483, "44666": 483, "44667": 483, "44674": [473, 483], "44676": 483, "44678": 483, "44682": 483, "44686": 483, "44687": 483, "44688": [473, 483], "44689": 483, "44690": 483, "44693": 483, "44698": 483, "44704": 483, "44708": 483, "44709d6fcb83d92a76dcb0b668c98e1b1d3dafe7": 235, "4471": 475, "44717": 483, "4472": 483, "44720": 483, "44725": 483, "4473": 477, "44732": 483, "44733": 483, "44734": 483, "44740": 483, "44747": 483, "44751": 483, "44752": 483, "44771": 483, "44784": 483, "44786": 483, "44791": 483, "44792": 483, "44793": 483, "448": [68, 430, 483], "44801": 483, "44806": 483, "44807": 483, "44817": 483, "44821": 483, "44822": 483, "44826": 483, "44828": 483, "44838": 483, "44839": 483, "44844": 483, "44848": 483, "44849": 483, "44852": 483, "44856": 483, "44859": 483, "44860": 483, "44863": 483, "44865": 483, "44872": 483, "44874": 483, "44878": 483, "44885": 483, "44886": 483, "44889": 483, "4489": 476, "44890": 483, "44891": 483, "44893": 483, "44895": 483, "44900": 483, "44903": 483, "44904": 483, "44911": 483, "44914": 483, "44929": 483, "44934": [473, 483], "44935": 483, "44945": 483, "44947": 483, "44949": 483, "44953": 483, "44954": 483, "44955": 483, "44957": 483, "44959": 483, "44962": 483, "44963": 483, "44967": 483, "44977": [473, 483], "44978": 483, "44987": [473, 483], "45": [86, 95, 146, 160, 167, 186, 225, 267, 283, 318, 337, 343, 384, 386, 465, 466, 467, 472, 481, 482, 483], "450": 477, "45000": [472, 483], "45001": 483, "45007": 483, "45010": 483, "45011": 483, "45012": 483, "45018": 483, "45019": 483, "45020": 483, "45021": 483, "45022": 483, "45024": 483, "45026": 483, "45030": 483, "45034": 483, "4503599627370497": 221, "45042": 483, "45046": [473, 483], "45052": 483, "45056": 483, "45061": 483, "45067": 483, "45075": 483, "45081": 483, "45083": 483, "45085": [473, 483], "45094": 483, "45099": 483, "451": [45, 68, 160, 241, 250, 302, 324, 352, 432, 472, 474, 478, 483], "45100": 483, "45107": 483, "45116": 483, "45121": 483, "45123": 483, "45124": [473, 483], "45125": 483, "45128": 483, "45129": [473, 483], "4513": 102, "45132": [473, 483], "45138": 483, "45150": 483, "45155": 483, "45156": 483, "45160": 483, "45162": 483, "45163": 483, "45166": 483, "45167": 483, "45168": 483, "45171": 483, "45173": [473, 483], "4518": 102, "45183": 483, "45185": 483, "45188": 483, "45190": [473, 483], "45192": 483, "45193": 483, "45195": 483, "45209": 483, "45216": 483, "45220": 483, "45221": 483, "45225": 483, "45228": 483, "45234": 483, "45235": 483, "45238": 483, "45239": 483, "45243": [473, 483], "45249": 483, "45250": 483, "45256": [473, 483], "45262": 483, "45269": 483, "45274": 483, "45280": 483, "45292": [473, 483], "45296": 483, "453": [68, 210], "45313": 467, "45315": 467, "45317": 483, "45320": [473, 483], "45321": 483, "45324": 483, "45328": 483, "45329": 483, "45337": 483, "45340": [473, 483], "45343": 483, "45355": 467, "45356m": 467, "45359": 483, "45367": 483, "45371": 483, "45375": 483, "45379": 483, "45383": 483, "45385": 483, "45386": 483, "45390": 483, "45392": 483, "45393": 483, "45395": 483, "454": 477, "45400": 483, "45402": 483, "45403": 483, "45405": 483, "45406": 483, "45408": 483, "45410": 483, "45411": 483, "45412": [473, 483], "45413": [473, 483], "45416": 483, "45417": 483, "45428": 483, "45429": [473, 483], "45433": [473, 483], "45434": [473, 483], "45438": 483, "45440": [473, 483], "45445": 483, "45447": [472, 473, 482, 483], "45449": 483, "45450": 483, "45459": [473, 483], "45461": 483, "45464": 483, "45467": 483, "45474": [473, 483], "45475": 483, "45489": 483, "4549": 464, "45494": 483, "45495": 483, "45507": 483, "4551": 475, "45514": 483, "45515": 483, "45516": 483, "45521": 483, "45522": [473, 483], "45526": 483, "45530": 483, "45532": 483, "45535": 483, "45536": 483, "45548": [473, 483], "45557": 483, "45561": 483, "45566": 483, "45569": [473, 483], "45570": [473, 483], "45571": [473, 483], "45573": 483, "45574": 483, "45577": 483, "45578": 483, "45581": 483, "45582": 483, "45595": 483, "456": [30, 68, 73, 102, 186], "45604": 483, "45606": 483, "45607": [473, 483], "45609": 483, "45613": [473, 483], "45614": 483, "45615": 483, "45616": 483, "45618": 483, "45635": 483, "45636": 483, "45639": 483, "45640": 483, "45643": 483, "45644": 483, "45654": 483, "45655": 483, "45662": 483, "45663": 483, "45664": 483, "45666": 483, "45668": 483, "45678": 483, "45679": [341, 483], "45680": 483, "45688": 483, "45695": 483, "45696": 483, "45701": 483, "45703": 483, "45709": 483, "45711": [473, 483], "45716": 483, "45720": 483, "45723": 483, "45726": 483, "45727": 483, "45731": 483, "45732": 483, "45738": 483, "45743": 483, "45745": 483, "45747": [473, 483], "45753": 483, "45754": 483, "45755": 483, "45757": 483, "45763": [473, 483], "45764": 483, "45765": 483, "45766": 483, "45767": 483, "45772": 483, "45773": 483, "45774": 483, "45783": 483, "45786": 483, "45788": 483, "45790": 483, "45798": 483, "458": 467, "45800": 483, "45803": 483, "45811": 483, "45813": 483, "45816": 483, "45820": 483, "45822": 483, "4582495471": 343, "45826": 483, "45828": [473, 483], "45829": 483, "45831": 483, "45835": 483, "45837": [473, 483], "4584": 319, "45840": 483, "45847": [473, 483], "45848": 483, "45850": 483, "45855": 483, "45863": 483, "45866": 483, "45873": 483, "45874": 483, "45876": 483, "45881": 483, "45885": 483, "45886": 483, "45898": 483, "45901": 483, "4591308524824727": 343, "45915": 483, "45917": [473, 483], "45923": 483, "45924": 483, "45925": 483, "45947": [473, 483], "45948": 483, "45949": 483, "45950": 483, "45953": 483, "45995": 483, "45997": 483, "46": [101, 160, 318, 344, 452, 472, 481, 482, 483], "46000": 483, "46004": 483, "46006": 483, "46007": [473, 483], "46009": 483, "46014": [473, 483], "46016": 483, "46018": 483, "46023": 483, "46025": 483, "46028": 483, "4603": [481, 482], "46030": 483, "46031": 483, "46032": 483, "46033": 483, "46039": 483, "46042": 483, "46045": 483, "46048": 483, "46049": 483, "46053": 483, "46054": 483, "46055": 483, "4606": 469, "46066": 483, "46070": 483, "46072": 483, "46075": 483, "46080": 483, "46085": 483, "46088": 483, "46091": 483, "461": [68, 344], "46103": 483, "46105": 483, "46106": 483, "46107": 483, "46109": 483, "46110": 483, "46114": 483, "46118": 483, "46120": 483, "46124": 483, "46125": 483, "46126": 483, "46129": 483, "46140": 483, "46142": [473, 483], "46150": 483, "4616": 483, "46161": 483, "4617": 475, "46170": 483, "46176": 483, "46195": 483, "46196": 483, "46197": 483, "46202": 483, "46205": 483, "46208": 483, "46217": 483, "46221": 483, "46222": 483, "46232": 483, "46235": 483, "46236": 483, "46237": 483, "46238": 483, "46239": 483, "46240": 483, "46242": 483, "46244": 483, "46245": [473, 483], "46246": 483, "46252": 483, "46257": 483, "46258": 483, "46262": 483, "46263": 483, "46266": 483, "46269": 483, "4627": [262, 483], "46278": 483, "46285": 483, "46289": 483, "46296": 483, "46297": 483, "4630": 483, "46306": 483, "46307": 483, "46314": 483, "46315": 483, "46316": 483, "46323": 483, "46328": [473, 483], "46329": 483, "46331": 483, "46333": 483, "46339": 483, "46342": 483, "46343": [473, 483], "46347": 483, "46361": 483, "46362": 483, "46364": 483, "46376": 483, "46382": 483, "46383": 483, "46400": 483, "46406": 483, "46407": 483, "46409": 483, "46412": 483, "46414": 483, "46415": 483, "46417": 483, "4642": 288, "46421": 483, "46422": 483, "46429": 483, "46430": 483, "46431": 483, "46433": 483, "46434": 483, "46436": 483, "46443": 483, "464471": 483, "46458": 483, "46463": 483, "46469": 483, "46470": 483, "46471": 483, "46474": 483, "46475": 483, "46476": 483, "4648": [143, 327, 483], "46480": 483, "46481": 483, "46483": [473, 483], "46487": 483, "46491": 483, "465": [68, 335, 483], "46503": 483, "46509": 483, "46510": 483, "46513": 483, "46521": 483, "46522": 483, "46527": 483, "46528": 483, "46534": [473, 483], "46539": 483, "46542": 483, "46544": 483, "46547": 483, "465484": 476, "46553": 483, "46556": 483, "46557": 483, "46564": 483, "46565": 483, "46566": 483, "46567": 483, "46571": 483, "46576": 483, "4658": 347, "46581": 483, "46587": 483, "46591": 483, "466": 68, "4660": 109, "46600": 483, "46602": 483, "46607": [473, 483], "46608": [473, 483], "4661": 475, "46613": [473, 483], "46615": 483, "46616": 483, "46623": 483, "46624": 483, "46626": 483, "46630": 483, "46638": 483, "46640": [473, 483], "46642": 483, "46643": 483, "46644": 483, "46655": 483, "46656": [473, 483], "46659": [473, 483], "46672": 483, "46675": 483, "46676": 483, "46678": 483, "46681": 483, "46696": 483, "46702": 483, "46707": 483, "46708": 483, "46712": 483, "46720": 483, "46721": 483, "46724": 483, "46725": 473, "46729": 483, "46730": 483, "46732": 483, "46736": 483, "46737": 483, "46744": 483, "46748": 483, "46752": 483, "46755": 483, "46756": 483, "46760": 483, "46762": 483, "46764": 483, "46775": 483, "46784": 483, "46785": 483, "46786": 483, "46787": 483, "467924": 468, "46794": 483, "46797": 483, "468": [68, 160, 483], "46805": [473, 483], "46808": 483, "46811": 483, "46820": 483, "46823": 483, "46827": 483, "46829": 483, "46836": 483, "46838": 483, "46841": [473, 483], "46845": [473, 483], "46848": 483, "46850": 483, "46852": [473, 483], "46860": 483, "46864": [473, 483], "46877": 483, "4688": [469, 471], "46881": 483, "46890": 483, "46891": 483, "46903": 483, "46906": [473, 483], "46907": 483, "46913": 483, "46917": [473, 483], "46921": 483, "46927": 483, "46932": 483, "46933": 483, "46940": 483, "46942": 483, "46944": 483, "46948": 483, "46951": 483, "46955": 483, "46961": 483, "46962": 483, "46968": 483, "46973": 483, "46981": 483, "46985": 483, "46987": 483, "46993": 483, "46994": 483, "46995": 483, "46996": [473, 483], "46998": 483, "47": [102, 183, 209, 261, 318, 319, 424, 442, 451, 468, 472, 483], "47000": 483, "47004": 483, "47005": 483, "47009": 483, "47012": 483, "47015": 483, "47016": 483, "47022": [473, 483], "47024": 483, "47025": 483, "47029": 483, "47032": 483, "47037": 483, "47039": 483, "47040": 483, "47045": 483, "47053": 483, "47057": 483, "47061": [473, 483], "47062": 483, "47063": 483, "47066": [473, 483], "47067": 483, "4707": 471, "47070": 483, "47074": 473, "47086": 483, "47087": [473, 483], "47088": [473, 483], "47091": 483, "47095": [473, 483], "47098": [473, 483], "47099": 483, "471": [68, 160, 483], "4710": 469, "47101": 483, "47103": 483, "47104": 483, "47109": 483, "47115": 483, "47117": 483, "47120": 483, "47126": 483, "47127": 483, "47129": 483, "47135": 483, "47146": [474, 483], "4715": 469, "47151": 483, "47152": [473, 483], "47161": 483, "47162": 483, "47167": 483, "47169": 483, "47171": 483, "47176": 483, "47177": 483, "47182": 483, "47186": 483, "47189": 483, "47194": 483, "47197": 483, "47205": 483, "47208": 483, "47211": 483, "47212": 483, "47220": 483, "47227": 483, "47231": 483, "47239": 483, "47256": 483, "47260": 483, "4727": 483, "4739": [469, 471], "4746e7": 94, "475": [68, 213, 225, 293, 328, 329, 333, 337, 366, 483], "4753": 471, "4756": 469, "4759": 469, "476": [68, 382, 483], "4761": 476, "4764": 469, "477": [68, 474, 483], "477863": 475, "478": 478, "479": [68, 113, 213, 479, 480, 483], "479001600": 226, "479425538604": 186, "4794255386042030002732879352": 186, "4796": 469, "48": [93, 96, 235, 259, 343, 344, 382, 398, 472, 483], "480": 384, "4801": 341, "4805": 475, "4806": 483, "481": 466, "4816": 469, "48241": 483, "483": [87, 478], "4832": 483, "4833": 483, "48330": [474, 483], "484": [68, 87, 122, 343, 344, 386, 427, 428, 436, 441, 472, 473, 474, 479, 480, 481, 483], "48484": 167, "485": [68, 154, 275, 483], "4855": 382, "486": [68, 214, 476, 483], "4865": 469, "486539264": 176, "4868": 471, "487": [68, 483], "4870": 475, "4879": 469, "488": [68, 250, 311, 362, 455, 483], "4885": 477, "489": [33, 45, 68, 71, 73, 250, 482, 483], "4892": 476, "49": [102, 245, 261, 267, 283, 382, 442, 446, 449, 472, 481, 482, 483], "490": 98, "49083": 473, "491": 382, "4910": 471, "49152": 106, "4918": 241, "492": [68, 87, 161, 255, 427, 428, 430, 479, 483], "4928": 483, "493": [68, 98], "4931": 483, "494": [102, 479], "495": [68, 425, 483], "4954": [335, 483], "4960hq": [481, 482], "4963": 483, "4966": 476, "4969": 469, "497": 261, "4972": [475, 478], "498": [68, 87, 435, 477, 483], "498245": 475, "499": [221, 223, 241, 288], "4991": 469, "49a6": 337, "49g": 469, "4_500": 343, "4a0": 80, "4c": 369, "4c524c52": 344, "4d": 446, "4dom": 462, "4f": 318, "4gib": 483, "4h": [177, 347], "4j": [299, 427, 435, 442, 468], "4l": 462, "4rc1": 483, "4s": 102, "4th": 340, "4x": [261, 292, 474, 476, 477, 479, 483], "4y": 483, "50": [79, 84, 85, 95, 101, 102, 139, 155, 160, 183, 186, 247, 267, 279, 308, 318, 319, 337, 343, 352, 366, 367, 376, 384, 388, 390, 412, 413, 426, 449, 450, 451, 468, 469, 473, 475, 478, 479, 480, 481, 482, 483], "500": [85, 102, 110, 155, 183, 186, 214, 223, 241, 288, 343, 344, 398, 407, 450, 452, 465, 467, 472, 483], "5000": [173, 186], "50000": [283, 367], "500000": 478, "5000000": 367, "50003": 468, "50007": 337, "5001": 483, "50022": 167, "5005": 343, "50096": 474, "500_000": [235, 344], "500mb": 186, "501": [102, 110, 241, 245, 293, 475], "5010": 483, "502": [110, 241, 466], "50220": 483, "50221": 483, "50222": 483, "50225": 483, "50227": 483, "50229": 483, "503": [110, 241], "5032": 469, "50380847": 341, "50380848": 341, "504": [110, 241, 344], "505": [102, 110, 241], "5054": 483, "5058": 186, "506": [241, 326, 479, 483], "50644": 483, "507": 241, "508": 241, "5080": 469, "5084": [469, 471], "509": [341, 468, 477, 483], "5094": 475, "50th": 343, "51": [89, 102, 104, 318, 384, 442, 468, 472], "510": 241, "51090942171709440000": 468, "511": [241, 422, 479], "5111111": 186, "51111111": 186, "512": [42, 131, 173, 235, 293, 328, 358, 424, 446, 467, 474, 475, 479, 481, 483], "5124": 483, "5127": 475, "512mib": 483, "513595166163142": 149, "514": [160, 269, 461, 465, 473, 483], "5142": 469, "515": [68, 221, 345, 473, 483], "5150": [471, 475], "51524": 483, "5155": 283, "515625": 283, "51574": 483, "5161": [248, 478, 483], "5175": 471, "5176": 469, "5178": 475, "518s": 474, "519": [68, 87, 382, 483], "52": [102, 104, 106, 139, 183, 275, 318, 319, 341, 345, 382, 442, 444, 466, 469, 483], "520": 68, "5202": 477, "521": 382, "5211": 469, "5228": 471, "523": [26, 33, 68, 465, 473, 474, 482, 483], "5237": [469, 471], "524": [293, 479, 483], "52425": [409, 483], "524288112": 186, "524313": [386, 479], "5246": 341, "525": [68, 87, 161, 255, 352, 430, 483], "52560": 85, "526": [68, 87, 102, 122, 181, 386, 427, 436, 472, 480, 481, 483], "5260": 469, "527": 464, "52719": 464, "528": [33, 34, 68, 461, 483], "5280": [341, 478, 483], "5288": [480, 483], "529": [33, 64, 68, 293, 352, 455, 461, 481, 483], "52g": 469, "53": [33, 78, 102, 104, 139, 183, 186, 275, 318, 344, 366, 390, 444, 467, 483], "530": [68, 430, 483], "5300": 483, "5303": 382, "5309": [478, 483], "53094": [469, 471, 475], "5313": 283, "5319": [479, 483], "5321": [203, 476], "5322": [194, 196, 199, 201, 203, 205, 207, 208, 335], "5331": 283, "535": 89, "536": 462, "5367": 468, "536th": 343, "537": 483, "5372": [398, 467], "538": [34, 68, 266, 455, 456, 483], "5381": 469, "539": [33, 68, 483], "539294296": 78, "54": [104, 139, 318, 332, 343, 423, 465, 472, 473], "540": [34, 68, 266, 293, 483], "541": 319, "5411": [478, 483], "5417": 475, "5424": [102, 269], "5432": 344, "54321": [102, 442], "54341": 386, "544": [386, 481, 483], "545": 68, "546": [160, 382], "5464": 469, "5468": 475, "54738": 483, "54781": 483, "5479": 469, "548": 319, "5490196078431373": 384, "54962537085770791": 451, "55": [33, 93, 95, 101, 102, 104, 139, 186, 226, 284, 318, 319, 343, 384, 441, 442, 444, 449, 450, 455, 479], "550": 395, "5506": 475, "551": [96, 469], "5511": 469, "5511151231257827e": 186, "5512": 469, "552": [34, 68, 250, 311, 473, 483], "553": [68, 483], "554": [33, 160, 483], "555": 78, "55554444": 344, "55555": 478, "5555555555555p": 468, "5556": 102, "5559e7": 94, "557": [181, 382, 480, 483], "5585": 469, "559": 261, "56": [101, 104, 183, 186, 225, 258, 283, 337, 343, 442, 444, 475, 478, 483], "560": [68, 385, 428, 483], "5600": 186, "5601": 158, "561702493119680037517373933e": 186, "562": [68, 428, 483], "5625": [343, 449], "563": [68, 113, 288, 386, 427, 436, 483], "5630": [469, 471], "5633": 483, "5639": 475, "564": [68, 483], "565": [68, 213], "566": [251, 483], "5663": 469, "567": [126, 129, 170, 186, 345, 452, 471, 480, 483], "5670": 469, "567004bf96e4a25773ebf4": 235, "5675": [471, 475], "5677": 469, "5678": [259, 398], "567812345678": 398, "5679": 469, "568": 186, "5680": [480, 481, 483], "5689": 476, "569": 96, "57": [109, 465, 481, 482, 483], "570": [427, 481, 483], "5700": 483, "57002": 483, "57011": 483, "5707963267948966": 384, "571": 382, "571186405732": 344, "571208": 341, "572": [78, 427, 430, 474, 481, 483], "5728": 469, "57281": 474, "573": [482, 483], "57344": 109, "5735": 259, "574": [299, 382, 481, 483], "5753": [469, 475], "57535828626024577": 451, "57539": 483, "5755": 483, "5758": 472, "57684": [473, 483], "577479": 475, "578": [59, 68, 142, 352, 467, 468, 483], "5788": 469, "5789": 241, "578966293710682886880994035146873798396722250538762761564": 344, "5793": 469, "5794": 343, "57s": 476, "58": [104, 158, 318, 343, 345, 483], "5800": [478, 483], "5812": 469, "5827": 469, "5829014980008651": 367, "584": [160, 293, 385, 402, 482, 483], "5842": 241, "5845": 477, "58451": 474, "5846": [473, 483], "585": [62, 87, 161, 344, 385, 386, 473, 482, 483], "586": [386, 472, 481, 482, 483], "5863": 476, "5867": 475, "587": [34, 68, 102, 341, 483], "5870": 476, "589": [382, 386, 481, 483], "5891": 158, "58933": 483, "5894": 483, "5895": 158, "59": [20, 89, 102, 183, 261, 319, 366, 382, 453, 475, 483], "590": [10, 68, 472, 473, 482, 483], "5906": 343, "591": [386, 481, 483], "5912": 343, "59121": 483, "5913": 469, "5914": 471, "5920": 469, "5929": 341, "593": [386, 482, 483], "594": [117, 141, 151, 152, 153, 173, 249, 272, 281, 287, 288, 295, 301, 336, 339, 349, 359, 397, 408, 473, 474, 483], "5950": 483, "596": [454, 482], "597": [258, 472, 483], "5975": 475, "598": 308, "5982": 469, "5983": [33, 468, 469], "599": [110, 223, 241, 288], "59900": 413, "59956": 483, "59pm": 183, "5_906": 343, "5a1": 483, "5a2": 483, "5aef": 337, "5c": 319, "5d": 102, "5e": [186, 347], "5i": 369, "5j": [225, 345, 449], "5mb": 483, "5r92": 464, "5s": 102, "5t": 464, "5th": 340, "5x": [464, 474, 479, 480, 483], "60": [126, 136, 147, 155, 166, 183, 186, 196, 261, 307, 318, 341, 343, 366, 381, 382, 384, 398, 435, 465, 467, 473, 475, 479, 481, 483], "600": [102, 183, 479, 483], "6000": [109, 235, 283], "600000": 471, "6001": 469, "6003": 469, "600362": 468, "6004799503160661l": 468, "602": [80, 482], "60203": 474, "60254": 384, "60346": 483, "604": [68, 88, 344, 483], "60436": 483, "60580": 483, "6064": 476, "6066": 341, "6071428571428572": 451, "6075": 475, "6081": 475, "609": 332, "6094": 469, "60_190": 343, "61": [166, 344, 366, 466, 483], "610": [226, 441, 449, 450], "6101": 469, "61162": 483, "612": [68, 101, 386, 468, 483], "61261m": 468, "613": [68, 102, 386, 483], "6135": [479, 483], "6137": 471, "614": [427, 482, 483], "61441": [479, 480], "615": [226, 425, 482, 483], "6152": [469, 478], "616": [469, 482, 483], "616263": 344, "61648": 483, "6167": 483, "617": [112, 431, 472, 473, 482, 483], "618": [101, 261, 472, 483], "619": 382, "6192": 469, "62": [104, 186, 238, 240, 382], "620": [101, 466], "6213": 95, "6220": 382, "623": [64, 318, 472, 474, 483], "624": [472, 473, 483], "62432": 483, "625": [343, 444, 481], "62519": 483, "626": [13, 68, 191, 428, 474, 483], "6267": 469, "628": [479, 483], "63": [78, 318, 340, 352, 483], "630": 483, "63072000": 341, "631": 160, "63103m": 33, "632": [472, 474, 483], "63301": 483, "6335014": 465, "634": [63, 68, 112, 427, 428, 483], "635": 472, "636": [427, 441, 472], "63760": 483, "6378": 340, "6378140": 94, "6397": 476, "64": [7, 42, 64, 68, 85, 93, 94, 99, 107, 136, 143, 146, 176, 177, 183, 186, 225, 235, 259, 261, 270, 283, 284, 293, 303, 304, 306, 332, 337, 341, 344, 347, 352, 384, 404, 419, 428, 442, 446, 449, 456, 461, 462, 464, 466, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "640": [34, 344, 384], "640625": 283, "64206": 225, "6422": [479, 483], "6431": 95, "64373": 483, "644": [341, 472, 474, 483], "64490": 483, "6450": 343, "64512": 344, "6459": 343, "646": [68, 158, 386, 483], "64662": 483, "647": [68, 386, 483], "6472": [469, 475], "64739884393063583815028902": 466, "647488369766392": 481, "6478": 483, "64783": 483, "648": 479, "649": [113, 429], "6491": 469, "64bit": [355, 474, 483], "65": [104, 288, 318, 332, 343, 344, 449, 462, 468, 469, 478, 483], "65000": 483, "65001": [476, 483], "650320426": 481, "650320427": 481, "65052": 483, "6507": 483, "6508": 469, "652": [68, 483], "6531": [205, 208, 335, 478, 483], "6532": [194, 205, 207, 208, 478, 480, 483], "65320": 456, "654": [68, 483], "6543": 247, "65490": 106, "655": [68, 386, 483], "65533": 176, "65535": [64, 422, 464], "65535l": 469, "65536": [64, 449, 483], "65565": 337, "6560": 476, "6564": 468, "657": [68, 102, 483], "65701": 483, "65772": 483, "65802": 483, "6582483453": 343, "6584": [481, 483], "6585": 241, "659": [68, 483], "6595": 469, "65961": [474, 483], "6598": 483, "66": [291, 389, 442, 463, 468], "6614918939584953775": 96, "662": 319, "6623": [478, 483], "66285": 483, "663": 102, "6639": 483, "664": 382, "6641": 475, "665": 102, "66543": 483, "666": 464, "6666": 478, "66666666666666663": 468, "666666666666667": 449, "6676": 483, "668": [102, 332], "669": [68, 102, 160, 483], "6690": 475, "6693": [469, 475], "67": [33, 104, 221, 225, 337, 343, 382, 384, 446, 468, 483], "670": [102, 473], "6700": 483, "67044": 483, "67048": [473, 474], "67056": 483, "6706": 475, "670664": 476, "671": 102, "6713": [469, 475], "6715": 476, "67179024": 444, "672": [102, 221], "6721": 483, "672102882379219": 481, "67248": 483, "673": [68, 102, 386, 483], "67300e": 94, "6739": 483, "674": 261, "675": [68, 225, 386, 483], "6755": 476, "676": 483, "6766": [479, 483], "67693": 483, "67790": 483, "678": [68, 474, 483], "6796": 343, "68": [96, 109, 186, 225, 318, 366, 413, 481], "680": [473, 483], "68000": 344, "6806": 343, "681": [68, 386, 483], "6816": 469, "68163": 483, "68166": 483, "682": [345, 473], "68264": 473, "682689492137086": 475, "683": [464, 474, 483], "684": [68, 483], "68400": 183, "6845": 469, "6851": 483, "6855": [248, 478, 483], "6856": [305, 469, 475, 478, 483], "6857": 469, "686": [258, 293], "68656c6c6f": 477, "6866": 469, "68686": 483, "686e": 94, "687": [343, 483], "688": [68, 161, 428, 483], "688e": 94, "689": 483, "689215": 451, "6896": 469, "68966": [473, 483], "68968": 483, "68k": 295, "68s": 476, "69": [102, 366, 413, 472], "69093": 483, "69142": 483, "6916": 483, "692": [68, 386, 483], "693": 474, "6939": 469, "694": 475, "695": [68, 101, 386, 429, 436, 483], "6953": 483, "6963": 469, "697": [101, 474, 483], "6973": 483, "698": [68, 386, 483], "699": [474, 483], "6_450": 343, "6_796": 343, "6a1": 468, "6d": [98, 102], "6dm": 98, "6e": [109, 221], "6f": 109, "6fa1d8fcfd719046d762": 235, "6fa459ea": [398, 467], "6ff843ba685842aa82031d3f53c48b66326df7639a63d128974c5c14f31a0f33343a8c65551134ed1ae0f2b0dd2bb495dc81039e3eeb0aa1bb0388bbeac29183": 235, "6final": 462, "6jack": 223, "6rc1": 483, "6s": [98, 102, 190], "6shhbbb": 475, "6th": [446, 483], "6to4": 259, "6x": [474, 483], "6yd86yt": 464, "70": [147, 183, 186, 318, 343, 364, 382, 441, 451, 452, 483], "700": 452, "7005": 469, "701": [68, 483], "7023": 465, "7031": 469, "7033": [469, 475], "70363": 473, "706": [358, 472, 473, 474, 481, 482, 483], "7062": 483, "7063": 483, "7065186196740147912": 96, "70710678118654757": 451, "7074029114692207l": 468, "70766": 473, "709": [68, 469, 483], "7094": 475, "70th": 183, "70x": [480, 483], "71": [104, 382, 474, 483], "711": 349, "711019": 468, "7113": 475, "7117": 469, "7133": 469, "71332": 382, "71383": 483, "714": 160, "7140": 469, "7144": 344, "7150": 469, "7159": [262, 478, 483], "716": 382, "717": 319, "7171": 477, "717ak": 319, "71828": 467, "718281": 275, "7182818": 468, "718281828459045": 471, "7182818284590451": 471, "718281828459045235360287471": [186, 468], "7182818285": 186, "718ak": 319, "71i": 464, "72": [186, 247, 261, 343, 384, 466, 467, 483], "720": [193, 475, 481], "72000": 476, "7205759403792794": 444, "7228": 469, "72284": 483, "7230": [242, 395], "7231": 241, "7232": [241, 469], "7233": 241, "72346": [474, 483], "7235": 241, "7238": 241, "7242": 469, "7246671520006203": 367, "72719": 483, "7279": 469, "727ak": 319, "728": [261, 304], "729": 446, "73": [318, 382, 452, 466, 481, 482], "7301": [341, 469, 475, 478], "730920": 183, "730920th": 183, "7311": 476, "7312": 469, "7316": 475, "7319": 469, "7330": 477, "7333": 469, "7347": 469, "7348": 469, "7356": 467, "73561": 483, "7357": 469, "73588": 483, "736": 120, "7362": 469, "74": [109, 343, 452, 481, 482], "74044": 483, "741": [89, 483], "74116": 483, "74166": 483, "7418": [469, 475], "7423": 382, "742598": 468, "744": 469, "74468": 483, "7451": 475, "74573": 483, "7461": 475, "7462": [469, 475], "74668": 483, "74690": [474, 483], "74696": [474, 483], "7471": [469, 475], "7475": 477, "748": 96, "74895": 483, "7490": 469, "74940": 483, "75": [87, 92, 102, 190, 193, 283, 343, 384, 449, 451, 465, 466, 468, 469, 474, 479, 480, 481, 482, 483], "750": 343, "750000e": 468, "751": 296, "75128": 483, "7525": [341, 483], "7528": 469, "75367": 483, "7538": 483, "754": [25, 154, 186, 262, 275, 347, 362, 430, 444, 456, 466, 468, 471, 473, 475, 479, 480, 483], "7540": 241, "755": [84, 102], "755670": 476, "75586": 483, "7559": 483, "75666": 483, "75705": 483, "75729": 483, "7585": 469, "759": 308, "75988": 483, "76": [143, 343, 382, 384, 419], "7604": 469, "7609": 469, "761": 382, "7610": [469, 475], "762": 160, "7622": [469, 475], "7625": 319, "7633": 469, "76511": 483, "7652": 476, "767": [102, 406], "7678": 446, "768": [115, 365], "76846": 483, "769": 95, "7693": 235, "77": [104, 147, 186, 382, 384, 475], "7703": 469, "77102": 483, "7725": 241, "773": 101, "77377": 483, "77532": 483, "77617": [474, 483], "7766": 469, "7767": [469, 475], "7769": [480, 483], "777": [462, 478], "77749": 483, "77757": [474, 483], "7776": 483, "77772": 483, "7777777": 78, "77782": [474, 483], "778": 343, "779": [261, 382], "77e10": 435, "78": [202, 208, 284, 476, 483], "78079": 483, "7830": [478, 483], "784": 382, "7853": 469, "78530": [474, 483], "78607": 483, "78707": 483, "78724": 483, "7876932": 293, "78851": [479, 480], "78878": 483, "789": [73, 186, 468], "79": [109, 382, 441], "7902": 469, "79033": 483, "79043": 183, "79060": 183, "79096": 483, "7914": 235, "79218": 483, "79228162514264337593543950336": 435, "79325": 483, "79382": 483, "79429": 483, "7948648": 193, "79512": 483, "7953": 95, "7956": 466, "79579": 483, "7958": 318, "7962": 475, "798": 296, "7988": 469, "7990": 483, "7994": [469, 477], "79940": [474, 483], "7_500": 318, "7a1": 483, "7b1": 483, "7bc817d5ba917528e8bd07ec461c635291e7b06a": 483, "7bit": [195, 197, 198, 201, 203, 208, 271, 475, 476, 483], "7e": 221, "7eguido": 394, "7f3529fcf759": 51, "7j": 442, "7s": 319, "7x": 483, "80": [85, 107, 136, 147, 155, 158, 167, 208, 242, 243, 247, 261, 307, 308, 332, 337, 338, 343, 384, 388, 394, 395, 452, 466, 473, 475, 478, 479, 483], "800": [141, 235, 270, 467, 469, 472, 475, 479, 483], "8000": [245, 295, 333, 407, 419, 420, 467, 481, 483], "800080": 384, "80010": [473, 483], "801": 475, "8013": 475, "8016": 469, "802": 337, "8024": 469, "802652743337129": 94, "8032": 469, "8035946855390597": 343, "80361": 483, "8038": 469, "804": 382, "8046": 475, "80527": 483, "8059983": 176, "8074": 469, "8080": [110, 242, 243, 337, 395, 419], "8081": 170, "8083": 465, "8092": 395, "80s": 98, "81": [87, 104, 225, 261, 283, 318, 343, 378, 442, 446, 449, 451, 481], "810": 343, "81002": 483, "8104": 469, "81057": 483, "8106": 382, "81079": 483, "8109": 477, "8110": 483, "81194": 483, "8138": 483, "81403": 483, "8142": 469, "814253": 483, "815": 343, "81548": [473, 483], "8156": 469, "81620": [474, 483], "81652": 483, "8173": 382, "81790": 483, "8188": 475, "8192": [87, 107, 223, 225, 242, 407], "81936": 483, "81w": 345, "82": [96, 464], "82012": 483, "82052": 483, "821": 335, "822": [106, 109, 200, 202, 230, 242, 335, 366, 464], "8222": 469, "8222838654177922817725562880000000": 468, "823": 483, "8231": 483, "8233": 469, "8235": 469, "8243": 483, "8256": 483, "8257": [469, 475], "8268": 469, "82711": 483, "8274": 98, "8276": [469, 475], "827738": 465, "828": 261, "82814": 483, "82836": 483, "8294": [469, 475], "8297": [241, 483], "829951": 468, "82eb": [398, 467], "83": [343, 382, 451, 477], "8300": 469, "83004": 483, "83006": 483, "830080526611674": 481, "83035": 483, "8305": 126, "83076": 483, "8311": 477, "83122": 474, "8321": [469, 475], "8322": [469, 475], "833": 102, "834": 319, "83434": 483, "83499": 483, "8354": 469, "83571": 481, "83638": [474, 483], "8364": [109, 225], "83658": 483, "83743": 481, "83861": 483, "83901": 483, "84": [183, 343, 479, 481, 483], "8402": [343, 477], "8406": 343, "8407": 476, "8413": 475, "84131": 483, "8425": [482, 483], "8442": 95, "8443": 341, "84436": [474, 483], "84461": [473, 483], "8451": 469, "84538": 474, "84540": 474, "84559": 474, "846388": 468, "8467": [423, 465], "84694": 483, "8470": 241, "84753": 483, "84783": 483, "848": 382, "8484": [469, 475], "84867": 483, "8492": 483, "84976": 483, "849999999": 186, "85": [146, 153, 288, 343, 478], "850": [158, 469], "850728": 475, "851": 296, "85128": 483, "8513": 476, "8518757509529533123": 96, "852": 158, "8524": 475, "8525": 483, "852554": 296, "85267": 483, "85272": 481, "85308": 483, "8536": 483, "8538": 483, "854": [186, 359], "8540": [475, 476], "85417": 483, "85432": 483, "855": [158, 221], "85525": 483, "85542": 473, "85567": 483, "857": 158, "85760": 483, "858": 158, "8585": 483, "85858": [474, 483], "8589934592": 466, "859": 251, "85936": 483, "8594": 476, "85984": [474, 483], "85987": 186, "85988": 186, "85_705_149": 446, "86": [96, 104, 173, 221, 343, 345, 382, 384], "860": 158, "8601": [150, 183, 190, 266, 340, 419, 473, 479, 483], "86087": 483, "86094": 483, "861": [158, 296], "86128": 483, "862": 158, "86275": 483, "86298": 483, "863": 158, "8637": [479, 483], "8637678": 446, "86388": [474, 483], "86399": [20, 183], "86400": 483, "86404": 483, "86421": 474, "86438": 483, "865": 158, "86508": 483, "866": [158, 190, 481], "86650": 483, "86682": 483, "8675309": 343, "86826": 483, "8684": 476, "8685": 475, "8688": 469, "869": 158, "86986": 483, "869e": 94, "869s": 474, "86yd": 464, "87": [186, 248, 343, 348], "870": 382, "87092": 483, "87106": 483, "87115": 483, "8713": 477, "8722": 483, "87235": 483, "87260": 483, "8729": 469, "87389": 483, "8739": 476, "87390": 483, "874": 261, "87447": 483, "87451": [479, 480, 481, 482], "87474": 483, "875": 283, "87518": 473, "87604": 483, "87634": 483, "87695": 483, "87729": 483, "87730": 483, "87758256189": 186, "8775825618903727161162815826": 186, "8777": 475, "877df851": 483, "87822": 483, "87849": 483, "87868": 483, "87889": 472, "87901": 483, "87925541791544": 318, "8797": 483, "87995": [474, 483], "87999": [474, 483], "87a": 249, "87x": 482, "88": [104, 183, 343, 382, 478], "88013": 483, "88024": 473, "88048": [472, 479, 480, 482], "88050": 483, "8806": 475, "8807": 475, "8808": 476, "88089": 483, "8809": 476, "88116": [473, 483], "88123": 483, "8813": 477, "8814": 475, "88226": 483, "88233": 483, "88261": 473, "88267": 483, "88279": [473, 483], "8828": 476, "88324": 483, "88330": 483, "88352": 483, "8837": 475, "8844": 475, "8845": 475, "88457": 473, "88496": 483, "8850": 475, "88500": 483, "88516": 483, "8859": [64, 109, 158, 190, 195, 196, 202, 205, 242, 288, 314, 340, 407, 417, 462, 475, 478], "88597": [474, 483], "886313e1": [398, 467], "88691": 483, "88745": 483, "88750": 483, "8876": 483, "88773": 483, "888": 284, "88831": 483, "88863": 483, "8888": [133, 136], "88888": 442, "88943": 483, "88965": 483, "88970": 473, "89": [104, 147, 186, 226, 337, 343, 441, 449, 450, 471, 475], "890": 345, "8901": [186, 482, 483], "8901234": 471, "89022": 483, "89026": 473, "89051": 483, "892": 319, "89237": 483, "89258": 483, "89263": 473, "89279": 483, "8931": 483, "89313": 473, "89325": [474, 483], "89336": [474, 483], "89373": 483, "89392": 483, "89412": 483, "89415": 483, "89452": 483, "89455": 483, "894e": [398, 467], "89519": [473, 474, 483], "89536": 474, "89545": 483, "89546": 483, "89550": 483, "896": [267, 343], "89610": 483, "89653": 473, "89682": 483, "8970": 483, "89727": 483, "8978": 483, "89792": 483, "89811": 483, "89828": 483, "89858": 483, "89874": [473, 474], "89886": [474, 483], "8990": 475, "89914": 483, "89973": 483, "89987": 483, "89988": 483, "89a": 249, "89ric": 476, "8_qbz5n2kfra8p0": 461, "8baf": [398, 467], "8bit": [196, 197, 198, 201, 202, 203, 207, 208, 475, 476, 483], "8bitmim": [335, 478, 483], "8c7fada847da": [398, 467], "8fa3": 475, "8gb": 186, "8ghz": 308, "8m": 481, "8p": 483, "8s": [102, 267, 268, 469, 475], "8svx": 336, "8x": [261, 483], "8zc": 483, "90": [104, 147, 155, 261, 283, 318, 343, 384, 481], "900": [102, 449], "9000": [245, 386, 430], "90005": 483, "90016": [474, 483], "9003": 475, "90043": 483, "9007199254740992": 221, "90081": 483, "90085": 483, "90095": 483, "901": [96, 471], "90104": 483, "90153": 473, "90155": 483, "901e4e52b20a": 483, "902": [96, 475], "90208": 483, "9022": 268, "90224": 473, "90230": 483, "9025": 475, "903": [96, 382], "90329": 483, "9035": 477, "90352": 483, "90353": 473, "90385": [474, 483], "904": 96, "90415": 473, "904625697166532776746648320380374280103671755200316906558262375061821325312": 186, "90465": 473, "90467": 483, "90473": [473, 483], "90494": 483, "905": 96, "90500": 473, "90535": 483, "90536": [474, 483], "90549": 483, "9056": 483, "90562": 181, "90564": 473, "90568": 483, "90572": 473, "906": 96, "90622": 483, "90623": 483, "9063": 483, "90633": [473, 483], "90638": 473, "90656": [474, 483], "90690": 483, "90699": 483, "907": 96, "90711": 473, "90716": 483, "90729": 473, "90750": 483, "90751": [474, 483], "90765": 474, "908": 96, "90802": 473, "90817": [473, 474, 483], "90844": 483, "90848": 483, "90872": 483, "90876": 483, "90887": 483, "909": 96, "90908": 473, "90927": 473, "90953": 474, "90985": 483, "90989": 483, "9099": 288, "90994": 483, "90997": [474, 483], "90_560": 343, "90s": 483, "91": [104, 343], "910": 96, "91020": 483, "91038": 483, "91051": [474, 483], "91052": [474, 483], "91053": 483, "91054": [474, 483], "91058": [474, 483], "91061": 483, "91070": 269, "91078": 483, "91079": 483, "911": [96, 382], "9110": 475, "91102": 483, "91133": 483, "91137": 473, "91146": 483, "91152": 483, "91153": 483, "91154": 473, "91162": 483, "91165": 473, "91166": [474, 483], "91173": 483, "91181": 473, "91207": 483, "91210": 483, "91212": 483, "91215": 483, "91217": 483, "91218": 473, "91219": 483, "91227": 483, "91230": 483, "91231": 483, "9124": 475, "91248": [474, 483], "91256": 483, "91266": 483, "91276": 483, "91298": 483, "91320": 483, "91321": 483, "91330": 483, "91351": 483, "9138244460009446": 367, "91389": 483, "91399": 483, "91401": 483, "91404": [473, 483], "91409": 483, "91421": 483, "91428": 483, "91432": 483, "91447": 483, "91456": 483, "9146": 483, "91462": 483, "9147": 475, "91479": 483, "91487": [473, 483], "91502": 483, "91513": 483, "91524": [474, 483], "91526": 483, "91539": 483, "91547": 483, "91551": 483, "91565": 483, "91575": 483, "91576": 483, "91577": 483, "91578": 483, "91581": 483, "91583": 483, "91595": 483, "91603": 483, "91607": 483, "91616": 483, "91621": 483, "91625": 483, "91632": 483, "91636": 483, "91670": 483, "91700": 483, "91719": 483, "91731": 483, "91734": 483, "91742": 483, "91744": 483, "91752": 483, "91760": [473, 474, 483], "91768": 483, "9177": 477, "9177857982131165996": 96, "91783": 483, "9179": [478, 483], "918": 261, "91803": 483, "91810": 483, "91821": 483, "91827": [473, 483], "91832": 483, "9184": 466, "91851": 483, "91860": [473, 483], "91869": 483, "91888": 483, "91896": [386, 474, 483], "919": 319, "91904": 483, "91910": 483, "91922": 483, "91924": 483, "91928": 483, "9195": 465, "91952": 483, "91954": 483, "91960": 483, "91968": 483, "91973": 473, "91984": 483, "91996": 483, "92": [343, 481, 482], "9203": 475, "92031": 483, "92032": 483, "92036": 483, "92049": 483, "92062": 483, "92063": 483, "92081": 483, "9210": 475, "92112": 483, "92114": 483, "92118": 483, "92119": 483, "92122": 483, "92123": 483, "92128": 483, "9213": 475, "92154": [473, 483], "9216": 483, "92169": 483, "92173": 483, "92184": 483, "92193": 483, "921f9f01b866ep": 444, "92203": 483, "92210": 483, "92216": 483, "92228": 483, "92236": 483, "92240": 483, "92245": 483, "92248": [474, 483], "92257": 474, "92261": 483, "92301": 483, "9232": 483, "9233": 483, "92332": [386, 473, 474, 483], "92336": 483, "92345": 483, "92356": 483, "923754": 475, "9239": 483, "92391": 483, "924": 102, "92445": 483, "92452": 483, "9246": 483, "925": 319, "92514": 483, "9252925514383915483333812743580549779436104706260696366600": 344, "92530": 483, "92531": 483, "92536": [474, 483], "92546": 483, "92547": 483, "92548": 474, "92550": 483, "92584": [474, 483], "92591": 483, "9260": 476, "92603": 483, "92619": 483, "92647": 483, "92651": [474, 483], "92658": 483, "92670": 483, "92671": 483, "92675": 483, "92678": 483, "92728": [473, 483], "92734": 483, "92777": 483, "92781": 483, "928": 343, "92804": 483, "92817": 483, "92839": 483, "92841": 483, "92858": 483, "92869": 483, "92886": 483, "92888": 483, "92892": 483, "92898": 483, "92913": 483, "92914": 483, "92925": 474, "92930": 483, "92932": 483, "92955": 483, "92984": 483, "92986": 483, "93": [337, 481, 482], "93010": 483, "93012": [474, 483], "93018": 483, "93021": 483, "9303": 483, "93031": 483, "93033": 483, "93040": 483, "93044": 483, "93061": 483, "93065": 483, "93096": 483, "93103": 483, "93143": [474, 483], "93156": 483, "93157": 483, "93162": 483, "932": 158, "93202": 483, "93205": 483, "93207": [474, 483], "93223": 483, "93243": [474, 483], "93252": 483, "93259": 483, "93274": [474, 483], "93283": 483, "93297": 483, "93312": [474, 483], "9332": 93, "93345": 483, "93351": [473, 483], "93353": 483, "93354": 483, "93356": 483, "93359": 483, "9337": 475, "93370": 483, "93382": 483, "934": 382, "93418": 483, "93421": 483, "93429": [474, 483], "9344": 476, "93442": 483, "93444": 483, "93453": 483, "93461": 483, "93464": 483, "93466": 483, "93475": 483, "93491": 483, "93503": [474, 483], "9351": 483, "93516": 483, "93521": 483, "93533": 483, "93554": 483, "93575": 483, "93584": 483, "936": 158, "9360": 475, "93616": 483, "93621": 483, "93626": 483, "93662": 483, "93671": 483, "93678": 483, "93696": 483, "937": 308, "9372": [481, 483], "93744": 483, "938": 382, "93820": 483, "93824": 483, "93839": 483, "93841": 483, "93847": 483, "93852": 483, "93858": 483, "93883": 483, "93884": 483, "93896": 483, "93899": 483, "93910": 483, "93911": 483, "93937": [473, 483], "93939": [474, 483], "93951": 483, "93955": 483, "93957": 483, "93963": [474, 483], "93973": 483, "94": [283, 318, 469], "940": 382, "94018": 483, "94021": 483, "94028": 483, "940286": 483, "94036": 483, "94043": 426, "941": 296, "9410": 475, "94101": 483, "94155": 483, "94163": [474, 483], "94169": [474, 483], "94172": [474, 483], "94182": 483, "94192": 483, "94196": [474, 483], "94199": [474, 483], "94207": 483, "94208": 483, "94214": 483, "94215": 483, "94216": [474, 483], "94226": [474, 483], "9424": 475, "9425": 475, "94254": 483, "94262": 483, "94280": 483, "94309": [386, 474, 483], "94315": 483, "94318": 483, "94321": 483, "94328": 483, "94329": 483, "94343": 483, "94352": [474, 483], "94360": 483, "94379": [474, 483], "94382": 483, "94383": [474, 483], "94398": 483, "94399": 483, "94404": 483, "94430": 483, "94438": 483, "94440": 483, "94473": [474, 483], "94485": 483, "945": 483, "94510": 483, "94518": 483, "94526": 483, "94538": 483, "94597": [474, 483], "94603": 483, "94606": 483, "94607": 483, "94619": 483, "94637": 483, "94675": 483, "94682": 483, "94684": 483, "94694": 483, "94722": 483, "94731": 483, "94736": 483, "94739": 483, "94772": 483, "94773": 483, "94777": 483, "94781": 483, "94801": 483, "94802": 483, "94821": 483, "94822": 483, "94841": 483, "94847": 483, "94857": 483, "94869": 483, "94893": 483, "949": 158, "94906": [474, 483], "94909": 483, "94912": 483, "94930": 483, "94936": [473, 483], "94938": 483, "94943": 483, "94947": 483, "94949": 483, "94996": 483, "95": [293, 314, 318, 343, 382, 465, 468], "950": 158, "95005": 483, "95023": 483, "95027": 483, "95045": 483, "95051": 426, "95060": 483, "95065": 483, "95066": 483, "950730698041": 475, "95077": 483, "95083": 474, "95085": [473, 483], "95087": 483, "95097": 483, "95105": 483, "95109": 483, "95113": 483, "95132": 483, "95145": 483, "9514790517935283e": 469, "9514790517935289e": 469, "95149": 483, "95150": 483, "95166": 483, "9517": 483, "95174": 483, "95185": 483, "95191": [472, 473, 483], "95194": 483, "95196": 483, "95199": 483, "95212": 483, "95218": 483, "9523": 475, "95231": 483, "95243": 483, "95245": 483, "9528": 475, "95280": 483, "95285": 483, "95289": 483, "95299": [474, 483], "95324": 483, "95339": 483, "95355": 483, "95359": 483, "95385": 483, "95388": [474, 483], "95389": 483, "95411": 483, "95415": 483, "95445": 483, "95451": 483, "95454": 483, "95463": 483, "95471": 483, "9548": 477, "95495": 483, "95504": [474, 483], "95511": 483, "95534": 483, "9554": 483, "9556": 477, "95573": 483, "95587": 483, "95588": 483, "95589": [474, 483], "956": 296, "95605": 483, "95609": 483, "95649": 483, "95656": 483, "9567": 475, "957003": 468, "95704": 483, "95731": 483, "95733": 483, "95736": 483, "95756": 483, "957650": 468, "95778": 483, "95781": [474, 483], "95782": 483, "958": 343, "95804": 483, "95818": 483, "95853": 483, "95861": [474, 483], "95865": 483, "95876": 483, "95882": 483, "95899": 483, "959": 223, "95921": 483, "95922": 483, "95957": 483, "95973": 483, "95977": 483, "95987": 483, "95f0": 341, "96": [94, 99, 259, 344, 382, 479, 480, 481, 482, 483], "960": [261, 483], "96000": 295, "96002": 483, "96005": 483, "96019": 483, "96035": 483, "96046": 483, "96052": 483, "96055": 483, "96071": 483, "96073": 483, "96078": 483, "96079": 483, "96098": 483, "96123": 474, "96125": 483, "96127": 483, "96142": 483, "96143": 483, "96145": 483, "96151": 483, "96159": 483, "96172": 483, "96175": 483, "96187": 483, "96192": 483, "9620": 483, "96237": 483, "96268": 483, "96269": 483, "96290": 483, "96305": 483, "96310": 483, "96346": 483, "96348": 483, "96349": 483, "96352": 483, "96364": 483, "96385": 483, "96387": 483, "96388": 483, "96415": 483, "96421": 483, "96432": 483, "96465": 483, "96497": 483, "96512": 483, "96522": 483, "96534": 483, "96538": 483, "96559": 483, "96569": 483, "96572": 483, "96577": 483, "96580": 474, "96582": 483, "96587": 483, "966": 160, "96611": 483, "96612": 483, "96624": 483, "96636": 483, "96641": 483, "96652": 483, "9666": 475, "96670": [474, 483], "96678": 483, "96704": 483, "96729": 483, "96734": [474, 483], "96735": 483, "96741": 483, "96751": 483, "96754": 483, "96761": 483, "96764": 483, "9678": 483, "96793": 483, "96803": 483, "96819": 483, "96821": 483, "96827": 483, "96828": 483, "96848": 483, "96853": 483, "96864": 483, "96865": 483, "96883": 483, "969": 382, "96905": 483, "96931": 483, "9694": [472, 483], "96965": 483, "96975": 483, "97": [104, 109, 122, 225, 278, 344, 469, 475], "97001": 483, "97002": 483, "97005": 483, "97008": 483, "9733": 465, "9740": 483, "97514": 483, "97527": 483, "9754": 475, "97545": 483, "9757": 475, "97591": 483, "97592": 483, "976": 382, "97616": 483, "97639": 483, "97646": 483, "97649": 483, "97669": [474, 483], "97670": 483, "97681": [474, 483], "97696": 483, "976e": 94, "977": [101, 288], "9770": 483, "97725": 483, "97728": 483, "97731": 483, "97741": 483, "97752": 483, "97779": 483, "9778": 475, "97781": 483, "97786": 483, "97799": 483, "978": 369, "97825": 483, "97837": 483, "97850": [474, 483], "97897": 483, "979": 101, "97912": 483, "97922": [474, 483], "97928": 483, "97930": [474, 483], "97933": 483, "9794": 475, "97943": 483, "9795": 476, "97955": 483, "97959": 483, "97966": 483, "979728": 466, "97973": 483, "97997": 483, "98": [293, 337, 344, 405, 468, 469, 475], "980": 475, "98003": 483, "98023": 483, "98024": 474, "98030": 483, "98040": [474, 483], "98086": 483, "98098": 483, "98108": 483, "98139": 483, "9815": 483, "98169": 483, "98178": 483, "98179": 474, "98248": 483, "98251": 483, "98253": 483, "98254": [474, 483], "98257": 483, "9826": 475, "9828": 95, "98284": 483, "98307": 483, "98331": 483, "98354": 483, "9836": 158, "98360": 483, "98363": [474, 483], "98374": 483, "98390": 483, "98393": [474, 483], "98398": 483, "9840": 475, "98401": [474, 483], "98410": 483, "98414": 483, "98415": 483, "98433": 483, "98458": 483, "98461": 483, "9850": [480, 483], "98522": 483, "9856": 476, "9858": 483, "98586": [474, 483], "98608": 483, "98610": 483, "9862": 475, "98624": 483, "98627": 483, "98629": 483, "98636": 483, "98658": [474, 483], "98680": 483, "98686": 483, "98689": 483, "986893273527251": 343, "98692": 483, "987": [441, 449, 450], "98703": 483, "98705": 483, "98707": 483, "98713": 483, "98724": [474, 483], "9873": 475, "98739": 483, "98740": 483, "98744": 483, "98745": 483, "98762": 483, "9876543211234567": 352, "9876543211234568": 352, "98767": 78, "98776": 483, "98778": 483, "9878": 95, "98783": 483, "98790": 483, "98793": 483, "98811": 483, "98817": 483, "9882": 343, "98831": 483, "98832": 483, "98836": [474, 483], "98852": 483, "98872": 483, "98878": 483, "98886": 483, "98897": 483, "98903": 483, "98925": 483, "98931": [474, 483], "98940": 483, "98949": 483, "98963": 483, "98966": 472, "98978": 483, "98989": 483, "9899": 352, "98999": 483, "99": [85, 92, 107, 147, 176, 183, 186, 261, 266, 268, 319, 343, 344, 366, 466, 469, 470, 475], "99005": [474, 483], "99016": 483, "99017": 483, "99029": 483, "99069": 483, "99079": 483, "99086": 483, "99103": 483, "99108": 483, "99110": 483, "99111": 483, "99113": 483, "991266": 483, "99127": [474, 483], "99134": 483, "99138": 483, "99139": [474, 483], "9915": 475, "99153": 483, "99155": 483, "99181": 483, "99184": 483, "99191": 483, "99201": 483, "99202": 483, "99203": 483, "99204": 483, "99205": 483, "99240": 483, "99247": 474, "99248": 483, "99254": 483, "99257": 483, "99266": 483, "99275": 483, "99277": 483, "99284": 483, "99285": 474, "99289": [474, 483], "99293": 483, "99298": 483, "993": 248, "99305": 483, "99337": 483, "99341": 483, "99344": 483, "99345": 483, "99353": 483, "99370": 483, "99377": 483, "99379": 483, "9938": 483, "99382": 483, "99388": [474, 483], "99418": 483, "99433": 483, "99442": 483, "9948": 483, "99482": [474, 483], "9949": 483, "994956": 465, "995": [305, 479], "99508": 483, "99509": 483, "9951": [478, 483], "99540": 483, "99547": [474, 483], "99553": 483, "99554": 483, "9957": 476, "99576": 483, "99578": 483, "99581": 483, "99582": 483, "99593": 483, "996": 102, "99612": 483, "9962": 475, "99645": 483, "99659": 483, "997": 102, "99708": 483, "99726": [474, 483], "99729": 483, "99741": 483, "998": 102, "99834": 483, "9988": 483, "99889": 483, "99891": 483, "99892": 483, "999": [186, 284], "9991": 226, "99925": 483, "9993": 476, "99931": 483, "99934": 483, "99941": 483, "99942": 483, "99944": 483, "99947": 483, "99952": 483, "99955": 483, "99957": [474, 483], "9998": [183, 479, 483], "9999": [102, 104, 133, 150, 183, 247, 338, 475, 480, 483], "99998": 478, "99999": 347, "999999": [20, 183, 186, 366, 476], "9999999": 78, "9999999895305022877376682436": 468, "999999999": [20, 183], "999999999999999999": [186, 476], "999999999999ap": 186, "999_999_999": 173, "9_": [106, 109, 319, 435], "9_000": 483, "9a": [106, 319], "9a2f": 337, "9b90": [398, 467], "9e": 94, "9s": 102, "9tjqk": 319, "_0": 471, "_1": [160, 469, 471], "_2": [469, 471], "_3": 160, "_4g": 362, "__": [80, 85, 102, 289, 362, 435], "___": 85, "______": 85, "__________": 85, "_________________": 85, "____________________________": 85, "__abs__": [63, 225, 291, 386, 428, 483], "__absolute_start_time__": 96, "__adapt__": 483, "__add__": [63, 80, 94, 100, 160, 168, 255, 289, 291, 389, 428, 430, 483], "__aenter__": [87, 169, 191, 388, 389, 390, 427, 428, 483], "__aexit__": [87, 139, 169, 191, 388, 389, 390, 427, 428, 483], "__aiter__": [63, 87, 161, 191, 225, 389, 390, 427, 428, 478, 479, 480, 483], "__all__": [225, 247, 279, 319, 362, 436, 450, 463, 479, 483], "__and__": [63, 161, 211, 291, 389, 428, 430], "__anext__": [63, 87, 161, 191, 213, 225, 389, 427, 428, 430, 483], "__annotations__": [68, 87, 93, 181, 191, 225, 226, 255, 386, 427, 428, 436, 441, 470, 472, 475, 477, 478, 479, 481, 482, 483], "__args__": [62, 344, 472, 482, 483], "__await__": [63, 87, 161, 191, 385, 428, 478, 483], "__base__": 63, "__bases__": [49, 63, 76, 103, 203, 225, 299, 344, 385, 428, 465, 483], "__block": 96, "__bool__": [63, 94, 112, 211, 232, 291, 344, 367, 389, 405, 428, 430, 470, 483], "__bound__": [386, 427, 429], "__breakpointhook__": [352, 450, 483], "__buffer__": [161, 255, 428, 474, 483], "__build_class__": [191, 450, 483], "__builtin__": [465, 470, 471], "__builtin_avail": 483, "__builtin_bswap16": 483, "__builtin_nan": 483, "__builtin_new": 68, "__builtin_unreach": [35, 483], "__builtins__": [31, 96, 148, 225, 255, 429, 450, 470, 472, 483], "__bytes__": [196, 201, 205, 344, 386, 428, 473, 477, 478, 483], "__cached__": [31, 96, 225, 250, 324, 432, 472, 474, 475, 477, 483], "__call__": [10, 63, 85, 87, 93, 120, 159, 160, 161, 203, 211, 225, 283, 291, 358, 386, 389, 390, 402, 428, 430, 474, 479, 483], "__callback__": [402, 477], "__cantrace__": 352, "__cause__": [23, 191, 213, 381, 436, 470, 483], "__ceil__": [221, 275, 389, 428, 483], "__char_unsigned__": 483, "__class__": [49, 80, 85, 87, 93, 94, 100, 183, 211, 225, 250, 299, 344, 389, 400, 428, 440, 464, 465, 468, 479, 483], "__class_getitem__": [62, 68, 344, 386, 430, 473, 480, 483], "__classcell__": [428, 479, 481, 483], "__cleanenv": 362, "__closure__": [112, 428, 470, 483], "__cmp__": [462, 463, 465, 468, 469, 470], "__code__": [255, 344, 428, 470, 481, 483], "__coerce__": [464, 469], "__complex__": [15, 154, 225, 262, 386, 389, 428, 468, 473, 477, 480, 481, 483], "__concat__": 291, "__conform__": [340, 483], "__console__": 157, "__constraints__": [386, 427], "__contains__": [55, 58, 63, 80, 85, 87, 94, 98, 161, 196, 205, 211, 261, 271, 291, 344, 389, 407, 416, 428, 430, 462, 465, 466, 468, 483], "__context__": [23, 213, 381, 436, 470, 476, 483], "__contravariant__": 386, "__copy__": [171, 474, 483], "__counter": 402, "__covariant__": 386, "__cplusplus": 73, "__cwd": 362, "__dataclass_fields__": 483, "__dataclass_transform__": 386, "__debug__": [34, 66, 168, 188, 225, 250, 436, 450, 455, 465, 472, 483], "__declspec": 86, "__deepcopy__": [171, 483], "__defaults__": [255, 428, 470, 483], "__del__": [23, 33, 52, 63, 68, 73, 84, 182, 227, 258, 283, 316, 340, 360, 362, 389, 428, 477, 483], "__delattr__": [63, 75, 80, 93, 142, 181, 428, 483], "__delete__": [63, 87, 93, 255, 389, 428, 464, 483], "__delitem__": [63, 80, 160, 161, 196, 205, 271, 291, 389, 407, 410, 413, 428, 465, 470, 483], "__delslice__": 470, "__dict__": [45, 49, 61, 63, 85, 88, 93, 100, 102, 116, 144, 148, 193, 225, 226, 250, 255, 267, 269, 297, 299, 308, 344, 385, 419, 427, 428, 432, 440, 463, 464, 469, 470, 472, 474, 478, 479, 483], "__dictoffset__": 58, "__dir__": [80, 94, 211, 225, 255, 389, 428, 468, 477, 480, 483], "__displayhook__": [352, 450], "__div__": 483, "__divmod__": [63, 389, 428, 472, 478, 483], "__doc__": [45, 63, 75, 80, 84, 87, 93, 94, 96, 157, 160, 190, 193, 211, 225, 226, 255, 289, 313, 320, 323, 385, 427, 428, 435, 440, 441, 446, 450, 463, 464, 465, 470, 472, 475, 477, 478, 482, 483], "__dunder__": [68, 182], "__enter__": [68, 87, 102, 191, 258, 283, 315, 333, 344, 358, 386, 388, 389, 405, 427, 428, 467, 468, 469, 473, 476, 479, 483], "__eq__": [22, 63, 78, 80, 85, 87, 147, 161, 168, 181, 195, 202, 211, 226, 244, 255, 291, 344, 385, 389, 390, 419, 428, 463, 468, 469, 470, 473, 475, 480, 483], "__excepthook__": [352, 365, 450, 472, 483], "__exit__": [87, 102, 169, 191, 258, 283, 333, 344, 358, 362, 388, 389, 405, 427, 428, 467, 468, 469, 479, 483], "__file__": [31, 45, 89, 96, 102, 114, 188, 193, 225, 235, 250, 255, 265, 302, 323, 324, 362, 382, 388, 400, 423, 428, 432, 456, 465, 477, 479, 480, 482, 483], "__final__": [386, 473, 483], "__float__": [15, 25, 63, 154, 225, 386, 389, 428, 472, 480, 481, 483], "__floor__": [221, 275, 389, 428, 483], "__floordiv__": [63, 291, 389, 428, 430, 464, 472, 483], "__format__": [80, 183, 211, 221, 225, 259, 345, 389, 428, 435, 468, 469, 473, 476, 477, 480, 483], "__fspath__": [59, 293, 296, 362, 389, 479, 483], "__func__": [93, 112, 255, 344, 428, 440, 468, 469], "__future__": [66, 68, 87, 88, 112, 159, 213, 225, 254, 255, 263, 315, 386, 427, 428, 436, 464, 465, 467, 468, 470, 472, 473, 477, 478, 480, 481, 482, 483, 484], "__ge__": [63, 80, 94, 161, 181, 226, 291, 344, 389, 428, 463, 469, 475], "__get__": [63, 87, 93, 181, 226, 255, 389, 428, 464, 479, 483], "__getattr__": [49, 58, 63, 75, 85, 93, 142, 176, 216, 225, 255, 299, 323, 344, 385, 389, 428, 430, 447, 464, 468, 474, 475, 476, 477, 480, 483], "__getattribute__": [49, 63, 80, 87, 93, 225, 255, 299, 428, 430, 464, 468, 475, 480, 483], "__getformat__": [389, 483], "__getinitargs__": 389, "__getitem__": [37, 40, 54, 63, 64, 68, 80, 87, 98, 102, 108, 116, 160, 161, 176, 196, 203, 205, 211, 218, 225, 271, 283, 291, 319, 344, 345, 386, 389, 390, 407, 410, 412, 413, 427, 430, 452, 464, 465, 466, 470, 473, 474, 475, 479, 481, 483], "__getnewargs__": [94, 160, 299, 389, 465, 478, 483], "__getnewargs_ex__": [299, 483], "__getslice__": 470, "__getstate__": [299, 389, 465, 473, 483], "__globals__": [88, 255, 428, 470, 472, 483], "__gt__": [63, 80, 94, 108, 161, 181, 225, 226, 291, 344, 389, 428, 463, 469, 475], "__hash__": [22, 63, 78, 80, 85, 87, 161, 181, 211, 225, 289, 344, 389, 428, 455, 467, 468, 470, 476, 480, 483], "__hello__": [176, 483], "__hex__": [468, 470], "__iadd__": [63, 80, 85, 161, 291, 428, 462], "__iand__": [63, 161, 168, 291, 428], "__iconcat__": 291, "__ifloordiv__": [63, 291, 428], "__ilshift__": [63, 291, 428], "__imatmul__": [63, 291, 428, 478], "__imod__": [63, 291, 428], "__import__": [31, 191, 225, 250, 268, 299, 428, 432, 450, 468, 471, 476, 479, 482, 483], "__imul__": [63, 80, 160, 168, 291, 428, 483], "__index__": [15, 25, 39, 63, 68, 225, 291, 344, 347, 386, 389, 428, 468, 469, 470, 472, 473, 477, 480, 481, 483, 484], "__infer_variance__": 386, "__init__": [45, 61, 63, 68, 76, 78, 79, 80, 85, 87, 93, 101, 102, 107, 108, 114, 120, 128, 133, 139, 148, 160, 161, 167, 169, 172, 175, 176, 183, 184, 190, 194, 211, 213, 214, 225, 226, 238, 241, 245, 250, 251, 252, 253, 262, 267, 268, 269, 281, 283, 296, 299, 302, 308, 315, 320, 333, 340, 345, 358, 362, 365, 369, 382, 385, 386, 388, 389, 390, 399, 402, 407, 410, 414, 422, 428, 432, 440, 441, 450, 452, 462, 463, 464, 465, 467, 468, 472, 473, 474, 476, 479, 481, 483], "__init_subclass__": [61, 211, 225, 428, 473, 479, 483], "__initializing__": 225, "__initsubclass__": 483, "__instancecheck__": [49, 389, 428, 483], "__int64": 176, "__int__": [39, 63, 221, 225, 386, 389, 428, 467, 469, 472, 473, 480, 481, 483], "__interactivehook__": [334, 352, 450, 455, 477], "__inv__": 291, "__invert__": [63, 211, 291, 389, 428, 430], "__ior__": [63, 161, 291, 428], "__ipow__": [63, 291, 428, 472, 483], "__irshift__": [63, 291, 428], "__isabstractmethod__": [116, 476], "__isol": 362, "__isub__": [63, 161, 291, 428, 462], "__iter__": [63, 75, 80, 87, 94, 102, 116, 161, 211, 225, 258, 271, 283, 344, 386, 388, 389, 390, 422, 427, 428, 430, 440, 464, 465, 468, 477, 479, 482, 483], "__itruediv__": [63, 291, 428], "__ixor__": [63, 161, 291, 428], "__kwdefaults__": [255, 428, 477], "__le__": [63, 80, 94, 161, 181, 226, 291, 344, 389, 428, 463, 469, 475], "__len__": [63, 80, 87, 116, 161, 196, 205, 211, 225, 271, 283, 291, 344, 386, 389, 410, 413, 427, 428, 465, 466, 481, 483], "__length_hint__": [49, 291, 428, 477, 483], "__libc_start_main": 104, "__lltrace__": [96, 456, 483], "__loader__": [31, 45, 225, 250, 265, 324, 385, 432, 446, 450, 472, 476, 477, 480, 483], "__lshift__": [63, 291, 389, 428, 430], "__lt__": [63, 75, 80, 94, 108, 147, 161, 168, 181, 225, 226, 291, 344, 385, 389, 428, 430, 463, 469, 470, 475, 483], "__ltrace__": 483, "__main__": [33, 34, 35, 66, 68, 79, 84, 85, 87, 93, 96, 101, 102, 104, 126, 144, 155, 166, 188, 190, 193, 200, 213, 228, 250, 254, 267, 279, 283, 292, 297, 299, 308, 313, 315, 323, 324, 333, 338, 340, 342, 362, 367, 382, 384, 386, 388, 389, 390, 399, 400, 402, 407, 421, 429, 433, 437, 440, 446, 450, 455, 463, 466, 467, 468, 469, 471, 475, 476, 477, 478, 481, 482, 483], "__match_args__": [181, 427, 428, 441, 472, 483], "__matmul__": [63, 291, 389, 428, 478], "__members__": [94, 211, 464, 470], "__metaclass__": [103, 112, 464, 468, 470], "__metadata__": 386, "__methods__": [464, 470, 483], "__missing__": [160, 344, 389, 427, 428, 467, 475, 483], "__mod__": [63, 291, 389, 428, 430, 472, 483], "__module__": [23, 27, 58, 63, 88, 93, 94, 160, 181, 197, 211, 225, 226, 255, 279, 362, 386, 428, 465, 472, 478, 479, 483], "__mro__": [49, 63, 85, 93, 116, 197, 225, 344, 386, 428], "__mro_entries__": [385, 428, 480, 483], "__mul__": [63, 80, 160, 291, 389, 428, 430, 483], "__nain__": 483, "__name__": [19, 29, 45, 61, 63, 68, 84, 85, 87, 93, 94, 96, 101, 102, 103, 104, 126, 144, 155, 157, 166, 183, 188, 190, 193, 197, 200, 211, 225, 226, 228, 250, 255, 267, 283, 289, 292, 296, 297, 299, 302, 313, 315, 321, 323, 324, 333, 338, 342, 344, 362, 365, 367, 385, 386, 388, 399, 400, 402, 407, 420, 428, 432, 446, 450, 464, 465, 468, 470, 472, 474, 476, 477, 478, 479, 481, 482, 483], "__ne__": [63, 80, 161, 195, 202, 291, 389, 419, 428, 463, 473, 483], "__neg__": [63, 291, 389, 428, 430], "__new__": [45, 61, 63, 68, 76, 80, 85, 93, 121, 142, 203, 211, 213, 225, 274, 278, 296, 299, 337, 382, 385, 389, 428, 474, 477, 479, 481, 483], "__next__": [63, 75, 87, 95, 112, 161, 166, 175, 191, 213, 225, 258, 283, 344, 422, 428, 430, 440, 470, 483], "__nonzero__": [112, 470], "__not__": 291, "__note__": 483, "__notes__": [213, 381, 483], "__objclass__": 428, "__oct__": [468, 470], "__optional_keys__": [386, 483], "__or__": [63, 161, 211, 291, 344, 389, 428, 430], "__orig_bases__": [385, 474, 483], "__orig_class__": 483, "__origin__": [62, 344], "__override__": 386, "__package__": [45, 96, 225, 250, 324, 385, 432, 446, 450, 468, 472, 474, 476, 477, 479, 483], "__pad": 483, "__parameters__": [62, 344, 386, 483], "__path__": [31, 68, 87, 250, 302, 312, 352, 450, 477, 479, 480, 483], "__pos__": [63, 291, 389, 428, 430], "__post_init__": [181, 483], "__pow__": [63, 291, 389, 428, 430, 472, 483], "__prepare__": [385, 389, 428, 477, 479, 483], "__pure_virtu": 68, "__pycache__": [85, 250, 296, 311, 352, 450, 455, 473, 475, 481, 483], "__pyvenv_launcher__": [34, 483], "__qualnam": 483, "__qualname__": [19, 27, 29, 61, 87, 93, 94, 197, 211, 225, 226, 255, 344, 428, 429, 472, 476, 478, 483], "__r": 289, "__radd__": [63, 289, 428, 430], "__rand__": [63, 428, 430], "__rdivmod__": [63, 428, 472, 483], "__reduce__": [80, 211, 299, 389, 467, 481, 483], "__reduce_ex__": [80, 94, 299, 389, 483], "__release_buffer__": [428, 483], "__repr__": [63, 80, 93, 94, 103, 108, 160, 181, 183, 195, 211, 225, 255, 283, 286, 307, 321, 340, 385, 386, 389, 419, 425, 428, 452, 464, 465, 472, 473, 475, 480, 481, 483], "__required_keys__": [386, 483], "__reversed__": [80, 87, 160, 161, 211, 225, 389, 428, 479], "__rfloordiv__": [428, 472, 483], "__rlshift__": [63, 428], "__rmatmul__": [63, 428, 478], "__rmod__": [63, 160, 428, 472, 478, 483], "__rmul__": [63, 80, 428, 430, 483], "__ror__": [63, 428, 430, 483], "__round__": [221, 225, 386, 389, 428, 470, 483], "__rpow__": [63, 428, 472, 483], "__rrshift__": [63, 428], "__rshift__": [63, 291, 389, 428, 430], "__rsub__": [63, 168, 428], "__rtruediv__": 428, "__rxor__": [63, 428, 430], "__safe_for_unpickling__": 465, "__self__": [93, 255, 344, 428, 440, 468, 483], "__set__": [63, 87, 93, 181, 255, 389, 428, 464, 479, 483], "__set_format__": [473, 483], "__set_name__": [61, 93, 181, 428, 474, 479, 483], "__setattr__": [63, 75, 80, 85, 93, 142, 181, 299, 389, 428, 436, 464, 483], "__setformat__": [473, 483], "__setitem__": [63, 80, 160, 161, 191, 196, 205, 208, 271, 283, 291, 299, 389, 390, 407, 410, 413, 428, 436, 465, 470, 483], "__setslice__": 470, "__setstate__": [299, 389, 465, 481, 483], "__signature__": [255, 477, 483], "__sizeof__": [80, 352, 389, 468, 483], "__slots__": [68, 87, 160, 181, 225, 226, 255, 299, 385, 402, 464, 469, 481, 483], "__spam": [430, 440], "__spec__": [31, 68, 250, 252, 324, 385, 450, 472, 474, 477, 479, 480, 483], "__stderr__": [247, 352, 362, 450], "__stdin__": [247, 352, 450], "__stdout__": [247, 332, 352, 450], "__str__": [63, 80, 94, 101, 102, 160, 183, 195, 196, 201, 202, 203, 205, 211, 255, 267, 283, 344, 345, 385, 389, 425, 428, 443, 464, 472, 473, 481, 483], "__sub__": [63, 161, 291, 389, 428, 430], "__subclasscheck__": [49, 61, 116, 389, 428, 483], "__subclasses__": [63, 344, 389, 474, 483], "__subclasshook__": [80, 116, 161, 483], "__sun": 483, "__supertype__": [386, 483], "__suppress_context__": [23, 213, 381, 436], "__svr4": 483, "__test__": 193, "__text_signatur": 483, "__text_signature__": 483, "__total__": 386, "__traceback__": [23, 213, 352, 381, 385, 428, 430, 436, 470, 473, 483], "__truediv__": [63, 250, 253, 291, 389, 428, 430, 464, 478], "__trunc__": [225, 275, 389, 428, 473, 483], "__type_params__": [191, 226, 255, 344, 386, 427, 428, 429, 483], "__typing_prepare_subst__": 483, "__unicode__": [464, 469], "__unpacked__": [344, 483], "__unraisablehook__": [352, 450], "__updat": 440, "__value__": [386, 429, 436, 483], "__vectorcalloffset__": [58, 61], "__venv_bin_name__": 399, "__venv_dir__": 399, "__venv_name__": [399, 482], "__venv_prompt__": [399, 482, 483], "__venv_python__": 399, "__version__": [177, 190, 245, 388, 476, 478, 482, 483], "__warningregistry__": [400, 483], "__weaklistoffset__": 58, "__weakref__": [181, 402, 428, 483], "__wrapped__": [88, 93, 225, 226, 255, 472, 473, 475, 477, 478, 483], "__wrapper__": 483, "__x": 93, "__x__": 470, "__xor__": [63, 161, 211, 291, 389, 428, 430], "_a": 345, "_a85char": 382, "_a85chars2": 382, "_abc": [482, 483], "_abc_cach": 483, "_abc_caches_clear": 483, "_abc_data": 483, "_abc_negative_cach": 483, "_abc_registri": 483, "_abc_registry_clear": 483, "_abcol": 98, "_accessor": 483, "_acquire_restor": 96, "_actionscontain": 483, "_activ": 483, "_add": 289, "_add_callback": 483, "_after_": 268, "_after_fork": 483, "_age": 93, "_aix": 483, "_aix_support": 483, "_aliv": 226, "_always_": 483, "_annotatedalia": 483, "_anonymous_": [176, 483], "_argtypes_": 483, "_as_parameter_": 176, "_asdict": [160, 468, 469, 471, 481, 483], "_ast": [122, 467, 475, 483], "_async_connect": 388, "_asyncio": [456, 483], "_asyncio_future_block": 129, "_at_fork_reinit": 483, "_audiodata": 206, "_awaitev": 483, "_b32tab": 382, "_b32tab2": 382, "_b85char": 382, "_b85chars2": 382, "_b_base_": 176, "_b_needsfree_": 176, "_bar": 362, "_base_execut": [34, 483], "_bcd2str": 477, "_beginthreadex": 469, "_bisect": 483, "_blake2": 483, "_bool": [176, 347, 468], "_bootlocal": 483, "_bootstrap": [283, 382, 483], "_bootstrap_extern": 483, "_bootstrap_python": 483, "_bootsubprocess": 483, "_buffer": 483, "_build": 296, "_builtinsuit": 468, "_bundl": [456, 472, 483], "_bz2": [482, 483], "_c_api": 73, "_cach": [85, 283, 463], "_call": 483, "_call_match": 483, "_callmethod": 283, "_candidate_tempdir_list": 483, "_cdata": [176, 483], "_cell_factori": 483, "_cfg": 384, "_charset": [198, 206, 230, 483], "_check_notifi": 96, "_clamp": 476, "_class": 207, "_classname__spam": [85, 440], "_cleanup": 96, "_cleanup_on_error": 169, "_clear_type_cach": [352, 450], "_clearcach": 225, "_code": 308, "_codec": [482, 483], "_codecs_cn": 483, "_codecs_hk": 483, "_codecs_iso2022": 483, "_codecs_jp": 483, "_codecs_kr": 483, "_codecs_tw": 483, "_collect": 483, "_collections_abc": 161, "_commit": 293, "_compil": [279, 308], "_compress": [472, 483], "_condit": 96, "_condition__lock": 96, "_condition__wait": 96, "_config_var": 483, "_conn_lost": 483, "_connect": [388, 419], "_constant": [279, 344, 483], "_contextvar": [482, 483], "_convert": 483, "_convert_": [94, 483], "_copysign": 483, "_count": 140, "_count_el": 483, "_create_unverified_context": [242, 469, 477], "_crypt": [482, 483], "_csv": [362, 483], "_ctype": [176, 426, 469, 480, 483], "_ctypes_test": 483, "_current_except": [142, 352, 474, 483], "_current_fram": [142, 352, 450, 467], "_curs": 483, "_curses_panel": 483, "_d": 478, "_data": [206, 226], "_dataclassparam": 483, "_datetim": 483, "_dbm": 483, "_debug": 35, "_debugmallocstat": [352, 450], "_decim": [426, 456, 476, 483], "_declspec": 77, "_deco": 466, "_decode_filter_properti": 483, "_decompos": 483, "_default": 181, "_defaultformatt": 268, "_dept": 93, "_dictkeysobject": 483, "_dirnamew": 483, "_dispatch": 420, "_distutils_findv": 483, "_dummy_thread": [480, 482, 483], "_dummythread": 483, "_dump_registri": 483, "_elementre": 483, "_elementtre": 483, "_emscripten_info": [352, 483], "_enablelegacywindowsfsencod": [352, 455, 479], "_encod": 206, "_encoded_word": 483, "_enter_task": [128, 483], "_enumdict": 483, "_environ": 483, "_error": 395, "_errorhold": 388, "_eval_typ": 483, "_except": 297, "_exit": [140, 213, 214, 293], "_expand": 279, "_exposed_": 283, "_extra_attribut": 476, "_f": 148, "_factori": 207, "_fallback": 230, "_fdel": 116, "_featur": [87, 113, 225], "_feed": 483, "_fget": 116, "_field": [122, 160, 386, 468, 469, 483], "_field_default": [160, 386, 483], "_field_typ": [386, 481, 482, 483], "_fields_": [176, 283, 344, 483], "_fields_default": 483, "_file": 360, "_final": 402, "_finalize_manag": 483, "_find_and_load": 483, "_fix": [478, 483], "_flatten": 483, "_flush": 407, "_foo": 255, "_forget_codec": 483, "_frame": [297, 483], "_framework": 450, "_free": 467, "_freeze_importlib": 483, "_freeze_modul": [33, 483], "_from_iter": 161, "_frozen": [31, 176, 473, 483], "_frozen_importlib": [176, 283, 483], "_frozen_importlib_extern": [176, 483], "_fset": 116, "_funcptr": 176, "_functool": [482, 483], "_gdbm": 483, "_generate_next_value_": [94, 211, 483], "_gestalt": 477, "_get_": 483, "_get_anothervalu": 410, "_get_child_mock": [389, 390], "_get_default_schem": 355, "_get_foo": 411, "_get_module_lock": 483, "_get_preferred_schem": 355, "_get_protocol_attr": 483, "_get_running_loop": 483, "_get_slot": 483, "_get_somevalu": 410, "_get_type_var": 483, "_get_x": 116, "_getdiskusag": 483, "_getfinalpathnam": 483, "_getfram": [101, 142, 352, 450, 463, 473, 483], "_getframemodulenam": [142, 352, 483], "_getvalu": 283, "_getvolumepathnam": 483, "_git": [450, 483], "_grouper": 261, "_h": 283, "_ham__spam": 430, "_handl": 176, "_hash": [161, 483], "_hashlib": [482, 483], "_hashopenssl": 483, "_header_value_pars": 483, "_heapq": 483, "_helper": 468, "_hexdig": 382, "_home": 450, "_hook": 251, "_htest": 483, "_https_verify_certif": 469, "_id2obj_dict": 402, "_idle_semaphor": 483, "_ignore_": [94, 211, 480, 483], "_imagedata": 206, "_imp": 483, "_import": 483, "_incompatible_extension_module_restrict": [250, 483], "_infer_return_typ": 483, "_info": 230, "_init_main": 34, "_init_module_attr": 432, "_inittab": 31, "_install_schem": 355, "_internaldict": [480, 483], "_inverted_registri": 279, "_io": [120, 188, 475, 479, 483], "_iobas": 483, "_is_callable_members_on": 483, "_is_fork_ctx": 483, "_is_main_interpret": 474, "_is_own": 96, "_is_valid_operand": 226, "_isdir": 483, "_isdst": 183, "_iterate_directori": 483, "_json": [482, 483], "_leave_task": [128, 483], "_length_": [176, 483], "_load_windows_store_cert": 483, "_local": [266, 482, 483], "_localetime__pad": 483, "_log": 267, "_log_traceback": 483, "_logpath": 332, "_lsprof": [308, 483], "_lzma": 483, "_mac_ver_gstalt": 477, "_mac_ver_lookup": 477, "_main_thread": 483, "_mainthread": 483, "_maintyp": 206, "_make": [160, 340, 347, 483], "_make_socket_transport": 128, "_makeresult": 388, "_malloc": 467, "_mangle_from_": 201, "_mapping__upd": 440, "_mappingsubclass__upd": 440, "_markupbas": [470, 472, 483], "_math": 483, "_maxfreelist": 468, "_maybe_compil": 483, "_md5": 483, "_member_names_": 483, "_member_type_": 483, "_meta": 483, "_method_to_typeid_": 283, "_mirroroutput": 96, "_missing_": [94, 211, 483], "_missing__": 483, "_mock_": 483, "_mock_cal": 389, "_mod": [472, 483], "_modulesetupfail": 96, "_msc_ver": 483, "_msg": 206, "_msi": 483, "_msvc_lang": 483, "_msvccompil": 483, "_multiarch": 483, "_multibytecodec": 483, "_multiprocess": 483, "_myattr": 203, "_n": 259, "_name": [93, 176, 181, 196, 205, 483], "_name_": [94, 211], "_namedintconst": 344, "_namespaceload": 483, "_namespacepath": 483, "_nntpbase": 483, "_node": [472, 483], "_noncallablemock__get_return_valu": 389, "_noncallablemock__get_side_effect": 389, "_noncallablemock__return_value_doc": 389, "_noncallablemock__set_return_valu": 389, "_noncallablemock__set_side_effect": 389, "_normal": 483, "_numeric_repr_": 211, "_ob_next": 63, "_ob_prev": 63, "_object": 176, "_opcod": 483, "_open": [395, 483], "_open_osfhandl": 483, "_oper": 483, "_operator_fallback": 289, "_optimize_unicod": 279, "_order_": [94, 211, 483], "_origin": 483, "_original_stderr": 96, "_original_stdout": 96, "_osx_support": 483, "_outfil": 85, "_overlap": [480, 483], "_pack_": 176, "_param": [196, 205, 206, 407], "_parameterkind": 483, "_paramspec_tvar": 483, "_pars": 230, "_parse_localenam": 483, "_parse_makefil": 483, "_parse_sub": 308, "_parseaddr": 483, "_parser": [279, 308], "_path": 483, "_patternend": 279, "_pi": [35, 481, 483], "_pickl": 483, "_pid": 283, "_pointer": 176, "_posixshmem": 483, "_posixsubprocess": [482, 483], "_previoustestclass": 96, "_private__nam": 68, "_proactorreadpipetransport": 483, "_process_work": 483, "_proto_memb": 483, "_protocolmeta": 483, "_proxi": [395, 483], "_pth": [34, 68, 280, 461, 479, 480, 483], "_py_addpendingcal": 483, "_py_addtoallobject": 482, "_py_atom": 483, "_py_atomic_": 483, "_py_atomic_load": 483, "_py_atomic_stor": 483, "_py_c_diff": 15, "_py_c_neg": 15, "_py_c_pow": 15, "_py_c_prod": 15, "_py_c_quot": 15, "_py_c_sum": 15, "_py_cast": 483, "_py_cast_impl": 483, "_py_char2wchar": [478, 483], "_py_checkrecursionlimit": [472, 482, 483], "_py_clearimmort": 483, "_py_closerang": 483, "_py_codeunit": 483, "_py_comp_diag_ignore_depr_decl": 483, "_py_comp_diag_pop": 483, "_py_comp_diag_push": 483, "_py_dealloc": 481, "_py_decodeutf8ex": 483, "_py_dg_strtod": 483, "_py_eval_evalframedefault": 104, "_py_fopen": 483, "_py_fopen_obj": 483, "_py_forgetrefer": [482, 483], "_py_getallocatedblock": 483, "_py_getglobalreftot": 474, "_py_getreftot": [482, 483], "_py_hashsecret": 483, "_py_identifi": 483, "_py_immortal_refcnt": [474, 483], "_py_initializefromarg": [482, 483], "_py_initializefromwidearg": [482, 483], "_py_initializemain": 34, "_py_internalst": 57, "_py_isfin": [33, 481], "_py_isimmort": [474, 483], "_py_negativerefcount": 483, "_py_newinterpret": 483, "_py_newinterpreterfromconfig": 483, "_py_newrefer": [482, 483], "_py_no_return": 35, "_py_no_sanitize_address": 483, "_py_no_sanitize_memori": 483, "_py_no_sanitize_thread": 483, "_py_nonestruct": [3, 86], "_py_packagecontext": 483, "_py_preiniti": 483, "_py_printrefer": 482, "_py_printreferenceaddress": 482, "_py_pyatexit": 483, "_py_reftot": 474, "_py_set_s": 473, "_py_set_typ": 473, "_py_setlocalefromenv": 483, "_py_setprogramfullpath": [473, 483], "_py_tpflags_have_vectorcal": 10, "_py_tracemalloc_config": 482, "_py_wchar2char": [478, 483], "_py_wfopen": 483, "_pyaccu": 483, "_pyaiterwrapper_typ": [482, 483], "_pyarg_nokwnam": 483, "_pyarg_unpackkeywordswithvararg": 483, "_pyast_alia": 431, "_pyast_annassign": 431, "_pyast_arg": 431, "_pyast_assert": 431, "_pyast_assign": 431, "_pyast_asyncfor": 431, "_pyast_asyncfunctiondef": 431, "_pyast_asyncwith": 431, "_pyast_attribut": 431, "_pyast_augassign": 431, "_pyast_await": 431, "_pyast_binop": 431, "_pyast_boolop": 431, "_pyast_break": 431, "_pyast_cal": 431, "_pyast_classdef": 431, "_pyast_compar": 431, "_pyast_comprehens": 431, "_pyast_const": 431, "_pyast_continu": 431, "_pyast_delet": 431, "_pyast_dict": 431, "_pyast_dictcomp": 431, "_pyast_excepthandl": 431, "_pyast_expr": 431, "_pyast_express": 431, "_pyast_for": 431, "_pyast_functiondef": 431, "_pyast_functiontyp": 431, "_pyast_generatorexp": 431, "_pyast_glob": 431, "_pyast_if": 431, "_pyast_ifexp": 431, "_pyast_import": 431, "_pyast_importfrom": 431, "_pyast_interact": 431, "_pyast_keyword": 431, "_pyast_lambda": 431, "_pyast_list": 431, "_pyast_listcomp": 431, "_pyast_match": 431, "_pyast_match_cas": 431, "_pyast_matcha": 431, "_pyast_matchclass": 431, "_pyast_matchmap": 431, "_pyast_matchor": 431, "_pyast_matchsequ": 431, "_pyast_matchsingleton": 431, "_pyast_matchstar": 431, "_pyast_matchvalu": 431, "_pyast_namedexpr": 431, "_pyast_nonloc": 431, "_pyast_paramspec": 431, "_pyast_pass": 431, "_pyast_rais": 431, "_pyast_return": 431, "_pyast_set": 431, "_pyast_setcomp": 431, "_pyast_slic": 431, "_pyast_star": 431, "_pyast_subscript": 431, "_pyast_tri": 431, "_pyast_trystar": 431, "_pyast_tupl": 431, "_pyast_typealia": 431, "_pyast_typevar": 431, "_pyast_typevartupl": 431, "_pyast_unaryop": 431, "_pyast_whil": 431, "_pyast_with": 431, "_pyast_withitem": 431, "_pyast_yield": 431, "_pyast_yieldfrom": 431, "_pybytes_insertthousandsgroup": [482, 483], "_pybytes_insertthousandsgroupinglocal": [482, 483], "_pybytes_repeat": 483, "_pybytes_res": [9, 483], "_pybyteswrit": 483, "_pycfunctionfast": 58, "_pycfunctionfastwithkeyword": 58, "_pycode_getextra": [13, 474, 483], "_pycode_quicken": 483, "_pycode_setextra": [13, 474, 483], "_pydatetim": 483, "_pydebug_printtotalref": 482, "_pydecim": 483, "_pydict_contain": 483, "_pydict_newpres": 483, "_pyerr_chainexcept": [474, 483], "_pyerr_chainexceptions1": [474, 483], "_pyerr_chainstackitem": 483, "_pyerr_display": 483, "_pyerr_getexcinfo": 483, "_pyerr_gettopmostexcept": 483, "_pyerr_occur": 483, "_pyerr_stackitem": [473, 483], "_pyeval_calltrac": 483, "_pyeval_evalcod": 483, "_pyeval_evalcodewithnam": 483, "_pyeval_evalframedefault": [98, 104, 483], "_pyeval_getasyncgenfin": 483, "_pyeval_getasyncgenfirstit": 483, "_pyeval_getcoroutineorigintrackingdepth": 483, "_pyeval_matchclass": 483, "_pyeval_requestcodeextraindex": [13, 474], "_pyeval_setasyncgenfin": 483, "_pyeval_setasyncgenfirstit": 483, "_pyeval_vector": [104, 483], "_pyfloat_digit": [482, 483], "_pyfloat_digitsinit": [482, 483], "_pyfloat_repr": [482, 483], "_pyframe_isentryfram": 483, "_pyframe_numslotsforcodeobject": 483, "_pyframeevalfunct": [33, 473, 483], "_pygilstate_reinit": 483, "_pyimport_findsharedfuncptrwindow": 483, "_pyimport_frozenbootstrap": 176, "_pyimport_loaddynamicmodul": 79, "_pyinterpreterconfig": 483, "_pyinterpreterfram": [26, 33, 473, 483], "_pyinterpreterstate_en": 483, "_pyinterpreterstate_getevalframefunc": [33, 483], "_pyinterpreterstate_idincref": 483, "_pyinterpreterstate_idinitref": 483, "_pyinterpreterstate_setevalframefunc": [33, 483], "_pyio": [469, 471, 474, 483], "_pyio_get_console_typ": 483, "_pylist_fromarrayst": 483, "_pylong": 483, "_pylong_add": 104, "_pyobject_assert": 456, "_pyobject_callmethodidobjarg": 483, "_pyobject_callmethodnoarg": [10, 483], "_pyobject_callmethodonearg": [10, 483], "_pyobject_callonearg": [10, 483], "_pyobject_checkconsist": 483, "_pyobject_clearmanageddict": [474, 483], "_pyobject_debugmalloc": 96, "_pyobject_debugmallocapi": 96, "_pyobject_debugmallocstat": 483, "_pyobject_extra_init": 58, "_pyobject_fastcall_prepend": 483, "_pyobject_fastcalldict": 10, "_pyobject_fre": 483, "_pyobject_functionstr": [482, 483], "_pyobject_gc_calloc": 483, "_pyobject_gc_track": [28, 481, 483], "_pyobject_gc_untrack": [28, 481, 483], "_pyobject_genericsetattrwithdict": 93, "_pyobject_get_weakrefs_listptr": [63, 474], "_pyobject_getdictptr": 49, "_pyobject_getmethod": 483, "_pyobject_getst": 483, "_pyobject_isfre": 483, "_pyobject_malloc": [104, 483], "_pyobject_new": 3, "_pyobject_newvar": 3, "_pyobject_realloc": 483, "_pyobject_vectorcal": 10, "_pyobject_vectorcallmethod": [10, 483], "_pyobject_visitmanageddict": [474, 483], "_pyopcode_opnam": 483, "_pyos_sigintev": 483, "_pypegen_add_type_comment_to_arg": 431, "_pypegen_alias_for_star": 431, "_pypegen_arguments_parsing_error": 431, "_pypegen_augoper": 431, "_pypegen_check_barry_as_flufl": 431, "_pypegen_check_fstring_convers": 431, "_pypegen_check_legacy_stmt": 431, "_pypegen_class_def_decor": 431, "_pypegen_cmpop_expr_pair": 431, "_pypegen_collect_call_seq": 431, "_pypegen_concatenate_str": 431, "_pypegen_constant_from_str": 431, "_pypegen_constant_from_token": 431, "_pypegen_decoded_constant_from_token": 431, "_pypegen_dummy_nam": 431, "_pypegen_empty_argu": 431, "_pypegen_ensure_imaginari": 431, "_pypegen_ensure_r": 431, "_pypegen_formatted_valu": 431, "_pypegen_function_def_decor": 431, "_pypegen_get_cmpop": 431, "_pypegen_get_expr": 431, "_pypegen_get_expr_nam": 431, "_pypegen_get_key": 431, "_pypegen_get_last_comprehension_item": 431, "_pypegen_get_pattern": 431, "_pypegen_get_pattern_key": 431, "_pypegen_get_valu": 431, "_pypegen_interactive_exit": 431, "_pypegen_join_names_with_dot": 431, "_pypegen_join_sequ": 431, "_pypegen_joined_str": 431, "_pypegen_key_pattern_pair": 431, "_pypegen_key_value_pair": 431, "_pypegen_keyword_or_star": 431, "_pypegen_make_argu": 431, "_pypegen_make_modul": 431, "_pypegen_map_names_to_id": 431, "_pypegen_name_default_pair": 431, "_pypegen_nonparen_genexp_in_cal": 431, "_pypegen_pars": 431, "_pypegen_parser_new": 483, "_pypegen_raise_error_known_loc": 483, "_pypegen_seq_append_to_end": 431, "_pypegen_seq_count_dot": 431, "_pypegen_seq_delete_starred_expr": 431, "_pypegen_seq_extract_starred_expr": 431, "_pypegen_seq_flatten": 431, "_pypegen_seq_insert_in_front": 431, "_pypegen_set_expr_context": 431, "_pypegen_setup_full_format_spec": 431, "_pypegen_singleton_seq": 431, "_pypegen_slash_with_default": 431, "_pypegen_star_etc": 431, "_pypreconfig": 483, "_pyrun_anyfileobject": 104, "_pyrun_simplefileobject": 104, "_pyruntim": [34, 482, 483], "_pyruntime_initi": 483, "_pyruntimest": [481, 483], "_pyruntimestate_fini": 483, "_pystate_addmodul": 483, "_pystaticobject_checkrefcnt": 483, "_pystatictype_dealloc": 483, "_pysys_clearaudithook": [33, 142], "_pysys_getobjectid": 483, "_pysys_setobjectid": 483, "_pythread_currentfram": 483, "_pythreadstate_curr": 483, "_pythreadstate_getfram": [482, 483], "_pythreadstate_uncheckedget": 483, "_pytime_gettimeofday": 483, "_pytime_localtim": 483, "_pytraceback_add": 483, "_pytracemalloc_gettraceback": 483, "_pytracemalloc_newrefer": [482, 483], "_pytracemalloc_track": 483, "_pytracemalloc_untrack": 483, "_pytrash_begin": 483, "_pytrash_cond": 483, "_pytrash_deposit_object": 483, "_pytrash_destroy_chain": 483, "_pytrash_end": 483, "_pytrash_thread_deposit_object": 483, "_pytrash_thread_destroy_chain": 483, "_pytuple_res": [60, 464], "_pytype_getmodulebydef": 483, "_pytype_lookup": [61, 93, 472, 483], "_pyunicode_asunicod": [473, 482], "_pyunicode_clearstaticstr": [482, 483], "_pyunicode_equaltoasciiid": 483, "_pyunicode_fromid": 483, "_pyunicode_name_capi": [472, 483], "_pyunicode_new": 96, "_pyunicodewrit": 483, "_pyvectorcall_funct": 10, "_queue": 483, "_quote_html": 483, "_randbelow": 475, "_random": [426, 483], "_randommodul": 483, "_read_readi": 483, "_read_ready_cb": 483, "_reconstruct": 299, "_recursivewildcardselector": 483, "_register_atexit": 483, "_register_task": [128, 483], "_regrtest_top": 193, "_release_sav": 96, "_remove_dups_flatten": 483, "_removetestatindex": [388, 477], "_replac": [160, 394, 468, 483], "_request": 395, "_reset_internal_lock": 483, "_respons": 395, "_resultfordocleanup": 96, "_resultobj": 86, "_retval": 297, "_rlock": 96, "_rlock__block": 96, "_rlock__count": 96, "_rlock__own": 96, "_root": 369, "_run_exitfunc": 483, "_run_fin": 483, "_safe_repr": 483, "_save": 33, "_sc_aix_realmem": 483, "_sc_open_max": 483, "_schedule_callback": 483, "_scproxi": 483, "_screen": 384, "_selectordatagramtransport": 483, "_selectorsockettransport": 483, "_send_traceback_head": 468, "_sendfile_use_sendfil": 483, "_sentinel": 85, "_servername_callback": 483, "_set_anothervalu": 410, "_set_foo": 411, "_set_x": 116, "_setmod": 483, "_setroot": 413, "_sha1": 483, "_sha2": 483, "_sha256": 483, "_sha3": [473, 483], "_sha512": 483, "_sharedfil": 483, "_showwarnmsg": 483, "_shutdown": [469, 483], "_signal": 483, "_signature_get_bound_param": 483, "_signature_strip_non_python_syntax": 483, "_simplecdata": 176, "_slotnam": [279, 483], "_slotvalu": 93, "_socket": [465, 483], "_sourc": [160, 480, 483], "_spam": 440, "_spec_signatur": 483, "_sqlite": [456, 483], "_sqlite3": 483, "_srcfile": 101, "_sre": [279, 478, 483], "_ssl": 483, "_sslcontext": 483, "_sslprotocoltransport": 483, "_sslsocket": 483, "_stack_overflow": 483, "_start": 104, "_start_serv": 483, "_stat": [477, 483], "_static": [296, 483], "_station_id": 85, "_statist": 483, "_stats_clear": 483, "_stats_dump": 483, "_stats_off": 483, "_stats_on": 483, "_stdcallfuncptr": 176, "_stderr_buff": 96, "_stdout_buff": 96, "_step": 483, "_storeact": 120, "_stream": 281, "_stricmp": 483, "_string": 483, "_strptime": 483, "_struct": 483, "_structur": [196, 204, 205], "_subpart": 206, "_subtyp": [198, 206], "_sunder_": [68, 182], "_syscmd_ver": 483, "_sysconfigdata": 483, "_tee": 261, "_temp": 225, "_templat": 296, "_temporaryfileclos": 483, "_temporaryfilewrapp": 483, "_test": [388, 475, 483], "_test_all_chown_common": 483, "_test_multiprocess": 483, "_testcapi": [362, 456, 483], "_testcapimodul": 483, "_testconsol": 483, "_testemb": [456, 483], "_testinternalcapi": 483, "_testmethodnam": 96, "_testmultiphas": 483, "_testsharedmemori": 483, "_text": 206, "_texttestresult": [474, 483], "_thread": [63, 68, 84, 96, 142, 164, 254, 365, 465, 474, 476, 483], "_threading_loc": 365, "_threadwakeup": 483, "_time": 183, "_timezon": 483, "_tkinter": [66, 369, 384, 465, 473, 478, 482, 483], "_top_level_dir": 483, "_tracemalloc": 483, "_tstate": 483, "_type": 279, "_type_": 176, "_type_check": 473, "_type_equality_func": 96, "_typenam": 483, "_typeobject": [63, 75], "_u": 176, "_unpack_zipfil": 483, "_unpickler_read": 483, "_unpickler_setinputstream": 483, "_unregister_task": [128, 483], "_unsafe_url_bytes_to_remov": [472, 479, 480, 481, 482], "_unspecifi": 362, "_untrack_read": 483, "_urlopen": 395, "_use_args_": 483, "_use_broken_old_ctypes_structure_semantics_": [474, 483], "_use_posix_spawn": 348, "_use_vfork": 348, "_utest": 483, "_uuid": 483, "_v2": 483, "_validation_record": 281, "_valu": [93, 196, 205], "_value_": [94, 211], "_verbose__verbos": 96, "_version": 483, "_voltag": 225, "_vt_co": 386, "_wait": 96, "_wakeup": 483, "_warn": [362, 472, 483], "_warn_skip": 400, "_weakref": [5, 482, 483], "_weakrefset": 382, "_winapi": [142, 483], "_windowsconsoleio": [33, 34], "_winreg": [462, 468, 469, 470], "_without_invalid": 431, "_wmimodul": 483, "_worker": 483, "_write": 407, "_write_readi": 483, "_x": [225, 259, 468, 479], "_xoption": [34, 59, 352, 450, 455], "_xxsubinterpret": 483, "_xxsubinterpretersmodul": 474, "_z": 283, "_zlibdecompressor": 483, "_zoneinfo": 483, "a0": 80, "a0c8f0": 384, "a1": [102, 228, 483], "a1b2c3": 319, "a2": [102, 228, 319], "a2b_": [146, 476], "a2b_base64": [143, 146, 483], "a2b_hex": [146, 158, 477], "a2b_hqx": [473, 482, 483], "a2b_qp": [146, 483], "a2b_uu": 146, "a7p10": 344, "a8098c1a": [398, 467], "a85": 477, "a85decod": [143, 477, 483], "a85encod": [143, 477, 483], "a_": 177, "a_altcharset": 177, "a_attribut": 177, "a_blink": [92, 177], "a_bold": [92, 177, 468], "a_bool": 167, "a_chartext": 177, "a_color": 177, "a_dim": [92, 177], "a_expr": 430, "a_float": 167, "a_horizont": 177, "a_invi": 177, "a_ital": [177, 483], "a_left": 177, "a_list": [85, 381], "a_lock": 115, "a_low": 177, "a_mock": 389, "a_norm": 177, "a_protect": 177, "a_revers": [92, 177], "a_right": 177, "a_standout": [92, 177], "a_top": 177, "a_tupl": 428, "a_underlin": [92, 177], "a_url": 110, "a_vert": 177, "aa": [102, 160, 261, 319, 442, 469], "aaa": 469, "aaaa": [261, 319, 469], "aaaaa": 469, "aaaaaa": 319, "aaaab": 319, "aaaabbbccd": 261, "aaaabbbccdaabbb": 261, "aaab": 319, "aabbbbccddddeeffffgg": 343, "aabcadeaf": 261, "aac": [478, 483], "aac2": 337, "aahz": [462, 466, 467], "aapo": 483, "aarch64": [456, 483], "aaron": [477, 483], "aasland": [472, 473, 474, 483], "ab": [103, 106, 149, 160, 190, 234, 261, 270, 292, 309, 319, 344, 417, 426, 435, 442, 462, 465], "ab56ef": 258, "aba": 95, "abaakouk": 483, "ababababab": 106, "abahurir": 483, "abandon": [213, 369, 415, 475], "abbc": 95, "abbccad": 261, "abbrevi": [68, 109, 118, 177, 183, 186, 266, 292, 297, 308, 348, 366, 381, 413, 455, 477, 478, 479, 483], "abc": [63, 68, 73, 78, 80, 85, 87, 88, 93, 95, 106, 109, 112, 126, 133, 136, 160, 167, 170, 176, 182, 184, 187, 191, 226, 228, 242, 251, 252, 254, 258, 259, 261, 267, 268, 280, 283, 290, 299, 315, 319, 321, 330, 331, 344, 345, 352, 362, 382, 385, 422, 423, 426, 427, 428, 430, 432, 435, 440, 442, 462, 464, 465, 466, 467, 468, 469, 470, 473, 474, 479, 480, 481, 483], "abc1": 344, "abc123": 468, "abc5": 435, "abcabc": 344, "abcabc1": 344, "abcabcabc": 462, "abcb": 106, "abcbd": 106, "abcd": [106, 109, 160, 190, 261, 465, 468, 472], "abcdef": [161, 176, 258, 261, 319, 469, 477], "abcdefg": [261, 291, 473, 483], "abcdefgh": [475, 477], "abcdefghijklm": 468, "abcdefghijklmnopqrstuvwxyz": [344, 345, 469], "abcdefghijklmnopqrstuvwxyz0123456789": 319, "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz": [344, 469], "abcefg": 344, "abcmeta": [116, 428, 468, 475, 476, 477, 483], "abday_1": 266, "abday_2": 266, "abday_3": 266, "abday_4": 266, "abday_5": 266, "abday_6": 266, "abday_7": 266, "abdolmalek": 319, "abe": 108, "abelson": 95, "abeysiriwardan": 473, "abhilash": [478, 483], "abi": [3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 21, 22, 23, 24, 25, 26, 28, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 45, 47, 48, 49, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 98, 100, 352, 456, 460, 469, 473, 474, 477, 478, 480, 482, 483, 484], "abi3": [57, 476], "abid": 480, "abiflag": [352, 450, 456, 475, 481, 483], "abil": [7, 72, 73, 85, 92, 95, 101, 102, 106, 117, 213, 250, 253, 268, 283, 292, 324, 332, 344, 410, 421, 423, 426, 427, 463, 464, 465, 467, 468, 469, 475, 476, 477, 478, 479, 483], "abiv2": 483, "abl": [7, 33, 63, 73, 75, 76, 77, 84, 92, 94, 96, 101, 102, 106, 109, 141, 151, 158, 159, 169, 176, 177, 181, 183, 194, 235, 255, 267, 268, 269, 283, 292, 293, 295, 297, 299, 309, 314, 319, 332, 337, 340, 341, 348, 358, 362, 365, 384, 394, 400, 406, 413, 421, 427, 428, 434, 455, 456, 461, 462, 463, 464, 467, 469, 474, 475, 476, 477, 480, 481, 483], "abmon_1": 266, "abmon_10": 266, "abmon_11": 266, "abmon_12": 266, "abmon_2": 266, "abmon_3": 266, "abmon_4": 266, "abmon_5": 266, "abmon_6": 266, "abmon_7": 266, "abmon_8": 266, "abmon_9": 266, "abnorm": [297, 352, 394, 475], "abnsec": 319, "abort": [5, 35, 42, 59, 73, 102, 130, 133, 136, 138, 212, 213, 223, 248, 293, 297, 333, 340, 341, 352, 358, 359, 365, 373, 388, 432, 465, 480, 483], "abortretryignor": 373, "about": [5, 7, 13, 22, 23, 25, 27, 28, 42, 51, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 80, 84, 89, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 128, 133, 141, 144, 154, 155, 157, 158, 169, 176, 178, 181, 183, 186, 187, 190, 191, 194, 195, 197, 201, 203, 207, 209, 213, 216, 225, 235, 243, 245, 247, 250, 255, 261, 265, 267, 268, 269, 270, 271, 275, 278, 279, 283, 288, 292, 293, 297, 299, 307, 308, 312, 319, 320, 321, 322, 328, 330, 332, 333, 335, 337, 339, 340, 341, 342, 344, 347, 348, 352, 353, 358, 359, 362, 369, 376, 381, 384, 386, 388, 394, 395, 400, 405, 408, 410, 412, 414, 415, 416, 422, 423, 425, 427, 428, 429, 430, 432, 434, 436, 455, 456, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "abouttoquit": 102, "abov": [5, 7, 23, 33, 34, 42, 58, 63, 64, 72, 73, 75, 76, 85, 92, 94, 95, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 117, 120, 137, 139, 149, 151, 158, 163, 167, 169, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 197, 200, 203, 205, 208, 213, 215, 225, 230, 234, 235, 242, 243, 247, 251, 258, 266, 267, 268, 269, 270, 275, 278, 283, 288, 292, 293, 297, 299, 308, 313, 319, 324, 332, 333, 334, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 354, 362, 366, 369, 375, 376, 380, 384, 386, 388, 394, 395, 397, 405, 408, 410, 413, 420, 421, 426, 427, 428, 431, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 480, 481, 482, 483], "above_normal_priority_class": 348, "abra": 345, "abracadabra": [87, 93, 160, 283, 344, 345, 442, 466], "abraham": [475, 483], "abram": 93, "abridg": 271, "abrupt": [338, 365, 483], "abs": [47, 63, 95, 154, 183, 186, 225, 275, 289, 291, 344, 381, 382, 384, 386, 428, 430, 440, 442, 450, 473, 480, 483], "abs_tol": [154, 275, 478], "abscissa": 478, "absenc": [101, 110, 115, 255, 265, 267, 319, 341, 365, 428, 443, 483], "absent": [18, 120, 177, 268, 297, 337, 395, 475, 483], "absfloatvalu": 225, "absolut": [31, 33, 34, 47, 61, 63, 68, 72, 76, 84, 101, 113, 139, 141, 144, 151, 153, 155, 186, 191, 193, 213, 225, 230, 242, 250, 251, 257, 258, 268, 269, 270, 275, 278, 292, 293, 296, 324, 331, 332, 335, 340, 344, 345, 352, 354, 358, 366, 369, 382, 384, 386, 394, 399, 405, 415, 422, 425, 430, 432, 436, 446, 450, 455, 456, 461, 462, 466, 468, 469, 470, 474, 475, 476, 477, 478, 480, 482, 483, 484], "absolute_import": [113, 436, 467], "absolute_nam": 250, "absolutelinkerror": 358, "absolutepatherror": 358, "abspath": [200, 294, 296, 399, 469, 483], "abstract": [32, 55, 63, 68, 74, 76, 78, 79, 84, 85, 87, 91, 92, 93, 132, 133, 169, 176, 182, 183, 186, 208, 213, 221, 226, 244, 251, 253, 254, 258, 264, 269, 280, 290, 293, 301, 329, 337, 341, 344, 352, 386, 425, 428, 430, 465, 467, 469, 470, 472, 475, 476, 478, 479, 480, 482, 483, 484], "abstractasynccontextmanag": [169, 344, 386, 480, 483], "abstractbasicauthhandl": [68, 256, 389, 483], "abstractchildwatch": [132, 474, 483], "abstractclassmethod": [116, 475, 476], "abstractcontextmanag": [169, 344, 386, 479, 483], "abstractdigestauthhandl": [68, 256, 389, 483], "abstracteventloop": [126, 128, 132, 482, 483], "abstracteventlooppolici": [130, 132, 474, 483], "abstracthttphandl": [389, 479, 483], "abstractmethod": [93, 116, 226, 250, 251, 253, 289, 293, 329, 468, 476], "abstractproperti": [116, 468, 476], "abstractserv": 483, "abstractset": 386, "abstractstaticmethod": [116, 475, 476], "absurd": 483, "abus": [358, 436, 475, 483], "abxcd": 190, "abxd": [106, 319, 480], "abycdf": 190, "ac": [149, 160, 261, 426, 456, 465, 483], "ac_apple_universal_build": 355, "ac_c_char_unsign": 483, "ac_cache_check": 483, "ac_cv_buggy_getaddrinfo": 456, "ac_cv_cxx_thread": 483, "ac_cv_file__dev_ptc": 456, "ac_cv_file__dev_ptmx": 456, "ac_cv_func_shutdown": 483, "ac_header_tim": 483, "ac_path_target_tool": 483, "ac_path_tool": 483, "acbd18db4cc2f85cedef654fccc4a4d8": 340, "acc": [476, 483], "acceler": [384, 462, 463, 467, 470, 476, 477, 483], "accent": [109, 331], "accept": [5, 23, 28, 31, 33, 58, 61, 64, 66, 67, 68, 73, 75, 76, 79, 85, 89, 92, 95, 99, 102, 106, 107, 109, 110, 117, 120, 126, 133, 137, 139, 141, 146, 149, 151, 155, 158, 163, 167, 169, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 201, 205, 206, 208, 209, 213, 215, 221, 226, 228, 234, 235, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 278, 282, 283, 292, 293, 295, 299, 314, 319, 324, 328, 329, 330, 332, 333, 335, 338, 340, 341, 344, 348, 352, 358, 362, 364, 366, 375, 376, 378, 380, 382, 385, 386, 388, 394, 395, 397, 403, 405, 407, 411, 413, 416, 419, 421, 422, 426, 427, 428, 430, 432, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "accept2dyear": [475, 476], "accept_connect": 365, "acceptlist": 362, "acceptstr": 362, "accepttupl": 362, "access": [5, 7, 11, 16, 23, 31, 33, 45, 47, 49, 50, 54, 55, 59, 60, 61, 63, 68, 72, 73, 75, 76, 77, 79, 84, 85, 87, 93, 96, 99, 101, 102, 106, 109, 110, 118, 136, 138, 139, 142, 146, 149, 151, 158, 160, 161, 169, 170, 177, 181, 183, 184, 186, 191, 193, 194, 196, 200, 203, 205, 207, 212, 213, 217, 218, 221, 225, 226, 230, 233, 235, 242, 243, 244, 245, 246, 247, 250, 251, 253, 254, 255, 257, 258, 259, 261, 267, 269, 271, 276, 278, 280, 281, 282, 283, 284, 292, 293, 295, 296, 297, 299, 302, 312, 314, 319, 320, 322, 324, 328, 330, 332, 333, 335, 337, 338, 339, 340, 342, 344, 348, 352, 353, 354, 355, 358, 359, 362, 365, 369, 375, 376, 381, 384, 385, 386, 387, 388, 394, 395, 399, 404, 406, 410, 411, 412, 413, 415, 419, 420, 422, 425, 426, 427, 429, 430, 432, 436, 449, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 481, 482, 483], "access_copi": 278, "access_default": [278, 483], "access_read": 278, "access_writ": 278, "accesslog": 451, "accessor": [11, 68, 85, 225, 273, 411, 467, 481, 483], "accid": [76, 120, 468, 469, 470, 481, 483], "accident": [25, 33, 102, 186, 190, 193, 213, 436, 463, 465, 468, 478, 483], "accommod": [72, 102, 201, 250, 369, 466, 483], "accompani": [191, 271, 335, 337, 463, 475, 483], "accomplish": [33, 85, 120, 177, 248, 330, 410, 427, 483], "accord": [7, 18, 33, 39, 64, 66, 76, 92, 93, 94, 95, 99, 102, 103, 109, 151, 158, 169, 181, 183, 186, 196, 201, 203, 205, 208, 209, 216, 218, 225, 226, 233, 235, 243, 247, 248, 250, 253, 261, 266, 267, 268, 281, 283, 292, 293, 308, 341, 342, 344, 346, 347, 348, 366, 375, 376, 378, 384, 388, 394, 395, 410, 422, 426, 428, 430, 432, 435, 455, 461, 464, 465, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 483], "account": [84, 106, 158, 160, 163, 167, 183, 186, 190, 191, 202, 209, 223, 225, 235, 244, 266, 267, 268, 286, 293, 307, 339, 347, 352, 358, 359, 362, 399, 467, 471, 475, 477, 478, 479, 481, 482, 483], "accross": 483, "acct": 223, "accumul": [85, 92, 95, 120, 186, 226, 261, 292, 299, 308, 318, 331, 380, 388, 463, 475, 476, 481, 483], "accur": [42, 176, 207, 245, 275, 292, 308, 352, 358, 366, 369, 382, 422, 466, 468, 469, 474, 475, 477, 479, 480, 481, 483], "accuraci": [183, 225, 261, 275, 308, 444, 466, 474, 483], "accustom": 186, "acdeb": 160, "ace": [158, 318, 319, 465], "achiev": [33, 45, 63, 72, 85, 95, 100, 102, 120, 158, 167, 176, 226, 245, 261, 267, 283, 320, 341, 352, 362, 365, 369, 374, 395, 413, 428, 435, 436, 462, 464, 465, 467, 477, 478, 483], "achim": 468, "achraf": 481, "acid": [167, 464, 474], "ack": [0, 178, 468], "acknowledg": [68, 103, 136, 167, 178, 358, 426], "acl": [248, 332], "acloc": [456, 474, 483], "aclos": [126, 161, 169, 430, 472, 482, 483], "acm": [243, 318], "aco": [154, 275], "acosh": [154, 275, 468, 483], "acquaint": 292, "acquir": [7, 33, 73, 96, 115, 138, 169, 208, 215, 267, 271, 283, 293, 333, 341, 358, 365, 374, 428, 467, 468, 469, 470, 473, 475, 476, 478, 480, 483], "acquire_db_connect": 169, "acquire_lock": [470, 474], "acquire_resourc": 169, "acquire_special_resourc": 169, "acquisit": [169, 267, 365, 456, 475, 483], "acronym": 366, "across": [33, 42, 61, 63, 68, 85, 100, 120, 167, 169, 176, 183, 191, 193, 209, 255, 260, 261, 266, 267, 268, 269, 283, 299, 314, 320, 328, 330, 352, 365, 369, 376, 378, 384, 413, 430, 435, 465, 466, 468, 469, 474, 475, 479, 480, 481, 483], "acs": 177, "acs_": 92, "acs_bbss": 177, "acs_block": 177, "acs_board": 177, "acs_bsb": 177, "acs_bssb": 177, "acs_bsss": 177, "acs_bte": 177, "acs_bullet": 177, "acs_ckboard": 177, "acs_darrow": 177, "acs_degre": 177, "acs_diamond": 177, "acs_gequ": 177, "acs_hlin": 177, "acs_lantern": 177, "acs_larrow": 177, "acs_lequ": 177, "acs_llcorn": 177, "acs_lrcorn": 177, "acs_lte": 177, "acs_nequ": 177, "acs_pi": 177, "acs_plminus": [92, 177], "acs_plus": 177, "acs_rarrow": 177, "acs_rte": 177, "acs_s1": 177, "acs_s3": 177, "acs_s7": 177, "acs_s9": 177, "acs_sbb": 177, "acs_sbsb": 177, "acs_sbss": 177, "acs_ssb": 177, "acs_ssbb": 177, "acs_sssb": 177, "acs_ssss": 177, "acs_sterl": 177, "acs_tte": 177, "acs_uarrow": 177, "acs_ulcorn": [92, 177], "acs_urcorn": 177, "acs_vlin": 177, "act": [63, 67, 75, 85, 95, 101, 144, 176, 181, 183, 191, 196, 201, 205, 208, 225, 226, 244, 248, 250, 253, 259, 267, 293, 296, 309, 311, 340, 344, 352, 365, 375, 384, 385, 386, 426, 428, 435, 461, 462, 463, 468, 472, 476, 477, 481, 482, 483], "action": [33, 42, 55, 68, 73, 75, 76, 89, 92, 106, 115, 118, 144, 155, 160, 169, 177, 190, 200, 215, 228, 242, 248, 281, 283, 293, 297, 301, 308, 309, 325, 328, 333, 338, 340, 344, 352, 358, 359, 361, 365, 376, 384, 388, 389, 395, 399, 400, 426, 428, 441, 455, 462, 463, 465, 466, 467, 468, 469, 471, 475, 477, 482, 483], "action_1": 472, "action_2": 472, "action_3": 472, "action_wildcard": 472, "actiontext": 281, "activ": [13, 22, 23, 27, 33, 49, 59, 63, 66, 72, 92, 96, 106, 132, 138, 139, 144, 151, 152, 160, 169, 177, 186, 213, 218, 223, 243, 247, 251, 272, 283, 288, 292, 295, 297, 305, 308, 314, 328, 334, 338, 340, 341, 344, 348, 352, 353, 365, 366, 369, 376, 384, 385, 399, 411, 412, 415, 436, 441, 453, 455, 461, 462, 464, 465, 467, 468, 469, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "activate_stack_trampolin": [104, 352, 474, 483], "active_children": 283, "active_count": [247, 283, 365, 468, 472, 483], "active_tim": 96, "active_us": 441, "activecount": [365, 468, 472, 483], "activeforeground": 369, "activepython": [85, 461], "activest": [85, 105, 454, 459, 462, 475], "activetcl": 483, "actor": [413, 441, 481], "actual": [5, 7, 13, 23, 33, 39, 49, 55, 58, 61, 63, 64, 66, 73, 75, 76, 77, 84, 85, 92, 93, 94, 96, 99, 101, 102, 106, 109, 117, 139, 149, 151, 158, 160, 167, 169, 173, 176, 177, 178, 181, 191, 193, 197, 200, 203, 206, 207, 209, 213, 225, 230, 234, 245, 248, 250, 251, 252, 253, 255, 261, 265, 267, 268, 269, 270, 271, 278, 281, 283, 292, 293, 295, 297, 305, 308, 320, 324, 325, 330, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 358, 365, 369, 372, 381, 384, 386, 388, 389, 390, 395, 399, 405, 410, 414, 422, 426, 427, 428, 429, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 480, 481, 482, 483], "acut": 109, "acycl": 232, "ad": [103, 261, 426, 465], "adam": [84, 468, 469, 472, 474, 475, 476, 479, 480, 481, 482, 483], "adapt": [42, 68, 85, 102, 141, 176, 186, 191, 225, 230, 267, 297, 298, 332, 337, 341, 369, 384, 462, 463, 467, 469, 471, 473, 474, 479, 483], "adapt_date_iso": 340, "adapt_datetime_epoch": 340, "adapt_datetime_iso": 340, "adapt_point": 340, "adaptor": 390, "adat": 304, "add": [5, 7, 28, 31, 33, 34, 45, 55, 58, 59, 63, 73, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 139, 141, 151, 152, 155, 157, 158, 160, 161, 163, 167, 169, 177, 181, 183, 186, 189, 191, 193, 194, 195, 196, 197, 200, 203, 205, 206, 208, 223, 225, 226, 230, 232, 234, 236, 243, 244, 245, 247, 250, 255, 258, 261, 262, 267, 268, 271, 276, 281, 283, 289, 291, 292, 293, 299, 301, 302, 307, 308, 319, 321, 328, 332, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 352, 353, 354, 355, 358, 362, 364, 366, 369, 375, 376, 384, 385, 386, 388, 389, 390, 394, 395, 400, 410, 411, 413, 414, 419, 420, 421, 422, 423, 426, 427, 428, 430, 431, 432, 434, 435, 436, 440, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "add_": [196, 197], "add_alia": 195, "add_altern": [200, 205], "add_argu": [68, 89, 102, 118, 160, 190, 200, 228, 309, 399, 451, 469, 475, 483], "add_argument_group": [120, 483], "add_attach": [200, 205], "add_cgi_var": 407, "add_charset": 195, "add_child_handl": 132, "add_codec": 195, "add_cookie_head": 243, "add_count": 473, "add_cross_compiling_path": 483, "add_data": [281, 395, 477], "add_dll_directori": [142, 293, 481, 483], "add_done_callback": [129, 139, 166, 480, 483], "add_fallback": 230, "add_fil": 281, "add_flag": 271, "add_fold": 271, "add_get_handl": 197, "add_handl": [110, 395], "add_head": [196, 205, 206, 389, 395, 407], "add_help": [68, 118], "add_help_opt": 292, "add_histori": 320, "add_label": 271, "add_log": 386, "add_method": 93, "add_mutually_exclusive_group": [89, 120, 483], "add_not": [213, 443, 473, 483], "add_object_typ": 483, "add_on": 181, "add_opt": [120, 292, 465], "add_option_group": 292, "add_par": 395, "add_pars": [102, 120, 475], "add_password": [110, 395], "add_payload": 199, "add_read": [126, 130, 131, 133, 136, 483], "add_rel": [200, 205], "add_sect": [167, 475], "add_sequ": 271, "add_set_handl": 197, "add_signal_handl": [126, 130, 131, 483], "add_spam": 45, "add_stream": 281, "add_subclass": 483, "add_subpars": [102, 120, 475, 480, 483], "add_tabl": 281, "add_task": 236, "add_trick": 440, "add_two": 386, "add_typ": 276, "add_unicode_checkmark": 386, "add_unredirected_head": [243, 395], "add_writ": [126, 130, 131, 483], "addasynccleanup": 388, "addaudithook": [59, 142, 352, 450], "addch": [92, 177, 483], "addclasscleanup": [388, 481, 483], "addcleanup": [388, 389, 390, 469, 481, 483], "addcompon": 384, "adddlldirectori": 293, "adddur": [388, 483], "added": [4, 5, 7, 10, 11, 13, 14, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 42, 43, 45, 47, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 68, 73, 75, 85, 92, 93, 94, 95, 98, 100, 101, 102, 103, 106, 112, 115, 116, 117, 120, 121, 122, 126, 128, 129, 132, 133, 135, 136, 138, 139, 141, 143, 144, 149, 150, 151, 154, 155, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 179, 181, 183, 184, 186, 188, 190, 191, 193, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 218, 221, 223, 225, 226, 227, 230, 231, 232, 234, 235, 237, 238, 239, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 283, 284, 288, 291, 292, 293, 294, 296, 297, 299, 300, 302, 303, 304, 305, 307, 308, 311, 312, 314, 316, 318, 319, 320, 321, 322, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 402, 403, 405, 407, 410, 411, 413, 419, 420, 421, 422, 423, 424, 425, 427, 428, 429, 430, 432, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "addendum": 426, "adder": 95, "adder_funct": 420, "adderror": [388, 483], "adderrorinfo": 483, "addexpectedfailur": 388, "addext": 483, "addfailur": [388, 483], "addfil": 358, "addfilt": [101, 102, 267], "addhandl": [101, 102, 267, 471], "addhead": 395, "addict": 463, "addin": 483, "addind": 411, "addinfourl": [395, 483], "adding": [13, 22, 33, 47, 61, 68, 73, 74, 77, 84, 85, 92, 93, 95, 100, 106, 110, 141, 151, 181, 186, 195, 196, 197, 205, 206, 207, 243, 247, 262, 267, 271, 293, 319, 340, 344, 365, 376, 386, 388, 395, 413, 422, 423, 428, 430, 432, 435, 436, 455, 456, 461, 462, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "addit": [5, 7, 9, 23, 31, 33, 41, 42, 45, 58, 61, 63, 66, 68, 73, 75, 76, 84, 94, 95, 96, 99, 100, 101, 102, 106, 109, 112, 115, 117, 120, 139, 141, 151, 157, 158, 167, 169, 173, 176, 177, 180, 181, 182, 183, 184, 186, 189, 190, 191, 193, 194, 196, 197, 199, 202, 203, 205, 206, 208, 213, 215, 218, 221, 225, 226, 230, 234, 235, 242, 243, 245, 247, 250, 251, 255, 257, 258, 259, 261, 262, 266, 267, 268, 270, 271, 276, 278, 283, 285, 292, 293, 299, 305, 307, 308, 313, 314, 319, 321, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 386, 387, 388, 394, 395, 399, 400, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 444, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "addlevelnam": 267, "addmodulecleanup": [388, 481, 483], "addnstr": 177, "addpackagepath": 279, "addr": [133, 136, 151, 170, 259, 329, 337, 341, 362, 420, 475, 478, 483], "addr4": 99, "addr6": [99, 478], "addr_spec": [203, 476], "addr_typ": 337, "address": [5, 9, 23, 42, 51, 58, 63, 64, 68, 73, 75, 85, 96, 101, 102, 107, 112, 121, 126, 128, 133, 142, 164, 170, 176, 191, 193, 200, 203, 208, 209, 212, 215, 223, 225, 242, 243, 245, 256, 262, 267, 269, 270, 271, 284, 319, 322, 335, 337, 338, 340, 341, 362, 382, 386, 394, 420, 428, 456, 462, 464, 465, 467, 468, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "address_bit": 483, "address_exclud": 259, "address_famili": [337, 338], "address_in_rang": 483, "address_str": 245, "addresse": [102, 269], "addressfamili": 337, "addresshead": 203, "addresslist": 483, "addressof": [142, 176], "addresssanit": [456, 483], "addressvalueerror": [99, 259], "addrq": 483, "addshap": 384, "addsitedir": 334, "addskip": [388, 483], "addstr": [92, 177, 483], "addsubtest": [388, 483], "addsuccess": 388, "addtest": [193, 388], "addtwic": 440, "addtypeequalityfunc": [388, 469], "addunexpectedsuccess": 388, "addwidget": 102, "adequ": [61, 63, 76, 213, 469, 476], "adher": [158, 167, 245, 262, 269, 283, 434], "adhf": 102, "adict": 304, "aditya": [473, 474, 483], "adjac": [106, 183, 190, 252, 270, 282, 319, 388, 410, 435, 461, 477, 480, 483], "adject": [140, 446], "adjunct": 475, "adjust": [5, 45, 54, 56, 64, 120, 160, 177, 183, 186, 201, 208, 293, 307, 324, 334, 340, 341, 344, 366, 369, 375, 376, 413, 462, 469, 477, 479, 480, 481, 483], "adjust_int_max_str_digit": 362, "adler": [424, 426], "adler32": [235, 424, 483], "admin": 247, "adminemailhandl": 102, "adminexecutesequ": 281, "administ": [398, 462, 468, 480, 483], "administr": [31, 33, 59, 101, 151, 155, 248, 287, 288, 293, 334, 337, 366, 407, 429, 461, 466, 476, 481, 482, 483], "adminuisequ": 281, "adminuserid": 386, "admit": 103, "adnan": 483, "ado": 154, "adob": [143, 477, 483], "adopt": [395, 432, 463, 464, 465, 468, 482, 483], "adpcm": 141, "adpcm2lin": [141, 483], "adpcmfrag": 141, "adrian": [473, 474, 480, 483], "ads": 243, "advanc": [32, 68, 76, 85, 92, 106, 149, 167, 169, 176, 177, 186, 187, 194, 225, 234, 255, 258, 261, 270, 278, 292, 337, 341, 348, 352, 380, 384, 386, 411, 412, 422, 427, 428, 434, 461, 465, 470, 475, 481, 483, 484], "advantag": [33, 51, 73, 75, 85, 95, 101, 102, 186, 197, 250, 299, 308, 324, 331, 344, 375, 388, 411, 413, 415, 462, 465, 466, 471, 474, 475, 476, 477, 478, 481, 483], "advent": 480, "adverb": [68, 363], "advers": 480, "advertis": [212, 288, 335, 341, 426, 468, 477, 478, 481, 483], "advic": [278, 293, 461, 474, 483], "advis": [101, 169, 176, 248, 283, 288, 293, 365, 400, 425, 426, 428, 430, 475, 481, 483], "advisori": [271, 428, 455, 462, 483], "advtexecutesequ": 281, "ae": 235, "aead": [337, 341], "aealmlobdk": 319, "aeiou": 344, "aeiouaeiou": 226, "aenter": 427, "aepack": 468, "aes": [337, 341, 465], "aes128": 341, "aes256": [341, 483], "aesgcm": 341, "aest": 366, "aetool": 468, "aetyp": 468, "aexit": 427, "af": 337, "af_": [337, 477], "af_alg": [337, 479, 483], "af_bluetooth": [337, 483], "af_can": [337, 483], "af_divert": 337, "af_hyperv": 337, "af_inet": [45, 102, 107, 126, 283, 337, 338, 341, 362, 468, 483], "af_inet6": [126, 337, 483], "af_link": [337, 477], "af_netlink": [337, 467], "af_packet": [337, 483], "af_pip": 283, "af_qipcrtr": [337, 483], "af_rd": 337, "af_tipc": 337, "af_unix": [126, 131, 283, 337, 338, 483], "af_unspec": [126, 136, 337], "af_vsock": [337, 480, 483], "afalsevalu": 304, "afanasyev": 483, "aff": 475, "affair": 462, "affect": [33, 45, 59, 60, 64, 68, 73, 84, 93, 94, 95, 102, 106, 139, 144, 167, 177, 183, 186, 191, 193, 202, 205, 230, 243, 247, 250, 258, 266, 269, 271, 278, 293, 307, 319, 320, 321, 322, 337, 340, 341, 348, 354, 356, 358, 362, 366, 375, 376, 384, 386, 388, 394, 400, 405, 410, 427, 428, 430, 432, 436, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "affection": 481, "affin": [186, 483], "affix": [428, 483], "afford": 462, "afghanistan": 183, "aflag": 473, "afloat": 304, "afmt_a_law": 295, "afmt_ima_adpcm": 295, "afmt_mu_law": 295, "afmt_queri": 295, "afmt_s16_b": 295, "afmt_s16_l": 295, "afmt_s8": 295, "afmt_u16_b": 295, "afmt_u16_l": 295, "afmt_u8": 295, "aforement": [33, 476], "afoul": [463, 465], "afresh": [101, 169, 267], "africa": 468, "after": [5, 7, 13, 23, 26, 27, 28, 33, 34, 39, 42, 45, 58, 59, 61, 63, 64, 68, 71, 72, 73, 76, 85, 92, 94, 95, 100, 101, 102, 103, 106, 110, 112, 115, 117, 120, 128, 133, 135, 139, 144, 146, 147, 149, 151, 152, 153, 155, 157, 167, 169, 170, 176, 177, 179, 181, 183, 185, 186, 190, 191, 193, 195, 196, 205, 206, 207, 209, 212, 213, 215, 216, 218, 225, 228, 232, 234, 235, 242, 245, 247, 248, 250, 255, 258, 261, 266, 267, 268, 269, 270, 271, 275, 278, 279, 282, 283, 284, 288, 292, 293, 295, 297, 305, 308, 309, 314, 319, 320, 324, 325, 328, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 376, 381, 382, 384, 386, 388, 395, 399, 400, 405, 407, 410, 413, 415, 416, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 444, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "after_cancel": 483, "after_in_child": 293, "after_in_par": 293, "after_par": 483, "afterward": [33, 72, 93, 176, 183, 186, 261, 293, 328, 340, 352, 359, 421, 428, 464, 465, 468, 483], "ag": 483, "ag_fram": 255, "ag_run": [255, 482, 483], "again": [13, 22, 27, 28, 33, 45, 63, 73, 75, 76, 84, 85, 92, 94, 95, 96, 102, 106, 109, 110, 133, 146, 151, 167, 170, 176, 177, 183, 200, 212, 214, 221, 226, 232, 243, 247, 261, 267, 269, 275, 278, 282, 283, 292, 293, 295, 297, 299, 308, 313, 328, 331, 333, 335, 340, 341, 344, 348, 352, 360, 362, 365, 369, 375, 376, 384, 387, 395, 400, 413, 414, 427, 428, 430, 432, 435, 436, 441, 443, 461, 462, 464, 465, 468, 470, 475, 476, 480, 481, 483], "against": [49, 72, 73, 75, 76, 85, 94, 102, 106, 112, 120, 136, 141, 173, 176, 181, 190, 191, 193, 235, 251, 255, 278, 292, 293, 305, 307, 308, 311, 314, 319, 324, 331, 333, 342, 344, 358, 362, 365, 369, 375, 384, 385, 386, 388, 400, 411, 412, 413, 414, 419, 420, 421, 426, 427, 428, 432, 455, 456, 462, 463, 464, 465, 466, 467, 474, 475, 477, 478, 479, 480, 481, 483], "age": [85, 93, 108, 160, 225, 226, 243, 244, 340, 341, 343, 451, 464, 465, 466, 469, 475], "agen": [255, 430, 483], "agen_clos": 255, "agen_cr": 255, "agen_run": 255, "agen_suspend": 255, "agenc": [341, 426], "agent": [106, 110, 271, 272, 335, 352, 395, 396, 464, 468], "agffno5wuhb77vbri6f9iv2qixu7whw": 235, "aggarw": [481, 483], "aggrav": 475, "aggreg": [139, 261, 340, 388, 473, 483], "aggregate_class": 340, "aggress": [41, 344, 467, 483], "agl": 176, "agnost": [99, 344, 386], "ago": [85, 464, 483], "agre": [103, 341, 347, 426, 483], "agreement": [426, 462, 481], "agren": 483, "aguiar": 483, "ahead": [117, 261, 359, 366, 403, 410, 431, 466, 483], "ahi": 190, "ahlstrom": [423, 462, 465], "ahoy": 244, "ai_": 337, "ai_canonnam": 337, "ai_numerichost": 337, "ai_pass": [126, 136, 337], "aid": [63, 340, 461, 465, 466, 469, 475, 476, 477, 483], "aifc": [68, 206, 254, 336, 349, 350, 401, 462, 473, 474, 482, 483], "aifc_read": 483, "aiff": [68, 153, 206, 254, 336, 350, 450, 483], "aiffread": 450, "aiffwrit": 450, "ailmsux": 319, "aim": [42, 72, 75, 99, 109, 270, 281, 352, 386, 413, 461, 464, 466, 467, 477, 481], "aio": 328, "aioe": 483, "aiohttp": 169, "aiosmtpd": [474, 483], "air": 333, "ais": [158, 465], "ait": 483, "aiter": [49, 225, 428, 472, 479, 483], "aiudi": [482, 483], "aivar": 483, "aix": [73, 115, 293, 306, 352, 365, 481, 482, 483], "aix3": [481, 483], "aix4": 483, "aix5": 352, "aix7": [352, 481, 483], "aix_genuine_cplusplus": 355, "aix_platform": 483, "aixtool": 483, "ajith": 473, "ak": 95, "aka": [68, 193, 355, 422, 428, 461, 480, 483], "akin": [252, 344, 432], "akira": [478, 483], "akm": 106, "akshay": 483, "akshit": 478, "akt": 319, "akt5": 319, "akt5q": 319, "akuchl": 453, "al": [79, 95, 181, 337, 341, 346, 376, 468, 479, 483], "ala": 25, "alacazam": [442, 466], "alae": 483, "alan": [369, 467, 468, 474, 480, 483], "alarm": [308, 333, 477, 483], "alaw": [117, 349], "alaw2lin": 141, "albatross": 230, "albeit": 230, "albert": [478, 480, 483], "alberto": [468, 476], "albrecht": 319, "alecsandru": [479, 483], "aleksandr": 483, "aleksi": 483, "alert": [92, 240, 269, 341, 386, 400, 480, 483], "alert_description_": 341, "alert_description_handshake_failur": 341, "alert_description_internal_error": 341, "alertdescript": 341, "alessandro": 479, "alex": [84, 465, 468, 469, 472, 473, 474, 478, 479, 481, 482, 483], "alexand": [109, 468, 469, 471, 474, 475, 478, 479, 480, 483], "alexandr": [235, 468, 469, 471, 475, 477, 483], "alexandru": 483, "alexey": [468, 477, 478, 483], "alg_": [337, 479], "alg_bit": 341, "algebra": [261, 468, 483], "algorithm": [30, 33, 42, 68, 84, 85, 87, 103, 106, 109, 133, 141, 146, 149, 151, 158, 173, 182, 183, 186, 190, 193, 202, 208, 222, 225, 230, 235, 248, 254, 258, 259, 261, 266, 269, 270, 275, 280, 281, 308, 337, 341, 344, 352, 364, 395, 422, 423, 430, 456, 462, 464, 465, 467, 469, 471, 472, 475, 476, 479, 480, 481, 482, 483], "algorithms_avail": [235, 469, 475, 483], "algorithms_guarante": [235, 469, 475], "alia": [31, 68, 85, 87, 94, 102, 122, 133, 137, 153, 158, 161, 176, 178, 183, 191, 195, 197, 205, 213, 218, 228, 230, 243, 250, 254, 255, 283, 287, 292, 293, 297, 319, 322, 328, 329, 333, 337, 340, 348, 351, 353, 359, 365, 384, 385, 386, 403, 405, 406, 419, 422, 423, 427, 429, 436, 456, 470, 472, 474, 477, 479, 480, 482, 483], "alias": [23, 68, 94, 120, 158, 187, 195, 211, 213, 230, 266, 297, 303, 337, 340, 344, 376, 384, 387, 429, 435, 436, 440, 456, 461, 463, 465, 468, 472, 474, 475, 476, 477, 479, 482, 483], "alias_for_squar": 94, "alias_ti": 431, "aliaslist": 337, "aliasmbc": 483, "alic": 235, "alien": [147, 365], "align": [63, 68, 118, 145, 153, 345, 362, 376, 384, 408, 468, 469, 474, 483], "alignof_max_align_t": 483, "alignof_x": 483, "aliquam": 149, "alist": [191, 304, 428], "aliv": [34, 63, 85, 176, 226, 283, 305, 344, 362, 365, 402, 427, 428, 452, 455, 463, 469, 470, 475, 477, 483], "alkalin": 474, "all": [5, 7, 9, 17, 22, 23, 25, 28, 31, 33, 34, 35, 39, 42, 45, 47, 55, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 108, 109, 110, 112, 117, 120, 124, 128, 133, 134, 137, 138, 139, 141, 144, 146, 147, 149, 151, 153, 155, 157, 158, 159, 160, 161, 163, 164, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 185, 186, 190, 191, 192, 193, 194, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 222, 225, 226, 227, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 284, 287, 288, 293, 295, 296, 297, 299, 302, 305, 308, 309, 311, 312, 313, 314, 316, 322, 324, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 441, 442, 449, 450, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 473, 474, 475, 476, 477, 480, 481, 482, 483], "all_black_hol": 472, "all_complet": [139, 166], "all_equ": 261, "all_error": [126, 223, 337, 473, 483], "all_featur": 415, "all_fram": 382, "all_polls_clos": 475, "all_properti": 415, "all_recipi": 209, "all_suffix": [250, 255], "all_task": [124, 128, 139, 480, 482, 483], "all_thread": 214, "alleg": 426, "allen": [318, 341, 475, 483], "allevi": [250, 462], "alli": 463, "alliancefran": [158, 465], "alliancefranais": [158, 465], "allison": 483, "alloc": [5, 7, 16, 23, 28, 31, 32, 34, 45, 49, 56, 58, 59, 63, 64, 66, 68, 72, 73, 74, 76, 85, 93, 100, 115, 133, 169, 176, 188, 214, 283, 284, 293, 299, 314, 322, 337, 352, 365, 376, 382, 405, 416, 455, 456, 462, 463, 464, 467, 469, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "allocate_lock": 115, "allocationgranular": 278, "allocfunc": [57, 63, 75], "allow": [5, 7, 9, 22, 23, 33, 34, 41, 42, 43, 45, 49, 58, 59, 61, 63, 64, 68, 71, 72, 73, 75, 76, 79, 84, 85, 89, 92, 93, 95, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 132, 133, 135, 137, 138, 139, 151, 153, 157, 158, 160, 161, 163, 167, 169, 173, 176, 177, 180, 181, 183, 186, 189, 190, 191, 193, 194, 195, 196, 202, 203, 205, 208, 211, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 261, 262, 265, 266, 267, 268, 269, 271, 276, 278, 279, 283, 287, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 311, 313, 314, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 348, 352, 353, 354, 356, 358, 362, 364, 365, 366, 369, 374, 375, 376, 377, 380, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 413, 415, 416, 419, 420, 421, 422, 423, 427, 428, 429, 430, 431, 432, 435, 436, 441, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "allow_abbrev": [68, 118, 478, 483], "allow_broadcast": 126, "allow_daemon_thread": 33, "allow_dotted_nam": 420, "allow_exec": 33, "allow_exit_without_flush": 283, "allow_foo": 268, "allow_fork": 33, "allow_frag": 394, "allow_nan": [262, 483], "allow_no_valu": [167, 469], "allow_non": [283, 419, 420, 465], "allow_reuse_address": [102, 338, 420, 468], "allow_reuse_port": 483, "allow_thread": 33, "allowed_domain": 243, "allowed_nam": 481, "allowing_all_extens": 483, "allowlist": [243, 394], "allowpathinfo": 407, "allowpathinfoforscriptmap": 407, "allowunassign": 158, "allowzip64": [422, 477, 483], "almost": [33, 64, 72, 75, 76, 84, 85, 92, 102, 106, 108, 109, 112, 120, 157, 177, 186, 251, 258, 266, 272, 275, 283, 288, 292, 319, 344, 348, 369, 388, 428, 434, 456, 461, 463, 465, 468, 470, 474, 476, 482, 483], "alo": 190, "alon": [7, 64, 75, 81, 85, 102, 106, 250, 297, 319, 324, 331, 420, 426, 427, 434, 464, 467, 468, 477, 483], "along": [7, 58, 95, 100, 101, 102, 120, 141, 149, 163, 169, 176, 186, 193, 203, 205, 218, 230, 234, 235, 244, 250, 251, 267, 269, 278, 293, 299, 308, 329, 335, 337, 341, 344, 345, 348, 369, 376, 380, 384, 386, 388, 414, 421, 426, 427, 436, 462, 463, 464, 465, 466, 468, 469, 474, 475, 477, 478, 483], "alongsid": [354, 375, 421, 426, 435, 461], "alph": 449, "alpha": [4, 68, 80, 87, 113, 284, 288, 307, 318, 352, 355, 449, 451, 462, 463, 468, 471, 484], "alpha2": 483, "alphabet": [64, 85, 89, 143, 146, 173, 178, 186, 196, 199, 262, 267, 268, 271, 308, 326, 334, 344, 385, 461, 465, 466, 467, 468, 469, 472, 477, 478, 479, 480, 481, 483], "alphanumer": [64, 106, 151, 178, 193, 250, 268, 272, 299, 319, 331, 344, 345, 366, 465, 483], "alpin": 483, "alpn": [242, 341, 395, 472, 478, 483], "alreadi": [5, 7, 9, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 49, 51, 54, 60, 61, 63, 64, 66, 68, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 99, 100, 102, 103, 106, 109, 112, 120, 129, 133, 139, 151, 163, 167, 169, 176, 181, 183, 184, 189, 190, 196, 199, 200, 205, 208, 212, 213, 218, 227, 242, 243, 247, 248, 250, 255, 258, 261, 267, 268, 270, 271, 276, 281, 282, 283, 292, 293, 299, 302, 305, 307, 308, 320, 321, 328, 329, 332, 333, 337, 340, 341, 344, 348, 352, 353, 356, 358, 359, 362, 369, 376, 384, 388, 394, 397, 399, 400, 403, 405, 410, 411, 413, 417, 421, 427, 428, 430, 432, 436, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "already_report": 241, "also": [5, 7, 11, 13, 23, 26, 28, 31, 33, 34, 42, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 132, 133, 137, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 213, 214, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 234, 235, 241, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 302, 305, 308, 309, 311, 313, 314, 319, 321, 322, 324, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 358, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "alt": [177, 178, 240, 247, 376, 462, 483], "alt_digit": 266, "altchar": 143, "alter": [7, 22, 42, 85, 153, 186, 208, 243, 247, 248, 262, 268, 272, 299, 324, 344, 345, 384, 426, 428, 432, 462, 466, 475, 477, 479, 480, 481, 482, 483], "alter_si": 324, "altern": [0, 18, 23, 31, 33, 45, 63, 68, 73, 78, 79, 84, 85, 93, 95, 106, 109, 110, 112, 120, 132, 137, 138, 139, 158, 161, 167, 173, 176, 177, 178, 181, 186, 193, 196, 199, 200, 205, 211, 214, 215, 218, 221, 225, 228, 242, 251, 261, 267, 268, 269, 272, 283, 292, 293, 295, 297, 299, 314, 324, 332, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 358, 359, 365, 369, 375, 376, 381, 384, 386, 388, 394, 399, 400, 405, 407, 425, 426, 430, 431, 432, 433, 455, 458, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 477, 478, 479, 480, 481, 482, 483], "although": [23, 25, 27, 42, 63, 72, 85, 94, 101, 102, 103, 139, 158, 176, 181, 183, 190, 193, 196, 197, 200, 205, 206, 248, 255, 258, 267, 271, 281, 283, 292, 293, 295, 299, 307, 319, 345, 352, 355, 358, 366, 375, 412, 414, 415, 416, 425, 427, 428, 430, 432, 434, 436, 455, 461, 462, 474, 477, 478, 479, 483], "alti": 465, "altinstal": [210, 456, 460, 469, 475, 477], "altogeth": [101, 102, 151, 314, 422, 428, 475], "altsep": [231, 247, 293, 296, 473, 483], "altzon": [183, 366], "alum": 426, "alumni": 426, "alv": 476, "alwai": 483, "alway": [5, 7, 9, 11, 13, 17, 23, 25, 31, 33, 34, 37, 39, 42, 43, 45, 47, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 73, 75, 76, 79, 85, 92, 93, 94, 95, 96, 100, 101, 102, 106, 110, 112, 115, 120, 133, 139, 141, 144, 146, 149, 151, 157, 158, 163, 167, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 206, 207, 208, 214, 216, 221, 226, 230, 234, 235, 242, 244, 245, 247, 248, 250, 251, 255, 257, 258, 259, 262, 266, 267, 269, 270, 271, 272, 275, 283, 292, 293, 295, 299, 307, 309, 319, 324, 330, 331, 333, 334, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 358, 362, 364, 365, 366, 369, 376, 377, 384, 386, 388, 394, 395, 400, 405, 410, 413, 415, 417, 422, 425, 427, 428, 429, 430, 432, 435, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "always_eq": 362, "always_iter": 251, "always_typed_act": 292, "am": [101, 102, 103, 183, 266, 299, 366, 434], "am_ait": 63, "am_anext": 63, "am_await": 63, "am_send": 63, "amauri": [468, 469, 471, 475, 483], "amax": 427, "amaz": [193, 464], "ambassador": 481, "amber": 483, "ambigu": [11, 89, 95, 103, 106, 120, 183, 259, 292, 297, 319, 344, 425, 427, 430, 434, 435, 462, 468, 474, 477, 479, 480, 481, 482, 483], "ambigui": 483, "ambiguousoptionerror": 292, "ambiti": 466, "ambv": 475, "amd": 478, "amd64": [107, 303, 347, 355, 483], "amdk6": 303, "ame": [449, 479], "amend": [476, 483], "america": [183, 425, 426, 469, 482], "american": [92, 183], "amessag": 201, "amet": 149, "amin": 483, "amit": [479, 483], "amk": [106, 319, 465, 468, 469], "ammar": [473, 479, 480, 481, 483], "amoeba": 80, "among": [63, 103, 141, 176, 181, 190, 193, 271, 283, 284, 293, 300, 328, 352, 358, 366, 369, 375, 388, 428, 461, 475, 481, 483], "amongst": [341, 399], "amort": 261, "amount": [33, 45, 73, 76, 84, 85, 95, 133, 139, 177, 186, 235, 258, 259, 270, 283, 288, 292, 293, 295, 299, 305, 307, 314, 322, 330, 332, 333, 337, 342, 344, 364, 365, 366, 369, 376, 384, 395, 411, 463, 466, 468, 475, 477, 478, 479, 480, 482, 483], "amp": [417, 475], "amper": 377, "amperequ": 377, "ampersand": 469, "amplif": 314, "amplifi": 186, "amplitud": 468, "amsterdam": [33, 366, 426], "amt": 242, "amx_til": 483, "an": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 74, 75, 76, 77, 78, 80, 89, 91, 92, 94, 95, 96, 99, 100, 101, 103, 105, 106, 107, 110, 112, 113, 114, 115, 117, 120, 128, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 164, 166, 167, 170, 173, 176, 177, 178, 179, 181, 182, 184, 186, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 280, 281, 283, 284, 285, 287, 288, 290, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 398, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 449, 451, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "an_absolute_path": 296, "an_error": 381, "an_int": 167, "an_item_is_avail": 365, "anaconda": 461, "analog": [28, 64, 75, 85, 96, 102, 186, 255, 267, 268, 275, 283, 299, 364, 384, 428, 430, 432, 464, 466, 467, 469, 475, 477, 481, 483], "analogu": [85, 283], "analys": 191, "analysi": [7, 33, 68, 106, 152, 154, 190, 264, 279, 308, 331, 386, 430, 434, 435, 436, 467, 476, 478, 483], "analyz": [279, 299, 319, 331, 341, 382, 386, 426, 435, 467, 468, 469, 475, 483], "analyze_dxp": 483, "anand": [469, 475], "ananthakrishnan": 482, "anatoli": [469, 483], "ancbufs": 337, "ancdata": 337, "ancestor": [101, 102, 103, 177, 267, 268, 283, 296, 376, 389, 413, 428, 465, 483], "ancestr": 483, "ancestri": 463, "anchor": [250, 252, 296, 354, 369, 376, 469, 474, 477, 483], "anchorag": 95, "ancient": [358, 467, 483], "ancillari": [68, 315, 337, 483], "and": [2, 9, 10, 11, 13, 16, 17, 18, 22, 24, 26, 27, 28, 30, 31, 32, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 60, 61, 63, 65, 66, 67, 68, 74, 78, 80, 84, 87, 89, 91, 97, 98, 99, 101, 103, 105, 107, 112, 113, 114, 115, 117, 118, 119, 122, 124, 126, 129, 130, 134, 135, 137, 138, 139, 141, 144, 145, 146, 147, 149, 152, 153, 154, 155, 157, 159, 160, 163, 164, 166, 167, 170, 173, 175, 177, 178, 179, 181, 182, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 228, 231, 232, 233, 234, 235, 236, 242, 244, 245, 246, 248, 249, 251, 253, 254, 256, 257, 258, 261, 264, 265, 267, 269, 271, 272, 273, 276, 278, 279, 280, 281, 282, 284, 285, 287, 288, 290, 291, 295, 297, 298, 301, 302, 303, 304, 305, 307, 309, 311, 312, 313, 314, 315, 318, 320, 321, 322, 323, 324, 325, 326, 329, 330, 331, 334, 335, 336, 338, 339, 342, 343, 345, 346, 348, 352, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 368, 371, 374, 375, 376, 377, 378, 380, 381, 383, 387, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 412, 414, 415, 416, 417, 420, 421, 422, 423, 426, 427, 431, 433, 434, 436, 438, 441, 442, 443, 446, 449, 451, 455, 457, 458, 459, 472, 473, 484], "and_": [95, 291], "and_expr": 430, "and_test": 430, "ander": [469, 472, 480, 483], "andersen": 483, "anderson": 479, "andersson": 483, "andi": [468, 471, 483], "andr": [109, 230, 340, 462, 463, 464, 465, 467, 483], "andra": 483, "andrad": 483, "andrea": 483, "andrei": [473, 483], "andress": 475, "andrew": [108, 109, 177, 426, 462, 464, 465, 466, 467, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483], "andrey": 483, "andrich": 462, "andriy": 483, "android": [34, 64, 87, 266, 303, 352, 362, 479, 480, 481, 483], "android_api_level": 483, "anech": [478, 483], "anew": [384, 432, 482, 483], "anext": [225, 472, 483], "anext_await": 483, "angelico": [478, 479, 483], "angl": [63, 106, 144, 158, 209, 225, 275, 384, 468, 469, 483], "angular": [68, 290, 434], "ani": [5, 7, 9, 11, 13, 22, 23, 24, 27, 28, 31, 33, 34, 35, 37, 39, 42, 43, 45, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 115, 116, 117, 120, 132, 133, 135, 136, 137, 138, 139, 141, 144, 149, 151, 152, 155, 157, 158, 159, 163, 167, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 192, 193, 194, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 218, 220, 221, 225, 226, 230, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 283, 288, 291, 292, 293, 295, 297, 299, 302, 305, 308, 309, 313, 314, 315, 316, 319, 320, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 353, 354, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 388, 390, 394, 395, 399, 400, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 446, 450, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "anim": [68, 94, 222, 230, 376, 446, 468, 478], "anint": 304, "anish": 483, "ann": 88, "ann1": 386, "anna": [481, 482], "annassign": 122, "annex": [275, 387, 435, 468], "anno": 255, "annot": [27, 68, 85, 87, 97, 113, 122, 181, 191, 226, 248, 254, 255, 266, 300, 351, 362, 380, 386, 402, 426, 427, 428, 430, 431, 445, 470, 472, 473, 474, 475, 476, 478, 481, 482, 483], "annotate_field": 122, "annotated_assignment_stmt": 436, "annotated_rh": 431, "announc": [34, 80, 109, 293, 476], "annoy": [92, 109, 151, 267, 462, 464, 465, 468, 470, 476, 481, 483], "annual": [261, 482], "anod": 212, "anomal": 362, "anomali": 186, "anonym": [95, 176, 223, 268, 278, 293, 384, 427, 430, 462, 475, 483], "anoth": [5, 7, 22, 23, 31, 33, 42, 58, 63, 64, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 100, 101, 102, 106, 108, 109, 110, 112, 115, 120, 125, 132, 133, 139, 144, 151, 155, 158, 163, 167, 169, 173, 176, 177, 181, 183, 186, 193, 194, 196, 203, 213, 215, 221, 225, 226, 230, 235, 243, 245, 247, 250, 255, 261, 262, 267, 268, 270, 271, 278, 283, 287, 288, 292, 293, 297, 299, 301, 308, 309, 311, 314, 319, 328, 332, 333, 338, 340, 341, 344, 347, 348, 352, 353, 354, 355, 365, 369, 375, 376, 378, 380, 384, 386, 388, 389, 394, 395, 399, 405, 408, 410, 411, 413, 414, 422, 425, 427, 428, 429, 430, 432, 436, 443, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 478, 479, 481, 482, 483], "another_config": 167, "another_coro": 139, "another_extens": 167, "another_funct": 381, "another_sl": 284, "another_way": 400, "another_year": 183, "anotherkey": 167, "anotherstr": 304, "anothertyp": 386, "anothervalu": 410, "ans": 200, "ansi": [42, 68, 87, 120, 145, 176, 266, 293, 352, 366, 461, 462, 474, 476, 479, 481, 483], "ansi_x3": 34, "answer": [85, 89, 93, 94, 133, 193, 226, 235, 268, 271, 308, 345, 366, 442, 446, 462, 466, 470, 483], "answer_challeng": 283, "ant": [94, 149], "anthon": 483, "anthoni": [464, 466, 467, 480, 481, 482, 483], "anti": [376, 384, 390, 483], "anticip": [474, 479, 483], "anticipate_failur": 362, "antigrav": 483, "antilink": 223, "antivirus": [247, 362], "antoin": [296, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "anton": 483, "antoni": [473, 483], "antonio": 475, "antti": 467, "any_contigu": 255, "any_ord": [389, 390], "anycast": 259, "anydbm": [469, 470], "anymor": [7, 11, 31, 33, 63, 64, 85, 133, 144, 283, 293, 297, 337, 352, 469, 470, 474, 475, 476, 481, 483], "anyon": [76, 341, 355, 362, 426, 463, 469, 477], "anyset": 55, "anystr": 386, "anyth": [5, 28, 41, 63, 72, 73, 76, 85, 92, 95, 101, 102, 106, 109, 120, 137, 151, 176, 177, 178, 181, 183, 186, 193, 196, 203, 247, 248, 257, 258, 267, 269, 283, 292, 297, 301, 319, 323, 330, 334, 335, 341, 345, 348, 352, 353, 362, 365, 369, 376, 384, 386, 394, 405, 413, 421, 427, 428, 430, 432, 441, 461, 463, 464, 467, 468, 476, 477, 481, 483], "anytim": [34, 151, 344, 369], "anyway": [63, 76, 176, 243, 247, 259, 388, 463, 464, 474, 483], "anywher": [7, 85, 151, 186, 190, 247, 251, 261, 268, 292, 319, 352, 378, 386, 394, 415, 425, 429, 430, 432, 470, 482, 483], "ao": 359, "aodlambelk": 319, "aon": 384, "ap": 102, "apach": [283, 341, 419, 426, 453, 462, 479, 483], "apache2": 296, "apart": [59, 76, 95, 106, 167, 190, 283, 292, 302, 430, 435, 461, 465, 469, 471], "ape": 190, "aperiod": 384, "apf": 483, "api": [2, 7, 11, 13, 15, 16, 17, 20, 22, 23, 24, 26, 27, 28, 35, 38, 39, 45, 46, 48, 51, 55, 58, 59, 61, 63, 64, 65, 68, 72, 74, 75, 76, 79, 84, 87, 88, 91, 92, 97, 100, 101, 102, 104, 107, 108, 109, 110, 112, 120, 125, 127, 128, 129, 132, 133, 136, 137, 139, 140, 142, 159, 161, 164, 169, 170, 175, 176, 177, 185, 187, 188, 191, 192, 194, 195, 197, 198, 201, 202, 203, 205, 206, 208, 209, 211, 217, 223, 228, 235, 236, 246, 250, 254, 255, 257, 258, 259, 262, 267, 268, 269, 271, 273, 280, 281, 282, 283, 285, 293, 294, 295, 298, 302, 304, 309, 318, 319, 320, 332, 337, 341, 342, 345, 352, 353, 355, 357, 360, 362, 365, 369, 379, 386, 388, 389, 390, 394, 395, 400, 405, 406, 407, 409, 411, 414, 415, 419, 420, 429, 430, 432, 433, 435, 436, 440, 441, 445, 451, 461, 462, 463, 464, 484], "api_vers": [352, 450, 465], "apilevel": 340, "apitest": 483, "apl": [261, 471, 475], "apolici": 208, "apop": 305, "apostroph": [344, 471], "app": [68, 74, 102, 247, 269, 352, 369, 399, 407, 459, 461, 468, 469, 475, 483], "app1": 102, "app2": 102, "appar": [73, 92, 151, 333, 408, 462, 466, 483], "appdata": [334, 461, 468], "appear": [25, 33, 34, 45, 58, 59, 66, 68, 75, 76, 84, 92, 94, 95, 99, 101, 102, 106, 112, 120, 122, 133, 151, 158, 163, 167, 176, 177, 181, 186, 190, 191, 193, 196, 199, 202, 203, 205, 222, 225, 230, 235, 247, 248, 250, 255, 259, 266, 268, 269, 271, 272, 281, 283, 293, 297, 308, 314, 319, 331, 333, 335, 337, 340, 344, 345, 358, 364, 369, 376, 385, 386, 395, 400, 408, 410, 413, 416, 420, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 461, 463, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 483], "appel": 190, "append": [9, 34, 38, 59, 64, 76, 78, 79, 80, 84, 85, 101, 102, 103, 107, 112, 120, 121, 134, 149, 151, 157, 158, 160, 161, 163, 176, 181, 184, 186, 189, 191, 196, 200, 202, 203, 205, 208, 225, 226, 234, 247, 248, 249, 250, 255, 258, 261, 267, 269, 270, 271, 281, 283, 284, 288, 292, 293, 297, 299, 301, 302, 309, 316, 318, 319, 320, 321, 330, 334, 337, 341, 342, 343, 344, 352, 358, 362, 378, 388, 395, 400, 408, 411, 413, 422, 427, 428, 435, 440, 441, 442, 443, 449, 450, 452, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 483], "append_const": [120, 292, 483], "append_histori": 320, "append_history_fil": [320, 478, 483], "append_nul": [269, 476], "appendchild": [410, 411, 462], "appendhtml": 102, "appendix": [103, 235, 426], "appendleft": [160, 466], "appendpath": [461, 473], "appetit": 464, "appl": [68, 93, 176, 190, 217, 247, 254, 269, 291, 347, 442, 451, 459, 465, 468, 469, 471, 479, 483], "applesingl": 468, "appleton": 483, "appletrawmain": 468, "appletrunn": 468, "appli": [13, 34, 63, 64, 73, 75, 94, 95, 96, 101, 102, 103, 112, 120, 122, 139, 141, 158, 169, 176, 177, 178, 181, 183, 186, 190, 191, 193, 205, 208, 209, 213, 220, 223, 225, 226, 230, 235, 243, 244, 245, 247, 255, 259, 261, 267, 268, 270, 271, 272, 276, 283, 292, 293, 297, 299, 308, 314, 319, 321, 322, 324, 328, 332, 337, 341, 344, 345, 348, 352, 354, 358, 362, 365, 366, 369, 376, 378, 382, 386, 387, 388, 394, 400, 411, 413, 419, 422, 426, 427, 428, 429, 430, 432, 436, 442, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 479, 480, 481, 482, 483], "applic": [31, 33, 34, 57, 63, 64, 68, 72, 73, 75, 77, 85, 95, 100, 101, 106, 108, 109, 110, 120, 133, 137, 139, 145, 151, 157, 167, 169, 177, 183, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 213, 214, 225, 226, 235, 242, 246, 261, 262, 266, 267, 268, 269, 271, 272, 276, 281, 282, 283, 292, 293, 299, 305, 308, 314, 319, 325, 331, 332, 333, 337, 340, 341, 344, 346, 348, 354, 358, 362, 364, 365, 366, 368, 369, 371, 375, 376, 382, 384, 386, 387, 388, 394, 395, 399, 400, 405, 407, 410, 411, 413, 414, 415, 416, 417, 422, 423, 425, 426, 427, 430, 434, 436, 455, 458, 459, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "application_nam": 142, "application_uri": 407, "applicationwid": 186, "apploc": 461, "apply_async": [283, 468], "apply_default": [255, 478, 483], "applyresult": 283, "appnam": [102, 269], "apport": 214, "appreci": [422, 426], "approach": [33, 68, 73, 74, 76, 79, 85, 95, 101, 102, 109, 110, 115, 151, 158, 169, 186, 190, 193, 225, 267, 283, 293, 333, 338, 340, 344, 348, 365, 369, 384, 388, 395, 413, 419, 428, 430, 461, 462, 463, 467, 468, 469, 471, 475, 476, 478, 479, 480, 483, 484], "appropi": 483, "appropri": [5, 9, 23, 31, 41, 42, 49, 54, 61, 63, 64, 68, 71, 73, 75, 76, 92, 94, 95, 96, 101, 102, 106, 110, 112, 120, 137, 139, 151, 157, 158, 177, 183, 184, 186, 193, 195, 196, 201, 202, 205, 206, 207, 208, 225, 226, 230, 235, 242, 243, 245, 248, 250, 258, 259, 266, 267, 268, 269, 271, 275, 283, 292, 293, 299, 307, 308, 314, 319, 324, 328, 333, 335, 337, 338, 341, 344, 345, 347, 348, 352, 355, 358, 365, 366, 375, 381, 384, 385, 386, 394, 395, 399, 403, 408, 410, 411, 413, 415, 421, 422, 426, 429, 430, 432, 436, 455, 461, 462, 463, 464, 465, 466, 468, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "approv": [243, 288, 307, 461, 462, 469, 483], "approx": 483, "approxim": [47, 64, 68, 85, 158, 177, 181, 186, 190, 193, 202, 213, 221, 247, 280, 283, 343, 347, 348, 362, 381, 384, 388, 428, 430, 432, 446, 461, 468, 469, 480, 483], "appspot": [469, 471, 475], "appveyor": 388, "apr": [95, 455, 464, 467], "aprano": [477, 479, 481], "april": [150, 183, 435, 448, 462, 463], "apropo": 483, "apt": [79, 96, 98, 479, 483], "aqua": [247, 459, 483], "aquamac": 459, "aquatk": 475, "aquir": 483, "ar": [355, 456, 483], "arab": [109, 158, 186, 344, 462, 469, 475], "arahesi": [469, 475, 483], "aranguren": 468, "araujo": [109, 473, 476, 477, 481, 483], "arbcd": 466, "arbitrari": [5, 13, 23, 33, 39, 42, 45, 55, 59, 61, 63, 68, 72, 74, 76, 84, 85, 94, 95, 102, 106, 109, 110, 115, 120, 133, 151, 158, 159, 169, 175, 176, 179, 183, 186, 191, 203, 208, 225, 230, 233, 234, 245, 248, 250, 251, 255, 259, 262, 267, 268, 271, 283, 287, 290, 293, 295, 297, 299, 307, 313, 319, 322, 328, 330, 333, 334, 337, 338, 339, 340, 344, 345, 352, 354, 358, 362, 365, 366, 369, 384, 386, 388, 397, 410, 413, 419, 420, 421, 428, 445, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "arbitrarili": [66, 167, 169, 191, 268, 293, 388, 395, 430, 466, 474, 481, 483], "arbitrary_str": [386, 473], "arc": [275, 384, 468, 469, 471, 475, 483], "arch": [456, 468, 483], "archi": 413, "architectur": [68, 272, 279, 303, 333, 347, 355, 368, 410, 421, 428, 456, 460, 461, 465, 466, 468, 476, 478, 481, 482, 483], "archiv": [68, 84, 102, 103, 105, 119, 192, 219, 251, 271, 342, 354, 358, 362, 399, 422, 423, 426, 451, 456, 462, 463, 467, 468, 469, 471, 474, 475, 477, 480, 481, 483, 484], "archive_nam": 332, "archivepath": 423, "arcnam": [358, 422], "ardelean": 483, "arduous": 462, "are": [5, 7, 9, 11, 13, 18, 22, 23, 25, 28, 31, 33, 34, 39, 41, 42, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 89, 92, 93, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 122, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 225, 226, 227, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 287, 288, 290, 293, 295, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 316, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 451, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "area": [5, 7, 42, 45, 63, 92, 94, 96, 101, 102, 109, 177, 196, 205, 225, 247, 278, 299, 322, 337, 341, 371, 376, 434, 446, 462, 467, 468, 477, 480], "area1": 102, "area2": 102, "aregtyp": 358, "aren": [76, 84, 85, 92, 93, 94, 95, 99, 106, 109, 112, 139, 167, 176, 201, 217, 255, 259, 268, 269, 292, 338, 341, 347, 352, 369, 377, 419, 462, 463, 464, 465, 466, 467, 468, 469, 476, 477, 483], "arena": [68, 431, 455, 467, 482, 483], "arepr": 321, "arflag": 355, "arfrev": [469, 475, 483], "arg": [5, 10, 20, 23, 28, 33, 34, 35, 36, 58, 59, 61, 62, 63, 64, 66, 72, 73, 75, 76, 78, 84, 85, 87, 89, 93, 94, 100, 101, 102, 112, 115, 116, 120, 122, 125, 126, 132, 137, 139, 140, 142, 144, 155, 160, 166, 169, 170, 175, 176, 177, 181, 183, 190, 191, 197, 200, 203, 205, 211, 212, 213, 215, 225, 226, 228, 232, 247, 248, 250, 253, 255, 261, 267, 268, 269, 271, 283, 284, 291, 292, 293, 297, 299, 300, 307, 308, 316, 318, 335, 344, 345, 348, 352, 355, 359, 362, 365, 376, 380, 384, 386, 388, 389, 390, 395, 399, 402, 427, 428, 431, 436, 441, 443, 448, 451, 455, 456, 462, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 478, 479, 481, 482, 483], "arg0": [98, 293, 353, 483], "arg1": [10, 75, 85, 95, 98, 116, 191, 225, 292, 293, 428, 464, 465, 467], "arg1typ": 386, "arg2": [10, 75, 85, 95, 98, 116, 191, 225, 292, 389, 428, 464, 465, 467], "arg2typ": 386, "arg3": [75, 85, 98, 116], "arg4": 98, "arg_format": 79, "arg_lin": 120, "arg_nam": 345, "arg_ti": 431, "argc": [33, 34, 66, 72, 73, 191, 483], "argcount": [13, 66, 142, 385, 481], "arginfo": 255, "arglist": 73, "argn": 225, "argpars": [68, 85, 97, 102, 118, 160, 190, 200, 228, 254, 292, 309, 399, 451, 474, 483, 484], "argrepr": 191, "args_from_interpreter_flag": 362, "argtyp": [122, 176, 483], "argu": [103, 462, 464, 469], "arguabl": [85, 341], "argument": [7, 9, 11, 13, 22, 23, 24, 25, 28, 31, 33, 34, 35, 37, 39, 42, 47, 49, 56, 58, 59, 60, 61, 63, 64, 65, 66, 68, 72, 73, 75, 76, 78, 79, 84, 87, 89, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 106, 108, 109, 110, 112, 114, 115, 117, 118, 122, 128, 133, 135, 136, 137, 139, 141, 142, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 164, 167, 169, 170, 173, 177, 178, 181, 183, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 282, 283, 287, 288, 295, 297, 299, 301, 302, 304, 307, 308, 311, 313, 314, 315, 319, 320, 321, 322, 324, 325, 326, 328, 331, 332, 333, 334, 335, 336, 337, 340, 341, 342, 344, 345, 347, 352, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 376, 378, 380, 381, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 413, 414, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 436, 440, 442, 443, 445, 446, 450, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 480, 481, 482, 483], "argument1": 87, "argument2": 87, "argument_default": [68, 118], "argument_list": [144, 427, 430], "argumentclin": 483, "argumentdefaultshelpformatt": [102, 120, 483], "argumenterror": [120, 176, 483], "argumentn": 87, "argumentpars": [68, 89, 102, 118, 160, 190, 200, 228, 309, 399, 451, 469, 474, 475, 478, 480, 483], "arguments_ti": 431, "argumenttypeerror": 120, "argv": [33, 34, 35, 66, 68, 72, 73, 102, 114, 118, 126, 136, 142, 188, 190, 193, 218, 228, 247, 292, 293, 297, 309, 324, 338, 342, 352, 356, 369, 388, 407, 443, 448, 450, 451, 455, 465, 468, 469, 470, 475, 480, 481, 483], "argv0": 369, "argval": [191, 362], "argvemul": 468, "ari": 483, "arial": 384, "ariel": 477, "aris": [96, 186, 258, 267, 268, 299, 385, 426, 430, 464, 466, 475, 481, 483], "arithmet": [68, 183, 186, 213, 221, 225, 256, 290, 319, 344, 352, 419, 425, 427, 428, 431, 433, 451, 465, 466, 467, 475, 476, 478, 481, 483], "arithmeticerror": [23, 186, 213, 450], "ariti": 108, "arizona": [464, 465], "arka": 483, "arm": [107, 478, 483], "arm32": 483, "arm64": [176, 481, 482, 483], "armin": [466, 467, 468, 469, 471, 475, 476, 477, 483], "armor": [196, 205], "armstrong": 483, "armv7": 483, "arnaud": [466, 476], "arnon": [478, 483], "aros": 95, "around": [7, 23, 25, 31, 33, 43, 59, 72, 73, 76, 79, 95, 98, 100, 102, 114, 120, 139, 141, 148, 152, 155, 167, 169, 177, 183, 186, 191, 193, 206, 215, 218, 221, 226, 247, 250, 255, 261, 265, 269, 275, 281, 283, 287, 292, 293, 297, 302, 319, 337, 341, 343, 352, 358, 362, 369, 376, 381, 384, 386, 388, 427, 428, 431, 442, 443, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 480, 481, 483], "arowski": 469, "arp": [337, 483], "arpa": [259, 359, 478], "arr": [176, 283, 444], "arr1": 283, "arr2": 283, "arrang": [84, 95, 101, 102, 108, 132, 133, 139, 193, 236, 255, 268, 283, 341, 365, 369, 375, 376, 483], "array": [2, 5, 9, 10, 16, 31, 39, 45, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 84, 87, 93, 100, 102, 117, 118, 142, 158, 178, 182, 215, 254, 279, 283, 284, 285, 287, 293, 299, 309, 337, 344, 347, 361, 379, 381, 385, 386, 408, 419, 427, 428, 442, 452, 465, 466, 467, 468, 469, 470, 475, 478, 480, 482, 483], "array2": 386, "array_buffer_getbuf": 483, "array_inplace_repeat": 483, "arraydesc": 176, "arrays": 340, "arriv": [23, 115, 193, 243, 245, 283, 318, 333, 338, 341, 366, 442, 462], "arrival_tim": 318, "arrow": [177, 247, 297, 375, 376, 384, 443], "art": [153, 154, 160, 193], "art_num": 288, "arthur": [167, 344, 481, 483], "articl": [95, 109, 226, 235, 261, 271, 288, 384, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "article_numb": 288, "artifact": [250, 252, 253, 295, 476, 483], "artifici": [176, 353, 413, 428, 474, 477, 483], "artificil": 483, "artist": 93, "arvin": 468, "as": [5, 6, 7, 9, 11, 13, 17, 18, 20, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 100, 103, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 146, 149, 151, 152, 155, 157, 158, 159, 160, 161, 163, 166, 167, 173, 175, 176, 177, 178, 179, 181, 183, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 429, 430, 431, 432, 434, 435, 436, 438, 441, 443, 446, 450, 451, 452, 455, 456, 459, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "as_byt": [196, 200, 201, 205, 208, 251, 477], "as_complet": [124, 129, 139, 166, 474, 481, 483], "as_complex": 262, "as_fil": [250, 252, 253, 474, 483], "as_integer_ratio": [186, 221, 344, 444, 468, 479, 481, 483], "as_pattern": [427, 431], "as_posix": 296, "as_str": [196, 201, 202, 205, 477, 483], "as_tupl": [186, 468], "as_uri": 296, "asaf": 483, "asan": [456, 483], "ascend": [191, 308, 344], "ascension": 474, "ascent": 372, "ascher": 463, "ascii": [16, 23, 31, 34, 42, 49, 58, 68, 71, 92, 101, 102, 106, 107, 109, 110, 118, 120, 122, 133, 137, 143, 145, 151, 158, 176, 177, 183, 191, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 214, 225, 230, 237, 248, 254, 256, 258, 262, 266, 272, 282, 285, 286, 288, 293, 299, 314, 317, 319, 331, 335, 338, 340, 341, 344, 345, 346, 349, 358, 359, 362, 395, 397, 413, 419, 422, 426, 434, 435, 441, 446, 448, 450, 455, 462, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "ascii85": [143, 477, 483], "ascii_lett": [244, 326, 345, 464, 470], "ascii_lowercas": [319, 345, 464], "ascii_uppercas": [345, 464], "asctim": [101, 102, 267, 268, 309, 366, 463, 469, 475], "asdict": [181, 483], "asdl": [122, 467, 472, 482, 483], "asdl_alias_seq": 431, "asdl_arg_seq": 431, "asdl_comprehension_seq": 431, "asdl_excepthandler_seq": 431, "asdl_expr_seq": 431, "asdl_identifier_seq": 431, "asdl_int_seq": 431, "asdl_keyword_seq": 431, "asdl_match_case_seq": 431, "asdl_pattern_seq": 431, "asdl_seq": 431, "asdl_seq_get": 431, "asdl_seq_len": 431, "asdl_stmt_seq": 431, "asdl_type_param_seq": 431, "asdl_withitem_seq": 431, "aseert": [389, 483], "asend": [161, 430, 482, 483], "asert": [389, 483], "ashish": 483, "ashley": 479, "ashley_": 452, "ashley_0": 452, "ashley_1": 452, "ashley_2": 452, "ashwin": 483, "asi": 483, "asia": 425, "asian": [158, 387, 466], "asid": [33, 183, 225, 247, 308, 358, 428, 430, 475, 480, 481], "asimov": 319, "asin": [154, 275], "asinh": [154, 275, 468, 483], "ask": [42, 87, 92, 102, 161, 194, 233, 235, 243, 247, 258, 269, 292, 297, 332, 339, 341, 344, 386, 395, 412, 413, 414, 422, 430, 432, 436, 461, 466, 467, 468, 469, 470, 483], "ask_exit": 126, "ask_ok": 441, "askar": [473, 479, 480, 481, 483], "askcolor": 370, "askdirectori": 189, "askfloat": 189, "askinteg": [189, 483], "askokcancel": 373, "askopenfil": 189, "askopenfilenam": 189, "askquest": 373, "askretrycancel": 373, "asksaveasfil": 189, "asksaveasfilenam": 189, "askstr": 189, "askyesno": 373, "askyesnocancel": 373, "asleep": 366, "asn": 341, "asnam": 122, "asnebc": 319, "asparagus": 200, "asparagus_cid": 200, "aspect": [42, 72, 73, 94, 102, 106, 110, 181, 183, 193, 250, 268, 293, 335, 394, 428, 475, 479], "asperg": 200, "aspinal": 480, "aspn": [110, 275], "assch": 479, "assembl": [85, 95, 109, 191, 282, 340, 348, 369, 428, 434, 467, 483], "assert": [34, 35, 49, 66, 68, 96, 102, 108, 112, 116, 122, 139, 168, 181, 183, 184, 188, 191, 193, 213, 225, 228, 255, 283, 292, 297, 299, 319, 340, 344, 362, 385, 386, 388, 389, 390, 400, 402, 411, 425, 426, 427, 430, 431, 433, 435, 450, 455, 456, 465, 466, 468, 471, 475, 477, 478, 481, 482, 483], "assert_": [112, 473, 474, 475, 483], "assert_any_await": 389, "assert_any_cal": 389, "assert_await": 389, "assert_awaited_onc": [389, 390], "assert_awaited_once_with": 389, "assert_awaited_with": 389, "assert_cal": [389, 479, 483], "assert_called_onc": [389, 479, 483], "assert_called_once_with": [389, 390, 483], "assert_called_with": [389, 390, 483], "assert_has_await": [389, 483], "assert_has_cal": [389, 390, 483], "assert_nev": [386, 473, 483], "assert_not_await": 389, "assert_not_cal": [389, 478, 483], "assert_python": 362, "assert_python_failur": [362, 483], "assert_python_ok": [362, 483], "assert_stmt": [431, 436], "assert_typ": [386, 473, 483], "assert_used_once_with": 389, "assert_used_with": 389, "assertalmostequ": [112, 388, 469, 473, 474, 475, 483], "assertcountequ": [388, 475], "assertdictcontainssubset": [469, 471, 474, 475, 483], "assertdictequ": [388, 469, 471], "assertequ": [112, 362, 388, 389, 390, 451, 469, 473, 474, 475, 477, 481, 483], "assertfals": [112, 388, 469, 473, 474], "assertgreat": [388, 469], "assertgreaterequ": [388, 469], "asserti": [388, 390, 469], "assertin": [388, 469], "assertinbytecod": 362, "assertionerror": [23, 191, 213, 283, 362, 388, 389, 390, 407, 436, 450, 473, 482, 483], "assertisinst": [388, 469], "assertisnon": [388, 469, 471], "assertisnot": [388, 469], "assertisnotnon": [388, 469, 471], "assertitemsequ": 469, "assertless": [388, 469], "assertlessequ": [388, 469], "assertlistequ": [388, 469, 471, 483], "assertlog": [388, 472, 477, 483], "assertmultilineequ": [388, 469], "assertnolog": [388, 472, 483], "assertnotalmostequ": [112, 388, 469, 473, 474, 475, 483], "assertnotequ": [112, 388, 473, 474, 475], "assertnotin": [388, 469], "assertnotinbytecod": [362, 483], "assertnotisinst": [388, 469], "assertnotregex": [388, 473, 474], "assertnotregexpmatch": [469, 473, 474], "assertrais": [112, 388, 451, 469, 471, 473, 474, 476, 483], "assertraisesregex": [388, 473, 474, 476, 483], "assertraisesregexp": [388, 469, 471, 473, 474], "assertregex": [388, 473, 474, 475, 483], "assertregexpmatch": [388, 469, 473, 474, 475], "assertsameel": 476, "assertsequenceequ": [388, 469, 471, 483], "assertsetequ": [388, 469, 471], "asserttru": [112, 388, 469, 473, 474, 475], "asserttupleequ": [388, 469, 471, 483], "assertwarn": [388, 475, 476, 483], "assertwarnsregex": [388, 475, 476, 483], "assertxyy": 388, "asset": 483, "assign": [54, 61, 63, 68, 73, 75, 76, 79, 85, 87, 93, 94, 95, 109, 112, 115, 120, 122, 139, 158, 167, 170, 176, 177, 181, 186, 191, 196, 202, 203, 205, 208, 212, 225, 226, 243, 250, 267, 271, 278, 283, 292, 293, 296, 297, 299, 314, 319, 330, 331, 337, 340, 341, 344, 347, 351, 352, 362, 364, 365, 376, 381, 386, 387, 388, 400, 411, 413, 422, 425, 427, 428, 429, 431, 432, 433, 435, 440, 441, 442, 449, 456, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 476, 478, 479, 480, 482, 483, 484], "assignment_express": [427, 430, 431], "assignment_stmt": 436, "assist": [95, 109, 264, 278, 385, 399, 426, 428, 464, 465, 466, 467, 468, 469, 480, 483], "assoc": 328, "associ": [5, 23, 33, 58, 61, 63, 66, 73, 75, 76, 84, 87, 92, 94, 99, 100, 101, 102, 106, 110, 115, 120, 135, 139, 144, 151, 158, 175, 177, 179, 186, 191, 193, 194, 196, 201, 203, 213, 230, 242, 245, 247, 248, 250, 252, 255, 267, 276, 283, 292, 293, 295, 297, 299, 314, 328, 329, 337, 344, 346, 348, 353, 358, 362, 365, 369, 375, 376, 386, 388, 402, 403, 405, 406, 410, 413, 415, 416, 419, 420, 422, 423, 426, 427, 428, 429, 431, 432, 436, 442, 454, 461, 469, 475, 476, 477, 480, 481, 482, 483], "associatefil": 461, "assoclen": 337, "assort": [63, 68, 74, 193, 375, 483], "assret": [389, 483], "assret_called_with": 389, "assrt": [389, 483], "assum": [5, 7, 33, 34, 41, 45, 54, 56, 60, 63, 72, 73, 76, 84, 85, 89, 95, 96, 99, 100, 101, 102, 106, 109, 120, 151, 153, 158, 161, 167, 169, 176, 183, 196, 199, 201, 202, 203, 209, 225, 230, 235, 242, 243, 247, 248, 249, 252, 266, 267, 268, 283, 288, 292, 293, 297, 302, 311, 313, 334, 337, 340, 341, 343, 344, 345, 347, 348, 358, 364, 366, 376, 386, 388, 395, 399, 408, 416, 421, 426, 428, 430, 432, 436, 461, 462, 463, 464, 467, 468, 470, 474, 476, 477, 478, 479, 480, 483], "assumpt": [33, 63, 73, 76, 100, 161, 181, 183, 343, 464, 468, 475, 479, 480, 483], "assur": [39, 76, 226, 283, 378, 428, 469, 471, 475, 483], "ast": [68, 156, 184, 225, 254, 264, 351, 377, 378, 467, 472, 473, 474, 476, 480, 483], "ast_for_dotted_nam": 483, "ast_obj": 122, "ast_unpars": 483, "astamp": 384, "asterisk": [64, 248, 344, 386, 406, 413, 427, 430, 436, 480], "asthana": 483, "astimezon": [183, 190, 425, 476, 479, 481, 483], "astr": 304, "astral": 483, "asttoken": 122, "astupl": [181, 483], "astz": 183, "asymmetr": 158, "asymmetri": 428, "asymptot": 483, "async": [19, 23, 26, 32, 50, 68, 87, 102, 123, 124, 125, 126, 129, 133, 134, 135, 136, 137, 138, 139, 169, 170, 191, 225, 226, 255, 264, 312, 341, 377, 385, 386, 388, 389, 390, 428, 430, 431, 435, 472, 473, 474, 479, 480, 481, 482, 483], "async_chat": [477, 483], "async_foo": 389, "async_for_stmt": 427, "async_func": 389, "async_funcdef": 427, "async_gen_wrap": [473, 483], "async_generator_athrow": 483, "async_iter": 225, "async_queri": 386, "async_with_stmt": 427, "asyncconnect": [388, 481], "asynccontextdecor": [169, 472, 483], "asynccontextmanag": [169, 386, 390, 428, 480, 483], "asyncexitstack": [169, 473, 480, 481, 483], "asyncfor": [122, 483], "asyncfunctiondef": [122, 483], "asyncgen": 126, "asyncgen_hook": 352, "asyncgener": [161, 344, 386, 479, 483], "asyncgeneratortyp": 385, "asynchat": [68, 426, 468, 473, 477, 483], "asynchron": [32, 63, 68, 87, 125, 130, 133, 135, 136, 137, 139, 161, 166, 169, 170, 187, 191, 213, 225, 256, 267, 283, 315, 337, 341, 348, 352, 385, 388, 390, 406, 427, 436, 469, 473, 474, 475, 476, 477, 478, 480, 481, 483], "asynci": 483, "asyncio": [68, 84, 101, 102, 114, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 156, 164, 169, 188, 254, 260, 267, 283, 341, 348, 352, 365, 389, 390, 428, 430, 455, 483], "asynciomodul": 483, "asynciter": [36, 49, 161, 344, 386, 478, 483], "asyncmock": [389, 390, 481, 483], "asyncmockmixin": 389, "asyncor": [68, 426, 466, 468, 473, 483], "asyncresult": 283, "asyncsetup": [388, 481], "asyncteardown": [388, 481], "asyncwith": [122, 483], "asynczip": 452, "at": [5, 7, 9, 13, 22, 23, 25, 27, 28, 31, 33, 34, 41, 42, 43, 45, 49, 58, 59, 60, 61, 63, 64, 66, 71, 72, 73, 75, 76, 77, 79, 85, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 115, 117, 120, 125, 126, 129, 133, 135, 136, 138, 139, 141, 144, 146, 149, 151, 153, 155, 158, 160, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 186, 188, 190, 191, 192, 193, 194, 196, 200, 201, 202, 203, 207, 208, 213, 214, 215, 218, 221, 223, 225, 226, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 275, 278, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 308, 309, 311, 313, 314, 318, 319, 320, 322, 324, 328, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 386, 388, 389, 390, 394, 395, 400, 402, 405, 406, 408, 410, 411, 412, 413, 415, 416, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "at_end_lin": 279, "at_eof": 136, "at_minsigstksz": 483, "atan": [154, 275, 468], "atan2": [154, 275, 483], "atanh": [154, 275, 468, 483], "atequ": 377, "atexit": [68, 78, 84, 112, 166, 254, 267, 315, 320, 402, 462, 466, 472, 483], "athen": 319, "atheo": [465, 483], "athirdstr": 304, "athrow": [161, 430, 482, 483], "athukorala": 483, "atim": 293, "atime_n": 293, "atlas": 319, "atle": [467, 483], "atof": [266, 466, 467], "atoi": [72, 266], "atom": [28, 68, 84, 227, 283, 293, 316, 319, 337, 344, 365, 366, 431, 433, 469, 470, 473, 476, 483], "atomic_uintptr_t": 483, "atop": [341, 467, 468], "atruevalu": 304, "atsuo": 477, "attach": [13, 33, 45, 72, 100, 101, 102, 120, 132, 183, 193, 194, 196, 197, 199, 203, 205, 206, 207, 212, 247, 267, 268, 284, 328, 329, 340, 352, 369, 375, 381, 388, 407, 425, 426, 427, 428, 436, 463, 465, 469, 470, 476, 479, 481, 483], "attach_loop": [132, 483], "attach_mock": [389, 390, 483], "attack": [109, 173, 225, 235, 244, 262, 268, 332, 340, 344, 358, 409, 467, 468, 469, 472, 473, 476, 477, 478, 479, 480, 481, 482, 483], "attain": 225, "attali": 483, "attempt": [5, 11, 23, 25, 31, 33, 47, 59, 61, 63, 67, 85, 92, 94, 96, 99, 102, 106, 109, 110, 120, 122, 133, 149, 155, 167, 169, 173, 177, 184, 186, 190, 191, 193, 194, 196, 199, 203, 205, 206, 207, 209, 212, 213, 225, 226, 242, 243, 247, 248, 250, 255, 258, 265, 266, 268, 269, 270, 271, 278, 282, 283, 293, 295, 299, 302, 305, 307, 311, 313, 314, 319, 320, 322, 325, 328, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 352, 358, 359, 362, 364, 365, 366, 386, 388, 394, 395, 410, 413, 415, 416, 417, 422, 423, 427, 428, 430, 432, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 478, 479, 480, 481, 482, 483], "atten": 450, "attent": [7, 100, 106, 177, 384, 465, 475, 477], "attim": [269, 477], "attitud": 193, "attlistdeclhandl": 314, "attnam": 314, "attorney": 319, "attr": [52, 63, 68, 79, 92, 122, 177, 191, 240, 244, 251, 255, 273, 281, 291, 292, 299, 314, 360, 362, 369, 388, 389, 413, 415, 416, 417, 427, 428, 431, 436, 462, 463, 466, 473, 476, 483], "attr_nam": [49, 362, 464], "attract": [271, 468, 470], "attrdict": [267, 483], "attrgett": [87, 95, 108, 147, 291, 466, 467, 468, 475, 478, 483], "attrib": [413, 467, 483], "attribut": [11, 22, 23, 26, 27, 31, 33, 45, 49, 50, 56, 60, 61, 63, 68, 74, 79, 87, 88, 95, 101, 103, 106, 108, 110, 112, 115, 118, 120, 122, 133, 137, 142, 144, 149, 151, 155, 158, 159, 160, 167, 174, 175, 176, 177, 181, 183, 186, 190, 191, 193, 195, 196, 197, 200, 203, 205, 207, 208, 213, 215, 216, 225, 226, 228, 233, 234, 242, 243, 244, 245, 247, 248, 250, 251, 254, 258, 259, 262, 268, 269, 270, 271, 273, 281, 283, 288, 291, 295, 298, 299, 302, 304, 305, 312, 313, 314, 315, 319, 321, 325, 328, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 345, 347, 348, 353, 358, 361, 362, 364, 365, 366, 367, 369, 371, 374, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 405, 408, 410, 411, 413, 414, 415, 417, 419, 420, 422, 423, 425, 426, 427, 429, 435, 436, 440, 442, 456, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 481, 482, 483, 484], "attribute1": 389, "attribute2": 389, "attribute_nam": 345, "attribute_nod": 410, "attributeerror": [23, 49, 58, 68, 88, 93, 102, 151, 169, 176, 181, 213, 225, 226, 250, 255, 268, 283, 293, 299, 302, 319, 333, 344, 362, 367, 385, 388, 389, 390, 410, 411, 427, 428, 430, 436, 450, 456, 462, 464, 469, 473, 475, 476, 477, 478, 480, 483], "attributenam": [11, 73], "attributeref": [430, 436], "attributesimpl": 416, "attributesn": [68, 273, 414, 415], "attributesnsimpl": 416, "attrnam": [79, 267, 410], "attroff": 177, "attron": 177, "attrs_dict": 413, "attrset": 177, "atyp": 432, "au": [68, 206, 254, 295, 336, 341, 350, 450], "au_read": 68, "au_writ": [68, 477], "auburn": 94, "aud": 483, "audibl": [102, 177], "audienc": [101, 307, 400, 434, 465, 470], "audio": [68, 117, 141, 153, 206, 336, 362, 406, 462, 483], "audio_file_encoding_adpcm_g721": 349, "audio_file_encoding_adpcm_g722": 349, "audio_file_encoding_adpcm_g723_3": 349, "audio_file_encoding_adpcm_g723_5": 349, "audio_file_encoding_alaw_8": 349, "audio_file_encoding_doubl": 349, "audio_file_encoding_float": 349, "audio_file_encoding_linear_16": 349, "audio_file_encoding_linear_24": 349, "audio_file_encoding_linear_32": 349, "audio_file_encoding_linear_8": 349, "audio_file_encoding_mulaw_8": 349, "audio_file_mag": 349, "audio_mac": 468, "audioclip": 481, "audiodev": [295, 468], "audioop": [68, 254, 350, 467, 473, 474, 482, 483], "audit": [24, 58, 59, 68, 98, 115, 121, 142, 176, 185, 227, 274, 293, 335, 352, 353, 385, 395, 450, 455, 465, 472, 483], "aug": [33, 95, 183, 423, 464, 465], "augassign": [122, 431], "augload": [482, 483], "augment": [63, 68, 85, 120, 122, 193, 268, 276, 331, 375, 428, 431, 435, 455, 475, 483, 484], "augmented_assignment_stmt": 436, "augop": 436, "augoper": 431, "augstor": [482, 483], "augtarget": 436, "augu": 149, "auguri": 465, "august": [150, 467], "augusto": 483, "augustus": 435, "aumasson": [235, 426], "auread": 450, "austin": 468, "australia": 366, "australianphilosoph": 428, "austria": 413, "auth": [223, 248, 269, 335, 341, 465, 478, 483], "auth_cram_md5": 335, "auth_handl": 395, "auth_login": [335, 483], "auth_plain": 335, "auth_siz": 235, "authent": [68, 164, 223, 235, 241, 248, 267, 269, 286, 288, 305, 335, 341, 395, 419, 424, 464, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "authenticationerror": 283, "authinfo": 288, "authkey": [283, 284, 483], "authobject": [248, 335], "author": [31, 73, 77, 95, 100, 101, 106, 110, 111, 158, 160, 193, 213, 235, 242, 251, 252, 269, 293, 307, 340, 341, 388, 394, 395, 419, 426, 453, 462, 463, 464, 465, 466, 467, 468, 469, 471, 473, 475, 477, 478, 483], "author_email": [307, 483], "authoris": 248, "authorit": [31, 110, 474, 483], "authorized_key": 332, "authorizer_callback": 340, "authorship": 426, "authpriv": 269, "authreq": 395, "authuri": 395, "auto": [33, 68, 93, 96, 110, 183, 211, 247, 320, 331, 337, 384, 389, 456, 460, 462, 469, 472, 475, 479, 480, 483], "auto_fil": 96, "auto_spec": 483, "autocommit": [68, 298, 474, 483], "autocomplet": [479, 480, 483], "autocompletewindow": 483, "autoconf": [456, 474, 483], "autodetect": [109, 304, 358, 395, 463, 467], "autoexec": 106, "autoexpand": 483, "autogil": 468, "autoincr": [376, 483], "autojunk": 190, "autom": [76, 84, 288, 365, 463, 469, 477, 481, 483], "automak": 483, "automat": [7, 23, 28, 33, 45, 55, 59, 61, 63, 68, 71, 73, 76, 84, 85, 92, 95, 96, 99, 106, 109, 112, 120, 132, 133, 139, 151, 155, 158, 161, 167, 169, 176, 177, 181, 184, 186, 187, 190, 191, 193, 196, 201, 205, 206, 208, 209, 213, 223, 225, 226, 234, 242, 243, 248, 250, 255, 266, 267, 268, 270, 271, 272, 278, 281, 283, 288, 292, 293, 297, 299, 308, 313, 320, 323, 328, 330, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 356, 358, 362, 365, 366, 368, 369, 376, 384, 386, 388, 394, 395, 405, 411, 415, 419, 422, 423, 426, 428, 429, 430, 432, 436, 446, 451, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "automata": 106, "automatrix": 426, "automount": 33, "autonam": 94, "autonom": [338, 426], "autonumb": 94, "autoproxi": 483, "autorais": [403, 467], "autorang": [367, 479, 483], "autoreconf": 456, "autosav": 247, "autospec": [389, 390, 483], "autospecc": [68, 187, 483], "autospect": 483, "autotool": [469, 478, 479], "auwrit": 450, "auxiliari": [102, 108, 261, 475, 483], "auxiliary_modul": 102, "auxv": 483, "avail": [5, 7, 11, 13, 22, 23, 25, 26, 27, 33, 34, 39, 42, 45, 55, 58, 59, 61, 64, 66, 68, 71, 72, 73, 75, 77, 84, 85, 92, 94, 96, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 133, 136, 137, 139, 151, 155, 158, 163, 167, 169, 170, 173, 176, 177, 182, 184, 186, 191, 195, 207, 210, 212, 213, 214, 215, 218, 223, 225, 226, 229, 230, 233, 235, 242, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 262, 266, 267, 268, 269, 271, 275, 276, 278, 282, 283, 284, 287, 288, 292, 293, 295, 297, 299, 304, 305, 308, 313, 314, 315, 318, 319, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 354, 356, 358, 359, 361, 362, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 385, 386, 388, 395, 399, 403, 405, 408, 410, 411, 413, 414, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "available_timezon": [425, 483], "availmask": 177, "avenu": [319, 426, 464], "averag": [93, 141, 261, 293, 308, 318, 344, 348, 376, 382, 434, 451, 470, 477, 481, 483], "average_arrival_interv": 318, "average_service_tim": 318, "averi": 480, "avg": 141, "avgpp": 141, "avi": [468, 469, 476, 479, 480, 483], "avif": 483, "avir": [472, 483], "aviv": [473, 479, 481, 483], "avoid": [23, 33, 34, 42, 61, 63, 68, 72, 73, 75, 76, 85, 92, 94, 95, 101, 103, 106, 108, 109, 120, 132, 133, 137, 138, 139, 149, 158, 160, 167, 169, 176, 177, 183, 186, 215, 225, 242, 245, 248, 255, 259, 265, 266, 268, 269, 271, 278, 283, 289, 292, 293, 299, 314, 319, 321, 332, 333, 337, 340, 342, 344, 348, 352, 358, 362, 364, 365, 366, 369, 375, 385, 388, 395, 406, 410, 411, 413, 417, 427, 428, 430, 431, 432, 435, 436, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "avoids_symlink_attack": [332, 483], "avraham": 483, "avvan": 483, "aw": [139, 483], "await": [63, 68, 87, 123, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 161, 169, 170, 188, 191, 225, 255, 264, 344, 377, 385, 386, 388, 389, 427, 429, 431, 433, 435, 462, 465, 472, 473, 479, 480, 481, 482, 483], "await_arg": 389, "await_args_list": [389, 483], "await_count": 389, "await_expr": 430, "await_primari": 431, "awaken": 365, "awar": [68, 77, 99, 100, 103, 106, 108, 139, 167, 179, 182, 194, 196, 200, 202, 203, 205, 206, 209, 226, 230, 248, 266, 272, 293, 340, 341, 345, 352, 366, 369, 400, 413, 416, 455, 456, 461, 462, 464, 465, 466, 470, 471, 474, 475, 476, 479, 480, 483], "away": [23, 27, 33, 76, 85, 95, 101, 102, 120, 177, 183, 186, 193, 247, 250, 255, 275, 283, 292, 293, 308, 319, 452, 464, 465, 470, 477, 478, 483], "awk": [439, 462], "awkward": [100, 469, 481], "awoken": 365, "awri": 365, "awrit": 483, "aws": [139, 483], "ax": 261, "ax_check_openssl": 483, "axi": [85, 275, 376, 441, 472], "axyo": 103, "ay": [261, 319], "aycock": 463, "aync": 191, "ayon": 200, "ayt": 359, "ayz": 344, "az": 95, "azur": 483, "b1": [103, 337, 384], "b10": 93, "b1000000": 483, "b1152000": 483, "b1500000": 483, "b16decod": 143, "b16encod": 143, "b1o": 394, "b2": [103, 337, 384], "b2000000": 483, "b2500000": 483, "b2a_base64": [146, 479, 483], "b2a_hex": [146, 158, 483], "b2a_hqx": [473, 482, 483], "b2a_qp": [146, 483], "b2a_uu": [146, 480, 483], "b2j": 190, "b3": 337, "b3000000": 483, "b32": 477, "b32decod": [143, 477, 483], "b32encod": 143, "b32hexdecod": [143, 472, 483], "b32hexencod": [143, 472, 483], "b3500000": 483, "b4000000": 483, "b500000": 483, "b576000": 483, "b64decod": [143, 235, 476, 483], "b64encod": [143, 235, 483], "b85decod": [143, 477], "b85encod": [143, 477, 483], "b9": 146, "b901": 146, "b901ef": 146, "b921600": 483, "b9_01ef": 146, "b_c": 470, "b_exit": 483, "b_nofallthrough": 483, "b_return": 483, "ba": [120, 255, 261, 422, 478], "babel": [89, 230], "babyl": [68, 285], "babylmessag": [68, 285], "bac": 120, "bacd": 160, "bach": 160, "bachmann": 483, "back": [7, 10, 22, 25, 28, 39, 41, 42, 58, 59, 63, 64, 73, 76, 84, 85, 95, 96, 102, 106, 108, 109, 112, 120, 128, 133, 146, 151, 155, 158, 161, 167, 169, 177, 181, 183, 186, 190, 191, 193, 194, 196, 205, 208, 215, 225, 230, 232, 235, 243, 245, 250, 258, 268, 269, 278, 282, 283, 284, 292, 293, 295, 297, 299, 312, 314, 319, 330, 337, 338, 340, 341, 342, 344, 345, 352, 358, 362, 366, 369, 377, 378, 384, 394, 395, 413, 417, 419, 420, 422, 425, 427, 428, 432, 436, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 481, 482, 483], "backend": [76, 158, 177, 184, 340, 352, 362, 390, 456], "backendprovid": 390, "background": [33, 68, 77, 92, 102, 139, 167, 169, 177, 246, 247, 269, 283, 293, 340, 348, 362, 365, 369, 375, 376, 384, 427, 428, 452, 466, 477, 483], "background_task": 139, "backgroundcolor": 384, "backgroundimag": 384, "backlog": [126, 136, 283, 337, 478, 483], "backoff": [362, 483], "backport": [68, 247, 251, 252, 314, 358, 386, 389, 413, 422, 468, 478, 479, 480, 481, 482, 483], "backrefer": [106, 319, 483], "backslash": [68, 158, 159, 193, 209, 225, 247, 258, 283, 293, 319, 348, 435, 446, 465, 466, 470, 474, 479, 480, 483], "backslashreplac": [33, 34, 109, 158, 214, 225, 258, 267, 293, 344, 352, 455, 465, 478, 480, 483], "backslashreplace_error": 158, "backspac": [92, 106, 177, 178, 247, 319, 435, 448, 483], "backtick": [112, 146, 397, 470, 480], "backtrac": [96, 483], "backtrack": [106, 319, 483], "backup": [102, 112, 218, 269, 340, 358, 468, 475, 480, 483], "backupcount": [102, 268, 269, 469], "backus": 434, "backward": [23, 24, 33, 59, 61, 64, 66, 80, 87, 101, 102, 120, 128, 144, 167, 177, 183, 191, 193, 194, 196, 205, 207, 208, 213, 228, 245, 248, 250, 255, 267, 268, 271, 293, 295, 299, 302, 308, 314, 319, 322, 332, 337, 341, 344, 348, 362, 366, 381, 384, 386, 394, 395, 397, 419, 428, 430, 432, 435, 436, 440, 461, 462, 464, 465, 467, 468, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483], "backward_target": 483, "bacon": [120, 160, 190, 250, 279, 344, 381, 395, 428], "baconhamegg": 279, "bad": [42, 68, 72, 73, 101, 110, 120, 188, 190, 193, 201, 212, 213, 235, 247, 266, 268, 271, 283, 292, 308, 333, 384, 386, 397, 422, 436, 441, 443, 464, 468, 470, 472, 477, 479, 483], "bad_cb": 386, "bad_gateway": 241, "bad_request": 241, "badaracco": [474, 483], "badarasco": 473, "badchild": 474, "badger": 120, "badgzipfil": [234, 481, 483], "badmodul": 279, "badoptionerror": 292, "badstatuslin": 242, "badzipfil": [422, 483], "baffl": 309, "bag": [160, 200, 427, 440], "baggag": 75, "bail": [35, 483], "bailey": 468, "baiter": [478, 483], "baji": 483, "bak": 218, "bake": [175, 319], "baker": 475, "bakker": [480, 483], "balanc": [106, 160, 261, 477], "balcerzak": 479, "balezin": 483, "balf": [473, 474, 483], "balhar": 482, "baller": [196, 205], "balling": 483, "balloon": 375, "ballot": 475, "balogh": [479, 483], "baltic": 158, "bam": [101, 267], "banana": [291, 344, 442, 451, 471], "band": [68, 298, 328, 483], "bandclass": 114, "bandwidth": [102, 109, 343, 441, 469, 472], "bang": 389, "bank": 468, "banner": [155, 157, 483], "banquet": 468, "bar": [28, 51, 85, 87, 94, 101, 102, 104, 106, 120, 122, 155, 167, 176, 177, 200, 228, 243, 247, 250, 262, 267, 268, 283, 288, 291, 292, 293, 294, 296, 297, 302, 304, 308, 311, 313, 334, 340, 344, 358, 362, 369, 374, 376, 385, 386, 388, 389, 390, 407, 422, 423, 425, 427, 432, 434, 435, 436, 441, 462, 468, 483], "bar_const": 362, "bar_pars": 120, "bar_test": [388, 480], "bar_var": 85, "bare": [34, 101, 102, 122, 167, 203, 292, 335, 431, 459, 461, 467, 470, 473, 481, 483], "barebon": 459, "barker": [478, 483], "barkhau": 481, "barn": [468, 480, 483], "barnert": [479, 483], "barnett": [477, 483], "barney": [472, 474, 483], "barran": 468, "barri": [230, 462, 463, 464, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "barrier": [68, 124, 164, 283, 384, 473, 475, 483], "barriertest": 474, "barry_as_flufl": 483, "bart": 481, "bartelt": 85, "barton": 483, "bas": 472, "base": [5, 18, 23, 25, 31, 33, 34, 39, 43, 45, 47, 49, 50, 61, 63, 64, 68, 73, 75, 76, 78, 84, 87, 88, 89, 92, 93, 94, 95, 98, 99, 100, 101, 103, 106, 110, 120, 122, 123, 132, 136, 139, 143, 144, 145, 146, 154, 157, 163, 167, 169, 173, 176, 181, 182, 183, 186, 187, 189, 193, 195, 197, 199, 200, 201, 202, 203, 205, 206, 208, 221, 225, 226, 234, 235, 242, 243, 245, 246, 247, 248, 251, 253, 254, 255, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 280, 281, 282, 283, 288, 292, 293, 296, 298, 299, 302, 305, 308, 312, 314, 319, 320, 321, 324, 329, 330, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 362, 365, 366, 369, 375, 376, 382, 385, 386, 387, 388, 394, 395, 398, 399, 400, 403, 407, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 433, 435, 440, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 470, 471, 472, 473, 474, 476, 477, 478, 479, 481, 482, 483, 484], "base1": [122, 440], "base16": [68, 254, 285, 466], "base2": [122, 440], "base3": 440, "base32": [68, 254, 285, 466, 472, 483], "base64": [68, 146, 156, 158, 195, 196, 197, 198, 199, 202, 203, 206, 208, 235, 248, 251, 254, 285, 317, 326, 327, 335, 341, 382, 395, 397, 419, 464, 466, 482, 483], "base64_codec": 158, "base64mim": 483, "base85": [68, 254, 285, 477, 483], "base_64": 158, "base_class": 203, "base_dir": [68, 142, 219], "base_environ": 407, "base_ev": [126, 352, 430, 483], "base_exec_prefix": [34, 334, 352, 399, 450], "base_execut": 34, "base_futur": 129, "base_nam": [142, 332], "base_prefix": [34, 230, 334, 352, 399, 450], "base_subprocess": 137, "base_url": 413, "basealia": 85, "basecflag": 456, "basecgihandl": 407, "baseclass": 78, "baseclassnam": 440, "baseconfigur": 268, "basecooki": 244, "basecppflag": 456, "basedefaulteventlooppolici": 483, "basedir": 281, "baseeventloop": [128, 483], "baseexcept": [23, 127, 139, 166, 213, 267, 352, 353, 381, 432, 436, 443, 450, 467, 468, 470, 473, 480, 481, 483], "baseexceptiongroup": [139, 169, 213, 381, 427, 473, 483], "basehandl": [68, 256, 389, 407, 483], "basehead": [203, 205], "basehttp": 245, "basehttprequesthandl": [110, 242, 245, 393, 407, 475, 476, 483], "basehttpserv": 470, "baselin": 160, "basemanag": [283, 284, 483], "basenam": [98, 102, 120, 184, 193, 292, 294, 296, 369, 375, 399, 422, 483], "baseprocess": 483, "baseprotocol": 133, "baseproxi": [283, 483], "baserequesthandl": 338, "baserotatinghandl": [68, 101, 118, 466], "baseselector": [329, 483], "baseselectoreventloop": 483, "baseserv": [338, 476, 483], "basestr": [112, 465, 470, 477], "basetestcas": 344, "basetestsuit": 388, "basetransport": [133, 136, 481], "basetwo": 226, "bash": [102, 155, 296, 331, 399, 447, 453, 483], "basi": [85, 101, 102, 158, 176, 243, 262, 267, 271, 308, 352, 353, 358, 422, 426, 432, 436, 461, 464, 465, 480, 483], "basic": [23, 33, 63, 64, 68, 73, 74, 75, 77, 84, 85, 92, 93, 95, 96, 99, 101, 102, 103, 112, 120, 135, 144, 155, 158, 160, 167, 169, 177, 183, 184, 187, 189, 190, 230, 234, 245, 247, 250, 252, 255, 258, 262, 267, 269, 283, 292, 304, 307, 308, 322, 337, 338, 340, 341, 344, 348, 358, 362, 365, 368, 369, 374, 376, 381, 384, 386, 388, 395, 406, 412, 413, 414, 415, 419, 420, 430, 436, 456, 462, 464, 465, 467, 468, 469, 471, 475, 476, 477, 478, 481, 483], "basicauth": 395, "basicblock": 483, "basicconfig": [93, 101, 102, 125, 169, 267, 466, 475, 476, 481, 483], "basiccontext": [186, 476], "basicinterpol": [167, 473, 483], "basics": [49, 58, 61, 474, 483], "basictestrunn": 483, "basicus": 386, "basket": 442, "bass": [249, 336], "bastian": 473, "bastien": [475, 477], "bastin": [109, 466], "bastion": 465, "bat": [106, 296, 319, 348, 362, 399, 483], "batch": [101, 106, 261, 299, 348, 461, 474, 478, 483], "batch_proc": 386, "batch_siz": 96, "batcheld": [109, 483], "batchmod": 167, "batchrenam": 452, "batista": [466, 468], "batteri": 451, "battl": 483, "batuhan": [472, 473, 474, 481, 482, 483], "baud": [92, 483], "baudrat": 177, "bauer": 465, "baxter": [464, 466, 467], "bayard": 483, "bayer": 483, "bayesian": [68, 290], "bayl": [480, 481, 483], "baz": [101, 102, 104, 120, 167, 247, 250, 262, 267, 268, 283, 293, 311, 362, 385, 388, 389, 390, 407, 432, 436], "bb": [33, 95, 160, 261, 267, 455, 480, 483], "bbb": 261, "bbbb": 106, "bbc": [80, 166, 439, 478], "bbdehiioqssuvvwx": 455, "bbedit": [177, 459], "bbhhiillqq": 469, "bbox": 376, "bc": [103, 106, 160, 247, 261, 344, 462], "bcc": [203, 335], "bcd": [106, 261], "bcde": [190, 261, 469], "bce": 344, "bcj": [270, 483], "bclass": 106, "bcm": [337, 483], "bcryptgenrandom": [293, 473, 483], "bd": 261, "bd1a": [398, 467], "bdaddr": 337, "bdaddr_ani": 337, "bdaddr_loc": 337, "bdb": [68, 167, 185, 254, 297, 456, 469, 481, 483], "bdbquit": 144, "bdeo": 103, "bdfl": 87, "bdist": 478, "bdist_": 463, "bdist_dumb": 483, "bdist_msi": [473, 482, 483], "bdist_rpm": [462, 483], "bdist_wheel": [472, 473, 481, 482, 483], "bdist_wininst": [462, 472, 481, 482, 483], "be": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 128, 132, 133, 135, 136, 137, 138, 139, 141, 143, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 179, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 448, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bean": [175, 319], "bear": [64, 183, 243, 250, 283, 344, 352, 483], "beauregard": [473, 483], "beauti": [114, 190], "beazley": [109, 464, 475], "becam": [95, 149, 293, 335, 352, 366, 386, 462, 468, 469, 478, 481, 482, 483], "becaus": [5, 23, 28, 33, 34, 42, 45, 47, 54, 58, 60, 63, 71, 72, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 122, 129, 133, 135, 136, 137, 139, 149, 151, 157, 158, 161, 163, 166, 167, 169, 176, 181, 183, 184, 186, 190, 193, 196, 201, 203, 205, 208, 212, 213, 214, 215, 225, 226, 230, 235, 243, 244, 245, 247, 250, 251, 253, 255, 258, 261, 267, 268, 269, 270, 271, 281, 283, 287, 292, 293, 295, 297, 299, 301, 302, 319, 328, 330, 331, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 358, 359, 362, 365, 366, 369, 375, 384, 386, 388, 395, 400, 402, 406, 407, 410, 413, 415, 419, 425, 427, 428, 429, 430, 431, 432, 435, 436, 449, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beck": [362, 388, 463], "becker": 476, "becom": [28, 33, 34, 63, 64, 66, 73, 84, 85, 92, 93, 94, 95, 100, 102, 106, 107, 109, 112, 132, 133, 139, 141, 158, 177, 193, 196, 202, 205, 225, 247, 255, 258, 261, 283, 292, 293, 297, 299, 308, 311, 318, 328, 329, 331, 332, 333, 341, 344, 345, 348, 352, 358, 365, 369, 376, 384, 386, 395, 422, 427, 428, 429, 430, 436, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beda": 469, "bednarski": 483, "bee": 94, "beef": 475, "beek": 472, "been": [5, 7, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 43, 45, 47, 49, 58, 59, 60, 63, 64, 67, 73, 75, 79, 84, 85, 92, 93, 94, 95, 99, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 133, 134, 139, 141, 144, 149, 151, 153, 155, 158, 160, 161, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 196, 199, 201, 202, 204, 207, 212, 213, 218, 225, 226, 230, 232, 235, 242, 243, 244, 247, 248, 250, 251, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 276, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 309, 314, 319, 320, 322, 328, 329, 331, 333, 334, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 354, 356, 358, 360, 361, 362, 364, 365, 366, 369, 375, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 402, 403, 405, 408, 411, 412, 413, 416, 419, 420, 421, 422, 426, 427, 428, 429, 430, 432, 435, 436, 442, 446, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beep": [177, 406, 479], "beer": [176, 483], "beetl": 94, "beewar": 459, "befor": [5, 7, 13, 17, 22, 23, 27, 28, 31, 33, 34, 42, 45, 51, 55, 56, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 85, 87, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 110, 115, 117, 120, 128, 132, 133, 135, 136, 137, 139, 141, 149, 151, 153, 155, 157, 158, 159, 167, 169, 170, 176, 177, 183, 184, 186, 190, 191, 193, 195, 196, 201, 203, 205, 213, 218, 223, 225, 226, 234, 242, 243, 245, 247, 248, 250, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 313, 314, 319, 320, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 362, 364, 365, 366, 375, 376, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 411, 412, 413, 414, 415, 416, 420, 422, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 446, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "before_and_aft": 261, "before_async_with": 191, "before_with": [191, 473], "beforehand": [45, 432], "beg": 177, "began": [243, 250, 267, 362, 462, 463, 483], "begidx": 155, "begin": [7, 23, 58, 68, 73, 75, 76, 78, 79, 84, 85, 95, 102, 106, 117, 120, 139, 151, 155, 167, 177, 178, 183, 186, 190, 193, 196, 201, 209, 215, 247, 250, 255, 258, 261, 262, 270, 271, 278, 283, 288, 293, 297, 301, 302, 314, 319, 320, 324, 334, 335, 340, 341, 344, 345, 347, 358, 359, 364, 369, 376, 378, 384, 388, 413, 415, 416, 425, 427, 428, 429, 430, 432, 434, 435, 436, 449, 455, 456, 461, 464, 467, 468, 469, 474, 479, 480, 483], "begin_fil": 384, "begin_fin": [481, 483], "begin_i": [92, 177], "begin_poli": 384, "begin_x": [92, 177], "beginn": [267, 331], "begun": [365, 465, 466], "behalf": [33, 333, 426, 483], "behav": [10, 23, 33, 34, 45, 63, 64, 76, 85, 94, 100, 102, 106, 109, 163, 167, 169, 170, 176, 183, 184, 186, 226, 244, 257, 258, 271, 278, 288, 293, 320, 321, 333, 335, 337, 338, 341, 344, 348, 352, 356, 364, 369, 386, 388, 411, 413, 427, 428, 429, 430, 435, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 480, 481, 483], "behavior": [22, 23, 27, 28, 33, 34, 42, 58, 61, 63, 68, 73, 79, 85, 92, 93, 94, 100, 101, 102, 119, 120, 132, 139, 149, 157, 167, 173, 176, 177, 181, 183, 186, 190, 193, 194, 196, 201, 203, 205, 206, 208, 213, 215, 218, 225, 234, 242, 245, 247, 250, 255, 257, 261, 262, 266, 267, 269, 270, 271, 275, 276, 283, 288, 292, 293, 299, 302, 309, 314, 328, 331, 332, 333, 334, 335, 337, 338, 341, 343, 344, 345, 347, 348, 352, 358, 362, 365, 366, 369, 374, 376, 378, 381, 383, 386, 388, 394, 395, 400, 410, 425, 427, 428, 429, 430, 432, 435, 436, 455, 456, 461, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 482, 483, 484], "behaviour": [28, 31, 33, 49, 63, 68, 84, 85, 95, 101, 102, 106, 169, 189, 213, 215, 217, 243, 255, 258, 267, 268, 269, 283, 292, 293, 299, 311, 319, 320, 328, 331, 333, 337, 338, 340, 344, 348, 352, 364, 384, 394, 395, 400, 413, 416, 419, 428, 430, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 476, 477, 479, 480, 483], "behind": [93, 176, 193, 309, 325, 355, 358, 384, 395, 428, 461, 463, 466, 483], "behnel": [473, 477, 478, 480, 481, 483], "beihang": 426, "being": [5, 7, 13, 22, 23, 27, 28, 33, 45, 60, 61, 63, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 133, 139, 149, 151, 158, 159, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 191, 193, 195, 196, 202, 205, 208, 213, 216, 218, 225, 226, 230, 234, 247, 248, 250, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 283, 292, 293, 295, 297, 299, 302, 307, 308, 309, 312, 314, 318, 319, 320, 324, 328, 329, 330, 332, 333, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 353, 355, 362, 364, 365, 366, 369, 376, 381, 386, 388, 394, 399, 400, 407, 410, 413, 414, 415, 417, 421, 422, 426, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bel": [178, 435, 465, 466, 467, 468, 469, 475, 476], "belang": 481, "belchenko": 469, "believ": [95, 292, 465], "bell": [177, 178, 369, 435, 467, 483], "belmont": [466, 472, 473, 483], "belong": [33, 42, 58, 63, 73, 85, 94, 100, 139, 193, 243, 259, 272, 281, 292, 293, 314, 338, 340, 344, 376, 385, 400, 410, 416, 427, 428, 440, 469, 476, 483], "belopolski": [109, 468, 469, 471, 474, 475, 478, 479, 480, 483], "below": [7, 23, 33, 45, 55, 59, 60, 61, 63, 64, 66, 73, 76, 93, 94, 95, 96, 101, 102, 110, 115, 117, 120, 133, 144, 149, 158, 167, 177, 179, 181, 183, 186, 189, 191, 193, 195, 203, 208, 213, 221, 230, 233, 235, 242, 243, 245, 247, 248, 249, 250, 252, 258, 266, 267, 268, 269, 276, 282, 283, 288, 292, 293, 295, 297, 299, 307, 314, 319, 320, 321, 322, 324, 328, 329, 331, 332, 333, 334, 335, 336, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 356, 358, 359, 362, 364, 365, 366, 369, 371, 376, 380, 384, 386, 388, 395, 403, 406, 413, 414, 419, 420, 422, 426, 427, 428, 429, 430, 431, 432, 435, 441, 461, 462, 463, 465, 467, 468, 469, 470, 474, 477, 478, 483], "below_normal_priority_class": 348, "ben": [463, 467, 473, 478, 483], "benc": 483, "benchmark": [85, 226, 308, 455, 462, 463, 465, 466, 467, 469, 470, 471, 473, 474, 476, 477, 478, 481, 482, 483], "bend": 466, "benderski": 477, "beneath": [112, 413, 483], "benedikt": 483, "benefici": [85, 102, 139, 426, 478], "benefit": [33, 85, 95, 102, 186, 268, 299, 344, 352, 362, 376, 386, 461, 464, 465, 466, 469, 475, 476, 480, 481, 483], "benesch": 479, "benevol": [87, 462], "bengt": 468, "beni": 466, "benign": 243, "benjamin": [109, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "bennett": 475, "benno": [478, 483], "beno": 483, "bent": 106, "beo": 470, "beopen": [68, 69], "bepoint": 344, "bereft": 441, "berg": 483, "berkeley": [107, 184, 470], "berkeleydb": [465, 468, 469, 483], "berker": [472, 477, 478, 479, 480, 481, 483], "berlin": 425, "berman": 477, "bernard": 483, "bernat": 341, "bernhard": 480, "bernstein": [235, 426, 468, 483], "berri": 483, "bertog": 468, "bertoni": 479, "besid": [5, 76, 93, 94, 183, 225, 333, 376, 435, 461, 483], "bessel": 343, "best": [31, 55, 64, 68, 84, 92, 95, 100, 101, 102, 122, 141, 174, 183, 186, 190, 193, 194, 195, 205, 223, 225, 226, 230, 234, 235, 242, 247, 248, 255, 270, 283, 288, 292, 293, 305, 307, 308, 331, 335, 337, 340, 344, 352, 358, 367, 369, 375, 384, 386, 403, 425, 428, 432, 456, 461, 462, 466, 467, 470, 474, 475, 477, 478, 479, 482, 483], "bet": 73, "beta": [4, 68, 113, 318, 352, 451, 462, 468, 478, 484], "beta1": 483, "betavari": 318, "bethard": [467, 469, 475, 478, 483], "better": [68, 72, 73, 75, 76, 84, 85, 93, 95, 100, 101, 102, 106, 114, 120, 138, 141, 159, 176, 190, 193, 215, 226, 228, 234, 247, 261, 266, 271, 283, 292, 293, 305, 308, 328, 347, 348, 365, 366, 369, 376, 384, 386, 388, 397, 413, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "betterexplain": 261, "betti": 419, "between": [7, 18, 20, 33, 34, 39, 42, 45, 54, 56, 60, 61, 63, 68, 72, 73, 74, 75, 76, 79, 84, 89, 91, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 120, 122, 133, 141, 146, 149, 158, 161, 164, 167, 173, 177, 183, 186, 191, 193, 195, 196, 197, 201, 205, 209, 213, 216, 218, 225, 230, 235, 247, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 275, 276, 278, 293, 295, 296, 297, 299, 308, 318, 319, 320, 334, 337, 338, 339, 340, 341, 343, 344, 347, 348, 352, 359, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 382, 384, 385, 388, 394, 395, 400, 405, 410, 411, 413, 417, 419, 425, 426, 427, 428, 430, 431, 432, 434, 436, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "beverag": 101, "bewar": [158, 221, 262, 283, 330, 340, 341, 432, 451, 470], "beyond": [33, 68, 74, 92, 99, 106, 118, 183, 186, 197, 203, 255, 262, 268, 271, 282, 293, 319, 337, 340, 341, 344, 347, 405, 427, 434, 463, 474, 476, 483], "bf": [102, 319, 451], "bf_getbuff": [61, 63, 473], "bf_releasebuff": [5, 61, 63, 473], "bfd": 475, "bg": [177, 369, 376, 384, 483], "bgcolor": 384, "bgenloc": 468, "bgpic": 384, "bhat": 474, "bhi": 190, "bhl": 347, "bias": [141, 196, 205, 308, 318, 465, 475], "bibbl": 389, "bick": [95, 407], "bidirect": [109, 133, 283, 344, 346, 387, 462, 483], "bierenfeld": 477, "big": [4, 25, 35, 42, 64, 68, 73, 78, 84, 95, 102, 107, 109, 132, 133, 141, 153, 158, 167, 176, 177, 191, 230, 259, 269, 295, 344, 347, 349, 352, 362, 398, 405, 434, 452, 456, 464, 465, 466, 469, 471, 473, 475, 477, 483], "big5": [158, 466], "big5hksc": [158, 466], "bigaddrspacetest": 362, "bigcharset": 464, "bigdecim": 419, "bigendian": 153, "bigendianstructur": [176, 344, 483], "bigendianunion": [176, 483], "bigger": [64, 93, 275, 332, 344, 358, 461, 481, 483], "biggest": [92, 382, 470, 475, 476], "biginteg": 419, "bigmemtest": 362, "bignum": [186, 344, 476], "bigobject": 262, "biject": [33, 109], "bill": [102, 344, 446, 462, 468], "billah": 483, "billi": 463, "billion": [409, 483], "bin": [33, 35, 68, 72, 79, 84, 95, 102, 109, 110, 151, 164, 167, 200, 225, 245, 251, 292, 293, 296, 301, 343, 344, 345, 355, 395, 396, 399, 421, 428, 438, 448, 450, 453, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 483], "bin_nam": 399, "bin_path": 399, "binacii": 483, "binari": [5, 7, 34, 41, 42, 47, 57, 63, 66, 68, 75, 78, 84, 85, 87, 94, 102, 109, 115, 118, 122, 141, 143, 145, 146, 149, 168, 176, 186, 191, 194, 196, 197, 200, 201, 203, 205, 207, 208, 215, 221, 223, 225, 230, 234, 235, 245, 250, 252, 253, 254, 255, 256, 259, 261, 262, 266, 268, 269, 270, 271, 274, 275, 281, 282, 283, 288, 292, 293, 296, 299, 302, 304, 337, 345, 347, 348, 352, 355, 358, 369, 395, 397, 399, 405, 413, 416, 420, 421, 422, 425, 426, 428, 433, 436, 439, 445, 446, 456, 459, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "binary16": [25, 347], "binary32": [25, 347], "binary64": [25, 347, 444], "binary_": [473, 483], "binary_add": [475, 477, 483], "binary_add_adapt": 483, "binary_add_float": 483, "binary_add_int": 483, "binary_add_unicod": 483, "binary_add_unicode_inplace_fast": 483, "binary_floor_divid": 475, "binary_form": 341, "binary_modulo": 475, "binary_multipli": [475, 483], "binary_multiply_float": 483, "binary_multiply_int": 483, "binary_op": [191, 473, 483], "binary_op_gener": 483, "binary_op_inplace_add_unicod": 483, "binary_slic": [191, 474, 483], "binary_subscr": [191, 483], "binary_subscr_dict": 483, "binary_subscr_list_int": 483, "binary_subscr_tuple_int": 483, "binaryfunc": [57, 63], "binaryio": [252, 386, 483], "binascii": [68, 100, 143, 158, 254, 285, 397, 426, 469, 473, 477, 482, 483], "binbytes8": 483, "bind": [13, 44, 58, 61, 68, 85, 93, 102, 107, 129, 142, 169, 171, 177, 193, 223, 225, 230, 241, 245, 255, 266, 268, 294, 298, 314, 320, 329, 335, 337, 338, 341, 352, 362, 368, 371, 375, 376, 384, 426, 427, 428, 430, 432, 433, 434, 436, 441, 459, 462, 463, 464, 466, 467, 468, 472, 476, 477, 478, 480, 483], "bind_al": 483, "bind_and_activ": [338, 420, 468], "bind_class": 483, "bind_parti": 255, "bind_port": 362, "bind_textdomain_codeset": [266, 466, 473, 481], "bind_unix_socket": 362, "bindigit": 435, "bindir": 475, "bindsocket": 341, "bindtag": 376, "bindtextdomain": [230, 266], "bing": 483, "binget": 483, "binhex": [473, 482, 483], "binhex4": [146, 482, 483], "bininstal": 483, "binint1": 300, "bininteg": 435, "binlibdest": 475, "binomi": [318, 343, 483], "binomialvari": [318, 343, 474, 483], "binop": [122, 468, 483], "binpath": 399, "binput": [300, 483], "binunicode8": 483, "binutil": 481, "bio": [68, 288, 483], "biondi": 467, "biopython": 288, "bioreason": 426, "bird": 147, "birth_weight": 343, "birthday": [93, 451, 472], "bisect": [68, 182, 254, 452, 466, 483], "bisect_cmd": 483, "bisect_left": 147, "bisect_right": 147, "bit": [5, 7, 25, 41, 42, 58, 61, 63, 64, 66, 68, 73, 75, 76, 85, 86, 92, 93, 94, 95, 99, 102, 106, 109, 117, 118, 133, 141, 146, 152, 153, 154, 158, 167, 169, 177, 178, 186, 191, 193, 195, 200, 201, 202, 205, 208, 215, 216, 225, 227, 230, 235, 243, 244, 259, 266, 270, 275, 287, 289, 292, 293, 295, 299, 303, 306, 315, 319, 322, 328, 332, 336, 337, 341, 342, 344, 347, 348, 349, 352, 356, 358, 360, 366, 369, 376, 397, 398, 404, 410, 421, 422, 424, 427, 428, 430, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bit_count": [344, 472, 483], "bit_length": [275, 318, 344, 469, 471], "bit_rat": 481, "bitand": [122, 431], "bitdanc": 477, "bite": [85, 106, 292], "bitfield": [58, 113, 483], "bitmap": [249, 255, 281, 328, 369, 375, 376], "bitmapimag": 369, "bitmask": [63, 193, 295, 328, 329], "bitor": [122, 431], "bits_per_digit": [352, 456, 469, 471], "bits_per_sampl": 336, "bitset": [63, 75], "bitstr": 98, "bitter": 483, "bitwis": [47, 58, 68, 92, 94, 95, 106, 177, 178, 193, 215, 282, 293, 319, 329, 337, 340, 344, 353, 406, 428, 431, 433, 465, 468, 469, 474, 479, 483], "bitwise_and": 431, "bitwise_or": 431, "bitwise_xor": 431, "bitxor": [122, 431], "bj": 108, "bjoern": 483, "bjorn": [467, 483], "bjunk": [190, 477], "bk": 384, "bkfile": 483, "bkgd": 177, "bkgdset": 177, "bl": 177, "black": [92, 94, 102, 109, 147, 160, 177, 211, 247, 318, 376, 384, 452, 465, 466, 472, 473, 474, 477, 481], "blackbox": 362, "blackhol": 483, "blacklist": [480, 483], "blah": [109, 270, 292], "blahay": 483, "blai": 467, "blake": [95, 235], "blake1": 483, "blake2": [68, 174, 456, 473, 479, 482, 483], "blake2b": [235, 473, 479, 482, 483], "blake2b512": 483, "blanch": [476, 483], "blanchard": 483, "bland": [292, 467, 468], "blank": [68, 84, 85, 95, 120, 151, 155, 167, 175, 177, 186, 190, 193, 196, 205, 207, 208, 242, 245, 247, 268, 297, 334, 341, 344, 354, 384, 394, 413, 436, 466, 478, 480, 483], "blanklin": [193, 466], "bldshare": 456, "bleached_cor": 94, "bleaney": 473, "blech": 474, "bleed": 170, "bleedin": 441, "bletch": 334, "blhsing": 483, "blind": [344, 477], "blink": [92, 177, 481, 482, 483], "blip": 390, "blksize": [258, 407], "blktype": 358, "blo": 190, "bloat": 106, "blob": [68, 298, 341, 390, 473, 483], "blob_col": 340, "blobopen": [340, 473, 483], "block": [5, 7, 23, 33, 42, 45, 55, 63, 68, 73, 75, 77, 78, 92, 93, 106, 107, 110, 112, 115, 117, 125, 126, 133, 134, 135, 137, 138, 139, 144, 146, 149, 169, 176, 177, 178, 185, 186, 188, 190, 191, 193, 199, 207, 208, 212, 213, 215, 225, 226, 232, 234, 235, 242, 243, 247, 248, 255, 257, 258, 261, 269, 273, 282, 283, 284, 288, 293, 295, 296, 305, 313, 316, 322, 325, 328, 329, 330, 332, 333, 335, 337, 340, 342, 348, 351, 352, 353, 358, 359, 362, 365, 369, 386, 388, 395, 403, 405, 406, 411, 416, 428, 429, 430, 431, 432, 436, 455, 463, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "block_hash_person": 235, "block_on_clos": [338, 480, 483], "block_siz": [235, 237, 477], "blocked_domain": 243, "blocking_io": [126, 139], "blockingioerror": [23, 212, 213, 258, 293, 341, 427, 450, 476, 483], "blocklist": 243, "blocksiz": [223, 242, 293, 358, 480, 483], "blog": [85, 390, 467], "blogbench": 223, "blondon": 483, "bloomberg": 473, "blow": [102, 151, 292, 475, 483], "blowfish": [173, 480, 483], "blown": 464, "blowup": 409, "blue": [73, 92, 94, 102, 106, 108, 147, 155, 160, 177, 211, 261, 318, 343, 344, 369, 376, 384, 402, 441, 442, 449, 452, 465, 466, 471, 472, 474, 475, 479, 483], "blueish": 483, "blueprint": 100, "bluetooth": [337, 483], "blum": 483, "blur": [193, 261], "blurri": 483, "bm_regex_compil": 483, "bmp": [206, 247, 249, 369, 476, 477, 480, 481, 483], "bn": [80, 103], "bnf": [430, 434, 463], "bo": [480, 481, 483], "board": [95, 100, 177, 464, 465], "bob": [235, 283, 386, 459, 467, 468, 469, 471, 476], "bobrov": 483, "bobsavag": 459, "boddi": [84, 461], "bodi": [68, 84, 85, 110, 112, 122, 135, 136, 139, 169, 183, 189, 191, 195, 196, 197, 199, 200, 201, 205, 207, 208, 225, 240, 242, 245, 248, 255, 271, 272, 288, 333, 335, 340, 344, 362, 386, 388, 393, 395, 402, 413, 427, 429, 430, 431, 436, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "body_enc": 195, "body_encod": [195, 483], "body_line_iter": 204, "boehm": 78, "boer": 80, "bogildea": 483, "bogoychev": [479, 483], "bogus": [422, 469, 483], "bohman": 483, "bohuslav": 483, "boilerpl": [73, 76, 100, 289, 362, 432, 478, 483], "bold": [92, 150, 177, 369, 372], "boldfac": [92, 468], "bolen": [462, 464], "bolshakov": 483, "bolsterle": [481, 483], "bolt": [456, 474, 483], "bolt_apply_flag": [456, 483], "bolt_instrument_flag": [456, 483], "bolton": [469, 475], "bolz": 483, "bom": [64, 68, 109, 145, 262, 378, 483], "bom_b": 158, "bom_l": 158, "bom_utf16": 158, "bom_utf16_b": 158, "bom_utf16_l": 158, "bom_utf32": 158, "bom_utf32_b": 158, "bom_utf32_l": 158, "bom_utf8": 158, "bomb": [409, 422, 483], "bond": 483, "bone": [102, 459], "bont": [473, 474], "bonus": 463, "bonz": 476, "bonzo": 476, "boo": 100, "book": [91, 95, 106, 160, 183, 271, 319, 340, 369, 475, 483], "bookkeep": [33, 68, 177, 290, 474], "bookmark": 466, "bool": [5, 6, 31, 58, 68, 92, 94, 120, 126, 139, 167, 168, 176, 181, 211, 225, 226, 254, 261, 262, 267, 284, 289, 291, 340, 347, 379, 382, 386, 388, 410, 419, 427, 428, 430, 440, 450, 465, 468, 472, 474, 480, 481, 483], "bool_return": 443, "boolean": [5, 16, 68, 85, 101, 108, 120, 138, 167, 168, 176, 177, 183, 191, 193, 225, 235, 243, 245, 248, 254, 262, 268, 274, 283, 291, 293, 295, 304, 319, 320, 337, 338, 340, 341, 365, 369, 376, 379, 384, 386, 389, 395, 399, 410, 411, 419, 427, 428, 433, 463, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 482, 483, 484], "boolean_st": 167, "booleanoptionalact": [120, 474, 483], "booleanvar": [369, 483], "boolop": 122, "boom": [331, 389, 390], "boost": [56, 79, 226, 466, 483], "bootstrap": [68, 111, 142, 192, 254, 318, 334, 399, 474, 483], "bootup": 483, "boquien": 483, "border": [92, 177, 369, 376, 394], "bordum": [482, 483], "bore": 469, "borgstr": 477, "bori": 483, "boringssl": 483, "borland": [464, 483], "born": [102, 344], "borrow": [5, 22, 27, 58, 60, 63, 67, 73, 75, 87, 95, 212, 340, 464, 465, 466, 483], "borzenkov": 468, "bos": 483, "bosamiya": 483, "bosch": 462, "boswel": 476, "botani": 93, "botfram": [144, 483], "both": [5, 7, 22, 23, 24, 33, 45, 49, 55, 58, 63, 64, 72, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 120, 133, 137, 139, 141, 151, 158, 159, 161, 167, 169, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 205, 206, 207, 213, 215, 216, 220, 225, 226, 230, 233, 235, 243, 244, 245, 247, 250, 255, 257, 258, 259, 267, 268, 270, 275, 278, 281, 282, 283, 284, 287, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 314, 319, 320, 322, 324, 329, 330, 332, 333, 334, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 361, 362, 364, 366, 369, 376, 378, 380, 382, 384, 386, 388, 394, 395, 400, 405, 411, 413, 417, 419, 421, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 442, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bother": [85, 92, 102, 109, 283, 463, 464, 474], "bottl": [102, 176, 468], "bottleneck": [185, 226, 471], "bottom": [73, 84, 95, 96, 100, 120, 176, 177, 179, 191, 258, 267, 293, 297, 369, 376, 384, 386, 389, 428, 435, 461, 462, 464, 465, 483], "bottom_panel": 179, "bounc": [271, 462], "bound": [7, 10, 13, 42, 44, 54, 56, 60, 63, 64, 85, 93, 94, 101, 102, 106, 122, 126, 130, 138, 139, 158, 169, 186, 190, 191, 213, 225, 226, 247, 248, 250, 255, 268, 269, 283, 318, 319, 322, 331, 337, 340, 344, 351, 362, 365, 369, 375, 376, 385, 386, 395, 402, 420, 426, 427, 428, 429, 430, 431, 432, 436, 462, 464, 465, 467, 468, 469, 474, 476, 477, 480, 482, 483], "bound_of_t": 427, "boundargu": [255, 476, 478, 482, 483], "boundari": [33, 94, 106, 153, 183, 193, 196, 199, 205, 206, 211, 213, 283, 299, 319, 344, 347, 362, 415, 435, 468, 473, 483], "boundaryerror": 199, "boundedsemaphor": [68, 124, 283, 365, 476, 481, 483], "boundless": 428, "bourn": [80, 301], "bovenberg": 483, "bower": [474, 483], "bowl": 340, "box": [92, 102, 177, 247, 271, 369, 373, 375, 376, 386, 430, 479, 480, 481, 483], "boxcar": 419, "boxofstr": 386, "bozz": [102, 268], "bpbynumb": 144, "bpformat": 144, "bpl": 79, "bplist": 144, "bpnumber": 297, "bpo": [17, 35, 183, 188, 226, 267, 269, 283, 293, 302, 332, 386, 467, 468, 469, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "bpopular": [190, 477], "bpprint": 144, "bpython": 447, "br": [79, 177, 435, 470, 471, 475, 476, 483], "brace": [33, 158, 281, 319, 344, 345, 398, 430, 435, 479, 480, 483], "braceidpattern": [345, 483], "bracemessag": 102, "bracket": [5, 33, 63, 95, 102, 106, 109, 144, 209, 220, 225, 271, 297, 319, 340, 344, 386, 387, 394, 410, 413, 427, 428, 430, 434, 435, 436, 467, 468, 469, 483], "brad": 483, "bradshaw": [474, 483], "brain": [103, 466], "bram": [435, 464], "branch": [68, 154, 191, 270, 319, 353, 362, 375, 380, 462, 467, 468, 482, 483], "branchless": 483, "brand": [9, 55, 60, 73, 305, 483], "brandl": [109, 467, 468, 469, 471, 475, 476, 478, 479, 483], "brandon": 483, "brandt": [473, 474, 482, 483], "braun": [474, 483], "brave": 442, "bray": [480, 483], "brazil": 483, "brazilian": 483, "breach": [314, 426], "breadth": [384, 452], "breadth_first_search": 452, "break": [33, 63, 64, 68, 75, 76, 78, 84, 92, 94, 95, 102, 103, 106, 122, 128, 132, 136, 139, 144, 151, 158, 169, 170, 176, 177, 190, 193, 200, 202, 208, 213, 247, 250, 255, 261, 271, 283, 292, 297, 299, 307, 314, 319, 321, 326, 333, 335, 337, 341, 344, 345, 348, 352, 359, 361, 362, 364, 365, 384, 388, 394, 399, 400, 407, 411, 427, 428, 429, 430, 431, 433, 435, 440, 443, 445, 462, 463, 464, 465, 467, 468, 469, 471, 475, 476, 477, 478, 480, 481, 483], "break_anywher": 144, "break_her": 144, "break_long_word": [364, 483], "break_loop": [481, 483], "break_on_hyphen": [364, 483], "break_stmt": 436, "breakag": [435, 462, 463, 465, 474, 480, 483], "breakdown": 186, "breaker": [474, 483], "breakfast": 428, "breakout": 177, "breakpoint": [42, 68, 79, 85, 142, 144, 147, 185, 225, 247, 297, 352, 353, 455, 467, 475, 483], "breakpointhook": [142, 225, 352, 450, 455, 480, 483], "brecht": [477, 478, 479, 483], "brees": 483, "bremmer": 464, "brendan": 483, "brester": 483, "brethren": 102, "brett": [105, 308, 465, 466, 467, 468, 469, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "breviti": [75, 292], "brew": 106, "brezovski": 483, "brian": [340, 434, 462, 465, 466, 468, 469, 475, 476, 477, 480, 483], "brian_1979": [358, 422], "bridg": [369, 475], "brief": [110, 120, 193, 205, 225, 226, 268, 292, 302, 308, 319, 322, 344, 348, 380, 426, 462, 464, 466, 467, 470, 475, 483], "briefcas": 459, "briefli": [33, 77, 109, 186, 467, 483], "brigg": 464, "bright": 92, "bright_side_of_lif": 381, "bring": [183, 247, 261, 332, 345, 375, 477, 478, 481, 482, 483], "british": 92, "brito": [473, 483], "brk": 359, "broad": [95, 183, 292, 394, 464, 467, 469, 476, 483], "broadcast": [259, 337, 483], "broadcast_address": 259, "broadcast_messag": 386, "broaden": 483, "broader": 477, "broccoli": 340, "broke": 483, "broken": [33, 100, 102, 107, 109, 112, 138, 190, 207, 212, 255, 266, 283, 293, 305, 333, 352, 362, 364, 365, 369, 388, 394, 435, 455, 467, 471, 474, 476, 477, 481, 482, 483], "brokenbarriererror": [124, 138, 365, 473, 475], "brokenexecutor": 166, "brokenpipeerror": [23, 137, 212, 213, 333, 450, 476, 483], "brokenprocesspool": 166, "brokenthreadpool": 166, "bronson": [472, 481, 483], "brot": 483, "brought": [299, 465, 483], "brouwer": 468, "brown": [384, 468, 483], "brows": [92, 110, 313, 376, 468, 483], "browser": [68, 95, 109, 110, 151, 152, 190, 244, 245, 247, 256, 257, 272, 308, 312, 313, 352, 394, 395, 440, 456, 462, 463, 465, 466, 467, 468, 474, 475, 476, 479, 480, 483], "browsercontrol": 462, "broytman": 483, "broytmann": 467, "bruce": [428, 483], "brun": 465, "bruno": [477, 478, 483], "brunthal": 473, "brute": 235, "bruynoogh": 468, "bryan": 483, "bryant": 477, "bryce": 483, "bs": [177, 178, 435], "bsd": [68, 84, 92, 107, 133, 177, 215, 322, 328, 333, 337, 342, 366, 438, 456, 462, 464, 468, 477, 483], "bsd0": 483, "bsdcam": 223, "bsddb": [330, 465, 468, 469], "bsddb185": 465, "bsddb3": [465, 470], "bsddbshelf": [330, 344], "bsds": [383, 474], "bsdtar": 358, "bstate": 177, "bt": [68, 469, 483], "btn": [369, 376, 384], "btoa": 143, "btopen": 330, "btproto_hci": 337, "btproto_l2cap": 337, "btproto_rfcomm": 337, "btproto_sco": 337, "btrfs": [215, 293], "bubbl": [139, 427, 483], "bucher": [473, 474, 482, 483], "buchholz": 483, "bucket": [386, 428], "buckley": 483, "bud": [196, 205, 407], "buddi": 440, "buf": [5, 7, 42, 126, 215, 235, 284, 341, 344, 358, 467], "buf1": 42, "buf2": 42, "buf3": 42, "buf_len": 466, "buff": 240, "buffer": [2, 8, 9, 18, 24, 32, 33, 34, 41, 42, 43, 50, 64, 65, 66, 68, 75, 87, 92, 96, 101, 112, 118, 120, 121, 127, 130, 136, 137, 142, 146, 149, 151, 157, 158, 161, 176, 177, 212, 213, 214, 215, 225, 234, 235, 242, 245, 269, 270, 278, 282, 283, 284, 293, 295, 296, 298, 314, 315, 322, 328, 331, 332, 333, 337, 341, 344, 347, 348, 352, 358, 359, 360, 362, 363, 365, 386, 388, 395, 407, 408, 413, 414, 422, 424, 455, 456, 464, 465, 466, 467, 468, 469, 470, 475, 477, 478, 479, 480, 482, 483, 484], "buffer_block_s": 483, "buffer_callback": 299, "buffer_info": 121, "buffer_len": 48, "buffer_length": 5, "buffer_s": [258, 314, 468], "buffer_text": [314, 465], "buffer_upd": [130, 133], "buffer_us": 314, "buffered_stdio": [33, 34, 474], "bufferediobas": [149, 225, 234, 242, 245, 258, 270, 299, 338, 360, 369, 407, 468, 469, 473, 475, 476, 478, 479, 483], "bufferedprotocol": [133, 480, 481, 483], "bufferedrandom": [225, 258, 468, 483], "bufferedread": [225, 258, 358, 468, 469, 475, 483], "bufferedrwpair": [258, 468, 483], "bufferedwrit": [225, 258, 468, 475, 483], "buffererror": [7, 23, 63, 213, 299, 450, 483], "bufferflag": [255, 428, 474], "bufferingformatt": [101, 267], "bufferinghandl": [102, 269], "bufferingloggerwrit": 102, "bufferingsmtphandl": 102, "buffertooshort": 283, "buffertyp": 43, "buflen": [64, 337], "bufsiz": [42, 73, 120, 126, 295, 337, 348, 358, 411, 412, 424, 466, 481, 483], "bug": [0, 59, 63, 68, 72, 73, 78, 79, 80, 84, 93, 95, 96, 102, 103, 105, 109, 125, 151, 177, 208, 225, 242, 243, 271, 293, 299, 308, 340, 341, 348, 362, 365, 368, 386, 444, 446, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "bugfix": [80, 89, 462, 463, 464, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "buggi": [92, 462, 464, 474, 476, 477, 483], "bugtrack_url": 307, "bugzilla": 483, "build": [9, 33, 34, 42, 58, 64, 65, 68, 74, 75, 76, 77, 79, 84, 85, 93, 98, 102, 110, 141, 155, 157, 158, 176, 186, 187, 190, 191, 203, 206, 208, 211, 225, 235, 245, 257, 258, 261, 273, 282, 292, 296, 307, 311, 314, 328, 334, 337, 338, 341, 344, 352, 355, 362, 369, 382, 384, 388, 394, 395, 399, 400, 410, 425, 428, 451, 455, 458, 461, 462, 464, 473, 484], "build_can_fram": 337, "build_const_key_map": [191, 479, 483], "build_dyson_spher": 472, "build_ext": [478, 483], "build_list": [191, 483], "build_list_unpack": 483, "build_map": [191, 483], "build_map_unpack": 483, "build_map_unpack_with_cal": [479, 483], "build_meta": 76, "build_open": [110, 243, 395], "build_pgo": 483, "build_set": [191, 483], "build_set_unpack": 483, "build_slic": 191, "build_ssl": 483, "build_str": [191, 479, 483], "build_tupl": [191, 483], "build_tuple_unpack": 483, "build_tuple_unpack_with_cal": [479, 483], "buildbot": [362, 388, 456, 483], "buildbottest": 456, "builddat": [303, 483], "builder": [399, 410, 411, 413], "buildno": 303, "buildout": [167, 475], "buildreleas": 483, "buildscript": [475, 483], "buildtool": 468, "built": [4, 7, 16, 23, 31, 33, 34, 37, 42, 47, 49, 58, 59, 61, 63, 68, 73, 75, 76, 77, 79, 80, 84, 85, 93, 101, 102, 109, 110, 111, 112, 115, 120, 128, 132, 151, 158, 159, 161, 163, 168, 178, 181, 186, 190, 191, 195, 199, 202, 206, 213, 221, 225, 230, 235, 247, 250, 251, 252, 254, 255, 257, 258, 261, 266, 275, 276, 283, 292, 293, 297, 299, 308, 311, 313, 320, 321, 328, 329, 337, 340, 341, 345, 347, 348, 352, 355, 362, 369, 376, 384, 385, 388, 389, 390, 400, 405, 410, 411, 413, 415, 419, 423, 427, 429, 430, 432, 434, 435, 436, 442, 443, 455, 456, 461, 463, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "builtin": [33, 34, 35, 53, 63, 68, 85, 87, 93, 96, 122, 142, 158, 160, 191, 193, 225, 230, 235, 244, 247, 250, 254, 255, 259, 268, 299, 308, 315, 323, 334, 344, 352, 385, 386, 390, 427, 428, 430, 432, 435, 437, 440, 450, 456, 468, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482], "builtin_function_or_method": 483, "builtin_module_nam": [84, 250, 352, 450], "builtinfunctiontyp": 385, "builtinimport": [250, 283, 472, 473, 479, 483], "builtinload": [472, 473], "builtinmethodtyp": [385, 483], "builtout": 471, "bulgarian": 158, "bulk": [73, 186, 477], "bull": 483, "bullet": [177, 299], "bump": [477, 483], "bumpserialno": 42, "bumsik": 483, "bunch": [102, 128, 200, 207, 292, 462, 463, 464, 465, 468, 483], "bundl": [68, 85, 169, 201, 207, 223, 248, 305, 341, 368, 369, 421, 456, 458, 459, 465, 469, 474, 475, 477, 478, 480, 483], "bundlebuild": [468, 483], "bupjo": 475, "burden": [73, 469, 470, 474, 476, 478], "burger": 319, "burgess": 483, "burkland": 483, "burton": 483, "bus": [333, 405], "busi": [33, 85, 137, 212, 269, 338, 348, 369, 406, 415, 426, 441], "businesscategori": 341, "bussonni": [472, 480, 481, 483], "busy_retri": 362, "but": [5, 7, 9, 13, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 39, 42, 45, 47, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 78, 79, 84, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 128, 132, 133, 137, 139, 141, 144, 146, 151, 152, 155, 158, 159, 161, 167, 169, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 215, 216, 218, 220, 221, 225, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 257, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 282, 283, 288, 289, 292, 293, 295, 297, 299, 301, 304, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 358, 360, 362, 364, 365, 366, 369, 375, 376, 377, 378, 381, 384, 385, 386, 387, 388, 394, 395, 397, 400, 403, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "buter": 288, "butter": 340, "button": [92, 102, 151, 177, 189, 247, 281, 369, 375, 376, 384, 426, 461, 479, 480, 481, 483], "button5_": [177, 472, 483], "button_alt": 177, "button_ctrl": 177, "button_shift": 177, "buttonbox": [189, 375], "buttonn_click": 177, "buttonn_double_click": 177, "buttonn_press": 177, "buttonn_releas": 177, "buttonn_triple_click": 177, "buttonpress": 371, "buttonreleas": 371, "buy": [103, 341, 467], "buyst": 483, "buzz": 102, "bw": 376, "bword": 106, "bx": 261, "by": [5, 7, 13, 15, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 118, 120, 126, 128, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 152, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "by_handle_file_inform": [293, 478], "by_year": 147, "bye": [155, 170, 248, 288, 384, 476], "byelorussian": 158, "bykw5omccfazvcoyqwkkkemovymafor34mmkbx8r1ni": 251, "bypass": [93, 158, 226, 235, 293, 345, 352, 354, 425, 428, 430, 432, 474, 483], "byref": [176, 468], "byrn": 483, "bytarray": 483, "byte": [5, 7, 12, 16, 22, 23, 24, 25, 26, 28, 31, 33, 34, 39, 41, 42, 43, 49, 58, 59, 61, 63, 64, 66, 68, 78, 79, 84, 85, 87, 92, 93, 94, 100, 102, 106, 107, 110, 113, 117, 118, 121, 122, 126, 127, 133, 136, 137, 141, 142, 143, 145, 146, 149, 151, 153, 158, 161, 163, 166, 167, 177, 178, 182, 184, 186, 188, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 205, 206, 207, 208, 212, 213, 215, 223, 225, 230, 234, 235, 237, 242, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 261, 262, 266, 268, 269, 270, 271, 274, 278, 282, 283, 284, 287, 288, 293, 295, 296, 298, 299, 304, 309, 311, 314, 317, 318, 319, 322, 324, 328, 332, 333, 335, 336, 337, 338, 340, 341, 342, 348, 349, 352, 358, 359, 362, 369, 377, 378, 382, 383, 386, 395, 398, 400, 401, 405, 406, 407, 408, 410, 411, 413, 414, 415, 416, 419, 421, 422, 424, 425, 427, 428, 430, 431, 432, 440, 446, 450, 451, 455, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "byte_length": 344, "byte_offset": 13, "byte_stream": 475, "bytearray": [5, 7, 8, 33, 34, 64, 68, 78, 85, 87, 121, 133, 145, 146, 161, 176, 182, 191, 213, 215, 225, 235, 237, 254, 258, 261, 262, 274, 278, 284, 299, 304, 318, 337, 341, 347, 386, 394, 400, 419, 424, 427, 428, 430, 450, 455, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 482, 483], "bytearray_getbuff": 483, "bytearray_irepeat": 483, "bytearray_repeat": 483, "bytearrayobject": 483, "bytecod": [13, 31, 33, 66, 68, 84, 85, 87, 95, 96, 98, 104, 106, 163, 225, 250, 254, 255, 264, 311, 324, 333, 351, 352, 362, 382, 428, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 483, 484], "bytecode_help": [68, 187, 254, 483], "bytecode_suffix": [250, 474], "bytecodealli": 483, "bytecodetestcas": 362, "bytedesign": 384, "bytefil": 416, "byteord": [64, 344, 347, 352, 450, 483], "bytereef": 476, "bytes_l": 398, "bytes_method": 483, "bytes_per_sep": [146, 344], "bytes_recd": 107, "bytes_warn": [33, 34, 352, 474, 475], "bytesescapeseq": 435, "bytesfeedpars": [207, 475], "bytesgener": [196, 197, 201, 205, 208, 335, 475], "bytesheaderpars": [207, 476], "bytesio": [87, 196, 207, 234, 235, 258, 271, 299, 344, 360, 378, 421, 425, 468, 470, 475, 478, 483], "bytesiobuf_getbuff": 483, "bytesliter": 430, "bytesobject": 483, "bytespars": [200, 201, 207, 475, 483], "bytesprefix": 435, "bytestr": [92, 161, 293, 337, 344, 386, 413, 424, 468, 474, 483], "bytestream": 109, "byteswap": [121, 141, 477], "byteswarn": [23, 34, 213, 400, 450, 480, 483], "byxo": 103, "bz2": [68, 119, 158, 176, 218, 254, 270, 296, 332, 358, 362, 422, 451, 465, 469, 471, 472, 477, 482, 483], "bz2_codec": [158, 477], "bz2_encod": 477, "bz2compressor": [149, 483], "bz2decompressor": [149, 478, 483], "bz2file": [149, 270, 469, 471, 472, 476, 477, 482, 483], "bzip": 475, "bzip2": [68, 119, 218, 254, 332, 358, 422, 473, 475, 476, 483], "bztar": [332, 475], "c0": [394, 483], "c0a80001": 345, "c1": [103, 176, 344], "c11": [456, 473, 476, 483], "c14n": [68, 413, 481, 483], "c14n2": 426, "c14n_output": 413, "c14nwritertarget": 413, "c2": [103, 176], "c3": [68, 319, 394, 428, 465, 476], "c3ref": 340, "c89": [183, 468], "c90": 483, "c99": [18, 35, 63, 76, 154, 176, 275, 344, 347, 352, 444, 456, 468, 472, 475, 479, 483], "c__builtin__": 471, "c_allow_pre_v3": 483, "c_api_object": 73, "c_bool": [176, 468], "c_buffer": 176, "c_builtin": 474, "c_byte": [176, 483], "c_byte_array_4": 176, "c_call": [144, 352], "c_char": [176, 283], "c_char_p": [176, 467], "c_contigu": [255, 344], "c_dbconfig_defens": 340, "c_doubl": [176, 283, 467, 483], "c_except": [144, 352], "c_extens": 474, "c_float": [176, 467], "c_int": [176, 283, 467, 483], "c_int16": 176, "c_int32": 176, "c_int64": 176, "c_int8": 176, "c_long": [176, 344], "c_long_array_10": 176, "c_longdoubl": [176, 483], "c_longlong": 176, "c_make_encod": 483, "c_profilefunc": 473, "c_rais": 353, "c_return": [144, 352, 353], "c_s": 176, "c_short": [176, 283], "c_size_t": 176, "c_ssize_t": [176, 475], "c_time_t": [176, 483], "c_tracefunc": 473, "c_ubyt": [176, 483], "c_uint": 176, "c_uint16": 176, "c_uint32": 176, "c_uint64": 176, "c_uint8": [176, 483], "c_ulong": 176, "c_ulonglong": 176, "c_ushort": 176, "c_void_p": 176, "c_warn": 362, "c_warn_on_allowed_pre_v3": 483, "c_wchar": 176, "c_wchar_p": [176, 483], "ca": [68, 92, 106, 162, 261, 395, 426, 468, 469, 477, 483], "ca_cert": 341, "caaat": 106, "cab": [68, 467, 483], "cabinet": [281, 483], "cabl": 184, "cabnam": 281, "cabrera": 483, "cabundl": 341, "cabxyo": 103, "cacert": 341, "cach": [31, 34, 42, 61, 63, 64, 68, 73, 75, 84, 87, 93, 101, 106, 110, 116, 139, 147, 158, 160, 163, 176, 184, 190, 191, 216, 220, 226, 230, 250, 265, 267, 283, 288, 293, 302, 311, 319, 324, 330, 340, 341, 347, 352, 360, 362, 382, 386, 388, 395, 423, 425, 427, 450, 452, 453, 455, 461, 463, 465, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "cache_aft": 160, "cache_clear": [226, 475], "cache_from_sourc": [250, 474, 475, 477, 478, 479], "cache_info": [226, 475], "cache_paramet": [226, 483], "cache_tag": [31, 250, 352, 474, 476, 483], "cached_key": 160, "cached_properti": [85, 93, 226, 344, 474, 481, 483], "cached_stat": 340, "cacheftphandl": [68, 256, 483], "cacheinfo": [226, 475], "cad": 345, "cadata": [341, 477, 483], "cadefault": 395, "caesar": 158, "cafe": 475, "cafil": [341, 395, 469, 477], "caissuer": 341, "cal": [112, 150, 395, 396], "calc_item": 465, "calcel": 483, "calcobjs": [362, 483], "calcsiz": [7, 225, 337, 344, 347, 483], "calcul": [9, 31, 33, 34, 59, 63, 64, 73, 85, 89, 93, 95, 120, 150, 177, 181, 183, 186, 191, 206, 226, 235, 261, 269, 275, 283, 295, 322, 333, 337, 344, 345, 347, 354, 356, 366, 378, 381, 384, 385, 395, 428, 430, 432, 435, 464, 467, 468, 471, 473, 474, 477, 481, 483], "calculate_someth": 186, "calculatestar": 283, "calcvobjs": 362, "calderon": [469, 476], "calendar": [68, 156, 182, 183, 254, 366, 451, 462, 465, 473, 479, 483], "calendr": [150, 183], "calibr": 308, "california": [341, 426], "calissu": 477, "call": [2, 5, 7, 9, 11, 13, 17, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 37, 39, 42, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 74, 75, 76, 77, 79, 84, 87, 89, 92, 93, 94, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 117, 118, 120, 121, 122, 124, 125, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 149, 151, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 173, 177, 179, 181, 183, 184, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 223, 225, 226, 227, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 288, 291, 293, 295, 296, 297, 299, 302, 305, 307, 308, 309, 314, 319, 320, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 402, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 418, 419, 420, 421, 422, 425, 427, 428, 429, 431, 432, 435, 436, 440, 441, 442, 443, 446, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 482, 483], "call_": 483, "call_arg": [389, 390, 483], "call_args_list": [389, 390], "call_at": [125, 126, 130, 480], "call_count": [389, 390], "call_exception_handl": [126, 130], "call_fin": [481, 483], "call_funct": [96, 142, 176, 473, 479, 483], "call_function_builtin_fast": 483, "call_function_builtin_o": 483, "call_function_ex": [191, 479, 483], "call_function_isinst": 483, "call_function_kw": [473, 479, 483], "call_function_len": 483, "call_function_var": 479, "call_function_var_kw": 479, "call_intrinsic_": 483, "call_intrinsic_1": [191, 474, 483], "call_intrinsic_2": [191, 474, 483], "call_kw": 483, "call_lat": [68, 130, 480, 483], "call_list": [389, 390], "call_method": [473, 480, 483], "call_method_kw": 483, "call_no_kw": 483, "call_profil": [482, 483], "call_soon": [68, 125, 129, 130, 133, 136, 386, 480, 483], "call_soon_threadsaf": [125, 126, 130, 480, 483], "call_stack": 98, "call_trac": [352, 450, 483], "call_tzinfo_method": 483, "callabl": [10, 33, 37, 58, 59, 63, 67, 68, 72, 73, 85, 87, 88, 92, 94, 95, 102, 108, 112, 120, 122, 126, 132, 136, 138, 139, 161, 166, 167, 170, 176, 177, 181, 187, 190, 191, 206, 207, 208, 223, 224, 225, 235, 248, 250, 251, 254, 258, 267, 268, 269, 271, 283, 291, 292, 293, 298, 299, 313, 314, 315, 325, 332, 333, 335, 344, 348, 352, 353, 358, 365, 371, 376, 378, 388, 389, 395, 399, 400, 407, 413, 421, 427, 430, 432, 450, 455, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "callable_iter": 106, "callableproxytyp": [402, 483], "callback": [5, 11, 13, 14, 22, 27, 28, 33, 61, 63, 67, 68, 73, 81, 87, 93, 100, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 139, 169, 223, 227, 255, 281, 283, 299, 308, 309, 314, 315, 316, 320, 329, 332, 340, 341, 342, 352, 359, 367, 369, 371, 376, 385, 386, 402, 412, 413, 415, 421, 428, 452, 467, 468, 472, 473, 474, 475, 476, 477, 479, 480, 481, 483, 484], "callback_": 120, "callback_arg": 292, "callback_kwarg": 292, "calle": [85, 353, 380], "called_onc": 483, "calledprocess": 483, "calledprocesserror": [348, 469, 478, 483], "caller": [5, 9, 23, 31, 33, 34, 45, 58, 61, 64, 73, 85, 88, 93, 95, 139, 144, 157, 158, 169, 176, 181, 189, 191, 225, 235, 242, 251, 252, 255, 258, 267, 291, 293, 302, 308, 332, 333, 335, 337, 341, 343, 348, 352, 365, 376, 380, 381, 386, 388, 395, 397, 400, 403, 405, 419, 421, 428, 429, 430, 440, 443, 463, 464, 465, 466, 467, 468, 469, 473, 479, 482, 483], "calloc": [42, 478, 483], "callsomefunct": 33, "callstat": [450, 480, 482, 483], "calltip": [68, 368, 483], "calltip_w": 483, "calltipwindow": 483, "calmett": 476, "caltech": 426, "cambridgeincolour": 162, "came": [95, 102, 193, 202, 283, 443, 463, 464, 465, 466, 467, 483], "camel": [395, 468, 475], "camelcas": 365, "camelot": 471, "cameron": [84, 147], "cammin": 467, "campbel": 483, "can": [5, 7, 11, 13, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 78, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 192, 193, 194, 195, 196, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 218, 220, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 288, 292, 293, 295, 297, 298, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "can0": 337, "can_": 337, "can_bcm": [337, 477], "can_bcm_": 337, "can_bcm_can_fd_fram": 337, "can_change_color": [92, 177], "can_dlc": 337, "can_fetch": [396, 483], "can_fram": 337, "can_frame_fmt": 337, "can_frame_s": 337, "can_id": 337, "can_isotp": [337, 483], "can_j1939": [337, 482, 483], "can_raw": 337, "can_raw_fd_fram": [337, 478, 483], "can_raw_join_filt": [337, 482, 483], "can_symlink": 362, "can_values_be_as_wel": 167, "can_write_eof": [130, 133, 136], "can_xattr": 362, "canadian": [92, 158], "cancel": [68, 124, 125, 126, 129, 134, 135, 138, 141, 151, 166, 169, 177, 178, 189, 212, 214, 281, 314, 325, 333, 365, 371, 373, 375, 376, 384, 388, 427, 430, 473, 475, 480, 481, 482, 483], "cancel_command": 189, "cancel_dump_traceback_lat": 214, "cancel_futur": [166, 482, 483], "cancel_join_thread": 283, "cancel_m": 139, "cancellederror": [124, 127, 129, 135, 138, 139, 166, 481, 483], "cancelsynchronousio": 483, "cand": 103, "candid": [68, 80, 93, 103, 113, 205, 230, 352, 428, 467, 468, 469, 477, 484], "canin": 440, "cannon": [105, 465, 466, 467, 468, 469, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "cannot": [7, 9, 24, 26, 28, 33, 34, 39, 49, 54, 58, 61, 63, 64, 66, 67, 72, 73, 76, 85, 92, 94, 95, 96, 99, 100, 101, 102, 103, 110, 112, 115, 132, 135, 144, 151, 158, 160, 161, 163, 167, 169, 176, 177, 181, 183, 186, 191, 193, 197, 201, 202, 203, 208, 212, 213, 214, 215, 218, 225, 226, 230, 233, 245, 247, 250, 252, 253, 255, 258, 266, 267, 268, 269, 270, 271, 276, 278, 282, 283, 293, 295, 296, 297, 299, 302, 304, 307, 308, 314, 319, 322, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 341, 344, 348, 352, 353, 354, 358, 362, 365, 366, 369, 386, 394, 395, 399, 405, 406, 410, 413, 415, 416, 419, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 455, 456, 461, 464, 465, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 482, 483], "cannotsendhead": 242, "cannotsendrequest": 242, "canon": [64, 85, 87, 94, 144, 167, 183, 186, 195, 211, 235, 292, 337, 346, 386, 387, 413, 425, 430, 469, 478, 483], "canonic": [413, 481, 483], "canonnam": 337, "canopi": 461, "canva": [384, 468, 474, 481, 483], "canvas": 384, "canvasheight": 384, "canvaswidth": 384, "canvheight": 384, "canvwidth": 384, "cap": [272, 483], "cap_sys_resourc": 322, "capa": [305, 477], "capabl": [28, 64, 76, 92, 93, 95, 102, 106, 169, 177, 186, 193, 212, 234, 245, 248, 250, 251, 253, 255, 257, 258, 259, 272, 282, 283, 288, 292, 305, 307, 320, 375, 413, 415, 422, 430, 455, 464, 465, 466, 467, 475, 476, 477, 478, 483], "capac": [102, 177, 269, 293, 343, 365, 467, 469], "capath": [341, 395, 477], "capi": [100, 469], "capit": [106, 109, 186, 319, 344, 345, 386, 387, 427, 430, 462, 480, 482, 483], "capnam": 177, "capsul": [16, 68, 73, 95, 470, 483], "captain": [291, 479], "caption": 176, "captur": [42, 68, 92, 95, 102, 122, 169, 176, 183, 193, 265, 267, 293, 319, 337, 341, 345, 348, 352, 358, 362, 381, 386, 400, 429, 466, 473, 476, 477, 478, 480, 483], "capture_loc": [381, 483], "capture_output": [348, 480, 483], "capture_pattern": [427, 431], "captured_stderr": [362, 483], "captured_stdin": 362, "captured_stdout": 362, "capturestderr": 348, "capturewarn": [267, 400], "capword": [344, 345, 483], "car": 85, "carbon": [468, 475], "card": [231, 295, 318, 319, 436], "cardin": [344, 483], "care": [13, 23, 33, 63, 66, 68, 73, 75, 76, 84, 85, 93, 94, 100, 101, 102, 106, 109, 110, 120, 144, 169, 176, 181, 183, 186, 191, 193, 196, 208, 230, 250, 267, 268, 269, 271, 283, 292, 299, 308, 314, 319, 330, 333, 347, 348, 352, 358, 388, 400, 408, 411, 413, 421, 428, 430, 448, 455, 461, 462, 466, 467, 468, 469, 470, 474, 475, 477, 482, 483], "carel": [464, 483], "careless": 483, "caret": [34, 106, 177, 178, 193, 319, 381, 483], "carey": [473, 483], "carl": [468, 469, 474, 475, 476, 481, 482, 483], "carlier": 483, "carlo": [68, 290, 473], "carlson": [468, 476], "carlton": 474, "carmen": 160, "carneiro": 466, "carri": [92, 93, 101, 158, 184, 186, 191, 265, 267, 275, 283, 292, 318, 340, 388, 410, 426, 429, 435, 436, 467, 468, 469, 478, 481, 483], "carriag": [106, 178, 207, 208, 258, 319, 331, 344, 364, 407, 419, 435, 465, 467], "carrol": 483, "cartesian": [261, 340, 468, 471, 478], "cas": 341, "cascad": [150, 483], "case": [5, 7, 13, 18, 22, 23, 24, 25, 27, 31, 33, 34, 35, 39, 41, 45, 49, 56, 58, 59, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 84, 85, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 107, 109, 110, 112, 117, 120, 122, 124, 133, 135, 139, 141, 144, 146, 149, 151, 155, 158, 159, 163, 167, 169, 173, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 195, 196, 201, 202, 203, 205, 207, 208, 209, 213, 214, 215, 220, 225, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 255, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 314, 319, 324, 325, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 362, 365, 366, 369, 375, 376, 378, 382, 384, 386, 387, 394, 395, 399, 400, 405, 410, 411, 413, 415, 416, 420, 421, 425, 428, 429, 430, 431, 432, 435, 436, 441, 443, 450, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "case_block": [427, 431], "case_sensit": [296, 474, 483], "casefold": [108, 109, 120, 143, 160, 261, 344, 476, 478, 481, 483], "caseless": [109, 344, 476], "cases_gener": 483, "cast": [7, 33, 42, 45, 58, 61, 64, 73, 76, 96, 176, 186, 344, 381, 386, 476, 480, 481, 483], "cat": [94, 102, 106, 160, 230, 287, 348, 441, 451, 453, 475, 478], "catalin": [476, 483], "catalina": 483, "catalog": [68, 246, 462, 463, 465, 483], "catalogu": 463, "catastroph": [214, 475, 483], "catch": [23, 42, 68, 85, 92, 95, 102, 109, 110, 120, 139, 167, 193, 213, 244, 255, 267, 292, 293, 315, 322, 331, 333, 340, 348, 362, 388, 395, 408, 428, 430, 462, 465, 467, 468, 469, 470, 474, 475, 476, 477, 479, 482, 483], "catch_threading_except": [362, 483], "catch_unraisable_except": [362, 483], "catch_warn": [362, 400, 468, 473, 474, 483], "catchbreak": 388, "categor": [183, 292, 319, 400, 430], "categori": [32, 68, 84, 101, 106, 109, 133, 213, 225, 241, 266, 269, 315, 319, 340, 344, 362, 387, 394, 435, 455, 462, 463, 467, 468, 470, 475, 480, 483], "cater": [102, 193, 268, 269], "cathedr": 426, "catherin": 93, "cathi": 480, "catstr": 362, "catucci": [475, 477], "cauet": [478, 483], "caught": [23, 100, 115, 120, 139, 152, 157, 213, 283, 293, 302, 305, 323, 332, 333, 337, 340, 352, 362, 366, 369, 388, 414, 423, 427, 428, 436, 443, 463, 468, 470, 477, 481, 483], "caus": [5, 9, 23, 33, 42, 47, 51, 59, 61, 63, 64, 66, 73, 75, 76, 77, 85, 95, 101, 102, 106, 110, 112, 115, 120, 122, 133, 135, 138, 139, 151, 152, 155, 158, 159, 163, 167, 169, 176, 177, 186, 190, 191, 193, 205, 208, 212, 213, 225, 228, 242, 245, 247, 248, 250, 255, 258, 262, 266, 267, 269, 271, 275, 276, 282, 283, 293, 297, 299, 302, 308, 313, 314, 319, 328, 330, 333, 334, 337, 340, 341, 344, 345, 352, 353, 356, 358, 362, 364, 365, 366, 376, 386, 388, 395, 400, 405, 410, 411, 415, 419, 422, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "causa": 103, "causal": 483, "caution": [68, 73, 85, 128, 190, 268, 292, 293, 296, 348, 413, 467, 483], "cautionari": [425, 466], "cautious": [120, 271, 394], "caveat": [13, 61, 68, 115, 192, 246, 250, 255, 308, 311, 428, 436], "caviti": 376, "cazabon": 469, "cb": [169, 261], "cb_result": 386, "cb_type": 341, "cba": 319, "cbc": [167, 337], "cbreak": [92, 177, 383, 483], "cbresult": 75, "cbrt": [275, 343, 473, 483], "cbs": 344, "cbuiltin": [299, 471], "cc": [160, 203, 209, 261, 271, 335, 361, 456, 465, 474, 476, 483], "cc0": 235, "ccach": 483, "ccbench": 469, "ccc": [223, 347, 376, 476], "cccccccccc": 347, "ccitt": [146, 349], "ccompil": 483, "ccp": 467, "ccs": [209, 341], "ccshare": 456, "cd": [117, 120, 190, 261, 295, 388, 417, 468], "cdata": [142, 176, 314, 410, 415, 416, 483], "cdata_section_nod": 410, "cdatasect": [68, 273], "cddb": 468, "cdecl": 176, "cdef": 261, "cdefg": 291, "cdf": [343, 481], "cdf246": 468, "cdfo": 103, "cdio": [479, 483], "cdll": [176, 467, 481, 483], "cdplayer": 468, "cdr": 85, "cdrom": [479, 483], "cdt": 183, "ce": [344, 461, 462, 483], "ce46195b56a9": 477, "cea": [468, 469, 476, 479, 480, 483], "ceas": [474, 483], "cedilla": [387, 430], "ceil": [221, 275, 289, 322, 344, 428, 468, 481, 483], "cela": 200, "celebr": 275, "celementtre": [68, 254, 273, 467, 475, 476, 483], "celeri": 340, "cell": [16, 27, 66, 68, 85, 92, 93, 176, 177, 191, 226, 255, 376, 385, 428, 468, 473, 483], "cell_cont": 428, "cellobject": [473, 483], "celltyp": [385, 483], "cellvar": [13, 225, 483], "celsius": 343, "celtic": 158, "cem": 483, "center": [150, 155, 177, 186, 248, 255, 344, 345, 369, 376, 384, 426, 428, 446, 466, 468, 476, 483], "centimetr": 369, "cento": [223, 473, 475, 480, 483], "central": [158, 183, 194, 205, 287, 343, 462, 463, 464, 465, 467, 475, 483], "centrum": [33, 69, 426], "centuri": [183, 366, 475, 483], "cepl": [478, 482, 483], "cere": 343, "cern": 395, "cert": [341, 460, 469, 477, 483], "cert_": 341, "cert_byt": 341, "cert_fil": [242, 395, 474, 483], "cert_non": [341, 483], "cert_opt": [341, 483], "cert_requir": [341, 483], "cert_store_stat": [341, 477, 483], "cert_tim": 341, "cert_time_to_second": [341, 478, 483], "certain": [7, 23, 33, 41, 42, 49, 58, 59, 63, 66, 73, 77, 85, 92, 94, 95, 101, 102, 106, 120, 133, 144, 158, 173, 176, 183, 190, 193, 195, 196, 199, 203, 205, 206, 208, 209, 234, 247, 255, 266, 267, 268, 269, 270, 271, 272, 283, 292, 293, 295, 297, 307, 308, 337, 341, 346, 348, 354, 358, 365, 366, 369, 386, 387, 388, 394, 410, 419, 428, 430, 432, 435, 461, 462, 463, 464, 465, 466, 468, 469, 471, 474, 476, 477, 480, 481, 483], "certainti": [73, 405], "certchain": 341, "certfil": [223, 248, 305, 335, 341, 462, 474, 479, 483], "certif": [68, 133, 136, 223, 242, 248, 269, 305, 362, 395, 419, 468, 474, 480, 483], "certifi": 483, "certificate_verify_fail": 341, "certificateerror": 341, "certificaterequest": 341, "cervant": 483, "ceval": [96, 472, 483], "cf": [66, 106, 337], "cf68fb5761b9c44e7878bfb2c4c9aea52264a80b75005e65619778de59f383a3": 235, "cf9": 84, "cf_feature_vers": [66, 481, 483], "cf_flag": [66, 481], "cfbundleallowmixedloc": 483, "cffi": [73, 74, 91, 186, 483], "cfg": [34, 85, 167, 268, 334, 354, 384, 399, 461, 468, 476, 478, 479, 483], "cfg_builder": 483, "cfgoptimizationtestcas": 483, "cfgparser": 167, "cfield": 483, "cfile": [85, 311], "cflag": [72, 104, 306, 361, 456, 465, 483], "cflags_alias": 456, "cflags_nodist": [456, 483], "cflagsforshar": 456, "cfmakecbreak": [383, 483], "cfmakeraw": [383, 483], "cfmfile": 468, "cfoo": 228, "cframe": 473, "cftuvsux": 89, "cfuhash": 68, "cfunctyp": [176, 483], "cfutur": 483, "cget": [372, 376], "cgi": [68, 110, 245, 254, 327, 328, 350, 395, 396, 407, 420, 462, 468, 472, 473, 474, 475, 477, 479, 480, 481, 482, 483], "cgi_directori": 245, "cgihandl": 407, "cgihttprequesthandl": [245, 483], "cgihttpserv": [470, 483], "cgirequesthandl": 483, "cgitb": [68, 151, 254, 350, 473, 474, 483], "cgixmlrpcrequesthandl": [68, 256, 466], "cgo": 483, "ch": [64, 92, 101, 102, 158, 177, 190, 395, 462, 483], "chacha": 235, "chacha20": [341, 479, 483], "chad": [109, 465, 467, 468, 483], "chaim": 483, "chain": [7, 23, 63, 68, 85, 93, 95, 100, 102, 110, 119, 157, 160, 167, 176, 213, 214, 225, 236, 255, 261, 267, 293, 352, 381, 389, 390, 395, 428, 430, 436, 445, 468, 470, 476, 477, 478, 482, 483], "chainmap": [68, 182, 344, 386, 474, 476, 477, 480, 483], "challeng": [33, 283, 335, 400, 475, 480, 483], "chambon": 469, "chan": [474, 483], "chanc": [5, 59, 75, 101, 102, 139, 250, 365, 467, 474, 481, 483], "chandra": [480, 483], "chang": [13, 17, 22, 23, 27, 33, 34, 39, 45, 54, 55, 58, 59, 60, 61, 63, 66, 68, 72, 73, 75, 76, 77, 79, 92, 93, 94, 95, 96, 102, 103, 105, 106, 109, 110, 112, 113, 115, 120, 139, 149, 151, 155, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 201, 205, 206, 207, 208, 212, 216, 218, 222, 223, 225, 226, 234, 235, 243, 246, 247, 248, 250, 251, 255, 258, 261, 265, 266, 267, 268, 269, 270, 271, 275, 278, 281, 283, 284, 293, 297, 299, 305, 308, 311, 313, 314, 319, 320, 321, 328, 329, 331, 332, 333, 337, 338, 339, 340, 341, 342, 344, 346, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 376, 377, 378, 382, 385, 386, 388, 394, 395, 400, 405, 410, 411, 412, 413, 416, 421, 422, 425, 426, 427, 428, 429, 432, 434, 435, 436, 441, 451, 455, 456, 461, 476, 483, 484], "change_cwd": 362, "change_loc": 475, "change_st": 85, "changeabl": 85, "changelist": 328, "changelog": [68, 307, 469, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 484], "changes_class_v4": 483, "changeset": [475, 477, 483], "changestest": 483, "channel": [109, 117, 133, 141, 176, 201, 212, 268, 283, 295, 336, 337, 341, 349, 464, 476, 479, 480, 481, 482, 483], "channel_binding_typ": 341, "channel_send": 483, "channelid": 483, "chao": 384, "chapman": [84, 466, 481, 483], "chappel": 478, "chapter": [23, 42, 50, 66, 72, 73, 75, 76, 77, 84, 91, 95, 180, 187, 217, 222, 224, 246, 247, 260, 280, 290, 298, 315, 352, 430, 434, 435, 483], "chaput": [478, 483], "char": [5, 7, 8, 9, 10, 11, 13, 14, 17, 18, 22, 23, 24, 25, 26, 30, 31, 33, 34, 35, 39, 40, 41, 42, 43, 45, 48, 49, 51, 53, 54, 58, 59, 60, 61, 63, 64, 66, 72, 73, 75, 76, 79, 96, 98, 121, 146, 158, 176, 177, 202, 247, 262, 282, 344, 345, 347, 367, 369, 386, 413, 428, 440, 465, 467, 468, 469, 472, 477, 480, 481, 483], "char_data": 314, "char_max": 266, "charact": [5, 9, 16, 18, 33, 34, 39, 42, 49, 59, 68, 73, 84, 85, 87, 92, 102, 109, 120, 121, 131, 137, 145, 146, 151, 155, 158, 167, 173, 175, 176, 177, 178, 183, 184, 186, 190, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 208, 209, 213, 214, 220, 225, 228, 231, 239, 244, 245, 247, 248, 250, 251, 258, 265, 266, 268, 271, 272, 282, 283, 285, 288, 293, 296, 299, 307, 314, 319, 320, 321, 323, 331, 332, 335, 337, 338, 340, 342, 344, 345, 346, 348, 352, 358, 359, 361, 362, 364, 366, 369, 375, 376, 387, 388, 394, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 426, 430, 431, 434, 435, 436, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "character": 352, "characterdatahandl": 314, "characterist": [7, 85, 299, 346, 352, 467, 468], "characters_written": [213, 483], "charalampo": [482, 483], "chardet": 481, "charfil": 416, "charg": [110, 250, 426], "charjunk": 190, "charl": [462, 469, 474, 476, 477, 478, 479, 480, 483], "charli": 483, "charmap": 158, "charmap_decod": 483, "charref": 106, "charset": [68, 151, 183, 190, 194, 196, 197, 202, 205, 206, 208, 209, 230, 248, 285, 341, 395, 407, 475, 478, 483], "chart": [93, 109], "chartreus": 94, "chase": 483, "chassi": 475, "chaudhari": 477, "chavez": 483, "chcp": [476, 483], "chdir": [142, 169, 293, 332, 352, 451, 473, 475, 476, 482, 483], "che": 467, "cheap": [85, 176, 299, 483], "cheaper": [68, 381, 480], "cheat": 386, "cheatsheet": 475, "check": [5, 7, 9, 17, 23, 25, 31, 33, 34, 41, 42, 43, 45, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 84, 92, 94, 95, 98, 100, 101, 102, 106, 109, 120, 128, 139, 143, 144, 149, 151, 155, 160, 161, 163, 167, 169, 173, 176, 177, 178, 181, 183, 186, 187, 191, 197, 200, 205, 208, 211, 213, 214, 215, 221, 226, 233, 242, 243, 245, 247, 248, 255, 259, 262, 265, 267, 268, 269, 270, 272, 275, 280, 283, 287, 288, 289, 293, 295, 302, 303, 305, 314, 320, 322, 328, 331, 332, 333, 334, 335, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 357, 358, 362, 363, 365, 375, 376, 378, 382, 384, 385, 386, 388, 395, 399, 400, 413, 416, 419, 422, 424, 427, 430, 431, 432, 436, 446, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "check__all__": [362, 483], "check_cal": 348, "check_choic": 292, "check_circular": 262, "check_complex": 292, "check_crc32": 270, "check_crc64": 270, "check_disallow_instanti": 362, "check_eg_match": [191, 473, 483], "check_environ": 483, "check_exc_match": [191, 473, 483], "check_for_exit": 133, "check_free_after_iter": 362, "check_hash_pycs_mod": 34, "check_hostnam": [223, 242, 248, 288, 305, 335, 341, 395, 413, 474, 479, 483], "check_impl_detail": 362, "check_interrupted_writ": 483, "check_interv": 483, "check_modul": 483, "check_moon": 292, "check_multi_interp_extens": [33, 474], "check_mytyp": 292, "check_no_resource_warn": [362, 483], "check_non": 270, "check_null_allow": 431, "check_ord": 292, "check_output": [193, 348, 469, 477, 483], "check_resource_ok": 169, "check_returncod": 348, "check_same_thread": 340, "check_sha256": 270, "check_small_int": 483, "check_sourc": 34, "check_syntax_error": 362, "check_syntax_warn": [362, 483], "check_unknown": 270, "check_unused_arg": 345, "check_vers": 431, "check_warn": [362, 468], "checkabl": [386, 474, 483], "checkbox": [92, 151, 281, 461], "checkbutton": [375, 376, 483], "checkcach": [265, 483], "checked_hash": 311, "checker": [87, 120, 177, 183, 193, 292, 344, 386, 427, 428, 466, 467, 472, 473, 474, 478, 479, 481, 482, 483], "checkfuncnam": 144, "checkin": 462, "checklin": 483, "checklist": 375, "checkout": [120, 461, 469, 483], "checkpoint": [248, 352], "checkpyc": 483, "checksizeof": 362, "checksum": [146, 337, 358, 422, 424], "checktracecallbackcont": 483, "chees": [340, 441, 454], "cheeseshop": 441, "chen": 483, "chenet": [469, 475], "cheong": [472, 483], "chermsid": 465, "cherniavski": 466, "cherri": 483, "cheryl": [479, 480, 481, 483], "chess": [93, 95, 109, 464, 465], "chessboard": [95, 464, 465], "chestnykh": [235, 479], "chflag": [142, 293, 332, 342, 468, 476, 483], "chgat": [177, 468], "chhina": 474, "chi": [480, 483], "chih": 483, "child": [28, 33, 59, 85, 101, 102, 120, 132, 133, 137, 160, 212, 213, 248, 250, 253, 278, 283, 293, 296, 309, 314, 322, 328, 333, 337, 338, 348, 369, 376, 386, 389, 390, 410, 411, 413, 422, 428, 462, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 481, 482, 483], "child1": [314, 389], "child2": [314, 389], "child_conn": 283, "child_error": 483, "child_nam": 250, "child_stderr": 348, "child_stdin": 348, "child_stdout": 348, "child_stdout_and_stderr": 348, "childless": 469, "childnod": [410, 411, 462], "childprocesserror": [23, 212, 213, 293, 450, 476, 483], "children": [85, 101, 104, 132, 267, 283, 293, 312, 314, 322, 362, 369, 376, 384, 388, 410, 411, 412, 413, 422, 462, 469, 480, 483], "children_system": 293, "children_us": 293, "chines": [158, 466, 483], "chip": [244, 469], "chitespac": 247, "chiu": 483, "chjvymzdqg1ligrlig1hdhjpy2u": 288, "chksum": 358, "chm": 483, "chmod": [84, 102, 142, 151, 293, 296, 332, 342, 358, 438, 460, 472, 476, 483], "cho": [479, 483], "choi": [472, 483], "choic": [7, 68, 73, 84, 85, 89, 102, 110, 118, 151, 193, 225, 230, 247, 255, 267, 268, 271, 283, 292, 308, 314, 318, 324, 326, 329, 330, 341, 343, 344, 347, 375, 431, 434, 441, 451, 464, 467, 474, 475, 478, 479, 480, 483], "choos": [73, 75, 85, 89, 95, 102, 103, 106, 109, 120, 158, 163, 193, 205, 225, 226, 235, 245, 250, 267, 275, 292, 295, 299, 308, 318, 340, 341, 347, 348, 352, 353, 365, 369, 375, 413, 426, 432, 461, 464, 465, 469, 475, 476, 477, 480, 483], "chooser": 370, "chop": [283, 462, 466, 470], "chore": [94, 462], "chores_for_ethan": 94, "chorus": 167, "chose": [106, 250, 293, 434, 467], "chosen": [34, 45, 73, 94, 101, 106, 186, 225, 235, 268, 283, 284, 292, 299, 337, 341, 347, 352, 375, 415, 428, 451, 455, 461, 465, 466, 470, 483], "chowdhuri": 483, "chown": [102, 142, 293, 332, 476, 483], "chowntest": 102, "chr": [85, 109, 225, 240, 314, 387, 428, 450, 467, 469], "chrigstr": 469, "chris": [465, 467, 468, 476, 478, 479, 483], "christi": 483, "christian": [235, 426, 462, 466, 468, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483], "christien": 477, "christo": 475, "christoph": [465, 478, 483], "chrome": [403, 476, 483], "chromium": [403, 476], "chronic": 479, "chronolog": [109, 479], "chroot": [293, 483], "chrtype": 358, "chtype": 483, "chu": [468, 471], "chuck": 483, "chugunov": 483, "chunk": [5, 13, 43, 68, 78, 85, 102, 107, 109, 133, 149, 166, 180, 223, 225, 235, 240, 242, 254, 258, 261, 262, 270, 283, 293, 303, 314, 332, 334, 337, 347, 350, 395, 407, 415, 416, 430, 462, 465, 467, 469, 473, 474, 479, 483], "chunksiz": [149, 166, 283, 303, 478, 483], "churn": 479, "ci": [347, 461, 480, 481, 483], "cid": [197, 200, 337], "cinder": 483, "cipher": [68, 133, 167, 173, 235, 456, 469, 475, 476, 478, 479, 480, 483], "circl": [94, 155, 275, 384, 468], "circuit": [100, 344, 442], "circular": [28, 33, 35, 73, 76, 85, 262, 384, 390, 428, 463, 478, 480, 483], "circumfer": 275, "circumflex": [109, 377], "circumflexequ": 377, "circumst": [23, 42, 92, 94, 102, 103, 151, 167, 243, 267, 270, 292, 293, 322, 332, 395, 403, 428, 436, 466, 477, 481, 483], "circumv": 102, "circus": [186, 225, 439], "cis": 483, "cisco": [259, 483], "citi": [120, 341, 396, 426, 483], "city_list": 95, "city_st": 95, "civil": 183, "cj": 243, "cjk": [476, 483], "cjkcodec": [466, 483], "ck": 477, "cl": [77, 297, 468, 483], "claim": [73, 190, 199, 341, 394, 426, 483], "claird": 84, "clamp": [186, 475, 476, 483], "clang": [456, 474, 477, 479, 483], "clangcl": 483, "clara": 426, "clarendon": 154, "clarif": [64, 432, 483], "clarifi": [106, 467, 468, 475, 477, 483], "clariti": [107, 292, 366, 427, 475, 483], "clark": [426, 476, 483], "clash": [73, 94, 102, 176, 247, 267, 268, 271, 430, 435, 468, 478, 481, 482, 483], "class": [10, 22, 23, 28, 33, 44, 45, 49, 53, 54, 58, 61, 62, 63, 64, 67, 68, 73, 75, 76, 80, 84, 86, 87, 88, 92, 95, 99, 101, 103, 106, 107, 108, 109, 110, 112, 113, 116, 118, 121, 122, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 146, 147, 148, 149, 150, 151, 153, 155, 157, 159, 160, 164, 166, 167, 169, 170, 172, 175, 176, 177, 178, 182, 183, 184, 185, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 211, 218, 219, 221, 222, 223, 224, 225, 226, 227, 232, 234, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 262, 264, 266, 267, 268, 269, 270, 271, 276, 278, 279, 280, 284, 286, 288, 289, 292, 293, 295, 296, 297, 298, 301, 302, 304, 305, 307, 311, 313, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 330, 331, 333, 335, 337, 338, 340, 341, 343, 345, 348, 351, 352, 358, 359, 360, 362, 364, 365, 366, 367, 369, 370, 371, 372, 373, 374, 375, 376, 380, 381, 382, 386, 387, 389, 390, 394, 396, 398, 399, 400, 401, 402, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 429, 430, 431, 432, 433, 434, 436, 439, 441, 443, 445, 446, 450, 451, 452, 455, 461, 462, 463, 465, 466, 469, 470, 471, 472, 474, 475, 477, 478, 480, 481, 482, 483, 484], "class1": [85, 389, 390, 464], "class2": [85, 389, 390, 464], "class_": 230, "class_def": 431, "class_def_raw": 431, "class_definit": 382, "class_method": 389, "class_of_obj": 428, "class_or_inst": 181, "class_pattern": [427, 431], "classdef": [122, 427, 483], "classic": [95, 103, 167, 184, 203, 230, 271, 369, 384, 449, 464, 465, 467, 469, 470, 475, 483], "classif": [266, 292, 435], "classifi": [68, 251, 290, 307, 465, 469, 483], "classify_class_attr": 483, "classinfo": 225, "classinst": 297, "classmethod": [58, 87, 93, 94, 116, 160, 161, 176, 183, 186, 191, 193, 203, 211, 221, 225, 226, 250, 255, 261, 283, 296, 299, 343, 344, 358, 381, 382, 386, 388, 422, 425, 428, 450, 464, 466, 469, 472, 473, 474, 475, 476, 479, 480, 481, 483], "classmethoddescr_cal": 483, "classmethoddescriptortyp": [385, 480, 483], "classnam": [23, 85, 122, 161, 369, 375, 389, 390, 427, 440], "classname1": [389, 390], "classname2": [389, 390], "classobject": [93, 473, 483], "classroom": [384, 483], "classvar": [181, 386, 473, 479, 483], "claud": [478, 483], "claudiu": [477, 478, 483], "claudius": 462, "claus": [23, 68, 95, 102, 115, 139, 169, 213, 255, 283, 297, 314, 340, 344, 352, 362, 428, 429, 430, 435, 436, 443, 462, 467, 468, 475, 477, 480, 481, 482, 483], "clav": 477, "cld_continu": 293, "cld_dump": 293, "cld_exit": 293, "cld_kill": [293, 482, 483], "cld_stop": [293, 482, 483], "cld_trap": 293, "cldr": 425, "clean": [23, 33, 68, 73, 75, 100, 102, 106, 120, 122, 132, 139, 158, 166, 191, 193, 201, 205, 208, 212, 213, 247, 252, 255, 271, 282, 283, 284, 287, 315, 338, 340, 343, 358, 362, 395, 399, 416, 428, 430, 456, 462, 463, 464, 466, 467, 468, 469, 470, 474, 475, 476, 481, 482, 483], "clean_nam": 481, "cleanbyt": 483, "cleandoc": [122, 255], "cleaner": [344, 462, 471, 476, 478, 483], "cleanest": 308, "cleanfutur": 464, "cleanimport": [362, 483], "cleantest": 483, "cleanup": [33, 34, 35, 59, 68, 95, 102, 115, 135, 140, 164, 169, 214, 293, 338, 348, 352, 360, 362, 388, 390, 405, 411, 427, 428, 429, 430, 455, 462, 464, 467, 469, 470, 474, 475, 476, 481, 483], "cleanup_need": 169, "cleanup_resourc": 169, "cleanup_throw": [191, 474], "clear": [13, 22, 27, 32, 33, 35, 45, 47, 58, 61, 63, 67, 68, 73, 75, 76, 80, 85, 92, 95, 98, 100, 102, 103, 106, 109, 110, 120, 138, 155, 158, 160, 161, 167, 169, 177, 186, 191, 193, 205, 216, 223, 226, 243, 247, 250, 255, 265, 267, 269, 271, 276, 292, 293, 297, 302, 319, 320, 332, 333, 337, 340, 344, 352, 353, 358, 362, 365, 376, 381, 382, 383, 384, 386, 388, 389, 390, 399, 400, 413, 423, 427, 428, 430, 442, 449, 456, 461, 462, 464, 465, 467, 468, 469, 474, 475, 476, 477, 479, 480, 482, 483], "clear_all_break": 144, "clear_all_file_break": 144, "clear_bpbynumb": 144, "clear_break": 144, "clear_button": 102, "clear_cach": [216, 425, 477], "clear_cont": [197, 205], "clear_display": 102, "clear_flag": 186, "clear_fram": [381, 477], "clear_glob": 193, "clear_histori": 320, "clear_overload": [386, 473, 483], "clear_session_cooki": 243, "clear_trac": 382, "clear_trap": 186, "clearbreakpoint": 472, "clearcach": 265, "cleardata": 281, "clearer": [95, 193, 292, 344, 462, 463, 464, 465, 466, 468, 480, 483], "clearest": [85, 465], "clearok": 177, "clearscreen": 384, "clearstamp": 384, "cleartext": [173, 269], "clees": [175, 413, 441, 481], "clegg": [480, 483], "clement": [413, 479, 483], "clever": [109, 151, 299, 345, 464], "cli": [68, 234, 251, 340, 362, 455, 477, 480, 483], "click": [102, 151, 177, 189, 247, 293, 358, 384, 426, 461, 476, 479, 480, 481, 483], "clickabl": 483, "client": [60, 68, 73, 84, 93, 101, 102, 107, 110, 126, 142, 144, 151, 158, 164, 167, 170, 194, 196, 241, 243, 244, 245, 248, 251, 254, 256, 259, 267, 269, 288, 293, 299, 305, 328, 329, 335, 337, 338, 340, 359, 362, 365, 384, 386, 394, 395, 409, 410, 417, 418, 420, 426, 441, 451, 464, 466, 468, 474, 476, 481, 483], "client_addr": 170, "client_addr_var": 170, "client_address": [245, 338, 407], "client_auth": [341, 477], "client_connect": 126, "client_connected_cb": [136, 483], "client_context": 341, "client_thread": 107, "clienthello": 341, "clientip": 267, "clientmodul": 73, "clientsess": 169, "clientsocket": 107, "cliff": [465, 469], "climat": 481, "clinic": [68, 479, 481, 483], "clinton": 469, "clip": [47, 56, 177, 436], "clipboard": [247, 369, 479, 480, 481, 483], "clk_id": 366, "clobber": [243, 292, 483], "clock": [68, 85, 118, 131, 139, 183, 308, 322, 384, 468, 476, 478, 479, 480, 481, 483], "clock_": 476, "clock_boottim": [366, 480, 483], "clock_getr": [366, 476], "clock_gettim": [366, 476, 482, 483], "clock_gettime_n": [366, 480, 483], "clock_highr": 366, "clock_monoton": [366, 473, 480, 483], "clock_monotonic_raw": 366, "clock_nanosleep": [366, 473, 483], "clock_process_cputime_id": 366, "clock_prof": [366, 480, 483], "clock_r": 483, "clock_realtim": [366, 473, 483], "clock_seq": 398, "clock_seq_hi_vari": 398, "clock_seq_low": 398, "clock_settim": [366, 476], "clock_settime_n": [366, 480, 483], "clock_tai": [366, 483], "clock_thread_cputime_id": [366, 482, 483], "clock_uptim": [366, 480, 483], "clock_uptime_raw": [366, 481, 483], "clockspe": 223, "clockwis": 384, "clone": [59, 201, 205, 208, 230, 235, 237, 283, 293, 301, 335, 376, 384, 410, 434, 460, 476, 481], "clone_": 293, "clone_f": 293, "clone_fil": 293, "clone_new": 293, "clone_newcgroup": 293, "clone_newipc": 293, "clone_newn": 293, "clone_newnet": 293, "clone_newpid": 293, "clone_newtim": 293, "clone_newus": 293, "clone_newut": 293, "clone_sighand": 293, "clone_sysvsem": 293, "clone_thread": 293, "clone_vm": 293, "clonenod": [410, 483], "closabl": 386, "close": [33, 51, 63, 66, 68, 76, 78, 79, 85, 95, 96, 100, 101, 102, 107, 109, 117, 120, 126, 130, 132, 133, 135, 136, 137, 139, 151, 153, 155, 157, 158, 161, 167, 169, 170, 177, 184, 188, 190, 191, 199, 207, 208, 213, 214, 218, 223, 225, 234, 235, 240, 242, 243, 247, 248, 258, 267, 269, 270, 271, 278, 281, 283, 284, 288, 292, 293, 295, 301, 308, 309, 314, 320, 328, 329, 330, 331, 333, 335, 337, 338, 340, 341, 344, 348, 349, 352, 358, 359, 360, 362, 365, 366, 369, 375, 376, 378, 384, 386, 388, 390, 395, 399, 401, 405, 407, 413, 416, 417, 419, 420, 421, 422, 428, 430, 431, 435, 443, 446, 452, 462, 466, 467, 468, 469, 471, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "close_connect": 245, "close_fd": [293, 348, 466, 475, 480, 481, 483], "close_fil": 169, "close_notifi": 483, "close_rang": 483, "close_when_don": 483, "closeboundarynotfounddefect": 199, "closeconnect": 388, "closed_pattern": [427, 431], "closefd": [24, 188, 225, 258, 283, 470, 483], "closefrom": [482, 483], "closeit": 66, "closekey": 405, "closelog": [142, 356, 474], "closer": [94, 331, 332, 390, 400, 469, 470, 478, 483], "closerang": [293, 468, 483], "closest": [186, 221, 225, 275, 427, 468, 469, 474, 483], "closewalk": 483, "closur": [27, 58, 66, 76, 169, 170, 191, 225, 250, 255, 292, 344, 428, 473, 476, 479, 483], "closurevar": 255, "cloth": 207, "clover": 483, "clr": 110, "clrtobot": 177, "clrtoeol": 177, "cls": [49, 58, 61, 63, 85, 93, 94, 103, 116, 122, 161, 181, 191, 203, 211, 213, 225, 226, 255, 262, 296, 299, 340, 362, 382, 385, 386, 388, 427, 428, 431, 436, 443, 464, 466, 473, 475, 479, 480, 483], "cls_name": [181, 211], "cls_var": 93, "clsname": 93, "clue": 292, "clueless": 483, "clumsi": 476, "clumsier": [463, 464], "cluster": [190, 225, 337, 455, 468], "clutter": [85, 102, 475], "clvxxpq2t2lq5mp2y53vvqfcxywqjhkz": 483, "cm": [85, 139, 169, 362, 388], "cmath": [68, 87, 254, 275, 290, 344, 466, 468, 477, 483], "cmd": [34, 68, 86, 102, 120, 126, 137, 142, 144, 177, 215, 222, 223, 254, 293, 297, 301, 308, 332, 335, 348, 380, 399, 455, 474, 475, 483], "cmd1": 120, "cmd2": 120, "cmd_name": 362, "cmdloop": 155, "cmdqueue": 155, "cmds": 483, "cmode": 384, "cmowz": 344, "cmp": [108, 216, 225, 344, 462, 463, 466, 470, 483], "cmp_func": 176, "cmp_op": 191, "cmp_to_key": [108, 225, 226, 344, 469, 475], "cmpcach": 462, "cmpfile": 216, "cmpfunc": 176, "cmpop": 122, "cmpopexprpair": 431, "cmsg_data": 337, "cmsg_len": [337, 483], "cmsg_level": 337, "cmsg_space": [337, 483], "cmsg_type": 337, "cmu": 483, "cn": [103, 158], "cnf": [375, 460], "cnn": [166, 184], "cnri": [68, 462], "cnt": 160, "co": [13, 31, 58, 66, 68, 76, 120, 166, 256, 337, 353, 362, 466, 475, 480, 483], "co_": [255, 483], "co_argcount": [255, 428, 483], "co_async_gener": 255, "co_cellvar": [13, 255, 428, 473, 483], "co_cod": [13, 255, 428, 473, 483], "co_const": [191, 255, 428, 483], "co_coroutin": [255, 481, 483], "co_extra_freefunc": 483, "co_fastlocalkind": 483, "co_fastlocalnam": [191, 483], "co_filenam": [31, 255, 381, 428, 469, 483], "co_firstlineno": [191, 255, 428, 483], "co_flag": [255, 428, 483], "co_freevar": [13, 255, 428, 473, 483], "co_future_divis": [66, 481, 482], "co_gener": [255, 483], "co_iterable_coroutin": [191, 255], "co_kwonlyargcount": [255, 428], "co_lin": [191, 428, 472, 483], "co_lineno": 483, "co_linet": 483, "co_lnotab": [191, 255, 428, 472, 474, 479, 483], "co_nam": [191, 255, 381, 428, 478, 483], "co_nest": 255, "co_newloc": 255, "co_nloc": [255, 428], "co_nofre": 483, "co_nplaincellvar": 483, "co_optim": 255, "co_posit": [428, 473], "co_posonlyargcount": [255, 428, 481, 483], "co_qualnam": [27, 255, 428, 483], "co_stacks": [255, 428], "co_vararg": 255, "co_varkeyword": 255, "co_varnam": [13, 191, 255, 428, 473, 483], "coalesc": 308, "coars": 480, "coarser": 352, "cobalt": 483, "coccioli": 483, "cocoa": [369, 459, 475, 483], "code": [5, 7, 9, 11, 12, 13, 22, 23, 26, 27, 31, 34, 35, 39, 41, 42, 45, 48, 51, 55, 56, 59, 60, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 80, 84, 87, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 107, 112, 118, 121, 126, 128, 130, 132, 133, 135, 137, 139, 141, 142, 144, 146, 151, 152, 156, 158, 159, 163, 167, 168, 169, 170, 175, 176, 177, 180, 181, 183, 184, 186, 187, 190, 191, 193, 196, 202, 203, 205, 206, 208, 212, 213, 214, 215, 221, 225, 226, 228, 230, 235, 236, 241, 242, 243, 245, 248, 251, 254, 257, 259, 261, 262, 266, 267, 268, 269, 270, 271, 274, 278, 279, 280, 283, 287, 288, 292, 293, 295, 297, 299, 302, 308, 309, 311, 312, 313, 314, 315, 319, 320, 324, 325, 330, 331, 332, 333, 334, 335, 337, 340, 341, 346, 347, 348, 351, 352, 354, 356, 362, 364, 365, 366, 368, 369, 375, 376, 377, 378, 380, 381, 382, 385, 386, 390, 393, 394, 395, 397, 399, 408, 410, 411, 413, 414, 415, 419, 420, 421, 422, 423, 426, 427, 429, 430, 431, 432, 434, 435, 436, 442, 443, 445, 448, 454, 455, 456, 458, 459, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 477, 479, 480, 481, 483, 484], "code_addr": 51, "code_context": 255, "code_debug_rang": 34, "code_info": [191, 475], "code_object": [142, 225, 483], "code_pag": [64, 476], "code_point": 120, "code_s": 51, "codebas": [435, 477, 478, 483], "codec": [16, 34, 68, 87, 109, 145, 195, 201, 202, 213, 225, 254, 258, 293, 335, 344, 363, 422, 448, 451, 461, 462, 464, 466, 467, 470, 473, 478, 479, 481, 482, 483, 484], "codecinfo": [158, 467], "codecnam": 195, "codecontext": 483, "coded_valu": [244, 478, 480, 483], "codegen": 483, "codemod": 122, "codeobj": 191, "codeobject": [428, 473, 483], "codeop": [68, 79, 180, 254, 483], "codepag": [68, 120, 145, 352, 474, 483], "codepath": 483, "codepoint": [64, 247, 266], "codepoint2nam": 239, "coder": 141, "codereview": 469, "codeset": [34, 158, 230, 266, 464, 473, 481, 483], "codetool": 160, "codetyp": [353, 385, 481, 483], "codewarrior": 468, "codit": 138, "coeffici": [186, 261, 343, 345, 465, 477, 483], "coerc": [34, 64, 99, 167, 186, 195, 196, 205, 266, 343, 345, 455, 462, 470, 480, 483], "coerce_c_local": 34, "coerce_c_locale_warn": 34, "coercion": [34, 68, 225, 293, 345, 428, 455, 456, 467, 469, 483, 484], "coexist": 163, "cog": 475, "coghlan": [95, 99, 109, 324, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 480, 483], "cognoscer": 103, "cohen": 483, "coher": [193, 226], "cohort": 343, "coin": 318, "coincid": 103, "col": [92, 177, 247, 261, 345, 478, 483], "col_info": 483, "col_offset": [23, 122, 191, 481, 483], "cold": 483, "cole": [465, 466, 475, 483], "coleman": 483, "colin": [476, 483], "collabor": 465, "collaps": [196, 259, 364, 477, 483], "collapse_address": [259, 478, 483], "collapse_rfc2231_valu": [196, 209], "collat": [87, 266, 340, 473, 483], "collate_revers": 340, "collect": [28, 31, 42, 45, 52, 63, 64, 67, 68, 73, 74, 75, 78, 84, 85, 87, 92, 95, 98, 101, 102, 106, 112, 116, 120, 122, 125, 133, 139, 147, 151, 158, 167, 169, 170, 176, 179, 181, 182, 184, 187, 193, 194, 213, 214, 225, 226, 227, 242, 243, 251, 254, 255, 261, 264, 283, 293, 299, 305, 308, 314, 316, 330, 332, 333, 336, 337, 338, 340, 341, 343, 344, 347, 352, 359, 360, 362, 376, 382, 384, 385, 388, 395, 402, 405, 411, 413, 427, 428, 430, 436, 441, 442, 452, 453, 456, 461, 464, 465, 466, 467, 468, 470, 471, 473, 474, 483, 484], "collecteddur": [388, 483], "collector": [45, 50, 63, 68, 73, 76, 85, 87, 95, 100, 214, 254, 283, 292, 315, 352, 362, 411, 428, 456, 462, 464, 467, 468, 469, 471, 472, 474, 476, 477, 480, 482, 483], "collid": [283, 395], "collin": [95, 468, 469, 478, 483], "collis": [106, 235, 289, 330, 461, 472, 477, 481, 482, 483], "colm": 483, "colno": [262, 319, 478], "colombia": 413, "colon": [5, 106, 183, 193, 196, 199, 205, 208, 228, 230, 242, 255, 259, 267, 271, 297, 302, 319, 335, 345, 377, 378, 395, 400, 410, 427, 430, 431, 435, 443, 455, 456, 461, 468, 469, 479, 483], "colonequ": 377, "color": [68, 87, 94, 102, 155, 160, 162, 177, 189, 211, 222, 240, 331, 368, 369, 370, 375, 376, 378, 405, 428, 441, 442, 472, 473, 475, 479, 480, 483], "color_black": [92, 177], "color_blu": 177, "color_cont": [177, 472], "color_cyan": 177, "color_green": 177, "color_magenta": 177, "color_numb": 177, "color_pair": [92, 177, 483], "color_r": [92, 177], "color_whit": [92, 177], "color_yellow": 177, "colorchoos": [68, 254, 368, 369, 483], "colordeleg": 483, "colored_btn": 376, "colorfaq": 162, "colormap": 466, "colormix": 384, "colormod": 384, "colorpick": 468, "colorsi": [68, 254, 277, 483], "colorstr": 384, "colorstring1": 384, "colorstring2": 384, "colour": [84, 92, 106, 122, 462, 483], "column": [13, 34, 63, 68, 85, 98, 109, 151, 155, 177, 190, 191, 193, 213, 225, 247, 255, 261, 262, 281, 293, 308, 314, 319, 332, 340, 344, 347, 364, 368, 369, 378, 413, 416, 428, 455, 462, 469, 473, 478, 483], "colvin": [482, 483], "com": [1, 68, 69, 73, 75, 80, 84, 85, 93, 101, 102, 106, 110, 136, 162, 166, 176, 183, 184, 200, 243, 248, 261, 288, 297, 307, 318, 319, 326, 340, 341, 344, 388, 395, 396, 398, 405, 413, 419, 453, 454, 459, 461, 464, 466, 467, 468, 469, 474, 475, 476, 477, 478, 481, 483], "com1": 483, "comb": [261, 275, 343, 442, 473, 481, 483], "combin": [7, 23, 33, 49, 56, 58, 63, 64, 68, 72, 76, 85, 92, 95, 100, 102, 106, 109, 110, 117, 120, 139, 158, 160, 163, 169, 176, 177, 181, 183, 186, 189, 193, 203, 205, 208, 211, 243, 244, 245, 247, 250, 258, 261, 266, 267, 283, 292, 293, 295, 308, 318, 319, 322, 328, 329, 331, 334, 335, 337, 338, 340, 343, 344, 346, 347, 348, 356, 358, 369, 376, 386, 387, 388, 394, 405, 406, 423, 426, 427, 428, 430, 432, 435, 436, 456, 462, 466, 467, 468, 469, 477, 478, 479, 480, 481, 483], "combinations_with_replac": [95, 160, 261, 318, 469, 471, 483], "combinator": [68, 261, 318, 471, 481], "combined_exampl": 441, "combo": [375, 376], "combobox": [68, 368, 375], "comboboxselect": 376, "comboboxtest": 483, "come": [33, 64, 71, 75, 84, 85, 92, 93, 101, 102, 103, 109, 110, 151, 158, 161, 169, 177, 181, 186, 193, 209, 226, 235, 244, 250, 292, 295, 299, 319, 320, 334, 338, 340, 341, 344, 355, 369, 376, 386, 395, 399, 410, 415, 427, 428, 432, 434, 435, 441, 461, 462, 463, 464, 465, 466, 468, 477, 480, 481, 482, 483], "comfort": [109, 193], "comma": [5, 34, 68, 78, 94, 112, 151, 175, 186, 193, 242, 248, 266, 267, 268, 271, 292, 319, 344, 345, 362, 377, 380, 395, 400, 427, 428, 430, 431, 436, 442, 455, 466, 467, 468, 469, 470, 472, 474, 477, 480, 481, 483, 484], "command": [23, 33, 34, 66, 68, 72, 73, 77, 79, 85, 101, 102, 104, 109, 112, 118, 119, 137, 142, 151, 155, 157, 164, 177, 185, 187, 193, 206, 214, 222, 223, 225, 228, 230, 234, 245, 247, 248, 251, 254, 255, 262, 264, 267, 268, 272, 283, 288, 292, 295, 301, 305, 308, 309, 313, 324, 331, 332, 334, 335, 340, 341, 344, 352, 354, 359, 362, 363, 369, 373, 375, 376, 382, 384, 400, 403, 407, 413, 420, 421, 428, 429, 436, 448, 451, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 476, 478, 480, 481, 482, 483, 484], "command_lin": [142, 348], "command_line_arg": 160, "commandcompil": 159, "commandlin": 483, "comment": [1, 9, 64, 68, 73, 95, 102, 106, 109, 112, 122, 167, 176, 193, 203, 240, 243, 244, 247, 255, 273, 293, 299, 313, 314, 319, 331, 348, 362, 377, 378, 394, 412, 413, 415, 422, 423, 428, 431, 436, 449, 462, 464, 465, 467, 469, 470, 472, 473, 474, 475, 481, 483], "comment_factori": 413, "comment_nod": 410, "comment_prefix": 167, "comment_str": 344, "comment_url": 243, "commenthandl": 314, "commerci": [92, 295, 426, 468], "commit": [93, 120, 281, 288, 305, 340, 348, 371, 431, 467, 468, 469, 477, 479, 483], "committ": [288, 476], "committe": 468, "common": [5, 7, 23, 33, 34, 58, 63, 68, 73, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 108, 109, 110, 115, 120, 128, 139, 158, 160, 167, 169, 176, 181, 183, 190, 193, 195, 200, 201, 203, 205, 207, 208, 215, 216, 235, 242, 243, 245, 247, 251, 259, 261, 262, 265, 267, 271, 272, 276, 283, 292, 293, 295, 299, 307, 331, 332, 333, 335, 338, 340, 341, 346, 347, 348, 354, 358, 361, 362, 364, 365, 366, 369, 375, 384, 386, 388, 394, 395, 399, 400, 408, 417, 419, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 475, 476, 477, 478, 480, 481, 482, 483, 484], "common_dir": 216, "common_fil": 216, "common_funni": 216, "common_typ": 276, "commondialog": [68, 368, 369, 370], "commoninstal": 483, "commonnam": 341, "commonpath": [294, 478, 483], "commonplac": 475, "commonprefix": [294, 478], "commonwealth": 426, "communic": [33, 68, 102, 126, 133, 137, 193, 212, 242, 245, 247, 254, 257, 269, 283, 293, 299, 305, 309, 333, 337, 338, 341, 347, 348, 365, 376, 386, 419, 426, 462, 466, 467, 468, 478, 480, 481, 483], "communiti": [80, 85, 247, 459, 462, 463, 467, 468, 475, 480], "commut": [208, 261, 474], "comp": [80, 84, 85, 101, 149, 288, 454, 463, 464, 467, 476, 477], "comp_for": 430, "comp_if": 430, "comp_it": 430, "comp_oper": 430, "comp_siz": 452, "compact": [39, 42, 85, 106, 109, 151, 155, 190, 197, 262, 299, 307, 347, 381, 430, 465, 474, 476, 477, 479, 483], "compani": [341, 461, 467, 468, 473, 483], "companion": 465, "companydata": 160, "compaq": 83, "compar": [11, 23, 33, 34, 49, 63, 64, 68, 72, 75, 84, 92, 94, 99, 101, 102, 106, 122, 176, 181, 183, 186, 190, 191, 193, 195, 196, 197, 202, 214, 216, 225, 226, 236, 259, 262, 266, 267, 269, 271, 283, 292, 297, 308, 311, 314, 316, 326, 328, 340, 341, 342, 344, 346, 352, 362, 369, 382, 386, 387, 388, 390, 405, 413, 425, 427, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "comparand": 183, "compare_and_branch": 483, "compare_caseless": 109, "compare_digest": [173, 235, 237, 326, 469, 476, 483], "compare_hash": 173, "compare_network": 259, "compare_op": [191, 475, 482, 483], "compare_op_bitwise_or_pair": 431, "compare_op_gener": 483, "compare_sign": 186, "compare_str": 109, "compare_to": 382, "compare_tot": 186, "compare_total_mag": 186, "comparison": [23, 49, 63, 64, 68, 74, 95, 109, 112, 160, 161, 173, 176, 181, 183, 186, 190, 191, 193, 216, 220, 225, 226, 255, 256, 266, 283, 291, 344, 346, 352, 353, 362, 386, 388, 405, 413, 419, 428, 431, 433, 435, 442, 449, 455, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "comparison_flag": 193, "compass": 369, "compat": [5, 23, 24, 33, 34, 42, 59, 61, 63, 64, 66, 68, 75, 76, 79, 80, 84, 87, 92, 96, 100, 101, 102, 106, 109, 110, 120, 128, 139, 144, 158, 161, 167, 176, 184, 186, 193, 194, 196, 201, 203, 205, 207, 208, 213, 214, 222, 228, 230, 243, 245, 247, 248, 250, 251, 252, 253, 255, 259, 266, 267, 268, 271, 283, 288, 293, 295, 299, 301, 302, 308, 312, 314, 319, 322, 325, 332, 337, 340, 341, 344, 348, 352, 358, 362, 365, 366, 376, 381, 384, 386, 387, 388, 394, 395, 397, 411, 419, 421, 422, 425, 427, 428, 430, 432, 435, 436, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "compat32": [68, 194, 195, 198, 201, 202, 205, 206, 207, 208, 209, 285, 476, 478, 479, 483], "compat_smtp": 208, "compat_strict": 208, "compat_strict_smtp": 208, "compel": [268, 469], "compens": [84, 308, 479, 483], "compet": 475, "compil": [13, 31, 33, 34, 42, 45, 58, 59, 63, 66, 68, 74, 76, 77, 79, 84, 85, 86, 95, 96, 102, 109, 112, 113, 122, 142, 157, 159, 163, 167, 176, 180, 182, 184, 191, 193, 213, 220, 225, 230, 235, 242, 247, 248, 250, 252, 255, 268, 270, 274, 308, 311, 314, 319, 320, 324, 331, 340, 341, 344, 345, 347, 351, 352, 355, 359, 362, 381, 385, 386, 387, 388, 400, 410, 422, 426, 428, 429, 432, 434, 435, 436, 440, 450, 455, 458, 461, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "compile_": 483, "compile_command": [157, 159, 483], "compile_dir": [163, 478, 480, 483], "compile_fil": [163, 478, 483], "compile_path": [163, 478], "compile_sourc": 483, "compile_typ": 351, "compileal": [68, 85, 156, 254, 264, 311, 352, 450, 456, 461, 474, 475, 479, 483], "compileall_opt": [456, 474, 483], "compileflag": 193, "compiler_flag": [113, 225], "compilerflag": 113, "complain": [63, 76, 102, 169, 247, 463, 483], "complaint": 463, "complement": [96, 106, 319, 384, 428, 476, 480, 482, 483], "complementari": [275, 318, 408, 469, 475], "complet": [23, 33, 34, 42, 59, 64, 66, 68, 73, 75, 76, 77, 87, 92, 94, 95, 100, 102, 103, 106, 117, 120, 126, 133, 136, 137, 139, 151, 155, 157, 158, 159, 163, 166, 167, 169, 177, 181, 183, 186, 190, 193, 194, 196, 202, 203, 205, 206, 207, 208, 223, 226, 230, 233, 235, 245, 255, 259, 261, 262, 267, 268, 269, 271, 272, 276, 281, 283, 284, 292, 293, 295, 297, 299, 308, 316, 319, 322, 323, 328, 331, 332, 334, 337, 338, 340, 341, 342, 344, 348, 352, 353, 354, 358, 361, 362, 363, 365, 368, 369, 375, 376, 378, 380, 381, 384, 386, 388, 394, 395, 408, 410, 411, 413, 416, 427, 428, 429, 430, 432, 434, 445, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "complete_": 155, "complete_foo": 155, "complete_stat": 340, "completedefault": 155, "completedprocess": [348, 478, 483], "completekey": [155, 297], "complex": [2, 5, 13, 15, 68, 72, 73, 75, 84, 85, 87, 102, 106, 120, 128, 132, 154, 161, 167, 170, 175, 184, 186, 190, 194, 200, 203, 225, 226, 254, 262, 268, 275, 289, 290, 292, 299, 307, 319, 333, 334, 345, 348, 352, 358, 384, 386, 419, 427, 430, 435, 436, 440, 449, 450, 455, 464, 466, 467, 468, 469, 471, 472, 473, 475, 477, 479, 480, 481, 482, 483], "complex_funct": 386, "complex_numb": 431, "complexencod": 262, "complexvalu": 225, "compli": [186, 262, 271, 314, 426, 468, 483], "complianc": [68, 186, 194, 203, 208, 285, 288, 410, 476, 477, 483], "compliant": [102, 112, 146, 183, 194, 195, 196, 201, 202, 203, 207, 208, 209, 215, 235, 262, 271, 311, 331, 340, 366, 394, 407, 426, 430, 464, 467, 469, 474, 476, 479, 480, 483], "complic": [33, 63, 73, 92, 94, 95, 100, 103, 106, 109, 110, 141, 158, 169, 176, 181, 190, 193, 215, 226, 243, 292, 299, 319, 366, 428, 430, 462, 464, 465, 466, 467, 468, 469, 471, 475, 483], "compnam": [117, 349, 401], "compon": [33, 42, 45, 64, 73, 85, 93, 101, 102, 106, 109, 110, 139, 158, 160, 177, 183, 186, 194, 208, 225, 230, 243, 245, 250, 251, 255, 281, 293, 296, 319, 331, 332, 344, 345, 352, 353, 355, 356, 358, 366, 369, 376, 384, 385, 386, 394, 395, 405, 410, 415, 420, 422, 425, 428, 432, 435, 455, 461, 465, 466, 468, 469, 470, 474, 475, 477, 478, 479, 480, 483], "componentflag": 281, "compos": [63, 68, 173, 200, 201, 202, 203, 208, 272, 293, 335, 355, 356, 375, 382, 387, 435, 476], "composit": [271, 352, 376, 387, 432, 483], "compound": [2, 68, 222, 247, 345, 364, 369, 375, 376, 427, 431, 435, 468, 476, 483], "compound_stmt": [427, 431, 437], "comprehend": 250, "comprehens": [24, 68, 84, 85, 87, 100, 112, 149, 191, 235, 255, 264, 299, 344, 369, 429, 430, 431, 435, 440, 445, 457, 466, 467, 469, 470, 472, 473, 476, 477, 478, 480, 481, 482, 483, 484], "comprehension_ti": 431, "comprehes": 442, "compress": [33, 68, 95, 99, 102, 117, 119, 133, 158, 167, 200, 218, 234, 235, 259, 261, 276, 281, 295, 299, 332, 336, 341, 342, 349, 358, 401, 421, 422, 424, 451, 464, 465, 467, 469, 471, 475, 476, 477, 478, 479, 480, 481, 483], "compress_s": 422, "compress_typ": [422, 469], "compressionerror": 358, "compressionlevel": 167, "compresslevel": [149, 234, 358, 422, 480, 482, 483], "compressobj": [424, 483], "compressor": [149, 270, 483], "compris": [94, 288, 302, 348, 430, 435, 436, 468], "compromis": 366, "comptyp": [117, 349, 401], "compulsori": [463, 464, 465], "comput": [33, 34, 49, 63, 64, 68, 72, 75, 76, 85, 87, 92, 93, 95, 99, 101, 102, 103, 106, 109, 133, 139, 141, 146, 160, 161, 178, 181, 183, 185, 186, 190, 191, 193, 216, 225, 226, 235, 255, 259, 261, 267, 269, 275, 283, 293, 294, 307, 308, 311, 318, 334, 337, 338, 341, 344, 352, 365, 369, 384, 388, 395, 405, 426, 427, 428, 430, 435, 436, 440, 451, 455, 456, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 477, 480, 481, 483], "computer_nam": [142, 405], "computernam": 405, "computerollov": 483, "computerphil": 109, "comspec": [293, 348, 476, 477], "con": [85, 340, 483], "con1": 340, "con2": 340, "concat": [64, 95, 291, 386, 441], "concaten": [23, 53, 54, 68, 76, 106, 120, 121, 149, 151, 157, 158, 191, 225, 234, 235, 267, 270, 271, 293, 297, 314, 319, 331, 335, 337, 341, 344, 358, 381, 386, 424, 428, 430, 443, 446, 449, 461, 465, 466, 472, 483], "conceal": 478, "conceiv": [299, 358], "concentr": [73, 106, 110, 235, 369, 468], "concept": [68, 92, 95, 99, 100, 101, 109, 139, 167, 186, 194, 244, 250, 258, 261, 283, 301, 309, 340, 344, 358, 365, 368, 384, 386, 412, 413, 427, 432, 464, 465, 470, 476, 477, 478, 483], "conceptu": [93, 95, 101, 120, 141, 194, 196, 200, 205, 250, 253, 345, 386, 400, 432, 480], "concern": [99, 101, 133, 158, 167, 269, 299, 314, 341, 362, 426, 463, 464, 469, 479, 480, 481, 482, 483], "concert": 475, "concis": [95, 99, 167, 267, 292, 340, 428, 462, 466, 475, 479, 483], "conclud": [95, 101, 106], "concret": [23, 33, 68, 75, 76, 94, 106, 122, 176, 183, 187, 197, 208, 219, 230, 250, 253, 258, 268, 292, 296, 329, 338, 344, 347, 352, 365, 388, 394, 410, 417, 425, 432, 464, 465, 468, 476, 477, 480, 482, 483], "concurr": [33, 68, 84, 87, 114, 123, 124, 126, 129, 130, 133, 134, 137, 170, 226, 254, 271, 283, 296, 299, 311, 320, 330, 340, 341, 348, 352, 365, 413, 443, 469, 473, 474, 481, 483, 484], "cond": [96, 138, 144, 352, 386, 467], "conda": 461, "condcom": 240, "condens": [235, 268, 467, 483], "condit": [33, 59, 63, 68, 73, 75, 78, 85, 87, 94, 95, 110, 124, 133, 137, 139, 140, 144, 164, 181, 186, 190, 191, 199, 213, 226, 228, 240, 248, 250, 251, 257, 258, 259, 261, 267, 268, 271, 272, 281, 283, 297, 309, 314, 319, 327, 328, 337, 341, 352, 353, 360, 362, 386, 388, 400, 402, 412, 414, 416, 419, 426, 427, 428, 429, 433, 445, 452, 455, 462, 463, 464, 466, 468, 469, 472, 475, 476, 477, 478, 479, 481, 482, 483, 484], "condition1": 95, "condition2": 95, "condition3": 95, "conditional_express": [430, 435], "conditionn": 95, "conditiontest": 96, "conduc": 207, "conduct_elect": 475, "coneybear": 483, "conf": [101, 102, 106, 296, 452, 465, 475, 483], "confer": [376, 463, 467], "confid": [85, 151, 318], "config": [33, 34, 68, 72, 79, 85, 96, 101, 102, 118, 167, 247, 254, 266, 267, 269, 292, 332, 352, 355, 369, 372, 389, 390, 407, 452, 456, 460, 465, 469, 472, 473, 474, 475, 477, 479, 480, 481, 483], "config_arg": 483, "config_dict": 268, "config_initi": 102, "config_key": 483, "config_listen": 102, "config_sit": [456, 483], "config_str": 34, "config_work": 102, "configchang": 483, "configdialog": 483, "configdialog_tests_v1": 483, "configdict": 469, "configfil": 167, "confighandl": 483, "confighelpsourceedit": 483, "configpars": [68, 114, 217, 254, 268, 331, 462, 466, 469, 470, 471, 473, 477, 480, 483], "configur": [32, 35, 42, 59, 63, 64, 68, 72, 73, 85, 92, 95, 96, 100, 104, 106, 115, 118, 132, 136, 167, 170, 176, 182, 186, 189, 222, 223, 235, 245, 247, 248, 250, 254, 266, 267, 269, 271, 272, 292, 293, 305, 306, 307, 314, 315, 320, 323, 331, 335, 337, 340, 341, 352, 354, 358, 361, 362, 365, 369, 374, 375, 376, 388, 395, 399, 400, 405, 411, 412, 413, 417, 419, 426, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 471, 472, 473, 474, 476, 477, 478, 479, 480, 482, 483, 484], "configure_c_stdio": 34, "configure_cflag": 456, "configure_cflags_nodist": 456, "configure_cppflag": 456, "configure_ldflag": 456, "configure_ldflags_nodist": 456, "configure_local": 34, "configure_log": 102, "configure_mock": [389, 390, 483], "confin": [177, 193], "confirm": [101, 189, 267, 297, 386, 395, 400, 461, 483], "conflict": [68, 73, 102, 103, 106, 110, 120, 167, 230, 241, 352, 384, 405, 413, 426, 455, 461, 475, 477, 480, 483], "conflict_handl": [68, 118, 292], "conform": [28, 63, 68, 94, 101, 146, 151, 167, 183, 186, 201, 203, 208, 209, 211, 225, 242, 245, 247, 250, 252, 266, 267, 273, 299, 314, 352, 394, 411, 413, 419, 425, 428, 456, 466, 470, 471, 476, 477, 479, 480, 481, 482, 483], "conformflag": 211, "confound": 471, "confront": [414, 465], "confstr": [293, 483], "confstr_nam": 293, "conftest": 483, "confus": [63, 72, 84, 85, 92, 96, 100, 102, 106, 110, 157, 176, 186, 190, 193, 225, 259, 269, 292, 293, 299, 319, 333, 358, 369, 395, 428, 430, 435, 436, 462, 463, 464, 465, 466, 467, 469, 471, 474, 475, 477, 479, 480, 481, 483], "congest": 483, "conin": 348, "conjug": [186, 289, 344, 468], "conjunct": [31, 190, 192, 193, 225, 255, 268, 331, 337, 386, 431, 435, 471, 477], "conn": [93, 126, 160, 166, 169, 242, 283, 299, 329, 337, 341, 365, 467, 475, 478], "conn1": 283, "conn2": 283, "connect": [68, 92, 93, 99, 102, 107, 110, 118, 124, 126, 136, 142, 151, 160, 164, 169, 207, 212, 213, 223, 241, 242, 243, 245, 247, 248, 266, 267, 269, 288, 292, 293, 298, 299, 305, 309, 327, 328, 332, 333, 335, 338, 341, 347, 348, 352, 359, 362, 365, 369, 375, 384, 386, 390, 395, 397, 405, 411, 414, 416, 419, 426, 430, 449, 455, 456, 461, 462, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "connect_accepted_socket": [126, 130, 133, 472, 479, 483], "connect_ex": [84, 337, 462], "connect_read_pip": [126, 130, 131, 133, 137, 483], "connect_unix": 483, "connect_write_pip": [126, 130, 131, 133, 137, 483], "connectdb": 365, "connection_handl": [142, 340], "connection_lost": [130, 133, 483], "connection_mad": [126, 130, 133, 483], "connectionabortederror": [23, 212, 213, 450, 476], "connectionerror": [23, 213, 242, 443, 450, 476, 478], "connectionopt": 386, "connectionrefusederror": [23, 212, 213, 450, 476], "connectionreseterror": [23, 137, 212, 213, 242, 450, 476, 483], "connector": 435, "connectregistri": [142, 405], "connid": 102, "connor": [465, 477, 479, 483], "connstream": 341, "conout": 348, "conrad": [482, 483], "consectetur": 149, "consecut": [5, 22, 61, 64, 95, 158, 261, 275, 343, 344, 345, 347, 384, 428, 435, 455, 466, 477, 483], "consensus": 462, "consequ": [33, 42, 63, 73, 85, 161, 167, 191, 255, 283, 293, 314, 333, 337, 344, 352, 413, 428, 430, 434, 467, 469, 470, 474, 475, 476, 477, 478, 480, 483], "consequenti": 426, "conserv": [463, 466], "consid": [33, 34, 39, 42, 49, 55, 56, 63, 64, 72, 73, 75, 76, 85, 92, 93, 94, 95, 96, 99, 100, 102, 103, 106, 112, 120, 128, 144, 151, 163, 167, 176, 177, 181, 183, 184, 186, 190, 191, 193, 196, 204, 205, 208, 225, 226, 228, 230, 235, 243, 250, 252, 253, 255, 257, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 283, 288, 292, 297, 299, 308, 314, 319, 320, 328, 331, 333, 340, 341, 344, 345, 347, 348, 352, 355, 358, 362, 364, 365, 366, 369, 385, 386, 388, 394, 395, 399, 410, 411, 412, 420, 421, 427, 428, 429, 430, 432, 436, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 481, 482, 483], "consider": [68, 73, 85, 100, 101, 118, 164, 177, 181, 193, 223, 242, 248, 256, 271, 288, 305, 335, 340, 395, 410, 433, 462, 465, 466, 467, 469, 474, 476, 480, 483], "consist": [5, 7, 9, 23, 31, 33, 56, 63, 64, 66, 73, 85, 92, 94, 95, 102, 117, 141, 146, 151, 153, 158, 167, 177, 178, 183, 190, 191, 193, 196, 203, 205, 207, 208, 209, 228, 242, 243, 247, 248, 250, 252, 259, 262, 266, 268, 269, 270, 275, 283, 293, 299, 301, 308, 319, 325, 331, 335, 338, 340, 344, 346, 347, 348, 352, 353, 362, 364, 369, 375, 376, 381, 384, 386, 388, 395, 410, 425, 426, 427, 428, 430, 432, 435, 456, 461, 462, 463, 464, 465, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "consistut": 483, "consol": [33, 34, 66, 68, 85, 92, 101, 102, 176, 178, 180, 193, 201, 247, 268, 293, 297, 313, 320, 348, 352, 404, 455, 461, 464, 468, 475, 476, 480, 483], "console1": 102, "console2": 102, "console_prior": 475, "console_script": 251, "consolehandl": 101, "consolid": [96, 163, 284, 465, 476, 479, 483], "consortium": [109, 410], "conspicu": 426, "const": [4, 5, 7, 8, 9, 10, 11, 13, 14, 17, 18, 22, 23, 24, 25, 26, 30, 31, 33, 34, 39, 40, 41, 43, 45, 48, 49, 51, 52, 53, 54, 58, 59, 60, 61, 63, 64, 66, 68, 73, 75, 79, 98, 100, 118, 292, 411, 477, 480, 481, 483], "const_on": 35, "constant": [7, 25, 33, 45, 58, 63, 64, 68, 76, 78, 85, 92, 94, 102, 115, 118, 120, 122, 139, 158, 161, 164, 173, 176, 178, 183, 186, 191, 193, 211, 215, 225, 226, 235, 242, 244, 255, 261, 266, 267, 270, 273, 275, 281, 282, 283, 292, 293, 295, 298, 299, 304, 308, 319, 322, 326, 328, 329, 333, 337, 341, 342, 344, 352, 353, 356, 358, 359, 361, 362, 365, 369, 375, 377, 378, 382, 386, 387, 400, 404, 406, 410, 412, 413, 415, 419, 422, 428, 430, 435, 441, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "constant_factori": 160, "constant_nam": 314, "constantin": 483, "consti": 191, "constitu": [209, 251, 410], "constitut": [190, 259, 331, 394, 426, 483], "constprop": 104, "constrain": [66, 99, 122, 208, 386, 413, 427, 430, 432, 464, 467, 475, 481, 483], "constraint": [95, 122, 186, 191, 267, 293, 299, 307, 344, 386, 394, 427, 429, 431, 432, 467, 468, 470, 474, 483], "constru": 426, "construct": [23, 54, 58, 59, 61, 62, 66, 72, 73, 75, 85, 93, 94, 95, 99, 100, 101, 102, 103, 120, 133, 137, 139, 149, 158, 161, 169, 176, 183, 186, 189, 191, 193, 194, 197, 201, 203, 208, 209, 213, 216, 220, 221, 225, 234, 235, 243, 245, 250, 259, 261, 267, 268, 270, 281, 283, 292, 293, 299, 307, 308, 314, 319, 320, 331, 334, 335, 337, 340, 341, 344, 347, 365, 369, 381, 384, 386, 388, 394, 399, 411, 412, 413, 414, 419, 420, 422, 425, 427, 428, 429, 430, 435, 436, 451, 455, 461, 462, 463, 464, 466, 467, 469, 474, 475, 476, 478, 479, 480, 481, 482, 483], "constructor": [5, 23, 28, 53, 55, 63, 64, 68, 73, 79, 87, 93, 94, 95, 99, 101, 102, 112, 120, 122, 135, 149, 157, 158, 160, 161, 164, 167, 172, 175, 176, 181, 183, 186, 190, 193, 201, 202, 203, 206, 207, 208, 213, 218, 221, 225, 226, 234, 235, 237, 242, 243, 246, 248, 258, 259, 261, 262, 267, 268, 270, 271, 278, 283, 292, 299, 305, 307, 308, 316, 321, 325, 328, 330, 331, 335, 337, 338, 341, 344, 345, 351, 358, 359, 362, 364, 365, 369, 384, 385, 386, 388, 395, 403, 407, 413, 420, 422, 423, 425, 428, 430, 441, 443, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "constructor_ob": 172, "consult": [84, 85, 92, 95, 101, 106, 167, 176, 183, 230, 255, 267, 268, 271, 293, 295, 319, 322, 332, 335, 337, 340, 342, 352, 366, 432, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 482, 483], "consum": [7, 59, 63, 64, 68, 84, 85, 95, 96, 106, 120, 125, 127, 134, 136, 151, 158, 169, 191, 194, 207, 242, 261, 262, 283, 288, 292, 293, 296, 298, 308, 316, 319, 322, 330, 347, 352, 362, 365, 382, 386, 394, 413, 428, 431, 455, 462, 466, 467, 468, 469, 475, 476, 477, 479, 481, 483], "consumpt": [75, 255, 299, 322, 332, 352, 475, 476, 483], "cont": 193, "contact": [395, 407, 483], "contain": [5, 7, 9, 13, 18, 22, 23, 25, 28, 31, 33, 34, 41, 42, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 117, 118, 133, 139, 141, 144, 146, 149, 151, 152, 157, 158, 159, 161, 163, 167, 169, 170, 176, 177, 178, 181, 183, 184, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 225, 226, 230, 231, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 262, 266, 267, 268, 269, 270, 271, 272, 274, 276, 278, 279, 281, 283, 287, 288, 290, 291, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 311, 312, 313, 314, 319, 322, 324, 328, 330, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "contains_op": [191, 482, 483], "content": [5, 7, 9, 25, 33, 42, 45, 54, 58, 61, 64, 66, 68, 72, 84, 85, 92, 95, 101, 102, 106, 109, 110, 143, 149, 151, 153, 157, 158, 160, 163, 166, 175, 176, 177, 179, 184, 187, 191, 193, 194, 195, 196, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 215, 216, 223, 225, 226, 230, 234, 235, 240, 241, 242, 245, 247, 250, 251, 252, 253, 255, 258, 262, 268, 271, 273, 276, 278, 279, 281, 285, 293, 296, 299, 302, 307, 311, 319, 320, 332, 334, 337, 340, 341, 344, 347, 352, 354, 358, 360, 362, 364, 369, 378, 385, 393, 394, 395, 399, 407, 410, 411, 413, 415, 416, 417, 419, 420, 421, 422, 425, 426, 429, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "content_disposit": 203, "content_length": 483, "content_manag": [197, 205, 208, 477], "content_typ": [200, 203], "contentdispositionhead": 203, "contenthandl": [68, 273, 412, 414, 416, 417, 462], "contentmanag": [68, 194, 206, 285, 477, 483], "contenttooshorterror": [393, 395], "contenttransferencod": 203, "contenttransferencodinghead": 203, "contenttypehead": 203, "context": [11, 17, 23, 33, 42, 45, 49, 54, 64, 66, 68, 73, 78, 79, 85, 87, 95, 96, 100, 109, 120, 122, 123, 124, 126, 128, 129, 132, 139, 151, 152, 160, 164, 166, 167, 183, 184, 187, 190, 191, 213, 218, 223, 225, 230, 235, 242, 250, 251, 252, 254, 255, 262, 267, 268, 269, 270, 271, 278, 288, 290, 293, 295, 297, 298, 299, 305, 307, 308, 314, 315, 316, 319, 321, 322, 328, 329, 330, 335, 337, 338, 345, 348, 352, 358, 359, 360, 362, 365, 368, 375, 377, 386, 388, 390, 395, 399, 405, 410, 412, 413, 414, 415, 419, 422, 427, 429, 430, 435, 436, 456, 462, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "context_diff": 190, "context_expr": 122, "context_manag": 191, "context_use_ps1": 483, "contextbaseclass": 169, "contextdecor": [169, 475], "contextfilt": 102, "contextlib": [68, 78, 187, 254, 261, 315, 340, 344, 382, 469, 470, 471, 481, 483], "contextmanag": [169, 344, 386, 467, 468, 475, 479, 483], "contextu": [68, 190, 267], "contextvar": [17, 68, 87, 126, 129, 135, 139, 164, 186, 254, 456, 483], "conti": 469, "contig": [7, 255], "contig_ro": 255, "contigu": [2, 5, 43, 68, 87, 190, 248, 261, 271, 299, 344, 358, 415, 468, 476, 483], "conting": 255, "continu": [5, 23, 28, 35, 36, 59, 61, 68, 73, 78, 79, 85, 87, 93, 95, 100, 101, 109, 110, 115, 118, 122, 139, 155, 158, 169, 177, 193, 196, 199, 200, 202, 207, 211, 241, 242, 245, 248, 250, 251, 261, 267, 271, 282, 292, 293, 297, 314, 319, 332, 333, 337, 338, 341, 343, 344, 354, 358, 366, 377, 384, 388, 394, 395, 400, 415, 427, 428, 429, 430, 431, 432, 433, 434, 435, 443, 445, 452, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 480, 481, 483], "continuation_w": 202, "continue_loop": [481, 483], "continue_stmt": 436, "contort": 470, "contract": [42, 247, 344, 426], "contractu": 462, "contradictori": 292, "contrari": [7, 61, 190], "contrast": [64, 186, 226, 247, 308, 341, 344, 347, 369, 386, 412, 428, 429, 430, 432, 464, 476, 479, 480], "contravari": 386, "contravent": 196, "contrib": 369, "contribut": [181, 230, 235, 308, 319, 397, 426, 432, 462, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "contributor": [426, 470, 483], "contributori": 426, "contriv": [193, 483], "control": [7, 32, 33, 34, 42, 50, 58, 68, 73, 74, 75, 77, 79, 83, 84, 85, 92, 93, 94, 100, 101, 102, 106, 115, 120, 130, 132, 133, 137, 139, 144, 149, 151, 152, 155, 158, 163, 176, 177, 178, 183, 184, 186, 190, 191, 193, 194, 196, 197, 201, 202, 205, 207, 208, 213, 215, 218, 222, 223, 225, 229, 234, 245, 247, 248, 250, 255, 256, 258, 259, 262, 267, 268, 269, 271, 276, 281, 282, 283, 288, 292, 293, 295, 297, 298, 299, 305, 307, 308, 309, 311, 314, 321, 322, 328, 329, 331, 333, 337, 338, 341, 344, 346, 347, 348, 352, 353, 358, 361, 364, 365, 369, 374, 375, 376, 380, 381, 385, 388, 394, 395, 399, 400, 405, 406, 407, 413, 415, 417, 419, 420, 422, 426, 427, 428, 429, 430, 432, 434, 436, 438, 443, 448, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "control_next": 281, "controlcondit": 281, "controlev": 281, "controlflow": 483, "controlnam": 178, "controversi": [292, 464], "conttyp": 358, "conv": [431, 452, 478], "conv_token": 431, "conveni": [5, 7, 23, 28, 31, 33, 42, 45, 63, 68, 73, 75, 84, 85, 101, 102, 109, 110, 120, 124, 139, 146, 151, 157, 158, 167, 181, 183, 186, 189, 191, 195, 196, 201, 202, 203, 205, 206, 207, 208, 209, 226, 230, 234, 235, 243, 247, 251, 255, 256, 267, 268, 270, 271, 276, 283, 292, 295, 297, 299, 308, 326, 331, 335, 337, 344, 348, 355, 358, 361, 362, 364, 366, 369, 375, 384, 386, 388, 399, 403, 410, 413, 414, 416, 421, 427, 428, 432, 435, 436, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 477, 478, 479, 481, 483], "convent": [58, 61, 63, 73, 85, 92, 93, 100, 101, 102, 109, 167, 176, 177, 178, 181, 183, 209, 228, 230, 243, 246, 266, 271, 292, 293, 295, 345, 352, 362, 364, 366, 395, 399, 428, 430, 434, 435, 452, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 477, 478, 480, 483], "converg": 109, "convers": [5, 9, 18, 33, 34, 63, 64, 68, 72, 92, 93, 118, 120, 122, 133, 146, 158, 167, 183, 186, 195, 225, 254, 256, 258, 262, 266, 271, 276, 290, 292, 293, 299, 337, 341, 345, 347, 348, 352, 358, 378, 385, 394, 397, 426, 427, 431, 433, 435, 450, 455, 461, 467, 468, 469, 470, 471, 472, 475, 477, 478, 480, 481, 482, 483, 484], "conversionerror": [408, 483], "conversionsyntax": 468, "convert": [5, 7, 18, 25, 33, 39, 47, 55, 56, 58, 59, 64, 66, 68, 72, 73, 75, 76, 84, 92, 93, 94, 95, 100, 101, 102, 106, 112, 117, 120, 139, 141, 144, 146, 148, 155, 158, 160, 164, 167, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 209, 213, 215, 220, 225, 226, 230, 244, 248, 259, 261, 266, 267, 268, 269, 270, 271, 275, 276, 283, 292, 293, 298, 299, 301, 302, 307, 309, 319, 335, 337, 342, 344, 345, 347, 352, 358, 362, 366, 376, 378, 383, 388, 394, 398, 400, 405, 411, 413, 415, 419, 425, 427, 428, 430, 435, 436, 443, 446, 451, 455, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "convert_arg_line_to_arg": 120, "convert_charref": [240, 477, 478, 483], "convert_d": 340, "convert_datetim": 340, "convert_field": 345, "convert_point": 340, "convert_timestamp": 340, "convert_to_error": 483, "convertingtupl": 483, "convey": 413, "convinc": [101, 266], "convolut": 261, "convolv": 261, "conway": 483, "cook": [106, 177, 359, 483], "cookbook": [35, 68, 74, 85, 97, 101, 110, 268, 269, 275, 367, 454, 475, 483], "cooki": [68, 110, 115, 235, 241, 254, 256, 258, 341, 365, 378, 395, 466, 468, 469, 470, 478, 480, 483], "cookie2": 243, "cookie3": 243, "cookie_spec": 243, "cookieerror": 244, "cookiejar": [68, 241, 244, 254, 256, 395, 483], "cookielib": [68, 469, 470], "cookiepolici": [68, 256], "coomb": [474, 477, 481, 482], "cooper": [33, 87, 116, 139, 203, 225, 341, 352, 369, 426, 480, 483], "coord": [345, 474, 483], "coordin": [85, 92, 94, 102, 176, 177, 179, 183, 271, 275, 281, 340, 345, 366, 369, 376, 378, 384, 462, 468, 474, 478, 483], "cope": [466, 483], "copi": [5, 7, 9, 17, 25, 33, 34, 42, 43, 55, 58, 63, 64, 68, 73, 77, 80, 84, 85, 95, 100, 102, 112, 120, 133, 139, 151, 158, 160, 166, 167, 170, 172, 176, 177, 181, 182, 183, 186, 191, 193, 200, 201, 203, 208, 213, 215, 219, 225, 226, 230, 235, 237, 244, 247, 248, 254, 255, 258, 261, 267, 268, 269, 271, 276, 278, 283, 284, 292, 293, 297, 299, 301, 302, 309, 319, 330, 340, 344, 345, 347, 348, 352, 355, 358, 362, 372, 382, 384, 385, 388, 389, 390, 395, 399, 400, 415, 416, 421, 424, 426, 428, 440, 441, 442, 461, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "copied_list": 171, "coprim": [261, 344], "coprocessor": 333, "copy2": [84, 332, 475, 476, 478, 481, 483], "copy_ab": 186, "copy_call_arg": 390, "copy_context": 170, "copy_decim": 186, "copy_dict_without_key": 473, "copy_file_rang": [293, 483], "copy_free_var": [191, 473, 483], "copy_funct": [332, 475, 478, 483], "copy_loc": 122, "copy_neg": 186, "copy_nul": 64, "copy_reg": 470, "copy_sign": 186, "copy_str": 483, "copyabl": [399, 483], "copyfil": [84, 142, 332, 451, 469, 477, 481, 483], "copyfile2": 483, "copyfile_acl": 483, "copyfile_stat": 483, "copyfile_xattr": 483, "copyfileobj": [102, 110, 234, 332, 481, 483], "copyingmock": 390, "copyinstr": 98, "copymod": [142, 332, 483], "copyreg": [68, 171, 254, 279, 298, 299, 470, 483], "copyright": [33, 34, 69, 73, 86, 123, 168, 235, 247, 352, 413, 426, 448, 450, 455, 475, 481], "copyright_year_pattern": 481, "copysign": [275, 468, 483], "copystat": [142, 332, 476, 483], "copytre": [68, 84, 142, 219, 468, 469, 475, 481, 483], "corba": 410, "corchero": [472, 480, 483], "corderoy": 468, "core": [23, 28, 33, 34, 59, 68, 73, 96, 101, 106, 118, 163, 167, 205, 235, 250, 251, 261, 266, 269, 292, 293, 308, 313, 322, 333, 344, 362, 365, 369, 385, 399, 410, 413, 425, 428, 436, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 484], "coreconfig": 483, "coredump": [362, 483], "corner": [18, 63, 92, 177, 384, 464, 467, 468, 473, 483], "coro": [125, 126, 128, 135, 139, 478, 483], "coro_clos": 255, "coro_cr": 255, "coro_func": 125, "coro_run": 255, "coro_suspend": 255, "corollari": 470, "coroutin": [16, 26, 68, 87, 95, 123, 124, 125, 126, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 161, 169, 182, 186, 191, 213, 315, 344, 352, 353, 386, 388, 389, 430, 456, 467, 473, 474, 479, 480, 481, 482, 483], "coroutine_mock": 389, "coroutinetyp": [385, 478, 483], "corowrapp": [473, 483], "corp": 464, "corpor": [69, 426], "correct": [7, 25, 33, 45, 63, 64, 66, 71, 73, 76, 77, 85, 93, 94, 95, 96, 99, 100, 102, 103, 109, 110, 112, 117, 120, 133, 151, 158, 169, 176, 183, 186, 191, 193, 196, 197, 199, 203, 208, 209, 216, 225, 243, 247, 248, 259, 266, 275, 278, 283, 289, 292, 293, 295, 299, 314, 324, 331, 332, 337, 340, 341, 343, 344, 345, 347, 348, 352, 358, 362, 366, 369, 384, 386, 388, 405, 415, 421, 425, 426, 428, 430, 432, 435, 444, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "correct_rgba": 449, "correl": [250, 253, 343, 472, 474, 483], "correspond": [5, 9, 18, 22, 23, 31, 33, 45, 49, 56, 58, 61, 63, 64, 68, 71, 73, 75, 76, 79, 85, 92, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 115, 117, 120, 122, 128, 133, 137, 139, 146, 155, 158, 163, 167, 170, 176, 177, 178, 183, 184, 186, 189, 191, 193, 199, 208, 209, 212, 213, 218, 222, 225, 226, 230, 233, 235, 243, 245, 247, 248, 250, 251, 255, 259, 261, 262, 266, 267, 268, 269, 271, 283, 292, 293, 295, 307, 308, 314, 319, 329, 331, 332, 333, 334, 335, 337, 339, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 364, 365, 366, 369, 375, 376, 381, 386, 387, 388, 394, 397, 399, 403, 406, 410, 411, 415, 417, 419, 422, 423, 427, 428, 429, 430, 431, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "corrupt": [42, 59, 93, 109, 146, 177, 184, 212, 215, 243, 270, 271, 283, 299, 330, 340, 344, 358, 461, 480, 481, 483], "cos": [154, 186, 221, 275, 299, 451, 465, 481], "cosbuc": 483, "cosh": [154, 275], "cosin": [186, 275], "cost": [72, 85, 167, 183, 190, 226, 235, 243, 250, 293, 344, 367, 369, 381, 390, 422, 428, 462, 465, 468, 469, 473, 477, 483], "costa": 413, "coudert": 481, "could": [7, 22, 23, 27, 31, 33, 39, 42, 47, 56, 61, 63, 73, 76, 77, 85, 92, 93, 94, 95, 100, 101, 102, 103, 109, 110, 112, 120, 128, 129, 132, 133, 135, 138, 141, 151, 155, 167, 176, 177, 183, 193, 200, 201, 206, 208, 216, 225, 226, 228, 230, 245, 247, 255, 259, 261, 262, 267, 268, 269, 271, 283, 292, 293, 295, 296, 297, 299, 308, 311, 314, 319, 321, 329, 331, 333, 337, 340, 348, 352, 358, 362, 365, 369, 382, 386, 388, 394, 395, 397, 410, 422, 425, 428, 430, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "couldn": [73, 106, 110, 190, 293, 333, 340, 386, 423, 463, 464, 467, 469, 474, 479, 483], "council": [113, 483], "counsil": 473, "count": [5, 7, 9, 33, 34, 35, 45, 54, 58, 63, 64, 68, 74, 75, 76, 78, 80, 84, 85, 87, 89, 93, 94, 95, 96, 100, 102, 106, 120, 121, 126, 139, 144, 146, 148, 151, 160, 161, 176, 177, 190, 191, 193, 196, 208, 211, 218, 226, 236, 247, 248, 250, 255, 261, 267, 271, 278, 281, 283, 284, 288, 292, 293, 297, 299, 305, 308, 318, 319, 328, 331, 337, 340, 341, 344, 345, 347, 352, 362, 364, 365, 366, 369, 380, 382, 388, 395, 400, 413, 428, 430, 435, 436, 442, 446, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 481, 483], "count0": 227, "count1": 227, "count2": 227, "count_alloc": [469, 479, 482, 483], "count_diff": 382, "count_own": 96, "count_vowel": 226, "count_word": 386, "countcal": 380, "counter": [63, 68, 73, 76, 85, 87, 95, 182, 190, 191, 200, 236, 283, 292, 293, 343, 344, 365, 366, 386, 388, 430, 440, 464, 466, 467, 468, 469, 471, 475, 476, 481, 483], "counterclaim": 426, "counterclockwis": 384, "counterfil": 140, "counterintuit": 167, "counterpart": [73, 102, 177, 191, 225, 261, 267, 288, 337, 344, 361, 427, 469, 471, 473, 475, 480, 483], "countfunc": 380, "countless": 462, "countof": [291, 482, 483], "countri": [93, 243, 266, 341, 344, 413, 466], "country_data": 413, "country_data_as_str": 413, "countrydata": 413, "countrynam": 341, "counttestcas": 388, "coupl": [68, 75, 85, 102, 103, 120, 205, 208, 209, 267, 283, 292, 333, 368, 395, 461, 477, 479, 480, 483], "courier": [271, 369, 372, 483], "cournapeau": 469, "cours": [73, 76, 94, 95, 101, 102, 176, 186, 193, 200, 202, 207, 235, 267, 268, 283, 292, 331, 338, 341, 369, 384, 410, 419, 426, 428, 455, 462, 463, 465, 470, 475, 476, 477], "courtesi": 483, "cout": 85, "couzo": 483, "cov": 251, "covari": [343, 386, 472, 483], "cover": [76, 85, 92, 94, 100, 101, 102, 106, 109, 133, 169, 191, 193, 194, 208, 243, 268, 283, 292, 319, 335, 337, 344, 348, 369, 380, 384, 386, 388, 394, 410, 427, 434, 455, 462, 463, 464, 467, 470, 474, 476, 477, 483], "coverag": [33, 85, 352, 380, 470, 472, 474, 477, 483], "coverage_id": 353, "coverageresult": [380, 483], "coverdir": 380, "cow": 477, "cowl": 200, "cowlishaw": 466, "coyot": 243, "cp": [89, 93, 158, 292, 293, 469, 478], "cp037": 158, "cp1006": 158, "cp1026": 158, "cp1125": [158, 477], "cp1140": 158, "cp1250": [158, 167], "cp1251": 158, "cp1252": [87, 158, 448], "cp1253": 158, "cp1254": 158, "cp1255": 158, "cp1256": 158, "cp1257": 158, "cp1258": 158, "cp1361": 158, "cp154": 158, "cp273": [158, 477], "cp35": 483, "cp38": 483, "cp424": 158, "cp437": [158, 422], "cp500": 158, "cp65001": [158, 476, 483], "cp720": [158, 469, 475], "cp737": 158, "cp775": 158, "cp819": 158, "cp850": 158, "cp852": 158, "cp855": 158, "cp856": 158, "cp857": 158, "cp858": [158, 469], "cp860": 158, "cp861": 158, "cp862": 158, "cp863": 158, "cp864": 158, "cp865": 158, "cp866": 158, "cp866u": 158, "cp869": 158, "cp874": 158, "cp875": 158, "cp932": [158, 466], "cp936": 158, "cp949": [158, 466], "cp950": [158, 466], "cp_acp": [64, 158, 476, 479], "cp_oemcp": [158, 479], "cp_utf7": 483, "cp_utf8": [476, 483], "cpanel": 110, "cpathnam": 31, "cpickl": [465, 467, 469, 470], "cplx": 468, "cpp": [465, 483], "cppflag": [456, 465, 483], "cprofil": [68, 156, 185, 467, 483], "cpu": [33, 84, 104, 107, 109, 122, 125, 126, 130, 139, 158, 164, 166, 235, 236, 262, 270, 293, 322, 337, 344, 358, 366, 367, 382, 409, 456, 459, 465, 472, 474, 476, 480, 481, 482, 483], "cpu_bound": 126, "cpu_count": [163, 166, 283, 293, 472, 477, 483], "cpus": [283, 293, 347, 477, 478, 483], "cpy_trashcan_begin": 473, "cpy_trashcan_end": 473, "cpython": [1, 4, 10, 13, 33, 35, 54, 57, 59, 63, 68, 71, 73, 75, 76, 80, 85, 87, 89, 97, 100, 142, 158, 161, 186, 188, 191, 210, 213, 214, 225, 235, 237, 250, 255, 257, 275, 283, 293, 296, 303, 311, 314, 316, 320, 324, 332, 344, 348, 352, 353, 362, 365, 379, 385, 402, 407, 413, 425, 427, 428, 429, 430, 431, 434, 436, 450, 455, 456, 460, 461, 463, 464, 465, 467, 468, 469, 475, 476, 478, 483, 484], "cpython_autoconf": 483, "cpython_on": [362, 483], "cr": [177, 178, 208, 435, 480, 483], "cr_await": [255, 483], "cr_code": 255, "cr_frame": [255, 483], "cr_origin": [255, 352, 483], "cr_run": 255, "crabgrass": 442, "crack": [173, 190], "craft": [201, 299, 432, 475, 483], "craig": [465, 483], "cram": [248, 335], "crash": [13, 33, 43, 57, 63, 73, 75, 96, 100, 140, 151, 176, 184, 188, 214, 247, 250, 271, 283, 292, 297, 299, 330, 352, 362, 456, 462, 467, 468, 474, 476, 477, 479, 483], "crasher": 96, "crawl": [396, 479, 483], "crawl_delay": [396, 483], "crc": [146, 422, 424, 483], "crc32": [146, 235, 424, 451, 452, 483], "crc_hqx": [146, 473, 483], "creat": [5, 7, 9, 11, 13, 16, 17, 22, 23, 24, 25, 27, 28, 31, 34, 39, 42, 43, 45, 49, 51, 55, 58, 59, 60, 63, 66, 67, 68, 73, 75, 76, 77, 88, 92, 93, 96, 100, 101, 103, 106, 107, 108, 109, 110, 115, 117, 120, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 144, 149, 151, 153, 157, 158, 160, 161, 163, 167, 169, 170, 174, 176, 177, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 199, 200, 201, 202, 203, 205, 206, 207, 208, 213, 215, 218, 221, 225, 226, 230, 234, 236, 241, 242, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 278, 281, 282, 283, 284, 288, 293, 297, 298, 299, 302, 305, 307, 308, 312, 314, 319, 322, 323, 328, 330, 332, 334, 335, 337, 338, 341, 342, 343, 344, 347, 348, 352, 354, 358, 360, 362, 364, 365, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 395, 397, 399, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 420, 422, 423, 425, 426, 427, 429, 430, 432, 434, 435, 436, 440, 441, 442, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "create_": 474, "create_accepted_socket": 480, "create_aggreg": [340, 483], "create_arch": [421, 480, 483], "create_autospec": [68, 187, 483], "create_breakaway_from_job": 348, "create_builtin": 483, "create_cal": 390, "create_col": [340, 473, 483], "create_configur": 399, "create_connect": [126, 128, 130, 133, 136, 337, 341, 468, 469, 473, 475, 478, 480, 481, 483], "create_datagram_endpoint": [126, 130, 133, 473, 479, 480, 481, 482, 483], "create_decim": [186, 468, 476], "create_decimal_from_float": 186, "create_default_context": [126, 341, 395, 469, 477, 483], "create_default_error_mod": 348, "create_dynam": 483, "create_eager_task_factori": [139, 474], "create_empty_fil": 362, "create_font_tab": 483, "create_funct": [340, 483], "create_futur": [126, 128, 129, 130, 133, 478, 479, 483], "create_lin": 462, "create_method": 283, "create_model": [386, 473], "create_modul": [45, 250, 423, 432, 472, 478, 479, 483], "create_new_consol": 348, "create_new_process_group": [137, 348], "create_no_window": 348, "create_pars": [414, 416], "create_patch": 390, "create_polygon": 462, "create_serv": [126, 130, 133, 136, 337, 478, 479, 480, 481, 483], "create_stat": 308, "create_string_buff": [142, 176, 467], "create_subprocess_exec": [124, 126, 132, 137, 348, 481, 483], "create_subprocess_shel": [124, 126, 137, 481, 483], "create_system": 422, "create_task": [124, 125, 126, 128, 129, 130, 134, 138, 139, 473, 478, 480, 481, 483], "create_unicode_buff": [142, 176, 483], "create_unix_connect": [126, 130, 131, 133, 136, 483], "create_unix_serv": [126, 130, 131, 133, 136, 480, 483], "create_vers": 422, "create_window_funct": [340, 473, 483], "createattribut": 410, "createattributen": 410, "createcom": 410, "createconfighandl": 483, "createconnect": 388, "createdocu": [410, 411], "createdocumenttyp": 410, "createel": 410, "createelementn": 410, "createexpensiveconnectionobject": 388, "createfil": 142, "createfilehandl": [369, 483], "createjunct": 142, "createkey": [142, 405], "createkeyex": [405, 469], "createlock": [267, 269], "createnamedpip": [142, 483], "createpip": 142, "createprocess": [142, 348, 483], "createprocessinginstruct": 410, "createprocessw": 483, "createrecord": 281, "createsocket": [269, 473, 483], "createtextnod": [410, 411], "creation": [13, 16, 27, 33, 58, 59, 63, 68, 73, 76, 85, 93, 94, 95, 101, 102, 103, 118, 120, 133, 135, 137, 139, 149, 181, 182, 186, 197, 211, 225, 226, 230, 248, 250, 255, 256, 258, 267, 270, 271, 281, 283, 288, 292, 305, 311, 321, 322, 331, 332, 335, 342, 344, 348, 358, 362, 369, 375, 399, 410, 413, 421, 426, 427, 429, 432, 459, 465, 474, 476, 477, 478, 480, 482, 483], "creation_disposit": 142, "creationflag": [137, 348, 466], "creativ": [84, 235, 336], "creativecommon": 235, "creator": [102, 283, 293, 332, 411, 422, 423, 428, 434, 483], "creatur": 94, "creaturedatamixin": 94, "credenti": [269, 288, 337, 395, 461, 478, 483], "credit": [68, 86, 123, 168, 174, 247, 261, 352, 427, 448, 450, 481, 483], "crew": [464, 465, 467], "crimson": 211, "cristi": 474, "crit": 269, "criteria": [101, 248, 267, 308], "criterion": [248, 299, 428, 462], "critic": [39, 75, 87, 101, 102, 191, 250, 267, 268, 269, 292, 406, 432, 451, 452, 465, 467, 468, 471, 473, 475, 478, 483], "crl": [341, 477, 483], "crl3": 341, "crl4": 341, "crldistributionpoint": [341, 477], "crle": 483, "crlf": [64, 223, 244, 245, 480, 483], "crls": [341, 477], "crncystr": 266, "cro": 106, "crochemor": 472, "crompton": [479, 483], "cron": 269, "crop": 362, "cross": [68, 72, 76, 102, 141, 183, 212, 244, 247, 293, 299, 337, 358, 410, 425, 426, 435, 458, 459, 462, 463, 464, 465, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "crossov": 177, "crow": 106, "crt": [42, 68, 282, 341, 469, 477, 483], "crt_assembly_vers": [282, 469], "crtassem": [282, 469], "crucial": [358, 432, 462], "crude": 177, "cruft": 470, "crumb": 193, "crunch": 463, "crutch": 470, "cruz": 483, "crw": [348, 478], "crypt": [68, 174, 254, 310, 350, 426, 473, 474, 479, 483], "crypt_r": 483, "cryptedpasswd": 173, "cryptgenrandom": [293, 473, 483], "cryptic": [151, 483], "crypto": [479, 483], "crypto_auth": 426, "crypto_memcmp": [237, 483], "cryptoapi": 466, "cryptograph": [33, 235, 293, 413, 479], "cryptographi": [235, 337], "cryptographic_hash_funct": 235, "cs": [464, 465], "cs_gnu_libc_vers": 483, "cs_path": 483, "csbig5": 158, "csd": 303, "cserna": [469, 483], "csh": [399, 453, 477], "cshrc": [294, 459], "csi": 212, "csibm273": 158, "csiphash": 426, "csiso2022jp": 158, "csiso2022kr": 158, "csiso58gb231280": 158, "csprng": [341, 483], "csptcp154": 158, "csrc": 235, "csrf": 244, "css": [1, 150, 240, 475, 480, 483], "cssclass": 150, "cssclass_month": 150, "cssclass_month_head": 150, "cssclass_noday": 150, "cssclass_year": 150, "cssclass_year_head": 150, "cssclasses_weekday_head": 150, "csshiftji": 158, "cst": 183, "cstringio": [96, 468, 470], "csv": [68, 100, 160, 217, 254, 362, 451, 465, 467, 471, 479, 483], "csvfile": 175, "csvreader": 175, "csvwriter": 175, "ct": [106, 107], "ct_co": 386, "ctag": 483, "cte": [196, 197, 198, 203, 205, 208, 340, 483], "cte_typ": [201, 203, 208, 476], "ctermid": 293, "ctes": 483, "ctime": [72, 183, 293, 294, 342, 366, 465], "ctname": 102, "ctrl": [23, 86, 92, 102, 126, 135, 168, 178, 283, 297, 333, 338, 340, 441, 455, 462, 467, 475, 481, 483], "ctrl_": 333, "ctrl_break_ev": [137, 293, 333, 348, 469], "ctrl_c_event": [137, 293, 333, 348, 469], "ctx": [17, 23, 42, 102, 122, 170, 186, 283, 341, 468], "ctx_appnam": 102, "ctx_request": 102, "ctxmanag": 472, "ctxmanager1": 472, "ctxmanager2": 472, "ctxmanager3": 472, "ctype": [33, 68, 73, 96, 118, 142, 164, 196, 200, 205, 214, 254, 266, 293, 302, 344, 352, 386, 469, 474, 476, 479, 483], "ctypes_configur": 89, "ctypes_max_argcount": 483, "ctypes_pass_by_ref_hack": 483, "ctypes_unicod": 483, "cube": [275, 343, 449, 483], "cubic": 190, "cucci": 479, "cud": 177, "cud1": 177, "cufr": 483, "cull": 308, "culler": 483, "culprit": 102, "cultur": [106, 230, 266, 319], "cum_weight": 318, "cumbersom": [72, 100, 103, 186, 369], "cumtim": [308, 483], "cumul": [95, 218, 226, 275, 308, 343, 380, 382, 455, 467, 475, 477, 478, 483], "cunha": 472, "cuni": 475, "cup": 177, "cur": [109, 271, 281, 340, 345, 387, 430, 435, 468, 469, 479, 483], "cur_thread": 338, "curabitur": 149, "curdir": [189, 216, 293, 294, 332, 369], "curious": [93, 151, 483], "curl": [243, 460, 461, 483], "curr": 186, "curr_group": 261, "curr_key": 261, "curr_valu": 261, "currenc": [186, 266, 467, 483], "currency_symbol": [266, 452], "current": [5, 7, 11, 13, 17, 23, 26, 27, 28, 31, 33, 34, 39, 41, 42, 43, 45, 49, 53, 59, 61, 63, 64, 66, 68, 73, 75, 76, 79, 84, 89, 92, 95, 96, 99, 100, 101, 102, 106, 109, 110, 115, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 144, 151, 152, 153, 155, 158, 160, 163, 167, 169, 170, 173, 176, 177, 179, 183, 185, 186, 189, 191, 193, 196, 197, 200, 202, 203, 205, 208, 209, 212, 213, 214, 215, 218, 220, 222, 225, 230, 234, 235, 242, 244, 245, 247, 248, 250, 258, 259, 261, 266, 267, 269, 271, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 307, 308, 309, 311, 313, 314, 315, 319, 320, 322, 323, 324, 325, 329, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 353, 354, 355, 356, 358, 362, 364, 365, 366, 369, 375, 376, 380, 381, 384, 386, 388, 394, 395, 398, 399, 400, 405, 406, 408, 410, 411, 412, 413, 415, 416, 419, 422, 427, 428, 429, 430, 431, 432, 435, 436, 451, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "current_directori": 142, "current_limit": 344, "current_offset": [191, 477], "current_process": [102, 283], "current_stack": 483, "current_task": [124, 128, 139, 474, 480, 482, 483], "current_temperatur": 85, "current_thread": [84, 283, 338, 365, 472, 483], "currentbyteindex": 314, "currentcolumnnumb": 314, "currentcontrolset": 461, "currentfram": [255, 473], "currentlinenumb": 314, "currentthem": 483, "currentthread": [102, 190, 365, 472, 483], "currenttim": 420, "currentus": 399, "curri": 95, "currsiz": [226, 475], "curs": [68, 97, 118, 254, 462, 463, 466, 468, 483], "curs_set": [92, 177], "cursor": [68, 92, 155, 160, 175, 177, 247, 298, 299, 320, 369, 375, 376, 390, 467, 468, 471, 475, 479, 481, 482, 483], "cursorfont": 369, "cursus": 149, "cursyncup": 177, "curti": 483, "curtin": [469, 475, 476, 477, 480], "curv": [341, 384, 476, 483], "curve_nam": 341, "custom": [32, 33, 34, 59, 63, 68, 71, 73, 76, 79, 85, 96, 100, 110, 115, 118, 119, 126, 135, 139, 155, 158, 161, 164, 181, 183, 185, 189, 193, 203, 207, 208, 217, 225, 242, 245, 247, 250, 251, 255, 256, 258, 262, 267, 269, 271, 280, 292, 298, 320, 323, 332, 333, 334, 341, 344, 345, 352, 354, 358, 362, 365, 369, 376, 386, 388, 395, 399, 400, 410, 412, 413, 419, 425, 427, 430, 432, 436, 456, 458, 460, 462, 465, 466, 467, 468, 469, 470, 474, 475, 476, 478, 481, 482, 483], "custom2": 76, "custom3": 76, "custom4": 76, "custom_attribut": [102, 267], "custom_clear": 76, "custom_dealloc": 76, "custom_getfirst": 76, "custom_getlast": 76, "custom_getsett": 76, "custom_init": 76, "custom_memb": 76, "custom_method": 76, "custom_nam": 76, "custom_new": 76, "custom_setfirst": 76, "custom_setlast": 76, "custom_task_constructor": 139, "custom_travers": 76, "customadapt": 102, "customari": [186, 364, 426, 455], "customermodel": [386, 473], "customfield": 268, "customformatterfactori": 268, "customhtmlc": 150, "customis": [268, 384], "customiz": [183, 369, 469, 483], "customize_compil": 483, "customlisten": 268, "custommodul": 76, "customobject": 76, "customtyp": 76, "cut": [106, 154, 225, 247, 343, 366, 466, 468, 483], "cuthbert": [481, 483], "cutoff": [190, 483], "cuu": 177, "cuu1": 177, "cv": [365, 384], "cve": [33, 344, 409, 468, 469, 472, 473, 474, 480, 481, 482, 483], "cves": 483, "cvs": [293, 462, 463, 464, 465, 466, 467, 483], "cwd": [96, 142, 223, 293, 296, 348, 362, 399, 466, 481, 483], "cwe": [474, 483], "cwi": [68, 80, 240, 337, 394], "cx": [95, 261, 465], "cx_freez": [68, 85, 283, 458], "cxx": [79, 355, 456, 483], "cy": 261, "cyan": [92, 94, 177, 452], "cycl": [23, 28, 61, 63, 68, 73, 76, 78, 80, 85, 87, 95, 100, 102, 139, 227, 232, 247, 255, 261, 352, 362, 365, 376, 402, 427, 428, 436, 463, 465, 467, 468, 469, 475, 477, 481, 482, 483, 484], "cycleerror": 232, "cyclic": [28, 45, 63, 68, 74, 85, 87, 270, 292, 411, 424, 428, 475, 477, 483], "cygwin": [293, 352, 360, 461, 463, 465, 481, 483], "cynthia": 384, "cypher": 158, "cyril": 158, "cyrus": [248, 483], "cython": [74, 78, 79, 85, 91, 477, 483], "cython_coroutin": 483, "czech": 340, "czotter": 308, "d00": 483, "d1": [84, 469, 482], "d2": [84, 469, 482], "d24f26cf8de66472d58d4e1b1774b4c9158b1f4c": 235, "d25if65hy903weo": 248, "d2i_ssl_sess": 483, "d380000000000p": 344, "d48eceb": 86, "d800": 158, "d_": 269, "d_file_offset_bit": 306, "d_first_inn": 283, "d_fmt": 266, "d_largefile64_sourc": 306, "d_reentrant": 483, "d_t_fmt": 266, "d_type": 293, "da": [186, 261, 319], "dac": 483, "dad": 465, "daemen": 479, "daemon": [33, 101, 102, 269, 283, 316, 335, 337, 338, 365, 366, 402, 465, 468, 472, 476, 480, 482, 483], "daemon_thread": 338, "daft": 102, "daili": [95, 464, 483], "daisi": 441, "dalcrin": 471, "dale": [465, 476], "dalk": [108, 426, 464, 465, 467], "dam": 473, "damag": [31, 299, 358, 386, 426], "damien": [468, 477], "dan": [426, 466, 467, 475, 476, 477, 478, 482, 483], "danc": [384, 442], "danger": [31, 59, 61, 85, 283, 292, 293, 296, 341, 358, 434, 463, 466, 467, 472, 473, 474, 481, 482, 483], "dangl": [33, 63, 73, 77, 87, 293, 332, 344, 362, 427, 483], "daniel": [235, 465, 468, 469, 472, 473, 475, 477, 478, 479, 483], "danish": 158, "daod": 475, "dare": 337, "dark": [464, 483], "darken": 483, "darl": 483, "darren": 476, "dart": 384, "dartiailh": 483, "darwin": [33, 303, 352, 366, 462, 468, 478, 483], "das": [478, 479, 483], "dash": [151, 158, 177, 196, 205, 319, 331], "dashrepl": 319, "dat": [120, 184, 461], "data": [5, 7, 9, 13, 28, 33, 41, 42, 49, 54, 55, 56, 58, 60, 63, 64, 68, 72, 73, 74, 75, 77, 79, 84, 92, 93, 98, 100, 102, 104, 106, 108, 115, 117, 118, 119, 120, 121, 122, 126, 133, 134, 136, 137, 141, 142, 143, 144, 146, 147, 149, 151, 153, 157, 158, 160, 164, 166, 167, 169, 177, 178, 179, 182, 183, 184, 186, 190, 191, 195, 196, 197, 201, 203, 206, 207, 208, 212, 213, 215, 223, 225, 226, 230, 234, 235, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 258, 261, 262, 266, 267, 269, 271, 272, 273, 274, 276, 278, 281, 283, 284, 288, 290, 292, 293, 295, 296, 302, 304, 307, 308, 309, 314, 315, 316, 318, 319, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 355, 358, 359, 360, 361, 362, 366, 368, 375, 376, 379, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 401, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 426, 428, 430, 432, 439, 440, 443, 445, 451, 456, 458, 462, 463, 464, 465, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "data1": [242, 390], "data2": [242, 390], "data_dict": 390, "data_encod": 158, "data_filt": [358, 483], "data_in": 270, "data_open": 395, "data_out": 270, "data_receiv": [130, 133, 483], "data_struct": 468, "data_to_send": 102, "databas": [64, 68, 72, 84, 93, 106, 109, 142, 158, 177, 181, 183, 209, 225, 233, 243, 254, 266, 276, 298, 299, 308, 330, 339, 340, 344, 346, 365, 366, 369, 375, 376, 387, 395, 425, 432, 435, 443, 463, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "databaseconnect": [467, 468], "databaseerror": 340, "databaseprogram": 84, "databasetyp": 181, "dataclass": [68, 108, 160, 211, 236, 254, 307, 308, 315, 316, 340, 344, 386, 440, 441, 483], "dataclass_transform": [386, 473, 474, 483], "dataerror": [340, 483], "datafil": [366, 465], "datagram": [68, 130, 269, 338, 341, 452, 473, 483], "datagram_receiv": [130, 133], "datagramhandl": [68, 101, 118, 268, 477], "datagramprotocol": [133, 473], "datagramrequesthandl": 338, "datagramtransport": [133, 483], "datahandl": [68, 110, 256, 477], "datalen": 269, "datapath": 120, "dataset": [93, 167, 226, 466, 481, 483], "datasourc": 411, "datastack": 483, "datastream": 87, "datatrack": 126, "datatyp": [68, 75, 85, 176, 186, 217, 262, 299, 466, 468, 469, 471, 475, 484], "date": [20, 33, 68, 72, 85, 94, 102, 126, 133, 137, 139, 150, 163, 182, 193, 199, 203, 208, 209, 211, 243, 245, 266, 267, 269, 271, 288, 291, 293, 299, 311, 339, 340, 341, 344, 358, 366, 369, 379, 386, 390, 419, 420, 422, 423, 426, 432, 435, 451, 452, 461, 462, 466, 467, 468, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "date1": 183, "date2": 183, "date_str": 183, "date_tim": [248, 422], "date_time_str": 245, "datefmt": [101, 102, 267, 268], "datehead": 203, "dateprotocol": 133, "datestr": 248, "datetim": [16, 68, 85, 94, 102, 126, 133, 137, 139, 150, 182, 190, 203, 209, 211, 248, 254, 269, 288, 299, 304, 340, 341, 345, 366, 379, 385, 390, 419, 420, 425, 435, 451, 465, 466, 467, 468, 469, 472, 474, 478, 483], "datetime1": 183, "datetime2": 183, "datetyp": 183, "dateutil": [85, 183, 483], "datum": 261, "dave": [93, 108, 465, 466, 469, 475, 483], "davi": [478, 479, 483], "david": [93, 95, 96, 98, 103, 109, 230, 426, 461, 462, 463, 464, 465, 466, 468, 469, 471, 473, 475, 476, 477, 478, 479, 481, 483], "davin": [479, 481, 483], "dawan": 480, "day": [20, 73, 84, 85, 94, 106, 150, 167, 183, 226, 244, 262, 266, 269, 275, 288, 293, 339, 341, 343, 366, 385, 422, 425, 432, 435, 451, 462, 465, 467, 468, 469, 474, 477, 479, 481, 482, 483], "day_": 94, "day_0": 94, "day_1": [94, 266], "day_2": 266, "day_3": 266, "day_365": 94, "day_366": 94, "day_4": 266, "day_5": 266, "day_6": 266, "day_7": 266, "day_abbr": 150, "day_nam": 150, "daylight": [183, 209, 366, 425, 482], "days_to_go": 183, "db": [20, 68, 93, 175, 184, 225, 254, 261, 281, 298, 330, 451, 456, 467, 468, 470, 473, 483], "db00": 259, "db2pickl": 465, "db77e160355": [398, 467], "db8": [99, 259], "db_connect": [467, 468], "db_transact": [467, 468], "dbcs": [64, 158], "dbfilenameshelf": [330, 344], "dbg": 96, "dbhash": 470, "dbl_dig": 352, "dbl_epsilon": 352, "dbl_mant_dig": 352, "dbl_max": [25, 352], "dbl_max_10_exp": 352, "dbl_max_exp": 352, "dbl_min": [25, 352], "dbl_min_10_exp": 352, "dbl_min_exp": 352, "dbm": [68, 84, 254, 298, 299, 330, 428, 456, 469, 470, 481, 483], "dbmlibord": [456, 469], "dbpickler": 299, "dbshelv": 468, "dbunpickl": 299, "dc": [95, 261, 293, 413, 467], "dc1": 178, "dc2": 178, "dc3": 178, "dc4": 178, "dc80": [59, 109, 158, 225], "dcab": 446, "dcba": 465, "dcff": [59, 109, 158, 225], "dcgettext": [230, 266], "dcmp": 216, "dct": 262, "dd": [183, 248, 261, 292], "ddir": [163, 483], "ddl": [340, 479, 483], "ddthh": 183, "de": [7, 12, 23, 28, 41, 68, 74, 80, 103, 119, 177, 230, 243, 252, 261, 288, 299, 344, 358, 386, 394, 419, 472, 473, 474, 477, 479, 480, 482, 483], "de_d": [183, 266, 478], "deactiv": [17, 352, 369, 399, 428, 453, 461, 474, 483], "deactivate_stack_trampolin": [104, 352, 474, 483], "dead": [307, 402, 440, 441, 456, 465, 470, 475, 483], "deaddyt": 483, "deadlin": [139, 325], "deadlock": [33, 96, 137, 166, 212, 214, 267, 283, 293, 316, 338, 348, 352, 365, 428, 468, 475, 476, 483], "deaf": [338, 475], "deal": [42, 63, 64, 68, 72, 106, 109, 120, 125, 157, 158, 194, 196, 197, 205, 225, 258, 266, 282, 283, 292, 299, 318, 325, 337, 366, 384, 394, 413, 426, 431, 462, 464, 465, 466, 467, 470, 476, 478, 483], "deal_with_cli": 341, "dealloc": [9, 13, 22, 28, 33, 35, 42, 45, 52, 63, 64, 73, 75, 76, 87, 100, 362, 402, 436, 456, 463, 464, 469, 473, 475, 481, 483], "dealt": [75, 157, 292], "dean": 483, "death": [333, 476], "deb": 466, "debian": [79, 223, 460, 462, 463, 480, 483], "debnath": [480, 483], "debug": [17, 32, 33, 34, 49, 63, 66, 68, 75, 76, 92, 97, 101, 102, 125, 135, 144, 152, 170, 176, 186, 187, 188, 191, 196, 204, 205, 211, 213, 242, 248, 267, 268, 269, 279, 288, 292, 293, 297, 301, 305, 319, 331, 335, 340, 341, 344, 352, 358, 359, 362, 368, 369, 375, 382, 386, 388, 400, 413, 419, 422, 428, 429, 435, 436, 446, 452, 455, 457, 458, 461, 462, 463, 464, 465, 467, 468, 471, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483], "debug_bytecode_suffix": 250, "debug_collect": 227, "debug_expr": 431, "debug_fp": 102, "debug_leak": 227, "debug_overrid": [250, 478], "debug_saveal": 227, "debug_src": 193, "debug_stat": 227, "debug_uncollect": [227, 475], "debugg": [13, 32, 42, 68, 73, 96, 144, 185, 193, 213, 214, 247, 254, 321, 352, 353, 381, 388, 428, 440, 456, 461, 464, 465, 467, 468, 469, 474, 475, 479, 480, 481, 483], "debugger_id": 353, "debuginfo": 96, "debuginfod": 96, "debuglevel": [242, 335, 359, 395, 478, 483], "debugrunn": 193, "dec": [85, 86, 95, 183, 221, 223, 451, 464, 465, 483], "decad": 483, "decatur": 95, "decemb": [150, 183, 435, 451, 464, 465, 470, 479], "decept": [293, 465], "decid": [28, 34, 76, 85, 95, 101, 132, 139, 144, 157, 169, 183, 193, 243, 269, 337, 338, 352, 365, 386, 428, 432, 436, 467, 469, 474, 483], "decil": [343, 481], "decim": [39, 59, 64, 68, 78, 85, 106, 109, 158, 167, 178, 183, 221, 225, 226, 254, 259, 262, 266, 268, 290, 292, 308, 319, 343, 344, 345, 352, 365, 366, 378, 379, 387, 388, 419, 426, 428, 430, 435, 444, 445, 449, 455, 456, 462, 467, 468, 469, 471, 472, 473, 481, 482, 483, 484], "decimal_point": [266, 344, 483], "decimalexcept": 186, "decimaltupl": 186, "decinteg": 435, "decis": [27, 102, 157, 255, 352, 376, 427, 436, 462, 466, 467, 469, 475, 476, 483], "decistmt": 378, "deck": [160, 318], "decl": 240, "declar": [5, 33, 35, 58, 63, 68, 73, 75, 76, 78, 84, 85, 95, 102, 109, 128, 139, 167, 169, 170, 176, 225, 226, 240, 250, 255, 268, 292, 299, 314, 331, 338, 340, 344, 386, 388, 403, 410, 411, 413, 415, 416, 425, 427, 428, 429, 430, 431, 436, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "declassifi": 106, "declhandl": 415, "declin": 477, "deco": 466, "decod": [23, 33, 34, 59, 64, 66, 68, 72, 73, 87, 102, 109, 121, 126, 133, 136, 137, 141, 143, 145, 146, 176, 188, 196, 197, 199, 200, 201, 202, 203, 204, 206, 208, 209, 213, 225, 235, 244, 250, 258, 270, 285, 288, 293, 299, 304, 317, 337, 340, 341, 344, 347, 348, 352, 358, 359, 362, 377, 378, 394, 395, 397, 399, 419, 422, 428, 432, 435, 451, 462, 464, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 482, 483], "decode_data": [478, 479, 483], "decode_func": 462, "decode_head": [202, 288, 476], "decode_param": 209, "decode_rfc2231": 209, "decode_sourc": [250, 477], "decodebyt": [143, 158, 482, 483], "decoded_seq": 202, "decoded_str": 202, "decodedgener": [201, 479, 483], "decodestr": [317, 482, 483], "decompos": [5, 95, 387, 394, 483], "decomposit": [102, 387, 483], "decompress": [68, 119, 149, 158, 218, 234, 409, 424, 451, 467, 475, 476, 478, 479, 483], "decompressobj": 424, "decompressor": [149, 270, 483], "decompressread": [472, 483], "deconfigur": 101, "deconstruct": 5, "decor": [68, 87, 93, 94, 102, 161, 176, 181, 225, 226, 255, 315, 321, 344, 362, 386, 388, 389, 420, 427, 428, 429, 430, 431, 467, 469, 470, 473, 475, 476, 477, 480, 481, 482, 483, 484], "decorated_foo": 102, "decorator1": 122, "decorator2": 122, "decorator_list": 122, "decoupl": [452, 478, 480], "decreas": [7, 138, 183, 191, 259, 366, 428, 462, 466, 469, 476, 479, 481, 483], "decref": [63, 64, 483], "decrement": [5, 7, 9, 63, 73, 76, 85, 100, 139, 191, 283, 293, 297, 333, 365, 376, 428, 483], "decrypt": [268, 341, 422], "dedent": [120, 247, 364, 377, 378, 427, 431, 435, 483], "dedic": [33, 68, 102, 167, 193, 235, 341, 344, 362, 386, 483], "deduc": [63, 193, 283, 308, 354, 461, 475], "dedupl": 483, "deed": 106, "deem": [59, 207, 230, 269, 344, 426, 462, 463, 467, 469, 474, 475, 476, 477, 483], "deep": [68, 102, 182, 250, 254, 299, 307, 331, 352, 358, 410, 483], "deepchainmap": 160, "deepcopi": [85, 160, 171, 181, 319, 390, 424, 469, 474, 479, 480, 483], "deeper": [93, 110, 167, 183, 193, 307, 352], "deepfreez": 483, "deepli": [101, 362, 435, 462, 468, 483], "def": [7, 17, 22, 35, 45, 61, 66, 68, 71, 72, 73, 76, 79, 84, 85, 87, 88, 92, 93, 94, 95, 100, 102, 103, 104, 106, 107, 108, 109, 112, 114, 116, 120, 122, 123, 125, 126, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 148, 149, 155, 160, 161, 166, 169, 170, 172, 173, 176, 181, 183, 186, 188, 190, 191, 193, 200, 203, 211, 213, 216, 225, 226, 227, 228, 230, 232, 235, 236, 240, 243, 245, 247, 250, 251, 255, 258, 259, 261, 262, 267, 268, 275, 283, 289, 291, 292, 296, 297, 299, 303, 309, 312, 314, 316, 318, 319, 320, 321, 325, 329, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 351, 352, 358, 361, 362, 364, 365, 367, 369, 378, 381, 382, 384, 385, 386, 388, 389, 390, 399, 400, 402, 407, 411, 413, 419, 420, 422, 427, 428, 429, 430, 431, 435, 436, 440, 441, 443, 450, 451, 452, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "def_buf_s": 424, "def_mem_level": 424, "def_prog_mod": 177, "def_shell_mod": 177, "default": [5, 7, 17, 18, 23, 24, 27, 32, 33, 34, 35, 45, 49, 58, 61, 63, 64, 66, 68, 71, 76, 77, 78, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 111, 112, 115, 117, 118, 119, 122, 125, 126, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 214, 215, 216, 218, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 286, 287, 288, 291, 293, 295, 296, 297, 298, 299, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 344, 345, 347, 348, 352, 353, 355, 356, 359, 362, 364, 365, 366, 367, 369, 373, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 398, 399, 403, 405, 406, 407, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 448, 451, 453, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "default_addr": 102, "default_buffer_s": [225, 258, 348, 483], "default_bufs": 412, "default_charset": 195, "default_class": 203, "default_domain": 287, "default_exception_handl": [126, 130], "default_factori": [160, 181, 386, 483], "default_format": [358, 479], "default_ignor": [216, 477], "default_load": 413, "default_logging_config_port": 268, "default_max_str_digit": [34, 344, 352], "default_mod": 176, "default_msec_format": 267, "default_nam": [269, 428], "default_namespac": [413, 469, 483], "default_of_arg": 427, "default_open": 395, "default_pip": 210, "default_protocol": [299, 330, 472, 483], "default_sect": 167, "default_tcp_logging_port": [102, 268], "default_tim": 367, "default_time_format": 267, "default_udp_logging_port": 268, "default_valu": 17, "defaultact": 483, "defaultalluserstargetdir": 461, "defaultcontext": [186, 476], "defaultcookiepolici": [68, 256, 483], "defaultcustomtargetdir": 461, "defaultdict": [68, 87, 182, 344, 386, 467, 475, 483], "defaultdir": 281, "defaulteventlooppolici": [126, 132, 483], "defaultextens": 189, "defaulthandl": 314, "defaulthandlerexpand": 314, "defaultjustformetargetdir": 461, "defaultobj": 22, "defaultsect": 167, "defaultselector": [329, 333, 483], "defaulttest": [388, 477], "defaulttestload": 388, "defaulttestresult": 388, "defaultvalu": [49, 268], "defaultverifypath": 341, "defaultwidgetsizetestcas": 388, "defaultwindowssdkvers": 483, "defcount": 66, "defeat": [85, 106, 400, 428, 483], "defect": [194, 196, 199, 203, 205, 207, 208, 466, 476, 480, 483], "defenc": 96, "defend": [426, 483], "defenestr": 441, "defens": [394, 483], "defer": [63, 68, 73, 101, 160, 193, 246, 269, 278, 340, 341, 356, 463, 468, 474, 483], "deferr": [314, 413, 483], "defg": 261, "defghi": 161, "defi": 465, "defin": [5, 7, 11, 23, 25, 28, 33, 34, 35, 42, 43, 45, 50, 59, 61, 63, 64, 68, 71, 72, 73, 74, 77, 79, 84, 92, 93, 94, 95, 101, 102, 106, 109, 110, 114, 115, 118, 120, 125, 132, 133, 141, 144, 146, 151, 153, 155, 158, 161, 167, 169, 173, 176, 177, 179, 181, 183, 186, 189, 191, 193, 194, 196, 199, 203, 205, 208, 212, 213, 215, 216, 225, 226, 230, 233, 235, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 255, 258, 259, 262, 265, 266, 267, 269, 271, 275, 276, 283, 287, 288, 290, 293, 295, 297, 299, 301, 302, 304, 305, 307, 309, 312, 314, 319, 320, 322, 323, 324, 325, 328, 329, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 361, 362, 365, 366, 369, 375, 376, 377, 380, 381, 384, 385, 386, 387, 388, 389, 394, 395, 397, 400, 403, 405, 408, 410, 411, 413, 414, 415, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 441, 443, 449, 450, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "define_macro": 462, "defining_class": [58, 100, 483], "definit": [13, 31, 33, 39, 45, 50, 58, 59, 64, 68, 73, 75, 76, 85, 87, 92, 94, 99, 100, 102, 103, 106, 109, 112, 120, 144, 158, 161, 169, 176, 177, 181, 183, 225, 226, 230, 232, 247, 250, 251, 255, 256, 267, 269, 281, 283, 289, 292, 299, 308, 312, 313, 324, 335, 340, 344, 345, 352, 359, 364, 366, 377, 384, 385, 386, 387, 388, 395, 408, 410, 411, 414, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 445, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 480, 481, 482, 483], "deflat": [421, 424, 483], "defmacro": 95, "defparamet": 427, "defpath": [293, 332, 483], "defragresult": [394, 475, 483], "defragresultbyt": [394, 483], "defstat": 464, "defunct": 33, "defusedxml": [68, 273], "deg": 465, "dega": 303, "degrad": [177, 475, 483], "degre": [73, 155, 177, 275, 344, 384, 428, 465, 481, 483], "deiconifi": 247, "deili": [469, 475, 477, 481, 482], "deiniti": 177, "del": [49, 54, 58, 68, 73, 76, 85, 88, 93, 100, 103, 122, 144, 160, 178, 191, 196, 205, 225, 227, 230, 236, 247, 255, 271, 283, 284, 291, 292, 293, 296, 299, 330, 344, 389, 402, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 445, 452, 462, 463, 465, 467, 468, 469, 475, 483], "del_param": [196, 205], "del_stmt": [431, 436], "del_t_atom": 431, "del_target": 431, "delattr": [58, 225, 440, 450], "delawar": 341, "delay": [23, 84, 92, 102, 126, 129, 139, 177, 245, 247, 255, 269, 283, 288, 314, 325, 333, 337, 341, 362, 383, 384, 395, 396, 413, 428, 450, 468, 475, 479, 480, 481, 483], "delay_output": 177, "delayfunc": 325, "delayfunct": 476, "delayload": 243, "delch": 177, "dele": 305, "deleg": [42, 63, 68, 101, 102, 225, 226, 234, 267, 268, 269, 275, 299, 324, 385, 388, 428, 430, 432, 470, 473, 475, 479, 481, 482, 483, 484], "delet": [22, 49, 54, 58, 59, 63, 64, 68, 73, 75, 76, 84, 93, 98, 102, 106, 110, 116, 122, 144, 160, 167, 177, 178, 179, 181, 184, 190, 191, 196, 200, 205, 206, 213, 218, 223, 225, 226, 241, 247, 248, 250, 269, 271, 283, 293, 296, 297, 305, 330, 332, 334, 340, 342, 344, 352, 360, 362, 365, 369, 376, 384, 389, 395, 399, 400, 405, 427, 428, 432, 435, 436, 438, 461, 464, 465, 467, 468, 469, 470, 471, 475, 477, 480, 481, 482, 483, 484], "delete_attr": 191, "delete_deref": 191, "delete_fast": 191, "delete_glob": 191, "delete_nam": 191, "delete_nth": 160, "delete_on_clos": [360, 474, 483], "delete_subscr": 191, "deleteacl": [248, 466], "deletefilehandl": 369, "deletekey": [142, 405], "deletekeyex": [405, 469], "deleteln": 177, "deletem": 144, "deletesomethingdb": 388, "deletevalu": [142, 405], "delfino": 483, "delhallt": 483, "deliber": [85, 120, 292, 305, 334, 344, 385, 388, 426, 455, 477], "delic": [33, 63], "delight": 84, "delim": 34, "delimit": [33, 59, 68, 85, 87, 106, 167, 175, 193, 201, 221, 247, 248, 271, 288, 292, 299, 319, 320, 344, 345, 348, 369, 378, 394, 425, 433, 452, 461, 465, 475, 483], "delin": 476, "delitem": 291, "deliv": [101, 110, 133, 183, 225, 328, 333, 335, 376, 390, 430, 468, 483], "deliver_challeng": 283, "deliveri": [196, 200, 205, 207, 271, 293, 333, 337, 483], "deloc": [266, 478, 483], "delphi": 78, "delta": [20, 109, 141, 183, 190, 191, 270, 388, 464, 466, 469, 479, 481, 483], "delx": [93, 225], "demain": 468, "demand": [13, 42, 64, 93, 167, 283, 292, 427, 461, 474, 478, 482, 483], "demey": [472, 479, 481, 482, 483], "demian": [478, 479, 483], "demis": 441, "demo": [68, 89, 102, 222, 247, 411, 420, 451, 465, 468, 475, 484], "demo_app": 407, "demograph": 343, "demonstr": [63, 73, 75, 92, 94, 102, 106, 107, 114, 120, 149, 176, 186, 242, 244, 247, 267, 278, 283, 292, 307, 319, 320, 340, 343, 347, 369, 380, 381, 384, 388, 413, 425, 430, 442, 461, 463, 475, 483], "demot": 483, "demur": [479, 483], "den": 483, "dengler": 483, "deni": [139, 212, 338, 428, 465, 483], "denial": [225, 262, 314, 344, 358, 409, 428, 455, 472, 473, 480, 481, 482, 483], "denmark": 462, "denni": [318, 472, 473, 474, 482, 483], "denomin": [186, 221, 289, 468, 479, 481, 483], "denorm": [275, 352, 483], "denot": [5, 46, 61, 85, 103, 106, 167, 191, 244, 245, 255, 259, 293, 322, 344, 369, 395, 427, 428, 430, 431, 432, 435, 462, 468, 480, 483], "densiti": [68, 290], "denver": [93, 483], "deo": 103, "deopt": 483, "deoptim": 483, "dep": [399, 483], "depart": [160, 225, 344], "depend": [13, 27, 33, 34, 45, 53, 63, 64, 68, 72, 73, 75, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 102, 106, 109, 111, 115, 133, 139, 144, 151, 155, 158, 167, 169, 173, 176, 177, 181, 183, 186, 190, 191, 193, 195, 205, 208, 210, 213, 215, 219, 221, 225, 230, 234, 242, 243, 244, 247, 250, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 279, 281, 283, 288, 293, 299, 308, 309, 314, 315, 319, 322, 328, 329, 330, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 361, 362, 364, 366, 369, 376, 384, 386, 388, 390, 395, 399, 403, 405, 406, 413, 415, 419, 421, 425, 427, 428, 429, 430, 432, 435, 436, 452, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "deploy": [68, 84, 101, 202, 293, 348, 369, 425, 461, 475, 481, 482, 483], "deposit": 475, "deprec": [13, 23, 31, 33, 42, 49, 54, 56, 58, 59, 61, 63, 64, 68, 93, 112, 120, 139, 149, 151, 158, 161, 173, 176, 186, 187, 199, 205, 207, 213, 218, 225, 234, 242, 243, 248, 250, 252, 255, 259, 267, 272, 292, 293, 298, 299, 304, 305, 314, 322, 324, 328, 332, 335, 337, 341, 344, 346, 352, 358, 362, 365, 366, 369, 371, 384, 388, 394, 395, 397, 400, 403, 413, 423, 428, 430, 432, 461, 463, 464, 467, 470, 472, 474, 476, 481, 482, 483, 484], "deprecated_api": 400, "deprecatedlist": 483, "deprecationwarn": [23, 68, 106, 112, 132, 166, 168, 188, 213, 252, 283, 293, 340, 347, 358, 362, 388, 400, 413, 428, 432, 435, 450, 455, 463, 465, 469, 472, 473, 474, 475, 477, 478, 479, 481, 483, 484], "dept": [93, 440, 471, 475], "depth": [23, 91, 101, 103, 142, 163, 167, 177, 179, 184, 191, 196, 205, 213, 235, 270, 299, 307, 321, 340, 352, 358, 362, 375, 381, 385, 388, 412, 413, 462, 463, 464, 478, 479, 480, 483], "dequ": [68, 182, 261, 316, 344, 386, 427, 430, 442, 452, 466, 467, 468, 469, 473, 475, 478, 479, 483], "deque_append_pop": [481, 482], "deque_append_popleft": [481, 482], "deque_clear": 483, "deque_method": 35, "deque_pop": 35, "dequeu": [102, 269, 483], "der": [341, 398, 468, 477, 483], "der_cert_byt": 341, "der_cert_to_pem_cert": 341, "deref": 483, "derefer": [15, 57, 283, 358, 483], "dereferenc": [176, 476, 483], "deregist": 283, "derek": [469, 471], "deriv": [23, 33, 49, 61, 68, 76, 88, 103, 120, 144, 157, 158, 169, 174, 176, 177, 178, 181, 183, 197, 199, 201, 202, 203, 213, 226, 230, 244, 248, 250, 251, 255, 261, 262, 267, 268, 272, 288, 292, 293, 308, 312, 313, 314, 328, 338, 352, 355, 369, 384, 386, 388, 395, 400, 408, 411, 416, 419, 420, 426, 428, 431, 432, 435, 440, 443, 462, 465, 466, 467, 468, 469, 470, 476, 477, 479, 480, 483], "derivedclassnam": 440, "derivedcoreproperti": 435, "dershowitz": [150, 183], "derwin": 177, "derzsi": 483, "des": [173, 310], "desc": [60, 93, 281, 288, 340, 471], "descend": [101, 108, 163, 196, 205, 255, 267, 283, 308, 342, 369, 376, 388, 410, 411, 413, 467, 469, 483], "descent": 372, "descr": [21, 93, 176], "descr_check": 483, "descr_get": 93, "descr_new": 93, "descrgetfunc": [57, 63, 75], "describ": [5, 7, 13, 23, 31, 42, 45, 49, 50, 51, 58, 59, 60, 61, 63, 66, 68, 72, 73, 75, 77, 92, 93, 94, 95, 99, 100, 101, 102, 103, 109, 110, 112, 115, 117, 120, 128, 137, 144, 151, 152, 158, 163, 167, 169, 176, 177, 180, 181, 184, 186, 187, 190, 191, 193, 194, 195, 196, 202, 203, 208, 213, 216, 217, 222, 223, 224, 225, 230, 235, 242, 244, 245, 246, 247, 248, 249, 251, 255, 259, 260, 266, 267, 268, 269, 271, 276, 280, 281, 288, 290, 292, 293, 295, 298, 299, 307, 308, 312, 314, 315, 319, 321, 322, 324, 328, 332, 335, 336, 337, 340, 341, 342, 344, 345, 347, 348, 352, 354, 358, 365, 369, 375, 376, 383, 384, 386, 388, 394, 395, 397, 405, 406, 408, 410, 414, 415, 416, 419, 422, 423, 426, 427, 428, 430, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "descrintro": 103, "descript": [5, 23, 24, 53, 58, 59, 63, 64, 68, 73, 89, 93, 98, 100, 101, 102, 117, 120, 128, 141, 160, 176, 177, 182, 190, 191, 193, 196, 200, 201, 202, 205, 212, 215, 230, 241, 245, 250, 251, 255, 259, 266, 267, 268, 270, 273, 278, 288, 292, 293, 297, 307, 313, 322, 332, 333, 337, 340, 341, 344, 356, 359, 361, 362, 366, 369, 375, 376, 386, 388, 399, 408, 414, 415, 419, 420, 427, 428, 429, 430, 434, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 474, 475, 477, 478, 480, 482, 483], "description_content_typ": 307, "description_unit": 483, "descriptor": [16, 23, 24, 31, 33, 49, 61, 63, 68, 75, 78, 81, 84, 87, 94, 97, 98, 116, 118, 125, 126, 130, 131, 132, 133, 149, 176, 177, 185, 188, 212, 215, 218, 225, 226, 235, 248, 255, 257, 258, 268, 278, 282, 283, 295, 309, 312, 315, 322, 328, 329, 332, 333, 337, 338, 341, 344, 348, 358, 359, 361, 362, 369, 385, 389, 427, 430, 436, 466, 467, 468, 469, 472, 473, 474, 475, 476, 478, 480, 482, 483], "descriptor_nam": 93, "descriptor_typ": 255, "descriptortyp": 483, "descrobject": 93, "descrsetfunc": [57, 63, 75], "deseri": [262, 284, 299, 340, 425, 446, 469, 473, 477, 479, 483], "deserialized_sl": 284, "deserv": [103, 271, 462], "design": [7, 34, 63, 76, 84, 85, 93, 94, 95, 100, 101, 102, 103, 109, 110, 137, 139, 146, 152, 158, 167, 169, 177, 183, 186, 192, 193, 194, 201, 213, 225, 226, 228, 230, 235, 247, 250, 271, 283, 292, 293, 299, 308, 323, 331, 337, 341, 347, 355, 358, 362, 365, 369, 375, 378, 384, 386, 394, 417, 425, 426, 432, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 480, 482, 483], "desir": [7, 9, 23, 33, 42, 61, 73, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 120, 137, 139, 151, 158, 161, 167, 169, 176, 177, 189, 190, 191, 208, 212, 226, 235, 245, 247, 250, 259, 266, 267, 271, 272, 276, 278, 292, 297, 302, 307, 311, 319, 320, 338, 340, 341, 344, 345, 347, 354, 362, 364, 365, 369, 375, 376, 384, 386, 394, 405, 412, 413, 416, 428, 430, 432, 455, 462, 464, 465, 466, 467, 468, 469, 477, 478, 479, 481, 483], "desired_access": 142, "desk": 101, "desktop": [86, 109, 403, 461], "desmond": [472, 483], "despit": [72, 85, 102, 103, 235, 262, 325, 348, 386, 432, 468, 483], "dest": [7, 68, 89, 102, 118, 200, 228, 269, 278, 292, 309, 399, 465, 467, 468, 469, 483], "dest1": [166, 475], "dest2": [166, 475], "dest3": [166, 475], "dest4": [166, 475], "dest_fil": 120, "destdir": [163, 483], "destin": [68, 101, 109, 177, 189, 208, 212, 242, 267, 268, 269, 271, 278, 292, 293, 332, 337, 344, 356, 358, 399, 466, 468, 472, 473, 474, 476, 477, 481, 482, 483], "destination_offset": 353, "destroy": [5, 11, 13, 22, 27, 33, 60, 63, 67, 95, 100, 247, 258, 278, 283, 292, 345, 365, 369, 388, 400, 405, 428, 432, 462, 464, 465, 467, 475, 479, 480, 482, 483], "destruct": [13, 33, 73, 75, 155, 177, 255, 344, 428, 463, 474, 475, 483], "destructor": [11, 33, 57, 63, 75, 76, 78, 84, 87, 115, 293, 316, 348, 352, 428, 436, 471, 475, 479, 481, 483], "destwin": 177, "detach": [132, 142, 149, 258, 270, 293, 337, 341, 376, 402, 405, 430, 475, 476, 483], "detached_process": 348, "detail": [13, 17, 26, 34, 39, 42, 45, 54, 55, 59, 61, 63, 64, 66, 68, 71, 72, 73, 76, 77, 79, 84, 85, 88, 92, 93, 94, 95, 96, 100, 101, 102, 106, 108, 109, 110, 112, 118, 120, 133, 137, 139, 141, 144, 151, 152, 158, 169, 173, 176, 177, 181, 182, 183, 186, 190, 191, 193, 194, 196, 201, 205, 207, 211, 213, 215, 223, 225, 226, 230, 234, 235, 245, 246, 247, 250, 251, 255, 259, 262, 265, 267, 269, 270, 271, 272, 281, 283, 292, 293, 299, 314, 319, 322, 324, 331, 332, 335, 337, 338, 340, 342, 344, 347, 348, 352, 354, 355, 356, 358, 359, 362, 364, 365, 369, 373, 381, 385, 386, 388, 394, 395, 400, 405, 410, 413, 415, 419, 421, 422, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "detect": [23, 28, 34, 42, 59, 63, 73, 75, 76, 85, 93, 95, 106, 110, 112, 133, 158, 161, 177, 181, 183, 186, 191, 194, 203, 206, 213, 247, 250, 255, 271, 283, 292, 293, 295, 299, 307, 314, 320, 321, 331, 333, 335, 337, 340, 344, 348, 352, 358, 362, 364, 365, 378, 382, 388, 395, 403, 427, 428, 429, 430, 435, 443, 455, 456, 461, 462, 463, 464, 465, 468, 469, 474, 475, 477, 478, 479, 480, 481, 483], "detect_api_mismatch": 362, "detect_encod": [265, 378], "detect_modul": 483, "detect_socket": 483, "detect_typ": 340, "detector": [61, 73, 255, 456, 469], "determin": [5, 7, 11, 22, 23, 33, 34, 39, 45, 49, 54, 60, 63, 68, 73, 75, 76, 85, 92, 94, 99, 101, 102, 103, 106, 109, 120, 133, 144, 151, 157, 158, 159, 161, 176, 177, 179, 181, 182, 184, 186, 189, 190, 191, 193, 197, 203, 208, 213, 215, 225, 230, 242, 247, 248, 249, 250, 255, 259, 265, 266, 267, 268, 269, 270, 271, 272, 279, 283, 292, 293, 295, 297, 299, 307, 308, 311, 314, 318, 319, 320, 321, 328, 330, 331, 332, 333, 334, 337, 340, 343, 344, 346, 347, 348, 352, 354, 355, 356, 358, 361, 366, 369, 376, 378, 384, 386, 388, 395, 400, 405, 410, 415, 421, 425, 426, 427, 429, 430, 432, 434, 435, 436, 455, 461, 464, 465, 467, 468, 469, 471, 474, 475, 476, 477, 478, 480, 483], "determinist": [34, 68, 102, 106, 169, 185, 250, 255, 337, 340, 359, 413, 475, 480, 482, 483], "detlef": [462, 465], "detract": 478, "detriment": 85, "dev": [34, 68, 79, 80, 96, 98, 102, 103, 126, 188, 229, 269, 271, 272, 293, 294, 295, 307, 333, 348, 352, 355, 438, 455, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 478, 483], "dev_mod": [34, 188, 352, 483], "dev_stag": 303, "dev_t": 483, "dev_team": 268, "devan": 186, "devel": [79, 98, 288, 483], "develop": [33, 34, 68, 75, 77, 78, 80, 85, 87, 92, 100, 101, 102, 103, 106, 109, 125, 151, 161, 169, 176, 186, 213, 214, 235, 250, 267, 268, 269, 292, 293, 307, 313, 340, 348, 352, 362, 368, 369, 375, 386, 400, 419, 422, 425, 455, 456, 457, 461, 463, 464, 465, 466, 467, 469, 470, 474, 475, 476, 477, 478, 481, 482, 483, 484], "developerwork": 95, "devguid": [89, 96, 477], "deviat": [64, 348, 394, 475, 476, 477, 483], "devic": [66, 68, 99, 131, 158, 177, 178, 212, 225, 247, 258, 269, 293, 296, 328, 329, 332, 333, 337, 342, 348, 352, 358, 405, 413, 455, 462, 468, 483], "device_encod": [293, 483], "device_id": 337, "devin": [478, 483], "devious": 483, "devis": 483, "devmajor": [358, 483], "devminor": [358, 483], "devnul": [126, 137, 283, 293, 333, 348, 476, 483], "devop": 483, "devot": 106, "devpol": [328, 329, 476, 477, 478, 483], "devpollselector": [329, 478, 480], "dez": 183, "dezemb": 183, "df": [102, 103, 469], "df924a2b08a7e89f6e11251d4602022977af2670": 98, "dfa": 483, "dfballer": 196, "dfff": 158, "dfile": 311, "dflag": 483, "dfo": 103, "dfunc": 190, "dgettext": [230, 266], "dh": [341, 472, 483], "dhfile": 341, "dhiru": 477, "di": [183, 467], "diaeresi": 158, "diagnos": [85, 96, 101, 176, 247, 267, 388], "diagnosi": 483, "diagnost": [33, 42, 68, 75, 101, 386, 419, 421, 458, 475, 479], "diagon": [109, 441, 472], "diagram": [101, 103, 193, 225, 338, 464], "dial": 102, "dialect": [68, 217, 340, 465, 467, 475, 483], "dialog": [68, 77, 92, 96, 247, 281, 292, 362, 368, 369, 370, 373, 375, 384, 461, 477, 478, 479, 480, 481, 482, 483], "dialog_swallow": 96, "diamant": 483, "diamet": 384, "diamond": [68, 94, 103, 177, 225, 428], "dice": 206, "dickinso": 471, "dickinson": [468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "dict": [5, 10, 22, 23, 26, 31, 33, 35, 54, 59, 61, 63, 68, 73, 78, 79, 84, 85, 87, 88, 93, 95, 96, 100, 112, 120, 122, 126, 160, 167, 171, 175, 181, 182, 184, 187, 190, 191, 193, 205, 211, 225, 226, 244, 250, 254, 255, 262, 267, 268, 269, 283, 288, 291, 299, 304, 307, 326, 330, 340, 341, 345, 355, 358, 362, 365, 369, 376, 379, 385, 386, 388, 402, 413, 419, 427, 428, 430, 431, 435, 441, 442, 446, 450, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "dict1": 468, "dict2": 468, "dict_comprehens": 430, "dict_display": 430, "dict_factori": [181, 340, 483], "dict_fromkey": 93, "dict_item": 430, "dict_item_list": 430, "dict_key": [226, 469, 483], "dict_merg": [191, 483], "dict_siz": 270, "dict_typ": [167, 304], "dict_upd": [191, 483], "dictat": [7, 87, 167, 222, 225, 299, 337, 461, 462, 468], "dictcomp": [122, 431], "dictconfig": [68, 101, 268, 269, 469, 475, 483], "dictconfigclass": 268, "dictconfigur": 268, "dictionari": [5, 21, 22, 23, 31, 33, 42, 45, 49, 53, 58, 59, 61, 63, 64, 66, 68, 73, 75, 76, 84, 85, 87, 93, 94, 95, 96, 101, 106, 110, 112, 115, 118, 120, 122, 144, 151, 157, 158, 160, 167, 173, 175, 176, 181, 183, 186, 191, 193, 195, 196, 200, 201, 202, 203, 205, 206, 207, 212, 216, 225, 226, 230, 236, 242, 244, 245, 250, 251, 255, 259, 261, 262, 266, 267, 269, 270, 271, 272, 274, 276, 279, 283, 287, 288, 291, 292, 293, 297, 299, 304, 305, 307, 308, 312, 314, 319, 324, 325, 326, 330, 335, 340, 341, 344, 345, 346, 348, 352, 355, 358, 362, 365, 369, 375, 376, 377, 380, 381, 384, 386, 388, 389, 393, 394, 395, 400, 407, 413, 416, 417, 427, 428, 429, 431, 436, 440, 441, 445, 446, 452, 455, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 477, 478, 479, 480, 481, 483, 484], "dictitems_contain": 483, "dictitems_revers": 483, "dictkeys_revers": 483, "dictmixin": 465, "dictobject": [93, 96, 467, 483], "dictproxi": 483, "dictread": [175, 479, 481, 483], "dictview": [87, 344, 481, 483], "dictwrit": [175, 475, 483], "did": [76, 84, 85, 102, 106, 110, 139, 167, 191, 193, 202, 243, 245, 283, 284, 292, 293, 314, 319, 329, 341, 348, 352, 365, 382, 383, 388, 415, 422, 428, 431, 442, 462, 463, 464, 472, 474, 475, 476, 477, 480, 481, 483], "did_user_define_their_nam": 114, "didn": [33, 76, 79, 85, 103, 106, 109, 169, 244, 292, 319, 335, 352, 428, 462, 463, 464, 466, 467, 468, 469, 477, 480, 482, 483], "die": [92, 212, 328, 481, 483], "diederich": [467, 471], "diego": [467, 481, 483], "dierk": 341, "diet": 190, "dietmar": 463, "diff": [112, 143, 190, 193, 388, 463, 466, 469, 475, 483], "diff_byt": [190, 478, 483], "diff_fil": 216, "differ": [9, 10, 13, 20, 23, 27, 33, 34, 42, 45, 58, 59, 63, 64, 66, 68, 72, 73, 74, 75, 76, 79, 84, 91, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 132, 133, 137, 138, 139, 141, 151, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 174, 176, 177, 183, 185, 186, 191, 193, 195, 196, 202, 203, 205, 208, 213, 214, 216, 222, 225, 226, 230, 242, 243, 245, 247, 250, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 292, 293, 295, 297, 299, 302, 308, 313, 314, 318, 319, 320, 321, 322, 328, 330, 331, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 362, 363, 364, 365, 366, 369, 375, 376, 381, 385, 386, 388, 394, 395, 405, 410, 411, 420, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "differen": 483, "differenc": [475, 483], "difference_upd": [344, 468, 482, 483], "differenti": [183, 186, 320, 395, 475, 476, 479, 482, 483], "diffi": [341, 476], "difficult": [76, 84, 92, 95, 101, 103, 106, 109, 120, 268, 299, 395, 413, 462, 463, 464, 465, 466, 469, 475, 481, 483], "difficulti": [283, 462, 465], "difflib": [68, 145, 156, 193, 216, 254, 363, 463, 464, 466, 467, 468, 469, 477, 483], "dig": 352, "digest": [68, 174, 196, 204, 205, 237, 283, 305, 341, 395, 467, 469, 470, 475, 476, 477, 480, 481, 482, 483], "digest_con": [237, 483], "digest_s": [235, 237, 477], "digestmod": [235, 237, 477, 481, 483], "digicert": 341, "digicertsha2extendedvalidationserverca": 341, "digit": [39, 59, 64, 85, 100, 106, 109, 117, 141, 146, 158, 160, 173, 178, 183, 186, 193, 221, 225, 235, 244, 259, 266, 268, 288, 293, 319, 321, 326, 340, 341, 344, 345, 352, 362, 366, 369, 378, 387, 388, 394, 395, 398, 413, 424, 426, 435, 444, 449, 456, 462, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 479, 480, 481, 482, 483], "digitalocean": 105, "digitpart": [225, 435], "digits_r": 319, "digraph": 344, "dijkstra": 365, "dim": 177, "dima": 466, "dimens": [7, 176, 177, 275, 332, 344, 468, 476, 481, 483], "dimension": [7, 87, 203, 275, 299, 318, 344, 375, 384, 476, 478, 483], "dimitri": 483, "ding": [292, 482, 483], "dingyuan": 483, "dino": [472, 479, 482, 483], "dinsdal": 114, "dionn": 466, "diophantin": 481, "dir": [49, 68, 78, 80, 85, 94, 112, 114, 163, 184, 189, 210, 211, 223, 225, 266, 292, 293, 294, 296, 323, 344, 348, 358, 360, 369, 380, 389, 399, 422, 428, 445, 451, 456, 465, 468, 472, 473, 474, 475, 476, 483], "dir1": 216, "dir2": 216, "dir_fd": [142, 225, 231, 293, 332, 472, 473, 476, 483], "dir_or_fil": 189, "dircach": [466, 468], "dircmp": [68, 219, 462, 467, 477, 483], "direct": [7, 13, 28, 31, 33, 34, 42, 45, 46, 49, 54, 58, 59, 61, 63, 64, 67, 68, 72, 73, 75, 76, 85, 93, 94, 99, 100, 101, 102, 103, 110, 112, 115, 120, 123, 128, 132, 133, 139, 146, 149, 151, 158, 159, 160, 161, 163, 167, 169, 176, 181, 183, 186, 187, 190, 191, 194, 196, 201, 205, 206, 209, 212, 213, 218, 221, 225, 226, 232, 235, 242, 243, 245, 247, 251, 252, 253, 258, 259, 262, 266, 267, 268, 270, 271, 278, 280, 283, 292, 293, 295, 299, 302, 307, 308, 314, 319, 320, 324, 330, 335, 337, 338, 340, 341, 344, 348, 352, 358, 362, 364, 365, 366, 369, 374, 375, 376, 378, 380, 381, 384, 385, 388, 395, 400, 410, 413, 414, 417, 421, 425, 426, 427, 428, 429, 430, 431, 432, 434, 436, 443, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "directive_opt": 193, "directive_option_nam": 193, "director": [93, 147, 395], "directori": [33, 34, 51, 68, 73, 75, 79, 84, 85, 86, 89, 93, 95, 96, 102, 109, 112, 114, 118, 137, 151, 152, 163, 167, 169, 184, 189, 190, 193, 200, 210, 212, 213, 216, 219, 220, 223, 225, 230, 245, 247, 248, 250, 251, 252, 253, 271, 279, 283, 292, 296, 297, 302, 310, 311, 312, 313, 320, 324, 331, 334, 340, 341, 342, 348, 352, 354, 355, 357, 358, 360, 362, 375, 380, 384, 388, 395, 399, 403, 421, 422, 423, 425, 432, 443, 451, 455, 456, 461, 462, 463, 465, 466, 467, 469, 470, 471, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483, 484], "directorys": 93, "directorytestcas": 483, "dirent": 293, "direntri": [293, 474, 478, 479, 483], "direntrytyp": 483, "dirfd": 293, "diritta": 467, "dirlist": 375, "dirnam": [93, 223, 271, 293, 294, 296, 302, 362, 388, 400, 456, 480], "dirpath": [293, 296], "dirs_double_ev": 189, "dirs_exist_ok": [332, 481, 483], "dirs_select_ev": 189, "dirselectbox": 375, "dirselectdialog": 375, "dirsonsyspath": 362, "dirti": 106, "dirtre": 375, "dirtyp": 358, "dis": [68, 87, 156, 254, 255, 264, 300, 352, 479, 483], "disabl": [23, 28, 33, 34, 42, 63, 68, 73, 94, 96, 101, 102, 106, 112, 120, 144, 151, 164, 167, 177, 186, 190, 193, 201, 214, 218, 225, 226, 227, 242, 250, 255, 262, 267, 268, 269, 283, 288, 292, 293, 297, 299, 308, 314, 315, 319, 320, 328, 331, 333, 334, 335, 337, 339, 340, 341, 344, 352, 362, 376, 384, 386, 388, 395, 400, 405, 413, 425, 428, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "disable_check": [250, 483], "disable_existing_logg": [101, 102, 268], "disable_faulthandl": 362, "disable_gc": 362, "disable_interspersed_arg": [120, 292], "disable_nagle_algorithm": 469, "disabled_by_com": 167, "disablereflectionkey": [142, 405, 468, 469], "disablesev": 328, "disadvantag": [73, 76, 84, 85, 106, 132, 158, 186, 341, 464, 471], "disagr": 103, "disagre": [95, 378, 462], "disallow": [5, 33, 63, 94, 120, 122, 167, 181, 272, 293, 337, 340, 344, 423, 427, 461, 468, 474, 477, 480, 481, 483], "disambigu": [11, 39, 68, 183, 430, 435, 483], "disappear": [73, 75, 101, 139, 384, 464, 466, 483], "disassembl": [191, 264, 300, 362, 477, 480, 483], "disassoci": 293, "disc": 384, "discard": [9, 35, 49, 55, 60, 64, 66, 73, 94, 95, 139, 151, 157, 158, 161, 183, 186, 243, 258, 267, 268, 271, 283, 292, 337, 340, 344, 361, 376, 400, 411, 413, 416, 427, 428, 449, 455, 464, 467, 468, 469, 474, 477, 479, 481, 483], "discern": [103, 234], "disciplin": 208, "disclaim": [103, 288, 349, 426], "disco": 191, "disconnect": [305, 335, 337, 340, 405, 481, 483], "discontinu": [105, 366, 483], "discount": 481, "discourag": [95, 106, 139, 158, 181, 194, 225, 250, 288, 319, 334, 344, 353, 358, 362, 428, 464, 467, 483], "discours": [1, 483], "discov": [183, 196, 205, 244, 362, 388, 415, 463, 464, 465, 469, 475, 477, 483], "discover": [251, 312, 461, 477, 483], "discoveri": [68, 187, 193, 280, 335, 419, 475, 477, 478, 483], "discrep": 483, "discret": [43, 261, 338, 343, 481], "discuss": [33, 72, 73, 85, 95, 100, 102, 103, 106, 109, 110, 181, 190, 203, 208, 230, 247, 258, 268, 288, 293, 319, 330, 333, 341, 348, 376, 386, 395, 410, 419, 426, 427, 429, 430, 432, 435, 462, 463, 464, 467, 468, 469, 471, 473, 474, 477, 479, 482, 483], "disentangl": 95, "disguis": [319, 428], "dish": [94, 344], "disjoint": 344, "disjunct": [341, 431], "disk": [84, 95, 101, 109, 169, 184, 194, 200, 208, 213, 234, 243, 247, 258, 265, 267, 269, 271, 278, 281, 288, 293, 295, 298, 299, 322, 330, 332, 340, 348, 352, 358, 382, 405, 413, 422, 428, 465, 467, 468, 470, 476, 483], "disk0s2": 469, "disk_usag": [332, 476, 483], "dislik": 110, "dismiss": [103, 247, 384, 483], "dispar": 208, "dispatch": [68, 78, 84, 85, 87, 101, 102, 144, 155, 177, 197, 226, 245, 298, 308, 321, 388, 419, 471, 473, 475, 477, 481, 483], "dispatch_": 144, "dispatch_cal": 144, "dispatch_except": 144, "dispatch_lin": 144, "dispatch_return": 144, "dispatch_t": [172, 299, 476, 483], "display": [23, 33, 34, 42, 68, 87, 89, 94, 96, 98, 102, 109, 120, 139, 151, 152, 155, 157, 160, 177, 179, 185, 186, 191, 193, 200, 203, 214, 247, 255, 259, 266, 267, 271, 281, 288, 293, 297, 307, 311, 313, 319, 320, 321, 342, 344, 345, 346, 348, 352, 358, 364, 369, 375, 376, 378, 380, 381, 384, 388, 395, 399, 400, 403, 421, 426, 428, 435, 436, 443, 449, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "display_d": [126, 139], "display_failur": 382, "display_nam": [200, 203, 476], "display_top": 382, "displaycolumn": 376, "displayhook": [225, 352, 450, 463], "displaymatch": 319, "displayof": 372, "displaystyl": 483, "displaywidth": 155, "dispos": [73, 388, 399], "disposit": [196, 197, 203, 205, 248, 293, 333, 400, 407, 478], "disqualifi": 475, "disregard": [7, 33, 344], "disrupt": [132, 474, 483], "dissect": [106, 463, 464], "dissect_can_fram": 337, "dissent": 462, "dist": [251, 270, 275, 296, 384, 467, 475, 478, 481, 483], "dist_cub": 343, "dist_from_sun": 343, "distanc": [120, 155, 270, 275, 343, 369, 384, 473, 481, 483], "distb": [191, 477, 483], "distclean": [456, 483], "distinct": [33, 42, 45, 63, 85, 92, 106, 109, 141, 169, 181, 183, 186, 193, 226, 261, 268, 270, 292, 299, 308, 334, 340, 341, 344, 347, 352, 369, 386, 432, 435, 462, 464, 468, 475, 476, 479, 480, 482, 483], "distinguish": [39, 63, 68, 73, 96, 122, 161, 177, 187, 191, 193, 197, 225, 243, 255, 268, 275, 314, 341, 355, 376, 386, 400, 428, 430, 432, 461, 463, 464, 469, 476, 477, 483], "distort": 384, "distpath": 399, "distract": [92, 292, 483], "distribut": [31, 33, 66, 68, 71, 73, 75, 84, 85, 96, 186, 209, 230, 235, 250, 271, 275, 280, 283, 284, 302, 318, 340, 343, 355, 358, 369, 377, 388, 414, 421, 426, 456, 459, 461, 462, 463, 465, 467, 468, 470, 472, 475, 478, 479, 480, 481, 482, 483], "distributionfind": 251, "distributor": [425, 479, 483], "distro": [68, 483], "disturb": [299, 483], "distutil": [68, 71, 77, 111, 251, 463, 467, 468, 469, 473, 475, 481, 483, 484], "distutils2": 469, "distutils_debug": 483, "distutilsexecerror": 483, "distutilsplatformerror": 483, "ditch": 452, "ditto": 483, "div": [85, 122, 186, 240, 412, 431], "dive": 85, "diverg": [341, 464], "divert": [337, 483], "divid": [47, 84, 92, 106, 141, 167, 183, 186, 191, 193, 194, 225, 247, 275, 284, 308, 353, 375, 419, 435, 443, 468, 475, 476, 477, 481, 483], "divide_int": 186, "dividend": [15, 186], "divis": [64, 66, 68, 87, 102, 113, 183, 186, 213, 297, 302, 333, 428, 429, 430, 436, 443, 449, 465, 466, 468, 469, 473, 475, 482, 483, 484], "division_warn": [352, 475, 476], "divisionbyzero": [186, 466], "divisor": [15, 186, 449], "divmod": [47, 85, 183, 186, 225, 289, 344, 428, 430, 444, 450, 481, 483], "dixon": 200, "django": [102, 160, 297, 302, 389, 469, 476], "djb": 426, "djbdns": 223, "djgpp": 483, "dk": 235, "dklen": 235, "dl": [467, 468, 483], "dl_export": 465, "dl_import": 465, "dle": 178, "dlfcn": [476, 479, 483], "dlg": 281, "dlgclass": 375, "dll": [33, 57, 68, 77, 84, 176, 269, 293, 352, 369, 461, 467, 468, 472, 477, 481, 483], "dllcanunloadnow": 176, "dllexport": [77, 86], "dllgetclassobject": 176, "dllhandl": 352, "dllname": [269, 481], "dlls": [34, 68, 74, 118, 293, 462, 467, 481, 483], "dlltool": 481, "dlltype": 176, "dlopen": [142, 176, 293, 352, 456, 464, 467, 483], "dlsym": [142, 176], "dm": 359, "dmaxcol": 177, "dmaxrow": 177, "dmesg": 348, "dmincol": 177, "dminrow": 177, "dmitri": [235, 466, 478, 479, 483], "dmitrii": 483, "dml": [340, 483], "dn": [341, 398, 483], "dnd": [68, 254, 368, 369], "dnd_accept": 371, "dnd_commit": 371, "dnd_end": 371, "dnd_enter": 371, "dnd_leav": 371, "dnd_start": 371, "dndebug": 72, "dndhandler": 371, "dnf": 96, "dngettext": 230, "dnpgettext": 230, "dns": [68, 102, 128, 130, 158, 259, 269, 337, 341, 398, 478, 483], "do": [5, 7, 22, 23, 28, 33, 34, 36, 42, 43, 56, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 77, 78, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 120, 132, 137, 138, 139, 141, 151, 158, 159, 161, 163, 167, 169, 176, 177, 178, 179, 181, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 205, 207, 208, 213, 214, 225, 226, 228, 230, 243, 244, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 266, 267, 268, 269, 271, 275, 283, 292, 293, 295, 297, 299, 305, 308, 314, 319, 320, 322, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 364, 365, 366, 368, 374, 375, 376, 378, 380, 382, 384, 386, 388, 394, 395, 399, 400, 403, 406, 410, 411, 413, 414, 415, 417, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "do_": [85, 155, 245], "do_bar": [85, 155], "do_by": 155, "do_circl": 155, "do_clear": 144, "do_color": 155, "do_command": 177, "do_foo": [85, 155], "do_forward": 155, "do_get": 245, "do_glob": 440, "do_goto": 155, "do_handshak": [341, 477, 478], "do_handshake_on_connect": 341, "do_head": [155, 245], "do_help": [155, 483], "do_hom": 155, "do_left": 155, "do_loc": 440, "do_mkstack": 483, "do_my_adding_stuff": 289, "do_my_other_adding_stuff": 289, "do_nonloc": 440, "do_not_add": 332, "do_playback": 155, "do_posit": 155, "do_post": 245, "do_profiled_stuff": 104, "do_record": 155, "do_reset": 155, "do_right": 155, "do_setlocal": [266, 293], "do_shel": 155, "do_someth": [102, 151, 267, 341, 388, 430], "do_something_us": 402, "do_spam": 245, "do_stuff": 427, "do_undo": 155, "do_work": [284, 293], "dobb": 190, "doc": [1, 23, 58, 60, 75, 76, 79, 80, 93, 106, 126, 176, 194, 205, 223, 225, 242, 247, 251, 255, 262, 293, 296, 313, 340, 341, 352, 362, 367, 385, 394, 403, 405, 412, 452, 454, 456, 460, 461, 462, 464, 465, 467, 468, 469, 474, 475, 479, 480, 481, 483], "doc_head": 155, "doccgixmlrpcrequesthandl": [68, 256], "docclean": 483, "docfilecas": 193, "docfilesuit": [193, 467], "docfiletest": 483, "dock": [247, 483], "dockerfil": 483, "doclasscleanup": [388, 483], "docleanup": [388, 469, 483], "docmd": 335, "docs_url": 307, "docsbuild": 483, "docserv": 483, "docstest": 483, "docstr": [23, 27, 34, 45, 58, 60, 63, 66, 68, 75, 84, 87, 102, 122, 155, 160, 187, 222, 225, 226, 247, 255, 297, 313, 362, 378, 385, 386, 388, 427, 428, 435, 436, 440, 441, 451, 455, 462, 463, 464, 465, 466, 467, 468, 469, 473, 475, 477, 478, 479, 480, 481, 482, 483], "docstringdict": 384, "doctest": [68, 78, 84, 112, 156, 176, 187, 254, 362, 378, 381, 382, 388, 451, 463, 465, 467, 469, 471, 475, 476, 483], "doctestcas": 193, "doctestfailur": 193, "doctestfind": [68, 187, 466, 483], "doctestpars": [68, 187], "doctestrunn": [68, 187, 466], "doctestsuit": [193, 388, 465, 478, 483], "doctyp": [110, 240, 242, 314, 395, 410, 413, 475, 481, 483], "doctypenam": 314, "document": [1, 23, 24, 28, 42, 45, 51, 55, 58, 59, 61, 63, 64, 68, 71, 72, 73, 75, 76, 77, 79, 80, 85, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 128, 133, 137, 139, 144, 151, 155, 167, 169, 176, 177, 181, 183, 187, 190, 193, 194, 195, 196, 202, 203, 205, 207, 208, 213, 220, 221, 225, 226, 230, 235, 241, 243, 247, 248, 250, 251, 254, 255, 256, 259, 262, 266, 267, 268, 269, 271, 272, 273, 281, 282, 283, 290, 292, 293, 295, 297, 304, 307, 313, 314, 322, 330, 331, 335, 337, 338, 340, 341, 342, 344, 348, 352, 354, 358, 361, 362, 364, 365, 366, 369, 375, 376, 384, 385, 386, 394, 395, 399, 400, 403, 405, 411, 412, 414, 415, 416, 417, 419, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 445, 446, 456, 461, 462, 463, 464, 465, 466, 467, 470, 471, 472, 474, 475, 478, 479, 480, 482, 484], "document_nod": 410, "document_type_nod": 410, "documentel": [410, 411, 462], "documentfactori": 412, "documenthandl": [415, 416], "documenttyp": [68, 273], "docutil": [0, 468, 483], "docxmlrpcrequesthandl": 420, "docxmlrpcserv": [68, 256, 465, 467, 468, 470, 483], "dodd": [473, 483], "dodg": 466, "doe": [5, 9, 13, 22, 23, 25, 26, 27, 28, 31, 33, 34, 42, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 110, 115, 120, 133, 139, 146, 149, 151, 153, 157, 158, 161, 163, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 207, 208, 213, 220, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 299, 301, 302, 308, 309, 311, 314, 319, 322, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 356, 358, 362, 364, 365, 366, 368, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 440, 442, 443, 449, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "doerwald": 468, "does_esmtp": 335, "does_that_mean_anything_speci": 167, "doesn": [5, 7, 22, 23, 33, 34, 43, 56, 63, 72, 73, 76, 77, 79, 85, 92, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 112, 120, 132, 133, 135, 144, 151, 158, 169, 173, 176, 183, 184, 186, 193, 196, 200, 205, 213, 214, 225, 226, 243, 250, 251, 255, 258, 259, 266, 267, 268, 269, 292, 293, 297, 299, 302, 305, 314, 319, 322, 323, 328, 330, 332, 333, 334, 335, 337, 339, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 384, 385, 387, 388, 400, 405, 419, 423, 428, 430, 432, 441, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "dog": [94, 106, 160, 319, 440, 475, 478], "doggi": 319, "dogwood": 319, "doi": 103, "doing": [22, 27, 33, 36, 63, 84, 85, 92, 95, 96, 99, 101, 102, 106, 109, 133, 151, 158, 159, 169, 176, 186, 194, 216, 225, 235, 243, 250, 258, 265, 267, 269, 278, 279, 283, 292, 293, 295, 299, 305, 319, 328, 333, 338, 341, 342, 345, 348, 362, 365, 369, 384, 386, 388, 395, 413, 421, 428, 429, 464, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 483], "doit": 120, "dollarmessag": 102, "dolor": 149, "dom": [68, 254, 257, 273, 409, 415, 451, 463, 465, 467, 473, 479, 480, 481, 483], "dom1": 411, "dom2": 411, "dom3": 411, "domain": [32, 68, 98, 101, 145, 203, 208, 209, 212, 230, 235, 243, 244, 248, 266, 268, 269, 283, 287, 335, 337, 338, 341, 346, 347, 352, 382, 394, 398, 455, 465, 467, 474, 476, 477, 478, 479, 480, 483], "domain_initial_dot": 243, "domain_return_ok": 243, "domain_specifi": 243, "domainfilt": [68, 185, 479], "domainliber": 243, "domainrfc2965match": 243, "domainstrict": 243, "domainstrictnodot": 243, "domainstrictnondomain": 243, "dombrova": 483, "domenico": 474, "domeventstream": [68, 273, 473, 481, 483], "domexcept": [410, 411], "domimplement": [68, 273], "domin": [147, 243, 483], "domodulecleanup": [388, 483], "domreg": 483, "domstr": [410, 411], "domstring_size_err": 410, "domstringsizeerr": 410, "domtimestamp": 411, "don": [5, 9, 23, 28, 33, 34, 49, 58, 59, 63, 73, 75, 76, 79, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 120, 133, 137, 139, 144, 151, 152, 153, 159, 160, 163, 167, 169, 176, 179, 181, 183, 190, 191, 193, 200, 209, 216, 225, 226, 230, 242, 243, 250, 257, 258, 259, 262, 267, 268, 269, 283, 288, 292, 293, 295, 297, 299, 307, 308, 328, 330, 332, 335, 337, 340, 341, 344, 355, 365, 369, 376, 386, 388, 395, 399, 405, 413, 426, 427, 428, 430, 431, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 478, 479, 481, 482, 483], "donald": [160, 341, 469, 477], "donat": [103, 466], "done": [5, 7, 31, 33, 34, 36, 47, 49, 51, 54, 55, 58, 63, 64, 66, 72, 73, 75, 76, 84, 85, 92, 95, 96, 98, 99, 101, 102, 106, 109, 110, 120, 125, 126, 129, 133, 136, 139, 141, 151, 155, 158, 159, 166, 167, 173, 176, 177, 183, 184, 186, 191, 193, 196, 200, 204, 205, 208, 209, 216, 225, 232, 234, 235, 245, 247, 250, 255, 258, 266, 267, 268, 269, 278, 283, 288, 292, 293, 295, 299, 302, 308, 309, 314, 316, 319, 334, 338, 340, 341, 344, 345, 348, 352, 358, 359, 361, 362, 366, 375, 376, 384, 385, 386, 395, 399, 400, 408, 411, 412, 413, 414, 421, 428, 430, 432, 435, 436, 452, 461, 462, 463, 464, 465, 467, 468, 474, 475, 476, 477, 478, 479, 481, 483], "done_queu": 283, "donec": 149, "donegan": 483, "dong": [292, 483], "donghe": [472, 473, 474, 481, 482, 483], "doni": 483, "donnel": 464, "donnellan": 483, "donni": 140, "donotsepar": 331, "dont": 359, "dont_accept_blanklin": 193, "dont_accept_true_for_1": 193, "dont_inherit": [225, 477], "dont_write_bytecod": [34, 352, 450, 468, 475], "doodah": 304, "doom": [283, 467], "door": [110, 120, 342], "dorais": 311, "dorfman": 466, "dorian": 483, "dormant": 102, "dorollov": [269, 483], "doroschenko": 483, "dos": [34, 78, 177, 288, 292, 455, 462, 464, 475, 477, 483], "dose": 109, "doseq": 394, "dot": [23, 31, 45, 63, 64, 76, 78, 87, 93, 98, 101, 102, 106, 122, 193, 225, 243, 247, 250, 259, 261, 266, 267, 268, 271, 276, 288, 302, 313, 319, 323, 332, 337, 344, 352, 358, 360, 369, 377, 384, 388, 389, 420, 422, 423, 427, 428, 432, 434, 436, 440, 447, 455, 461, 468, 471, 472, 478, 483], "dotal": [106, 319], "dotless": [106, 319], "dotted_as_nam": 431, "dotted_nam": 431, "dotterbart": 291, "dotview": 89, "doubl": [5, 15, 18, 25, 35, 39, 58, 63, 64, 75, 76, 78, 85, 96, 102, 106, 121, 158, 160, 176, 177, 182, 189, 193, 209, 235, 247, 248, 262, 269, 275, 283, 293, 297, 319, 331, 344, 345, 347, 348, 359, 362, 389, 408, 417, 419, 427, 428, 430, 431, 435, 442, 444, 449, 461, 465, 466, 467, 468, 473, 474, 475, 476, 479, 480, 481, 483], "double_revers": 108, "double_star_pattern": [427, 431], "double_starred_kvpair": 431, "doublequot": [175, 483], "doubleslash": 377, "doubleslashequ": 377, "doublestar": 377, "doublestarequ": 377, "doublestuff": 244, "doublevar": 369, "doubli": [35, 63, 85, 469], "doubt": [63, 84, 92, 103, 167, 183, 467], "doubtless": [95, 463, 464, 465], "doug": [426, 483], "doupdat": [92, 177, 179], "dove": [101, 102], "dower": [474, 478, 479, 480, 481, 482], "down": [51, 68, 72, 76, 85, 95, 101, 102, 139, 151, 160, 177, 179, 191, 193, 212, 245, 247, 267, 275, 283, 293, 297, 308, 309, 319, 328, 333, 337, 338, 341, 352, 353, 371, 376, 384, 388, 394, 407, 452, 455, 462, 464, 465, 469, 474, 478, 479, 480, 481, 482, 483], "downcast": [5, 456], "downey": 318, "downgrad": [243, 483], "download": [75, 80, 85, 96, 102, 103, 296, 307, 375, 395, 399, 453, 461, 467, 468, 469, 475, 476, 480, 481, 483], "download_url": [307, 467], "downright": 167, "downsid": [259, 461, 476, 480], "downstream": [120, 267, 425, 483], "dozen": [468, 475, 483], "dp": [186, 483], "dpgettext": 230, "dpi": [479, 480, 483], "dpkg": 466, "dpy_build_cor": [456, 483], "dpy_build_core_builtin": 456, "dq": 468, "dr": [190, 223, 364, 475], "draft": [95, 109, 151, 271, 296, 410, 462, 463, 464, 465, 466, 467, 468, 469, 479, 480, 483], "drag": [369, 371, 375, 376, 384, 483], "dragonfli": 483, "dragonflybsd": [115, 337, 365, 483], "drain": [133, 136, 138, 341, 475, 483], "drake": [0, 462, 463, 464, 465, 467, 468], "drallensmith": 483, "draoui": [478, 483], "drastic": [7, 112], "draw": [68, 92, 103, 155, 177, 222, 247, 318, 376, 468, 483], "draw_doubl": 468, "drawabl": 468, "drawback": [252, 292, 480], "drawn": [103, 155, 177, 267, 293, 384, 483], "drbg_nopr_ctr_aes256": 337, "dri": [68, 284, 292, 458], "dric": [478, 481, 483], "drive": [231, 247, 292, 293, 294, 296, 358, 362, 369, 388, 422, 426, 461, 474, 476, 477, 478, 483], "driven": [78, 85, 169, 276, 369, 384, 388, 410, 412, 462, 475, 483], "driver": [177, 193, 212, 230, 293, 295, 337, 362, 405, 406, 416, 465, 483], "drmhze6epcv0fn_81bj": 326, "drop": [28, 63, 76, 84, 93, 94, 101, 109, 133, 160, 193, 212, 250, 261, 269, 283, 305, 321, 325, 341, 344, 348, 352, 364, 369, 371, 376, 388, 394, 462, 463, 464, 466, 467, 468, 470, 475, 477, 478, 483], "drop_whitespac": [364, 468], "dropdown": 376, "dropwhil": [95, 261], "drug": 318, "drug_effect": 343, "drum": 106, "drummer": 106, "drwx": 332, "drwxr": [89, 223], "dry_run": [332, 362, 483], "drzejewski": [476, 483], "ds": 483, "dsa": 475, "dsaencrypt": 475, "dsawithsha": 475, "dscp": [472, 483], "dsfsdf": 431, "dsiablereflectionkey": 405, "dsl": [477, 483], "dsn": 335, "dsp": 295, "dst": [52, 142, 176, 183, 293, 332, 340, 366, 476, 483], "dst_diff": 183, "dst_dir_fd": [142, 293], "dst_path": 142, "dst_time": 183, "dstdiff": 183, "dstend": 183, "dstend_1967_1986": 183, "dstend_1987_2006": 183, "dstend_2007": 183, "dstname": [183, 332], "dstoff": 183, "dstoffset": 183, "dston": 183, "dststart": 183, "dststart_1967_1986": 183, "dststart_1987_2006": 183, "dststart_2007": 183, "dsymutil": 483, "dt": [183, 209, 419, 425, 482], "dt1": 183, "dt2": 183, "dt3": 183, "dt_add": 425, "dt_unknown": 293, "dt_utc": 425, "dtd": [110, 240, 314, 395, 409, 414, 415, 416, 479, 480, 481, 483], "dtdhandler": [68, 273, 416], "dtdst": 183, "dtls": 341, "dtoa": [68, 456, 469, 483], "dtoff": 183, "dtrace": [68, 97, 456, 483], "dtrace_function_entri": 98, "dtrace_function_return": 98, "dtype": [284, 386], "dual": [126, 337, 426, 435, 483], "dualiti": 481, "dualstack_ipv6": 337, "duan": 483, "dubious": [213, 400, 483], "dublin": 413, "dubost": 483, "duck": [87, 386, 468, 477, 483], "due": [5, 23, 33, 45, 63, 66, 75, 76, 84, 93, 101, 110, 137, 139, 169, 176, 177, 183, 184, 190, 208, 221, 242, 247, 250, 258, 267, 268, 269, 271, 275, 283, 299, 314, 325, 341, 344, 348, 362, 365, 371, 386, 388, 422, 427, 428, 430, 431, 432, 435, 456, 461, 462, 463, 466, 468, 469, 470, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483], "duid": 483, "dumb": [68, 298, 359, 478, 479, 480, 481, 483], "dumbdbm": [184, 470], "dummi": [13, 68, 73, 102, 114, 164, 176, 190, 230, 258, 293, 358, 362, 365, 384, 479, 483], "dummy_thread": [465, 480, 482, 483], "dump": [34, 42, 68, 73, 94, 101, 102, 122, 142, 151, 172, 175, 185, 188, 262, 266, 269, 274, 284, 286, 293, 297, 299, 304, 308, 333, 340, 342, 381, 382, 413, 419, 446, 455, 456, 462, 463, 464, 465, 468, 469, 471, 476, 477, 478, 479, 482, 483], "dump_ref": 34, "dump_stat": 308, "dump_traceback": [214, 478, 483], "dump_traceback_lat": [214, 478, 483], "dumpbin": 176, "dumpleton": 483, "duncan": 468, "dunder": [181, 435, 481, 483], "dup": [160, 293, 337, 483], "dup2": [214, 293, 333, 473, 478, 480, 483], "dup3": 483, "dup_top": [473, 483], "dup_top_two": [473, 483], "dupe": [163, 482], "duplex": [283, 295], "duplic": [22, 68, 95, 103, 112, 163, 167, 169, 186, 190, 191, 196, 205, 208, 211, 215, 231, 255, 259, 267, 271, 293, 302, 337, 344, 362, 384, 386, 388, 422, 427, 428, 430, 431, 441, 442, 464, 466, 467, 468, 474, 475, 478, 480, 482, 483], "duplicatefreeenum": 68, "duplicateoptionerror": [167, 475, 483], "duplicatesectionerror": [167, 475, 483], "duprat": 473, "dupui": 477, "dupuy": 483, "duran": 483, "durat": [33, 102, 135, 139, 183, 271, 283, 308, 337, 338, 341, 344, 352, 361, 362, 365, 366, 388, 406, 469, 474, 475, 476, 478, 481, 483], "dure": [17, 22, 23, 28, 33, 34, 45, 51, 58, 63, 64, 68, 77, 85, 93, 94, 102, 133, 139, 151, 158, 167, 176, 177, 181, 183, 186, 191, 193, 201, 202, 203, 208, 211, 213, 218, 226, 235, 250, 251, 262, 267, 268, 269, 270, 271, 281, 288, 293, 299, 308, 313, 314, 319, 320, 323, 332, 333, 334, 335, 340, 341, 343, 344, 352, 353, 361, 362, 366, 376, 380, 382, 384, 385, 386, 388, 400, 413, 414, 415, 416, 422, 425, 427, 428, 430, 432, 435, 436, 443, 455, 456, 461, 462, 465, 466, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483], "dusing_apple_os_libffi": 483, "dusti": [479, 483], "dustin": [468, 483], "dutch": [365, 435], "duti": 475, "dv": [102, 362], "dvd": 295, "dvi": 141, "dwarf": [104, 343, 428], "dwayn": 468, "dwell": 73, "dwfileattribut": [293, 478], "dwflag": 348, "dwith_pymalloc_radix_tre": 483, "dword": 176, "dx": [261, 343], "dxob": 345, "dxp": 483, "dxpair": 483, "dy": 261, "dyck": 466, "dyer": 469, "dylan": [103, 465], "dyld": [462, 483], "dylib": [176, 483], "dynam": [11, 22, 25, 31, 42, 45, 63, 66, 68, 72, 73, 77, 79, 80, 84, 85, 101, 102, 118, 141, 182, 190, 203, 225, 226, 247, 250, 255, 293, 321, 335, 337, 340, 344, 352, 369, 376, 384, 423, 428, 430, 432, 436, 440, 456, 462, 464, 465, 467, 468, 475, 476, 477, 480, 481, 483], "dynamic_execution_profil": 483, "dynamicclassattribut": [385, 473, 477], "dynload": [352, 354, 456, 483], "dynload_": 462, "dynload_shlib": 483, "dysfunct": 475, "e000000000000p": 468, "e1": [431, 475], "e1000": 483, "e2": 431, "e2big": 212, "e3c8102868d28b5ff85fc35dda07329970d1a01e273c37481326fe0c861c8142": 235, "e52df05b496a": 477, "e9buter_en_python": 288, "ea": 153, "eacc": [212, 213, 215, 250, 476, 483], "eacceler": 223, "eaccess": 483, "each": [5, 7, 13, 22, 23, 28, 31, 33, 34, 37, 42, 45, 59, 61, 63, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 100, 101, 102, 106, 109, 110, 112, 117, 120, 132, 133, 138, 139, 141, 149, 151, 152, 153, 155, 158, 159, 163, 166, 167, 169, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 202, 203, 204, 205, 208, 212, 214, 216, 218, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 255, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 281, 283, 284, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 309, 312, 313, 314, 318, 319, 320, 321, 322, 325, 329, 331, 332, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 346, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 405, 408, 410, 411, 413, 415, 417, 419, 420, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 442, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "eaddrinus": 212, "eaddrnotavail": 212, "eadv": 212, "eafnosupport": 212, "eafp": [87, 293], "eagain": [212, 213, 215, 293], "eager": [68, 359, 427, 474, 480, 483], "eager_start": 139, "eager_task_factori": [139, 474, 483], "eai_": 337, "ealreadi": [212, 213], "ear": 297, "earli": [5, 34, 75, 169, 255, 269, 292, 333, 341, 344, 365, 369, 382, 411, 422, 430, 432, 462, 466, 468, 475, 483], "earlier": [10, 33, 63, 64, 72, 84, 85, 92, 95, 96, 101, 102, 106, 115, 177, 183, 193, 230, 245, 247, 267, 269, 292, 293, 299, 319, 331, 340, 341, 348, 358, 369, 380, 383, 386, 388, 394, 400, 411, 415, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 480, 481, 482, 483], "earliest": [139, 183, 190, 366], "earliest_result": 139, "early_hint": [241, 482, 483], "earth": [94, 340, 343, 441], "earth_weight": 386, "eas": [63, 68, 330, 365, 388, 436, 462, 476, 478, 480, 483], "easi": [45, 63, 68, 73, 84, 85, 92, 99, 100, 102, 106, 120, 137, 151, 167, 169, 183, 186, 191, 193, 194, 204, 208, 226, 228, 268, 292, 293, 299, 318, 331, 337, 341, 344, 358, 364, 388, 411, 428, 430, 463, 464, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483, 484], "easier": [42, 76, 84, 87, 92, 95, 96, 100, 103, 106, 108, 115, 161, 169, 193, 206, 250, 252, 259, 269, 293, 308, 313, 319, 344, 353, 358, 362, 374, 388, 394, 434, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 483], "easiest": [75, 76, 79, 84, 85, 120, 186, 193, 243, 247, 292, 293], "easili": [7, 23, 42, 72, 73, 76, 78, 84, 85, 94, 99, 101, 102, 103, 106, 139, 151, 158, 167, 169, 176, 200, 225, 230, 255, 297, 319, 331, 344, 362, 388, 428, 435, 451, 461, 462, 465, 467, 471, 475, 476, 478, 479, 482, 483], "east": [94, 183, 366, 376, 384, 387, 440, 466], "east_asian_width": [387, 483], "eastern": [158, 183, 366, 479], "eastlak": 341, "easy_instal": [399, 474], "easydialog": 468, "eat": [102, 275, 483], "eaton": 483, "eax": 98, "eb6ec15daf9546254f0809": 235, "ebad": 212, "ebadf": [212, 328, 479, 482, 483], "ebadfd": 212, "ebadmsg": 212, "ebadr": 212, "ebadrqc": 212, "ebadslt": 212, "ebcdic": [158, 477], "ebfont": 212, "ebi": [467, 468, 471, 475], "ebk": 483, "ebnf": [427, 431], "ebusi": 212, "ebx": 98, "ec": [359, 483], "ecancel": 212, "ecc": [341, 472, 483], "ecdh": [341, 483], "ecdsa": [341, 475, 483], "echild": [212, 213], "echo": [68, 89, 92, 114, 130, 137, 141, 170, 177, 229, 247, 262, 282, 293, 299, 329, 331, 337, 348, 361, 383, 388, 430, 450, 468, 483], "echo_round": 386, "echocancel": 141, "echochar": 177, "echoclientprotocol": 133, "echofilt": 450, "echoserverprotocol": 133, "echrng": 212, "eckhardt": 475, "ecma": 262, "ecmascript": [262, 410], "ecn": [472, 483], "ecol": 378, "ecomm": 212, "econnabort": [212, 213], "econnrefus": [212, 213], "econnreset": [212, 213, 483], "econom": 318, "economi": 344, "ecosystem": 299, "ecu": 337, "ed": [42, 63, 73, 92, 167, 177, 193, 270, 293, 319, 332, 340, 472, 475, 482, 483], "eddi": [474, 481], "edeadlk": 212, "edeadlock": 212, "eden": 474, "edestaddrreq": 212, "edet": 483, "edg": [68, 176, 177, 193, 201, 225, 232, 362, 364, 384, 476, 477, 483], "edison": 483, "edit": [66, 68, 92, 95, 102, 103, 106, 109, 155, 167, 177, 190, 250, 251, 262, 271, 272, 293, 319, 320, 358, 368, 369, 376, 445, 455, 461, 462, 463, 465, 466, 468, 470, 475, 479, 480, 483], "editlin": [320, 456, 483], "editor": [68, 72, 106, 109, 250, 368, 435, 457, 462, 468, 477, 478, 479, 480, 481, 483], "editori": [426, 462], "editorwindow": 483, "editrc": [320, 483], "editwin": 92, "edness": 207, "edom": [15, 212], "edotdot": 212, "edquot": 212, "eds": 154, "edsger": 365, "edt": [183, 366, 476, 479], "edu": [80, 95, 395, 426, 464, 465, 483], "eduardo": 483, "educ": [250, 261, 384], "edward": [463, 464, 466, 467], "ee": [319, 344, 471], "ee8a": [398, 467], "ee8v4": 464, "eel": 446, "eest": 366, "eet": 366, "eexist": [212, 213, 293, 483], "ef": [146, 160, 261, 394, 417], "efanov": 483, "efault": 212, "efbig": 212, "efc_cloexec": 293, "efd_cloexec": [293, 483], "efd_nonblock": [293, 483], "efd_semaphor": [293, 483], "eff": 341, "eff_request_host": 483, "effbot": [467, 469], "effect": [9, 11, 14, 22, 23, 27, 33, 34, 45, 52, 58, 59, 63, 64, 68, 73, 75, 84, 85, 92, 93, 95, 99, 101, 102, 103, 106, 110, 115, 120, 132, 144, 159, 167, 169, 176, 177, 181, 183, 186, 187, 191, 193, 203, 208, 215, 218, 225, 226, 227, 243, 247, 250, 258, 261, 266, 267, 268, 269, 272, 283, 292, 293, 295, 297, 302, 308, 311, 314, 319, 322, 323, 324, 325, 328, 330, 331, 332, 334, 340, 341, 342, 343, 344, 345, 348, 352, 358, 362, 364, 365, 366, 376, 382, 384, 385, 386, 388, 389, 400, 405, 412, 420, 421, 422, 425, 427, 428, 430, 432, 435, 436, 442, 450, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "effective_id": [293, 476], "effici": [13, 22, 25, 33, 49, 60, 63, 64, 68, 92, 95, 99, 107, 109, 133, 151, 158, 183, 186, 191, 216, 219, 220, 226, 235, 251, 261, 283, 284, 293, 299, 307, 319, 328, 329, 341, 344, 347, 364, 365, 405, 413, 428, 464, 466, 468, 470, 474, 475, 476, 477, 478, 481, 482, 483], "efford": 95, "effort": [33, 79, 102, 106, 122, 226, 275, 307, 462, 464, 465, 466, 468, 469, 471, 475, 480, 483], "effron": 483, "efo": 103, "eg": [213, 243, 248, 293, 341, 427, 483], "egeberg": 473, "egg": [102, 103, 160, 175, 190, 193, 218, 225, 226, 251, 258, 296, 307, 319, 321, 330, 344, 348, 358, 381, 385, 386, 389, 390, 395, 413, 422, 432, 441, 443, 446, 449, 462, 483], "egg_info": 251, "eggi": 190, "egid": 293, "egor": 483, "egypt": 366, "eh": [226, 473], "ehlo": [335, 476], "ehlo_or_helo_if_need": 335, "ehlo_resp": 335, "ehopp": 395, "ehostdown": 212, "ehostunreach": 212, "ehresman": [467, 483], "eidrm": 212, "eiffel": 464, "eiffelmethod": 464, "eight": [78, 109, 177, 259, 355, 369, 435, 462, 465, 466, 481, 483], "eik": 483, "eilseq": 212, "einat": [472, 478, 479, 480, 481, 483], "einprogress": [84, 212, 213], "eintr": [23, 68, 212, 213, 283, 469, 483], "einval": [212, 293, 483], "eio": 212, "eisconn": [84, 212], "eisdir": [212, 213], "eisnam": 212, "eisuk": [473, 483], "either": [7, 11, 22, 23, 33, 42, 43, 45, 49, 55, 58, 59, 61, 63, 64, 67, 71, 72, 73, 76, 84, 85, 92, 93, 94, 95, 101, 102, 106, 109, 110, 117, 120, 133, 137, 139, 141, 144, 149, 151, 158, 169, 173, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 195, 196, 197, 199, 202, 205, 206, 207, 208, 209, 213, 215, 221, 225, 235, 242, 243, 245, 247, 248, 250, 252, 255, 257, 258, 259, 261, 262, 267, 268, 269, 270, 271, 272, 278, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 308, 309, 311, 314, 319, 322, 324, 325, 328, 329, 331, 332, 334, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 362, 365, 366, 369, 375, 376, 378, 381, 384, 386, 388, 394, 395, 399, 400, 403, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "eject": [94, 211], "ejectflag": 211, "el": [78, 359, 394, 413, 431], "el2hlt": 212, "el2nsync": 212, "el3hlt": 212, "el3rst": 212, "el_ni": 481, "elabor": [68, 106, 426, 435, 462, 465, 483], "eland": 466, "elaps": [177, 269, 283, 293, 308, 329, 337, 366, 388, 475, 483], "elbirt": 483, "eldon": 469, "elect": 475, "electron": [153, 341, 426], "eleg": [85, 167, 466, 475], "elem": [95, 147, 160, 225, 226, 261, 344, 413, 442, 467, 469, 473, 475], "elem1": [314, 467], "elem2": [314, 467], "element": [5, 7, 13, 33, 35, 42, 49, 54, 55, 59, 61, 63, 64, 68, 85, 102, 103, 106, 108, 109, 117, 120, 133, 139, 141, 151, 155, 160, 161, 176, 178, 181, 186, 190, 191, 193, 195, 196, 203, 205, 207, 209, 220, 225, 226, 228, 242, 245, 255, 261, 267, 272, 273, 275, 283, 292, 293, 304, 314, 318, 319, 322, 332, 335, 337, 343, 344, 345, 347, 348, 352, 366, 369, 375, 376, 378, 381, 384, 385, 386, 388, 394, 402, 408, 411, 412, 415, 416, 417, 419, 420, 425, 427, 428, 429, 430, 431, 440, 442, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 481, 482, 483], "element_cr": [376, 483], "element_factori": 413, "element_index": 345, "element_nam": 376, "element_nod": 410, "element_opt": 376, "elementari": [154, 177, 384], "elementdeclhandl": 314, "elementinclud": [413, 467], "elementnam": 376, "elementpath": [467, 480], "elementtre": [68, 254, 273, 409, 411, 451, 477, 479, 481, 482, 483], "elementum": 149, "elementwis": [462, 463], "eleph": 160, "elev": [461, 483], "eleven": 102, "eleventh": 102, "elf": 483, "elho": 476, "eli": [477, 479, 481, 483], "elibacc": 212, "elibbad": 212, "elibexec": 212, "elibmax": 212, "elibscn": 212, "elicit": 362, "elid": 288, "elif": [78, 85, 89, 92, 95, 102, 110, 122, 183, 190, 200, 228, 250, 289, 319, 340, 342, 344, 352, 358, 427, 428, 431, 432, 435, 441, 467, 476, 483], "elif_stmt": 431, "elig": [299, 430, 475], "elik": [473, 483], "elimin": [68, 93, 101, 186, 190, 250, 251, 271, 384, 428, 456, 466, 476, 481, 483], "eliminate_empty_basic_block": 483, "elink": [403, 467], "elisa": 475, "eliseev": 483, "elixir": 472, "elizabeth": 483, "elizondo": [474, 481], "elli": 483, "ellinghous": [397, 426], "ellington": 483, "elliot": [480, 483], "ellipsi": [16, 63, 68, 87, 122, 168, 193, 274, 299, 307, 377, 378, 385, 386, 431, 435, 450, 466, 470, 474, 481, 483], "ellipsistyp": [168, 385, 472, 483], "ellipt": [341, 476, 483], "elm": 319, "elnam": 314, "elnrng": 212, "elois": 108, "eloop": 212, "elp": 297, "els": [7, 22, 28, 35, 36, 41, 42, 53, 63, 64, 68, 72, 73, 75, 76, 78, 79, 84, 85, 88, 89, 95, 100, 102, 103, 106, 107, 110, 114, 122, 126, 136, 139, 151, 160, 166, 169, 173, 176, 183, 186, 190, 191, 193, 196, 200, 207, 226, 228, 230, 240, 242, 247, 248, 250, 261, 262, 267, 269, 271, 276, 283, 289, 291, 292, 293, 299, 309, 318, 319, 329, 332, 337, 340, 341, 342, 343, 344, 348, 352, 358, 362, 365, 378, 384, 385, 386, 389, 399, 400, 402, 407, 410, 422, 428, 430, 431, 432, 434, 435, 436, 443, 445, 455, 461, 462, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 482, 483], "else_block": 431, "elsewher": [106, 139, 157, 167, 272, 283, 324, 386, 394, 410, 427, 432, 435, 474, 477, 483], "elsiz": 42, "elson": 483, "elt": 122, "elvi": [478, 479, 480, 481, 482, 483], "elzen": 483, "em": [178, 319], "em64t": 355, "emac": [80, 86, 92, 109, 155, 177, 271, 331, 435, 468], "email": [68, 87, 101, 143, 146, 151, 235, 242, 243, 245, 251, 254, 268, 269, 271, 272, 285, 293, 319, 335, 341, 352, 366, 395, 426, 432, 451, 453, 464, 466, 467, 468, 469, 474, 483], "email6": 477, "email_address": 209, "emailaddress": 341, "emailmessag": [151, 194, 196, 197, 200, 201, 202, 205, 207, 208, 242, 395, 477, 479, 483], "emailpolici": [194, 197, 203, 208, 476, 478, 483], "emanuel": [479, 483], "emast": 483, "emax": [186, 476], "emb": [31, 33, 34, 66, 68, 72, 85, 163, 193, 246, 250, 369, 413, 464, 468, 469, 480, 481, 483], "emb_numarg": 72, "embed": [5, 7, 9, 33, 35, 45, 57, 61, 64, 68, 73, 74, 79, 92, 93, 100, 106, 109, 128, 135, 163, 177, 199, 202, 259, 266, 280, 281, 293, 308, 344, 348, 366, 369, 375, 400, 415, 420, 421, 435, 451, 461, 463, 464, 467, 468, 469, 475, 477, 480, 481, 482, 483, 484], "embedd": [68, 244, 283, 458, 481, 483], "embmethod": 72, "embmodul": 72, "embodi": [85, 207, 410], "emelianov": 483, "emerg": [269, 462], "emfil": [212, 483], "emili": [481, 483], "emin": [186, 476], "emiss": [267, 362, 483], "emit": [27, 33, 34, 45, 58, 76, 96, 101, 102, 115, 132, 135, 139, 177, 183, 191, 213, 245, 261, 267, 269, 293, 299, 340, 348, 352, 362, 376, 381, 386, 388, 400, 411, 413, 417, 428, 430, 436, 455, 465, 468, 471, 474, 475, 477, 479, 480, 481, 482, 483], "emlink": 212, "emoji": [109, 475, 481, 483], "emp": 160, "emperor": 266, "emphas": [95, 193, 284, 427, 483], "emphasis": 344, "empir": 343, "employ": [139, 151, 283, 293, 412, 432, 476], "employe": [160, 386, 440, 483], "employeerecord": 160, "empt": 245, "empti": [5, 13, 17, 22, 24, 31, 33, 34, 45, 49, 55, 59, 73, 76, 84, 85, 95, 106, 120, 133, 134, 136, 138, 139, 144, 149, 151, 153, 155, 157, 158, 160, 167, 170, 181, 183, 184, 190, 191, 193, 196, 197, 203, 205, 207, 208, 209, 212, 213, 218, 223, 225, 226, 228, 230, 233, 234, 236, 242, 245, 250, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 288, 292, 293, 296, 297, 299, 309, 314, 316, 319, 325, 328, 329, 330, 331, 332, 333, 334, 337, 340, 341, 344, 347, 348, 352, 358, 359, 362, 364, 365, 369, 375, 376, 380, 382, 384, 385, 386, 387, 388, 394, 395, 400, 405, 408, 410, 411, 413, 419, 420, 422, 423, 427, 428, 430, 431, 432, 435, 436, 440, 442, 449, 455, 456, 461, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "empty_lines_in_valu": 167, "empty_namespac": 410, "empty_slot": 93, "emptylin": 155, "emscripten": [123, 151, 163, 166, 173, 210, 215, 223, 229, 233, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 310, 322, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 356, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "emscripten_vers": 352, "emsdk": 483, "emsgsiz": 212, "emt": 426, "emt19937ar": 426, "emu": 190, "emul": [24, 33, 68, 76, 79, 85, 93, 157, 159, 177, 181, 189, 193, 215, 258, 266, 271, 283, 292, 293, 302, 309, 320, 332, 333, 348, 352, 359, 464, 465, 468, 475, 476, 479, 481, 483], "emultihop": 212, "emx": 465, "en": [71, 95, 109, 110, 160, 230, 235, 240, 288, 395, 460, 461, 467, 475, 476, 483], "en_us": [183, 478, 483], "enabl": [11, 28, 34, 49, 63, 68, 75, 76, 92, 94, 96, 98, 106, 110, 112, 120, 126, 133, 139, 142, 144, 151, 152, 155, 167, 169, 176, 177, 186, 188, 193, 197, 213, 214, 225, 226, 227, 230, 242, 245, 247, 248, 250, 255, 258, 266, 268, 269, 283, 288, 293, 297, 299, 305, 308, 311, 314, 319, 320, 333, 334, 337, 340, 341, 344, 348, 352, 353, 354, 362, 367, 369, 371, 376, 380, 386, 388, 400, 412, 413, 414, 415, 420, 422, 427, 428, 429, 436, 455, 456, 461, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 475, 476, 478, 479, 480, 481, 482, 483], "enable_callback_traceback": 340, "enable_interspersed_arg": 292, "enable_load_extens": [142, 340, 456, 469, 472, 475, 483], "enable_shared_cach": [472, 473, 474, 483], "enable_smtputf8": 483, "enable_speci": 483, "enable_travers": 376, "enable_user_sit": 334, "enablecontrolflowguard": 483, "enabled_extens": 167, "enablereflectionkey": [142, 405, 468, 469], "enametoolong": 212, "enavail": 212, "enc": [121, 341], "enc_key": 235, "encapsul": [11, 84, 85, 88, 93, 100, 112, 114, 155, 202, 208, 248, 286, 305, 335, 352, 410, 414, 416, 419, 427, 432, 436, 466, 467, 468, 469, 477], "enclos": [73, 87, 106, 160, 177, 225, 242, 248, 255, 262, 288, 297, 319, 331, 362, 365, 386, 388, 410, 427, 429, 430, 434, 435, 436, 440, 449, 463, 464, 467, 473, 474, 475, 481, 483], "enclosur": 430, "encod": [5, 14, 16, 22, 23, 24, 26, 31, 33, 34, 45, 49, 58, 59, 66, 68, 71, 77, 84, 87, 92, 98, 101, 102, 106, 110, 120, 121, 126, 133, 136, 141, 143, 145, 146, 149, 150, 151, 153, 156, 167, 170, 175, 176, 177, 178, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 218, 223, 225, 230, 234, 235, 242, 244, 248, 250, 251, 252, 253, 255, 256, 258, 265, 266, 267, 268, 269, 270, 276, 285, 293, 295, 296, 297, 298, 299, 304, 307, 309, 314, 317, 330, 335, 337, 341, 344, 347, 348, 349, 352, 356, 358, 359, 360, 362, 369, 377, 378, 386, 395, 397, 407, 408, 411, 413, 415, 416, 417, 419, 420, 421, 422, 428, 432, 445, 446, 455, 461, 462, 463, 464, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "encode_7or8bit": 198, "encode_base64": [198, 206], "encode_basestring_ascii": 483, "encode_chunk": 242, "encode_func": 462, "encode_noop": 198, "encode_quopri": 198, "encode_rfc2231": 209, "encode_threshold": 469, "encodebyt": [143, 158, 482, 483], "encodedfil": 158, "encodedfiletest": 483, "encodeprior": 269, "encodestr": [317, 482, 483], "encoding_typ": 341, "encodingdecl": [314, 411, 413], "encodingmap": 483, "encodingnam": 455, "encodings_map": [276, 483], "encodingwarn": [34, 68, 213, 258, 455, 483], "encompass": 483, "encount": [5, 9, 55, 63, 106, 109, 120, 151, 153, 186, 193, 199, 205, 208, 212, 213, 228, 240, 244, 255, 267, 268, 272, 292, 297, 299, 311, 314, 319, 331, 332, 338, 340, 344, 348, 359, 376, 384, 386, 388, 400, 413, 415, 432, 456, 462, 465, 466, 467, 468, 474, 475, 476, 481, 483], "encourag": [33, 58, 73, 77, 292, 328, 329, 331, 353, 386, 405, 411, 415, 434, 456, 462, 463, 470, 481, 483], "encrypt": [158, 173, 233, 248, 268, 288, 305, 335, 339, 341, 422, 462, 464, 465, 469, 475, 476, 477, 483], "end": [5, 7, 9, 13, 18, 23, 24, 28, 31, 33, 34, 37, 39, 42, 56, 58, 60, 63, 64, 66, 68, 72, 73, 75, 78, 79, 80, 84, 89, 94, 95, 96, 100, 101, 102, 105, 106, 109, 116, 117, 120, 133, 138, 139, 146, 149, 151, 153, 155, 158, 159, 160, 163, 167, 169, 175, 176, 177, 178, 182, 183, 186, 190, 191, 193, 194, 196, 205, 207, 208, 209, 213, 215, 225, 226, 234, 235, 240, 242, 243, 245, 247, 248, 250, 255, 258, 262, 267, 268, 269, 270, 271, 278, 279, 282, 283, 284, 288, 292, 293, 295, 297, 301, 302, 305, 308, 309, 311, 314, 319, 320, 328, 330, 331, 332, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 362, 364, 366, 371, 376, 377, 378, 380, 381, 384, 388, 395, 400, 408, 410, 411, 413, 415, 416, 417, 421, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "end_async_for": [191, 481, 483], "end_col_offset": [122, 191, 431, 481, 483], "end_column": [13, 428], "end_docu": 412, "end_el": [314, 412], "end_fil": 384, "end_fin": [481, 483], "end_for": 191, "end_head": [245, 476], "end_lin": [13, 428], "end_lineno": [122, 191, 213, 381, 431, 472, 481, 483], "end_n": [413, 481, 483], "end_offset": [213, 381, 472, 483], "end_poli": 384, "end_send": [191, 474], "end_tim": [126, 139], "endcdata": 415, "endcdatasectionhandl": 314, "enddoctypedeclhandl": 314, "enddocu": 415, "enddtd": 415, "endel": [415, 462], "endelementhandl": 314, "endelementn": 415, "endhead": [242, 479], "endian": [4, 25, 31, 42, 64, 84, 107, 109, 141, 153, 158, 176, 230, 259, 295, 347, 349, 352, 398, 405, 452, 477, 483], "endidx": 155, "endif": [73, 240, 319, 456, 472, 473, 481, 482], "endless": [95, 261, 462, 464, 466, 467, 483], "endmark": [377, 378, 431], "endnamespacedeclhandl": 314, "endors": [426, 483], "endpo": 319, "endpoint": [133, 212, 242, 337, 384, 475, 483], "endprefixmap": 415, "endptr": 18, "endswith": [299, 344, 399, 462, 465, 467, 468, 478, 483], "endtim": [477, 483], "endtransf": 483, "endwin": [92, 177], "energet": 141, "energi": 141, "enetdown": 212, "enetreset": 212, "enetunreach": [212, 483], "enfil": 212, "enforc": [22, 94, 186, 196, 205, 225, 243, 293, 322, 342, 344, 384, 386, 410, 411, 413, 427, 430, 436, 455, 463, 464, 467, 470, 475, 476, 483], "engag": 352, "engin": [84, 95, 99, 106, 186, 266, 319, 340, 369, 376, 413, 415, 462, 464, 466, 468, 469, 478, 483], "english": [85, 102, 109, 292, 340, 364, 366, 384, 434, 435, 469, 470, 478, 483], "english_unit": 452, "enhanc": [68, 80, 87, 92, 95, 102, 103, 175, 226, 245, 268, 283, 341, 348, 362, 376, 384, 386, 426, 430, 435, 462, 463, 464, 466, 467, 470, 471, 475, 476, 477, 478, 483, 484], "enjoy": [103, 413, 474], "enlarg": [176, 483], "enoano": 212, "enobuf": [133, 212, 483], "enocsi": 212, "enodata": [212, 293], "enodev": 212, "enoent": [212, 213, 328, 476, 483], "enoexec": 212, "enokey": 483, "enolck": 212, "enolink": 212, "enomem": [212, 483], "enomsg": 212, "enonet": 212, "enopkg": 212, "enoprotoopt": 212, "enorm": 95, "enosi": [212, 483], "enospc": 212, "enosr": 212, "enostr": 212, "enotblk": 212, "enotcap": [212, 213, 483], "enotconn": [212, 477], "enotdir": [212, 213], "enotempti": 212, "enotnam": 212, "enotrecover": 212, "enotsock": 212, "enotsup": 212, "enotti": [212, 483], "enotuniq": 212, "enough": [5, 42, 45, 59, 63, 64, 84, 85, 92, 93, 99, 101, 102, 103, 158, 176, 183, 190, 199, 201, 247, 250, 261, 265, 270, 292, 293, 299, 308, 337, 339, 345, 348, 362, 364, 369, 385, 462, 463, 464, 465, 470, 476, 483], "enq": 178, "enqueu": [102, 269, 283, 483], "enqueue_sentinel": [102, 269], "enquiri": 178, "enrich": [72, 483], "enrico": 483, "enriqu": 483, "ensu": [33, 475], "ensur": [5, 33, 34, 42, 45, 49, 51, 58, 59, 63, 66, 68, 73, 76, 79, 84, 92, 99, 100, 101, 102, 103, 106, 120, 132, 133, 137, 158, 166, 169, 176, 181, 183, 186, 193, 196, 205, 226, 255, 262, 267, 269, 270, 278, 283, 292, 293, 299, 324, 337, 340, 341, 344, 348, 352, 361, 362, 364, 369, 382, 386, 388, 400, 405, 413, 419, 421, 422, 428, 430, 455, 456, 461, 462, 465, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ensure_app": 102, "ensure_ascii": [262, 478, 483], "ensure_directori": [399, 483], "ensure_dis": 483, "ensure_futur": [129, 139, 478, 479, 483], "ensure_valu": 292, "ensurepip": [68, 111, 142, 156, 192, 254, 399, 456, 472, 483], "ensurepiptest": 483, "ent": 240, "entail": [33, 34, 455], "enter": [33, 34, 68, 79, 84, 85, 86, 92, 95, 109, 135, 144, 151, 155, 157, 159, 169, 177, 189, 247, 258, 282, 292, 293, 297, 312, 325, 335, 340, 341, 344, 352, 359, 365, 369, 375, 384, 388, 400, 427, 428, 429, 441, 443, 452, 455, 464, 465, 467, 475, 476, 477, 480, 481, 483], "enter_async_context": [169, 473, 483], "enter_context": [169, 473, 483], "enter_result": 169, "enterab": [325, 476], "enterasynccontext": [388, 473, 483], "enterclasscontext": [388, 473, 483], "entercontext": [388, 473, 483], "entermodulecontext": [388, 473, 483], "enterpris": [303, 483], "enterprise_d": 386, "entertain": [93, 151], "enthought": [160, 461], "enthusiast": 103, "entir": [5, 42, 63, 73, 75, 84, 85, 92, 93, 99, 100, 106, 109, 112, 151, 169, 177, 184, 196, 200, 205, 207, 216, 230, 235, 242, 247, 258, 259, 261, 266, 267, 269, 270, 271, 278, 288, 292, 293, 295, 319, 322, 331, 332, 340, 341, 344, 345, 352, 355, 358, 364, 365, 369, 376, 384, 387, 388, 400, 405, 408, 410, 413, 416, 426, 427, 429, 432, 435, 436, 446, 455, 461, 463, 465, 466, 467, 468, 469, 471, 474, 476, 477, 480, 483], "entiti": [68, 87, 106, 110, 238, 240, 242, 254, 268, 273, 314, 395, 409, 410, 411, 412, 414, 415, 416, 417, 426, 465, 476, 479, 480, 481, 483], "entity_nod": 410, "entitydeclhandl": 314, "entitydef": 239, "entitynam": 314, "entityrefer": 411, "entityresolv": [68, 273, 416], "entrant": [267, 483], "entri": [5, 13, 22, 26, 27, 31, 33, 45, 49, 51, 58, 63, 68, 73, 75, 87, 89, 93, 94, 95, 98, 102, 109, 110, 120, 139, 144, 158, 160, 167, 169, 176, 177, 181, 184, 186, 191, 193, 195, 216, 225, 226, 230, 233, 236, 243, 247, 248, 250, 255, 261, 265, 268, 269, 270, 271, 272, 280, 281, 283, 284, 292, 293, 299, 302, 307, 308, 314, 316, 319, 321, 324, 330, 331, 333, 335, 339, 340, 341, 344, 352, 354, 358, 362, 365, 369, 375, 376, 378, 381, 384, 385, 400, 403, 405, 421, 422, 425, 429, 430, 452, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 478, 479, 480, 481, 483], "entropi": [293, 341, 479, 483], "entry_find": 236, "entry_func": 320, "entry_nam": 51, "entry_point": [251, 483], "entry_points_select": 251, "entryconfig": 369, "entryconfigur": 483, "entrypoint": [251, 340, 472, 474, 483], "entrythingi": 369, "enum": [36, 42, 68, 97, 120, 163, 182, 241, 254, 255, 262, 308, 311, 319, 333, 341, 344, 385, 428, 441, 476, 483], "enum_certif": [341, 477, 483], "enum_crl": [341, 477, 483], "enum_nam": 472, "enumcheck": [211, 473], "enumclass": [94, 483], "enumer": [13, 22, 23, 27, 68, 78, 93, 95, 108, 109, 182, 225, 226, 261, 283, 311, 344, 365, 382, 405, 422, 441, 442, 450, 452, 461, 473, 474, 477, 479, 483, 484], "enumkey": [142, 405], "enummeta": [211, 428, 473, 474, 483], "enumnam": 94, "enumtyp": [68, 211, 473], "enumvalu": [142, 405], "env": [84, 102, 109, 142, 167, 200, 293, 296, 344, 348, 395, 399, 421, 438, 448, 453, 455, 460, 461, 465, 466, 473, 481, 483], "env_chang": 483, "env_dir": 399, "env_ex": 399, "env_exec_cmd": 399, "env_nam": 399, "env_var": 362, "envar": 483, "envbuild": [68, 192, 477, 483], "envdir": 381, "envelop": [196, 201, 205, 207, 248, 271, 335, 483], "environ": [31, 33, 34, 42, 63, 66, 68, 84, 85, 87, 93, 101, 102, 109, 110, 111, 118, 151, 158, 160, 163, 176, 177, 182, 186, 210, 214, 225, 228, 230, 235, 245, 247, 251, 266, 268, 280, 292, 295, 297, 299, 306, 308, 309, 311, 313, 315, 325, 332, 337, 338, 344, 348, 352, 355, 358, 362, 366, 369, 380, 382, 388, 389, 395, 399, 400, 403, 405, 407, 410, 420, 428, 429, 432, 438, 448, 453, 455, 456, 457, 458, 459, 462, 463, 464, 465, 466, 468, 470, 471, 472, 474, 475, 476, 477, 480, 481, 482, 483], "environb": [293, 348, 475, 483], "environment": [293, 395, 455, 483], "environmenterror": [213, 450, 476], "environmentvarguard": [362, 468], "envvar": [266, 362, 395], "enxio": 212, "eo": 103, "eof": [66, 107, 126, 130, 133, 136, 137, 149, 155, 157, 168, 193, 213, 223, 225, 258, 270, 293, 309, 328, 331, 337, 340, 341, 359, 424, 455, 467, 472, 476, 483], "eof_receiv": [130, 133], "eoferror": [23, 24, 41, 121, 127, 149, 153, 157, 213, 223, 225, 234, 270, 274, 283, 299, 335, 359, 450, 470], "eol": [472, 483], "eoln": 482, "eopnotsupp": 212, "eot": [107, 178], "eoverflow": 212, "eownerdead": 212, "eperm": [212, 213, 476, 483], "epfnosupport": 212, "ephemer": 362, "epicuri": 200, "epilog": [68, 118, 205, 292, 467, 475], "epilogu": [196, 205], "epip": [212, 213, 333], "epiphani": 403, "epler": 463, "epoch": [209, 243, 248, 271, 288, 340, 358, 366, 419, 463, 483], "epol": [68, 329, 468, 477, 478, 482, 483], "epoll_cloexec": 328, "epoll_create1": 328, "epollerr": 328, "epollet": 328, "epollexclus": [328, 483], "epollhup": 328, "epollin": 328, "epollmsg": 328, "epolloneshot": 328, "epollout": 328, "epollpri": 328, "epollrdband": 328, "epollrdhup": [328, 483], "epollrdnorm": 328, "epollselector": [329, 480, 483], "epollwrband": 328, "epollwrnorm": 328, "eponym": 483, "eprefix": 456, "eproto": 212, "eprotonosupport": 212, "eprototyp": 212, "eprt": 223, "eps": 251, "epsilon": [275, 352, 468], "epsv": 223, "eptag": 483, "epydoc": 84, "eq": [95, 122, 181, 291, 386, 431, 483], "eq_bitwise_or": 431, "eq_default": 386, "eqequ": 377, "eqful": [212, 483], "equal": [5, 7, 25, 33, 34, 37, 42, 54, 59, 63, 64, 66, 68, 75, 85, 89, 94, 95, 102, 112, 120, 122, 132, 133, 141, 147, 149, 160, 170, 176, 177, 181, 183, 186, 190, 193, 195, 196, 202, 208, 216, 221, 225, 226, 228, 243, 259, 261, 266, 272, 275, 278, 293, 295, 297, 308, 319, 331, 334, 337, 340, 341, 344, 346, 347, 352, 362, 364, 365, 376, 377, 378, 382, 384, 386, 387, 388, 400, 408, 410, 412, 413, 423, 427, 428, 430, 431, 432, 435, 436, 441, 450, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 479, 481, 482, 483], "equat": 481, "equidistribut": 318, "equiprob": 481, "equiv": 395, "equival": [5, 7, 9, 13, 22, 23, 24, 33, 42, 45, 47, 49, 54, 55, 58, 60, 61, 63, 64, 68, 73, 76, 78, 94, 95, 100, 106, 112, 115, 117, 120, 133, 137, 139, 149, 158, 163, 167, 169, 176, 177, 178, 181, 183, 186, 190, 191, 196, 204, 205, 207, 225, 226, 228, 234, 235, 243, 244, 245, 247, 250, 251, 253, 255, 259, 261, 266, 267, 268, 269, 270, 271, 275, 283, 292, 293, 299, 301, 302, 308, 319, 321, 324, 329, 337, 338, 344, 345, 348, 352, 355, 358, 362, 365, 366, 369, 381, 384, 385, 386, 387, 388, 394, 403, 405, 410, 422, 427, 428, 430, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 482, 483], "er": 483, "era": [266, 467], "era_d_fmt": 266, "era_d_t_fmt": 266, "era_t_fmt": 266, "erad": 483, "erang": [18, 212], "eras": [85, 92, 102, 177, 344, 359], "erasechar": 177, "ercim": 426, "ere": 240, "eremchg": 212, "eremot": 212, "eremoteio": 212, "erestart": 212, "erf": [93, 275, 469, 475, 480, 483], "erfc": [275, 469, 475, 480, 483], "ergo": 483, "ergonom": 474, "erhard": 466, "eri": 343, "eric": [85, 92, 175, 177, 296, 324, 413, 442, 462, 463, 466, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "eric_idl": 481, "erick": 483, "ericsnowcurr": 474, "erik": [468, 473, 474, 480, 483], "eriksson": [478, 483], "erlend": [472, 473, 474, 483], "erof": 212, "erow": 378, "err": [92, 177, 213, 228, 269, 314, 348, 388, 419, 426, 443, 476], "err_lib_ssl": 483, "err_msg": [34, 352, 362], "err_traceback": 75, "err_typ": 75, "err_valu": 75, "errant": 483, "errata": [243, 262], "errcheck": 176, "errcod": [66, 419], "errmsg": 419, "errno": [15, 18, 23, 35, 51, 68, 73, 84, 118, 133, 142, 176, 188, 213, 215, 250, 254, 293, 314, 328, 333, 337, 341, 352, 362, 443, 468, 473, 476, 478, 480, 483], "erron": [176, 292, 384, 425, 462, 477, 478, 480, 482, 483], "error": [5, 7, 9, 13, 14, 17, 18, 22, 24, 25, 27, 28, 31, 32, 33, 34, 35, 36, 39, 41, 42, 45, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 74, 75, 76, 79, 84, 87, 89, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 115, 119, 120, 126, 132, 133, 137, 141, 142, 143, 144, 145, 146, 149, 151, 155, 157, 159, 163, 167, 169, 171, 175, 176, 177, 181, 183, 184, 188, 190, 193, 194, 196, 197, 201, 202, 203, 205, 207, 208, 209, 212, 213, 214, 216, 218, 225, 226, 228, 229, 234, 244, 245, 247, 248, 250, 252, 254, 256, 257, 258, 259, 262, 265, 266, 267, 268, 269, 270, 271, 273, 275, 278, 283, 285, 287, 288, 290, 293, 295, 296, 299, 302, 305, 308, 311, 319, 322, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 349, 352, 356, 359, 360, 362, 365, 369, 373, 376, 381, 384, 386, 388, 392, 394, 395, 397, 399, 400, 401, 403, 405, 406, 407, 408, 410, 412, 413, 414, 415, 416, 419, 420, 421, 422, 424, 427, 428, 429, 430, 431, 435, 436, 442, 445, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "error_access_deni": 483, "error_bad_netpath": 483, "error_bad_pathnam": 483, "error_bodi": 407, "error_callback": 283, "error_cod": 388, "error_content_typ": 245, "error_handl": [158, 414], "error_head": 407, "error_invalid_paramet": 348, "error_lead": 331, "error_messag": 296, "error_message_format": [245, 477], "error_network_access_deni": 483, "error_no_more_item": 483, "error_output": 407, "error_perm": 223, "error_po": 59, "error_proto": [223, 305, 476], "error_receiv": [130, 133], "error_repli": 223, "error_status": 407, "error_temp": 223, "error_traceback": 63, "error_typ": 63, "error_valu": 63, "errorbyteindex": 314, "errorcatchingargumentpars": 120, "errorcod": [212, 314], "errorcolumnnumb": 314, "errorhandl": [68, 273, 414, 416, 455, 468], "errorlevel": 358, "errorlinenumb": 314, "errorstr": 314, "errorstream": 407, "errortoken": [377, 474], "errtext": 362, "erupt": 464, "ervo": 106, "eryk": [109, 473, 483], "eryksun": 483, "es": [5, 85, 319, 344, 464, 468, 469, 470, 472, 474, 483], "esc": 178, "escal": 483, "escap": [16, 42, 49, 59, 68, 73, 78, 85, 92, 102, 106, 109, 120, 137, 158, 167, 175, 177, 178, 190, 208, 225, 231, 238, 247, 250, 258, 262, 288, 319, 321, 331, 344, 345, 348, 366, 384, 386, 394, 417, 419, 428, 435, 449, 462, 463, 466, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "escape4chm": 483, "escape_decod": 483, "escape_encod": 483, "escapechar": [175, 483], "escapedquot": 331, "eschew": 299, "eshutdown": [212, 213], "esmtp": 335, "esmtp_featur": 335, "esocktnosupport": 212, "esoter": [464, 467], "espeak": 102, "especi": [33, 63, 72, 73, 76, 84, 85, 99, 109, 167, 169, 183, 186, 193, 205, 247, 262, 268, 288, 293, 297, 308, 311, 313, 314, 333, 341, 342, 348, 352, 362, 384, 410, 427, 432, 434, 462, 464, 465, 468, 469, 470, 475, 476, 477, 478, 479, 481, 483], "esperanto": 158, "espip": 212, "esrch": [212, 213], "esrmnt": 212, "essay": 103, "essenc": 95, "essenti": [33, 73, 85, 93, 133, 167, 215, 225, 250, 268, 269, 288, 292, 293, 324, 330, 338, 343, 352, 388, 411, 422, 433, 462, 464, 469, 470, 476, 477, 482, 483], "est": [183, 366, 475, 479], "establish": [101, 193, 247, 248, 269, 283, 299, 302, 305, 319, 328, 335, 341, 359, 395, 405, 427, 428, 429, 469, 475, 483], "estal": 212, "estim": [49, 68, 186, 261, 288, 290, 318, 362, 428, 483], "estonian": 483, "estrpip": 212, "et": [5, 79, 102, 181, 337, 341, 376, 413, 464, 467, 469, 472, 483], "etag": 483, "etb": 178, "etc": [5, 34, 64, 79, 84, 85, 94, 95, 101, 102, 109, 110, 120, 133, 141, 146, 151, 155, 206, 225, 243, 244, 247, 252, 255, 259, 266, 267, 269, 272, 276, 281, 283, 292, 293, 296, 303, 307, 308, 310, 311, 319, 329, 334, 337, 340, 341, 358, 365, 366, 369, 375, 384, 386, 388, 394, 410, 422, 428, 431, 436, 451, 456, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483], "etcetera": 483, "etern": [106, 139], "eth_p_al": [337, 483], "ethan": [472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "ethernet": 337, "ethernet_32770": 337, "ethertype_": [337, 483], "ethertype_arp": 337, "ethertype_ip": 337, "ethertype_ipv6": 337, "ethertype_vlan": 337, "ethnomathemat": 384, "etim": 212, "etimedout": [212, 213, 468, 483], "etini": 186, "etoomanyref": 212, "etop": 186, "etre": [68, 254, 273, 409, 411, 451, 467, 469, 475, 479, 481, 482, 483], "etter": 387, "eturn": 297, "etx": 178, "etxtbsi": 212, "etyp": [376, 381, 472], "euc": [158, 195, 466], "euc_jis_2004": 158, "euc_jisx0213": 158, "euc_jp": 158, "euc_kr": 158, "euccn": 158, "eucgb2312": 158, "eucjis2004": 158, "eucjisx0213": 158, "eucjp": 158, "euckr": 158, "euclean": 212, "euclidean": [275, 481, 483], "eudora": 305, "eugen": [480, 483], "euid": 293, "euismod": 149, "eunatch": 212, "eunic": [481, 483], "eur": 483, "euresti": 481, "euro": [158, 469, 470], "europ": [158, 166, 366, 425, 469], "europe_berlin_pkl": 425, "europe_berlin_pkl_nc": 425, "european": [158, 469], "europython": 109, "euser": 212, "ev": [102, 341], "eval": [63, 85, 88, 112, 121, 122, 144, 157, 159, 213, 225, 255, 268, 297, 299, 307, 327, 344, 375, 381, 429, 431, 435, 436, 437, 440, 444, 450, 462, 466, 468, 470, 471, 472, 473, 474, 475, 483], "eval_fram": [33, 482], "eval_rul": 431, "eval_str": 255, "evalu": [13, 22, 33, 52, 56, 66, 68, 73, 85, 94, 95, 96, 113, 122, 144, 167, 225, 230, 261, 267, 268, 275, 283, 293, 297, 323, 324, 344, 352, 365, 369, 386, 394, 427, 428, 433, 435, 436, 446, 449, 456, 462, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 477, 481, 482, 483], "evan": [467, 482, 483], "even": [5, 9, 23, 26, 31, 33, 34, 42, 45, 58, 59, 63, 64, 73, 76, 84, 85, 93, 94, 95, 96, 100, 102, 103, 106, 109, 112, 120, 132, 139, 146, 151, 158, 161, 163, 167, 169, 176, 177, 181, 183, 186, 193, 194, 196, 199, 205, 206, 207, 208, 213, 214, 215, 218, 221, 225, 226, 235, 243, 247, 250, 251, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 275, 283, 292, 293, 297, 299, 307, 308, 314, 318, 319, 331, 332, 333, 334, 335, 337, 340, 341, 343, 344, 345, 347, 352, 353, 354, 358, 362, 364, 365, 366, 369, 376, 382, 384, 386, 387, 388, 395, 399, 400, 403, 405, 411, 415, 417, 419, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 482, 483], "event": [13, 22, 24, 27, 31, 33, 42, 58, 59, 66, 68, 73, 81, 92, 98, 101, 115, 121, 123, 124, 126, 129, 130, 132, 133, 135, 136, 137, 139, 142, 144, 164, 176, 177, 185, 189, 191, 222, 227, 254, 257, 267, 269, 274, 281, 283, 293, 308, 314, 315, 325, 328, 329, 333, 335, 341, 342, 352, 358, 362, 368, 371, 385, 388, 395, 410, 411, 412, 413, 414, 415, 416, 417, 426, 428, 430, 446, 452, 455, 461, 462, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "event_horizon": 472, "event_read": [329, 333], "event_set": 353, "event_writ": 329, "eventcod": 73, "eventfd": [293, 472, 483], "eventfd2": 472, "eventfd_read": 293, "eventfd_writ": 293, "eventlist": 328, "eventloop": [132, 483], "eventmap": 281, "eventmask": [328, 468], "eventtest": 474, "eventtyp": 483, "eventu": [5, 33, 73, 76, 79, 84, 106, 133, 139, 193, 232, 242, 247, 250, 267, 283, 293, 309, 395, 411, 419, 432, 435, 463, 464, 466, 467, 468, 469, 470, 474, 477, 479, 483], "ever": [73, 85, 93, 94, 177, 199, 201, 250, 261, 282, 283, 341, 348, 384, 386, 461, 464, 465, 467, 468, 469, 470, 477, 483], "everi": [33, 42, 49, 58, 73, 75, 77, 85, 93, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 132, 139, 146, 158, 167, 170, 176, 177, 183, 184, 186, 190, 191, 193, 194, 196, 205, 214, 225, 230, 243, 245, 247, 251, 255, 259, 261, 262, 267, 269, 278, 283, 292, 293, 295, 302, 314, 319, 332, 333, 334, 337, 338, 340, 344, 348, 356, 364, 365, 376, 384, 388, 395, 400, 407, 408, 410, 413, 419, 425, 427, 428, 432, 434, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "everybodi": [151, 244], "everyday": [93, 225], "everyon": [343, 477], "everyth": [63, 73, 76, 85, 92, 102, 103, 110, 120, 193, 208, 220, 225, 247, 268, 292, 293, 296, 299, 319, 332, 333, 337, 359, 369, 400, 419, 434, 435, 468, 470, 474, 476, 483], "everywher": [85, 362, 483], "evgeni": [474, 482, 483], "evict": 226, "evid": 478, "evil": [167, 469, 483], "evilzero": 483, "evolut": [462, 463], "evolv": [100, 257, 268, 432], "evp": 483, "ewe": [462, 476], "ewert": 476, "ewouldblock": [212, 213], "ewt": 467, "ex": [23, 34, 42, 102, 320, 337, 344, 419, 431, 455, 467, 474, 478, 479, 482, 483], "ex_2": 103, "ex_5": 103, "ex_6": 103, "ex_9": 103, "ex_cantcreat": 293, "ex_config": 293, "ex_dataerr": 293, "ex_ioerr": 293, "ex_nohost": 293, "ex_noinput": 293, "ex_noperm": 293, "ex_notfound": 293, "ex_nous": 293, "ex_ok": 293, "ex_oserr": 293, "ex_osfil": 293, "ex_protocol": 293, "ex_softwar": 293, "ex_tempfail": 293, "ex_unavail": 293, "ex_usag": 293, "exacerb": 483, "exact": [5, 7, 9, 11, 13, 24, 28, 39, 47, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 100, 102, 103, 106, 109, 112, 120, 133, 147, 149, 152, 169, 176, 177, 183, 186, 191, 193, 196, 201, 203, 205, 207, 213, 221, 225, 228, 243, 245, 250, 255, 267, 268, 269, 270, 271, 275, 283, 290, 292, 293, 295, 299, 314, 319, 322, 328, 335, 337, 338, 343, 344, 345, 346, 347, 348, 352, 355, 361, 364, 365, 369, 378, 381, 386, 388, 389, 411, 413, 421, 422, 427, 430, 432, 435, 436, 444, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 483], "exact_typ": 378, "examin": [63, 68, 72, 85, 101, 109, 181, 187, 255, 293, 297, 308, 331, 332, 333, 335, 344, 352, 362, 410, 463, 465, 467, 468, 483], "exampl": [5, 7, 22, 23, 33, 34, 35, 42, 45, 51, 58, 61, 63, 64, 66, 68, 72, 73, 74, 75, 77, 84, 85, 92, 94, 95, 96, 99, 100, 101, 103, 104, 106, 109, 110, 112, 117, 119, 120, 122, 126, 128, 133, 134, 135, 136, 137, 138, 139, 141, 144, 149, 151, 158, 159, 160, 163, 170, 173, 175, 176, 177, 181, 182, 183, 184, 186, 187, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 280, 282, 283, 284, 288, 293, 295, 296, 297, 299, 305, 307, 308, 311, 313, 314, 315, 318, 320, 321, 326, 329, 331, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 359, 362, 363, 364, 365, 366, 369, 375, 376, 378, 380, 382, 384, 385, 386, 387, 388, 394, 398, 400, 403, 407, 408, 410, 411, 412, 413, 415, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 443, 444, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "example1": 472, "example2": 472, "example3": 472, "example_barri": 138, "example_method": 100, "example_method_doc": 100, "example_nt": 483, "exampleclass": 389, "examplescreen": 384, "exampleservic": 420, "exampleturtl": 384, "examplexml": 413, "exc": [14, 23, 33, 47, 112, 122, 133, 139, 166, 169, 213, 381, 388, 390, 428, 436, 443, 468, 470, 472, 474, 476, 483], "exc_clear": [465, 470], "exc_detail": 169, "exc_info": [23, 33, 35, 73, 101, 102, 112, 144, 152, 191, 193, 267, 269, 332, 352, 358, 388, 405, 407, 427, 428, 450, 465, 467, 468, 470, 473, 478, 483], "exc_msg": 193, "exc_tb": [169, 333, 344], "exc_text": [102, 267, 269, 483], "exc_traceback": [112, 352, 362, 365, 381, 470, 473, 483], "exc_typ": [112, 169, 333, 344, 352, 362, 365, 381, 390, 428, 470, 473, 483], "exc_val": [333, 344], "exc_valu": [112, 352, 362, 365, 381, 428, 469, 470, 473, 483], "exceed": [5, 59, 139, 167, 186, 212, 213, 225, 269, 284, 293, 299, 307, 322, 344, 364, 365, 381, 410, 422, 465, 466, 468, 469, 479, 480, 483], "excel": [42, 109, 175, 193, 200, 384, 465, 466, 470], "excel_tab": 175, "except": [2, 5, 7, 9, 11, 13, 14, 17, 22, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 39, 41, 45, 47, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 74, 75, 76, 78, 79, 84, 87, 92, 93, 94, 95, 96, 99, 100, 103, 106, 109, 112, 114, 115, 117, 118, 122, 125, 126, 127, 129, 133, 134, 135, 137, 138, 139, 140, 141, 144, 146, 149, 150, 151, 152, 153, 157, 158, 159, 160, 161, 166, 167, 170, 171, 173, 175, 176, 177, 178, 181, 182, 183, 184, 186, 187, 188, 190, 191, 194, 195, 196, 199, 200, 201, 205, 206, 207, 208, 210, 212, 214, 215, 218, 223, 225, 226, 228, 229, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 254, 255, 256, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 278, 279, 281, 283, 286, 287, 288, 293, 295, 297, 299, 302, 304, 305, 308, 311, 314, 315, 316, 320, 322, 323, 325, 328, 329, 330, 331, 332, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 349, 352, 353, 357, 358, 361, 362, 363, 364, 365, 366, 367, 369, 375, 378, 379, 381, 382, 385, 386, 388, 389, 390, 393, 394, 395, 397, 399, 400, 401, 403, 405, 407, 408, 410, 411, 413, 414, 415, 416, 419, 420, 422, 423, 424, 426, 428, 429, 430, 431, 432, 434, 435, 436, 438, 439, 441, 445, 450, 452, 455, 456, 461, 462, 463, 464, 465, 466, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "except_block": 431, "except_star_block": 431, "excepthandl": 122, "excepthandler_ti": 431, "excepthook": [142, 152, 352, 362, 365, 450, 463, 472, 481, 482, 483], "exception1": 467, "exception2": 467, "exception_handl": [353, 483], "exception_hierarchi": 468, "exception_t": 473, "exceptiongroup": [23, 126, 139, 191, 213, 337, 381, 427, 443, 473, 474, 483], "exceptiont": 13, "excerpt": [152, 186, 481], "excess": [42, 85, 112, 133, 146, 176, 186, 242, 267, 321, 366, 427, 430, 483], "exchang": [68, 72, 164, 176, 212, 235, 278, 293, 341, 347, 358, 365, 468, 469, 475, 476, 483], "excinfo": 332, "excit": [93, 462, 464], "exclam": [271, 297, 345, 376, 377, 406, 435], "exclud": [5, 34, 59, 64, 100, 102, 106, 163, 181, 183, 191, 193, 227, 235, 247, 271, 275, 279, 281, 293, 308, 314, 352, 358, 365, 366, 376, 382, 413, 421, 422, 426, 427, 428, 430, 442, 449, 455, 468, 469, 475, 476, 477, 478, 480, 481, 482, 483], "exclude_attr": 413, "exclude_empti": 193, "exclude_tag": 413, "excludevers": 461, "exclus": [42, 47, 63, 68, 106, 118, 149, 177, 186, 215, 258, 262, 269, 270, 271, 291, 292, 293, 319, 340, 343, 358, 380, 382, 403, 422, 426, 428, 430, 468, 476, 477, 478, 481, 482, 483], "exclusive_group": 120, "exclusive_upper_bound": 326, "excursus": [68, 448, 458], "excutor": 130, "exdev": [212, 293], "exe": [68, 86, 104, 106, 247, 269, 283, 293, 294, 332, 334, 348, 399, 422, 438, 446, 448, 456, 461, 464, 469, 475, 479, 480, 483], "exec": [33, 73, 84, 102, 112, 122, 142, 144, 157, 159, 193, 212, 213, 225, 227, 250, 293, 297, 308, 344, 348, 351, 352, 362, 369, 378, 380, 381, 382, 428, 429, 436, 437, 438, 440, 450, 456, 462, 463, 464, 466, 467, 470, 472, 477, 478, 483], "exec_": 102, "exec_bodi": 385, "exec_builtin_or_dynam": 483, "exec_funct": 483, "exec_modul": [45, 100, 250, 423, 432, 472, 474, 477, 478, 479, 483], "exec_prefix": [33, 34, 35, 283, 334, 352, 354, 380, 399, 450, 455, 456, 460, 474, 475], "execfil": [112, 465, 466, 470, 483], "execl": [292, 293], "execlp": 293, "execut": [13, 22, 23, 26, 27, 33, 34, 45, 49, 51, 53, 59, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 93, 95, 96, 102, 106, 109, 114, 115, 120, 128, 133, 135, 137, 139, 142, 144, 151, 155, 157, 158, 160, 163, 166, 169, 170, 176, 187, 191, 201, 213, 225, 226, 234, 245, 248, 250, 254, 255, 258, 266, 267, 268, 269, 272, 281, 283, 292, 293, 297, 299, 301, 303, 308, 309, 313, 315, 320, 322, 324, 325, 328, 330, 331, 332, 334, 337, 340, 342, 344, 346, 347, 348, 352, 354, 358, 362, 365, 366, 368, 369, 371, 375, 378, 380, 386, 388, 390, 395, 399, 400, 403, 405, 420, 421, 426, 427, 430, 431, 432, 436, 443, 450, 451, 455, 456, 458, 459, 460, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "executemani": [340, 483], "executescript": [340, 483], "executionload": 250, "executionpolici": 399, "executor": [68, 102, 125, 126, 135, 164, 475, 478, 482, 483], "execv": [33, 257, 292, 293, 306, 476, 483], "execvp": [293, 348], "exemplar": 85, "exemplari": 426, "exemplifi": 268, "exempt": 469, "exercis": [73, 84, 101, 102, 103, 160, 187, 267, 292, 308, 362, 426, 456, 468, 483], "exfat": 483, "exfileselectbox": 375, "exful": 212, "exhaust": [5, 63, 95, 158, 160, 191, 225, 242, 261, 293, 342, 344, 362, 369, 386, 422, 427, 428, 430, 464, 466, 467, 468, 470, 478, 479, 483], "exhibit": [84, 247, 258, 293, 344], "exif": [249, 483], "exist": [5, 9, 22, 23, 25, 31, 33, 34, 39, 42, 55, 58, 59, 63, 64, 66, 67, 68, 72, 73, 76, 79, 84, 85, 93, 94, 95, 99, 101, 102, 106, 109, 110, 112, 115, 117, 120, 128, 136, 139, 144, 149, 151, 155, 158, 160, 161, 163, 167, 169, 176, 181, 183, 184, 189, 191, 193, 194, 196, 200, 205, 206, 208, 211, 212, 213, 215, 216, 218, 225, 226, 230, 234, 235, 236, 243, 244, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 267, 268, 269, 270, 271, 272, 276, 278, 281, 283, 284, 287, 288, 292, 293, 294, 295, 296, 297, 299, 302, 308, 313, 319, 320, 324, 330, 332, 333, 334, 337, 340, 341, 342, 343, 344, 345, 347, 348, 352, 354, 355, 358, 360, 362, 366, 369, 372, 375, 376, 384, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 407, 410, 413, 419, 421, 422, 423, 425, 427, 428, 429, 430, 432, 435, 436, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "exist_ok": [293, 296, 478, 483], "existing_fil": 95, "existing_shm": 284, "exists_ok": 483, "exit": [23, 33, 34, 59, 66, 68, 72, 73, 84, 86, 89, 92, 95, 102, 114, 115, 118, 126, 132, 133, 135, 137, 138, 139, 140, 151, 155, 157, 166, 168, 169, 175, 177, 186, 188, 189, 191, 193, 200, 213, 214, 218, 228, 247, 248, 252, 267, 269, 283, 292, 293, 297, 308, 309, 311, 319, 328, 333, 334, 335, 337, 338, 340, 344, 348, 352, 353, 359, 362, 365, 378, 380, 384, 385, 386, 388, 389, 399, 400, 402, 403, 406, 407, 411, 420, 421, 422, 427, 428, 430, 438, 443, 448, 450, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 478, 479, 480, 481, 482, 483], "exit_cod": [142, 213], "exit_futur": 133, "exit_on_error": [68, 118, 483], "exit_success": 293, "exitcod": [34, 283, 293, 348, 362, 483], "exitfunc": [112, 462, 466, 470], "exitmsg": 157, "exitonclick": 384, "exitstack": [169, 473, 476, 480, 481, 483], "exot": [88, 100, 262, 464], "exp": [15, 154, 186, 225, 275, 318, 345, 468, 469, 476, 483], "exp2": [275, 473, 483], "expand": [33, 58, 63, 75, 94, 106, 109, 167, 186, 193, 230, 247, 255, 259, 261, 268, 283, 292, 314, 319, 344, 355, 364, 366, 369, 376, 394, 405, 410, 412, 413, 415, 420, 430, 461, 464, 465, 468, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expand_tab": 364, "expandenvironmentstr": [142, 405, 468], "expandnod": 412, "expandtab": [344, 364], "expandus": [167, 231, 243, 286, 294, 296, 320, 332, 348, 478, 481, 483], "expandvar": [231, 294, 348, 468, 483], "expans": [58, 220, 234, 247, 294, 308, 314, 348, 364, 409, 422, 466, 476, 477], "expat": [68, 254, 273, 304, 409, 413, 415, 456, 462, 463, 465, 467, 469, 475, 483], "expat_config": 483, "expat_extens": 462, "expat_vers": 409, "expaterror": [68, 273, 475], "expatpars": 483, "expatread": 483, "expect": [5, 9, 23, 28, 39, 45, 58, 63, 66, 68, 73, 75, 76, 77, 84, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 120, 127, 133, 134, 139, 151, 153, 158, 167, 169, 176, 177, 181, 186, 187, 190, 191, 193, 197, 203, 213, 221, 225, 230, 235, 242, 243, 245, 250, 251, 253, 255, 261, 262, 266, 267, 269, 271, 278, 283, 292, 293, 299, 302, 309, 312, 328, 330, 331, 333, 337, 340, 341, 343, 344, 348, 352, 354, 358, 359, 362, 366, 376, 378, 384, 385, 386, 389, 390, 394, 395, 397, 408, 413, 415, 416, 419, 425, 428, 429, 430, 431, 432, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expectation_fail": 241, "expected_cal": 390, "expectedfailur": [96, 362, 388, 471, 483], "expectedfailuretestcas": 388, "expens": [76, 85, 101, 181, 190, 226, 266, 289, 308, 332, 338, 341, 352, 432, 455, 466, 474, 476, 477, 479, 480, 481, 483], "expensive_func1": 101, "expensive_func2": 101, "expensive_mod": 386, "experi": [84, 94, 95, 101, 106, 176, 230, 293, 308, 369, 384, 388, 410, 461, 462, 463, 464, 468, 469, 471, 478, 481, 483], "experienc": 483, "experiment": [93, 247, 271, 369, 371, 410, 434, 456, 465, 470, 471, 473, 474, 475, 480, 481, 483], "experimental_isolated_subinterpret": [473, 483], "expert": [33, 34, 292, 455], "expir": [139, 212, 243, 244, 283, 325, 329, 333, 335, 337, 339, 348, 365, 366, 395, 476, 483], "expiri": [243, 483], "explain": [42, 45, 63, 73, 75, 76, 77, 85, 92, 95, 96, 99, 101, 102, 103, 106, 109, 110, 114, 151, 176, 193, 225, 235, 243, 245, 247, 255, 292, 297, 344, 369, 376, 388, 430, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "explan": [68, 106, 110, 167, 183, 190, 222, 245, 266, 271, 283, 293, 297, 301, 304, 319, 337, 344, 352, 366, 369, 395, 462, 463, 464, 465, 466, 467, 468, 475, 483], "explanatori": [77, 193, 314, 388, 483], "explicit": [7, 23, 28, 31, 33, 34, 45, 49, 51, 63, 66, 68, 73, 76, 85, 92, 94, 95, 100, 101, 102, 106, 112, 114, 120, 132, 133, 139, 151, 157, 167, 169, 170, 176, 179, 181, 183, 186, 188, 190, 196, 202, 205, 206, 208, 214, 218, 223, 225, 226, 230, 233, 243, 245, 250, 255, 258, 259, 262, 266, 267, 268, 269, 270, 271, 281, 283, 292, 293, 295, 297, 299, 311, 314, 324, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 353, 356, 358, 362, 365, 381, 384, 385, 386, 388, 395, 399, 400, 405, 410, 411, 412, 413, 414, 421, 423, 426, 427, 428, 429, 430, 432, 436, 440, 455, 456, 461, 462, 463, 464, 465, 467, 469, 470, 472, 474, 475, 478, 479, 480, 481, 482, 483, 484], "explod": [99, 259, 462, 464, 483], "exploit": [151, 245, 270, 293, 358, 428, 455, 477, 483], "explor": [101, 110, 167, 191, 240, 247, 293, 384, 399, 413, 428, 461, 468, 475, 483], "explos": [99, 413], "expm1": [275, 469, 475, 483], "expon": [25, 89, 186, 225, 318, 344, 345, 347, 352, 378, 435, 466, 468, 476, 481, 483], "exponent": 483, "exponentfloat": 435, "exponenti": [85, 186, 269, 344, 362, 409, 430, 465, 466, 468, 483], "export": [7, 23, 42, 43, 45, 48, 63, 68, 71, 72, 73, 77, 85, 110, 118, 299, 337, 340, 344, 352, 355, 378, 436, 456, 465, 469, 475, 476, 478, 479, 480, 481, 482, 483], "exportselect": 376, "exportsym": 483, "expos": [7, 33, 38, 43, 44, 45, 46, 55, 58, 61, 62, 63, 64, 72, 73, 76, 101, 110, 139, 176, 177, 181, 186, 215, 250, 252, 255, 259, 266, 267, 281, 283, 293, 299, 307, 330, 331, 335, 344, 345, 346, 348, 352, 380, 384, 385, 387, 405, 420, 422, 425, 428, 432, 465, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "expositori": 193, "exposur": [173, 476], "expovari": [318, 474, 483], "expr": [95, 122, 144, 340, 388, 429, 430, 436, 462, 466, 470, 481, 482, 483], "expr1": [95, 430, 462], "expr2": [95, 430, 462], "expr3": [95, 430], "expr4": 430, "expr5": 430, "expr_context": 122, "expr_text": 483, "expr_ti": 431, "express": [5, 22, 47, 49, 54, 60, 66, 68, 73, 85, 87, 93, 102, 120, 122, 139, 144, 159, 161, 163, 167, 183, 186, 190, 191, 193, 213, 220, 225, 230, 247, 254, 255, 259, 261, 266, 268, 283, 293, 297, 308, 323, 333, 337, 340, 341, 344, 345, 347, 352, 353, 359, 362, 363, 366, 369, 378, 380, 385, 386, 387, 388, 400, 413, 419, 426, 427, 428, 429, 431, 432, 433, 435, 439, 442, 446, 447, 449, 451, 455, 462, 463, 464, 465, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "expression1": 436, "expression2": 436, "expression_list": [430, 436, 437], "expression_stmt": 436, "expression_without_invalid": 431, "exprn": [95, 462], "expung": 248, "exr": [206, 249], "ext": [101, 102, 158, 191, 200, 268, 276, 294, 297, 452, 465, 466, 475, 483], "ext_modul": [76, 462], "ext_suffix": [475, 477, 483], "extant": [196, 205, 483], "extend": [31, 33, 42, 45, 61, 63, 68, 73, 74, 75, 76, 79, 80, 84, 92, 94, 102, 106, 110, 118, 120, 121, 128, 133, 143, 155, 158, 160, 161, 167, 168, 169, 176, 177, 183, 190, 191, 192, 193, 196, 205, 207, 213, 225, 226, 230, 245, 247, 249, 258, 261, 262, 271, 275, 276, 278, 280, 282, 299, 302, 303, 308, 314, 320, 328, 332, 335, 337, 341, 344, 352, 358, 366, 376, 378, 388, 395, 410, 413, 420, 428, 429, 430, 432, 436, 441, 442, 444, 461, 463, 466, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484], "extend_path": 302, "extended_arg": [191, 483], "extended_arg_quick": 483, "extended_color_cont": 483, "extendedcontext": [186, 476], "extendedenvbuild": 399, "extendedinterpol": [167, 473, 475, 483], "extendedref": 402, "extendleft": 160, "extens": [5, 7, 11, 13, 23, 27, 34, 35, 42, 45, 50, 57, 61, 63, 66, 68, 72, 74, 77, 79, 84, 85, 87, 91, 92, 94, 97, 100, 105, 106, 139, 152, 167, 173, 176, 177, 181, 183, 184, 189, 190, 193, 194, 200, 203, 208, 218, 220, 235, 241, 242, 245, 246, 248, 250, 251, 254, 255, 262, 269, 271, 273, 276, 280, 288, 292, 293, 297, 299, 305, 308, 312, 314, 319, 330, 331, 332, 333, 335, 337, 340, 341, 344, 352, 354, 355, 358, 362, 365, 368, 369, 375, 382, 384, 385, 386, 388, 395, 402, 405, 410, 411, 414, 415, 419, 421, 422, 428, 430, 432, 440, 445, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 482, 483], "extension_suffix": [250, 474], "extensionclass": 462, "extensionfileload": [250, 476, 477, 479], "extensions_map": 245, "extent": [133, 155, 235, 258, 278, 376, 384, 426, 471, 483], "extern": [13, 35, 51, 68, 73, 79, 84, 85, 93, 100, 102, 118, 121, 151, 158, 167, 176, 184, 197, 216, 247, 250, 255, 257, 267, 272, 293, 298, 311, 314, 338, 344, 347, 348, 358, 362, 365, 369, 384, 388, 408, 409, 410, 412, 413, 414, 415, 416, 422, 428, 430, 461, 468, 470, 471, 475, 478, 479, 480, 481, 482, 483], "external_attr": [422, 483], "external_resource_avail": 388, "externalclasherror": 271, "externalentityparsercr": 314, "externalentityrefhandl": 314, "extra": [9, 16, 28, 63, 64, 68, 76, 85, 92, 94, 96, 102, 110, 112, 120, 122, 132, 161, 170, 186, 191, 193, 196, 202, 203, 205, 208, 242, 247, 251, 267, 268, 271, 283, 292, 293, 332, 340, 341, 344, 347, 358, 359, 362, 376, 386, 413, 422, 428, 431, 452, 455, 456, 462, 465, 468, 469, 474, 475, 476, 479, 480, 481, 483], "extra_arg": [332, 475], "extra_cflag": 456, "extra_group": [348, 483], "extra_path": [479, 483], "extra_s": [28, 452], "extract": [56, 68, 72, 74, 75, 89, 94, 95, 99, 100, 119, 120, 177, 183, 190, 191, 193, 197, 200, 214, 225, 230, 242, 243, 251, 252, 255, 293, 297, 312, 313, 319, 330, 332, 335, 344, 352, 381, 394, 428, 461, 465, 466, 467, 468, 469, 472, 473, 474, 475, 477, 478, 479, 481, 482, 483], "extract_cooki": 243, "extract_dir": [142, 332], "extract_stack": [381, 483], "extract_tb": 381, "extract_vers": 422, "extractal": [358, 422, 467, 468, 478, 483], "extracted_list": 381, "extracterror": 358, "extractfil": [358, 483], "extraction_filt": 358, "extractor": 466, "extraglob": 193, "extralargefil": 483, "extran": [262, 308, 369, 483], "extrasact": [175, 483], "extrem": [13, 95, 100, 102, 109, 207, 262, 268, 293, 299, 318, 410, 422, 430, 483], "extsep": 293, "extslic": [122, 482, 483], "eye": [186, 190, 467, 474, 478, 481], "eyebal": [126, 481, 483], "ez": [108, 230], "ez_setup": 399, "ezeh": 473, "ezio": [109, 469, 475, 476, 477, 478], "f0": 344, "f0_f1f2": 344, "f0f1f2": 344, "f1": [120, 190, 216, 268, 283, 344, 427, 440, 483], "f100": 441, "f1f2": 344, "f1name": 190, "f2": [120, 190, 216, 283, 344, 427, 483], "f2name": 190, "f3": [102, 120], "f3nde": 475, "f4": [120, 464], "f5": [247, 462], "f5d": 464, "f5r": 464, "f5r8f": 464, "f6stal": 202, "f86e": [398, 467], "f9bf78b9a18ce6d46a0cd2b0b86df9da": 326, "f_add_seal": 215, "f_back": [255, 381, 428, 473, 483], "f_bavail": 293, "f_bfree": 293, "f_block": 293, "f_blockstack": 473, "f_bsize": 293, "f_builtin": [26, 255, 428, 473, 483], "f_code": [255, 381, 428, 465, 473, 483], "f_contigu": [255, 344], "f_dup2fd": [215, 473, 483], "f_dup2fd_cloexec": [215, 473, 483], "f_express": 435, "f_favail": 293, "f_ffree": 293, "f_file": 293, "f_flag": 293, "f_frame": 473, "f_frsize": 293, "f_fsid": [293, 483], "f_func": 483, "f_funcobj": 483, "f_gen": 473, "f_get_seal": 215, "f_getfd": 483, "f_getpath": [215, 483], "f_getpipe_sz": [215, 483], "f_global": [26, 255, 428, 473, 483], "f_iblock": 473, "f_in": [102, 234], "f_lasti": [26, 191, 255, 428, 465, 472, 473, 483], "f_lineno": [255, 428, 465, 472, 473, 479, 483], "f_local": [26, 255, 385, 428, 473, 483], "f_localsplus": 473, "f_lock": [293, 483], "f_namemax": 293, "f_ofd_getlk": [215, 482, 483], "f_ofd_setlk": [215, 482, 483], "f_ofd_setlkw": [215, 482, 483], "f_ok": [293, 332], "f_out": [102, 234], "f_restrict": 483, "f_seal_": 215, "f_setfd": 483, "f_setfl": 215, "f_setlkw": 215, "f_setpipe_sz": [215, 483], "f_stackdepth": 473, "f_state": [473, 483], "f_test": 293, "f_tlock": 293, "f_trace": [255, 352, 428, 473, 483], "f_trace_lin": [33, 352, 428, 473, 480, 483], "f_trace_opcod": [33, 352, 428, 473, 480, 483], "f_tstate": 477, "f_ulock": 293, "f_valuestack": 473, "f_wrlck": 215, "fa": [106, 319], "fab": 275, "fabian": 468, "fabrett": 200, "fabric": [478, 483], "faccessat": 293, "face": [33, 109, 149, 225, 247, 269, 302, 394, 425, 462, 468, 470, 476, 477, 478, 483], "facil": [7, 33, 92, 101, 142, 144, 155, 157, 177, 247, 264, 267, 269, 271, 293, 299, 337, 356, 358, 369, 384, 428, 461, 465, 483], "facilit": [23, 247, 268, 319, 320, 335, 400, 477, 480, 483], "facioni": 483, "fact": [33, 64, 73, 85, 95, 101, 106, 110, 167, 176, 186, 193, 206, 223, 225, 250, 279, 292, 299, 308, 344, 358, 369, 384, 386, 395, 421, 428, 430, 432, 434, 461, 462, 463, 468, 474, 476, 477, 478, 483], "facto": [177, 243, 252, 358, 394, 419], "factor": [109, 141, 161, 193, 235, 261, 292, 314, 344, 386, 388, 430, 431, 441, 464, 469, 476, 480, 482, 483], "factori": [63, 68, 87, 99, 120, 126, 128, 130, 133, 158, 169, 172, 176, 181, 189, 193, 203, 207, 208, 226, 250, 256, 267, 268, 269, 271, 275, 283, 292, 298, 332, 365, 369, 371, 386, 390, 407, 410, 413, 419, 420, 428, 464, 467, 468, 471, 474, 475, 476, 478, 480, 481, 482, 483], "facundo": [466, 468], "fahrenheit": [343, 481], "fail": [5, 7, 9, 11, 23, 24, 31, 33, 35, 41, 42, 45, 47, 56, 64, 68, 72, 73, 76, 79, 84, 85, 94, 102, 103, 106, 110, 120, 138, 139, 151, 153, 169, 176, 183, 190, 193, 209, 213, 215, 244, 245, 247, 249, 250, 255, 257, 261, 262, 266, 268, 270, 271, 272, 278, 283, 292, 293, 295, 297, 302, 307, 319, 322, 328, 330, 332, 333, 334, 335, 336, 337, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 382, 386, 388, 395, 405, 408, 413, 416, 419, 422, 425, 427, 428, 429, 431, 432, 436, 443, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 483], "fail_fast": [193, 477], "failed_depend": 241, "failfast": [96, 388, 469, 483], "failif": [112, 473, 474], "failifalmostequ": [112, 473, 474], "failifequ": [112, 473, 474], "failobj": [196, 205], "failunless": [112, 473, 474], "failunlessalmostequ": [112, 473, 474], "failunlessequ": [112, 473, 474], "failunlessrais": [112, 473, 474], "failur": [5, 7, 9, 11, 13, 22, 23, 24, 25, 28, 31, 33, 34, 35, 39, 42, 45, 47, 49, 51, 54, 55, 58, 59, 60, 64, 66, 68, 73, 96, 106, 133, 176, 177, 183, 187, 191, 193, 213, 243, 269, 278, 282, 283, 293, 302, 322, 332, 334, 337, 341, 344, 362, 366, 368, 423, 425, 426, 427, 430, 431, 436, 443, 463, 466, 468, 469, 471, 475, 477, 478, 479, 480, 481, 483], "failure_count": 193, "failureexcept": [193, 388], "fair": [63, 84, 92, 102, 109, 193, 204, 208, 281, 308, 330, 369, 388, 394, 410, 411, 456, 462, 464, 465, 467, 468, 479, 483], "faith": [93, 208, 345, 352], "fake": [84, 292, 428, 483], "fakenam": 483, "fakepath": 362, "fakeseq": 465, "fall": [10, 18, 22, 25, 39, 42, 63, 64, 84, 95, 101, 108, 161, 177, 181, 183, 186, 196, 205, 213, 225, 235, 268, 293, 295, 325, 341, 344, 345, 358, 394, 395, 425, 428, 432, 435, 448, 462, 464, 465, 467, 468, 469, 470, 474, 475, 477, 479, 480, 482, 483], "fallback": [35, 68, 126, 163, 168, 184, 217, 230, 299, 332, 352, 358, 362, 376, 406, 428, 430, 432, 474, 475, 481, 483], "fallback_charset": 209, "fallback_oper": 289, "falloc": 483, "fallthrough": [78, 483], "fals": [5, 6, 7, 22, 33, 34, 35, 47, 49, 58, 63, 64, 66, 73, 84, 85, 89, 92, 94, 95, 96, 99, 100, 101, 102, 107, 108, 109, 110, 114, 115, 116, 120, 122, 126, 129, 132, 133, 134, 135, 136, 138, 139, 143, 144, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 163, 166, 167, 168, 169, 170, 175, 176, 177, 179, 181, 183, 186, 188, 190, 191, 193, 196, 199, 200, 201, 203, 204, 205, 207, 208, 209, 210, 211, 213, 214, 215, 216, 218, 220, 225, 226, 227, 228, 230, 231, 232, 235, 236, 241, 242, 243, 245, 248, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 283, 284, 288, 291, 292, 293, 294, 295, 296, 297, 299, 303, 304, 307, 311, 312, 314, 316, 317, 319, 320, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 352, 355, 358, 360, 362, 364, 365, 366, 369, 372, 373, 376, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 399, 400, 402, 403, 407, 413, 415, 417, 419, 420, 421, 422, 425, 427, 428, 430, 431, 435, 436, 440, 441, 442, 443, 444, 449, 450, 452, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "false_v": 467, "false_valu": 467, "falsey": 483, "famili": [5, 16, 33, 42, 54, 68, 95, 109, 126, 136, 142, 164, 200, 212, 235, 271, 283, 293, 298, 337, 338, 356, 362, 369, 372, 410, 455, 461, 465, 466, 467, 469, 476, 479, 480, 481, 483], "familiar": [76, 92, 95, 96, 99, 102, 106, 157, 194, 228, 293, 340, 432, 463, 464, 465, 468, 483], "fan": 73, "fanci": [85, 92, 102, 465, 469, 483], "fancier": [84, 120, 190, 466, 467, 469], "fanciest": 465, "fancyurlopen": [395, 483], "fanout": 235, "fantix": 483, "faq": [68, 78, 85, 86, 225, 235, 255, 290, 305, 344, 394, 429, 454, 467, 469, 477, 483], "far": [73, 76, 85, 106, 108, 169, 183, 186, 190, 235, 243, 258, 275, 283, 292, 293, 319, 331, 332, 338, 359, 366, 375, 388, 395, 434, 462, 463, 464, 465, 466, 468, 483], "farg": 226, "fasaraki": 483, "fashion": [139, 170, 234, 262, 283, 308, 319, 337, 381, 413, 427, 428, 430, 466, 469, 476, 477, 483], "fast": [39, 58, 64, 68, 94, 100, 141, 170, 184, 186, 191, 225, 234, 250, 255, 258, 261, 269, 299, 308, 332, 344, 369, 384, 386, 413, 428, 442, 462, 466, 467, 469, 475, 476, 477, 478, 479, 480, 482, 483], "fastcal": 483, "fastcgi": 407, "fastchildwatch": [132, 474, 483], "fastconnector": 386, "faster": [54, 63, 68, 84, 85, 93, 106, 139, 176, 177, 186, 207, 226, 234, 235, 247, 261, 283, 293, 308, 341, 344, 384, 426, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "fastest": [85, 234, 283, 319, 384, 451, 468, 475, 481], "fastpath": 483, "fastsearch": 483, "fat": [355, 405], "fat32": [293, 483], "fatal": [23, 33, 42, 59, 72, 73, 214, 341, 358, 388, 443, 469, 470, 476, 479, 483], "fatalerror": 415, "fault": [31, 68, 101, 176, 184, 185, 256, 292, 297, 322, 333, 366, 381, 467, 469, 476, 483], "faultcod": [419, 483], "faulthandl": [34, 68, 176, 185, 188, 254, 297, 333, 362, 381, 455, 483], "faulthandler_sigfp": 483, "faulthandler_suppress_crash_report": 483, "faultstr": 419, "favicon": 223, "favor": [103, 161, 225, 242, 288, 293, 344, 362, 386, 395, 466, 468, 470, 474, 475, 477, 478, 479, 481, 483], "favorit": [73, 109, 442], "favorite_mood": 94, "favour": [49, 54, 250, 255, 467, 476, 479, 480, 482, 483], "favourit": 101, "fb11063974": 483, "fb13453490": 483, "fb605b73": 337, "fb8919203": 483, "fbar": 292, "fbb": 436, "fblogg": 267, "fca": 483, "fcc": 477, "fcf": 483, "fchdir": [293, 478], "fchmod": [293, 468, 478, 483], "fchown": [293, 468, 478], "fci": 483, "fcicreat": [281, 483], "fcntl": [68, 142, 254, 337, 391, 464, 465, 466, 468, 483], "fcompar": 190, "fcopyfil": [332, 483], "fd": [23, 24, 84, 126, 130, 133, 142, 177, 215, 258, 282, 293, 309, 328, 329, 332, 333, 337, 361, 383, 384, 468, 483], "fd2": 293, "fd_cloexec": [215, 473], "fd_count": [362, 483], "fd_high": [293, 483], "fd_low": [293, 483], "fdata": 456, "fdatasync": [293, 478], "fdcba": 147, "fdel": [93, 225, 385], "fdescf": 483, "fdopen": [282, 293, 337, 428], "fds": [328, 337, 483], "fds_to_pass": 483, "fdset": 483, "fdst": 332, "fdwalk": 483, "fe": 103, "fe80": 259, "feanil": 480, "feasibl": [63, 73, 330, 477, 483], "feat": 337, "featur": [23, 33, 34, 49, 51, 54, 61, 63, 66, 68, 75, 79, 84, 85, 87, 92, 93, 94, 95, 96, 101, 102, 106, 109, 113, 120, 151, 152, 158, 167, 176, 177, 179, 180, 181, 183, 187, 193, 194, 208, 213, 226, 243, 247, 250, 257, 262, 267, 270, 283, 292, 293, 297, 299, 302, 319, 324, 332, 335, 340, 341, 344, 348, 352, 358, 362, 365, 369, 380, 384, 388, 395, 400, 410, 411, 414, 415, 416, 422, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 468, 470, 471, 473, 475, 476, 483, 484], "feature_external_g": [412, 414, 415], "feature_external_p": 415, "feature_namespac": 415, "feature_namespace_prefix": 415, "feature_string_intern": 415, "feature_valid": 415, "feature_vers": [122, 377, 481, 483], "featurecompon": 281, "featurenam": [113, 416], "feb": [89, 95, 183, 464], "februar": 183, "februari": [150, 183, 366, 435, 463, 474, 475, 483], "fed": [207, 235, 283, 314, 413, 467], "feder": 426, "federico": 483, "fedisableexcept": 483, "fedora": [96, 105, 223, 352, 456, 460, 472, 475, 482, 483], "fedoraproject": 460, "fedoseev": [472, 482, 483], "fee": [78, 225, 426], "feed": [94, 158, 177, 178, 207, 208, 235, 240, 283, 344, 407, 413, 416, 467, 475, 483], "feed_data": 483, "feed_eof": [136, 483], "feedback": [68, 230, 314, 384, 413, 426, 466], "feeder": [283, 386, 483], "feedpars": [68, 194, 199, 285, 466, 483], "feel": [189, 292, 376, 441, 464, 465, 468, 472], "feff": [102, 109, 158], "feli": 149, "felip": 483, "felisiak": 483, "felix": [103, 483], "fell": [319, 441, 451, 463, 464, 465], "felling": 464, "fellow": 288, "felt": [477, 481, 483], "femal": [102, 343], "fenner": 468, "fermat": 344, "fern": 469, "fetch": [31, 68, 93, 95, 110, 167, 175, 208, 248, 257, 281, 283, 293, 299, 307, 315, 333, 337, 340, 341, 395, 396, 414, 419, 452, 466, 475, 476, 483], "fetch_respons": 386, "fetchabl": 462, "fetchal": [160, 340, 467], "fetched_python_logo": 419, "fetchmail": 305, "fetchmani": 340, "fetchon": [93, 299, 340, 467, 475], "feugiat": 149, "feurzeig": 384, "few": [5, 33, 73, 85, 94, 95, 96, 100, 101, 102, 103, 106, 109, 120, 141, 155, 158, 167, 170, 173, 176, 177, 181, 183, 186, 190, 193, 200, 223, 230, 247, 269, 281, 283, 292, 299, 319, 334, 335, 337, 341, 344, 347, 353, 362, 369, 381, 388, 394, 395, 428, 434, 435, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "fewer": [106, 108, 247, 261, 319, 340, 376, 432, 465, 467, 470, 477, 479, 480, 481, 483], "ff": [178, 190, 225, 319, 347, 435], "ff00": 259, "ff02": 259, "ff9b": 259, "fffd": [14, 109, 158, 462, 483], "fffe": 158, "ffff": [99, 259, 462, 476, 483], "ffff_ffff": 479, "ffffff": [183, 384], "ffi": [479, 483], "ffi_conveni": 483, "ffi_prep_arg": 483, "ffi_type_": 483, "fflag": 328, "ffoo": 292, "fg": [177, 261, 344, 369, 376], "fgbg": 483, "fget": [93, 225, 385], "fh": 102, "fi": [218, 225], "fib": [226, 441, 450], "fib2": [441, 450], "fibo": 450, "fibonacci": [85, 226, 441, 449, 450, 473], "fichier": 109, "ficlon": [215, 483], "ficlonerang": [215, 483], "fiction": 413, "fictiv": 413, "fido": 440, "fie": 78, "fiefoo": 78, "fieka": [472, 483], "field": [2, 5, 13, 28, 31, 33, 34, 42, 54, 55, 58, 60, 61, 63, 64, 66, 68, 73, 75, 76, 84, 87, 93, 94, 100, 101, 118, 151, 153, 158, 160, 177, 183, 186, 191, 196, 199, 202, 203, 205, 208, 209, 213, 233, 234, 236, 242, 247, 259, 267, 268, 272, 281, 293, 314, 315, 316, 322, 325, 335, 337, 339, 340, 341, 342, 344, 345, 347, 348, 352, 356, 358, 361, 366, 369, 376, 378, 381, 394, 398, 400, 405, 411, 413, 422, 428, 435, 452, 455, 462, 463, 464, 465, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "field1": 469, "field2": 469, "field_nam": [160, 345], "field_size_limit": [100, 175, 467, 483], "field_specifi": 386, "fieldbackground": 376, "fieldnam": [122, 160, 175, 468, 471, 483], "fieldstorag": [151, 477, 478, 480, 483], "fieldvalu": 209, "fifo": [124, 134, 160, 283, 293, 296, 316, 329, 342, 358, 479, 480, 483], "fifotyp": 358, "fifth": [109, 177, 247, 344, 366, 483], "fifti": [390, 426], "fig": 244, "fight": [299, 475], "figur": [31, 73, 76, 92, 94, 95, 106, 109, 120, 186, 193, 292, 308, 337, 358, 462, 463, 464, 465, 466, 467, 468, 469, 476, 483], "file": [7, 16, 23, 25, 31, 32, 33, 34, 41, 45, 49, 51, 59, 63, 66, 68, 72, 73, 75, 76, 77, 78, 79, 81, 84, 86, 87, 89, 93, 94, 95, 96, 98, 100, 103, 106, 110, 112, 114, 115, 117, 118, 119, 121, 122, 125, 126, 130, 131, 132, 133, 137, 139, 141, 144, 146, 148, 150, 151, 152, 153, 155, 157, 158, 160, 163, 169, 174, 175, 176, 177, 178, 183, 184, 185, 186, 187, 188, 190, 191, 196, 200, 201, 204, 206, 207, 208, 212, 213, 215, 216, 217, 218, 219, 220, 223, 225, 228, 229, 230, 231, 234, 242, 243, 245, 248, 249, 252, 253, 255, 257, 258, 259, 262, 265, 266, 267, 269, 271, 272, 274, 276, 278, 279, 280, 281, 283, 286, 288, 292, 295, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 311, 312, 313, 314, 319, 321, 322, 324, 326, 328, 329, 330, 331, 333, 334, 336, 337, 338, 340, 341, 342, 344, 347, 348, 349, 352, 355, 358, 359, 360, 361, 362, 363, 365, 366, 367, 368, 376, 377, 378, 380, 381, 382, 384, 386, 387, 388, 390, 391, 394, 395, 397, 399, 400, 401, 403, 404, 405, 406, 407, 411, 412, 413, 414, 416, 417, 419, 421, 423, 425, 426, 427, 429, 430, 431, 432, 435, 436, 440, 441, 442, 443, 445, 446, 448, 449, 450, 452, 455, 458, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 482, 483, 484], "file1": [190, 390, 469], "file1_or_file2": 190, "file2": [190, 390, 469], "file3": 390, "file_act": [293, 483], "file_attribute_": 293, "file_attribute_arch": [293, 342], "file_attribute_compress": 342, "file_attribute_devic": 342, "file_attribute_directori": 342, "file_attribute_encrypt": 342, "file_attribute_hidden": 342, "file_attribute_integrity_stream": 342, "file_attribute_no_scrub_data": 342, "file_attribute_norm": 342, "file_attribute_not_content_index": 342, "file_attribute_offlin": 342, "file_attribute_readon": 342, "file_attribute_reparse_point": [293, 342], "file_attribute_sparse_fil": 342, "file_attribute_system": 342, "file_attribute_temporari": 342, "file_attribute_virtu": 342, "file_cont": [234, 270], "file_count": 358, "file_digest": [235, 473, 483], "file_encod": 158, "file_handl": 390, "file_list": 95, "file_mtim": 190, "file_nam": [142, 405], "file_obj": [462, 465], "file_open": 395, "file_or_dir": 357, "file_or_path": 169, "file_path": 250, "file_rul": 431, "file_s": [422, 464], "file_util": [469, 483], "file_wrapp": [407, 483], "fileblock": 483, "filecmp": [68, 156, 190, 219, 254, 462, 483], "fileconfig": [101, 102, 268, 469, 477, 480, 483], "filecont": 242, "filecookiejar": [68, 256, 483], "filedescriptor": 293, "filedialog": [68, 368, 369], "fileencod": 435, "fileentri": 375, "fileexistserror": [23, 200, 212, 213, 225, 258, 293, 296, 311, 332, 358, 422, 450, 476, 477, 483], "filefind": [250, 302, 472, 473, 476, 483], "filehandl": [68, 101, 102, 110, 118, 256, 267, 268, 468, 483], "filehash": 251, "fileinput": [68, 156, 219, 225, 254, 293, 352, 467, 473, 475, 481, 483], "fileio": [33, 34, 120, 225, 258, 469, 477, 483], "fileitem": 151, "filelik": 407, "filelineno": 218, "fileload": [250, 476, 477], "filemod": [101, 102, 267, 342, 358, 476, 481, 483], "filen": 311, "filenam": [13, 23, 33, 34, 45, 59, 66, 68, 71, 77, 84, 85, 95, 98, 101, 102, 106, 112, 120, 122, 142, 144, 149, 151, 155, 157, 158, 159, 160, 163, 167, 169, 175, 176, 184, 189, 190, 193, 196, 197, 200, 201, 205, 213, 214, 218, 220, 223, 225, 230, 234, 243, 247, 250, 255, 265, 267, 268, 269, 270, 272, 276, 279, 281, 283, 286, 292, 293, 295, 296, 297, 299, 302, 308, 309, 311, 319, 320, 330, 331, 332, 336, 340, 348, 351, 352, 358, 362, 369, 375, 378, 381, 382, 384, 385, 388, 390, 393, 395, 400, 403, 405, 406, 407, 411, 412, 413, 414, 421, 422, 436, 438, 446, 451, 452, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "filename2": [23, 213], "filename_on": 357, "filename_or_fil": 411, "filename_or_stream": 414, "filename_pattern": 382, "filenameobject": 23, "filenameobject2": 23, "filenames": 452, "fileno": [24, 59, 84, 102, 142, 149, 188, 215, 218, 235, 242, 258, 278, 283, 293, 295, 328, 329, 333, 337, 338, 341, 359, 360, 361, 369, 464, 467, 477, 483], "filenotfound": 483, "filenotfounderror": [23, 120, 140, 169, 212, 213, 250, 253, 268, 286, 293, 296, 320, 443, 450, 476, 478, 483], "fileobj": [234, 235, 329, 333, 358, 476, 483], "fileobject": [167, 472], "files_double_ev": 189, "files_hash_person": 235, "files_select_ev": 189, "fileselectbox": 375, "fileselectdialog": 375, "fileset": 483, "filesystem": [5, 23, 33, 34, 59, 64, 66, 68, 87, 109, 120, 143, 167, 213, 215, 216, 250, 266, 271, 283, 293, 297, 302, 324, 332, 341, 352, 355, 358, 362, 388, 389, 399, 400, 421, 422, 455, 461, 463, 469, 474, 477, 480, 483], "filesystem_encod": [34, 59, 87, 293, 352, 474], "filesystem_error": [34, 59, 87, 293, 352, 474], "filetyp": [68, 118, 189, 336, 469, 477, 483], "fileutil": 483, "filewrapp": [407, 473, 481, 483], "filip": [473, 476, 477, 481, 483], "fill": [5, 7, 22, 33, 34, 42, 45, 47, 55, 60, 63, 64, 68, 75, 76, 85, 92, 95, 100, 102, 110, 117, 120, 138, 151, 176, 177, 183, 186, 193, 196, 201, 205, 222, 225, 245, 247, 250, 258, 261, 269, 293, 335, 337, 340, 341, 344, 345, 347, 348, 362, 364, 366, 369, 428, 430, 432, 452, 456, 462, 464, 465, 466, 467, 468, 474, 475, 476, 478, 479, 483], "fill_char": 64, "fill_gap": 384, "fillbyt": 344, "fillchar": 344, "fillcolor": 384, "fillstat": 384, "fillvalu": [261, 321, 468, 483], "film": [296, 386], "films_tot": 343, "filter": [34, 59, 68, 85, 95, 101, 112, 118, 119, 141, 160, 177, 185, 189, 190, 213, 216, 218, 220, 225, 261, 268, 312, 315, 328, 332, 337, 362, 388, 399, 421, 425, 430, 442, 450, 455, 456, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 474, 475, 479, 480, 481, 482, 483], "filter_arm": 270, "filter_armthumb": 270, "filter_command": 189, "filter_delta": 270, "filter_dir": [68, 187], "filter_func": 358, "filter_ia64": 270, "filter_lzma1": 270, "filter_lzma2": 270, "filter_mak": 102, "filter_powerpc": 270, "filter_sparc": 270, "filter_trac": 382, "filter_x86": 270, "filtered_data": 442, "filtererror": 358, "filterfals": [95, 112, 225, 261, 343], "filterfunc": [422, 477], "filternam": 358, "filterwarn": [400, 455, 463, 465, 483], "final": [28, 32, 34, 45, 49, 59, 61, 63, 68, 73, 74, 76, 84, 85, 94, 95, 96, 101, 102, 103, 106, 113, 115, 122, 126, 133, 135, 138, 139, 141, 144, 158, 176, 181, 186, 188, 190, 191, 193, 197, 203, 213, 235, 245, 250, 255, 261, 265, 271, 283, 292, 293, 296, 297, 299, 308, 311, 314, 315, 319, 332, 334, 338, 340, 341, 352, 353, 354, 358, 361, 362, 364, 365, 369, 376, 378, 381, 382, 384, 385, 386, 388, 399, 400, 402, 406, 414, 422, 428, 429, 430, 431, 432, 435, 436, 443, 446, 456, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 475, 476, 478, 479, 480, 481, 482, 484], "finalbodi": 122, "finalist": 235, "finalized_tasks_queu": 232, "finally_block": 431, "find": [1, 31, 33, 61, 63, 68, 72, 73, 75, 77, 84, 93, 94, 95, 96, 99, 101, 102, 103, 105, 106, 109, 112, 118, 120, 141, 147, 151, 158, 160, 177, 181, 183, 190, 191, 193, 195, 196, 197, 199, 205, 207, 213, 221, 225, 226, 230, 235, 247, 250, 251, 255, 266, 267, 273, 278, 292, 293, 299, 302, 313, 323, 337, 341, 343, 344, 348, 352, 354, 362, 363, 365, 367, 369, 386, 388, 394, 395, 410, 429, 430, 432, 434, 436, 441, 442, 455, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "find_and_load": 98, "find_class": [142, 299], "find_distribut": 251, "find_execut": 483, "find_executable_lin": 479, "find_funct": 483, "find_g": 147, "find_good_parse_start": 483, "find_gt": 147, "find_l": 147, "find_librari": [176, 479, 483], "find_library_fil": 483, "find_lin": 479, "find_lines_from_cod": 479, "find_load": [302, 423, 432, 472, 473, 474, 476, 477, 480, 483], "find_longest_match": [190, 483], "find_lt": 147, "find_modul": [352, 423, 432, 465, 472, 473, 474, 476, 477, 480, 483], "find_msvcrt": 176, "find_name_in_mro": 93, "find_python": 483, "find_recursionlimit": 462, "find_spec": [250, 302, 352, 423, 432, 472, 474, 477, 478, 480, 483], "find_str": 479, "find_unused_port": [362, 483], "find_user_password": [395, 483], "findal": [106, 160, 319, 413, 451, 477, 483], "findcal": 267, "finder": [31, 68, 87, 193, 250, 251, 270, 279, 302, 352, 433, 459, 461, 466, 468, 472, 474, 476, 477, 483], "findertool": 468, "findfactor": 141, "findfil": [362, 483], "findfirstfil": 478, "findfirstfilew": [293, 483], "findfit": 141, "findit": [106, 279, 319, 464, 483], "findlabel": 191, "findleak": 483, "findlinestart": [191, 483], "findmatch": 272, "findmax": 141, "findnextfil": 478, "findnextfilew": 293, "findsourc": 483, "findtestcas": [473, 474, 483], "findtext": [413, 483], "fine": [73, 78, 84, 85, 100, 102, 109, 110, 167, 176, 177, 193, 201, 225, 226, 243, 267, 292, 293, 318, 333, 341, 352, 369, 386, 395, 428, 461, 462, 463, 465, 467, 474, 483], "finer": [68, 74, 101, 267, 293, 474, 480, 481, 483, 484], "finger": [244, 470], "finish": [5, 34, 42, 61, 63, 72, 79, 84, 85, 102, 124, 125, 128, 135, 137, 138, 139, 144, 149, 155, 169, 213, 242, 267, 270, 283, 314, 316, 333, 338, 340, 341, 344, 348, 358, 362, 371, 388, 403, 411, 412, 413, 416, 419, 422, 427, 428, 452, 455, 467, 468, 475, 476, 478, 479, 482, 483], "finish_request": 338, "finit": [25, 84, 92, 95, 106, 186, 221, 261, 275, 352, 428, 483], "fink": 483, "finley": 319, "fioasync": 483, "fioclex": 483, "fionbio": 483, "fionclex": 483, "fionread": 483, "fiori": 468, "fip": [235, 341, 483], "fire": [76, 102, 120, 139, 333, 474, 483], "firebird": [474, 483], "firefox": [395, 403, 467, 474, 483], "firewal": [99, 247, 283, 463, 476], "first": [5, 13, 22, 23, 25, 27, 31, 33, 34, 37, 39, 41, 42, 45, 47, 49, 51, 54, 58, 59, 60, 61, 63, 64, 67, 72, 73, 75, 76, 77, 78, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 126, 132, 135, 139, 141, 144, 147, 151, 153, 155, 157, 158, 160, 167, 169, 176, 177, 178, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 205, 207, 208, 209, 211, 213, 214, 215, 218, 221, 225, 226, 228, 230, 235, 242, 243, 244, 247, 248, 255, 258, 259, 261, 265, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 283, 284, 287, 288, 291, 292, 293, 295, 297, 299, 301, 302, 307, 308, 313, 314, 319, 320, 324, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 354, 355, 356, 358, 359, 361, 362, 364, 366, 369, 375, 376, 377, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 400, 405, 407, 408, 410, 413, 414, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 446, 449, 452, 455, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "first_16": 176, "first_alt": 431, "first_appear": 340, "first_complet": [139, 166], "first_except": [139, 166], "first_lin": 191, "first_nam": [175, 319], "first_patch": 389, "first_peak": 382, "first_siz": 382, "first_sunday_on_or_aft": 183, "first_tru": 261, "first_us": 386, "first_week_day": 94, "firstchild": 410, "firstheaderlineiscontinuationdefect": 199, "firstit": 352, "firstkey": 184, "firstlin": [158, 188], "firstlineno": 13, "firstnam": [226, 340, 475], "firstofmonthd": 85, "firstweekday": 150, "fish": [110, 299, 389, 390, 399, 453, 477, 483], "fishi": 389, "fishshel": 483, "fit": [35, 73, 99, 120, 176, 177, 178, 186, 191, 193, 195, 215, 250, 259, 269, 292, 307, 308, 337, 347, 364, 369, 384, 388, 395, 400, 410, 421, 426, 465, 466, 469, 474, 475, 476, 477, 482, 483], "fitzroy": 465, "five": [102, 186, 269, 271, 292, 293, 319, 338, 340, 352, 394, 415, 462, 468, 476, 481, 483], "fix": [42, 55, 61, 63, 68, 77, 79, 84, 85, 92, 93, 95, 105, 106, 112, 120, 151, 159, 161, 176, 177, 182, 183, 186, 193, 201, 225, 243, 247, 259, 261, 283, 288, 293, 299, 314, 319, 340, 343, 345, 347, 348, 365, 372, 408, 413, 427, 455, 462, 464, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "fix_import": [299, 471], "fix_missing_loc": [122, 483], "fix_sentence_end": 364, "fix_urllib": 483, "fixcid": 483, "fixer": [68, 187, 483], "fixtur": [68, 187, 469], "fizz": 102, "fkeyword": 226, "fl": 468, "flag": [7, 9, 10, 13, 18, 24, 28, 33, 34, 43, 49, 50, 61, 63, 64, 66, 68, 72, 73, 75, 76, 99, 100, 101, 102, 109, 112, 114, 118, 126, 136, 138, 142, 144, 155, 158, 176, 177, 181, 183, 184, 186, 187, 188, 191, 196, 207, 208, 209, 211, 215, 225, 227, 243, 248, 257, 258, 266, 267, 268, 271, 276, 278, 281, 282, 283, 288, 293, 296, 301, 305, 307, 313, 314, 315, 328, 330, 332, 333, 334, 337, 338, 340, 341, 342, 344, 345, 348, 352, 361, 362, 363, 365, 366, 376, 383, 385, 386, 388, 394, 395, 400, 406, 408, 419, 420, 422, 425, 427, 428, 432, 450, 455, 458, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "flag_bit": [422, 483], "flag_list": 248, "flag_ref": 483, "flagboundari": [94, 211, 473], "flags_and_attribut": 142, "flagstaff": 95, "flagstr": 248, "flake8": 483, "flaki": 483, "flanagan": 483, "flash": [92, 177, 483], "flat": [190, 201, 204, 369, 376, 412], "flatten": [160, 196, 201, 202, 203, 205, 208, 261, 299, 344, 386, 442, 474, 477, 478, 482, 483], "flattened_data": 261, "flavor": [75, 193, 235, 261, 293, 342, 344, 427, 430, 456, 483], "flavour": [106, 109, 250, 296, 358, 467, 483], "flaw": [84, 464, 475, 483], "flawless": [467, 468], "flew": 443, "flexibl": [68, 73, 84, 93, 99, 101, 102, 106, 112, 133, 151, 169, 176, 190, 193, 196, 205, 208, 230, 268, 283, 292, 295, 299, 340, 344, 348, 358, 366, 386, 400, 411, 413, 428, 462, 463, 465, 467, 469, 470, 475, 478, 482, 484], "fli": [51, 68, 75, 186, 225, 246, 427, 439], "flicker": [92, 177, 483], "flight": 483, "flip": 483, "flist": 483, "float": [5, 16, 18, 41, 42, 47, 58, 63, 68, 76, 78, 84, 85, 87, 93, 94, 96, 112, 115, 120, 121, 126, 139, 141, 154, 160, 162, 167, 175, 176, 181, 183, 190, 193, 209, 213, 221, 223, 225, 226, 227, 233, 248, 250, 254, 261, 262, 266, 271, 274, 275, 283, 284, 289, 290, 292, 293, 299, 304, 308, 318, 319, 322, 328, 333, 337, 340, 341, 343, 345, 347, 352, 358, 365, 366, 376, 378, 379, 384, 385, 386, 387, 388, 408, 419, 427, 430, 436, 440, 442, 444, 449, 450, 451, 452, 456, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "float_array_1d": 386, "float_info": [87, 275, 344, 450, 468, 483], "float_repr_styl": [352, 450, 469], "floatabl": 292, "floatenum": 94, "floatingpointerror": [23, 213, 450], "floatnumb": [225, 430, 435], "floatoper": [186, 476], "floatvalu": 225, "flock": [142, 215, 271, 483], "flood": 483, "floor": [47, 87, 166, 183, 186, 193, 221, 225, 275, 289, 344, 384, 428, 430, 449, 464, 468, 481, 482, 483], "floordiv": [95, 122, 291, 431], "florent": [469, 475], "flori": 468, "florian": 483, "flour": 340, "flow": [68, 73, 95, 130, 133, 177, 178, 186, 348, 353, 359, 386, 427, 429, 430, 462, 464, 465, 467, 468, 478, 483], "flowcontrolmix": 483, "flowinfo": 337, "flp": 468, "flt": 221, "flt_radix": 352, "flt_round": 352, "flufl": 345, "fluri": 483, "flurri": [92, 462], "flush": [33, 101, 102, 107, 115, 126, 130, 133, 136, 149, 158, 160, 177, 214, 225, 245, 258, 267, 269, 270, 271, 278, 283, 293, 314, 322, 333, 337, 348, 352, 362, 399, 405, 413, 424, 476, 477, 479, 481, 483], "flush_head": [245, 476], "flush_level": 102, "flush_std_stream": 362, "flusher": 405, "flushinp": 177, "flushkey": 405, "flushlevel": [102, 269], "flushonclos": [269, 483], "flyweight": 93, "fm": 468, "fma": 186, "fmax": 483, "fmean": [318, 343, 481, 483], "fmod": [275, 430], "fmt": [101, 102, 183, 201, 259, 267, 295, 304, 362, 452, 468, 483], "fmt_binari": [304, 477], "fmt_spec": 191, "fmt_xml": [304, 477], "fmtparam": 175, "fn": [88, 102, 109, 166, 200, 267, 399, 407, 421, 422, 470, 478, 481], "fn_call": 98, "fname": [85, 109, 169, 190, 268, 382, 477], "fnctl": 483, "fnmatch": [68, 219, 231, 254, 296, 348, 382, 388, 483], "fnmatchcas": [220, 388, 483], "fno": [104, 456, 472, 483], "fnum": 102, "fnv": [456, 477], "fo": [103, 225, 228, 464], "fobj": [425, 438], "focal": 414, "focus": [81, 85, 100, 110, 183, 189, 208, 247, 358, 369, 376, 384, 394, 467, 469, 474, 475, 476, 477, 479, 483], "fogl": 483, "foil": 335, "fold": [20, 183, 201, 202, 203, 208, 250, 344, 346, 425, 426, 466, 467, 479, 480, 483], "fold_binari": 208, "folder": [248, 271, 399, 461, 483], "foldspac": 143, "foley": 103, "folk": [103, 452], "folkmani": [482, 483], "follow": [5, 7, 9, 23, 28, 33, 34, 39, 41, 42, 45, 55, 58, 61, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 85, 89, 91, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 122, 128, 132, 133, 135, 137, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 159, 161, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 204, 205, 207, 208, 209, 212, 213, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 235, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 278, 283, 287, 288, 290, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 312, 314, 319, 320, 321, 322, 323, 325, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "follow_symlink": [142, 293, 296, 332, 472, 476, 483], "follow_wrap": [255, 478, 483], "followlink": [142, 293, 468], "font": [68, 102, 109, 167, 212, 247, 254, 364, 368, 369, 375, 376, 384, 472, 479, 480, 482, 483], "fontein": 483, "fontnam": 384, "fontpag": 483, "fontset": 375, "fontsiz": 384, "fonttyp": 384, "foo": [28, 78, 79, 85, 86, 87, 88, 89, 94, 101, 102, 104, 106, 110, 116, 120, 122, 151, 155, 167, 176, 193, 196, 200, 228, 243, 247, 250, 255, 262, 266, 267, 268, 272, 283, 288, 291, 292, 293, 294, 296, 297, 299, 302, 304, 308, 311, 319, 334, 340, 344, 358, 362, 385, 386, 388, 389, 390, 405, 407, 411, 412, 413, 422, 423, 427, 430, 432, 435, 436, 441, 462, 464, 465, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 483], "foo1": [283, 319], "foo2": [283, 319], "foo_bar": [120, 292, 390], "foo_const": 362, "foo_dealloc": [63, 481], "foo_inst": 85, "foo_new": 481, "foo_object": 63, "foo_on": 389, "foo_pars": 120, "foo_struct": [481, 482], "foo_test": [388, 480], "foo_travers": 482, "foo_two": 389, "foo_typ": 63, "foo_var": 85, "fooaction": 120, "foobar": [85, 120, 220, 225, 268, 292, 319, 344, 390, 483], "foobarbaz": 389, "foobl": [389, 390], "food": [73, 87, 103, 299, 446], "foofil": 102, "fool": [85, 462, 466], "foon": 120, "foonley": 120, "foord": [110, 469, 475], "foot": [319, 343, 451], "foot_size_femal": 343, "foot_size_mal": 343, "footer": [267, 341, 483], "footest": [388, 480], "footnot": 167, "footprint": [42, 92, 456, 476, 479, 481, 483], "fopen": [66, 190, 476], "for": [5, 7, 9, 11, 13, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 78, 79, 80, 84, 86, 87, 89, 91, 93, 94, 95, 98, 99, 100, 103, 104, 106, 107, 108, 110, 112, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 147, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 166, 167, 170, 173, 175, 176, 178, 179, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 240, 242, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 291, 293, 295, 296, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 359, 361, 363, 364, 365, 366, 367, 369, 371, 375, 376, 377, 380, 381, 382, 385, 387, 388, 389, 390, 394, 395, 397, 399, 402, 403, 405, 407, 408, 410, 411, 412, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 429, 431, 433, 434, 435, 436, 440, 442, 443, 444, 445, 446, 448, 450, 451, 452, 453, 455, 456, 457, 458, 459, 462, 463, 464, 470, 472, 473, 483, 484], "for_if_claus": 431, "for_it": [191, 483], "for_iter_rang": 483, "for_loop": 467, "for_stmt": [427, 431], "for_target": 431, "forbid": [103, 262, 299, 341, 344, 469, 483], "forbidden": [23, 42, 94, 110, 139, 241, 299, 344, 365, 468, 478, 483], "forbiddenbyt": [479, 483], "forc": [5, 33, 34, 63, 68, 73, 84, 85, 95, 99, 103, 133, 152, 159, 163, 177, 181, 183, 184, 186, 193, 235, 248, 258, 267, 282, 283, 288, 293, 308, 309, 311, 333, 345, 347, 348, 352, 362, 366, 428, 432, 455, 469, 474, 476, 477, 478, 479, 481, 482, 483], "force_quit": 102, "force_zip64": [422, 483], "forcibl": [225, 476, 477], "foreach": 98, "forego": [194, 426], "foreground": [92, 177, 247, 376, 452], "foreign": [68, 118, 167, 332, 340, 358, 483], "forest": 384, "forev": [139, 309, 328, 463, 464, 465, 466, 476, 483], "forewarn": 181, "forg": 167, "forgeot": [468, 469, 471, 475, 483], "forget": [33, 72, 73, 100, 102, 139, 186, 362, 376, 430, 431, 442, 466, 467, 468, 472, 474, 475, 481, 483], "forgiv": [87, 462, 483], "forgot": [431, 472, 474], "forgotten": [73, 109, 125], "fork": [51, 59, 68, 73, 84, 102, 140, 142, 166, 213, 227, 257, 278, 283, 293, 309, 328, 332, 338, 341, 348, 395, 465, 469, 474, 477, 480, 481, 483], "fork1": 483, "fork_exec": 483, "forkingmixin": [338, 476, 480, 483], "forkingtcpserv": 338, "forkingudpserv": 338, "forkingunixdatagramserv": [338, 483], "forkingunixstreamserv": [338, 483], "forkpti": [142, 293, 483], "forkserv": [68, 164, 474, 477, 483], "form": [5, 7, 23, 31, 33, 34, 37, 54, 55, 63, 68, 72, 73, 79, 84, 85, 92, 95, 99, 101, 102, 106, 109, 110, 120, 144, 151, 158, 161, 167, 169, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 196, 197, 200, 203, 205, 206, 208, 209, 213, 221, 225, 226, 228, 230, 242, 244, 245, 248, 251, 255, 257, 259, 261, 266, 267, 268, 269, 271, 273, 276, 283, 288, 293, 298, 302, 304, 305, 307, 319, 334, 337, 340, 341, 342, 344, 345, 346, 347, 352, 358, 362, 364, 365, 366, 368, 369, 376, 384, 387, 388, 394, 395, 398, 400, 405, 408, 410, 413, 419, 421, 425, 426, 427, 428, 429, 431, 432, 434, 435, 436, 439, 455, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "form01": 268, "form02": 268, "form03": 268, "form04": 268, "form05": 268, "form06": 268, "form07": 268, "form08": 268, "form09": 268, "formal": [68, 193, 225, 235, 292, 319, 344, 345, 394, 414, 421, 428, 429, 430, 434, 436, 462, 464, 471, 477, 478, 481, 482, 483], "format": [2, 5, 9, 10, 18, 23, 25, 31, 35, 41, 48, 49, 59, 63, 64, 68, 73, 75, 79, 84, 85, 87, 92, 93, 94, 103, 106, 109, 110, 112, 117, 118, 119, 120, 122, 133, 141, 142, 144, 145, 146, 151, 152, 153, 158, 164, 167, 169, 173, 175, 176, 183, 184, 186, 190, 191, 192, 193, 194, 196, 200, 201, 202, 203, 205, 207, 208, 209, 211, 212, 213, 214, 217, 221, 225, 228, 230, 234, 235, 243, 245, 248, 249, 250, 255, 259, 262, 265, 266, 267, 269, 270, 271, 272, 276, 281, 284, 292, 293, 295, 296, 297, 298, 302, 304, 307, 308, 314, 319, 320, 321, 330, 331, 332, 336, 337, 338, 340, 341, 348, 349, 352, 359, 362, 363, 366, 368, 369, 375, 376, 378, 381, 382, 384, 385, 388, 394, 395, 397, 400, 405, 413, 417, 422, 423, 427, 428, 430, 431, 434, 435, 442, 444, 445, 449, 450, 451, 455, 461, 462, 463, 464, 465, 466, 467, 473, 474, 475, 476, 477, 480, 481, 483, 484], "format_alon": [270, 483], "format_auto": 270, "format_cod": 18, "format_datetim": [203, 209, 476], "format_exc": 381, "format_except": [381, 472, 483], "format_exception_on": [193, 381, 472, 483], "format_field": 345, "format_fram": 483, "format_frame_summari": [381, 473, 483], "format_help": 120, "format_list": [381, 483], "format_map": [160, 344, 475, 478, 483], "format_message_ignore_insert": 483, "format_raw": 270, "format_spec": [49, 122, 221, 225, 345, 428, 435, 468, 483], "format_stack": [381, 483], "format_stack_entri": [144, 483], "format_str": [266, 345, 452, 467, 474, 478, 480, 483], "format_tb": [381, 382], "format_usag": [120, 483], "format_valu": [191, 479, 483], "format_xz": 270, "formataddr": [209, 476], "formatarg": 255, "formatargspec": [473, 478, 483], "formatargvalu": [255, 478], "formatd": [209, 466, 483], "formaterror": [176, 271], "formatexcept": [102, 267], "formatfoot": 267, "formathead": 267, "formatmessag": [23, 176, 213], "formatmessagew": 483, "formatmonth": 150, "formatmonthnam": [150, 483], "formatparagraph": 483, "formatstack": 267, "formatt": [64, 68, 118, 120, 268, 269, 292, 345, 465, 469, 472, 475, 477, 478, 480, 483], "formatted_err": 388, "formatted_lin": 381, "formattedvalu": [122, 483], "formatter_class": [68, 102, 118], "formatter_form01": 268, "formatter_simpleformatt": 101, "formattim": 267, "formatvalu": 255, "formatvararg": 255, "formatvarkw": 255, "formatwarn": [267, 400, 468, 483], "formatweekday": [150, 483], "formatyear": 150, "formatyearpag": 150, "formed": 416, "former": [23, 31, 63, 75, 85, 120, 144, 159, 161, 176, 177, 183, 186, 225, 244, 250, 255, 267, 275, 283, 288, 308, 322, 332, 340, 366, 369, 375, 384, 386, 428, 430, 432, 471, 474, 475, 476, 479, 480, 481, 482, 483], "formfe": [345, 364, 435], "formula": [183, 230, 344, 483], "fort": 7, "forth": [23, 85, 92, 106, 160, 293, 319, 328, 344, 428, 462, 464, 465, 467], "fortran": [7, 78, 87, 299, 340, 344, 444, 463, 466, 468], "fortun": [73, 76, 92, 151, 470], "forward": [64, 85, 93, 95, 106, 153, 155, 176, 177, 183, 191, 200, 226, 230, 253, 258, 267, 271, 289, 297, 340, 341, 344, 384, 386, 411, 427, 462, 463, 464, 466, 468, 471, 475, 480, 483], "forwardref": [386, 483], "forwardrefer": 483, "forwardx11": 167, "fos": 483, "foster": [473, 483], "found": [5, 17, 22, 31, 33, 42, 45, 49, 55, 58, 59, 61, 63, 64, 71, 72, 73, 77, 79, 93, 94, 95, 96, 98, 100, 101, 102, 106, 109, 110, 114, 120, 149, 151, 158, 163, 167, 170, 176, 177, 191, 193, 196, 197, 199, 203, 205, 207, 208, 211, 213, 215, 216, 225, 226, 228, 230, 233, 236, 241, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 261, 265, 266, 267, 268, 270, 271, 272, 276, 278, 279, 282, 283, 292, 293, 295, 297, 302, 314, 319, 322, 332, 333, 335, 337, 339, 340, 341, 344, 348, 352, 354, 355, 358, 359, 362, 369, 371, 376, 378, 385, 386, 387, 388, 389, 395, 400, 406, 407, 410, 412, 413, 414, 415, 419, 420, 423, 425, 427, 428, 429, 430, 432, 434, 435, 436, 441, 451, 452, 453, 461, 462, 463, 464, 465, 467, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "foundat": [69, 80, 95, 103, 169, 341, 369, 426, 461, 465, 466, 468, 476], "four": [31, 58, 64, 89, 92, 94, 106, 109, 120, 132, 158, 177, 190, 191, 207, 211, 242, 247, 255, 258, 259, 267, 268, 271, 278, 281, 292, 314, 318, 334, 337, 338, 344, 345, 347, 369, 376, 384, 389, 435, 441, 461, 468, 471, 475, 482, 483], "fourfold": 462, "fourth": [58, 95, 177, 194, 267, 307, 319, 366, 419, 464], "fourthought": 462, "foutfil": 292, "foxnew": 166, "fp": [49, 59, 66, 78, 95, 120, 151, 186, 188, 196, 200, 201, 204, 207, 223, 230, 242, 262, 276, 293, 304, 355, 360, 379, 382, 393, 395, 426, 466, 483], "fp1": 294, "fp2": 294, "fpathconf": [293, 483], "fpectl": [480, 483], "fpformat": 468, "fpic": [456, 483], "fprintf": [72, 73], "fpu": 483, "fqdn": 335, "fr": [150, 230, 271, 318, 435, 465, 480], "frac_digit": [266, 452], "fractalcurv": 384, "fraction": [68, 73, 109, 183, 186, 193, 225, 226, 254, 266, 275, 289, 290, 308, 318, 319, 340, 343, 344, 365, 366, 384, 430, 435, 444, 449, 464, 465, 466, 467, 469, 470, 471, 472, 478, 479, 481, 482, 483], "fragment": [95, 141, 314, 344, 394, 395, 412, 413, 467, 469, 475, 476, 483], "fragment1": 141, "fragment2": 141, "frame": [12, 13, 16, 19, 23, 29, 33, 35, 49, 53, 66, 68, 78, 84, 94, 96, 98, 104, 117, 139, 141, 142, 144, 171, 177, 185, 191, 213, 214, 247, 255, 267, 297, 333, 336, 337, 341, 344, 349, 352, 353, 369, 374, 375, 376, 381, 385, 400, 427, 429, 455, 463, 465, 466, 467, 469, 472, 474, 476, 477, 478, 480, 482, 483], "frame_dealloc": 483, "frame_gen": 381, "frame_lineno": 144, "frame_owned_by_cstack": 483, "frame_summari": 381, "frameinfo": [255, 473], "framemak": 177, "frameobject": [26, 472, 473, 483], "frameptr": 98, "framer": [117, 336, 349, 401], "framesummari": [68, 315, 478, 483], "frametyp": [26, 385, 483], "framework": [68, 84, 102, 123, 133, 155, 167, 170, 176, 187, 193, 222, 247, 334, 335, 341, 344, 352, 388, 395, 420, 428, 443, 456, 459, 464, 465, 468, 469, 470, 475, 477, 478, 480, 481, 482, 483, 484], "fran": [230, 476, 477, 478], "franc": 95, "francesco": 465, "francisco": [341, 396, 483], "francoi": 469, "francoton": 223, "franek": 474, "frank": [319, 483], "frankenstein": 364, "franklin": 469, "franz": [481, 483], "fraser": 465, "frechet": 469, "fred": [0, 102, 314, 369, 435, 462, 463, 464, 465, 467, 468, 479], "frede": 474, "fredrik": [0, 85, 95, 426, 462, 463, 464, 466, 467, 469, 471, 475], "free": [5, 7, 11, 13, 33, 34, 42, 59, 63, 64, 73, 75, 76, 78, 84, 85, 95, 128, 134, 158, 176, 190, 191, 225, 229, 230, 248, 255, 283, 284, 292, 293, 299, 303, 316, 332, 344, 351, 352, 362, 382, 385, 388, 410, 419, 420, 425, 426, 427, 428, 429, 430, 432, 436, 461, 463, 464, 465, 467, 468, 470, 475, 476, 477, 482, 483], "free_list": [468, 483], "free_tool_id": 353, "freeaddrinfo": 483, "freebsd": [68, 92, 115, 133, 212, 215, 278, 293, 295, 309, 322, 328, 337, 352, 362, 365, 366, 458, 467, 473, 477, 480, 482, 483], "freebsd8": 352, "freed": [7, 13, 22, 27, 33, 42, 45, 73, 75, 100, 102, 232, 283, 293, 329, 428, 463, 465, 467, 479, 483], "freedbsd": 483, "freedesktop": [303, 472, 476, 483], "freedesktop_os_releas": [303, 472, 483], "freedom": [413, 436], "freefunc": [13, 45, 63, 75], "freeli": [193, 344, 426], "freelist": [456, 473, 483], "freevar": [13, 483], "freez": [31, 81, 85, 226, 227, 247, 288, 453, 480, 483], "freeze_modul": 483, "freeze_support": 283, "freht": [469, 475, 483], "french": [106, 109, 366, 478, 480], "frenzi": 482, "frequenc": [102, 117, 366, 406, 415, 468], "frequent": [7, 68, 73, 75, 84, 85, 106, 109, 110, 164, 183, 190, 247, 266, 269, 283, 288, 292, 305, 388, 465, 466, 468, 469, 474, 481, 483], "fresh": [23, 63, 85, 95, 158, 169, 255, 283, 307, 324, 362, 385, 432, 461, 464, 465, 483], "freshfruit": 442, "freshmeat": 464, "frexp": 275, "fri": [150, 209, 475, 476, 483], "frid": 483, "friday": [94, 150, 211], "frie09": 319, "friedl": [106, 319], "friedrich": 483, "friend": [63, 73, 92, 102, 120, 190, 194, 292, 337, 344, 352, 388, 413, 425, 462, 466, 470, 477, 480, 482, 483], "friendlier": 483, "frm": 369, "frob": [228, 390], "frobbl": 120, "frobnic": [388, 402], "from": [5, 7, 9, 10, 11, 13, 22, 23, 24, 25, 26, 27, 28, 31, 34, 39, 41, 42, 43, 45, 46, 47, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 74, 75, 76, 77, 87, 88, 89, 91, 92, 94, 95, 99, 101, 103, 106, 107, 108, 109, 110, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 126, 128, 132, 133, 135, 136, 137, 138, 141, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 164, 167, 170, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 218, 220, 221, 222, 223, 225, 226, 230, 232, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 298, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 352, 353, 355, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 374, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 444, 449, 450, 451, 452, 453, 455, 456, 458, 462, 463, 464, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "from_": [196, 271, 376, 483], "from_addr": [335, 475], "from_address": 176, "from_buff": [176, 468, 483], "from_buffer_copi": [176, 468, 483], "from_builtin": [473, 478, 483], "from_byt": [39, 344, 483], "from_cal": [255, 472, 473, 478, 483], "from_celsius": 475, "from_dat": 94, "from_decim": [221, 475], "from_except": 381, "from_fahrenheit": 475, "from_fil": [413, 422, 425, 479, 483], "from_float": [186, 221, 444, 469, 471, 475, 483], "from_funct": [472, 473, 478, 483], "from_iter": [261, 468, 483], "from_kal": 483, "from_list": 381, "from_nam": 483, "from_param": [176, 483], "from_sampl": [343, 481], "from_start": 64, "from_str": 480, "from_traceback": [191, 477], "fromaddr": [84, 102, 268, 269, 335, 341], "fromag": 106, "frombuf": 358, "frombyt": [121, 337, 475, 482, 483], "fromdat": 190, "fromdesc": 190, "fromfd": [328, 337], "fromfil": [121, 190, 470], "fromfile_prefix_char": [68, 118, 474, 483], "fromfiled": 190, "fromhex": [146, 344, 444, 468, 473, 479, 480, 483], "fromisocalendar": [183, 481, 483], "fromisoformat": [183, 340, 473, 480, 483], "fromkey": [93, 160, 344, 385, 465, 473, 475, 483], "fromlin": 190, "fromlist": [31, 121, 191, 225, 250, 483], "fromnam": 223, "fromordin": [183, 480], "fromshar": [337, 480], "fromstr": [121, 413, 475, 482, 483], "fromstringlist": [413, 475], "fromtarfil": 358, "fromtimestamp": [20, 102, 183, 190, 340, 474, 480, 483], "fromunicod": 121, "fromutc": [183, 483], "front": [96, 106, 169, 201, 208, 247, 261, 302, 390, 400, 423, 428, 430, 455, 462, 465, 467, 469, 483], "frontend": 158, "frontier": 341, "frost": 474, "frozen": [31, 34, 68, 176, 181, 225, 250, 283, 302, 352, 382, 386, 428, 432, 455, 461, 465, 474, 477, 480, 483], "frozen_default": [386, 474, 483], "frozen_modul": [455, 483], "frozenimport": [250, 472, 473, 477, 483], "frozeninstanceerror": [181, 483], "frozenload": [472, 473], "frozenmain": 33, "frozenset": [55, 68, 87, 122, 182, 225, 254, 274, 299, 352, 386, 388, 402, 427, 428, 430, 450, 466, 467, 468, 473, 475, 482, 483], "frozent": 176, "fruit": [94, 307, 428, 442], "fs": [102, 166, 178, 293, 343, 483], "fs_is_case_insensit": 362, "fs_nonascii": 362, "fsanizit": 483, "fsdecod": [23, 87, 293, 352, 475, 479, 483], "fsencod": [87, 293, 296, 352, 362, 475, 479, 483], "fset": [93, 225, 385], "fspath": [87, 234, 293, 296, 479, 483], "fsrc": 332, "fstat": [293, 294, 342, 464, 476, 478, 483], "fstatat": 483, "fstatvf": [293, 464, 478], "fstrict": 456, "fstring": [431, 483], "fstring_convers": 431, "fstring_end": [377, 431, 474], "fstring_format_spec": 431, "fstring_full_format_spec": 431, "fstring_middl": [377, 431, 474], "fstring_replacement_field": 431, "fstring_start": [377, 431, 474], "fsum": [225, 275, 343, 444, 468, 483], "fsync": [293, 478, 483], "ftp": [68, 80, 110, 254, 256, 269, 286, 394, 395, 460, 462, 463, 468, 469, 476, 479, 480, 481, 482, 483], "ftp1": [223, 475], "ftp_open": 395, "ftp_tls": [68, 256, 469, 474, 475, 476, 482, 483], "ftpd": 223, "ftphandler": [68, 110, 256], "ftplib": [68, 142, 156, 158, 254, 256, 395, 463, 465, 468, 469, 475, 477, 478, 479, 480, 481, 483], "ftpmirror": 464, "ftps": 223, "ftpwrapper": [468, 483], "ftruncat": [84, 293, 478, 483], "fts3": 340, "fu": [196, 205, 483], "fuch": [476, 481, 483], "fudg": 244, "fugu": 223, "fuhrer": 483, "fulfil": [110, 241, 245, 463, 465, 475], "full": [11, 28, 33, 34, 63, 64, 68, 73, 76, 84, 93, 101, 102, 106, 108, 110, 134, 139, 157, 158, 161, 163, 167, 168, 173, 176, 181, 183, 186, 190, 191, 193, 197, 200, 201, 212, 213, 215, 243, 247, 251, 255, 259, 261, 267, 269, 275, 278, 280, 281, 283, 292, 293, 295, 297, 302, 314, 316, 319, 331, 332, 333, 335, 337, 338, 341, 344, 347, 348, 352, 358, 362, 366, 369, 384, 385, 388, 394, 395, 403, 411, 413, 419, 422, 427, 428, 429, 431, 432, 436, 446, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "full_ro": 255, "full_url": [110, 395, 477], "fullargspec": 255, "fullcircl": 384, "fuller": 463, "fulli": [7, 13, 27, 33, 34, 45, 61, 63, 71, 87, 102, 109, 112, 120, 134, 186, 193, 197, 203, 207, 208, 250, 255, 261, 268, 269, 283, 299, 333, 335, 337, 348, 352, 358, 388, 398, 400, 410, 413, 417, 423, 428, 432, 455, 461, 464, 469, 470, 474, 475, 476, 477, 478, 479, 481, 482, 483], "fullmatch": [319, 477, 483], "fullmodnam": 479, "fullnam": [163, 250, 252, 253, 302, 423, 465], "fullpath": [142, 360], "fullrandom": 318, "fulltext": [340, 475], "fullurl": [142, 395], "fullwidth": 186, "fully_trust": 358, "fully_trusted_filt": 358, "fulton": [462, 466, 479, 483], "fum": [78, 225], "fun": [84, 167, 226, 384, 386, 388, 473, 479], "fun_num": 226, "func": [27, 33, 34, 35, 44, 53, 59, 63, 66, 78, 85, 87, 88, 93, 95, 100, 120, 122, 126, 139, 140, 144, 160, 176, 177, 212, 226, 255, 261, 266, 267, 283, 292, 308, 314, 332, 340, 344, 352, 353, 362, 365, 367, 369, 380, 386, 388, 402, 420, 427, 429, 443, 466, 468, 470, 475, 476, 479, 481, 483], "func1": [85, 386], "func2": 85, "func3": 85, "func4": 85, "func_closur": [112, 470], "func_cod": 470, "func_default": 470, "func_descr_get": 93, "func_dict": 470, "func_doc": 470, "func_glob": 470, "func_nam": [466, 470], "func_point": 142, "func_spec": 176, "func_typ": [122, 431, 481], "func_type_com": 431, "func_type_rul": 431, "func_x": 470, "funcattr": 112, "funcdef": 427, "funcid": 483, "funcnam": [13, 72, 98, 144, 267, 427, 440], "funcobject": [93, 473, 483], "function": [2, 5, 9, 10, 11, 13, 16, 17, 22, 23, 24, 26, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 66, 67, 68, 71, 72, 74, 75, 76, 77, 78, 79, 80, 84, 87, 89, 92, 96, 98, 99, 101, 102, 109, 110, 112, 113, 114, 115, 117, 118, 124, 128, 132, 133, 135, 137, 138, 139, 140, 141, 142, 144, 146, 147, 149, 151, 152, 154, 155, 157, 158, 159, 161, 164, 166, 167, 170, 172, 173, 177, 178, 179, 181, 182, 183, 184, 186, 187, 189, 190, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 224, 225, 228, 230, 231, 234, 235, 236, 242, 243, 245, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 264, 265, 266, 269, 270, 272, 276, 278, 280, 281, 283, 287, 290, 292, 293, 295, 297, 298, 302, 304, 308, 309, 311, 312, 313, 314, 315, 320, 321, 322, 323, 324, 325, 328, 330, 331, 332, 333, 334, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 351, 352, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 367, 369, 371, 377, 378, 380, 381, 382, 386, 387, 389, 394, 395, 397, 399, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 420, 421, 422, 425, 429, 431, 432, 435, 436, 439, 440, 442, 443, 445, 450, 451, 455, 456, 461, 464, 465, 469, 471, 472, 473, 474, 475, 477, 481, 482, 483, 484], "function_1": [78, 98], "function_2": [78, 98], "function_3": 98, "function_4": 98, "function_5": 98, "function__entri": 98, "function__return": 98, "function_def": 431, "function_def_raw": 431, "function_result": 160, "function_that_returns_a_future_object": 139, "functional_program": 95, "functiondef": [122, 483], "functionprofil": [308, 483], "functiontestcas": [388, 483], "functiontyp": [27, 122, 385, 472, 483], "functool": [68, 85, 87, 88, 93, 108, 112, 126, 129, 147, 160, 220, 224, 225, 251, 254, 255, 261, 344, 428, 467, 468, 469, 470, 471, 483], "fund": [452, 462, 467], "fundament": [33, 63, 68, 103, 118, 194, 259, 283, 292, 299, 307, 308, 340, 385, 432, 461, 462, 468, 474, 479, 483], "funk": [230, 462], "funki": [94, 167], "funni": [92, 141], "funny_fil": 216, "funtion": 483, "furkan": [474, 483], "furman": [472, 474, 476, 477, 478, 479, 480, 483], "furnish": 426, "furrer": 483, "furrfu": 464, "further": [7, 33, 41, 63, 68, 73, 75, 76, 79, 85, 95, 99, 101, 102, 109, 110, 119, 139, 144, 149, 151, 153, 158, 169, 173, 176, 181, 191, 193, 213, 218, 225, 228, 247, 261, 266, 267, 269, 270, 282, 283, 292, 293, 295, 297, 299, 319, 332, 333, 337, 338, 340, 341, 344, 352, 354, 366, 369, 381, 386, 410, 413, 415, 421, 425, 427, 428, 430, 432, 435, 455, 461, 462, 463, 464, 465, 466, 468, 469, 474, 476, 480, 481, 483], "furthermor": [33, 84, 120, 158, 191, 255, 268, 269, 271, 324, 344, 427, 461, 474, 477], "furthest": 103, "fusc": 149, "fuse": 186, "fut": [125, 129], "futil": 483, "futur": [22, 33, 61, 63, 68, 77, 84, 87, 100, 101, 106, 112, 114, 120, 122, 123, 125, 127, 130, 132, 133, 138, 139, 155, 159, 164, 165, 167, 183, 193, 197, 203, 205, 207, 208, 213, 225, 234, 245, 247, 250, 252, 254, 255, 257, 267, 268, 283, 292, 293, 308, 315, 319, 325, 328, 333, 337, 340, 341, 352, 353, 362, 365, 366, 385, 386, 388, 395, 400, 413, 428, 430, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 473, 474, 476, 477, 481, 483, 484], "future_builtin": [68, 112], "future_stmt": 436, "future_to_url": 166, "futureit": 483, "futurewarn": [23, 213, 319, 400, 450, 465, 466, 469, 474, 480, 483], "fututr": 483, "fuzz": 483, "fvisibl": 483, "fwalk": [142, 293, 476, 480, 483], "fwrapv": 72, "fx": 481, "fxn": 400, "g1": [341, 384], "g2": 384, "g3805": 475, "g722": 117, "g771": 426, "g9gthfe1yluxy1zwplyk1": 235, "ga": 359, "gabe": 483, "gabriel": [469, 473, 483], "gadget": 483, "gaedk": 468, "gai_strerror": 337, "gaierror": [337, 483], "gaifax": [480, 483], "gailli": 426, "gain": [84, 102, 144, 167, 250, 258, 299, 352, 395, 432, 434, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "gale": [472, 474, 483], "galeon": [403, 474, 483], "galindo": [104, 472, 473, 474, 480, 481, 482, 483], "gallagh": 483, "gallahad": [160, 442, 471], "gallew": 462, "game": [93, 96, 120, 384, 467, 468], "game_selector": 96, "gamma": [275, 318, 469, 475], "gamma_funct": 475, "gammavari": [318, 483], "ganguli": [474, 483], "ganisin": 483, "ganssl": [473, 474, 480, 481, 482, 483], "gao": [474, 483], "gap": [183, 269, 271, 475, 483], "gar": [186, 296], "garbag": [42, 45, 50, 52, 63, 64, 67, 68, 73, 74, 75, 84, 85, 87, 95, 98, 102, 125, 139, 151, 159, 169, 170, 176, 179, 193, 213, 214, 254, 274, 283, 292, 293, 315, 337, 352, 360, 362, 388, 402, 411, 427, 428, 430, 452, 456, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "garbl": [102, 483], "garcia": [426, 473, 474, 483], "gareth": 483, "garlic": 340, "garshol": 462, "garvit": [480, 483], "gasc": 483, "gass": 466, "gateway": [68, 110, 151, 467, 484], "gateway_timeout": 241, "gather": [92, 120, 124, 134, 137, 139, 177, 293, 308, 337, 380, 388, 456, 473, 478, 480, 481, 483], "gather_t": 476, "gaul": [472, 483], "gauss": [318, 483], "gaussian": 475, "gautier": 483, "gave": [109, 388, 469, 475, 483], "gavin": 478, "gawain": [469, 475], "gay": [426, 469, 471, 472, 477, 479, 480, 483], "gaynor": [469, 472, 478, 483], "gb": [158, 341, 409, 483], "gb18030": [158, 466, 483], "gb2312": [158, 387, 466, 476], "gbk": [158, 466], "gc": [28, 45, 61, 63, 68, 73, 76, 78, 85, 87, 98, 100, 142, 254, 255, 315, 352, 362, 367, 382, 402, 411, 428, 452, 456, 462, 465, 467, 469, 474, 475, 483], "gc__done": 98, "gc__start": 98, "gc_collect": 362, "gc_debug": 483, "gc_ref": 227, "gcc": [33, 35, 63, 176, 303, 352, 448, 455, 456, 468, 469, 471, 472, 473, 477, 479, 483], "gcd": [221, 275, 478, 482, 483], "gced": 483, "gcm": 341, "gcov": 477, "gcp": 483, "gcvisitobjects_t": 28, "gdb": [68, 79, 85, 97, 469, 483], "gdb7": 483, "gdbinit": [79, 96, 469, 483], "gdbm": [84, 184, 456, 470, 483], "gdbm_compat": 483, "gdbm_count": 483, "gdi": 369, "gdppc": 413, "ge": [95, 291], "ge29873": 288, "gecko": 395, "gedai": 483, "gedam": 474, "gedmina": 109, "geert": [465, 478, 483], "gef": 103, "gehrck": 483, "gellekum": 463, "gen": [95, 255, 430, 464, 465, 475, 478, 483], "gen_clos": [255, 475], "gen_coro": 255, "gen_creat": [255, 475], "gen_data": 149, "gen_func": [385, 483], "gen_mov": 452, "gen_rid": 483, "gen_run": 255, "gen_start": [473, 483], "gen_suspend": [255, 475], "gen_uuid": 281, "gencoro": 161, "gendef": 481, "genellina": 469, "general": [7, 13, 23, 33, 37, 42, 51, 54, 63, 68, 72, 73, 76, 78, 84, 85, 91, 93, 94, 96, 100, 102, 103, 106, 109, 120, 126, 133, 139, 146, 151, 152, 158, 167, 169, 176, 177, 181, 183, 184, 186, 191, 203, 208, 224, 225, 226, 235, 242, 243, 244, 247, 250, 261, 266, 267, 268, 269, 270, 271, 273, 283, 288, 293, 299, 305, 307, 314, 319, 320, 325, 330, 335, 337, 341, 342, 344, 345, 347, 348, 352, 358, 364, 366, 369, 375, 381, 384, 386, 387, 394, 395, 405, 408, 411, 412, 413, 414, 415, 417, 425, 426, 427, 428, 430, 431, 434, 435, 436, 455, 461, 462, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "general_quest": 475, "generalis": 102, "generat": [16, 26, 31, 33, 49, 51, 58, 64, 66, 68, 71, 72, 73, 75, 77, 79, 85, 87, 98, 101, 102, 103, 109, 112, 113, 120, 122, 130, 134, 135, 137, 139, 141, 142, 144, 151, 155, 158, 161, 163, 166, 169, 173, 177, 181, 183, 187, 190, 191, 193, 194, 196, 203, 205, 208, 209, 213, 223, 225, 226, 227, 230, 235, 242, 244, 245, 248, 261, 267, 269, 271, 281, 283, 285, 293, 299, 304, 307, 311, 313, 314, 315, 318, 321, 323, 326, 331, 335, 340, 341, 346, 348, 352, 353, 358, 362, 366, 369, 376, 377, 378, 380, 381, 384, 385, 386, 388, 390, 394, 395, 398, 410, 413, 417, 419, 420, 421, 426, 427, 429, 431, 432, 434, 435, 436, 445, 455, 456, 461, 462, 463, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483, 484], "generate_int": [95, 464, 465], "generate_opcode_h": 483, "generate_re_casefix": 483, "generate_token": [378, 470, 474, 483], "generated_cas": 483, "generator": 464, "generator_express": 430, "generator_stop": [113, 213, 436, 478, 483], "generatorexit": [23, 95, 213, 428, 430, 450, 467, 468, 483], "generatorexp": 122, "generatorproxi": 283, "generatortyp": 385, "generic": [7, 16, 35, 49, 61, 62, 63, 68, 76, 85, 87, 99, 101, 112, 133, 144, 151, 158, 161, 167, 184, 187, 191, 193, 194, 200, 203, 226, 235, 250, 254, 255, 258, 268, 269, 281, 309, 319, 325, 330, 337, 362, 365, 378, 385, 394, 413, 429, 430, 431, 436, 458, 468, 472, 474, 475, 476, 477, 478, 479, 481, 483], "generic_alias_iter": 483, "generic_visit": 122, "genericalia": [62, 68, 385, 428, 430, 472, 482, 483], "genericaliasobject": 483, "genericbrows": 403, "genericpath": 294, "generous": 464, "genexp": [95, 431], "genexpr": 483, "genobject": [473, 483], "genop": 300, "genpag": 483, "genproto": 386, "genr": 93, "gensuitemodul": 468, "gent": 183, "gentl": [76, 93, 99, 120, 464], "gentler": 319, "genuin": [73, 193, 215, 469, 475], "geoff": [73, 483], "geograph": 183, "geometr": [384, 473], "geometri": [68, 368, 369, 374, 376, 483], "geometric_mean": [343, 481, 483], "georg": [93, 109, 261, 446, 467, 468, 469, 471, 472, 475, 476, 478, 479, 483], "georgi": [474, 483], "georgiou": 475, "ger": 483, "gerald": 95, "gerber": 465, "gerg": 483, "gerhard": [340, 464, 467, 468, 469], "gerlach": [481, 483], "german": [109, 158, 266, 344, 384, 477, 483], "gersten": 483, "gertjan": 483, "gestalt": 190, "get": [5, 7, 17, 23, 26, 31, 33, 34, 39, 42, 45, 49, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 80, 88, 92, 93, 94, 95, 98, 100, 101, 102, 106, 109, 110, 117, 120, 128, 129, 133, 134, 136, 137, 139, 141, 144, 151, 158, 160, 161, 167, 169, 170, 176, 177, 181, 183, 184, 185, 186, 188, 189, 190, 193, 196, 200, 205, 206, 208, 209, 213, 216, 222, 225, 228, 230, 232, 233, 235, 241, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 265, 266, 267, 268, 269, 271, 279, 281, 283, 288, 289, 292, 293, 295, 297, 299, 302, 305, 308, 309, 313, 316, 318, 320, 322, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 348, 349, 352, 355, 358, 359, 362, 365, 366, 369, 375, 376, 381, 385, 386, 388, 390, 394, 395, 398, 399, 400, 401, 403, 407, 410, 411, 413, 414, 415, 416, 419, 420, 425, 427, 428, 430, 432, 438, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "get_ait": 191, "get_al": [196, 205, 209, 407, 483], "get_algorithm_impl": 483, "get_all_break": 144, "get_all_link": 466, "get_all_start_method": [283, 477, 483], "get_all_us": 169, "get_an_available_item": 365, "get_anext": 191, "get_annot": [88, 255, 386, 472, 483], "get_app": 407, "get_archive_format": [332, 475], "get_arg": [386, 472, 473, 481, 482, 483], "get_asyncgen_hook": [352, 450, 483], "get_attribut": 362, "get_await": [191, 483], "get_begidx": [320, 483], "get_block": [293, 478, 483], "get_bodi": [200, 205, 207], "get_body_encod": 195, "get_boundari": [196, 205], "get_bpbynumb": 144, "get_break": 144, "get_buff": [130, 133, 408], "get_byt": [271, 475], "get_ca_cert": [341, 477, 483], "get_cache_token": [116, 477], "get_channel_bind": [341, 476], "get_charset": [196, 205], "get_child_watch": [132, 474, 483], "get_children": [351, 376], "get_ciph": [341, 479, 483], "get_clock_info": [366, 476, 483], "get_close_match": 190, "get_cod": [176, 250, 423, 477], "get_color": 474, "get_colour": 474, "get_complet": 320, "get_completer_delim": 320, "get_completion_typ": 320, "get_config_h_filenam": 355, "get_config_var": [72, 293, 355, 425, 469, 475, 477, 483], "get_connect": 169, "get_cont": [196, 197, 200, 205, 208], "get_content_charset": [196, 205], "get_content_disposit": [196, 205, 478], "get_content_maintyp": [196, 200, 205], "get_content_subtyp": [196, 205], "get_content_typ": [151, 196, 200, 205], "get_context": [126, 139, 166, 283, 474, 477, 483], "get_coro": [139, 481, 483], "get_coroutine_origin_tracking_depth": [352, 450, 480, 483], "get_coroutine_wrapp": [478, 480, 481, 483], "get_count": [227, 467], "get_curr": 483, "get_current_history_length": [320, 465], "get_dat": [133, 137, 271], "get_data": [250, 302, 395, 423, 468, 477, 483], "get_debug": [126, 130, 227, 478], "get_default": 120, "get_default_domain": 287, "get_default_schem": [355, 483], "get_default_typ": [196, 205], "get_default_verify_path": [341, 477], "get_defining_class": 100, "get_dialect": [175, 483], "get_disassembly_as_str": 362, "get_distutil_opt": 465, "get_docstr": [122, 483], "get_doctest": 193, "get_endidx": [320, 483], "get_endpoint": 390, "get_environ": 407, "get_errno": [142, 176, 468], "get_escdelay": [177, 482, 483], "get_ev": 353, "get_event_loop": [126, 130, 132, 474, 478, 479, 480, 483], "get_event_loop_polici": [126, 130, 132], "get_exampl": 193, "get_exception_handl": [126, 130, 478, 479, 483], "get_exec_path": 293, "get_extra_info": [130, 133, 136, 170, 481, 483], "get_field": 345, "get_fil": [271, 475], "get_file_break": 144, "get_filenam": [196, 200, 205, 250, 423, 477], "get_filt": 189, "get_flag": 271, "get_fold": 271, "get_fre": 351, "get_freeze_count": [227, 480], "get_from": 271, "get_frozen_object": 483, "get_full_url": [243, 395], "get_glob": 351, "get_grouped_opcod": 190, "get_handle_inherit": [293, 477], "get_head": [243, 386, 395], "get_history_item": [320, 465], "get_history_length": [320, 483], "get_host": [395, 477], "get_id": [115, 333, 351, 365, 366, 476], "get_identifi": [345, 351, 473, 483], "get_import": 302, "get_info": 271, "get_inherit": [293, 337, 477], "get_input": 85, "get_instruct": [191, 477, 483], "get_int_max_str_digit": [344, 352], "get_interpret": 421, "get_it": 191, "get_item_point": 7, "get_iter": 116, "get_key": [329, 483], "get_label": 271, "get_last_error": [142, 176, 468], "get_len": 191, "get_like_distro": 303, "get_line_buff": [320, 323], "get_lineno": 351, "get_load": [302, 474, 483], "get_loc": 351, "get_local_ev": 353, "get_lock": 283, "get_logg": 283, "get_loop": [126, 129, 135, 480, 483], "get_mag": [474, 477], "get_makefile_filenam": [72, 355], "get_map": 329, "get_matching_block": [190, 467, 483], "get_messag": 271, "get_method": [351, 395, 476], "get_mixed_type_key": 259, "get_module_st": 483, "get_nam": [139, 351, 481, 483], "get_namespac": 351, "get_native_id": [115, 365, 481, 483], "get_next_item": 386, "get_nod": 483, "get_nonloc": 351, "get_nonstandard_attr": 243, "get_nowait": [134, 283, 316], "get_obj": 283, "get_object": [142, 227, 472, 481, 483], "get_object_traceback": [382, 483], "get_opcod": 190, "get_operator_modul": 283, "get_opt": 292, "get_option_group": 292, "get_origin": [386, 481, 483], "get_origin_req_host": [243, 395, 477], "get_original_bas": [385, 428, 474, 483], "get_original_stdout": 362, "get_osfhandl": [142, 282], "get_output_charset": 195, "get_overload": [386, 473, 483], "get_pages": 362, "get_par": 464, "get_param": [196, 209, 483], "get_paramet": 351, "get_path": [355, 469, 475, 483], "get_path_nam": 355, "get_payload": [196, 200, 204, 206, 475, 483], "get_pep": 226, "get_phone_numb": 475, "get_pid": [130, 133], "get_pipe_transport": [130, 133], "get_plaform": 483, "get_platform": [355, 475, 483], "get_poli": 384, "get_posit": 408, "get_position_in_index": 386, "get_preferred_schem": [355, 473, 483], "get_profile_dict": 483, "get_protocol": [130, 133, 483], "get_proxy_response_head": [242, 483], "get_python_vers": [355, 475], "get_queu": 283, "get_readi": 232, "get_recsrc": 295, "get_recursion_avail": 483, "get_recursion_depth": 483, "get_refer": [63, 142, 227, 465, 472, 483], "get_referr": [142, 227, 382, 472, 483], "get_request": 338, "get_resource_read": [250, 252, 253, 480, 483], "get_returncod": [130, 133], "get_running_loop": [126, 129, 130, 133, 136, 139, 480, 483], "get_schem": 407, "get_scheme_nam": 355, "get_select": 189, "get_selector": [395, 477], "get_sequ": 271, "get_serv": 283, "get_server_certif": [341, 472, 476, 483], "get_shap": 386, "get_shapepoli": 384, "get_siz": 464, "get_socket": 359, "get_sourc": [250, 265, 423, 477, 483], "get_source_seg": [122, 481, 483], "get_specialization_stat": 483, "get_stack": [139, 144, 483], "get_start_method": [283, 477], "get_starttag_text": 240, "get_stat": [95, 227, 477, 483], "get_stats_profil": 308, "get_status": 481, "get_stderr": 407, "get_stdin": 407, "get_str": [271, 475, 483], "get_subdir": 271, "get_suffix": 474, "get_symbol": 351, "get_tabs": [177, 482, 483], "get_tag": [250, 474, 475], "get_task_factori": [126, 130, 478, 483], "get_temp_dir": 483, "get_terminal_s": [293, 332, 476, 483], "get_threshold": 227, "get_token": 331, "get_tool": 353, "get_traceback_limit": 382, "get_traced_memori": 382, "get_tracemalloc_memori": 382, "get_typ": [351, 395, 477], "get_type_hint": [87, 386, 473, 480, 482, 483], "get_type_of_self": 100, "get_unixfrom": [196, 205], "get_unpack_format": 332, "get_unstructur": 483, "get_usag": 292, "get_user_nam": 386, "get_valu": [345, 389], "get_vers": 292, "get_vis": 271, "get_vot": 475, "get_wch": [177, 476, 483], "get_write_buffer_limit": [130, 133, 478, 483], "get_write_buffer_s": [130, 133], "get_yield_from_it": [191, 483], "getabsfil": 483, "getacl": [248, 464], "getaddress": [209, 483], "getaddrinfo": [110, 126, 130, 142, 337, 426, 478, 479, 480, 483], "getallmatchinghead": 483, "getallocatedblock": [352, 450, 477], "getandroidapilevel": [352, 480, 483], "getannot": 248, "getarg": [468, 483], "getargspec": [255, 473, 477, 478, 479, 483], "getargvalu": [255, 478], "getasyncgenloc": [255, 474, 483], "getasyncgenst": [255, 474, 483], "getatim": 294, "getattr": [13, 78, 85, 87, 88, 93, 101, 102, 116, 126, 160, 176, 181, 191, 225, 255, 261, 283, 291, 292, 299, 345, 358, 385, 386, 427, 440, 450, 462, 475, 477, 480, 483], "getattr_hook": 93, "getattr_stat": [255, 386, 474, 475, 483], "getattrfunc": [57, 63, 75], "getattribut": [410, 412, 428], "getattributen": 410, "getattributenod": 410, "getattributenoden": 410, "getattrofunc": [57, 63, 75], "getauxv": 483, "getbas": 314, "getbegyx": 177, "getbkgd": 177, "getblock": [337, 480, 483], "getboolean": [167, 483], "getbuff": [258, 475, 483], "getbufferproc": [7, 57, 63, 476, 483], "getbytestream": 416, "getc": 463, "getcallarg": [255, 469, 478, 483], "getcanva": 384, "getcap": [272, 288], "getch": [86, 92, 177, 282], "getchannel": 464, "getcharacterstream": 416, "getcheckinterv": [465, 482, 483], "getchild": [267, 469], "getchildren": [267, 469, 475, 481, 482, 483], "getclasstre": 255, "getclosurevar": [255, 476], "getcod": [242, 395, 483], "getcodec": 483, "getcolumninfo": 281, "getcolumnnumb": 416, "getcom": [255, 313], "getcompnam": [117, 349, 401], "getcomptyp": [117, 349, 401], "getconf": 306, "getconfig": [340, 474, 483], "getconnect": 483, "getcontenthandl": 416, "getcontext": [186, 452, 466], "getcoroutineloc": [255, 478, 483], "getcoroutinest": [255, 478, 483], "getcount": [85, 291, 482], "getctim": 294, "getcurrentprocessid": 483, "getcurrenttim": 420, "getcwd": [112, 293, 294, 296, 362, 407, 451, 480, 483], "getcwdb": [293, 470, 481, 483], "getcwdu": [112, 465], "getdata": 420, "getdecim": 167, "getdecod": [109, 158], "getdefaultencod": [352, 450], "getdefaultlocal": [266, 455, 473, 474, 483], "getdefaulttimeout": 337, "getdlopenflag": [293, 352, 450, 464], "getdoc": [255, 428, 478, 481, 483], "getdomimplement": [410, 411], "getdoubl": 483, "getdtdhandl": 416, "getdxp": 483, "geteffectivelevel": 267, "getegid": [293, 483], "getelementsbytagnam": [410, 411, 462], "getelementsbytagnamen": 410, "getencod": [87, 92, 109, 158, 175, 177, 225, 258, 266, 416, 461, 473, 483], "getentityresolv": 416, "getentropi": [293, 478, 483], "getenv": [35, 293, 306], "getenvb": [293, 475], "geterrorhandl": 416, "geteuid": [293, 483], "getev": 412, "geteventcategori": 269, "geteventtyp": 269, "getexcept": 414, "getexitcodeprocess": 483, "getfamili": 467, "getfeatur": 416, "getfieldcount": 281, "getfil": [255, 483], "getfileinformationbyhandl": [293, 478], "getfilestodelet": 269, "getfilesystemencod": [34, 66, 87, 109, 120, 293, 352, 358, 421, 450, 479, 483], "getfilesystemencodeerror": [34, 87, 352, 450, 479], "getfirst": 151, "getfloat": 167, "getfmt": 295, "getfqdn": [335, 337, 483], "getfram": [482, 483], "getframeinfo": [255, 473, 483], "getframer": [117, 349, 401], "getfullargspec": [255, 313, 473, 477, 478, 479, 483], "getgeneratorloc": [255, 476], "getgeneratorst": [255, 475, 483], "getgid": [293, 483], "getgral": [233, 483], "getgrgid": [233, 479, 483], "getgrnam": [233, 348, 465, 483], "getgroup": [293, 483], "getgrouplist": [293, 476, 483], "gethandlerbynam": [267, 268, 483], "gethandlernam": [267, 483], "gethead": 242, "gethighlight": 483, "gethostbyaddr": [142, 293, 337, 483], "gethostbynam": [142, 337], "gethostbyname_ex": [337, 483], "gethostnam": [102, 107, 142, 293, 337, 483], "gethrvtim": 483, "getincrementaldecod": 158, "getincrementalencod": [158, 476], "getinfo": 422, "getinnerfram": [255, 473, 478, 483], "getinputcontext": 314, "getint": [167, 483], "getinteg": [281, 468], "getitem": [261, 291, 390, 464], "getiter": [469, 475, 481, 482, 483], "getiterfunc": [57, 63, 75], "getitim": [333, 468], "getkey": [92, 177, 483], "getlasterror": [23, 176, 483], "getlength": 416, "getlevelnam": [102, 267], "getlevelnamesmap": [267, 473, 483], "getlimit": [340, 473, 483], "getlin": [265, 382, 478, 483], "getlinenumb": 416, "getlist": [151, 478], "getloadavg": 293, "getlocal": [266, 473, 483], "getlogg": [101, 102, 125, 267, 388, 465, 469, 471, 482, 483], "getloggerclass": 267, "getlogin": [229, 293], "getlogrecordfactori": [102, 267], "getmandatoryreleas": 113, "getmark": [117, 349, 401], "getmaxyx": 177, "getmemb": [255, 358, 478, 483], "getmembers_stat": [255, 473, 483], "getmessag": [102, 267, 414], "getmessageid": 269, "getmodul": [255, 483], "getmodulehandl": 176, "getmodulehandlea": 176, "getmodulehandlew": 176, "getmoduleinfo": [468, 479, 483], "getmodulenam": [250, 255, 479], "getmous": 177, "getmro": 255, "getmtim": 294, "getnam": [153, 358, 365, 416, 472, 483], "getnamebyqnam": 416, "getnameinfo": [126, 130, 142, 337, 426, 480, 483], "getnchannel": [117, 349, 401], "getnfram": [117, 349, 401], "getnod": [398, 480, 483], "getobject": [63, 456, 481, 483], "getopt": [68, 89, 118, 190, 254, 292, 465, 469, 483], "getopterror": 228, "getoptionalreleas": 113, "getouterfram": [255, 473, 478, 483], "getoutput": [348, 483], "getpages": 322, "getparam": [117, 349, 401, 477], "getparyx": 177, "getpass": [68, 118, 173, 248, 254, 282, 293, 305, 359, 361, 468, 483], "getpasswarn": 229, "getpath": [35, 483], "getpathp": 483, "getpeerc": 483, "getpeercert": [133, 341, 468, 477, 483], "getpeernam": [133, 170, 337, 341], "getpen": 384, "getpgid": [293, 465], "getpgrp": [215, 293], "getpid": [101, 126, 283, 293, 483], "getpo": 240, "getppid": [283, 293, 483], "getpreferredencod": [120, 258, 266, 293, 348, 473, 474, 480, 483], "getprior": [293, 476], "getprocaddress": 86, "getprocesstim": 293, "getprofil": [352, 365, 450, 468, 472, 483], "getproperti": [281, 416, 483], "getpropertycount": 281, "getproto": 467, "getprotobynam": 337, "getproxi": [110, 395, 483], "getproxies_environ": 483, "getpublicid": 416, "getpwal": 310, "getpwnam": [173, 310, 348, 483], "getpwuid": [293, 310, 483], "getqnam": 416, "getqnamebynam": 416, "getquota": 248, "getquotaroot": 248, "getrandbit": [318, 466, 477, 483], "getrandom": [293, 478, 479, 483], "getread": [109, 158], "getrecursionlimit": [163, 213, 247, 352, 450, 462, 474, 483], "getrefcount": [87, 352, 450], "getreparsedeferralen": [314, 483], "getresgid": [293, 469, 483], "getrespons": [242, 478, 483], "getresuid": [293, 469, 483], "getrlimit": [322, 483], "getroot": [413, 467], "getrusag": [293, 322, 467, 483], "getsampl": 141, "getsampwidth": [117, 349, 401], "getscreen": 384, "getservbynam": [142, 337, 483], "getservbyport": [142, 337, 466, 483], "getset": [21, 63, 255], "getset_descriptor": 255, "getsetdescriptortyp": 385, "getshap": 384, "getsid": [293, 466], "getsign": [333, 483], "getsitepackag": [334, 469, 475], "getsiz": [153, 293, 294, 483], "getsizeof": [186, 352, 362, 382, 450, 468, 473, 483], "getsockaddrarg": 483, "getsocknam": [133, 136, 337, 341, 483], "getsockopt": [133, 337, 341, 469, 479], "getsourc": [255, 483], "getsourcefil": [255, 483], "getsourcelin": [255, 483], "getspal": 339, "getspnam": [339, 479, 483], "getstat": [158, 318], "getstatenam": 419, "getstatus": 477, "getstatusoutput": [348, 477, 483], "getstr": [92, 177, 281, 468, 483], "getsubject": 269, "getsummaryinform": 281, "getswitchinterv": [352, 450, 482, 483], "getsystemid": 416, "getsyx": 177, "gettarinfo": 358, "gettempdir": [360, 483], "gettempdirb": [360, 483], "gettempprefix": 360, "gettempprefixb": 360, "getter": [49, 50, 57, 68, 76, 93, 116, 167, 225, 226, 344, 365, 395, 468, 474, 477, 478, 483], "gettestcasenam": [388, 473, 474, 483], "gettext": [68, 89, 102, 246, 254, 266, 411, 435, 451, 462, 466, 473, 483], "gettimeofday": [183, 366, 483], "gettimeout": [337, 341], "gettotalrefcount": [456, 483], "gettrac": [352, 365, 450, 468, 472, 483], "getturtl": 384, "gettyp": [416, 467], "getuid": [293, 483], "getunicodeinterneds": [352, 474], "geturl": [68, 242, 394, 395, 483], "getus": [229, 248, 293, 305], "getuserbas": [334, 469, 475], "getusercfgdir": 483, "getusersitepackag": [334, 438, 469, 475], "getvalu": [78, 79, 85, 151, 169, 196, 234, 258, 262, 299, 308, 362, 389, 416, 421, 475, 478], "getvaluebyqnam": 416, "getvar": 483, "getversionex": [352, 483], "getvolumepathnam": 294, "getwch": [282, 468], "getweakref": 402, "getweakrefcount": 402, "getwelcom": [223, 288, 305], "getwin": 177, "getwindowrect": 176, "getwindowsvers": [352, 469, 479, 483], "getwrit": [109, 158], "getx": [93, 225], "getxattr": [142, 293, 476], "getyx": 177, "gfef": 103, "gg": 344, "gh": [181, 269, 284, 319, 348, 386, 456, 468, 472, 473, 474, 479, 480, 481, 482, 483], "ghi": [160, 176, 267, 331, 466], "ghost": 483, "gi_": 483, "gi_cod": [255, 468, 478, 483], "gi_fram": [255, 467, 483], "gi_run": 255, "gi_yieldfrom": [255, 478, 483], "giampaolo": [469, 474, 475, 476, 478, 480, 481, 483], "giant": 193, "gib": [109, 270, 306, 358, 362, 422, 462, 465, 467, 483], "gibson": 474, "gid": [142, 233, 293, 296, 310, 358, 468, 469, 476, 478, 483], "gid_t": 483, "gideon": 473, "gif": [196, 205, 206, 231, 249, 369, 384, 407, 467, 483], "gif87a": 475, "gigabyt": [109, 483], "gihwan": 483, "gil": [22, 23, 42, 45, 51, 59, 63, 68, 76, 84, 87, 100, 139, 166, 176, 188, 235, 250, 468, 469, 472, 475, 477, 479, 482, 483], "gilbert": 473, "gilfix": 465, "gill": 479, "gilstat": [33, 483], "gindi": [478, 483], "gio": 483, "giovanni": 483, "girdhar": [478, 479, 483], "girt": [482, 483], "gist": 102, "git": [80, 143, 348, 399, 477, 481, 483], "github": [1, 75, 80, 111, 248, 307, 388, 426, 474, 479, 480, 483], "gitignor": 483, "gitlab": 483, "giuca": 469, "giudiceandrea": 483, "give": [5, 7, 23, 42, 63, 64, 72, 73, 75, 77, 79, 84, 85, 92, 93, 94, 95, 96, 100, 103, 106, 109, 117, 120, 141, 151, 153, 155, 158, 176, 177, 181, 183, 186, 190, 191, 193, 208, 213, 216, 225, 228, 230, 250, 258, 261, 268, 269, 275, 276, 278, 279, 283, 287, 292, 293, 297, 299, 307, 314, 319, 332, 333, 338, 341, 344, 345, 348, 352, 365, 366, 369, 376, 384, 386, 388, 394, 399, 403, 405, 410, 411, 415, 422, 426, 427, 428, 434, 435, 444, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 481, 482, 483], "given": [5, 7, 9, 13, 18, 22, 23, 27, 31, 33, 42, 43, 45, 49, 56, 58, 61, 63, 64, 66, 72, 73, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 110, 112, 115, 117, 120, 133, 135, 139, 144, 149, 153, 155, 157, 158, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 200, 202, 203, 205, 206, 208, 209, 211, 213, 216, 218, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 288, 292, 293, 295, 297, 299, 301, 302, 308, 312, 313, 314, 319, 322, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 346, 347, 348, 352, 353, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 380, 381, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 403, 408, 410, 411, 412, 413, 414, 417, 420, 421, 422, 423, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "gl": 468, "glanc": [63, 102, 465], "glare": 480, "glaser": [481, 483], "glasner": 481, "gleen": 483, "glenn": 478, "glib": 466, "glibc": [257, 259, 293, 322, 473, 477, 481, 482, 483], "glingl": 384, "glitch": 247, "glob": [68, 102, 142, 144, 193, 219, 220, 254, 281, 294, 296, 297, 332, 348, 451, 468, 469, 473, 474, 475, 479, 483], "global": [23, 27, 31, 32, 34, 45, 51, 53, 63, 66, 68, 73, 76, 79, 85, 87, 94, 95, 96, 98, 110, 115, 120, 122, 132, 135, 140, 144, 151, 160, 166, 169, 176, 177, 182, 191, 193, 195, 218, 223, 225, 227, 230, 242, 247, 248, 250, 255, 259, 265, 269, 276, 283, 292, 293, 297, 298, 305, 308, 315, 320, 324, 334, 335, 337, 344, 345, 351, 352, 354, 355, 358, 359, 362, 365, 367, 369, 380, 384, 386, 388, 395, 400, 402, 413, 420, 427, 428, 429, 431, 432, 433, 435, 440, 441, 450, 455, 461, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "global_default": 337, "global_enum": [211, 473], "global_stmt": [431, 436], "globaln": [386, 483], "globalnam": 279, "globe": 183, "glossari": [109, 181, 483], "glossary_search": 483, "glow": 384, "glue": [72, 464, 466], "glws": 468, "glyph": [109, 208, 247], "gmach": 483, "gmail": [248, 483], "gmane": [288, 476, 483], "gmt": [68, 101, 183, 209, 245, 267, 341, 366], "gmtime": [101, 102, 150, 183, 209, 267, 271, 366, 464, 475, 476, 483], "gname": 358, "gnome": [230, 466, 476, 483], "gnome_sudoku": 96, "gnosi": 95, "gnu": [68, 72, 98, 228, 234, 246, 254, 266, 292, 293, 298, 330, 332, 358, 363, 426, 428, 435, 438, 447, 448, 455, 456, 460, 462, 465, 466, 468, 469, 474, 478, 480, 481, 483], "gnu32": 478, "gnu_format": 358, "gnu_getopt": [228, 465], "gnuf32": [474, 483], "gnusf": [474, 483], "gnutransl": [68, 246], "gnutype_longlink": 358, "gnutype_longnam": 358, "gnutype_spars": 358, "go": [33, 42, 73, 75, 76, 78, 79, 85, 92, 94, 95, 96, 101, 102, 106, 110, 115, 133, 139, 151, 177, 189, 193, 200, 247, 250, 313, 319, 340, 341, 348, 352, 355, 359, 365, 366, 380, 394, 395, 427, 446, 457, 462, 463, 464, 465, 467, 469, 470, 483], "goal": [63, 75, 95, 100, 103, 201, 225, 235, 320, 362, 413, 434, 463, 465, 467, 468, 475, 477, 478, 479], "god": 308, "goderbau": 476, "goe": [77, 93, 100, 106, 120, 133, 167, 169, 177, 178, 193, 230, 243, 247, 268, 275, 283, 292, 314, 352, 381, 386, 427, 464, 475, 476], "goergen": 474, "gogh": 160, "gohlk": 483, "going": [73, 75, 76, 79, 84, 93, 95, 96, 103, 106, 117, 137, 144, 151, 186, 196, 200, 279, 292, 293, 308, 334, 341, 358, 362, 365, 407, 413, 419, 428, 461, 462, 464, 468, 483], "goir": 467, "golang": 483, "gold": 456, "golden": [461, 477], "goldilock": 132, "goldschmidt": [472, 479, 480, 481, 482, 483], "golf": 440, "gollahon": 483, "golubev": 472, "gon": [384, 476], "gone": [85, 99, 110, 241, 462, 463, 465, 468, 470, 475, 481, 483], "gong": 483, "gonzalez": [479, 480], "good": [63, 75, 78, 79, 84, 85, 93, 94, 100, 101, 102, 103, 106, 109, 110, 120, 139, 151, 155, 167, 170, 176, 177, 183, 190, 193, 207, 225, 235, 250, 283, 292, 293, 295, 299, 307, 319, 341, 362, 364, 384, 386, 388, 411, 419, 426, 428, 462, 463, 465, 466, 468, 469, 473, 483], "good_cb": 386, "good_sig": 235, "goodby": [102, 140, 223, 299, 369, 443], "goodchild": 474, "goodfood": 103, "goodger": [103, 463, 464, 466], "goodi": 151, "goodwil": 426, "goofi": 465, "googl": [80, 83, 84, 101, 110, 403, 419, 467, 468, 469, 474, 476, 481, 483], "googlegroup": 307, "gopher": 394, "gopherlib": [468, 470], "gordon": [85, 107, 462, 465, 483], "gorgen": 483, "gorokhovski": [480, 483], "gossag": 472, "gosub": 319, "got": [73, 110, 126, 136, 138, 193, 267, 283, 335, 340, 386, 395, 430, 441, 449, 455, 467, 471, 474, 481, 483], "gotcha": 167, "goto": [34, 35, 68, 155, 384, 456, 471, 473, 475, 483], "gotten": [23, 151, 186, 283, 462, 483], "goulart": 483, "gov": [235, 243, 465], "govern": [85, 102, 181, 186, 194, 394, 419, 426, 475], "gpa": 440, "gpf": 462, "gpg": 467, "gpl": [271, 426, 464], "gpled": 464, "gprof": [456, 466], "gps": 483, "gr": [158, 467, 472, 473, 481, 483], "gr_gid": [233, 348, 465], "gr_mem": 233, "gr_name": [233, 465], "gr_passwd": 233, "grab": [85, 101, 102, 461, 483], "grace": [166, 319, 333, 365, 430, 469, 475, 480, 483], "grad": 384, "grade": [94, 108, 147, 225, 343, 344, 384, 465, 483], "gradelevel": 347, "gradian": 384, "gradual": [463, 464], "graduat": [440, 478, 481], "graem": 463, "graham": [109, 442, 468, 473, 483], "grail": [262, 340, 403, 442, 474, 483], "grain": [68, 84, 101, 102, 177, 193, 267, 293, 318, 352, 395, 428, 474, 483, 484], "grainger": [473, 483], "gram": [319, 431], "graminit": 472, "grammar": [66, 68, 95, 112, 157, 225, 264, 345, 377, 427, 431, 434, 435, 462, 463, 467, 470, 472, 474, 482, 483], "grammat": [431, 483], "grand": 413, "grandchild": 422, "grandchildren": [413, 483], "grant": [22, 61, 93, 106, 426, 462, 463, 467], "granular": [100, 102, 250, 293, 352, 483], "grape": 442, "graph": [68, 103, 182, 254, 268, 292, 299, 353, 384, 464, 477, 482, 483], "graphic": [68, 92, 109, 158, 173, 177, 222, 249, 254, 369, 375, 388, 403, 468, 483], "graphlib": [68, 182, 254, 483], "grasp": 411, "grass": [441, 472], "grave": 463, "gravi": 295, "gravida": 149, "gravit": [94, 384], "gray": 483, "gray25": 369, "gray50": 369, "graymap": 249, "great": [72, 94, 101, 191, 243, 319, 348, 462, 463, 464, 465, 467, 468, 469, 470, 474, 476, 478, 481, 483], "greater": [24, 33, 34, 39, 45, 56, 63, 64, 76, 92, 101, 102, 109, 115, 133, 139, 144, 146, 147, 177, 183, 186, 190, 196, 208, 209, 226, 230, 242, 248, 259, 267, 269, 293, 297, 322, 334, 335, 344, 352, 358, 362, 365, 376, 377, 382, 384, 388, 410, 428, 435, 436, 462, 464, 465, 466, 467, 478, 479, 480, 482, 483], "greaterequ": 377, "greatest": 221, "greedi": [68, 158, 319, 359], "greedili": 89, "greek": [109, 158], "greek8": 158, "green": [92, 94, 122, 160, 177, 211, 240, 318, 343, 384, 402, 441, 449, 452, 465, 466, 471, 472, 475, 479, 483], "green2": 376, "green3": 376, "green4": 376, "greenish": 177, "greenwich": [209, 366], "greet": [112, 305, 335, 340, 386, 478], "greet_al": 482, "greet_bad": 386, "greet_prop": 386, "greg": [84, 462, 464, 465, 466, 467, 476, 478, 481, 483], "gregg": 462, "gregor": 468, "gregori": [467, 468, 469, 471, 472, 473, 474, 477, 479, 480, 481, 483], "gregorian": [150, 183], "grene": 94, "grep": [98, 102, 104, 247, 348, 462, 483], "grew": [100, 471, 475], "grid": [369, 374, 376], "grid_squar": 481, "griffin": 483, "grigoryev": 483, "grin": 109, "gringauz": 472, "grip": 376, "gripe": 190, "grisbi": 468, "grisel": [481, 483], "grnd_nonblock": [293, 483], "grnd_random": 293, "grob": 390, "grok_environment_error": 483, "groner": 483, "groov": 369, "gross": [467, 483], "grossli": 426, "ground": 177, "group": [63, 68, 84, 89, 94, 99, 101, 102, 109, 118, 124, 142, 151, 158, 169, 178, 186, 187, 190, 191, 193, 203, 225, 233, 248, 251, 254, 259, 261, 266, 271, 281, 283, 288, 293, 296, 299, 314, 319, 332, 334, 337, 339, 341, 342, 343, 344, 345, 348, 353, 358, 365, 375, 376, 381, 382, 386, 394, 400, 405, 415, 419, 428, 430, 431, 434, 435, 443, 452, 461, 462, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "group1": [120, 319, 443], "group2": [120, 443], "group_mask": 467, "group_pattern": [288, 427, 431], "groupbi": [87, 95, 226, 261, 291, 466, 471, 483], "groupdict": [106, 319, 483], "grouper": 261, "groupindex": [319, 483], "groupinfo": 288, "grouping_opt": 345, "groupn": 319, "grouppattern": 288, "groupref_exist": 483, "grow": [55, 60, 85, 102, 193, 226, 269, 320, 376, 462, 466, 468, 469, 475, 483], "grown": [193, 328], "growth": [476, 483], "grp": [68, 254, 310, 339, 348, 391, 465, 482, 483], "grunt": 464, "gruszczi": [476, 477, 481, 483], "grzegorz": 483, "grzybowski": 483, "grzywacz": 483, "gs": 178, "gsd": 96, "gstate": 33, "gt": [95, 122, 238, 239, 240, 291, 417, 431, 475, 476], "gt_bitwise_or": 431, "gte": [122, 431], "gte_bitwise_or": 431, "gtk": [96, 466, 468], "gu": 483, "guarante": [7, 9, 11, 24, 33, 42, 54, 58, 59, 61, 63, 64, 67, 72, 73, 76, 85, 92, 95, 115, 122, 139, 176, 183, 186, 191, 193, 196, 205, 225, 226, 232, 235, 243, 250, 255, 258, 262, 276, 278, 283, 288, 292, 293, 299, 308, 324, 328, 331, 338, 344, 347, 348, 352, 362, 364, 365, 378, 386, 400, 405, 408, 413, 415, 425, 427, 428, 432, 461, 466, 467, 469, 471, 475, 476, 479, 480, 481, 482, 483], "guard": [63, 68, 100, 102, 122, 251, 313, 362, 365, 385, 386, 431, 432, 441, 481, 483], "guelton": 483, "guess": [84, 158, 167, 184, 193, 200, 206, 209, 245, 250, 255, 266, 276, 308, 395, 407, 434, 456, 465, 475, 483], "guess_all_extens": [276, 483], "guess_extens": [200, 276], "guess_schem": 407, "guess_typ": [200, 245, 276, 407, 483], "guesswork": 475, "guest": [160, 337, 483], "gui": [68, 83, 85, 95, 109, 247, 292, 340, 342, 352, 368, 369, 388, 439, 458, 468, 476, 483], "guid": [68, 70, 74, 80, 91, 92, 100, 109, 111, 183, 186, 190, 225, 251, 293, 295, 298, 399, 453, 456, 459, 460, 468, 469, 474, 475, 477, 483], "guidanc": [96, 105, 385, 469, 474, 483], "guidelin": [68, 75, 100, 164, 247, 362, 462, 463, 467, 483], "guido": [78, 80, 85, 87, 93, 103, 190, 279, 344, 386, 426, 442, 450, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "guil": 468, "guilherm": [468, 469, 471, 477, 479, 480, 483], "gullibl": 151, "gumbi": 369, "gunicorn": 68, "gunk": 304, "gunther": 413, "gunzip": 234, "guo": [481, 483], "gusi": 462, "gust": [465, 466, 467, 468, 469, 475, 476], "gustav": 251, "gustavo": [230, 464, 465, 466, 467, 483], "gut": [109, 151, 483], "gutteridg": 483, "guy": 84, "gvfs": [476, 483], "gvr": [462, 464, 465, 466, 469, 479], "gw": 483, "gxx": 261, "gz": [102, 218, 234, 276, 296, 332, 358, 399, 424, 426, 453, 460, 462, 467, 474, 475, 483], "gzip": [68, 80, 87, 102, 119, 149, 156, 158, 200, 218, 254, 276, 332, 358, 362, 409, 426, 451, 462, 465, 469, 471, 472, 477, 479, 483], "gzip_decod": 483, "gzipfil": [87, 234, 358, 469, 471, 472, 474, 475, 478, 482, 483], "gztar": [332, 475, 479, 483], "h00": 235, "h01": 235, "h1": [151, 235, 240, 242, 268, 420], "h10": 235, "h2": [235, 242, 268, 411], "h2pi": [479, 483], "h3": 242, "h4": 242, "h5": 483, "h_errno": 337, "h_len": 320, "haag": 480, "habit": [230, 271], "hack": [34, 84, 95, 100, 193, 331, 395, 455, 462, 463, 464, 483], "hackcheck": 483, "hacker": [151, 318], "hackeri": 79, "hackish": 467, "hackman": [479, 483], "hacl": [235, 474, 483], "had": [5, 22, 33, 42, 61, 72, 76, 85, 95, 102, 112, 120, 155, 158, 169, 170, 177, 183, 186, 191, 199, 243, 255, 283, 293, 297, 314, 328, 337, 341, 369, 380, 382, 388, 394, 410, 428, 432, 436, 441, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "hadn": [348, 483], "hagemeist": 483, "hagen": [469, 483], "hagino": 464, "hai": [472, 473], "haiku": 483, "hail": 102, "hairi": 292, "hakan": [473, 483], "halanta": 109, "half": [25, 92, 102, 133, 177, 183, 221, 226, 275, 295, 328, 347, 435, 469, 474, 479, 483], "halfdelay": [92, 177], "halfway": [275, 470], "hall": 483, "halt": [186, 212, 292, 296, 388, 477], "halv": [337, 466, 469], "ham": [102, 160, 170, 190, 225, 255, 279, 321, 430, 432, 441, 478], "hamcrest": 390, "hamish": 466, "hamlet": [160, 462], "hammer": [442, 462], "hammond": [269, 461, 462, 464, 465, 476, 483], "hamster": 190, "hamt": 483, "hamza": 483, "han": [441, 465, 472, 483], "hand": [63, 73, 75, 84, 85, 94, 95, 103, 106, 129, 176, 177, 181, 186, 196, 201, 206, 213, 225, 230, 247, 258, 269, 299, 305, 319, 338, 366, 369, 384, 386, 389, 427, 430, 434, 436, 451, 462, 463, 464, 465, 467, 468, 470, 471, 476, 481, 483], "hand01": 268, "hand02": 268, "hand03": 268, "hand04": 268, "hand05": 268, "hand06": 268, "hand07": 268, "hand08": 268, "hand09": 268, "hand2": 369, "hand_name_1": 268, "hand_name_2": 268, "handdraw": 384, "handi": [68, 85, 92, 93, 94, 106, 167, 176, 190, 292, 344, 368, 462, 466], "handier": 330, "handl": [7, 25, 31, 32, 33, 34, 35, 42, 49, 51, 56, 61, 63, 64, 66, 68, 73, 75, 76, 79, 85, 91, 92, 94, 95, 99, 100, 101, 106, 109, 112, 113, 115, 120, 122, 126, 132, 139, 142, 144, 146, 149, 151, 152, 157, 158, 167, 169, 170, 176, 177, 181, 183, 186, 187, 189, 190, 191, 193, 194, 196, 200, 201, 202, 203, 207, 208, 212, 213, 215, 225, 226, 230, 234, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 259, 262, 267, 268, 269, 270, 271, 278, 282, 283, 293, 295, 297, 298, 308, 309, 311, 319, 321, 328, 330, 331, 332, 333, 335, 337, 338, 341, 342, 344, 345, 348, 352, 353, 358, 362, 365, 366, 371, 375, 378, 386, 389, 390, 395, 400, 403, 404, 407, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 443, 452, 455, 461, 462, 463, 464, 466, 467, 470, 471, 472, 474, 475, 476, 479, 480, 481, 482, 483, 484], "handle_accept": 475, "handle_charref": 240, "handle_com": 240, "handle_data": 240, "handle_decl": 240, "handle_defect": 208, "handle_echo": 136, "handle_endtag": 240, "handle_entityref": 240, "handle_error": [338, 479, 483], "handle_expect_100": 245, "handle_list": 348, "handle_one_request": 245, "handle_pi": 240, "handle_read": 483, "handle_request": [102, 170, 333, 338, 407, 420, 469], "handle_stackframe_without_leak": 255, "handle_startendtag": 240, "handle_starttag": 240, "handle_timeout": [338, 468, 469], "handleerror": [101, 267, 269], "handlelogrecord": 102, "handlepoint": 411, "handler": [3, 23, 24, 28, 33, 34, 59, 61, 63, 64, 66, 67, 68, 73, 75, 76, 81, 87, 109, 115, 118, 120, 122, 125, 126, 130, 132, 135, 145, 151, 152, 167, 177, 185, 189, 191, 196, 197, 201, 202, 213, 225, 229, 240, 245, 254, 256, 258, 266, 273, 283, 292, 293, 297, 308, 314, 328, 329, 332, 337, 340, 344, 352, 356, 358, 362, 366, 368, 388, 393, 395, 403, 411, 412, 414, 416, 417, 420, 427, 428, 429, 455, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "handler_class": [245, 407], "handler_consolehandl": 101, "handler_hand01": 268, "handler_hand02": 268, "handler_hand03": 268, "handler_hand04": 268, "handler_hand05": 268, "handler_hand06": 268, "handler_hand07": 268, "handler_hand08": 268, "handler_hand09": 268, "handler_ord": 395, "handlernam": 314, "handleslid": 411, "handleslideshow": 411, "handleslideshowtitl": 411, "handleslidetitl": 411, "handletoc": 411, "handshak": [136, 341, 477, 478, 479, 480, 481, 483], "hang": [102, 110, 135, 283, 328, 333, 362, 465, 475, 483], "hangul": 483, "hangup": 333, "hanld": 483, "hanoi": 384, "hansen": [464, 482, 483], "hao": 477, "happen": [23, 25, 33, 59, 68, 73, 76, 84, 85, 92, 93, 95, 102, 103, 110, 115, 139, 157, 169, 176, 177, 181, 183, 190, 207, 225, 226, 247, 250, 255, 258, 266, 267, 268, 269, 292, 293, 295, 299, 314, 328, 334, 337, 341, 344, 345, 352, 353, 359, 361, 362, 365, 369, 381, 386, 388, 395, 427, 428, 429, 430, 432, 435, 436, 443, 462, 464, 466, 467, 468, 469, 470, 474, 477, 478, 481, 482, 483], "happi": [94, 126, 465, 481, 483], "happili": 386, "happy_eyeballs_delay": [126, 136, 481, 483], "har": [102, 155, 388, 475, 477, 483], "harbor": [464, 465], "hard": [33, 42, 72, 73, 76, 92, 93, 95, 100, 102, 106, 163, 167, 175, 176, 177, 183, 184, 190, 193, 202, 225, 267, 268, 292, 293, 296, 297, 308, 319, 322, 330, 340, 341, 348, 358, 362, 375, 461, 462, 475, 477, 480, 481, 483], "hardcod": [57, 176, 257, 267, 269, 460, 477, 483], "hardcov": 160, "harden": [456, 483], "harder": [78, 85, 193, 292, 344, 474, 483], "hardlink": [163, 358, 482, 483], "hardlink_dup": [163, 482], "hardlink_to": [296, 472, 481, 483], "hardwar": [33, 109, 141, 177, 186, 293, 295, 322, 337, 348, 366, 405, 469, 478, 483], "hardwir": [93, 169, 308], "harel": 483, "harm": [167, 226, 292, 475, 483], "harmless": [45, 73, 193, 376, 426, 456, 483], "harmon": 483, "harmonic_mean": [343, 479, 483], "harold": [95, 345], "harradin": 483, "harri": 467, "harsh": 483, "hart": 275, "harvey": 483, "has": [5, 7, 9, 11, 13, 17, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 42, 43, 45, 46, 47, 49, 56, 58, 59, 61, 63, 64, 71, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 128, 129, 132, 133, 134, 137, 139, 141, 144, 149, 151, 153, 155, 157, 158, 159, 160, 161, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 196, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 212, 213, 214, 216, 218, 221, 225, 226, 228, 230, 232, 235, 242, 243, 244, 245, 247, 248, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 281, 283, 288, 292, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 311, 312, 313, 314, 318, 319, 320, 322, 324, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 402, 403, 405, 408, 410, 412, 413, 415, 416, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 443, 444, 446, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "has_alpn": [341, 478], "has_been_cal": 390, "has_children": 351, "has_color": [92, 177], "has_data": [389, 395, 477], "has_dualstack_ipv6": [337, 481, 483], "has_ecdh": 341, "has_exec": [482, 483], "has_extended_color_support": [177, 472, 483], "has_extn": 335, "has_funct": 483, "has_head": [175, 243, 395, 483], "has_ic": 177, "has_il": 177, "has_internal_subset": 314, "has_ipv6": 337, "has_key": [112, 177, 462, 463, 464, 465, 470, 483], "has_loc": [250, 432], "has_never_check_common_nam": 341, "has_nonstandard_attr": 243, "has_npn": 341, "has_offset": 102, "has_opt": [167, 292], "has_sect": 167, "has_sni": [223, 242, 248, 288, 305, 335, 341, 395], "has_sslv2": 341, "has_sslv3": 341, "has_ticket": 341, "has_tlsv1": 341, "has_tlsv1_1": [341, 480], "has_tlsv1_2": 341, "has_tlsv1_3": 341, "hasarg": [191, 474], "hasattr": [49, 87, 93, 102, 110, 225, 226, 255, 283, 314, 320, 344, 352, 358, 367, 386, 388, 389, 413, 427, 428, 432, 450, 465, 468, 474, 475, 477, 480, 483], "hasattribut": 410, "hasattributen": 410, "haschildnod": 410, "hascompar": 191, "hasconst": 191, "hasexc": [191, 474], "hasfeatur": 410, "hasfre": 191, "hash": [22, 30, 33, 34, 49, 63, 64, 68, 75, 78, 84, 85, 87, 96, 146, 161, 163, 167, 174, 181, 184, 223, 225, 237, 250, 251, 270, 289, 298, 311, 337, 344, 352, 385, 398, 402, 426, 428, 430, 432, 435, 449, 450, 455, 456, 464, 465, 467, 468, 469, 472, 473, 475, 476, 479, 482, 483], "hash_a": 386, "hash_b": 386, "hash_bit": [30, 352], "hash_complex": 344, "hash_float": 344, "hash_fract": 344, "hash_info": [344, 352, 428, 450, 475, 477], "hash_nam": 235, "hash_random": [352, 483], "hash_se": [33, 34, 474], "hash_valu": 344, "hashabl": [22, 49, 63, 85, 87, 116, 161, 183, 190, 221, 225, 226, 232, 255, 259, 296, 318, 344, 386, 402, 428, 430, 465, 466, 468, 469, 473, 474, 476, 478, 482, 483], "hashablesequ": 474, "hashandl": 267, "hashcollis": 459, "hashfunc": [57, 63, 75], "hashlib": [33, 68, 84, 173, 174, 237, 254, 327, 340, 426, 456, 468, 469, 470, 483], "hashlib_help": 483, "hashopen": 330, "hashtabl": 483, "hashtable_s": 483, "hasjab": 191, "hasjrel": 191, "haskel": [95, 261, 441, 462, 465], "hasloc": 191, "hasn": [13, 79, 84, 85, 133, 135, 139, 190, 232, 297, 314, 334, 341, 356, 462, 463, 467, 468, 470, 478, 480, 483], "hasnam": 191, "hast": [88, 469, 471, 472, 476, 477, 481, 482, 483], "hasx": 474, "hat": [79, 80, 230, 426, 451], "hatch": [386, 469], "hatfield": [473, 483], "hatyp": 337, "haubenwalln": 483, "haumea": 343, "haunt": 344, "hauser": 462, "have": [5, 7, 11, 22, 23, 27, 28, 31, 33, 34, 42, 45, 47, 49, 58, 59, 60, 63, 64, 67, 72, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 129, 132, 137, 138, 139, 141, 144, 149, 151, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 211, 213, 215, 218, 221, 225, 226, 230, 234, 235, 241, 242, 243, 244, 247, 248, 250, 251, 252, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 305, 307, 308, 311, 312, 314, 319, 322, 323, 324, 325, 328, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 381, 382, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 405, 407, 408, 410, 411, 412, 413, 414, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 442, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "have_argu": [191, 474], "have_contextvar": [186, 456], "have_docstr": 362, "have_dynamic_load": 483, "have_expat_config_h": 483, "have_featur": 483, "have_gcc_asm_for_x64": 483, "have_libreadlin": 456, "have_linux_vm_sockets_h": 483, "have_long_long": 483, "have_perf_trampolin": 104, "have_pthread_stub": 483, "have_py_set_53bit_precis": [473, 483], "have_round": 483, "have_sockaddr_alg": 483, "have_symlink": 483, "have_thread": [186, 476], "haven": [33, 96, 106, 109, 139, 151, 186, 468, 469, 474, 483], "haydaman": 483, "hci_data_dir": 337, "hci_filt": 337, "hci_time_stamp": 337, "hcom": 336, "hda": 348, "hdf": 483, "hdf5": 483, "hdl": [394, 426], "hdlr": 267, "hdr": 288, "hdrs": [84, 393, 395], "he": [103, 158, 297, 319, 365, 435, 462, 479], "head": [33, 63, 102, 103, 106, 136, 150, 151, 155, 178, 200, 240, 241, 242, 245, 288, 294, 308, 318, 333, 334, 338, 341, 376, 384, 395, 413, 462, 464, 476, 483], "header": [3, 25, 28, 58, 63, 68, 73, 84, 101, 106, 117, 136, 142, 146, 151, 153, 155, 167, 169, 176, 190, 193, 194, 195, 196, 197, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 215, 230, 234, 242, 243, 244, 245, 247, 248, 250, 256, 267, 269, 271, 276, 282, 285, 288, 293, 297, 305, 311, 317, 335, 336, 337, 341, 349, 352, 355, 358, 362, 377, 381, 385, 393, 395, 397, 411, 419, 422, 427, 429, 452, 456, 461, 463, 465, 467, 468, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "header_enc": 195, "header_encod": 195, "header_encode_lin": 195, "header_exist": 483, "header_factori": [203, 208, 476], "header_fetch_pars": 208, "header_item": [243, 395], "header_max_count": 208, "header_nam": [202, 395, 407], "header_offset": 422, "header_source_pars": 208, "header_store_pars": 208, "header_str": 288, "header_valu": 395, "headerdefect": [199, 203], "headererror": 358, "headernam": 197, "headerpars": [207, 476], "headerparseerror": [196, 199, 205], "headerregistri": [68, 194, 199, 200, 205, 208, 285, 483], "headerson": [207, 483], "headervalu": 197, "headlin": 464, "heaney": [477, 478], "heap": [16, 32, 35, 42, 50, 58, 68, 73, 75, 76, 182, 214, 254, 282, 322, 384, 452, 465, 466, 468, 469, 472, 473, 474, 481, 482, 483], "heapifi": [236, 318, 452, 483], "heapmin": 282, "heappop": [108, 236, 452, 465, 468], "heappush": [108, 236, 452, 465, 468], "heappushpop": [236, 468], "heapq": [68, 87, 108, 182, 225, 226, 254, 316, 318, 452, 465, 466, 467, 468, 483], "heapreplac": [236, 318], "heapsort": 236, "heaqp": 483, "hearn": 235, "heart": [465, 474], "heather": 319, "heathmor": 319, "heavi": [73, 110, 167, 469, 476, 480, 483], "heavili": [184, 250, 335, 427, 463, 479, 480], "heblikar": [480, 481, 483], "hebrew": [109, 158], "heck": 95, "hector": 466, "hedstrom": 468, "hee": 483, "heic": 483, "heif": 483, "height": [92, 177, 181, 247, 281, 293, 319, 343, 369, 376, 384, 386, 449, 467, 483], "height_femal": 343, "height_mal": 343, "heighten": 456, "heiko": 476, "heil": 483, "heim": [235, 426, 468, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483], "heissler": 481, "hel": 297, "held": [22, 31, 33, 42, 59, 84, 100, 167, 247, 258, 268, 269, 278, 283, 344, 352, 365, 388, 426, 428, 462, 467, 468, 469, 479, 483], "hell": 73, "heller": [467, 468, 469], "hellman": [341, 476], "hello": [68, 73, 75, 79, 85, 86, 96, 102, 112, 114, 121, 129, 133, 135, 136, 137, 139, 146, 151, 176, 184, 226, 230, 235, 240, 278, 283, 288, 291, 299, 301, 304, 337, 338, 340, 341, 344, 360, 362, 364, 365, 368, 378, 388, 389, 407, 435, 440, 442, 443, 446, 461, 475, 477, 478, 481, 482, 483], "hello_world": 126, "hello_world_app": 407, "hellohellohello": 86, "hellorequest": 341, "helloworld": [114, 435], "helm": 475, "helo": 335, "helo_resp": 335, "help": [23, 33, 45, 49, 58, 61, 66, 68, 75, 80, 84, 85, 86, 87, 89, 93, 94, 96, 101, 102, 103, 106, 108, 109, 110, 118, 122, 123, 150, 151, 152, 155, 158, 169, 176, 177, 187, 190, 191, 192, 193, 200, 222, 225, 226, 228, 230, 234, 235, 241, 244, 246, 250, 253, 255, 262, 281, 288, 293, 297, 308, 313, 335, 337, 340, 344, 352, 362, 366, 367, 368, 369, 375, 378, 380, 386, 394, 395, 398, 399, 405, 413, 421, 428, 432, 435, 448, 450, 451, 455, 456, 459, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "help_": 155, "help_bar": 155, "helpdialog": 483, "helper": [5, 33, 51, 68, 86, 93, 128, 164, 169, 176, 187, 196, 205, 218, 235, 250, 257, 258, 267, 299, 319, 332, 381, 384, 388, 395, 413, 467, 468, 476, 478, 479, 483], "helpformatt": [120, 292, 483], "helpsourc": 483, "helt": 483, "hemsley": 483, "henc": [33, 73, 102, 169, 191, 193, 247, 250, 253, 269, 283, 292, 301, 308, 322, 331, 344, 347, 348, 365, 400, 427, 428, 430, 466, 477, 480, 483], "henri": 483, "henriqu": 483, "henstridg": [230, 462, 469], "henzen": 235, "her": 103, "herald": 464, "herath": 476, "here": [5, 7, 23, 28, 33, 34, 42, 45, 51, 63, 72, 73, 75, 76, 84, 85, 89, 92, 93, 94, 95, 101, 102, 103, 106, 110, 112, 120, 129, 137, 141, 144, 151, 153, 155, 158, 167, 169, 170, 175, 176, 177, 181, 183, 186, 190, 191, 193, 196, 199, 200, 202, 205, 206, 207, 208, 209, 216, 221, 222, 225, 226, 230, 234, 235, 242, 245, 247, 248, 251, 255, 267, 268, 269, 270, 275, 283, 288, 292, 293, 297, 299, 305, 307, 314, 315, 319, 322, 329, 331, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 352, 358, 361, 362, 365, 366, 369, 384, 385, 386, 388, 390, 395, 400, 403, 408, 410, 411, 413, 423, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 455, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 475, 476, 478, 479, 480, 481, 482, 483], "hereaft": [101, 308, 355], "herebi": 426, "herein": 426, "hergenroed": 483, "herror": 337, "hertz": 406, "heterogen": [102, 344, 470, 483], "hetland": [464, 465], "hetting": [93, 95, 108, 427, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "heurist": [190, 197, 203, 225, 471, 475, 483], "hewlett": 462, "hex": [9, 64, 85, 94, 106, 109, 143, 146, 158, 176, 211, 225, 235, 341, 344, 345, 352, 369, 398, 428, 435, 444, 450, 452, 462, 463, 465, 467, 468, 470, 471, 472, 477, 478, 483], "hex_codec": [158, 477], "hex_decod": 477, "hexadecim": [64, 85, 96, 100, 106, 146, 158, 178, 235, 259, 292, 319, 344, 345, 347, 352, 435, 462, 466, 468, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483], "hexbin4": [482, 483], "hexdigest": [235, 237, 340, 467, 483], "hexdigit": [178, 281, 345, 435], "hexinteg": 435, "hexlifi": [146, 483], "hexrepl": 106, "hexstr": 146, "hexvers": [4, 80, 352, 450, 476], "hey": 362, "hfs": 84, "hg": [167, 296, 341, 465, 469, 475, 483], "hh": [158, 183, 248, 366, 435, 462, 483], "hhhh": [347, 462], "hhl": 84, "hhllhh": 215, "hhmm": [183, 248, 366], "hi": [102, 147, 176, 304, 344, 369, 386, 483], "hibern": 483, "hidden": [33, 85, 179, 191, 247, 297, 308, 338, 376, 384, 474, 476, 480, 481, 482, 483], "hide": [92, 96, 109, 179, 193, 194, 216, 247, 258, 292, 348, 362, 376, 384, 386, 400, 427, 461, 465, 469, 474, 475, 482, 483], "hide_cookie2": 243, "hideturtl": 384, "hidpi": 483, "hiem": 477, "hier": 245, "hierachi": 386, "hierarch": [68, 101, 245, 267, 268, 368, 369, 376, 394, 412, 413, 420, 432], "hierarchi": [45, 68, 85, 98, 101, 102, 103, 186, 213, 225, 250, 255, 267, 268, 290, 299, 302, 329, 333, 340, 369, 375, 376, 388, 410, 413, 428, 432, 436, 465, 467, 470, 483, 484], "hierarchy_request_err": 410, "hierarchyrequesterr": 410, "high": [32, 33, 38, 42, 60, 64, 68, 73, 74, 79, 84, 85, 96, 101, 102, 110, 128, 130, 133, 136, 137, 139, 149, 164, 177, 183, 186, 191, 194, 201, 226, 248, 259, 261, 266, 270, 283, 289, 293, 295, 299, 308, 309, 318, 319, 328, 329, 332, 333, 337, 340, 341, 343, 352, 353, 356, 358, 366, 403, 436, 464, 465, 466, 467, 468, 474, 475, 476, 477, 478, 480, 482, 483], "high_priority_class": 348, "higher": [31, 33, 56, 68, 95, 98, 101, 102, 103, 115, 146, 169, 177, 186, 191, 202, 204, 224, 225, 230, 242, 254, 258, 261, 267, 268, 269, 270, 279, 281, 282, 283, 288, 293, 299, 305, 309, 325, 332, 337, 340, 341, 352, 358, 359, 365, 382, 386, 395, 400, 413, 463, 464, 467, 468, 475, 476, 477, 480, 483], "highest": [34, 79, 93, 94, 101, 122, 133, 167, 267, 278, 299, 300, 328, 333, 340, 341, 344, 352, 366, 430, 468, 476, 483], "highest_protocol": [299, 465], "highlight": [68, 80, 92, 177, 190, 247, 388, 394, 457, 462, 469, 472, 473, 475, 483, 484], "highpag": 483, "hijack": 176, "hilbert": 384, "hill": 483, "hiller": 147, "hilliard": 483, "hillier": 483, "hilton": [472, 473, 474, 482, 483], "him": 462, "himanshu": 483, "hindl": 465, "hindranc": 84, "hint": [42, 68, 79, 87, 88, 96, 119, 158, 167, 202, 230, 241, 243, 246, 247, 258, 262, 344, 384, 385, 386, 427, 428, 436, 473, 479, 480, 483, 484], "hirokazu": [469, 476, 483], "hiroshima": 426, "his": [73, 84, 103, 230, 435, 462, 464, 468, 469, 477, 479, 483], "hisao": 465, "histfil": 320, "histor": [22, 41, 63, 73, 75, 95, 100, 103, 167, 177, 183, 213, 248, 271, 295, 366, 383, 414, 422, 436, 461, 469, 474, 477, 479, 483], "histori": [68, 80, 102, 109, 155, 183, 247, 271, 297, 334, 363, 365, 424, 445, 455, 477, 478, 479, 483], "historic_rainfal": 85, "history_get": 320, "history_truncate_fil": 320, "historyconsol": 320, "hit": [86, 92, 102, 144, 153, 176, 226, 247, 297, 341, 359, 369, 380, 467, 475, 483], "hit_except": 427, "hitchcock": 147, "hither": 443, "hive": 461, "hk": 476, "hkcu": 461, "hkey": 405, "hkey_": [68, 404], "hkey_classes_root": 405, "hkey_current_config": 405, "hkey_current_us": [34, 405, 461], "hkey_dyn_data": 405, "hkey_local_machin": [34, 405, 461], "hkey_performance_data": 405, "hkey_us": 405, "hklm": 461, "hkn": 459, "hks": 73, "hkscs": 158, "hline": 177, "hlinuxtnam": 462, "hlist": [375, 483], "hls": 162, "hls_to_rgb": 162, "hm": 176, "hmac": [68, 173, 174, 235, 254, 269, 283, 299, 326, 337, 464, 469, 481, 483], "hmac_upd": 483, "hmodul": 176, "ho": [228, 483], "hoc": 103, "hodgson": 465, "hoelzl": 483, "hoffmann": [474, 483], "hog": 362, "hohe": 483, "hoho": 483, "hold": [7, 9, 23, 27, 33, 45, 51, 55, 58, 60, 63, 66, 73, 85, 93, 100, 101, 102, 120, 124, 139, 167, 169, 170, 176, 183, 186, 191, 203, 215, 242, 245, 255, 257, 259, 268, 269, 271, 283, 292, 293, 302, 308, 319, 322, 325, 330, 337, 341, 344, 348, 352, 362, 365, 369, 381, 388, 405, 411, 413, 415, 426, 428, 432, 436, 462, 463, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "holden": [479, 483], "holder": [426, 469, 483], "hole": [151, 293, 331, 468, 469, 472, 483], "holger": 467, "holi": [262, 340, 345, 442], "hollywood": 340, "holman": [473, 483], "holmquist": 483, "holtermann": 483, "home": [33, 34, 68, 85, 86, 92, 96, 102, 103, 106, 151, 155, 167, 177, 214, 234, 247, 251, 271, 272, 293, 294, 296, 297, 306, 310, 314, 315, 320, 331, 334, 348, 354, 362, 369, 375, 384, 399, 434, 438, 453, 456, 461, 468, 474, 475, 476, 478, 481, 483], "home_dir": 167, "home_pag": 307, "homebrew": 106, "homedir": 483, "homedr": 294, "homepag": 307, "homepath": 294, "homer": 481, "homogen": [84, 344, 347, 408], "hong": [473, 481, 483], "honglin": 483, "hongweipeng": 483, "honor": [5, 115, 251, 297, 352, 358, 420, 468, 469, 479, 483], "honour": 483, "hood": [45, 101, 102, 106, 362, 467, 468, 475], "hook": [24, 31, 32, 34, 59, 66, 68, 87, 93, 98, 100, 115, 142, 155, 176, 188, 208, 216, 218, 225, 242, 254, 280, 302, 307, 308, 315, 331, 340, 344, 352, 363, 365, 382, 385, 399, 400, 423, 428, 430, 436, 438, 455, 456, 462, 464, 467, 469, 472, 473, 474, 476, 478, 479, 480, 482, 483, 484], "hook_compress": [218, 472], "hook_encod": [218, 479, 483], "hookcompress": 483, "hop": 407, "hope": [76, 99, 102, 103, 213, 329, 386, 461, 462, 463, 476, 477, 479, 481], "hopper": [482, 483], "horban": 479, "horch": 177, "horcicka": 468, "horev": 477, "horizont": [109, 177, 178, 375, 376, 384, 435], "horler": 468, "horner": 261, "horribl": 446, "hors": [468, 469], "horsen": 469, "hosmer": 483, "host": [33, 68, 84, 102, 107, 126, 136, 142, 158, 177, 178, 209, 212, 223, 242, 243, 245, 247, 248, 256, 257, 269, 271, 283, 286, 287, 288, 293, 294, 296, 305, 313, 319, 335, 337, 338, 341, 346, 347, 359, 362, 394, 395, 398, 407, 419, 456, 461, 462, 465, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483], "host4": 99, "host6": 99, "host_flag": 483, "hostflag": 483, "hostmask": [99, 259], "hostmast": 341, "hostnam": [102, 110, 136, 142, 151, 158, 184, 209, 223, 242, 248, 259, 269, 283, 288, 293, 305, 313, 335, 337, 341, 394, 395, 419, 449, 462, 465, 469, 474, 475, 476, 477, 480, 483], "hostname_checks_common_nam": [341, 480, 483], "hostrunn": 483, "hostv4": 483, "hostv6": 483, "hot": [85, 247, 308], "hotshot": 467, "hotspot": 465, "houglum": 483, "hour": [20, 85, 106, 126, 133, 139, 183, 209, 269, 271, 366, 422, 425, 435, 465, 479], "hourglass": 369, "hous": [319, 479], "housekeep": [138, 365], "houston": 268, "hover_delay": 483, "hovercraft": 446, "how": [5, 7, 11, 33, 42, 58, 61, 63, 64, 68, 71, 72, 73, 75, 76, 77, 92, 93, 95, 96, 99, 100, 101, 103, 106, 109, 110, 112, 117, 120, 132, 133, 137, 139, 141, 144, 149, 151, 155, 158, 163, 167, 176, 181, 183, 184, 186, 187, 189, 190, 194, 195, 200, 201, 202, 207, 218, 222, 225, 226, 230, 235, 242, 243, 244, 247, 250, 251, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 272, 278, 283, 288, 293, 298, 299, 308, 311, 319, 320, 321, 322, 331, 332, 333, 337, 338, 341, 344, 346, 348, 352, 358, 364, 365, 366, 368, 376, 380, 382, 386, 388, 394, 395, 399, 408, 410, 419, 421, 425, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "how_mani": 64, "howdi": 284, "howev": [5, 23, 24, 33, 34, 42, 45, 49, 63, 71, 72, 73, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 120, 128, 133, 135, 139, 151, 158, 161, 167, 169, 170, 176, 177, 181, 186, 190, 193, 194, 196, 199, 201, 203, 205, 206, 208, 209, 213, 225, 226, 230, 235, 243, 245, 247, 248, 250, 252, 255, 258, 259, 261, 267, 268, 269, 271, 272, 281, 283, 288, 292, 293, 299, 311, 319, 328, 331, 332, 333, 334, 337, 340, 341, 344, 345, 348, 352, 353, 354, 355, 358, 362, 364, 365, 366, 369, 376, 378, 381, 385, 386, 387, 388, 394, 397, 403, 405, 410, 411, 415, 416, 419, 422, 426, 428, 429, 430, 432, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "howmuch": 305, "howto": [68, 85, 92, 97, 106, 120, 340, 419, 462, 469, 470, 475, 483], "hoyt": [468, 478, 483], "hp": [83, 466, 483], "hpet": 131, "href": [200, 238, 240, 242, 413, 469], "hreftyp": 176, "hresult": 176, "hron": [473, 483], "hrs": 102, "hsiang": 483, "hstderror": 348, "hstdinput": 348, "hstdoutput": 348, "hstrerror": 337, "hsu": 483, "hsuan": [480, 483], "hsv": 162, "hsv_to_rgb": 162, "ht": [178, 343, 384], "ht_cached_key": 483, "htbin": 245, "htcpcp": 241, "htest": 483, "htm": [162, 183, 245, 464, 465, 466, 467, 468, 469, 470], "html": [1, 68, 71, 78, 79, 80, 95, 101, 103, 106, 110, 126, 136, 150, 151, 152, 158, 162, 190, 200, 205, 242, 243, 245, 247, 254, 261, 273, 293, 313, 340, 341, 369, 380, 394, 395, 396, 407, 411, 412, 413, 417, 419, 420, 424, 426, 428, 435, 452, 455, 456, 459, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 478, 480, 481, 482, 483, 484], "html2fo": 464, "html4": [239, 240, 483], "html5": [239, 476, 477, 483], "html_text": 200, "htmlcalendar": [150, 480], "htmldiff": [190, 466, 478, 483], "htmlentitydef": 470, "htmlhelp": 483, "htmlparseerror": 476, "htmlparser": [68, 273, 470, 472, 476, 477, 478, 482, 483], "htmlparsererror": [478, 483], "htmlview": 483, "hton": [107, 337, 472, 480, 483], "htonl": [107, 337], "http": [68, 80, 84, 101, 102, 103, 107, 110, 133, 142, 143, 150, 151, 156, 158, 166, 169, 183, 200, 208, 209, 240, 254, 256, 269, 313, 314, 327, 333, 337, 338, 341, 362, 382, 393, 394, 395, 396, 409, 413, 415, 418, 419, 420, 424, 426, 428, 432, 451, 452, 453, 454, 455, 459, 462, 464, 465, 466, 467, 468, 470, 474, 481, 483], "http2time": 483, "http_accept": 483, "http_cooki": 244, "http_error": [441, 472], "http_error_": 395, "http_error_30": 395, "http_error_301": 395, "http_error_302": 395, "http_error_303": 395, "http_error_307": 395, "http_error_308": 395, "http_error_401": 395, "http_error_404": 395, "http_error_407": 395, "http_error_auth_req": 395, "http_error_default": 395, "http_get": 478, "http_host": 407, "http_open": 395, "http_port": 242, "http_proxi": [110, 395, 483], "http_respons": 395, "http_version": 407, "http_version_not_support": 241, "httpbasicauthhandl": [68, 110, 256], "httpbasicpriorauthhandl": 483, "httpconnect": [68, 256, 419, 468, 469, 475, 477, 478, 479, 480, 483], "httpcookieprocessor": [68, 243, 256, 466], "httpd": [245, 276, 333, 407, 467], "httpdefaulterrorhandl": [110, 395], "httpdigestauthhandl": [68, 256], "httperror": [68, 226, 393, 395, 477, 483], "httperrorprocessor": [68, 110, 256], "httpexcept": 242, "httphandler": [68, 101, 102, 110, 118, 256, 268, 478, 483], "httplib": [462, 465, 466, 468, 469, 470, 483], "httpmessag": [68, 110, 245, 256], "httpmethod": [241, 483], "httpon": [244, 468, 483], "httpoxi": 483, "httppasswordmgr": [68, 110, 256, 483], "httppasswordmgrwithdefaultrealm": [110, 395], "httppasswordmgrwithpriorauth": [68, 256, 478, 483], "httpredirecthandl": [68, 110, 256], "httprespons": [68, 256, 395, 469, 476, 483], "https": [1, 68, 71, 75, 78, 79, 80, 81, 84, 85, 95, 101, 102, 103, 109, 110, 126, 136, 160, 162, 169, 183, 226, 235, 239, 240, 242, 243, 248, 251, 261, 269, 307, 313, 314, 318, 319, 326, 328, 340, 341, 352, 379, 387, 388, 394, 395, 399, 403, 407, 411, 413, 419, 424, 426, 435, 444, 445, 451, 454, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 480, 481, 483], "https_open": 395, "https_port": 242, "https_respons": 395, "httpsconnect": [242, 395, 468, 469, 475, 477, 480, 483], "httpserver": [245, 333, 407], "httpshandler": [68, 256, 475], "httpstatus": [241, 478, 482, 483], "huang": 483, "hubri": 103, "hudson": [463, 464, 465, 467, 483], "huge": [158, 258, 462, 477, 483], "hugh": 469, "hugo": [473, 474, 477, 482, 483], "hugunin": 434, "hukkinen": 473, "human": [75, 101, 102, 109, 117, 190, 191, 230, 243, 245, 267, 288, 299, 303, 333, 335, 342, 349, 352, 377, 387, 414, 430, 453, 464, 471, 476, 477, 483], "humbl": 292, "hundr": [59, 102, 193, 235], "hundredweight": 110, "hung": 328, "hunt": [33, 292, 483], "huntrleak": 483, "huntsvill": 95, "huon": 482, "hurd": [465, 483], "hurt": 466, "hussain": 483, "hv_guid_broadcast": 337, "hv_guid_children": 337, "hv_guid_loopback": 337, "hv_guid_par": 337, "hv_guid_wildcard": 337, "hv_guid_zero": 337, "hv_protocol_raw": 337, "hvsocket_address_flag_passthru": 337, "hvsocket_connect_timeout": 337, "hvsocket_connect_timeout_max": 337, "hvsocket_connected_suspend": 337, "hwnd": 176, "hybrid": [99, 183, 477], "hyde": 483, "hye": [466, 467], "hylton": [462, 463, 464, 465, 466, 467, 468, 469], "hynek": [472, 476, 477, 483], "hyper": [337, 483], "hyperbol": [68, 190, 290, 468], "hyperbola": 275, "hyperlink": [190, 483], "hyperpars": 483, "hypertext": [110, 240, 241, 273, 410], "hyphen": [71, 120, 158, 228, 292, 319, 364, 386, 398, 455, 461, 465, 483], "hypot": [160, 275, 481, 483], "hypotenus": 275, "hypothesi": [318, 483], "hypothet": [292, 337, 462], "hz": [158, 466, 476, 483], "hzgb": 158, "i1": [54, 190, 278, 419, 466], "i18n": [230, 345, 462, 469, 483], "i2": [54, 190, 278, 419, 466], "i386": [355, 460, 461, 478], "i4": 419, "i5": 308, "i586": [355, 475], "i686": 395, "i7": [481, 482], "i8": [419, 468], "i_dont_want_to_store_this_cooki": 243, "i_squar": 344, "ia": 176, "iac": 359, "iacob": [476, 483], "iadd": 291, "iain": 467, "ian": [95, 407, 473], "iana": [68, 182, 183, 241, 254, 259, 276, 314, 341, 411, 413, 482, 483], "iand": 291, "iarygin": [474, 483], "ib": 230, "ib3x8": 337, "ibm": [95, 158, 177, 186, 347, 422, 465, 467, 476, 483], "ibm037": 158, "ibm039": 158, "ibm1026": 158, "ibm1125": 158, "ibm1140": 158, "ibm273": 158, "ibm424": 158, "ibm437": 158, "ibm500": 158, "ibm775": 158, "ibm850": 158, "ibm852": 158, "ibm855": 158, "ibm857": 158, "ibm858": 158, "ibm860": 158, "ibm861": 158, "ibm862": 158, "ibm863": 158, "ibm864": 158, "ibm865": 158, "ibm866": 158, "ibm869": 158, "ic": [183, 347, 468], "icanon": 383, "icc": [469, 471, 483], "ice": [68, 284], "iceap": [403, 474, 483], "iceboy": 483, "iceland": [158, 467], "icglu": 468, "ichiro": 464, "icmp": 337, "icn": 483, "ico": [223, 483], "icon": [369, 373, 461, 464, 465, 483], "iconcat": 291, "icopen": 468, "icrlf": 483, "icrnl": 383, "icursor": 376, "id": [13, 22, 27, 33, 45, 61, 68, 78, 87, 95, 96, 98, 101, 102, 115, 117, 118, 122, 130, 133, 142, 153, 160, 177, 181, 193, 196, 197, 200, 203, 205, 209, 225, 230, 233, 240, 259, 267, 268, 269, 270, 271, 272, 281, 283, 288, 293, 299, 303, 305, 307, 310, 314, 319, 322, 328, 329, 334, 337, 340, 341, 342, 348, 349, 353, 356, 358, 365, 369, 376, 386, 388, 389, 390, 398, 401, 402, 413, 416, 428, 430, 431, 449, 450, 463, 464, 466, 467, 468, 473, 474, 480, 481, 482, 483], "id2obj": 402, "id_continu": 435, "id_dsa": 332, "id_lik": 303, "id_nubm": 93, "id_numb": 93, "id_refcount": 483, "id_rsa": 332, "id_start": 435, "idb": 483, "idcok": 177, "ide": [68, 80, 85, 87, 357, 386, 436, 451, 458, 461, 462, 464], "idea": [78, 79, 84, 85, 92, 93, 94, 100, 101, 102, 120, 183, 190, 193, 261, 266, 295, 307, 355, 376, 384, 428, 462, 464, 465, 466, 469, 470, 471, 475, 479, 483], "ideal": [33, 63, 95, 102, 109, 183, 352, 400, 466, 475], "idempot": [133, 167, 226, 474, 480, 483], "ident": [5, 9, 25, 46, 49, 64, 68, 73, 84, 85, 93, 94, 95, 99, 101, 102, 122, 142, 159, 181, 183, 186, 190, 193, 196, 201, 205, 207, 215, 216, 225, 230, 245, 255, 261, 267, 269, 271, 281, 283, 293, 305, 308, 319, 328, 332, 333, 337, 340, 341, 344, 347, 352, 356, 365, 366, 375, 378, 385, 389, 410, 413, 425, 428, 431, 441, 464, 465, 467, 468, 472, 475, 479, 480, 481, 483], "identchar": 155, "identif": [72, 137, 283, 346, 365, 483], "identifi": [13, 22, 23, 27, 33, 42, 61, 64, 68, 73, 75, 76, 77, 85, 87, 99, 101, 109, 110, 115, 120, 122, 153, 160, 176, 191, 193, 194, 196, 205, 212, 225, 230, 247, 248, 255, 259, 268, 269, 271, 281, 283, 288, 293, 297, 302, 308, 314, 315, 319, 320, 323, 328, 335, 337, 341, 344, 345, 346, 351, 352, 355, 362, 365, 368, 369, 386, 387, 388, 394, 395, 398, 405, 410, 413, 415, 416, 420, 426, 427, 428, 429, 432, 433, 436, 440, 443, 448, 461, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 480, 481, 482, 483], "identify_column": 376, "identify_el": 376, "identify_region": 376, "identify_row": 376, "ideograph": 344, "idiom": [33, 73, 85, 103, 112, 114, 120, 193, 225, 283, 331, 341, 352, 386, 465, 470, 475, 476, 482, 483], "idiomat": [68, 112, 267, 315, 386, 483], "idiosyncrasi": [465, 483], "idiosyncrat": 369, "idl": [66, 68, 79, 80, 85, 87, 175, 176, 178, 229, 254, 334, 348, 368, 369, 384, 410, 411, 413, 459, 461, 464, 465, 484], "idle3": 85, "idle_intro": 459, "idle_priority_class": 348, "idle_test": 483, "idleconf": 483, "idlefork": 465, "idleib": 483, "idlelib": [68, 156, 368, 369, 465, 483], "idlerc": [247, 483], "idlestartup": [247, 483], "idlev": 483, "idlok": 177, "idn": [158, 341, 480, 483], "idna": [68, 145, 203, 387, 394, 465, 483], "ido": [482, 483], "idpattern": [345, 483], "idref": 314, "ids": [13, 22, 27, 61, 85, 230, 259, 268, 270, 283, 288, 293, 299, 303, 353, 365, 376, 466, 476, 483], "idstr": 209, "idtyp": 293, "ie": [110, 205, 218, 240, 243, 248, 278, 292, 395, 419, 478, 483], "ie9": 240, "iec": 352, "ieee": [25, 154, 186, 262, 275, 294, 337, 347, 362, 430, 444, 456, 466, 468, 471, 473, 475, 479, 480, 483], "ieee754": 344, "ierr": 23, "ietf": [126, 235, 259, 341, 347], "if": [1, 4, 5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 36, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 116, 117, 120, 122, 126, 129, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 182, 184, 186, 188, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 287, 288, 289, 291, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 442, 443, 445, 448, 450, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "if_index": 337, "if_indextonam": [337, 481, 483], "if_nam": 337, "if_nameindex": [337, 481, 483], "if_nametoindex": [337, 481, 483], "if_stmt": [427, 431], "ifconfig": [348, 483], "ifdef": [34, 73, 456, 462, 483], "ifexp": 122, "iff": [68, 190, 193, 254, 350], "ific": 345, "ified_newdatatyp": 75, "ifilt": [112, 465], "ifilterfals": 112, "iflag": 361, "ifloordiv": 291, "ifnam": 337, "ifndef": [73, 483], "ifs": 122, "iglob": [231, 472, 478, 479, 483], "ignacio": 483, "ignor": [5, 18, 22, 23, 24, 33, 34, 35, 39, 47, 49, 59, 61, 63, 64, 66, 73, 76, 77, 101, 106, 109, 110, 115, 122, 133, 136, 137, 139, 144, 149, 151, 155, 158, 159, 163, 167, 169, 175, 176, 177, 181, 183, 186, 188, 190, 191, 193, 196, 199, 200, 208, 209, 213, 215, 216, 218, 223, 225, 226, 230, 242, 243, 247, 248, 249, 250, 251, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 283, 288, 293, 297, 299, 302, 304, 308, 314, 319, 320, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 354, 356, 358, 362, 364, 365, 366, 373, 376, 378, 380, 381, 382, 386, 388, 394, 395, 398, 400, 405, 410, 413, 415, 416, 421, 422, 425, 427, 428, 431, 432, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ignorable_whitespac": 412, "ignorablewhitespac": 415, "ignore_cleanup_error": [360, 483], "ignore_dangling_symlink": [332, 475, 483], "ignore_discard": 243, "ignore_environ": [352, 475, 483], "ignore_error": [158, 332, 483], "ignore_except": 169, "ignore_exception_detail": [193, 469], "ignore_expir": 243, "ignore_pattern": [332, 468], "ignore_warn": 362, "ignore_zero": [358, 483], "ignorecas": [106, 319, 345, 483], "ignorechar": 143, "ignoredir": 380, "ignorefil": 483, "ignoremod": 380, "igo": 476, "igor": 483, "ih3": 467, "ihav": 288, "ihook": [462, 465, 468, 469], "ii": [73, 79, 160, 176, 341, 426, 427], "iid": [176, 376, 483], "iii": [73, 426], "iiihh": 452, "iinput": 465, "iis": [35, 407], "iis7": 407, "iiscgihandl": 407, "ijtaba": 483, "ik1hcnrpbib2libmw7z3axmi": 288, "il": [297, 341, 434], "iland": 483, "ile": 477, "ilia": 483, "ill": [186, 304, 475, 480, 483], "illeg": [23, 47, 95, 109, 158, 196, 205, 212, 213, 293, 314, 333, 341, 366, 376, 410, 422, 427, 428, 431, 435, 436, 463, 464, 466, 467, 469, 475, 480, 481], "illegalmontherror": 150, "illegalweekdayerror": 150, "illia": [473, 483], "illumo": 483, "illus": [428, 475], "illustr": [85, 100, 101, 102, 110, 120, 139, 169, 173, 183, 193, 208, 243, 250, 268, 331, 333, 340, 344, 348, 359, 369, 388, 395, 427, 430, 466, 476], "ilsch": 483, "ilshift": 291, "ilya": [475, 480, 483], "im": [44, 85, 92, 344], "im_a_teapot": [241, 482], "im_func": [112, 468], "im_self": 468, "im_us": 241, "ima": 141, "imag": [7, 15, 42, 68, 85, 87, 151, 154, 177, 198, 200, 206, 225, 226, 243, 249, 262, 289, 322, 336, 344, 345, 352, 368, 376, 384, 395, 406, 419, 428, 431, 475, 480, 483], "imagenam": 376, "imageop": 468, "imagespec": 376, "imagin": [73, 106, 114, 299, 384], "imaginari": [68, 183, 225, 345, 352, 384, 427, 428, 430, 468, 469, 475], "imaginary_numb": 431, "imagnumb": 430, "imagpart": 440, "iman": 483, "imap": [80, 112, 194, 248, 283, 305, 394, 465, 466, 481, 483], "imap4": [68, 254, 256, 305, 475, 478, 479, 481, 482, 483], "imap4_port": 248, "imap4_ssl": [248, 476, 482, 483], "imap4_ssl_port": 248, "imap4_stream": [248, 482, 483], "imap4rev1": 248, "imap_it": 283, "imap_unord": [283, 483], "imap_unordered_it": 283, "imapiter": 283, "imaplib": [68, 106, 142, 194, 254, 256, 305, 464, 465, 466, 469, 471, 474, 479, 483], "imatmul": [291, 478], "imax": 7, "img": [200, 240], "img1": 376, "img2": 376, "img3": 376, "img_1074": 452, "img_1076": 452, "img_1077": 452, "img_data": 200, "imgfil": 468, "imghdr": [68, 254, 336, 350, 473, 474, 483], "imglib": 249, "imin": 7, "imit": [78, 308, 468], "immateri": 432, "immedi": [23, 24, 28, 31, 33, 45, 63, 66, 73, 79, 84, 85, 92, 93, 95, 103, 106, 115, 133, 135, 139, 141, 153, 155, 169, 176, 177, 184, 186, 191, 193, 205, 213, 214, 216, 218, 226, 232, 242, 247, 255, 258, 266, 267, 271, 282, 283, 293, 295, 297, 312, 314, 319, 331, 333, 337, 340, 341, 344, 345, 348, 352, 353, 359, 361, 365, 366, 369, 376, 384, 388, 395, 400, 406, 410, 413, 415, 416, 419, 420, 427, 428, 429, 430, 432, 455, 464, 465, 466, 468, 469, 474, 476, 477, 479, 480, 481, 482, 483], "immedok": 177, "immisch": 467, "immort": [6, 33, 34, 46, 52, 56, 87, 352, 465, 474, 481, 483], "immun": 483, "immut": [5, 9, 10, 28, 33, 35, 60, 63, 64, 68, 85, 87, 93, 100, 122, 161, 175, 176, 181, 183, 186, 208, 221, 225, 226, 255, 267, 291, 293, 296, 427, 430, 442, 449, 462, 465, 466, 467, 468, 469, 470, 474, 481, 482, 483], "immutableset": [465, 466], "imod": 291, "imp": [31, 68, 470, 472, 473, 475, 476, 477, 479, 483], "imp_hook": 474, "impact": [33, 68, 75, 167, 211, 250, 293, 307, 334, 340, 341, 347, 348, 362, 386, 483], "impair": 481, "impart": [68, 267], "impati": [103, 469], "imped": 483, "imper": 472, "imperfect": [343, 364], "impimport": [472, 473, 474, 483], "impl": [411, 483], "impl_detail": 362, "implaus": 483, "implement": [5, 9, 13, 23, 28, 31, 32, 33, 39, 42, 45, 49, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 85, 87, 88, 91, 92, 93, 94, 95, 96, 100, 101, 106, 108, 109, 110, 120, 128, 132, 133, 137, 139, 144, 151, 155, 157, 158, 161, 167, 170, 173, 176, 181, 183, 184, 186, 191, 193, 196, 203, 205, 207, 208, 212, 213, 214, 218, 220, 221, 223, 225, 226, 230, 234, 235, 237, 242, 243, 244, 245, 247, 248, 251, 252, 253, 255, 258, 259, 261, 266, 267, 268, 269, 271, 275, 280, 281, 282, 283, 285, 288, 292, 293, 299, 302, 305, 307, 308, 309, 312, 314, 315, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 365, 366, 369, 374, 376, 378, 379, 381, 384, 385, 386, 388, 394, 395, 399, 400, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 422, 423, 425, 427, 429, 430, 432, 433, 435, 436, 441, 442, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 477, 478, 481, 482, 483, 484], "impli": [7, 31, 42, 58, 63, 102, 109, 112, 163, 181, 258, 292, 314, 320, 340, 341, 344, 415, 422, 426, 428, 430, 436, 455, 456, 461, 468, 477, 480, 481, 483], "implic": [250, 283, 299, 314, 394, 430, 483], "implicit": [23, 34, 59, 63, 68, 73, 85, 100, 102, 112, 114, 120, 133, 139, 167, 169, 181, 184, 188, 190, 223, 225, 248, 250, 255, 258, 268, 281, 295, 297, 314, 319, 324, 333, 335, 337, 340, 344, 345, 347, 348, 386, 400, 402, 412, 427, 428, 430, 432, 436, 440, 443, 455, 469, 470, 474, 475, 477, 478, 479, 480, 481, 483, 484], "implicit0": [255, 479, 483], "impload": [472, 473, 474, 483], "import": [7, 11, 23, 31, 33, 34, 42, 45, 59, 63, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 86, 87, 88, 89, 92, 93, 94, 95, 99, 100, 101, 102, 104, 106, 108, 109, 110, 112, 113, 115, 116, 118, 120, 121, 123, 125, 126, 131, 133, 134, 136, 137, 139, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 155, 160, 162, 163, 166, 167, 168, 169, 170, 172, 173, 175, 176, 181, 183, 184, 186, 187, 188, 190, 191, 193, 195, 196, 200, 202, 205, 207, 208, 209, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 231, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 257, 258, 261, 262, 264, 265, 266, 270, 271, 272, 275, 276, 278, 279, 280, 283, 284, 288, 292, 293, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 365, 366, 367, 368, 375, 376, 378, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 396, 398, 399, 400, 402, 406, 407, 408, 410, 411, 412, 413, 415, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 433, 435, 438, 440, 441, 442, 443, 444, 445, 446, 448, 451, 452, 453, 455, 456, 461, 462, 464, 469, 470, 471, 472, 474, 475, 478, 479, 480, 481, 482, 483, 484], "import__find__load__don": [98, 480], "import__find__load__start": [98, 480], "import_deprec": 483, "import_fresh_modul": [362, 483], "import_from": [191, 431], "import_from_as_nam": 431, "import_from_target": 431, "import_help": [68, 187, 254, 483], "import_importmodul": 472, "import_modul": [68, 85, 102, 225, 268, 280, 324, 362, 428, 432, 436, 469, 474, 476, 483], "import_nam": [191, 431], "import_spam": 73, "import_star": 483, "import_stmt": [431, 436], "import_tim": 34, "importbench": 483, "importdl": 462, "importerror": [23, 102, 213, 250, 268, 279, 283, 299, 302, 334, 341, 352, 362, 388, 410, 423, 432, 436, 450, 456, 463, 465, 468, 474, 476, 477, 479, 480, 482, 483], "importfrom": [122, 483], "importlib": [34, 68, 85, 87, 98, 102, 112, 225, 247, 254, 255, 268, 280, 302, 311, 324, 352, 362, 382, 385, 422, 423, 428, 433, 436, 450, 461, 471, 473, 475, 481, 483, 484], "importlib_bootstrap": 455, "importlib_bootstrap_extern": 455, "importlib_metadata": [251, 472, 482, 483], "importlib_resourc": [252, 480, 482, 483], "imports2": 112, "importtim": [34, 455, 480, 483], "importwarn": [23, 188, 213, 388, 400, 432, 450, 467, 472, 474, 479, 483], "impos": [42, 195, 262, 293, 299, 321, 322, 344, 386, 434, 455], "imposs": [23, 54, 63, 85, 101, 103, 158, 268, 283, 293, 312, 362, 365, 386, 388, 410, 422, 436, 462, 463, 464, 465, 466, 468, 469, 474, 478, 483], "impossible_hint": 96, "impract": 95, "imprecis": 103, "impress": 483, "improb": 158, "improp": [362, 394, 428, 462, 474, 477, 483], "improperconnectionst": 242, "improv": [23, 68, 73, 85, 93, 100, 102, 106, 120, 133, 139, 158, 167, 222, 234, 248, 250, 275, 299, 314, 341, 348, 376, 410, 426, 428, 430, 456, 470, 476, 478, 480, 481, 482, 483, 484], "impur": 226, "imputil": [462, 465, 469], "imreh": 483, "imsx": 319, "imul": [112, 291], "in": [1, 4, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 66, 68, 71, 74, 75, 76, 78, 80, 87, 89, 91, 92, 93, 94, 96, 98, 99, 103, 104, 105, 106, 107, 108, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 157, 159, 160, 161, 163, 164, 166, 167, 168, 170, 173, 175, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 293, 294, 295, 296, 297, 298, 299, 300, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 343, 345, 346, 347, 348, 351, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 367, 368, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 385, 387, 388, 389, 390, 393, 394, 395, 396, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 455, 456, 458, 464, 465, 467, 468, 469, 471, 475, 476, 483, 484], "in6_addr": 337, "in_addr": 337, "in_bitwise_or": 431, "in_dict": 389, "in_dll": 176, "in_error": 107, "in_fd": [293, 483], "in_fil": 397, "in_json": 468, "in_rpc_cod": 483, "in_table_a1": 346, "in_table_b1": 346, "in_table_c11": 346, "in_table_c11_c12": 346, "in_table_c12": 346, "in_table_c21": 346, "in_table_c21_c22": 346, "in_table_c22": 346, "in_table_c3": 346, "in_table_c4": 346, "in_table_c5": 346, "in_table_c6": 346, "in_table_c7": 346, "in_table_c8": 346, "in_table_c9": 346, "in_table_d1": 346, "in_table_d2": 346, "in_test": 141, "in_transact": 340, "in_transit": 475, "inabl": [268, 293, 426], "inaccess": [293, 296, 395, 428, 462, 465, 477, 483], "inaccur": [464, 466, 483], "inaccuraci": [466, 469], "inact": [132, 137, 441, 468, 483], "inada": [472, 473, 474, 478, 479, 480, 481, 482, 483], "inaddr_": 337, "inaddr_ani": 337, "inaddr_broadcast": 337, "inadequ": 465, "inadvert": [169, 255, 468, 477, 478, 483], "inappropri": [213, 338, 346, 428, 483], "inbox": [248, 271], "inc": [85, 341, 408, 426, 462, 468], "inc_path": 399, "incarn": 427, "incas": 483, "incept": 235, "inch": [177, 369], "incident": [85, 213, 251, 385, 426, 483], "inclhead": 153, "includ": [4, 5, 7, 9, 13, 22, 23, 26, 27, 28, 31, 32, 33, 34, 49, 53, 55, 56, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 79, 81, 84, 85, 86, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 133, 137, 139, 146, 152, 153, 155, 157, 158, 159, 161, 163, 167, 173, 176, 177, 178, 181, 183, 186, 190, 191, 193, 196, 200, 202, 203, 205, 206, 207, 208, 212, 213, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 262, 265, 266, 267, 268, 270, 271, 273, 275, 276, 278, 281, 283, 288, 289, 292, 293, 297, 299, 305, 307, 308, 309, 311, 312, 314, 319, 322, 323, 330, 331, 332, 333, 334, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 413, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 451, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "include_attribut": 122, "include_debug": 461, "include_default": 204, "include_dev": 461, "include_dir": [456, 462], "include_doc": 461, "include_ex": 461, "include_extra": [386, 482, 483], "include_fil": 483, "include_hidden": [231, 483], "include_launch": 461, "include_lib": 461, "include_pip": 461, "include_queri": 407, "include_symbol": 461, "include_tcltk": 461, "include_test": 461, "include_tool": 461, "includepi": 475, "includesubdomain": 341, "inclus": [18, 34, 39, 42, 120, 160, 183, 212, 259, 265, 267, 270, 293, 308, 318, 319, 331, 343, 353, 382, 413, 426, 428, 430, 434, 436, 455, 469, 475, 480], "incom": [133, 213, 245, 262, 283, 338, 341, 412, 474, 475, 483], "incompar": 470, "incompat": [66, 80, 176, 184, 255, 259, 266, 267, 271, 288, 293, 299, 386, 436, 456, 462, 465, 467, 470, 474, 475, 476, 478, 480, 481, 482, 483], "incomplet": [31, 61, 64, 68, 79, 118, 146, 157, 158, 180, 183, 247, 261, 268, 314, 328, 358, 422, 465, 466, 469, 470, 474, 476, 477, 483], "incompleteread": 242, "incompletereaderror": [127, 136, 483], "inconsist": [63, 103, 190, 213, 292, 293, 337, 435, 463, 474, 479, 483], "inconveni": [85, 243, 255, 413], "incorpor": [73, 101, 106, 186, 267, 341, 394, 413, 426, 465, 467, 468, 469, 475, 481, 483], "incorrect": [13, 102, 106, 112, 157, 184, 193, 213, 225, 244, 247, 255, 267, 271, 292, 293, 348, 366, 386, 388, 390, 397, 411, 422, 428, 431, 463, 464, 465, 467, 470, 474, 475, 476, 477, 481, 482, 483], "incr_item": 35, "incrcount": 140, "increas": [5, 68, 76, 89, 94, 99, 101, 109, 120, 122, 158, 190, 191, 221, 247, 255, 259, 267, 270, 290, 293, 328, 340, 344, 352, 376, 382, 384, 388, 400, 412, 414, 428, 435, 456, 462, 464, 465, 468, 469, 476, 479, 480, 481, 482, 483], "incref": [35, 63, 483], "increment": [5, 33, 34, 42, 63, 68, 73, 76, 85, 94, 95, 102, 118, 119, 145, 186, 191, 207, 270, 283, 292, 293, 344, 365, 366, 369, 376, 386, 411, 413, 462, 464, 465, 466, 467, 469, 473, 475, 476, 483], "increment_lineno": [122, 483], "incrementaldecod": [14, 68, 145, 258, 467], "incrementalencod": [14, 68, 145, 467], "incrementalnewlinedecod": [258, 483], "incrementalpars": [68, 273], "incremented_item": 35, "incub": 261, "incur": [75, 186, 261, 426, 475], "inde": [42, 76, 137, 195, 341], "indefinit": [177, 183, 245, 261, 265, 269, 271, 333, 359, 469, 477, 478, 483], "indemn": 426, "indemnifi": 426, "indent": [68, 98, 106, 112, 120, 122, 167, 169, 193, 204, 213, 255, 262, 307, 321, 364, 367, 368, 375, 377, 378, 411, 413, 427, 431, 447, 462, 472, 474, 475, 476, 477, 482, 483], "indentationerror": [23, 68, 86, 213, 450, 462, 483], "indentedhelpformatt": 292, "indentlevel": 300, "independ": [2, 18, 22, 25, 33, 34, 45, 68, 73, 75, 84, 92, 94, 95, 100, 102, 160, 183, 186, 193, 201, 225, 226, 246, 261, 266, 267, 271, 343, 344, 352, 353, 354, 366, 369, 376, 378, 388, 399, 410, 413, 422, 430, 456, 462, 469, 476, 482, 483, 484], "indetermin": [186, 352, 376, 400, 408], "index": [7, 13, 34, 35, 38, 47, 54, 59, 60, 63, 64, 68, 79, 80, 84, 87, 94, 95, 99, 102, 106, 111, 115, 116, 121, 122, 141, 142, 144, 147, 151, 155, 160, 161, 176, 191, 192, 196, 205, 209, 211, 213, 225, 230, 233, 236, 242, 245, 254, 255, 261, 262, 268, 278, 281, 283, 284, 291, 293, 296, 299, 313, 314, 319, 320, 322, 337, 339, 340, 342, 344, 345, 352, 359, 361, 365, 366, 368, 376, 381, 382, 394, 405, 407, 410, 413, 422, 427, 428, 430, 436, 440, 442, 449, 453, 454, 459, 462, 464, 466, 468, 469, 470, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "index_pag": [245, 483], "index_size_err": 410, "index_str": 345, "indexerror": [23, 37, 38, 47, 60, 158, 160, 176, 196, 213, 236, 283, 299, 318, 319, 344, 345, 381, 389, 428, 430, 436, 442, 449, 450, 462, 475, 483], "indexof": [291, 482, 483], "indexsizeerr": 410, "indian": 384, "indic": [5, 7, 31, 32, 33, 41, 42, 49, 54, 56, 58, 59, 61, 63, 64, 68, 73, 75, 76, 84, 85, 99, 101, 102, 103, 106, 109, 110, 117, 120, 122, 137, 139, 151, 155, 157, 158, 167, 169, 173, 176, 177, 183, 186, 189, 191, 196, 202, 203, 205, 208, 209, 213, 223, 225, 226, 228, 234, 235, 241, 242, 243, 245, 247, 248, 250, 251, 255, 258, 261, 266, 267, 268, 270, 271, 276, 278, 283, 288, 292, 293, 295, 297, 303, 305, 307, 308, 311, 314, 318, 319, 328, 329, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 358, 361, 362, 365, 366, 369, 376, 377, 381, 386, 388, 394, 395, 399, 400, 405, 406, 408, 410, 413, 419, 422, 426, 427, 428, 430, 431, 432, 435, 436, 443, 449, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "indiffer": 462, "indifferenti": 235, "indirect": [28, 49, 58, 61, 64, 73, 85, 93, 176, 213, 250, 255, 293, 307, 314, 352, 426, 428, 429, 430, 432, 470, 477, 480, 481, 483], "indistinguish": [283, 308], "individu": [5, 13, 42, 45, 58, 61, 63, 92, 94, 99, 100, 101, 102, 106, 112, 117, 120, 158, 177, 184, 186, 190, 191, 193, 196, 203, 206, 230, 248, 249, 261, 267, 271, 281, 282, 283, 293, 313, 319, 332, 336, 344, 345, 353, 356, 358, 359, 364, 366, 369, 376, 384, 386, 388, 394, 400, 408, 413, 419, 420, 422, 426, 428, 432, 434, 436, 440, 455, 463, 466, 467, 469, 471, 476, 477, 482, 483], "induc": [308, 425], "industri": 426, "ineffect": [139, 477], "ineffici": [85, 258, 293, 353, 382, 474, 478, 483], "inequ": [109, 186, 195, 202, 388, 430, 468, 475], "inet": [107, 337, 483], "inet_aton": [337, 481, 482, 483], "inet_ntoa": 337, "inet_ntop": [337, 477], "inet_pton": [126, 259, 337, 477, 481, 482, 483], "inet_pton6_zon": 483, "inexact": [186, 293, 476], "inf": [25, 121, 154, 186, 225, 262, 275, 344, 345, 352, 468, 469, 473, 475, 478, 479, 483], "infd": [332, 481], "infer": [120, 161, 193, 225, 226, 268, 283, 302, 366, 381, 386, 479, 483], "infer_vari": 386, "infil": [120, 122, 140, 191, 262, 301, 331, 380, 452, 471, 475, 483], "infin": [25, 106, 186, 225, 262, 275, 345, 352, 466, 468, 475, 483], "infinit": [22, 27, 45, 61, 68, 85, 95, 106, 138, 158, 186, 248, 261, 283, 285, 293, 299, 319, 320, 352, 388, 428, 462, 466, 468, 476, 483], "infinite_recurs": 483, "infinite_stream": 386, "infinitesim": 283, "infix": 68, "infj": [154, 479, 483], "inflategethead": 483, "inflex": [477, 478], "influenc": [7, 299, 337, 455, 468, 483], "info": [20, 23, 63, 68, 73, 84, 93, 96, 101, 102, 120, 125, 137, 152, 158, 169, 183, 191, 225, 227, 230, 242, 243, 251, 255, 267, 268, 269, 271, 283, 288, 302, 303, 307, 332, 349, 358, 369, 373, 384, 386, 388, 395, 421, 422, 430, 452, 459, 463, 465, 467, 468, 469, 474, 475, 477, 481, 483], "info_fp": 102, "info_patchlevel": [473, 483], "infolist": 422, "inform": [5, 7, 11, 16, 23, 25, 28, 33, 34, 42, 45, 51, 58, 60, 63, 64, 66, 68, 72, 73, 75, 77, 80, 85, 86, 89, 93, 95, 96, 99, 101, 106, 109, 110, 112, 115, 118, 120, 123, 133, 144, 151, 152, 158, 163, 169, 176, 177, 181, 183, 186, 190, 191, 193, 195, 196, 197, 201, 203, 205, 207, 209, 213, 215, 216, 223, 225, 226, 228, 233, 235, 240, 242, 243, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 278, 283, 288, 292, 299, 302, 305, 307, 308, 311, 312, 313, 314, 319, 320, 321, 322, 328, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 347, 348, 352, 355, 358, 361, 362, 365, 366, 369, 375, 376, 380, 381, 382, 384, 386, 388, 394, 395, 399, 405, 407, 410, 411, 412, 413, 414, 415, 416, 422, 423, 425, 426, 427, 428, 429, 431, 432, 434, 435, 436, 443, 448, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "infrastructur": [102, 158, 341, 400, 468, 469, 477, 480, 483], "infrequ": [338, 483], "infring": 426, "ing": [64, 79, 106, 193, 243, 469, 473, 476, 480, 483], "ingebretson": 483, "inglesbi": 483, "ingredi": 340, "ingrid": 483, "inher": [120, 365, 413, 483], "inherit": [5, 28, 34, 61, 63, 68, 75, 76, 85, 93, 94, 100, 103, 116, 118, 120, 128, 139, 155, 158, 161, 169, 176, 177, 181, 183, 199, 213, 221, 222, 225, 234, 235, 247, 250, 255, 258, 259, 269, 271, 283, 292, 299, 328, 337, 338, 341, 342, 348, 362, 365, 369, 376, 378, 386, 410, 414, 415, 416, 427, 428, 430, 445, 461, 462, 465, 467, 468, 470, 474, 476, 478, 480, 481, 482, 483], "inhibit": [176, 250, 314], "ini": [68, 217, 331, 458, 475, 483], "init": [33, 45, 63, 68, 73, 86, 142, 176, 203, 250, 276, 293, 296, 308, 315, 363, 375, 386, 467, 468, 483], "init_builtin": 474, "init_by_array": 426, "init_color": [177, 472], "init_databas": [281, 483], "init_delay": 362, "init_frozen": 483, "init_genrand": 426, "init_glob": 324, "init_histori": 320, "init_key": 426, "init_lett": 467, "init_or_s": 176, "init_pair": [92, 177, 472], "init_python": 34, "init_sourc": 362, "initarg": [166, 283, 480], "initfp": 483, "initfunc": 31, "initfunc_nam": 71, "initgroup": [293, 469], "initi": [5, 13, 16, 18, 22, 23, 24, 27, 28, 31, 32, 35, 42, 49, 51, 58, 59, 60, 61, 63, 66, 68, 69, 71, 72, 74, 76, 79, 85, 86, 92, 93, 95, 100, 101, 102, 109, 114, 115, 120, 121, 135, 139, 141, 142, 146, 155, 158, 166, 167, 175, 176, 177, 181, 186, 189, 190, 191, 193, 195, 202, 203, 206, 213, 226, 230, 234, 235, 243, 247, 248, 250, 254, 258, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 280, 281, 283, 288, 292, 293, 299, 301, 305, 308, 314, 320, 321, 331, 334, 335, 337, 338, 340, 341, 344, 348, 352, 356, 359, 365, 366, 369, 376, 384, 385, 388, 395, 400, 413, 419, 425, 426, 427, 428, 431, 432, 435, 436, 450, 455, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 482, 483], "initial_byt": 258, "initial_ind": 364, "initial_response_ok": [335, 483], "initial_valu": [95, 258], "initialdata": 160, "initialdir": 189, "initialfil": 189, "initialis": [102, 243, 269, 324, 352, 428, 455, 477, 479, 483], "initialz": 483, "initleo": 86, "initleoc": 86, "initlog": 441, "initmodul": 33, "initmyappc": 86, "initproc": [57, 63, 75, 76], "initscr": [92, 177], "initsig": 33, "initspam": 77, "inittab_copi": 483, "initv": 293, "initvar": [181, 483], "inject": [102, 137, 267, 272, 331, 340, 348, 358, 455, 467, 472, 478, 483], "injectingfilt": 102, "inlin": [35, 52, 58, 60, 64, 68, 87, 167, 190, 191, 196, 197, 203, 205, 237, 308, 319, 379, 388, 456, 465, 467, 472, 473, 475, 479, 481, 483], "inline_comment_prefix": 167, "inlinefunctionexpans": 483, "inner": [160, 169, 191, 235, 237, 255, 319, 340, 344, 384, 386, 413, 427, 429, 466, 469, 475, 476, 483], "inner_s": 235, "inner_stack": 169, "inner_word": 319, "innermost": [169, 193, 314, 352, 386, 430, 477, 483], "innocu": [103, 465], "innodb": 167, "inod": [269, 293, 342, 483], "inoffens": 299, "inord": [95, 464, 465], "inplac": [218, 483], "inplace_": [473, 483], "inproduct": 386, "input": [5, 9, 34, 63, 64, 66, 68, 73, 75, 79, 84, 85, 92, 93, 95, 99, 101, 108, 109, 110, 112, 114, 118, 120, 133, 137, 141, 142, 143, 146, 149, 151, 155, 157, 158, 159, 160, 167, 169, 173, 176, 183, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 203, 207, 208, 209, 213, 218, 221, 222, 225, 229, 234, 235, 244, 245, 247, 254, 258, 261, 262, 264, 267, 269, 270, 271, 275, 283, 292, 293, 295, 297, 301, 302, 307, 309, 311, 314, 317, 319, 320, 322, 328, 331, 335, 337, 340, 341, 343, 344, 348, 352, 354, 359, 361, 362, 364, 366, 369, 375, 376, 377, 381, 383, 394, 395, 397, 407, 408, 411, 412, 413, 414, 415, 416, 417, 421, 427, 428, 429, 430, 431, 432, 434, 435, 441, 443, 450, 452, 455, 456, 462, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483], "input_charset": [195, 196], "input_codec": 195, "input_data": 343, "inputdata": 141, "inputfil": 413, "inputon": 375, "inputrc": [320, 483], "inputsourc": [68, 273, 414, 415, 417, 478, 483], "inputstream": [407, 483], "inquir": [376, 478], "inquiri": [28, 45, 57, 63, 75, 76, 388], "inrat": 141, "ins": [63, 94, 95, 462, 464, 465, 466, 483], "insch": 177, "inscrib": 384, "insdelln": 177, "insec": 364, "insecur": [235, 330, 340, 341, 467, 474, 475, 483], "insenit": 461, "insensit": [68, 106, 109, 158, 167, 196, 205, 244, 245, 250, 276, 319, 334, 340, 345, 346, 358, 362, 400, 455, 461, 466, 468, 480, 483, 484], "insert": [22, 31, 33, 34, 38, 60, 68, 72, 73, 80, 95, 109, 112, 120, 121, 146, 147, 151, 160, 161, 167, 177, 181, 190, 193, 208, 225, 226, 247, 250, 258, 267, 270, 281, 284, 292, 297, 299, 307, 320, 340, 344, 345, 347, 352, 376, 385, 400, 410, 413, 423, 428, 430, 432, 436, 442, 455, 460, 462, 465, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 483], "insert_com": 413, "insert_mod": 468, "insert_pi": 413, "insert_text": [320, 323], "insertbefor": [410, 462], "insertln": 177, "insid": [5, 7, 11, 33, 42, 63, 68, 76, 85, 92, 95, 100, 106, 113, 114, 135, 144, 169, 177, 186, 193, 196, 199, 205, 225, 226, 251, 252, 258, 262, 281, 283, 297, 299, 302, 319, 332, 333, 337, 345, 352, 358, 369, 375, 376, 384, 386, 388, 413, 420, 422, 423, 427, 428, 429, 430, 435, 449, 461, 463, 464, 465, 466, 467, 468, 470, 473, 474, 475, 477, 479, 480, 481, 483], "insight": 63, "insignific": [345, 483], "insist": [84, 309, 369], "insnstr": 177, "insofar": [271, 436], "insort": [147, 452, 483], "insort_left": [147, 483], "insort_right": 147, "inspect": [13, 22, 27, 33, 34, 66, 68, 73, 76, 87, 88, 102, 120, 122, 129, 139, 156, 161, 181, 193, 225, 235, 250, 251, 254, 259, 267, 271, 297, 302, 307, 313, 315, 332, 333, 334, 341, 344, 352, 358, 362, 371, 382, 386, 388, 389, 395, 422, 427, 428, 455, 462, 463, 464, 468, 469, 483], "inspectload": [250, 477, 478, 483], "inspector": 375, "inspir": [109, 167, 200, 261, 426, 427, 462, 463, 465, 468, 475, 476, 483], "insstr": 177, "inst": [49, 93, 436, 443], "inst_nam": 468, "instabl": 470, "instal": [31, 33, 34, 35, 42, 68, 72, 76, 79, 84, 85, 92, 96, 98, 102, 110, 111, 112, 132, 135, 144, 163, 184, 192, 212, 214, 230, 235, 247, 250, 251, 254, 261, 267, 269, 276, 311, 315, 320, 333, 334, 340, 341, 344, 348, 350, 352, 354, 361, 369, 375, 382, 384, 388, 395, 399, 400, 405, 421, 426, 432, 453, 455, 456, 458, 460, 463, 464, 465, 467, 468, 469, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "install_misc": [480, 483], "install_open": [110, 395], "install_pip": 399, "install_script": 399, "install_setuptool": 399, "install_signal_handl": [34, 472, 483], "install_sw": 460, "installallus": 461, "installdir": [451, 456], "installermast": 464, "installexecutesequ": 281, "installhandl": 388, "installlauncherallus": 461, "installuisequ": 281, "instanc": [6, 9, 13, 16, 20, 23, 25, 28, 31, 33, 39, 42, 43, 45, 47, 49, 53, 55, 58, 60, 61, 63, 64, 68, 71, 73, 75, 76, 78, 89, 92, 95, 96, 100, 101, 102, 103, 106, 108, 110, 117, 120, 128, 132, 133, 135, 136, 137, 139, 144, 149, 151, 153, 155, 157, 158, 159, 161, 167, 169, 172, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 199, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 216, 218, 221, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 261, 262, 267, 268, 269, 270, 271, 281, 283, 284, 285, 288, 292, 293, 296, 297, 298, 305, 307, 308, 312, 314, 318, 319, 321, 323, 325, 329, 330, 331, 332, 335, 337, 338, 340, 341, 347, 348, 352, 355, 358, 359, 362, 364, 365, 369, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 400, 403, 406, 408, 410, 411, 412, 413, 414, 415, 416, 419, 420, 422, 423, 425, 427, 429, 430, 435, 436, 440, 443, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "instancemethod": 96, "instant": [42, 68, 92, 185, 293, 384], "instanti": [23, 63, 76, 94, 100, 101, 102, 110, 132, 133, 139, 151, 153, 155, 160, 176, 177, 181, 183, 190, 194, 196, 203, 230, 242, 245, 248, 250, 267, 268, 269, 271, 283, 292, 296, 297, 299, 328, 329, 331, 335, 337, 338, 344, 362, 369, 376, 385, 386, 388, 389, 403, 408, 410, 411, 414, 416, 428, 436, 440, 443, 467, 468, 474, 475, 478, 480, 481, 482, 483], "instat": 376, "instead": [5, 7, 13, 17, 18, 22, 23, 28, 31, 33, 34, 42, 45, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 84, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 109, 110, 120, 123, 128, 133, 139, 146, 149, 151, 152, 157, 158, 159, 161, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 196, 197, 200, 201, 202, 203, 205, 207, 208, 209, 213, 225, 226, 228, 230, 234, 242, 243, 244, 245, 247, 248, 250, 253, 255, 258, 261, 262, 266, 267, 269, 270, 271, 275, 283, 288, 292, 293, 297, 299, 302, 307, 308, 311, 312, 313, 314, 319, 320, 321, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 344, 345, 347, 348, 352, 354, 355, 358, 359, 362, 365, 369, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 410, 411, 412, 413, 415, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "institut": 426, "instr": [177, 191, 362, 456, 477, 483], "instream": 331, "instruct": [7, 13, 26, 68, 77, 84, 95, 96, 151, 186, 193, 240, 255, 264, 292, 293, 308, 314, 333, 340, 353, 388, 410, 413, 415, 428, 430, 455, 462, 467, 469, 473, 474, 475, 477, 481, 482, 483], "instruction_offset": 353, "instrument": [191, 226, 308, 456, 475, 479, 483], "instrumented_call_function_ex": 483, "insuffici": [31, 161, 186, 193, 212, 252, 283, 293, 479], "insufficient_storag": 241, "insul": 33, "insuper": 106, "int": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 79, 84, 87, 88, 89, 93, 94, 96, 98, 99, 100, 101, 102, 106, 112, 113, 114, 120, 121, 122, 127, 139, 140, 155, 160, 166, 167, 170, 176, 181, 183, 184, 186, 190, 193, 211, 213, 221, 223, 225, 226, 236, 240, 248, 254, 255, 258, 259, 261, 262, 267, 275, 281, 284, 289, 291, 292, 293, 295, 299, 304, 306, 316, 318, 319, 326, 328, 337, 340, 343, 345, 347, 351, 352, 353, 358, 366, 367, 378, 379, 382, 384, 385, 386, 388, 389, 398, 402, 405, 407, 410, 411, 412, 413, 419, 427, 428, 429, 430, 440, 441, 443, 446, 449, 450, 451, 455, 456, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "int2ap": 248, "int64": 284, "int64_t": 33, "int_array_2d": 386, "int_curr_symbol": 266, "int_field": 479, "int_frac_digit": 266, "int_info": [34, 344, 352, 450, 456, 471], "int_max": [18, 483], "int_max_str_digit": [34, 344, 352, 455, 483], "int_min": 483, "int_or_str": 386, "intabl": 483, "intact": [42, 102, 167, 183, 203, 205, 208, 218, 269, 466], "intarray5": 176, "intconversiondescriptor": 181, "integ": [5, 7, 9, 22, 23, 33, 34, 35, 39, 41, 42, 45, 47, 49, 56, 61, 63, 64, 66, 68, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 99, 102, 106, 109, 110, 115, 117, 120, 133, 138, 141, 149, 151, 158, 167, 173, 176, 177, 178, 183, 186, 193, 203, 212, 213, 215, 218, 221, 225, 233, 234, 243, 245, 248, 250, 254, 256, 258, 266, 267, 268, 269, 270, 275, 278, 281, 283, 288, 289, 292, 293, 299, 304, 305, 307, 308, 314, 318, 319, 320, 321, 322, 328, 329, 332, 337, 338, 339, 340, 341, 345, 347, 348, 349, 352, 353, 361, 362, 365, 366, 369, 376, 379, 384, 387, 394, 400, 405, 408, 410, 411, 413, 419, 422, 427, 428, 430, 436, 441, 443, 451, 455, 456, 462, 463, 465, 467, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "integr": [66, 68, 73, 87, 102, 115, 118, 186, 193, 221, 225, 247, 270, 275, 289, 319, 338, 340, 344, 347, 365, 369, 388, 390, 430, 457, 461, 462, 465, 466, 468, 470, 475, 476, 480, 481, 482, 483], "integrityerror": 340, "intel": [33, 86, 141, 295, 308, 347, 456, 459, 467, 469, 478, 479, 481, 482, 483], "intel64": [355, 483], "intellectu": 426, "intellig": [292, 295, 297], "intend": [23, 31, 33, 34, 42, 45, 61, 64, 72, 73, 75, 84, 95, 101, 102, 103, 106, 110, 115, 139, 151, 158, 169, 184, 191, 193, 201, 208, 213, 226, 244, 245, 247, 251, 255, 259, 267, 269, 270, 271, 275, 288, 293, 299, 302, 307, 334, 337, 341, 344, 345, 347, 348, 352, 353, 358, 365, 376, 380, 384, 386, 388, 394, 395, 400, 411, 422, 425, 427, 428, 430, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 477, 478, 479, 480, 481, 483], "intens": [87, 177, 270, 293, 476, 483], "intent": [23, 31, 72, 73, 102, 181, 183, 196, 205, 247, 288, 293, 348, 352, 386, 388, 389, 407, 419, 426, 427, 428, 465, 466, 468, 470, 476, 477, 483], "intenum": [68, 211, 241, 333, 337, 341, 344, 479, 483], "inter": [13, 190, 257, 260, 333, 386, 483], "interact": [23, 33, 34, 42, 59, 63, 66, 68, 72, 79, 84, 85, 87, 93, 102, 106, 115, 120, 122, 144, 155, 166, 177, 180, 186, 191, 193, 194, 207, 213, 214, 218, 225, 243, 247, 255, 257, 283, 284, 292, 293, 295, 297, 307, 308, 313, 315, 320, 323, 334, 341, 348, 352, 354, 358, 359, 369, 375, 376, 381, 384, 388, 395, 400, 413, 420, 422, 428, 431, 432, 434, 435, 436, 448, 455, 461, 464, 465, 466, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "interactive_rul": 431, "interactiveconsol": [157, 320], "interactiveinterpret": [157, 478, 483], "intercept": [42, 102, 139, 343, 352, 479, 483], "interchang": [30, 68, 102, 117, 153, 183, 184, 186, 213, 235, 267, 336, 344, 347, 369, 386, 428, 435, 462, 468, 475, 476], "interdum": 149, "interest": [22, 63, 68, 72, 73, 75, 77, 84, 85, 93, 94, 95, 101, 102, 106, 109, 120, 151, 153, 167, 183, 190, 193, 194, 200, 207, 215, 216, 247, 261, 267, 271, 273, 276, 292, 297, 308, 314, 319, 328, 353, 365, 386, 388, 400, 415, 428, 434, 436, 462, 463, 464, 465, 467, 469, 483], "interf": [186, 283, 353, 430, 477], "interfac": [5, 7, 28, 31, 32, 33, 43, 51, 57, 59, 63, 64, 66, 68, 72, 73, 75, 80, 84, 85, 92, 93, 95, 101, 102, 106, 109, 110, 118, 119, 120, 132, 133, 149, 153, 155, 158, 161, 167, 169, 170, 173, 176, 177, 180, 184, 185, 187, 189, 193, 194, 196, 197, 203, 204, 205, 206, 207, 212, 214, 215, 218, 222, 228, 230, 233, 234, 235, 242, 243, 245, 247, 250, 251, 252, 253, 254, 255, 256, 258, 261, 262, 264, 266, 267, 270, 271, 273, 276, 281, 283, 292, 295, 297, 299, 302, 304, 305, 308, 312, 314, 315, 325, 328, 330, 333, 335, 337, 338, 339, 340, 341, 344, 348, 352, 356, 361, 362, 363, 365, 366, 369, 375, 378, 381, 384, 394, 397, 398, 400, 403, 410, 411, 413, 414, 415, 417, 426, 428, 432, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 482, 483, 484], "interfaceerror": [340, 473, 483], "interfer": [101, 132, 167, 226, 266, 297, 483], "interior": [376, 384, 463, 464], "interleav": [102, 126, 136, 193, 283, 469, 475, 480, 481, 483], "interlin": 190, "intermedi": [7, 84, 87, 95, 186, 191, 206, 226, 250, 261, 275, 292, 293, 332, 341, 432, 467, 471, 475, 480, 483], "intermezzo": [68, 74], "intermitt": [478, 483], "intermix": [68, 118, 228, 480, 483], "intern": [7, 9, 10, 11, 13, 16, 22, 23, 31, 33, 34, 41, 42, 45, 55, 59, 61, 63, 64, 68, 73, 75, 76, 84, 92, 93, 95, 97, 101, 102, 106, 109, 110, 112, 118, 120, 128, 135, 136, 139, 149, 155, 157, 158, 161, 167, 176, 181, 183, 184, 186, 191, 193, 199, 204, 207, 208, 213, 235, 243, 245, 247, 250, 255, 258, 265, 266, 267, 269, 270, 274, 276, 278, 283, 293, 297, 299, 302, 307, 308, 314, 322, 328, 331, 332, 333, 337, 340, 341, 346, 347, 348, 352, 358, 359, 362, 365, 366, 369, 375, 376, 381, 384, 386, 388, 395, 400, 410, 411, 413, 415, 419, 422, 423, 429, 430, 450, 456, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "internal_attr": 422, "internal_server_error": 241, "internald": [106, 248], "internaldate2tupl": 248, "internalerror": 340, "internalsubset": 410, "internation": [68, 89, 109, 145, 202, 246, 282, 335, 341, 346, 366, 435, 462, 465, 466, 478, 480, 483], "internet": [68, 99, 110, 194, 235, 240, 243, 247, 254, 272, 335, 337, 338, 341, 346, 362, 366, 394, 395, 426, 441, 461, 462, 463, 465, 472, 475, 477, 483], "internet_timeout": [362, 483], "interop": 483, "interoper": [68, 94, 102, 126, 141, 208, 245, 259, 285, 299, 318, 341, 344, 422, 428, 446, 471, 475, 477, 483], "interp": [33, 369, 483], "interpol": [68, 217, 343, 344, 430, 446, 475, 478, 479, 483], "interpolationdeptherror": 167, "interpolationerror": 167, "interpolationmissingoptionerror": [167, 483], "interpolationsyntaxerror": 167, "interpos": 104, "interposit": [456, 472, 483], "interpret": [5, 7, 13, 23, 24, 26, 27, 28, 31, 32, 34, 39, 42, 45, 47, 49, 51, 53, 58, 59, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 87, 93, 95, 96, 101, 102, 106, 109, 112, 115, 120, 122, 151, 152, 155, 163, 166, 167, 175, 176, 177, 180, 182, 183, 184, 186, 190, 191, 192, 193, 197, 203, 207, 209, 210, 213, 225, 227, 235, 245, 247, 248, 250, 251, 259, 261, 262, 266, 267, 268, 278, 281, 283, 292, 293, 297, 299, 307, 308, 309, 311, 313, 314, 315, 319, 320, 324, 328, 330, 331, 333, 334, 335, 337, 340, 342, 344, 347, 348, 352, 355, 356, 361, 362, 365, 366, 369, 375, 376, 381, 386, 388, 395, 399, 400, 402, 403, 406, 410, 413, 426, 427, 428, 429, 430, 432, 434, 435, 436, 442, 449, 455, 456, 461, 462, 463, 464, 465, 466, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483], "interpreter_requires_environ": 362, "interpreterid": 483, "interpreteridobject": 483, "interprocess": [68, 133, 254, 283, 337], "interrog": [102, 205], "interrupt": [23, 33, 68, 96, 102, 115, 119, 126, 139, 151, 177, 178, 186, 191, 212, 213, 247, 271, 283, 293, 328, 329, 333, 337, 338, 340, 348, 359, 365, 366, 388, 395, 406, 420, 426, 428, 441, 468, 469, 475, 478, 481, 482, 483], "interrupt_main": [115, 472, 483], "interrupt_read": 333, "interrupt_writ": 333, "interruptederror": [23, 212, 213, 225, 293, 328, 333, 337, 450, 476, 478, 483], "intersect": [160, 344, 384, 428, 465, 466, 468, 469, 483], "intersection_upd": [344, 465, 468], "interspers": [102, 292], "interstiti": 477, "interv": [95, 101, 177, 183, 247, 269, 293, 308, 318, 333, 343, 352, 362, 365, 366, 376, 384, 466, 468, 475, 479, 481, 483], "interven": [73, 102, 190, 193, 204, 476], "intervent": [93, 369, 425], "intfield": 479, "intflag": [68, 211, 255, 319, 341, 344, 479, 483], "intfunc": [386, 474], "intmax_t": [64, 474, 483], "into": [5, 9, 13, 22, 23, 25, 26, 31, 33, 34, 41, 49, 55, 58, 59, 61, 63, 64, 68, 72, 73, 76, 79, 84, 85, 92, 93, 94, 99, 101, 106, 109, 112, 120, 133, 134, 137, 138, 139, 141, 144, 146, 149, 151, 153, 157, 158, 160, 163, 167, 169, 176, 177, 181, 183, 186, 187, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 208, 209, 213, 214, 215, 222, 223, 225, 226, 230, 242, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 276, 278, 281, 282, 283, 284, 292, 293, 295, 297, 298, 299, 305, 307, 308, 309, 311, 312, 314, 319, 320, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 358, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 388, 394, 395, 397, 399, 400, 405, 408, 410, 411, 412, 413, 415, 417, 419, 421, 422, 427, 428, 430, 432, 435, 436, 452, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "intoler": 109, "intorstrsequ": 474, "intr": 177, "intr_flag": 483, "intra": 190, "intralin": 190, "intransact": 483, "intricaci": 292, "intrins": [167, 191, 299, 428, 471, 483], "intrinsic2": 191, "intrinsic_1_invalid": 191, "intrinsic_2_invalid": 191, "intrinsic_async_gen_wrap": 191, "intrinsic_import_star": 191, "intrinsic_list_to_tupl": 191, "intrinsic_paramspec": 191, "intrinsic_prep_reraise_star": 191, "intrinsic_print": 191, "intrinsic_set_function_type_param": 191, "intrinsic_stopiteration_error": 191, "intrinsic_subscript_gener": 191, "intrinsic_typealia": 191, "intrinsic_typevar": 191, "intrinsic_typevar_with_bound": 191, "intrinsic_typevar_with_constraint": 191, "intrinsic_typevartupl": 191, "intrinsic_unary_posit": 191, "intro": [155, 469], "introduc": [33, 34, 45, 73, 85, 95, 100, 101, 102, 103, 106, 139, 183, 213, 235, 243, 250, 251, 269, 271, 275, 283, 292, 299, 305, 308, 314, 341, 344, 347, 351, 352, 369, 375, 376, 384, 385, 386, 394, 414, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "introduct": [68, 76, 92, 95, 99, 120, 133, 185, 193, 259, 283, 337, 341, 462, 463, 464, 466, 477, 479, 483], "introductori": [109, 337, 384, 467], "introspect": [17, 68, 75, 85, 87, 93, 96, 170, 187, 191, 226, 250, 299, 315, 340, 369, 385, 389, 419, 420, 428, 432, 470, 472, 473, 474, 475, 476, 477, 478, 483], "intrud": 420, "inttyp": [279, 483], "intuit": [99, 100, 101, 103, 106, 151, 186, 190, 261, 375, 430, 462, 463, 464, 477], "intvar": [369, 483], "inu": 297, "inuse_attribute_err": 410, "inuseattributeerr": 410, "inv": [291, 478], "inv_bas": 225, "inv_cdf": [343, 483], "invalid": [23, 28, 34, 59, 61, 63, 64, 68, 73, 79, 85, 87, 89, 93, 94, 99, 100, 101, 106, 109, 110, 115, 118, 146, 157, 159, 160, 163, 176, 183, 186, 196, 199, 201, 203, 205, 208, 209, 211, 212, 213, 216, 226, 230, 234, 242, 244, 247, 250, 255, 258, 266, 268, 271, 275, 283, 292, 293, 295, 299, 309, 311, 319, 322, 328, 329, 333, 337, 340, 341, 344, 345, 348, 358, 362, 365, 366, 376, 378, 386, 388, 394, 400, 405, 410, 419, 425, 427, 428, 431, 436, 441, 443, 449, 455, 462, 468, 469, 470, 471, 472, 474, 476, 477, 478, 479, 480, 481, 482, 483], "invalid_": 431, "invalid_access_err": 410, "invalid_ann_assign_target": 431, "invalid_argu": 431, "invalid_as_pattern": 431, "invalid_assign": 431, "invalid_block": 431, "invalid_case_block": 431, "invalid_character_err": 410, "invalid_class_argument_pattern": 431, "invalid_class_def_raw": 431, "invalid_class_pattern": 431, "invalid_comprehens": 431, "invalid_conversion_charact": 431, "invalid_def_raw": 431, "invalid_default": 431, "invalid_del_stmt": 431, "invalid_dict_comprehens": 431, "invalid_double_starred_kvpair": 431, "invalid_double_type_com": 431, "invalid_elif_stmt": 431, "invalid_else_stmt": 431, "invalid_except_star_stmt_ind": 431, "invalid_except_stmt": 431, "invalid_except_stmt_ind": 431, "invalid_express": 431, "invalid_finally_stmt": 431, "invalid_for_stmt": 431, "invalid_for_target": 431, "invalid_group": 431, "invalid_if_stmt": 431, "invalid_import": 431, "invalid_import_from_target": 431, "invalid_kvpair": 431, "invalid_kwarg": 431, "invalid_kwd": 431, "invalid_lambda_kwd": 431, "invalid_lambda_paramet": 431, "invalid_lambda_parameters_help": 431, "invalid_lambda_star_etc": 431, "invalid_legacy_express": 431, "invalid_match_stmt": 431, "invalid_modification_err": 410, "invalid_named_express": 431, "invalid_paramet": 431, "invalid_parameters_help": 431, "invalid_replacement_field": 431, "invalid_star_etc": 431, "invalid_starred_express": 431, "invalid_state_err": 410, "invalid_try_stmt": 431, "invalid_while_stmt": 431, "invalid_with_item": 431, "invalid_with_stmt": 431, "invalid_with_stmt_ind": 431, "invalidaccesserr": 410, "invalidate_cach": [250, 423, 472, 476, 480, 483], "invalidation_mod": [163, 311, 480, 483], "invalidbase64charactersdefect": [196, 199], "invalidbase64lengthdefect": 199, "invalidbase64paddingdefect": [196, 199], "invalidcharactererr": 410, "invaliddatedefect": 199, "invalidfileexcept": [304, 483], "invalidheaderdefect": 483, "invalidheadererror": 483, "invalidmessageid": 483, "invalidmodificationerr": 410, "invalidoper": [186, 466, 468, 469, 476], "invalidstateerr": 410, "invalidstateerror": [127, 129, 139, 166, 483], "invalidtzpathwarn": [425, 483], "invalidurl": [242, 483], "invalu": [193, 319], "invari": [85, 94, 95, 186, 196, 299, 386, 430, 432, 483], "invent": [103, 158, 271, 365, 434, 465, 469], "inventor": 271, "inventori": [160, 181, 291], "inventoryitem": 181, "invers": [146, 183, 186, 201, 209, 211, 225, 244, 259, 275, 291, 299, 331, 340, 343, 344, 366, 430, 431, 468, 474, 481, 483], "invert": [34, 93, 94, 95, 122, 158, 186, 191, 211, 291, 428, 430, 431, 473, 483], "invest": 101, "investig": [101, 344], "invis": [92, 158, 177, 179, 384, 469, 471, 483], "invit": 477, "invmod": 344, "invoc": [23, 28, 56, 68, 73, 164, 169, 176, 274, 283, 308, 365, 381, 388, 415, 427, 428, 440, 455, 466, 475, 477, 481, 483], "invoic": 468, "invok": [5, 13, 23, 27, 31, 58, 59, 63, 64, 68, 75, 84, 85, 93, 95, 99, 102, 103, 106, 109, 120, 144, 151, 155, 167, 169, 176, 181, 183, 191, 193, 225, 226, 243, 245, 247, 255, 266, 267, 268, 283, 292, 293, 297, 299, 302, 308, 311, 313, 320, 324, 332, 335, 338, 340, 341, 344, 348, 352, 359, 362, 365, 369, 371, 376, 377, 380, 386, 388, 394, 402, 413, 414, 415, 416, 419, 420, 422, 423, 425, 427, 429, 432, 435, 437, 451, 455, 461, 463, 464, 465, 466, 467, 468, 469, 470, 476, 477, 478, 480, 482, 483], "involuntari": 322, "involv": [28, 42, 45, 63, 73, 76, 100, 103, 167, 169, 177, 186, 193, 213, 226, 243, 283, 292, 299, 308, 332, 340, 341, 344, 347, 362, 381, 395, 412, 428, 430, 431, 432, 436, 462, 469, 477, 478, 480, 481, 483], "inward": 186, "inwood": 483, "io": [24, 33, 34, 68, 71, 79, 85, 87, 118, 123, 124, 125, 126, 136, 139, 149, 158, 164, 169, 187, 188, 190, 196, 213, 215, 218, 219, 225, 234, 235, 242, 245, 250, 251, 253, 254, 262, 270, 271, 288, 293, 296, 299, 308, 309, 338, 341, 344, 348, 352, 358, 360, 362, 378, 379, 389, 399, 407, 411, 421, 422, 425, 426, 428, 467, 468, 469, 470, 471, 472, 473, 477, 479, 482, 483, 484], "io_modul": 472, "io_reparse_tag_": 293, "io_reparse_tag_appexeclink": [342, 483], "io_reparse_tag_mount_point": 342, "io_reparse_tag_symlink": 342, "iobas": [188, 190, 213, 215, 258, 378, 481, 483], "iobench": 469, "iobind": 483, "iocp": [126, 483], "iocpproactor": 483, "ioctl": [68, 121, 142, 254, 295, 337, 391, 466, 468, 479, 483], "ioctl_vm_sockets_get_local_cid": 337, "ioerror": [153, 190, 213, 215, 218, 225, 230, 243, 255, 258, 282, 283, 295, 332, 333, 423, 450, 468, 469, 470, 476], "ior": 291, "ios": 304, "iossupport": 483, "iot": [303, 483], "iotuap": 303, "ip": [68, 80, 101, 102, 126, 147, 243, 245, 256, 267, 269, 337, 338, 341, 359, 362, 394, 395, 462, 468, 475, 476, 478, 479, 480, 481, 482, 483], "ip6": [259, 478], "ip_": [337, 483], "ip_add_source_membership": 337, "ip_address": [99, 142, 259, 337], "ip_bind_address_no_port": 483, "ip_block_sourc": 337, "ip_drop_source_membership": 337, "ip_hdrincl": 337, "ip_interfac": [99, 259, 483], "ip_network": [99, 259], "ip_pktinfo": [337, 483], "ip_recvto": [337, 472, 483], "ip_str": 337, "ip_unblock_sourc": 337, "ipaddr": 259, "ipaddress": [68, 97, 254, 256, 481, 483], "ipaddrlist": 337, "ipadi": 369, "ipadx": 369, "ipc": [68, 123, 130, 133, 257, 337], "ipconfig": 483, "ipd266": [464, 465], "ipnetwork": 483, "ipo": 141, "ipow": 291, "ippolito": [467, 468, 469, 471], "ipport_": 337, "ipproto_": 337, "ipproto_ah": 483, "ipproto_cbt": 483, "ipproto_dstopt": 483, "ipproto_egp": 483, "ipproto_esp": 483, "ipproto_frag": 483, "ipproto_ggp": 483, "ipproto_hopopt": 483, "ipproto_iclfxbm": 483, "ipproto_icmpv6": 483, "ipproto_idp": 483, "ipproto_igmp": 483, "ipproto_igp": 483, "ipproto_ip": 337, "ipproto_ipv4": 483, "ipproto_ipv6": 483, "ipproto_l2tp": 483, "ipproto_max": 483, "ipproto_mptcp": [337, 472, 483], "ipproto_nd": 483, "ipproto_non": 483, "ipproto_pgm": 483, "ipproto_pim": 483, "ipproto_pup": 483, "ipproto_rdp": 483, "ipproto_rout": 483, "ipproto_sctp": 483, "ipproto_st": 483, "ipproto_tcp": 337, "ipproto_udplit": [337, 483], "ips": [102, 483], "ipv": [99, 483], "ipv4": [68, 99, 107, 126, 245, 254, 256, 337, 341, 468, 476, 479, 480, 481, 482, 483], "ipv4_map": 259, "ipv4address": [99, 259, 474, 478, 483], "ipv4interfac": [99, 259, 483], "ipv4network": [99, 259, 474, 478, 480, 483], "ipv6": [68, 99, 126, 245, 254, 256, 337, 341, 362, 394, 456, 464, 468, 469, 471, 475, 476, 478, 481, 482, 483], "ipv6_": 337, "ipv6_en": 362, "ipv6address": [99, 259, 474, 478, 482, 483], "ipv6interfac": [99, 259, 483], "ipv6network": [99, 259, 474, 478, 480, 483], "ipv6typ": 483, "ipvfutur": 483, "ipython": [447, 468, 472], "ipz": 344, "ir": 158, "irepeat": 112, "irit": [472, 473, 474, 483], "irix": [68, 470, 483], "irmen": 480, "iron": 100, "ironlanguag": 483, "ironpython": [84, 87, 94, 303, 434, 468, 483], "ironpython3": 483, "irreconcil": 483, "irrefut": 68, "irregular": 464, "irrelev": [292, 469, 483], "irrevoc": 426, "irrit": 465, "irshift": 291, "irv": [247, 442], "is": [5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 89, 93, 94, 95, 96, 99, 100, 102, 103, 106, 107, 108, 109, 110, 112, 114, 115, 116, 117, 120, 122, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 367, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "is_": [95, 291], "is_64bit": 303, "is_absolut": [296, 483], "is_act": [132, 232], "is_al": [283, 365, 468, 482, 483], "is_android": [362, 483], "is_annot": 351, "is_assign": 351, "is_async": [122, 312, 483], "is_attach": [205, 483], "is_authent": [395, 483], "is_bitwise_or": 431, "is_block": 243, "is_block_devic": [296, 481, 483], "is_canon": [186, 469], "is_cgi": 483, "is_char_devic": [296, 481, 483], "is_character_junk": 190, "is_check_support": 270, "is_client_error": 241, "is_clos": [126, 130, 133, 136, 478, 479, 480, 483], "is_dataclass": [181, 483], "is_dataclass_inst": 181, "is_declared_glob": [351, 469], "is_dir": [250, 253, 293, 296, 422, 479, 481, 483], "is_en": 214, "is_even": [95, 419], "is_expir": 243, "is_fifo": [296, 481, 483], "is_fil": [250, 252, 253, 293, 296, 422, 478, 481, 483], "is_fin": [28, 33, 227, 352, 450, 478, 481, 482, 483], "is_finit": 186, "is_fork_ctx": 483, "is_fre": 351, "is_frozen": 477, "is_glob": [259, 351, 474, 477, 483], "is_goal": 452, "is_hop_by_hop": 407, "is_image_fil": 467, "is_import": 351, "is_infinit": 186, "is_inform": 241, "is_integ": [221, 344, 483], "is_jump_target": 191, "is_junct": [293, 296, 474, 483], "is_jython": 362, "is_line_junk": 190, "is_linetouch": 177, "is_link_loc": 259, "is_loc": 351, "is_loopback": [259, 483], "is_moon_ful": 292, "is_mount": [296, 480, 481, 483], "is_multicast": [259, 483], "is_multipart": [196, 199, 205, 207, 483], "is_namespac": 351, "is_nan": 186, "is_nest": 351, "is_nonloc": [351, 483], "is_norm": [186, 387, 481, 483], "is_not": [95, 291], "is_not_allow": 243, "is_odd": 261, "is_op": [191, 482, 483], "is_optim": 351, "is_packag": [31, 250, 423, 473, 483], "is_paramet": 351, "is_parameter_ent": 314, "is_prim": 166, "is_priv": [259, 474, 483], "is_python_build": [355, 469], "is_qnan": 186, "is_read": [130, 133, 480, 483], "is_redirect": 241, "is_referenc": 351, "is_relative_to": [296, 483], "is_reserv": [259, 296, 483], "is_resourc": [250, 252, 253, 473, 474], "is_resource_en": 362, "is_run": [126, 130], "is_saf": [398, 480, 483], "is_serv": [126, 480, 483], "is_server_error": 241, "is_set": [138, 365, 472, 483], "is_sign": 186, "is_site_loc": 259, "is_skipped_lin": 144, "is_snan": 186, "is_socket": [296, 481, 483], "is_stack_trampoline_act": [352, 474, 483], "is_str": 386, "is_str_list": 386, "is_subnorm": 186, "is_success": [241, 483], "is_symlink": [293, 296, 481, 483], "is_tarfil": [358, 483], "is_term_res": 177, "is_trac": 382, "is_track": [28, 227, 469], "is_typeddict": [386, 472, 483], "is_unspecifi": 259, "is_unverifi": [395, 477], "is_valid": [345, 473, 483], "is_valid_fd": 483, "is_verbos": 469, "is_wintouch": 177, "is_zero": 186, "is_zipfil": [422, 469, 483], "isa": 483, "isaac": 319, "isab": [294, 296], "isabstract": [255, 468, 483], "isadirectoryerror": [23, 212, 213, 293, 450, 476, 483], "isal": [481, 482, 483], "isalnum": [85, 178, 319, 344], "isalpha": [178, 344], "isascii": [178, 344, 480, 483], "isasyncgen": 255, "isasyncgenfunct": [255, 483], "isatti": [59, 153, 225, 258, 293, 352, 446, 483], "isawait": [129, 161, 255, 389, 478, 483], "isbadstringptr": 483, "isbjunk": 477, "isblank": [178, 483], "isblk": 358, "isbn": [160, 369, 454], "isbpopular": 477, "isbuiltin": 255, "iscal": [112, 469, 470, 483], "ischr": 358, "isclass": [255, 428], "isclos": [154, 275, 444, 478, 483], "iscntrl": [178, 483], "iscod": 255, "iscoroutin": [129, 139, 255, 474, 478, 483], "iscoroutinefunct": [255, 389, 474, 478, 483], "isctrl": 178, "isdaemon": [365, 468, 472, 483], "isdatadescriptor": [255, 483], "isdecim": [344, 345], "isdev": 358, "isdevdr": [294, 483], "isdigit": [178, 326, 344], "isdir": [294, 296, 302, 358, 481, 483], "isdisjoint": [161, 344, 483], "isdown": 384, "isdst": [209, 474, 483], "isel": 413, "isen": [28, 227], "isenabledfor": [101, 102, 267, 469, 483], "isendwin": 177, "iseof": 377, "iserl": 154, "isfifo": 358, "isfil": [200, 294, 296, 358, 438, 475, 481, 483], "isfin": 314, "isfinit": [154, 275, 475, 483], "isfirstlin": 218, "isfram": 255, "isfunct": 255, "isfutur": [129, 483], "isgener": [255, 468], "isgeneratorfunct": [255, 468, 483], "isgetsetdescriptor": 255, "isgraph": 178, "ish": 483, "ishimoto": 477, "isident": 474, "isidentifi": [344, 483], "isindex": 151, "isinf": [154, 275, 344, 468, 483], "isinst": [63, 78, 85, 87, 88, 93, 94, 101, 102, 112, 116, 151, 161, 169, 181, 183, 211, 225, 250, 251, 255, 262, 289, 291, 299, 344, 385, 386, 388, 389, 390, 427, 428, 440, 450, 462, 465, 466, 468, 470, 472, 473, 474, 475, 479, 480, 483], "isinterruptionrequest": 102, "isjunct": [293, 294, 474, 483], "isjunk": 190, "iskeyword": [263, 344], "island": 483, "isleap": 150, "islic": [87, 95, 160, 225, 261, 467, 480, 483], "islink": [293, 294, 296, 481, 483], "islnk": 358, "islow": [178, 326, 344], "ismappingtyp": 112, "ismemberdescriptor": 255, "ismeta": 178, "ismethod": 255, "ismethoddescriptor": 255, "ismethodwrapp": [255, 473, 483], "ismo": 483, "ismodul": 255, "ismount": [294, 477, 481, 483], "isn": [7, 22, 23, 25, 31, 33, 61, 63, 73, 76, 79, 84, 85, 92, 93, 94, 99, 100, 102, 106, 109, 115, 120, 133, 139, 157, 158, 169, 183, 191, 193, 196, 202, 204, 205, 234, 243, 248, 255, 269, 293, 296, 302, 314, 319, 337, 338, 341, 342, 352, 355, 369, 378, 388, 394, 403, 405, 406, 419, 428, 436, 449, 462, 463, 464, 465, 466, 467, 468, 469, 475, 483], "isnan": [154, 275, 343, 344, 442, 468, 483], "isnontermin": 377, "isnot": [122, 431], "isnot_bitwise_or": 431, "isnumbertyp": 112, "isnumer": 344, "iso": [64, 150, 158, 183, 190, 195, 196, 202, 205, 239, 242, 266, 288, 314, 337, 340, 352, 366, 398, 407, 417, 419, 462, 466, 473, 475, 478, 479, 481, 483], "iso2022_jp": 158, "iso2022_jp_1": 158, "iso2022_jp_2": 158, "iso2022_jp_2004": [158, 483], "iso2022_jp_3": [158, 483], "iso2022_jp_ext": 158, "iso2022_kr": 158, "iso2022jp": 158, "iso2022kr": 158, "iso8601": [101, 419], "iso8859": 158, "iso8859_10": 158, "iso8859_11": 158, "iso8859_13": 158, "iso8859_14": 158, "iso8859_15": 158, "iso8859_16": 158, "iso8859_2": 158, "iso8859_3": 158, "iso8859_4": 158, "iso8859_5": 158, "iso8859_6": 158, "iso8859_7": 158, "iso8859_8": 158, "iso8859_9": 158, "iso_8859": 466, "iso_8859_1": 109, "isocalendar": [183, 481, 482, 483], "isocalendard": 183, "isoformat": [102, 183, 190, 340, 425, 465, 479, 480, 483], "isol": [32, 33, 63, 66, 68, 87, 95, 114, 122, 139, 193, 247, 352, 354, 362, 388, 399, 455, 461, 473, 474, 477, 479, 482, 483], "isolated_modul": 483, "isolated_subinterpret": 483, "isolatedasynciotestcas": [388, 473, 481, 483], "isolation_level": [68, 298, 483], "isomorph": 462, "isopars": 483, "isort": 85, "isoweekday": [94, 183, 211], "ispe": 361, "ispkg": 302, "isprint": [160, 178, 344, 478, 483], "ispunct": [178, 483], "isqrt": [261, 275, 481, 483], "isread": 307, "isrecurs": 307, "isreg": 358, "isreservedkey": 244, "isroutin": [255, 483], "isrun": 102, "issamenod": 410, "issequencetyp": 112, "isset": [365, 472, 483], "issoftkeyword": 263, "isspac": [178, 344], "isstdin": 218, "isstr": 279, "issu": [1, 7, 22, 32, 33, 34, 61, 66, 68, 76, 80, 93, 94, 96, 101, 102, 103, 109, 119, 120, 135, 155, 158, 176, 177, 181, 185, 186, 203, 213, 221, 225, 235, 242, 247, 248, 261, 262, 266, 267, 271, 272, 283, 292, 293, 296, 299, 311, 333, 335, 337, 341, 344, 348, 362, 384, 386, 388, 400, 412, 413, 421, 426, 455, 458, 462, 463, 464, 466, 467, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "issubclass": [61, 78, 87, 116, 161, 225, 344, 385, 386, 400, 428, 440, 450, 462, 468, 472, 480, 483], "issubset": [344, 465], "issue12524": 242, "issue22118": 483, "issue25782": 483, "issue26903": 483, "issue3770": 102, "issuer": 341, "issuperset": [344, 465, 483], "issym": 358, "ist": 297, "istermin": 377, "istext": 146, "istitl": 344, "istraceback": 255, "isub": 291, "isupp": [93, 178, 326, 344, 388], "isvis": 384, "isxdigit": 178, "isxyztk": 483, "isysroot": [482, 483], "it": [5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 112, 115, 117, 120, 122, 126, 129, 132, 133, 135, 137, 138, 139, 140, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 214, 215, 216, 218, 220, 221, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 287, 288, 293, 295, 296, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "it1": 261, "it2": 261, "ital": [150, 177, 372], "itali": 95, "italian": [299, 384], "itamar": [464, 474], "itanium": [462, 478], "itay": 483, "item": [5, 7, 14, 22, 23, 31, 33, 34, 35, 36, 37, 38, 49, 54, 60, 63, 64, 68, 73, 76, 79, 84, 87, 94, 95, 102, 106, 112, 120, 122, 134, 141, 147, 151, 157, 158, 160, 161, 167, 170, 171, 176, 181, 184, 189, 190, 191, 193, 196, 197, 200, 205, 209, 213, 225, 226, 233, 235, 236, 244, 247, 248, 250, 252, 253, 261, 262, 268, 269, 271, 275, 276, 279, 283, 288, 291, 293, 299, 302, 307, 308, 313, 316, 319, 320, 324, 332, 334, 337, 339, 340, 341, 344, 345, 347, 348, 352, 354, 359, 361, 362, 365, 368, 369, 375, 378, 381, 384, 385, 386, 394, 402, 405, 407, 408, 410, 412, 413, 416, 419, 422, 423, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 446, 449, 450, 452, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 480, 481, 483], "item1": 470, "item2": 470, "item_path": 467, "item_separ": 262, "itemconfigur": 483, "itemgett": [87, 108, 147, 261, 291, 466, 467, 478, 481, 483], "itemlist": 38, "itemnam": 450, "items": [7, 61, 121, 283, 337, 344, 483], "items_list": 440, "items_pattern": [427, 431], "itemsview": [161, 344, 386], "iter": [13, 16, 22, 28, 29, 33, 36, 49, 54, 55, 63, 64, 67, 68, 75, 78, 87, 93, 99, 106, 108, 112, 116, 121, 122, 133, 136, 139, 144, 149, 150, 151, 158, 160, 161, 166, 167, 169, 170, 175, 176, 181, 187, 191, 194, 195, 196, 197, 205, 213, 218, 220, 225, 226, 230, 231, 234, 235, 236, 242, 243, 250, 251, 252, 253, 255, 256, 258, 261, 262, 266, 267, 270, 271, 275, 283, 285, 288, 293, 297, 299, 300, 304, 308, 318, 319, 328, 337, 340, 343, 344, 347, 352, 362, 378, 385, 386, 389, 390, 394, 395, 407, 410, 413, 414, 415, 419, 425, 427, 431, 432, 436, 441, 442, 443, 445, 450, 462, 463, 464, 465, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "iter1": 468, "iter2": 468, "iter_attach": [200, 205, 483], "iter_child_nod": 122, "iter_except": 261, "iter_field": 122, "iter_import": [302, 476], "iter_index": 261, "iter_modul": [302, 476, 479, 483], "iter_part": [196, 205, 207], "iter_unpack": [347, 477], "itera": 95, "iterable1": 468, "iterat": 225, "iterb": 95, "iterdecod": 158, "iterdir": [250, 252, 253, 296, 422, 483], "iterdump": [340, 483], "iterencod": [158, 262], "iterfind": [413, 475], "iteritem": [112, 271, 464, 465, 466, 470, 483], "iterkey": [112, 271, 464, 465, 466, 468, 470, 483], "iterkeyref": 467, "itermonthd": [150, 480, 483], "itermonthday": [150, 483], "itermonthdays2": [150, 483], "itermonthdays3": [150, 480, 483], "itermonthdays4": [150, 480, 483], "iternextfunc": [57, 63, 75], "iterool": 261, "iterpars": [413, 477, 483], "itertext": [413, 469, 475, 483], "itertool": [68, 87, 112, 160, 224, 225, 226, 236, 247, 250, 254, 275, 279, 291, 318, 343, 465, 466, 467, 468, 469, 470, 471, 483], "itertools_import": 112, "itervalu": [112, 271, 464, 465, 466, 470, 483], "itervalueref": 467, "iterweekday": 150, "itimer_prof": 333, "itimer_r": 333, "itimer_virtu": 333, "itimererror": 333, "itm": 483, "itn": [261, 483], "ito": 483, "itojun": 464, "itruediv": 291, "its": [5, 7, 9, 11, 22, 23, 25, 28, 31, 33, 34, 39, 42, 43, 45, 47, 49, 55, 56, 58, 60, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 133, 135, 136, 137, 139, 144, 149, 151, 152, 155, 158, 163, 166, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 191, 193, 194, 195, 196, 197, 199, 202, 203, 205, 206, 207, 208, 209, 213, 214, 218, 223, 225, 226, 228, 230, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 258, 261, 262, 265, 267, 268, 269, 271, 275, 276, 278, 279, 283, 292, 293, 295, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 313, 314, 315, 319, 320, 321, 322, 323, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 360, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 410, 411, 412, 413, 415, 416, 417, 419, 420, 421, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "itself": [33, 42, 45, 49, 51, 61, 63, 64, 67, 68, 72, 73, 75, 76, 85, 93, 94, 95, 96, 100, 101, 102, 103, 106, 110, 115, 119, 120, 133, 139, 144, 151, 155, 163, 176, 177, 178, 181, 183, 191, 193, 195, 197, 203, 205, 215, 225, 226, 243, 245, 247, 248, 250, 255, 257, 259, 261, 262, 267, 268, 269, 271, 281, 282, 283, 288, 292, 293, 299, 308, 314, 319, 331, 332, 337, 340, 341, 344, 345, 346, 348, 352, 355, 358, 359, 361, 362, 365, 376, 381, 384, 385, 386, 388, 394, 395, 397, 399, 400, 414, 415, 416, 419, 428, 429, 430, 432, 434, 435, 436, 443, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 480, 482, 483], "itw": 483, "iu": [85, 465], "ium": 449, "iv": 337, "ivan": [479, 480, 481, 483], "ivf": 456, "ixor": 291, "izbyshev": 483, "ize": 483, "izip": [112, 466], "izip_longest": 468, "j0": [456, 474, 483], "j1": [190, 460, 483], "j1939": [337, 483], "j2": 190, "j3": [478, 480, 483], "j8": 460, "j9": 483, "ja": 480, "jab": 483, "jabberwocki": 114, "jacek": [476, 479, 483], "jachim": 483, "jack": [318, 319, 344, 397, 426, 442, 446, 464, 465, 467, 471, 483], "jackdaw": 102, "jackson": [167, 477], "jacob": [468, 473, 474, 483], "jacqu": 469, "jail": 102, "jain": [473, 474, 483], "jairo": 483, "jaiswal": 483, "jake": [318, 469, 471, 481, 483], "jakob": 474, "jakub": [479, 483], "jam": 292, "jame": [230, 423, 426, 462, 465, 467, 469, 473, 474, 480, 483], "jami": 483, "jan": [95, 183, 341, 348, 405, 464, 469, 472, 473, 475, 478, 479, 480, 481, 482, 483], "jane": [106, 108], "janech": 483, "jansen": [397, 426, 464, 465, 478, 483], "janssen": 468, "jansson": 472, "januar": 183, "januari": [150, 153, 183, 318, 366, 426, 435, 463, 474, 483], "janzen": [481, 482], "japan": [183, 266], "japanes": [109, 158, 266, 466, 480], "jar": 466, "jaraco": 251, "jason": [463, 465, 468, 474, 477, 481, 482, 483], "jauhiainen": 476, "java": [63, 68, 78, 80, 84, 85, 95, 102, 106, 107, 116, 118, 225, 293, 344, 365, 410, 414, 415, 428, 434, 439, 441, 444, 462, 466, 467, 468, 470, 472, 475], "java_v": 303, "javascript": [1, 68, 167, 240, 244, 257, 262, 299, 441, 446, 472, 483], "jaw": [93, 147], "jay": [95, 463, 475, 483], "jcaesar": 451, "jcea": [468, 469, 470], "jean": [235, 426, 468, 469, 476], "jeanpierr": [478, 483], "jedi": 223, "jeff": [463, 465, 477, 479, 483], "jeffrey": [106, 319, 341, 468, 469, 472, 473, 475, 483], "jek": [482, 483], "jelk": 80, "jell": [472, 473, 474, 479, 480, 483], "jemalloc": 483, "jen": [464, 483], "jendrik": [482, 483], "jenkin": [223, 388], "jenvey": [469, 475], "jeong": 483, "jeremi": [462, 463, 464, 465, 466, 467, 468, 469, 483], "jeremiah": 483, "jeroen": [472, 479, 481, 482, 483], "jerri": 153, "jes": [468, 469, 476, 479, 480, 483], "jess": [468, 471, 478, 479, 480, 483], "jessi": 480, "jessica": [478, 483], "jeuner": 200, "jevnik": [478, 481, 483], "jewett": [95, 466, 468], "jfif": [249, 483], "jiajun": 483, "jim": [85, 95, 102, 308, 434, 462, 466, 468, 475, 479, 483], "jin": [472, 473, 474, 479, 480, 481, 482, 483], "jingchen": [473, 483], "jira": 468, "jiryu": [478, 479, 483], "jis": [158, 466], "jisx0213": [158, 466], "jit": [68, 474, 479, 483], "jitter": 483, "jiwon": [466, 476], "jkl": 160, "jloup": 426, "jn": 483, "joan": 479, "joannah": [481, 482, 483], "job": [84, 92, 101, 102, 106, 109, 120, 128, 159, 201, 207, 230, 283, 293, 299, 345, 348, 375, 395, 432, 462, 468, 475, 483], "jochem": 483, "joe": [110, 151, 234, 384, 395, 478, 481, 483], "joel": [109, 479, 483], "joffrey": 483, "jog": 475, "johab": [158, 466], "johann": [478, 483], "johansson": [469, 471], "john": [93, 108, 110, 160, 175, 190, 369, 413, 440, 441, 442, 463, 466, 467, 468, 469, 472, 473, 476, 479, 483], "johnni": [481, 482, 483], "johnson": [109, 467, 468, 483], "join": [64, 68, 77, 79, 85, 95, 102, 107, 114, 120, 134, 136, 151, 158, 160, 175, 186, 190, 200, 202, 203, 208, 225, 242, 243, 244, 247, 259, 268, 270, 279, 283, 284, 293, 294, 296, 302, 316, 319, 320, 321, 326, 331, 332, 335, 337, 338, 342, 344, 345, 362, 364, 365, 367, 385, 386, 394, 399, 407, 410, 411, 413, 422, 425, 441, 446, 449, 452, 462, 466, 467, 468, 474, 475, 476, 477, 478, 479, 480, 481, 483], "join_thread": [283, 362, 483], "joinablequeu": [283, 478, 483], "joinedstr": [122, 483], "joiner": [158, 478, 483], "joinpath": [250, 252, 253, 296, 422, 483], "joint": [343, 426], "joke": [462, 483], "jon": [481, 482, 483], "jona": [477, 480, 483], "jonathan": [472, 476, 478, 481, 483], "jone": [369, 465, 467, 477, 478], "jong": 480, "joona": 464, "joongi": [472, 483], "jordan": [481, 483], "jordon": 482, "jos": [469, 483], "joseph": [476, 479, 483], "josephin": 84, "josh": [467, 468, 478, 479, 481, 482, 483], "joshua": [472, 478, 483], "josiah": [468, 476], "journal": 190, "joy": [287, 384], "jp": [158, 195, 426, 466], "jpeg": [200, 206, 249, 369, 446, 468, 483], "jpg": [200, 258, 294, 419, 452, 467], "jpic": 483, "jpython": 462, "jr": [0, 84, 463, 464, 465, 467, 468], "js": [352, 456], "js_output": 244, "json": [68, 101, 102, 120, 151, 156, 167, 251, 254, 258, 268, 269, 285, 298, 307, 347, 445, 451, 469, 471, 472, 475, 476, 477, 482, 483], "json_object": 483, "jsondecod": [262, 469, 479, 483], "jsondecodeerror": [120, 262, 478, 483], "jsonencod": [102, 262, 479, 483], "jst": 183, "jtc1": 352, "juan": [230, 469], "judici": [84, 181, 468], "juergen": 483, "juhana": 476, "juic": 344, "jukka": [109, 478], "jul": [95, 223, 464, 475], "juli": [95, 150, 190, 426, 435, 464, 465, 469, 483], "julian": [366, 477, 478, 483], "julien": [474, 480], "juliett": [481, 483], "jump": [102, 103, 191, 193, 247, 270, 297, 353, 384, 428, 441, 465, 467, 470, 473, 474, 479, 480, 483], "jump_absolut": [473, 483], "jump_backward": [191, 473, 483], "jump_backward_no_interrupt": [191, 473, 483], "jump_forward": [191, 483], "jump_if_false_or_pop": [473, 474, 483], "jump_if_not_eg_match": 483, "jump_if_not_exc_match": [473, 482, 483], "jump_if_true_or_pop": [473, 474, 483], "jump_no_interrupt": [191, 483], "jumpahead": 470, "jun": [95, 223, 366, 464], "junction": [293, 294, 296, 332, 474, 481, 483], "june": [95, 150, 408, 471, 480], "juni": 435, "junit": [388, 463, 483], "junk": [190, 283, 288, 348, 483], "jupit": [94, 343], "jupyt": 481, "jure": 483, "jussi": 95, "just": [9, 13, 28, 33, 39, 51, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 106, 109, 110, 120, 128, 129, 138, 139, 149, 151, 155, 157, 158, 159, 161, 167, 169, 176, 177, 179, 181, 183, 186, 190, 193, 194, 200, 201, 218, 225, 226, 230, 234, 235, 243, 247, 250, 252, 253, 261, 266, 267, 268, 269, 271, 281, 283, 292, 293, 297, 299, 308, 313, 314, 319, 320, 328, 330, 331, 333, 337, 338, 340, 341, 344, 345, 348, 352, 355, 358, 362, 364, 365, 369, 375, 376, 381, 384, 386, 388, 395, 399, 410, 413, 414, 415, 420, 421, 422, 423, 427, 428, 430, 432, 434, 436, 441, 452, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "justifi": [344, 369, 376, 468], "justin": [472, 476, 483], "justin39": 483, "justo": 149, "jvm": 468, "jwzthread": [423, 465], "jyrki": 477, "jython": [78, 84, 87, 94, 303, 362, 407, 434, 449, 455, 463, 466, 468, 474, 475, 477, 483], "k1": [103, 160, 402], "k2": [103, 160, 402], "k3": 103, "k_h": 343, "ka": [462, 463, 464, 467], "kaarl": 483, "kaartic": 483, "kabir": [473, 483], "kabrda": 483, "kabul": 183, "kabultz": 183, "kachayev": [477, 478, 483], "kadidd": 395, "kahan": 154, "kai": 483, "kaiser": [467, 483], "kaliszewski": 469, "kall": [389, 466, 483], "kalv": 483, "kamp": 462, "kan": [478, 483], "kang": [477, 483], "kani": 483, "kanji": 158, "kannada": 475, "kappa": 318, "kaptur": 483, "kapun": [482, 483], "karaba": [472, 473, 482, 483], "karaok": 450, "karatsuba": [186, 465], "karl": [477, 482, 483], "karlsen": [476, 483], "karthikeyan": 483, "kashin": [482, 483], "kasia": 483, "kasun": 476, "kate": 93, "kati": [477, 483], "kato": 483, "katriel": [472, 473, 474, 483], "katz": [422, 423], "kaushik": 483, "kawashima": 483, "kawasima": 473, "kaya": [482, 483], "kazakh": [158, 478], "kazakov": [478, 483], "kb": 483, "kb2533623": 481, "kbhit": [86, 282], "kc": 387, "kd": 387, "kde": 403, "kde_norm": 343, "kdedir": 403, "ke": [473, 483], "kea": 341, "keccak": [235, 473, 479, 483], "kee": 483, "keebler": 244, "keep": [31, 33, 39, 63, 73, 85, 94, 100, 102, 106, 108, 109, 120, 128, 139, 144, 151, 158, 160, 169, 176, 177, 179, 181, 186, 191, 193, 196, 211, 214, 226, 234, 243, 247, 252, 255, 258, 261, 271, 278, 292, 293, 299, 305, 307, 319, 338, 344, 348, 352, 362, 369, 388, 395, 410, 415, 427, 428, 432, 436, 463, 465, 466, 467, 468, 469, 475, 477, 480, 483], "keep_blank_valu": [151, 394], "keep_condit": 85, "keep_funct": 85, "keep_posit": 386, "keepend": [64, 158, 190, 200, 344], "keepflag": 211, "keer": 479, "keho": 473, "keio": 426, "keith": 464, "keller": [481, 483], "kelli": [465, 476, 477], "kelsey": 462, "kelvin": [106, 319], "kemenad": [473, 474, 482, 483], "ken": [109, 369, 472, 473, 474, 479, 480, 481, 482, 483], "kencrypt": 235, "kenneth": 453, "kennethreitz": 453, "kenni": [402, 477], "kent": [109, 341, 362, 388, 463, 467, 468], "kepler": 343, "kept": [23, 24, 33, 45, 59, 64, 85, 100, 102, 144, 167, 176, 184, 186, 195, 199, 208, 213, 214, 225, 243, 244, 247, 258, 261, 269, 271, 311, 312, 319, 334, 338, 341, 436, 462, 464, 469, 470, 474, 475, 476, 477, 482, 483], "kerl": 483, "kermani": 483, "kern": 269, "kernc": 483, "kernel": [68, 92, 115, 132, 257, 261, 278, 290, 293, 328, 332, 333, 337, 352, 355, 365, 462, 467, 472, 476, 477, 479, 481, 483], "kernel32": [176, 352, 483], "kevan": 483, "kevent": 68, "kevin": [465, 466, 468, 469, 474, 475, 483], "key": [5, 22, 33, 35, 40, 49, 54, 55, 63, 68, 78, 84, 85, 87, 92, 93, 94, 95, 96, 100, 101, 102, 112, 122, 142, 147, 151, 155, 157, 160, 161, 164, 167, 170, 174, 175, 177, 181, 183, 184, 186, 189, 191, 193, 196, 197, 201, 203, 205, 206, 212, 213, 223, 225, 226, 230, 236, 237, 244, 245, 248, 250, 251, 255, 259, 261, 262, 266, 267, 268, 270, 271, 272, 279, 282, 287, 288, 291, 293, 295, 297, 299, 304, 305, 307, 308, 312, 319, 320, 329, 330, 333, 334, 340, 344, 345, 346, 352, 355, 358, 362, 368, 369, 376, 384, 385, 386, 389, 390, 394, 395, 402, 405, 407, 413, 416, 417, 419, 421, 425, 427, 428, 430, 431, 432, 436, 440, 441, 442, 446, 452, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "key1": [167, 427, 482], "key2": [167, 427, 482], "key3": [167, 482], "key_": 177, "key_a1": 177, "key_a3": 177, "key_all_access": 405, "key_b2": 177, "key_backspac": 177, "key_beg": 177, "key_break": 177, "key_btab": 177, "key_c1": 177, "key_c3": 177, "key_cancel": 177, "key_catab": 177, "key_clear": 177, "key_clos": 177, "key_command": 177, "key_copi": 177, "key_creat": 177, "key_create_link": 405, "key_create_sub_key": 405, "key_ctab": 177, "key_dc": 177, "key_dl": 177, "key_down": 177, "key_eic": 177, "key_end": 177, "key_ent": 177, "key_enumerate_sub_key": 405, "key_eo": 177, "key_eol": 177, "key_execut": 405, "key_exit": 177, "key_f0": 177, "key_f1": 177, "key_f2": 177, "key_f3": 177, "key_f4": 177, "key_fil": [242, 395, 474, 483], "key_find": 177, "key_fn": 177, "key_func": 95, "key_help": 177, "key_hom": [92, 177], "key_ic": 177, "key_id": 299, "key_il": 177, "key_left": [92, 177], "key_length": 426, "key_ll": 177, "key_mark": 177, "key_max": 177, "key_messag": 177, "key_min": 177, "key_mous": 177, "key_mov": 177, "key_next": 177, "key_notifi": 405, "key_npag": 177, "key_open": 177, "key_opt": 177, "key_ppag": [92, 177], "key_previ": 177, "key_print": 177, "key_query_valu": 405, "key_read": 405, "key_redo": 177, "key_refer": 177, "key_refresh": 177, "key_replac": 177, "key_res": 177, "key_reset": 177, "key_restart": 177, "key_resum": 177, "key_right": 177, "key_sav": 177, "key_sbeg": 177, "key_scancel": 177, "key_scommand": 177, "key_scopi": 177, "key_screat": 177, "key_sdc": 177, "key_sdl": 177, "key_select": 177, "key_send": 177, "key_seol": 177, "key_separ": 262, "key_set_valu": 405, "key_sexit": 177, "key_sf": 177, "key_sfind": 177, "key_shelp": 177, "key_shom": 177, "key_sic": 177, "key_sleft": 177, "key_smessag": 177, "key_smov": 177, "key_snext": 177, "key_sopt": 177, "key_sprevi": 177, "key_sprint": 177, "key_sr": 177, "key_sredo": 177, "key_sreplac": 177, "key_sreset": 177, "key_sright": 177, "key_srsum": 177, "key_ssav": 177, "key_ssuspend": 177, "key_stab": 177, "key_sundo": 177, "key_suspend": 177, "key_typ": 382, "key_undo": 177, "key_up": [92, 177], "key_val": 466, "key_value_pattern": [427, 431], "key_without_valu": 167, "key_wow64_32key": 405, "key_wow64_64key": 405, "key_writ": 405, "keya": 167, "keyb": 167, "keybind": [92, 177, 247, 320], "keyboard": [68, 81, 86, 92, 96, 177, 247, 333, 348, 376, 384, 388, 441, 468, 483], "keyboardinterrupt": [23, 96, 101, 102, 115, 135, 139, 157, 213, 283, 316, 333, 388, 407, 420, 438, 443, 450, 467, 468, 469, 470, 479, 480, 481, 483], "keyc": 167, "keycap": 177, "keycod": [282, 369], "keyedarch": 483, "keyencod": 330, "keyerror": [14, 22, 23, 35, 55, 78, 85, 160, 167, 170, 184, 196, 197, 205, 211, 213, 233, 236, 243, 250, 261, 271, 296, 310, 328, 329, 330, 339, 344, 345, 355, 358, 385, 386, 387, 389, 390, 422, 425, 428, 432, 450, 452, 465, 466, 469, 476, 479, 481, 483], "keyfil": [223, 248, 269, 281, 305, 335, 341, 462, 474, 479, 483], "keyfunc": [225, 261], "keylist": [465, 466], "keylog": [341, 483], "keylog_filenam": 341, "keynam": 177, "keyout": 341, "keypad": [92, 177], "keypath": 281, "keypatternpair": 431, "keypress": [68, 92, 282, 468], "keyref": [402, 467], "keyset": 483, "keyspag": 483, "keystrok": [106, 155, 177, 333, 462, 469], "keysview": [161, 344, 386], "keysym": 369, "keysym_num": 369, "keyvaluepair": 431, "keywd": 73, "keywdarg": 73, "keywdarg_method": 73, "keywdarg_parrot": 73, "keywdargmodul": 73, "keyword": [5, 58, 63, 64, 66, 68, 74, 75, 76, 84, 87, 95, 100, 101, 102, 115, 120, 122, 135, 139, 149, 151, 158, 160, 167, 170, 176, 177, 183, 186, 189, 190, 191, 193, 196, 205, 206, 207, 208, 213, 218, 225, 226, 230, 235, 243, 245, 247, 251, 254, 255, 261, 262, 264, 266, 267, 268, 271, 278, 283, 288, 292, 293, 297, 299, 304, 307, 313, 315, 319, 321, 323, 325, 331, 332, 335, 337, 344, 345, 348, 352, 356, 358, 362, 364, 365, 369, 376, 384, 385, 386, 388, 389, 395, 399, 400, 403, 411, 413, 420, 422, 427, 428, 429, 430, 431, 433, 436, 442, 443, 445, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 480, 481, 482, 483], "keyword_item": 430, "keyword_on": 255, "keyword_pattern": [427, 431], "keyword_ti": 431, "keywordorstar": 431, "keywords_argu": 430, "keywrapp": 483, "kf": 431, "kfm": 403, "kfmclient": 403, "kfreebsd": 483, "kg": 94, "khan": 483, "kharosthi": 344, "khatri": [480, 483], "kholia": 477, "khurana": [478, 480, 483], "khy6h21km": 235, "kib": [42, 115, 136, 270, 293, 332, 365, 382, 481, 483], "kick": 102, "kieft": 483, "kiendl": 467, "kilburn": 483, "kill": [59, 84, 115, 130, 133, 137, 142, 166, 177, 247, 257, 283, 293, 333, 348, 362, 402, 407, 422, 468, 469, 470, 475, 480, 483], "kill_python": 362, "kill_thread": 102, "killchar": 177, "killen": 483, "killpg": [142, 293, 465, 483], "kilogram": [94, 386], "kilohertz": 481, "kim": [472, 483], "kimbrel": 483, "kind": [34, 63, 64, 68, 73, 76, 79, 85, 87, 99, 100, 102, 109, 120, 122, 133, 151, 176, 193, 250, 251, 255, 258, 281, 283, 293, 299, 301, 319, 328, 340, 341, 344, 346, 352, 365, 369, 386, 388, 395, 400, 413, 414, 415, 426, 427, 428, 430, 431, 432, 440, 441, 456, 461, 464, 465, 466, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 483], "kindahl": 469, "king": [318, 319, 462, 481, 483], "kinoshita": 483, "kintscher": [472, 483], "kiril": 473, "kirpichev": [473, 483], "kit": [472, 483], "kite": 384, "kivi": 459, "kiwi": 442, "kl": 344, "klass": 267, "klausner": 473, "kleckner": 475, "klem": 395, "klist": 330, "klose": [469, 476, 479], "kloth": 483, "kluyver": [477, 478, 479, 483], "km": [94, 343], "kmac": 235, "knew": [103, 110, 470], "knight": [95, 109, 307, 426, 442, 446, 464, 465, 481], "knob": 348, "know": [31, 33, 59, 63, 73, 76, 77, 85, 93, 95, 99, 101, 102, 103, 106, 109, 110, 117, 120, 132, 139, 151, 161, 176, 178, 181, 190, 193, 195, 200, 201, 208, 243, 245, 250, 259, 266, 268, 269, 271, 272, 283, 292, 293, 330, 332, 337, 341, 344, 352, 369, 376, 382, 384, 395, 400, 405, 416, 419, 422, 425, 432, 434, 436, 443, 461, 462, 463, 464, 467, 468, 469, 474, 476, 477, 479, 483], "knowledg": [33, 92, 183, 194, 266, 330, 468], "known": [5, 9, 23, 33, 60, 61, 63, 64, 68, 75, 85, 94, 95, 106, 107, 110, 120, 151, 158, 167, 169, 176, 183, 186, 196, 197, 209, 235, 242, 247, 250, 251, 253, 266, 267, 268, 275, 276, 293, 299, 319, 320, 328, 337, 340, 341, 342, 344, 348, 352, 354, 355, 366, 369, 375, 376, 378, 384, 387, 399, 400, 410, 415, 416, 422, 425, 426, 430, 434, 435, 436, 456, 458, 465, 467, 469, 470, 471, 475, 477, 479, 480, 481, 483], "known_host": 332, "known_path": 334, "knownfil": 276, "knuth": [160, 186], "ko": [472, 479, 480, 483], "kocak": [482, 483], "koch": 384, "koep": 483, "koi8_r": 158, "koi8_t": [158, 478, 483], "koi8_u": 158, "kok": [477, 478, 483], "kolam": 384, "komodo": 85, "konieczni": 476, "konopko": 483, "konqueror": [403, 467, 483], "konstantin": [482, 483], "koo": 479, "koob": 483, "koray": 466, "korean": [158, 466, 480, 483], "koren": 483, "korenberg": [478, 479], "korn": 447, "korpela": 109, "kosata": 469, "koshiba": 483, "koubaa": 483, "kq_ev_add": 328, "kq_ev_clear": 328, "kq_ev_delet": 328, "kq_ev_dis": 328, "kq_ev_en": 328, "kq_ev_eof": 328, "kq_ev_error": 328, "kq_ev_flag1": 328, "kq_ev_oneshot": 328, "kq_ev_sysflag": 328, "kq_filter_aio": 328, "kq_filter_netdev": 328, "kq_filter_proc": 328, "kq_filter_read": 328, "kq_filter_sign": 328, "kq_filter_tim": 328, "kq_filter_vnod": 328, "kq_filter_writ": 328, "kq_note_attrib": 328, "kq_note_child": 328, "kq_note_delet": 328, "kq_note_exec": 328, "kq_note_exit": 328, "kq_note_extend": 328, "kq_note_fork": 328, "kq_note_link": 328, "kq_note_linkdown": 328, "kq_note_linkinv": 328, "kq_note_linkup": 328, "kq_note_lowat": 328, "kq_note_pctrlmask": 328, "kq_note_pdatamask": 328, "kq_note_renam": 328, "kq_note_revok": 328, "kq_note_track": 328, "kq_note_trackerr": 328, "kq_note_writ": 328, "kqueue": [68, 322, 329, 468, 478, 483], "kqueue_ev": 483, "kqueueselector": [131, 329, 483], "kr": [158, 466], "krah": [426, 469, 476, 479, 483], "krahl": 479, "krasnikov": 483, "krebber": [480, 483], "krekel": 467, "krell": 95, "krennwalln": [474, 483], "kreusada": 483, "kreutz": 468, "krier": [478, 481, 483], "kristj": [469, 475, 477], "kristol": 243, "krugler": 109, "krzysztof": 483, "ks_c": 158, "ks_x": 158, "ksc5601": 158, "ksdataformat_subtype_pcm": 401, "ksx1001": 158, "kt": 386, "kt_co": 386, "ktls": 483, "kuba": 469, "kubilay": [482, 483], "kuchl": [92, 95, 106, 109, 177, 462, 463, 464, 465, 466, 467, 468, 469, 477], "kuhn": 476, "kul": 483, "kulakov": [480, 483], "kulakovin": 473, "kulik": 483, "kuma": 483, "kumar": [473, 474, 483], "kumaran": [469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "kumaripaba": 483, "kung": 345, "kunstlev": 467, "kuprieiev": 483, "kuratomi": 477, "kurenkov": 483, "kurt": 467, "kushal": [478, 479, 483], "kuska": 483, "kuxjwb4lzsa": 261, "kvpair": 431, "kw": [5, 63, 176, 189, 197, 203, 205, 208, 262, 362, 372, 374, 375, 376, 389, 390, 400, 441, 462, 465, 468, 475], "kw_default": 122, "kw_name": [191, 473, 483], "kw_on": [181, 386, 472, 483], "kw_only1": 87, "kw_only2": 87, "kw_only_default": 386, "kwajalein": 425, "kwarg": [10, 58, 63, 68, 85, 87, 93, 101, 102, 112, 115, 120, 122, 126, 139, 140, 142, 158, 160, 166, 167, 170, 177, 186, 225, 250, 253, 255, 262, 267, 268, 283, 291, 292, 293, 299, 307, 308, 325, 344, 345, 358, 362, 364, 365, 385, 386, 388, 389, 390, 399, 402, 428, 431, 441, 468, 473, 476, 478, 479, 481, 483], "kwarg1": [95, 467], "kwarg2": [95, 467], "kwarg_or_double_star": 431, "kwarg_or_star": 431, "kwatra": [473, 483], "kwcount": 66, "kwd1": 441, "kwd2": 441, "kwd_attr": 122, "kwd_on": 441, "kwd_only_arg": 441, "kwd_pattern": 122, "kwdef": [66, 483], "kwdict": [10, 73], "kwds": [61, 63, 75, 76, 93, 137, 144, 169, 175, 203, 211, 225, 226, 255, 283, 297, 318, 345, 362, 380, 385, 388, 428, 431, 441, 467, 481, 483], "kweyword": 483, "kwlist": [73, 76, 190, 263], "kwname": [10, 58, 100], "kwonlyarg": [122, 255], "kwonlyargcount": [13, 142, 385, 483], "kwonlydefault": 255, "kws": [66, 225, 352], "kx": 341, "kyle": [469, 472, 479, 480, 481, 482, 483], "kyungmin": 483, "kz1048": [158, 478, 483], "kz_1048": 158, "l0x": 472, "l1": [68, 84, 158, 376], "l10": 158, "l10n": [230, 462], "l2": [84, 158, 376], "l3": 158, "l4": 158, "l5": 158, "l6": [158, 476], "l6988": 475, "l6hk": 476, "l7": 158, "l8": 158, "l9": 158, "l_outer": 283, "la": [267, 467, 473], "laan": 468, "lab": [336, 426, 440, 462, 464, 465], "laban": [469, 471], "label": [42, 68, 78, 94, 95, 158, 189, 191, 247, 271, 281, 292, 318, 331, 341, 345, 368, 369, 375, 386, 461, 464, 465, 475, 477, 480, 483], "labeledscal": 483, "labeledtupl": 474, "labelentri": 375, "labelfram": [375, 376], "laboratori": 426, "lacinia": 149, "lack": [45, 46, 85, 99, 213, 216, 247, 250, 283, 293, 335, 341, 347, 422, 429, 430, 461, 462, 463, 468, 470, 477, 478, 480, 483], "lacus": 149, "ladi": 483, "lag": 308, "lagerwal": 476, "lahey": 466, "lahfa": 483, "laid": 385, "laird": 84, "lakhara": 483, "lalo": 465, "lamb": [337, 441], "lambach": 468, "lambd": [318, 474, 483], "lambda": [68, 87, 102, 103, 108, 122, 126, 133, 144, 147, 160, 167, 181, 190, 226, 235, 255, 261, 283, 299, 318, 340, 344, 358, 364, 367, 385, 388, 389, 390, 399, 420, 427, 428, 431, 433, 435, 442, 445, 462, 463, 464, 466, 467, 468, 470, 471, 477, 478, 482, 483], "lambda_expr": 430, "lambda_kwd": 431, "lambda_param": 431, "lambda_param_maybe_default": 431, "lambda_param_no_default": 431, "lambda_param_with_default": 431, "lambda_paramet": 431, "lambda_slash_no_default": 431, "lambda_slash_with_default": 431, "lambda_star_etc": 431, "lambdatyp": 385, "lambdef": 431, "lambert": [465, 477], "lameiro": 95, "lana": 108, "lanc": [397, 426], "lancelot": [413, 442], "land": [177, 483], "landau": 478, "lander": [477, 480], "landmark": [354, 461, 479, 483], "landri": 483, "landscap": [384, 468], "landschoff": [475, 476, 483], "lang": [80, 84, 85, 101, 109, 230, 266, 340, 395, 454, 463, 464, 465, 467, 470], "lang1": 230, "lang2": 230, "lang3": 230, "langa": [98, 288, 475, 477, 478, 479, 480, 481, 482, 483], "langer": 481, "langinfo": 483, "langner": 479, "languag": [61, 64, 68, 72, 73, 74, 80, 84, 85, 87, 93, 94, 95, 100, 102, 106, 109, 110, 112, 122, 158, 167, 176, 180, 191, 196, 202, 205, 209, 217, 222, 225, 240, 246, 247, 250, 264, 266, 273, 281, 299, 307, 319, 340, 344, 345, 352, 355, 364, 369, 377, 379, 385, 386, 410, 411, 419, 428, 430, 434, 435, 436, 445, 457, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "language1": 230, "lannert": [462, 465], "lantern": 177, "laoreet": 149, "lapeyr": [481, 482, 483], "laptop": 465, "lar": [462, 465, 466, 467, 468, 469, 475, 476], "larch": 167, "larg": [5, 7, 55, 58, 59, 63, 68, 72, 84, 92, 93, 95, 99, 102, 106, 109, 110, 137, 158, 176, 177, 183, 184, 186, 190, 193, 212, 213, 222, 247, 248, 258, 259, 262, 275, 283, 288, 292, 293, 295, 299, 314, 333, 344, 345, 346, 347, 348, 352, 358, 382, 384, 388, 391, 410, 411, 413, 422, 425, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 481, 483], "large_sum": 382, "largefil": [362, 483], "larger": [25, 42, 49, 56, 76, 85, 92, 93, 101, 117, 133, 151, 176, 177, 183, 184, 186, 215, 225, 258, 259, 278, 284, 293, 319, 322, 340, 341, 344, 345, 362, 365, 422, 428, 430, 435, 461, 462, 464, 465, 467, 469, 470, 474, 475, 478, 479, 480, 481, 482, 483], "largest": [95, 100, 108, 167, 183, 186, 275, 322, 344, 352, 362, 462, 463, 464, 465, 466, 467, 468, 476, 483], "largezipfil": 422, "larri": [88, 469, 471, 472, 476, 477, 481, 482, 483], "larson": 483, "last": [9, 22, 23, 25, 26, 33, 34, 45, 59, 63, 67, 73, 76, 78, 84, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 114, 120, 125, 139, 144, 146, 151, 155, 158, 160, 161, 167, 169, 176, 177, 183, 184, 186, 188, 190, 191, 193, 196, 200, 203, 205, 209, 211, 213, 214, 215, 218, 221, 225, 234, 235, 245, 247, 248, 255, 259, 261, 262, 266, 267, 269, 270, 271, 275, 283, 284, 288, 291, 292, 293, 296, 297, 299, 301, 308, 314, 319, 320, 323, 328, 330, 331, 332, 337, 339, 340, 342, 344, 345, 347, 348, 352, 358, 365, 366, 369, 376, 378, 381, 382, 384, 386, 387, 388, 389, 390, 394, 395, 405, 406, 410, 413, 415, 422, 427, 428, 429, 430, 432, 435, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "last_accept": 283, "last_day": 307, "last_exc": [23, 352, 381, 474, 483], "last_login": 468, "last_month": 307, "last_nam": [167, 175, 319], "last_nod": 235, "last_traceback": [23, 297, 352, 428, 450, 474, 483], "last_typ": [23, 352, 450, 470, 474, 483], "last_valu": [23, 94, 211, 352, 381, 450, 474, 483], "last_week": 307, "lastaccess": 468, "lastchild": 410, "lastcmd": 155, "lasterror": [176, 468], "lastgroup": 319, "lasti": [191, 483], "lastindex": 319, "lastnam": [226, 340, 475, 481], "lastresort": [101, 267, 475], "lastrowid": [340, 479, 483], "lastupdatedordereddict": 160, "lat_long": 481, "late": [85, 92, 190, 462, 483], "latenc": [269, 293, 441, 469, 472, 479], "latent": 480, "later": [13, 22, 23, 24, 27, 33, 34, 42, 45, 61, 72, 73, 75, 76, 84, 92, 95, 96, 101, 102, 103, 106, 110, 120, 125, 138, 139, 141, 149, 151, 152, 155, 158, 167, 169, 176, 177, 183, 191, 196, 202, 205, 230, 235, 243, 247, 250, 255, 261, 265, 266, 267, 268, 270, 279, 283, 292, 293, 299, 319, 325, 328, 331, 333, 337, 340, 341, 352, 358, 362, 381, 386, 388, 395, 400, 421, 427, 428, 430, 432, 436, 455, 456, 461, 462, 463, 464, 465, 468, 469, 470, 473, 474, 475, 477, 478, 480, 482, 483], "latest": [71, 85, 151, 183, 186, 226, 247, 253, 399, 422, 461, 467, 469, 471, 474, 475, 476, 477, 479, 483], "latex": [106, 468, 482], "latex_latin1": 482, "latin": [16, 68, 106, 109, 120, 136, 158, 195, 223, 239, 319, 331, 340, 358, 387, 430, 464, 465, 468, 471, 475, 478, 479, 480, 482, 483], "latin1": [34, 136, 158, 299, 314, 467, 476, 479, 482, 483], "latin10": 158, "latin2": [158, 340], "latin3": 158, "latin4": 158, "latin5": 158, "latin6": 158, "latin7": 158, "latin8": 158, "latin9": 158, "latin_1": [158, 195, 483], "latitud": [85, 345], "latter": [5, 7, 23, 42, 73, 85, 106, 110, 120, 133, 144, 167, 183, 184, 196, 201, 205, 209, 215, 247, 250, 255, 259, 267, 268, 276, 292, 293, 299, 308, 332, 337, 340, 344, 347, 369, 375, 376, 384, 386, 388, 400, 427, 428, 429, 430, 431, 432, 436, 461, 465, 470, 475, 476, 477, 480, 482, 483], "lauder": [464, 465], "laugh": [409, 476, 483], "launch": [132, 186, 283, 293, 348, 352, 362, 403, 461, 462, 475, 476, 477, 481, 483], "launcher": [68, 399, 421, 448, 458, 459, 469, 476, 477, 479, 480, 483], "launcheron": 461, "launchpad": 468, "laura": 483, "laurent": 483, "lavi": 483, "law": [141, 235, 336, 343, 349, 366, 426, 467, 483], "lawrenc": [481, 482, 483], "lawrenz": 483, "lawson": 466, "lawsuit": 426, "lax": [244, 467, 483], "lay": [102, 215], "layer": [6, 9, 20, 25, 26, 32, 39, 56, 60, 61, 68, 75, 102, 305, 335, 337, 341, 347, 419, 455, 462, 465, 468, 481, 482, 483], "layout": [34, 42, 61, 63, 68, 76, 100, 101, 102, 158, 189, 213, 271, 341, 347, 355, 368, 369, 373, 398, 428, 432, 445, 461, 468, 474, 476, 477, 483], "layoutspec": 376, "layzel": 483, "lazar": 483, "lazarus": 227, "lazi": [68, 88, 95, 103, 135, 225, 280, 341, 344, 352, 359, 386, 405, 427, 436, 467, 472, 474, 478, 480, 483], "lazier": 283, "lazili": [62, 166, 216, 243, 261, 344, 386, 388, 389, 427, 429, 430, 472, 473, 477, 483], "lazy_import": 250, "lazy_load": 250, "lazy_typ": 250, "lazycach": [265, 478, 483], "lazyload": [250, 478, 479, 483], "lbl": 369, "lbrace": 377, "lbyl": 87, "lc": [270, 483], "lc_": 266, "lc_all": [230, 266, 362, 452, 455, 473, 480, 483], "lc_collat": 266, "lc_ctype": [34, 59, 87, 109, 266, 293, 344, 455, 479, 480, 483], "lc_letter": 434, "lc_messag": [230, 266], "lc_monetari": [266, 483], "lc_numer": [266, 344, 478, 479, 480, 483], "lc_time": [150, 266], "lc_type": [478, 483], "lcd": 475, "lchflag": [293, 468], "lchmod": [293, 296, 468, 483], "lchown": [293, 465], "lci": 341, "lcm": [275, 482, 483], "lcmapstringex": 483, "lcov": 477, "lcy1134": 341, "ld": [9, 72, 77, 176, 344, 456], "ld_library_path": [176, 479, 483], "ld_so_aix": 483, "ldconfig": [176, 483], "ldcxxshare": 469, "ldexp": [275, 318, 483], "ldflag": [72, 456, 465, 483], "ldflags_nodist": 456, "ldgettext": [473, 481], "ldj": 248, "ldl": 72, "ldngettext": [473, 481], "ldshare": [456, 483], "ldversion": 483, "le": [25, 95, 109, 158, 200, 291, 463, 471, 476], "leach": 413, "lead": [7, 18, 28, 39, 63, 64, 73, 75, 78, 85, 94, 99, 100, 101, 102, 106, 139, 150, 151, 155, 163, 167, 183, 186, 190, 193, 196, 199, 205, 208, 221, 225, 228, 243, 245, 247, 250, 255, 258, 259, 267, 269, 271, 275, 276, 283, 293, 297, 299, 308, 314, 318, 337, 344, 347, 352, 354, 356, 358, 359, 362, 364, 365, 366, 381, 388, 394, 395, 400, 410, 413, 422, 427, 428, 429, 430, 432, 435, 436, 455, 461, 462, 465, 466, 467, 468, 470, 474, 476, 477, 479, 480, 481, 482, 483], "leader": [293, 331, 483], "leaf": [104, 235, 293, 377, 386, 483], "leaf_siz": [235, 483], "leak": [7, 33, 38, 45, 59, 60, 73, 100, 102, 225, 227, 283, 293, 348, 352, 382, 430, 462, 463, 469, 470, 475, 477, 478, 482, 483], "leakag": 483, "lean": 483, "leander": 469, "leandro": 95, "leap": [87, 101, 106, 183, 366], "leapday": 150, "learn": [71, 73, 75, 77, 79, 80, 84, 87, 92, 93, 95, 96, 103, 106, 109, 151, 176, 186, 193, 247, 275, 299, 331, 340, 369, 384, 411, 464, 465, 467, 468, 469, 475, 479, 480, 483], "learner": 384, "least": [5, 28, 34, 41, 49, 61, 63, 66, 72, 73, 76, 84, 85, 93, 99, 102, 103, 106, 109, 115, 120, 136, 149, 153, 158, 160, 176, 177, 183, 186, 190, 193, 194, 200, 203, 208, 215, 221, 226, 232, 234, 242, 248, 258, 261, 269, 270, 275, 292, 293, 308, 309, 318, 328, 332, 333, 335, 337, 341, 343, 344, 345, 347, 348, 352, 355, 359, 361, 362, 365, 366, 378, 380, 382, 386, 388, 389, 406, 422, 426, 427, 428, 430, 431, 434, 436, 461, 465, 468, 469, 470, 474, 476, 479, 480, 482, 483], "leav": [5, 23, 31, 60, 64, 66, 75, 76, 92, 95, 100, 102, 103, 109, 120, 138, 140, 167, 169, 177, 184, 186, 191, 193, 196, 205, 213, 226, 235, 243, 247, 250, 258, 269, 271, 275, 283, 292, 293, 340, 341, 358, 362, 365, 369, 384, 388, 405, 427, 432, 434, 436, 442, 456, 462, 464, 465, 466, 467, 468, 469, 476, 479, 483], "leaveok": [92, 177], "led": [100, 167, 293, 463, 476, 479, 483], "lee": [110, 466, 467, 469, 473, 475, 480, 483], "leender": 483, "leffler": 337, "left": [5, 15, 33, 34, 47, 63, 64, 72, 73, 75, 92, 95, 102, 103, 106, 109, 122, 141, 146, 149, 155, 157, 160, 167, 176, 177, 181, 183, 186, 190, 191, 193, 196, 212, 216, 225, 226, 228, 235, 247, 250, 267, 268, 269, 271, 281, 283, 292, 293, 295, 297, 302, 314, 319, 324, 331, 337, 340, 341, 344, 345, 348, 364, 365, 369, 375, 376, 384, 386, 387, 388, 395, 400, 411, 427, 428, 430, 432, 435, 436, 456, 461, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 478, 480, 481, 483], "left_list": 216, "left_on": 216, "left_volum": 295, "leftarrow": 247, "leftmost": [106, 147, 160, 190, 193, 226, 235, 319, 430, 466, 480, 481], "leftov": [191, 292], "leftright": 384, "leftshift": 377, "leftshiftequ": 377, "leg": 94, "legaci": [5, 23, 33, 58, 68, 75, 163, 164, 194, 196, 202, 205, 206, 209, 217, 235, 250, 255, 256, 270, 288, 292, 293, 332, 340, 341, 347, 352, 362, 388, 422, 432, 435, 455, 461, 469, 474, 475, 476, 477, 479, 481, 482, 483], "legacy_funct": [388, 475], "legacy_pars": 386, "legacy_transaction_control": 340, "legacy_windows_fs_encod": [33, 34, 59, 474], "legacy_windows_stdio": [33, 34, 474], "legacybase64testcas": 483, "legacyinterpol": [473, 474, 483], "legal": [11, 77, 92, 109, 225, 241, 247, 258, 297, 366, 369, 376, 420, 426, 430, 435, 463, 464, 465, 467, 468, 469, 483], "legal_char": 319, "legalchar": 478, "legend": 42, "lehmann": 466, "lehtinen": 476, "lehtosalo": 478, "leif": 468, "leitch": 483, "lekma": 469, "lel": 472, "lele": [480, 483], "lemburg": [109, 230, 340, 462, 463, 464, 465, 467], "len": [7, 8, 9, 22, 38, 40, 41, 49, 54, 55, 60, 68, 76, 85, 87, 93, 94, 96, 102, 106, 107, 109, 114, 141, 142, 147, 149, 151, 160, 161, 166, 170, 176, 188, 190, 191, 193, 211, 215, 225, 226, 230, 235, 236, 242, 247, 261, 269, 278, 283, 284, 288, 291, 292, 293, 296, 305, 318, 320, 335, 337, 340, 341, 343, 344, 347, 362, 382, 385, 389, 400, 407, 408, 410, 413, 427, 428, 435, 440, 441, 442, 443, 449, 450, 451, 462, 465, 466, 467, 468, 469, 470, 471, 473, 475, 476, 477, 478, 481, 483], "lend": [99, 464], "lenfunc": [57, 63], "length": [5, 7, 9, 22, 23, 24, 34, 35, 49, 54, 55, 56, 58, 59, 60, 63, 64, 68, 73, 75, 79, 85, 92, 93, 94, 95, 96, 98, 100, 102, 109, 110, 117, 120, 121, 141, 142, 146, 158, 174, 176, 177, 184, 186, 190, 191, 195, 196, 201, 202, 205, 207, 208, 215, 225, 242, 245, 248, 254, 259, 261, 262, 268, 269, 270, 271, 275, 278, 283, 292, 293, 308, 314, 319, 320, 328, 332, 335, 337, 340, 341, 345, 347, 352, 358, 361, 364, 365, 366, 376, 385, 386, 388, 393, 395, 400, 405, 408, 410, 415, 419, 422, 423, 424, 427, 428, 430, 435, 436, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "length_hint": [49, 291, 428, 477], "length_in_bit": 235, "length_requir": 241, "lengthi": [92, 95, 106, 261, 462, 463, 464, 465, 466, 475, 483], "lengthier": [462, 463], "lenient": 483, "lennart": [469, 483], "lenton": 468, "leo": [86, 149], "leoast": 122, "leon": [478, 483], "lesher": [469, 483], "lesli": [478, 483], "less": [24, 25, 33, 34, 39, 56, 59, 64, 73, 76, 78, 85, 100, 102, 103, 106, 108, 109, 112, 133, 139, 147, 149, 151, 153, 158, 177, 183, 186, 193, 196, 215, 226, 228, 234, 235, 244, 247, 251, 258, 259, 261, 267, 270, 278, 283, 293, 297, 299, 307, 308, 319, 332, 333, 337, 340, 341, 344, 345, 348, 352, 358, 362, 365, 366, 369, 375, 376, 377, 381, 386, 388, 395, 400, 410, 427, 428, 430, 436, 463, 464, 465, 466, 467, 468, 471, 474, 475, 477, 478, 479, 481, 482, 483], "less_than_10": 95, "lessequ": 377, "lesser": 483, "lesson": 103, "let": [23, 42, 66, 72, 73, 76, 79, 84, 85, 92, 93, 94, 95, 96, 101, 102, 103, 106, 109, 110, 120, 139, 155, 161, 167, 169, 176, 190, 200, 226, 230, 245, 251, 262, 266, 267, 268, 269, 292, 297, 307, 319, 330, 331, 340, 341, 369, 376, 384, 413, 430, 432, 461, 462, 464, 465, 466, 467, 468, 469, 471, 473, 474, 475, 477, 480, 483], "letter": [84, 92, 106, 109, 158, 177, 178, 186, 190, 193, 228, 266, 267, 292, 296, 297, 301, 319, 341, 344, 345, 364, 376, 387, 394, 395, 422, 430, 435, 442, 449, 462, 464, 466, 467, 468, 469, 470, 474, 476, 478, 479, 480, 483], "lev": 483, "levarag": 483, "level": [7, 13, 16, 22, 23, 31, 32, 33, 34, 42, 43, 59, 63, 68, 73, 74, 75, 79, 84, 85, 93, 94, 95, 96, 98, 100, 103, 109, 110, 115, 118, 120, 122, 125, 129, 133, 135, 136, 137, 139, 146, 149, 152, 158, 160, 163, 164, 167, 169, 170, 177, 180, 181, 183, 190, 191, 193, 194, 202, 204, 207, 212, 213, 223, 225, 226, 230, 234, 242, 243, 245, 247, 248, 250, 251, 255, 256, 258, 261, 268, 269, 270, 271, 279, 281, 282, 283, 285, 288, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 321, 322, 324, 329, 330, 331, 332, 333, 334, 335, 337, 340, 341, 347, 352, 354, 355, 356, 358, 359, 360, 362, 364, 365, 369, 375, 376, 381, 385, 386, 388, 395, 399, 400, 403, 410, 411, 413, 415, 419, 422, 424, 425, 427, 428, 429, 430, 431, 432, 435, 436, 440, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483, 484], "levelnam": [101, 102, 267, 268, 269, 283, 466, 469, 475], "levelno": [102, 267], "levenshtein": 483, "leverag": [139, 252, 283, 477, 482], "levinson": 468, "levitt": 477, "levkivskyi": [479, 480, 481, 483], "lewi": [472, 483], "lexer": 331, "lexic": [240, 255, 296, 331, 357, 378, 415, 428, 430, 434, 435, 480, 483], "lexicalhandl": [68, 273, 466, 472, 483], "lexicograph": [108, 261, 344, 430, 442, 467], "lexist": [294, 466, 481, 483], "lf": [66, 178, 208, 435, 483], "lfactor": 141, "lflag": 361, "lfs_cflag": 306, "lgamma": [275, 469, 475], "lgettext": [473, 481, 483], "lhl": 347, "lhs": 191, "li": [64, 411, 478, 480, 483], "liabil": [151, 426], "liabl": [283, 426], "liam": 483, "lib": [34, 35, 72, 77, 79, 84, 86, 89, 95, 96, 98, 112, 113, 116, 117, 120, 122, 123, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 147, 149, 150, 151, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 166, 167, 169, 171, 172, 173, 175, 176, 177, 178, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 216, 218, 220, 221, 223, 226, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 276, 279, 281, 283, 284, 286, 288, 289, 291, 292, 293, 294, 296, 297, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 316, 317, 318, 319, 321, 323, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 354, 355, 357, 358, 359, 360, 364, 365, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 430, 438, 450, 452, 453, 455, 456, 460, 461, 462, 463, 464, 465, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "lib1": [102, 456], "lib2": 102, "lib2to3": [68, 87, 187, 473, 474, 482, 483], "lib64": [296, 352, 354, 456, 482, 483], "lib_dir": 456, "lib_path": 399, "lib_pypi": 89, "libarch": 358, "libb2": [473, 483], "libbsd": 483, "libbz2": 176, "libc": [176, 257, 293, 303, 348, 456, 467, 483], "libc_ver": [303, 483], "libcrypt": [473, 483], "libcrypto": 483, "libcst": [112, 122, 482], "libcurs": 483, "libdest": 475, "libdir": [355, 460], "libdl": 483, "libedit": [320, 483], "liber": [146, 193], "liberti": 427, "libexpat": 483, "libffi": [68, 469, 473, 480, 483], "libgcc_": 483, "liblzma": [270, 473], "libm": [176, 456, 483], "libman": 483, "libmpdec": [68, 186, 456, 476, 483], "libnet": 483, "libnsl": [473, 483], "libpl": 483, "libpuzzl": 223, "libpython": [98, 456, 472, 473, 481, 483], "libpython2": 465, "libpython3": [98, 483], "libpython38": [481, 483], "libpythonmajor": [456, 472, 483], "librari": [7, 23, 33, 34, 42, 45, 51, 59, 63, 66, 68, 71, 72, 73, 74, 77, 79, 80, 84, 85, 91, 92, 95, 98, 100, 106, 107, 108, 109, 110, 118, 120, 123, 133, 139, 142, 163, 167, 169, 177, 178, 183, 184, 186, 187, 192, 193, 194, 203, 208, 212, 228, 230, 235, 243, 247, 251, 257, 266, 267, 269, 275, 282, 283, 287, 292, 293, 296, 299, 302, 308, 313, 314, 320, 328, 330, 331, 333, 334, 337, 340, 341, 344, 348, 352, 354, 355, 356, 358, 362, 365, 366, 369, 375, 378, 384, 386, 388, 390, 394, 399, 400, 410, 422, 425, 427, 428, 430, 432, 433, 434, 435, 436, 445, 454, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 484], "libraries_assembly_name_prefix": [282, 469], "library_dir": 167, "libraryload": 176, "librat": 483, "libray": 483, "libreadlin": [320, 483], "libregrtest": 483, "libressl": [480, 483], "librt": 483, "libsqlite3": 473, "libssl": 480, "libtclsam": 81, "libtirpc": 483, "libtksam": 81, "libtomcrypt": 483, "libtommath": 483, "libuuid": 483, "libwww": [243, 466], "libxcrypt": 483, "libz": 483, "licens": [86, 103, 123, 168, 247, 251, 271, 307, 352, 426, 448, 450, 453, 464, 481, 483], "license": 426, "licensor": 426, "licht": 483, "lidral": [482, 483], "lie": [183, 242, 250, 269, 283, 376, 386, 428, 436, 464, 465], "liechtenstein": 413, "lieu": [278, 426], "life": [68, 87, 105, 167, 226, 299, 340, 358, 368, 410, 422, 441, 461, 462, 468, 481, 483], "lifecycl": [469, 477], "lifespan": 255, "lifetim": [5, 42, 68, 73, 85, 158, 169, 293, 405, 430, 463, 476, 479, 480, 483], "lifo": [68, 124, 160, 316, 344, 388], "lifoqueu": [124, 134, 316, 344, 468, 483], "lift": [110, 353, 384, 474, 479, 480, 481], "ligatur": 158, "light": [115, 176, 177, 468, 469, 471, 483], "lightweight": [84, 216, 226, 340, 381, 399, 461, 462, 467, 468, 478, 479], "ligocki": 468, "like": [5, 7, 13, 23, 25, 28, 31, 33, 34, 42, 43, 45, 49, 51, 55, 56, 58, 60, 61, 63, 64, 66, 68, 73, 74, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 99, 100, 101, 103, 106, 109, 110, 112, 117, 120, 121, 126, 129, 133, 136, 139, 141, 144, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 163, 167, 169, 175, 176, 177, 181, 182, 183, 184, 186, 190, 191, 193, 196, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 213, 214, 215, 218, 225, 226, 228, 229, 230, 231, 233, 234, 235, 237, 242, 243, 244, 245, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 283, 292, 293, 294, 295, 296, 297, 299, 301, 304, 307, 308, 309, 310, 311, 313, 314, 319, 321, 324, 328, 330, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 349, 352, 353, 355, 358, 359, 360, 361, 362, 365, 366, 369, 375, 376, 378, 381, 382, 383, 384, 385, 386, 388, 390, 394, 395, 397, 400, 401, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "likelihood": [235, 343, 481], "likewis": [33, 55, 85, 94, 112, 120, 186, 190, 208, 209, 267, 271, 338, 384, 415, 434, 435, 475, 476, 483], "lima": 483, "limburg": 441, "limit": [7, 13, 23, 34, 35, 57, 59, 61, 63, 64, 68, 75, 85, 92, 94, 95, 98, 102, 106, 112, 119, 120, 132, 133, 136, 137, 139, 142, 149, 158, 163, 169, 173, 184, 186, 191, 201, 207, 208, 214, 215, 225, 226, 235, 247, 248, 254, 257, 261, 268, 270, 276, 282, 283, 285, 292, 293, 295, 299, 307, 308, 312, 314, 319, 321, 324, 330, 333, 334, 337, 340, 341, 343, 348, 352, 358, 362, 365, 375, 381, 382, 384, 391, 405, 407, 410, 413, 421, 426, 428, 429, 430, 432, 434, 435, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "limit_denomin": 221, "limit_sl_dest": [163, 482, 483], "limitoverrunerror": [127, 136, 483], "limor": 483, "lin": [472, 473, 483], "lin2adpcm": [141, 483], "lin2alaw": 141, "lin2lin": 141, "lin2ulaw": 141, "lindblad": 468, "lindenmay": 384, "line": [13, 23, 24, 26, 33, 34, 64, 66, 68, 72, 73, 76, 84, 85, 89, 92, 94, 95, 96, 98, 100, 101, 102, 103, 106, 109, 110, 112, 113, 118, 119, 122, 125, 136, 137, 142, 144, 146, 149, 150, 151, 152, 155, 157, 158, 159, 160, 167, 169, 170, 175, 176, 177, 178, 183, 185, 186, 187, 188, 193, 195, 196, 199, 200, 201, 202, 204, 205, 207, 208, 213, 214, 218, 222, 223, 225, 228, 230, 234, 240, 242, 245, 247, 248, 250, 251, 254, 255, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 272, 278, 281, 282, 283, 288, 292, 296, 297, 299, 301, 302, 305, 307, 308, 312, 313, 314, 319, 321, 324, 331, 332, 334, 335, 340, 341, 344, 345, 347, 348, 352, 353, 354, 359, 362, 363, 364, 367, 369, 375, 377, 381, 382, 384, 386, 387, 396, 399, 400, 403, 407, 411, 413, 416, 420, 421, 426, 427, 428, 429, 430, 431, 432, 433, 434, 436, 440, 441, 442, 443, 446, 448, 449, 451, 452, 453, 455, 456, 458, 462, 463, 464, 465, 467, 468, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "line_buff": 258, "line_info": 483, "line_list": 95, "line_num": [175, 319, 467], "line_numb": 353, "line_start": 319, "linear": [85, 103, 132, 141, 161, 169, 190, 261, 328, 343, 344, 349, 384, 440, 465, 477, 481, 483], "linear_prob": 477, "linear_regress": [343, 472, 483], "linebreak": 64, "linecach": [68, 219, 254, 382, 483], "linecount": 151, "linefe": [146, 208, 331, 345, 435, 465], "linefmt": 267, "linejunk": 190, "linend": 175, "lineno": [23, 98, 122, 144, 167, 188, 191, 193, 213, 218, 255, 262, 265, 267, 286, 297, 299, 308, 312, 314, 319, 331, 362, 381, 382, 388, 400, 428, 431, 455, 472, 478, 479, 481, 483], "linesep": [201, 202, 203, 208, 225, 258, 293, 335, 348, 476, 483], "linespac": 372, "linet": 13, "lineterm": 190, "linetermin": [175, 483], "linetoolong": 242, "lingard": 469, "lingl": 468, "link": [34, 35, 63, 66, 68, 71, 73, 74, 77, 78, 79, 84, 85, 86, 87, 101, 102, 118, 142, 161, 163, 178, 183, 200, 212, 235, 240, 243, 245, 257, 259, 261, 266, 293, 296, 328, 332, 342, 348, 352, 354, 357, 358, 362, 369, 375, 376, 399, 403, 405, 413, 414, 426, 428, 432, 455, 456, 462, 464, 465, 466, 468, 469, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "link_to": [472, 473, 481, 483], "linkag": [35, 68, 74, 303], "linkcc": [79, 456], "linkcheck": 483, "linkedlist": 386, "linker": [68, 72, 77, 176, 458, 473, 483], "linkforshar": [72, 483], "linknam": 358, "linkoutsidedestinationerror": [358, 483], "linspac": 344, "lint": [407, 474, 483], "linter": [85, 122, 386], "linux": [33, 34, 51, 68, 71, 72, 80, 83, 84, 92, 93, 97, 98, 115, 118, 132, 176, 177, 186, 212, 214, 215, 230, 247, 257, 258, 269, 278, 283, 295, 306, 309, 322, 326, 328, 332, 333, 337, 342, 348, 352, 355, 358, 360, 362, 365, 366, 369, 383, 395, 448, 455, 456, 458, 461, 462, 463, 465, 466, 467, 468, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "linux2": [352, 476], "linux3": [352, 476], "linux_distribut": [478, 483], "linuxaudiodev": [295, 462, 465, 468], "linuxfr": 341, "linuxjourn": 467, "lion": 160, "lisa": [479, 481, 483], "lisandro": 471, "lisp": [78, 85, 95, 464], "lisp_list": 85, "lisper": 103, "list": [1, 2, 5, 7, 16, 23, 31, 33, 34, 35, 42, 49, 52, 54, 55, 57, 58, 59, 60, 63, 64, 66, 68, 73, 75, 76, 77, 79, 80, 84, 86, 87, 89, 92, 93, 94, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 115, 117, 120, 121, 122, 128, 133, 136, 139, 144, 151, 155, 158, 160, 161, 163, 167, 169, 170, 171, 173, 175, 176, 177, 181, 182, 183, 184, 186, 187, 189, 190, 191, 193, 196, 197, 199, 200, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 216, 218, 220, 223, 225, 226, 227, 228, 230, 231, 233, 235, 236, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 271, 272, 274, 276, 278, 279, 280, 281, 282, 283, 284, 286, 287, 288, 291, 292, 293, 294, 295, 296, 297, 299, 302, 304, 305, 307, 308, 310, 311, 312, 314, 318, 319, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 345, 346, 348, 351, 352, 355, 358, 359, 361, 362, 363, 364, 365, 366, 369, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 396, 400, 402, 403, 405, 407, 408, 410, 411, 413, 414, 415, 416, 419, 420, 421, 422, 423, 426, 428, 429, 431, 432, 433, 435, 436, 440, 443, 445, 446, 448, 450, 451, 453, 454, 455, 456, 457, 461, 463, 464, 465, 466, 467, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "list1": 85, "list2": 85, "list_all_object": [95, 466], "list_append": [191, 466], "list_append_pop": [481, 482], "list_attribut": [463, 464], "list_dialect": [175, 483], "list_directori": 245, "list_display": 430, "list_extend": [191, 483], "list_fold": 271, "list_id": 271, "list_nam": 271, "list_new": 483, "list_of_data": 133, "list_of_item": 299, "list_of_list": 261, "list_of_pair": 160, "list_opt": 297, "list_to_tupl": 483, "listbasedset": 161, "listbox": [68, 368, 376, 483], "listcomp": [95, 122, 431, 442], "listdir": [78, 93, 109, 142, 200, 213, 220, 230, 245, 293, 296, 332, 342, 399, 465, 466, 469, 470, 476, 480, 483], "listdriv": [142, 293, 474, 483], "listen": [68, 84, 107, 126, 164, 245, 268, 269, 288, 313, 329, 335, 337, 338, 341, 362, 384, 407, 419, 465, 468, 469, 477, 478, 483], "listener_configur": 102, "listener_process": 102, "listfunc": 380, "listiter": 385, "listmethod": [419, 420], "listmount": [142, 293, 474, 483], "listnotebook": 375, "listobject": 462, "listorset": [386, 427], "listproxi": [283, 483], "liststor": 96, "listvolum": [142, 293, 474, 483], "listwrapp": 78, "listxattr": [142, 293, 476], "lita": [479, 483], "liter": [9, 39, 64, 68, 78, 94, 106, 112, 113, 120, 157, 158, 159, 183, 186, 191, 193, 220, 221, 225, 230, 231, 248, 257, 262, 264, 267, 268, 270, 302, 307, 319, 331, 340, 344, 345, 348, 366, 369, 376, 378, 386, 388, 394, 400, 403, 413, 415, 428, 429, 431, 432, 433, 434, 441, 445, 449, 462, 464, 465, 467, 469, 470, 472, 474, 475, 477, 480, 481, 482, 483, 484], "literal_char": 435, "literal_ev": [122, 225, 468, 475, 480, 483], "literal_expr": 431, "literal_pattern": [427, 431], "literal_str": 386, "literal_text": 345, "literalinclud": 483, "literalstr": [386, 473, 483], "literatur": 103, "litig": 426, "littl": [25, 31, 64, 95, 101, 102, 103, 106, 107, 109, 141, 146, 153, 158, 176, 177, 178, 186, 190, 191, 193, 230, 243, 268, 283, 292, 295, 319, 333, 337, 344, 347, 352, 382, 384, 398, 405, 426, 441, 443, 452, 462, 463, 464, 468, 475, 476, 477, 483], "little2": 426, "little_ord": 344, "littleendianstructur": [176, 483], "littleendianunion": [176, 483], "liu": 483, "live": [28, 63, 67, 73, 84, 102, 151, 183, 207, 223, 247, 248, 250, 251, 253, 255, 283, 293, 299, 305, 340, 341, 358, 394, 400, 402, 410, 425, 428, 446, 461, 462, 463, 464, 470, 475, 483], "ljust": [337, 344, 446, 466, 476], "lk_": 282, "lk_lock": 282, "lk_nblck": 282, "lk_nbrlck": 282, "lk_rlck": 282, "lk_unlck": 282, "ll": [64, 73, 75, 76, 84, 85, 92, 93, 94, 95, 99, 101, 102, 106, 107, 109, 110, 112, 179, 193, 200, 269, 272, 292, 297, 319, 331, 340, 341, 344, 369, 384, 413, 432, 434, 435, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 481, 482, 483], "llc": 467, "lld": [64, 456, 469], "llength": 465, "llh": 347, "llh0l": 347, "lli": [64, 384], "lll": [467, 483], "llong_max": 39, "llong_min": 39, "lloyd": 434, "lls": 73, "lltrace": 483, "llu": [64, 469], "llvm": [456, 479, 483], "llx": 384, "lm": [72, 344, 435], "lmtp": [335, 468, 476, 482, 483], "lmtp_port": 335, "lmza": 483, "ln": [186, 247, 468, 476, 483], "lname": 229, "lngettext": [473, 481], "lnktype": 358, "lno": 267, "lnotab_not": [352, 479], "lo": [109, 147, 344, 386, 435, 471], "load": [11, 31, 33, 34, 41, 45, 58, 59, 68, 72, 73, 77, 79, 84, 85, 86, 93, 94, 96, 100, 101, 102, 110, 118, 122, 142, 151, 155, 166, 167, 184, 187, 191, 193, 243, 244, 247, 250, 251, 253, 262, 267, 268, 274, 276, 279, 284, 293, 297, 299, 302, 304, 307, 308, 311, 314, 320, 330, 334, 340, 341, 344, 352, 354, 362, 366, 368, 369, 379, 382, 384, 385, 405, 410, 413, 414, 419, 420, 421, 423, 425, 427, 428, 431, 433, 436, 446, 455, 461, 462, 464, 465, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "load_": 483, "load_assertion_error": [191, 482], "load_attr": [191, 472, 474, 483], "load_attr_method_with_dict": 483, "load_attr_modul": 483, "load_attr_slot": 483, "load_attr_split_key": 483, "load_attr_with_hint": 483, "load_build_class": 191, "load_cert_chain": [341, 395, 476], "load_classderef": [191, 474, 477], "load_classdict_or_deref": 483, "load_classdict_or_glob": 483, "load_closur": [191, 483], "load_compil": 474, "load_const": [191, 475, 477, 483], "load_default_cert": [341, 477, 483], "load_deref": 191, "load_dh_param": [341, 476, 483], "load_dynam": [474, 483], "load_extens": [142, 340, 469, 472, 474, 475, 483], "load_fast": [191, 477, 483], "load_fast__load_attr_instance_valu": 483, "load_fast_and_clear": [191, 474], "load_fast_check": [191, 474, 483], "load_from_dict_or_deref": [191, 474, 483], "load_from_dict_or_glob": [191, 474], "load_glob": [191, 481, 483], "load_global_builtin": 483, "load_global_modul": 483, "load_grammar": 483, "load_loc": [191, 474, 483], "load_method": [191, 474, 480, 483], "load_method_cach": 483, "load_method_class": 483, "load_method_modul": 483, "load_modul": [87, 250, 423, 432, 465, 472, 474, 477, 479, 483], "load_nam": [191, 475], "load_nul": 483, "load_packag": [474, 483], "load_package_test": [362, 483], "load_sourc": 474, "load_super_attr": [191, 474, 483], "load_test": [68, 187, 193, 362, 478, 483], "load_url": 166, "load_verify_loc": [341, 395, 477, 483], "load_widget": [169, 475], "loadabl": [33, 63, 100, 250, 307, 340, 456, 461, 483], "loadavg": 465, "loader": [31, 68, 87, 169, 176, 193, 250, 251, 252, 253, 265, 302, 362, 382, 385, 388, 413, 421, 423, 465, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "loader_detail": 250, "loader_st": [250, 483], "loaderror": 243, "loadfiledialog": 189, "loadkey": [142, 405], "loadlibrari": 176, "loadlibraryex": [86, 176, 481], "loadtestsfrom": 388, "loadtestsfrommodul": [362, 388, 473, 474, 478, 483], "loadtestsfromnam": [388, 469], "loadtestsfromtestcas": [388, 473, 483], "loadtk": 369, "loan": 261, "loc": 266, "loc_len": 475, "loc_start": 475, "local": [5, 13, 16, 18, 31, 32, 34, 35, 49, 53, 59, 66, 68, 73, 79, 84, 85, 87, 92, 95, 100, 101, 102, 103, 106, 108, 109, 120, 140, 144, 150, 151, 152, 157, 160, 164, 167, 170, 175, 176, 177, 183, 186, 190, 191, 192, 193, 200, 209, 213, 225, 226, 242, 245, 246, 247, 248, 250, 254, 255, 258, 259, 267, 269, 272, 278, 283, 288, 293, 294, 297, 299, 308, 313, 314, 315, 319, 320, 332, 334, 335, 337, 341, 344, 345, 348, 351, 352, 355, 362, 366, 379, 380, 381, 383, 386, 388, 395, 398, 405, 413, 414, 415, 416, 419, 422, 425, 427, 428, 429, 430, 432, 436, 438, 440, 441, 448, 450, 451, 452, 453, 455, 456, 458, 459, 460, 462, 463, 464, 465, 467, 468, 469, 470, 471, 475, 476, 477, 481, 483, 484], "local0": 269, "local1": 269, "local2": 269, "local3": 269, "local4": 269, "local5": 269, "local6": 269, "local7": 269, "local_addr": [126, 133, 136], "local_clear": 63, "local_cr": [337, 483], "local_creds_persist": [337, 483], "local_fil": 483, "local_filenam": 395, "local_fin": 63, "local_host": 126, "local_hostnam": 335, "local_port": 126, "local_travers": 63, "local_var": 386, "localappdata": 461, "localcach": 461, "localcontext": [186, 344, 467, 468, 483], "localeconv": [266, 344, 452, 479, 480, 483], "localedir": 230, "localehtmlcalendar": [150, 473, 483], "localenam": 266, "localetextcalendar": [150, 473, 483], "localetim": 483, "localhost": [84, 102, 107, 110, 200, 242, 245, 247, 268, 269, 283, 305, 313, 329, 335, 338, 359, 395, 419, 420, 451, 483], "localitynam": 341, "localn": [386, 483], "localnam": [410, 415, 416, 483], "localobject": 63, "localsplus": 473, "localtim": [87, 101, 183, 203, 209, 248, 267, 366, 463, 464, 474, 476, 483], "localtime_r": 483, "localtimezon": 183, "locat": [5, 7, 33, 34, 58, 64, 68, 72, 77, 84, 85, 92, 93, 94, 98, 101, 102, 106, 110, 112, 141, 147, 158, 163, 167, 176, 177, 183, 191, 193, 225, 243, 247, 250, 251, 252, 253, 266, 268, 269, 273, 276, 283, 293, 297, 299, 302, 311, 312, 313, 314, 319, 320, 324, 332, 340, 341, 353, 354, 355, 362, 366, 375, 384, 386, 388, 394, 395, 399, 400, 410, 413, 414, 415, 422, 425, 426, 427, 428, 431, 432, 436, 453, 455, 461, 462, 464, 465, 466, 467, 468, 469, 472, 474, 475, 477, 479, 481, 483], "lock": [5, 31, 32, 51, 63, 68, 73, 76, 84, 87, 96, 100, 102, 115, 124, 142, 164, 166, 167, 169, 176, 212, 215, 226, 241, 258, 267, 269, 270, 271, 282, 283, 293, 305, 316, 322, 324, 330, 333, 338, 340, 342, 352, 362, 369, 386, 402, 428, 452, 462, 464, 466, 467, 468, 469, 470, 473, 474, 475, 478, 480, 481, 482, 483, 484], "lock_": 215, "lock_ex": 215, "lock_held": 474, "lock_nb": 215, "lock_sh": 215, "lock_test": 96, "lock_un": 215, "lockablefil": 464, "lockbox": 475, "lockdata": 215, "lockf": [142, 215, 271, 293, 464, 468, 476, 483], "lockstep": 462, "locktyp": 115, "loewi": 288, "log": [34, 59, 68, 93, 95, 97, 109, 118, 125, 126, 139, 147, 151, 152, 154, 164, 166, 169, 188, 193, 214, 223, 230, 236, 245, 254, 258, 275, 288, 293, 305, 327, 332, 335, 340, 341, 344, 348, 352, 356, 358, 362, 386, 388, 400, 420, 428, 445, 451, 461, 462, 463, 464, 466, 467, 468, 471, 472, 482, 483, 484], "log01": 268, "log02": 268, "log03": 268, "log04": 268, "log05": 268, "log06": 268, "log07": 268, "log1": 475, "log10": [154, 186, 275, 468], "log1p": [275, 468, 483], "log2": [275, 475, 476], "log_": 269, "log_alert": [269, 356], "log_auth": [269, 356], "log_authpriv": [269, 356], "log_button": 102, "log_con": 356, "log_crit": [269, 356], "log_cron": [269, 356], "log_daemon": [269, 356], "log_date_time_str": 245, "log_debug": [269, 356], "log_emerg": [269, 356], "log_err": [269, 356], "log_error": 245, "log_except": 407, "log_filenam": 102, "log_ftp": 269, "log_if_error": 102, "log_info": [269, 356], "log_kern": [269, 356], "log_level": 102, "log_listen": 102, "log_local0": [269, 356], "log_local1": 269, "log_local2": 269, "log_local3": 269, "log_local4": 269, "log_local5": 269, "log_local6": 269, "log_local7": [269, 356], "log_lpr": [269, 356], "log_mail": [269, 356], "log_mask": 356, "log_messag": [245, 483], "log_ndelay": 356, "log_new": [269, 356], "log_notic": [269, 356], "log_nowait": 356, "log_odelay": 356, "log_perror": 356, "log_pid": 356, "log_prefix": 472, "log_request": 245, "log_status": 386, "log_syslog": [269, 356], "log_to_stderr": [283, 483], "log_upto": 356, "log_us": [268, 269, 356], "log_uucp": [269, 356], "log_warn": [269, 356], "loganberri": 442, "logarithm": [68, 186, 290, 295, 465, 468, 471, 475, 476], "logasynciotask": 101, "logb": 186, "logconfig": 268, "logctx": 102, "logdir": [151, 152], "logfil": [102, 151], "loggedaccess": 93, "loggedageaccess": 93, "loggedvar": 386, "logger": [68, 118, 125, 169, 268, 269, 283, 332, 356, 386, 388, 465, 469, 471, 475, 476, 477, 478, 480, 481, 482, 483], "logger1": 102, "logger2": 102, "logger_log01": 268, "logger_nam": 102, "logger_pars": 268, "logger_root": [101, 268], "logger_simpleexampl": 101, "logger_thread": 102, "loggeradapt": [68, 118, 469, 483], "loggerwrit": 102, "logging_rotatingfile_exampl": 102, "loggingcontext": 102, "logic": [7, 68, 84, 85, 95, 100, 102, 114, 139, 161, 169, 177, 181, 191, 193, 207, 221, 232, 256, 267, 269, 270, 271, 281, 290, 293, 296, 302, 319, 344, 345, 356, 362, 369, 373, 377, 386, 388, 427, 436, 462, 465, 466, 468, 469, 474, 476, 480, 481, 483], "logical_and": 186, "logical_invert": 186, "logical_or": 186, "logical_xor": 186, "login": [102, 173, 223, 248, 286, 288, 293, 335, 339, 359, 395, 475, 483], "login_cram_md5": 248, "login_tti": [293, 483], "loglevel": 101, "logmultiprocess": 101, "lognam": [102, 229, 293], "lognormvari": 318, "logo": [240, 384, 426], "logopt": [142, 356], "logout": [248, 478, 481, 483], "logprocess": 101, "logrecord": [68, 101, 118, 269, 388, 465, 477, 483], "logrecordsocketreceiv": 102, "logrecordstreamhandl": 102, "logrequest": 420, "logrot": 269, "logtest7": 102, "logthread": 101, "logtyp": 269, "lollipop": 479, "lombardo": 483, "lone": [308, 335, 430, 483], "long": [4, 5, 6, 9, 18, 22, 23, 31, 33, 34, 35, 39, 41, 45, 58, 59, 60, 61, 63, 64, 66, 68, 73, 75, 84, 85, 95, 98, 100, 101, 102, 106, 107, 110, 112, 120, 121, 139, 146, 167, 169, 176, 177, 190, 193, 202, 208, 212, 215, 223, 225, 226, 228, 242, 245, 247, 248, 258, 259, 261, 267, 268, 283, 292, 293, 299, 303, 305, 306, 307, 308, 319, 321, 328, 330, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 358, 362, 364, 365, 366, 369, 375, 376, 381, 395, 400, 405, 410, 411, 425, 427, 428, 430, 435, 455, 461, 462, 463, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "long_add": 483, "long_binget": 483, "long_descript": 258, "long_info": 469, "long_invert": 483, "long_max": [5, 18, 39, 483], "long_min": 39, "long_rshift": 483, "long_running_task": 139, "long_timeout": [362, 483], "longbyt": 435, "longbyteschar": 435, "longbytesitem": 435, "longer": [5, 7, 22, 23, 31, 34, 39, 45, 58, 59, 61, 63, 64, 67, 68, 71, 73, 85, 92, 94, 95, 100, 101, 105, 110, 117, 120, 126, 141, 158, 167, 176, 177, 190, 191, 199, 201, 208, 225, 226, 235, 242, 245, 248, 250, 251, 255, 259, 261, 265, 268, 269, 271, 283, 284, 292, 293, 307, 309, 311, 314, 319, 325, 328, 332, 337, 340, 341, 344, 347, 348, 352, 353, 358, 362, 364, 365, 366, 376, 381, 382, 383, 384, 386, 388, 399, 400, 410, 411, 412, 413, 414, 422, 428, 430, 432, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 478, 479, 480, 481, 482, 483], "longest": [190, 259, 261, 435, 464, 467, 478], "longest_match_length": 320, "longhand": 259, "longintrepr": [473, 483], "longitud": [85, 345], "longlink": 358, "longlist": 297, "longmessag": [110, 245, 388, 469, 483], "longnam": [177, 358, 483], "longobject": 483, "longopt": 228, "longpathsen": 461, "longstand": [293, 474, 476, 483], "longstr": 435, "longstringchar": 435, "longstringitem": 435, "longval": 462, "look": [18, 28, 33, 42, 45, 49, 51, 63, 64, 72, 73, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 101, 102, 103, 105, 106, 109, 110, 112, 120, 139, 141, 151, 158, 167, 169, 176, 177, 180, 181, 183, 186, 189, 190, 191, 193, 196, 197, 199, 203, 205, 213, 225, 226, 230, 234, 243, 245, 247, 250, 251, 259, 265, 267, 268, 269, 271, 292, 293, 295, 302, 308, 313, 319, 324, 332, 338, 340, 344, 345, 348, 352, 354, 355, 362, 369, 376, 378, 381, 382, 385, 386, 387, 388, 389, 390, 395, 410, 413, 423, 425, 427, 428, 429, 430, 432, 435, 436, 443, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 476, 477, 479, 481, 483], "lookahead": [68, 319, 427, 431, 466], "lookalik": 465, "lookbehind": [319, 478, 483], "lookdict_str": 96, "lookup": [16, 17, 22, 31, 61, 63, 68, 77, 85, 94, 147, 158, 160, 181, 191, 195, 203, 213, 225, 226, 230, 245, 255, 259, 269, 287, 293, 344, 345, 351, 352, 369, 376, 381, 387, 425, 427, 432, 462, 464, 466, 467, 468, 474, 475, 476, 477, 479, 481, 482, 483], "lookup_error": [158, 465], "lookup_lin": 381, "lookup_nam": 386, "lookuperror": [14, 23, 64, 158, 170, 213, 344, 450, 477], "loongarch": [474, 483], "loongarch64": [474, 483], "loop": [45, 64, 66, 68, 73, 92, 95, 96, 101, 102, 106, 123, 124, 125, 126, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 157, 159, 176, 177, 184, 186, 189, 191, 196, 205, 218, 225, 232, 257, 261, 269, 283, 297, 308, 309, 319, 332, 333, 337, 338, 341, 344, 348, 352, 362, 365, 367, 369, 381, 384, 388, 412, 413, 420, 427, 428, 429, 430, 431, 435, 436, 440, 441, 456, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "loop_detect": 241, "loop_factori": [135, 474, 483], "loop_overhead": [481, 482], "loopback": [247, 259, 362, 483], "loopback_timeout": [362, 483], "loos": [243, 365, 483], "lope": 477, "loper": 466, "lord": 106, "lordmauv": 483, "lordthorsen": [479, 483], "lorem": 149, "lorentsen": [472, 480, 483], "lorenz": [468, 483], "lorenzo": [475, 477], "los_angel": [425, 482], "lose": [42, 94, 106, 167, 183, 186, 213, 243, 269, 271, 318, 319, 340, 348, 462, 469, 475, 483], "loss": [141, 186, 225, 243, 258, 271, 275, 366, 395, 421, 426, 430, 464, 466, 468, 475, 479, 480, 481, 483], "lossless": [68, 186, 190, 378, 428, 474, 475, 483], "lost": [73, 94, 101, 102, 109, 133, 177, 183, 186, 201, 226, 247, 262, 267, 269, 283, 308, 332, 333, 335, 338, 426, 427, 444, 462, 464, 475, 476, 477, 482, 483], "lot": [64, 68, 73, 75, 77, 79, 84, 85, 96, 101, 106, 109, 110, 151, 169, 170, 176, 184, 193, 200, 234, 245, 259, 283, 292, 304, 308, 330, 338, 348, 374, 382, 399, 462, 463, 464, 465, 466, 468, 469, 470, 477, 482, 483], "loud": 470, "louie": [479, 480, 483], "louisom": 483, "louko": 467, "loup": 426, "love": [73, 102, 147, 175, 244, 441, 471, 477], "lovett": 469, "low": [13, 16, 33, 38, 60, 63, 64, 68, 75, 84, 96, 101, 106, 109, 115, 129, 130, 133, 135, 136, 137, 139, 146, 167, 169, 177, 178, 191, 213, 225, 267, 281, 293, 308, 318, 319, 328, 329, 330, 333, 335, 337, 340, 341, 343, 344, 352, 356, 369, 386, 400, 413, 415, 428, 456, 464, 465, 467, 468, 469, 476, 478, 479, 481, 483], "lower": [33, 64, 68, 72, 84, 85, 87, 92, 96, 102, 103, 106, 122, 133, 139, 146, 155, 158, 160, 163, 167, 177, 178, 180, 186, 195, 196, 200, 202, 203, 205, 211, 225, 226, 236, 245, 267, 271, 283, 288, 293, 308, 319, 322, 325, 337, 340, 344, 352, 365, 366, 375, 377, 384, 386, 394, 395, 400, 428, 430, 436, 463, 465, 466, 467, 468, 469, 471, 475, 477, 482, 483], "lower_bound": [344, 430], "lower_cas": 483, "lowercas": [64, 106, 109, 155, 158, 167, 186, 196, 205, 235, 248, 259, 305, 319, 344, 352, 364, 435, 470, 483], "lowercase_with_underscor": 441, "lowercaseddict": 475, "lowerright": 176, "lowest": [34, 42, 101, 122, 186, 191, 221, 236, 278, 341, 344, 348, 365, 430, 462, 467, 479], "lowin": 483, "lownd": 468, "loys": 483, "lp": [102, 270, 473], "lp1": 471, "lp64_wp": 467, "lp_c_long": 176, "lpadesc": 176, "lpapplicationnam": 348, "lpar": [377, 378, 483], "lpattributelist": [348, 480], "lpcaption": 176, "lpcommandlin": 348, "lpcstr": 176, "lpcwstr": 176, "lpmodulenam": 176, "lpr": 269, "lprect": 176, "lprefix": 144, "lproxi": 283, "lpt1": 483, "lptdesc": 176, "lptext": 176, "lpthread": 72, "lpython3": [72, 481, 483], "lri": 177, "lrt": 456, "lru": [160, 226, 483], "lru_cach": [85, 160, 220, 226, 261, 475, 476, 478, 481, 483], "lrx": 177, "ls": [73, 89, 102, 137, 177, 331, 348, 358, 359, 478], "lsampl": 141, "lseek": [293, 467, 476], "lshift": [122, 291, 431], "lsprof": 308, "lsqb": 377, "lst": [161, 297], "lstat": [293, 294, 296, 342, 362, 474, 476, 481, 483], "lstrip": [344, 465, 483], "lsub": 248, "lt": [95, 122, 291, 344, 384, 417, 431, 435, 463, 475], "lt_bitwise_or": 431, "ltcl8": 473, "ltd": [80, 341, 426], "lte": [122, 431], "lte_bitwise_or": 431, "ltk8": 473, "ltkstub8": 473, "lto": [35, 456, 473, 483], "ltrace": 483, "lts": 480, "lu": [9, 344, 387, 435, 462, 477, 479, 480, 483], "lua": 452, "luca": [93, 235, 477, 478, 483], "lucasfilm": 80, "lucent": 426, "luciano": 483, "luck": 410, "lucki": [92, 176], "luckili": [73, 388], "luctus": 149, "ludov": 483, "lue": 475, "luethi": 483, "lum": 482, "lumberjack": [167, 307, 381], "lumberstack": 381, "lundh": [0, 85, 95, 426, 462, 463, 464, 466, 467, 469, 475], "lutil": 72, "lutz": 369, "lv": 471, "lvalu": [9, 292, 344], "lvl": 102, "lvlname": 102, "lwn": 476, "lwp": 96, "lwpcookiejar": [243, 483], "lx11": 73, "ly": 319, "lyapun": 477, "lynn": 467, "lynx": [243, 403, 466], "lysandro": [472, 474, 482, 483], "lzc": 270, "lzf": 270, "lzl": 483, "lzma": [68, 119, 149, 254, 332, 358, 362, 409, 422, 451, 472, 477, 483], "lzmacompressor": [270, 483], "lzmadecompressor": [270, 478, 483], "lzmaerror": 270, "lzmafil": [270, 477, 483], "m1": [93, 261, 347, 473], "m10": 366, "m2": [261, 464, 469, 473, 476], "m3": [94, 366, 473], "m4": [366, 456, 483], "m68k": 483, "m_": 78, "m_base": [45, 76], "m_clear": [45, 100, 482, 483], "m_doc": [45, 76], "m_expr": 430, "m_free": [45, 100, 482, 483], "m_method": [45, 483], "m_name": [35, 45, 76], "m_reload": 45, "m_size": [45, 76, 100, 482, 483], "m_slot": 45, "m_state": 483, "m_travers": [45, 100, 482, 483], "ma": [304, 472, 473, 483], "ma_fil": 96, "ma_lookup": 96, "ma_mask": 96, "ma_smallt": 96, "ma_tabl": 96, "ma_us": 96, "ma_version_tag": [474, 483], "maart": 435, "mac": [68, 225, 235, 274, 303, 332, 341, 376, 398, 456, 458, 470, 472, 474, 475, 477, 479, 480, 483], "mac1": 235, "mac2": 235, "mac_centeuro": [158, 483], "mac_cyril": 158, "mac_greek": 158, "mac_iceland": 158, "mac_key": 235, "mac_latin2": [158, 483], "mac_roman": 158, "mac_turkish": 158, "mac_ver": [303, 483], "macaddr": 483, "maccentraleurop": 158, "maccyril": 158, "macedonian": 158, "macerror": 468, "macf": 468, "macgreek": 158, "machalow": 474, "machdep": 483, "machin": [33, 51, 64, 73, 84, 87, 96, 101, 102, 133, 158, 177, 178, 183, 200, 212, 230, 243, 255, 260, 268, 269, 270, 272, 283, 284, 288, 293, 296, 303, 308, 313, 333, 335, 337, 340, 341, 347, 365, 420, 421, 428, 434, 456, 461, 462, 463, 464, 467, 468, 469, 471, 474, 475, 476, 480, 481, 483], "machineri": [23, 45, 63, 68, 73, 87, 93, 102, 158, 209, 225, 251, 255, 268, 280, 302, 341, 352, 385, 406, 423, 428, 432, 455, 461, 463, 464, 466, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "macholib": 483, "maciceland": 158, "maciej": [478, 483], "macintosh": [87, 158, 435, 462, 465], "macintyr": [465, 467], "maclatin2": 158, "macmillan": 462, "maco": [33, 34, 57, 68, 80, 81, 83, 84, 85, 98, 109, 111, 115, 118, 133, 176, 184, 215, 257, 269, 278, 283, 293, 304, 308, 309, 320, 328, 330, 332, 333, 334, 337, 340, 341, 342, 352, 355, 362, 365, 366, 368, 369, 373, 376, 383, 395, 403, 426, 439, 453, 455, 458, 459, 462, 463, 464, 465, 467, 468, 469, 472, 473, 474, 479, 480], "macostool": 468, "macosx": [355, 403, 459, 473, 474, 475, 483], "macosx_deployment_target": [293, 483], "macosxosascript": [403, 483], "macpath": [68, 481, 483], "macports_dir": 167, "macpython": [459, 464], "macresourc": 468, "macro": [4, 5, 6, 17, 23, 28, 33, 34, 35, 42, 43, 44, 45, 50, 55, 56, 59, 60, 63, 64, 68, 73, 76, 176, 286, 352, 362, 456, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "macrom": 459, "macroman": 158, "macturkish": 158, "macurl2path": 483, "macvim": 459, "made": [11, 31, 33, 43, 58, 59, 63, 66, 72, 85, 94, 101, 102, 103, 105, 106, 108, 112, 120, 133, 139, 158, 160, 167, 169, 176, 177, 183, 186, 191, 193, 196, 199, 200, 205, 208, 213, 230, 242, 247, 250, 255, 258, 267, 268, 269, 278, 281, 283, 293, 297, 299, 307, 308, 314, 320, 321, 322, 324, 328, 331, 332, 333, 334, 335, 337, 344, 348, 353, 358, 362, 365, 369, 382, 394, 400, 410, 413, 419, 420, 421, 425, 426, 427, 428, 436, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "madison": 483, "madler": 426, "madv_": 68, "madv_autosync": 278, "madv_cor": 278, "madv_dodump": 278, "madv_dofork": 278, "madv_dontdump": 278, "madv_dontfork": 278, "madv_dontne": 278, "madv_fre": 278, "madv_free_reus": 278, "madv_hugepag": 278, "madv_hwpoison": 278, "madv_merg": 278, "madv_nocor": 278, "madv_nohugepag": 278, "madv_norm": 278, "madv_nosync": 278, "madv_protect": 278, "madv_random": 278, "madv_remov": 278, "madv_sequenti": 278, "madv_soft_offlin": 278, "madv_unmerg": 278, "madv_willne": 278, "madvis": [278, 481, 483], "maecena": 149, "magenta": [92, 94, 177, 452], "maggi": [472, 481], "magic": [31, 68, 85, 87, 115, 167, 176, 187, 193, 200, 230, 250, 308, 341, 349, 365, 366, 386, 422, 425, 426, 462, 463, 465, 477, 478, 479, 480, 483], "magic_arithmet": 473, "magic_html_pars": 200, "magic_numb": [250, 474, 477], "magickmock": 483, "magicmock": [68, 187, 478, 483], "magicproxi": 483, "magicstack": [426, 483], "magiera": 474, "magna": 149, "magnifi": 466, "magnitud": [183, 186, 262, 275, 344, 345, 462, 476], "magnus": [464, 465], "mahler": 395, "mahn": 475, "mahon": 483, "maier": 483, "mail": [78, 80, 84, 95, 100, 102, 103, 105, 106, 194, 195, 196, 200, 202, 205, 217, 248, 269, 271, 272, 288, 293, 335, 341, 356, 388, 426, 452, 454, 462, 463, 464, 465, 466, 467, 468, 475, 478, 483], "mail_admin": 102, "mail_opt": [335, 478, 483], "mailbox": [68, 85, 194, 201, 248, 254, 285, 305, 467, 469, 479, 482, 483], "mailcap": [68, 254, 350, 472, 473, 474, 483], "maildir": [271, 467, 469, 483], "maildirmailbox": 85, "maildirmessag": [68, 285], "mailer": 209, "mailhost": [102, 268, 269], "mailman": [80, 464, 466, 473, 482, 483], "mailmanproxi": [473, 482, 483], "mailport": 102, "mailserv": 305, "mailto": [394, 426], "main": [23, 33, 34, 42, 45, 59, 63, 66, 68, 72, 73, 75, 76, 84, 85, 92, 93, 96, 100, 101, 102, 114, 115, 120, 123, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 151, 155, 157, 166, 167, 169, 170, 177, 185, 188, 190, 193, 194, 196, 199, 200, 201, 204, 205, 206, 208, 226, 228, 230, 240, 247, 250, 251, 252, 255, 267, 268, 271, 283, 288, 292, 293, 299, 309, 322, 324, 333, 334, 338, 340, 344, 347, 352, 354, 355, 356, 358, 362, 365, 369, 375, 376, 382, 384, 386, 388, 389, 390, 395, 399, 411, 413, 415, 419, 420, 421, 428, 429, 432, 450, 451, 452, 455, 458, 461, 464, 465, 467, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "main_in_temp_cwd": 382, "main_log": 84, "main_modul": 483, "main_pag": 96, "main_pid": 483, "main_thread": [365, 477], "maincc": 483, "mainfn": 421, "mainloop": [81, 247, 369, 376, 384, 483], "mainmenu": 483, "mainprocess": 283, "maint": 460, "maintain": [22, 33, 73, 84, 92, 94, 100, 102, 103, 108, 120, 147, 158, 167, 169, 176, 181, 186, 196, 207, 208, 213, 225, 248, 250, 251, 255, 266, 292, 307, 308, 325, 338, 347, 352, 355, 366, 375, 388, 400, 403, 412, 425, 430, 432, 434, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 476, 477, 478, 480, 481, 482, 483], "maintainer_email": [307, 483], "mainten": [68, 435, 461, 474, 475, 476, 477, 480, 481, 482, 483, 484], "mainthread": [102, 483], "maintyp": [196, 197, 200, 201, 203, 204, 205], "majek": 426, "majewski": 463, "majkowski": 426, "major": [33, 68, 77, 93, 94, 109, 110, 122, 167, 177, 183, 187, 194, 203, 206, 208, 230, 235, 243, 267, 292, 293, 303, 305, 313, 344, 352, 355, 358, 394, 461, 462, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 481, 482, 483], "majorvers": 354, "make": [5, 10, 11, 23, 33, 39, 45, 51, 59, 63, 64, 68, 72, 73, 75, 76, 84, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 108, 109, 110, 112, 113, 120, 133, 139, 141, 149, 151, 155, 157, 158, 160, 161, 163, 167, 169, 170, 176, 177, 179, 181, 183, 186, 190, 191, 193, 196, 197, 200, 205, 206, 209, 212, 213, 215, 218, 221, 222, 225, 226, 230, 234, 235, 242, 245, 247, 250, 252, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 275, 279, 281, 283, 288, 292, 293, 295, 296, 297, 299, 302, 308, 312, 314, 322, 328, 329, 330, 331, 333, 334, 337, 338, 340, 341, 343, 344, 347, 352, 353, 355, 358, 362, 363, 364, 365, 369, 376, 378, 380, 381, 385, 386, 388, 394, 395, 398, 400, 403, 407, 411, 412, 413, 416, 421, 422, 426, 427, 428, 430, 432, 434, 435, 436, 456, 460, 461, 463, 464, 465, 466, 467, 468, 470, 471, 475, 476, 477, 480, 481, 482, 483, 484], "make_": 196, "make_altern": 205, "make_an_item_avail": 365, "make_another_request": 139, "make_arch": [142, 332, 469, 474, 475, 478, 481, 483], "make_bad_fd": 362, "make_box_of_str": 386, "make_cel": [191, 473, 483], "make_closur": [479, 483], "make_connect": [365, 419], "make_cooki": [243, 483], "make_dataclass": [181, 483], "make_encod": 483, "make_fil": [190, 478, 483], "make_funct": [191, 472, 479, 483], "make_head": [202, 476], "make_incrementor": 441, "make_legacy_pyc": [362, 483], "make_mix": 205, "make_msgid": [200, 209, 483], "make_new_us": 386, "make_opt": 292, "make_pars": [412, 414, 416, 462, 483], "make_pkg": 362, "make_rel": 205, "make_request": 139, "make_request_with_timeout": 139, "make_script": 362, "make_serv": [407, 467], "make_ssl_data": 483, "make_t": 190, "make_zip": 483, "make_zip_pkg": 362, "make_zip_script": 362, "makedev": [293, 465, 483], "makedict": 279, "makedir": [84, 293, 296, 474, 478, 480, 483], "makeel": 413, "makefil": [33, 68, 72, 73, 79, 231, 235, 258, 296, 337, 341, 355, 428, 458, 462, 463, 468, 469, 474, 476, 477, 478, 479, 483], "makelocalealia": 483, "makelogrecord": [102, 267, 269], "makemak": 343, "makepickl": [102, 269], "makerecord": [102, 267], "makesetup": [456, 473, 483], "makesocket": 269, "makesometh": 388, "makesomethingdb": 388, "makesuit": [473, 474, 483], "maketran": [160, 344, 471, 475, 478, 483], "makeunicodedata": 483, "makoto": [426, 483], "malaysia": 413, "malcolm": [98, 319, 469, 475, 479, 483], "male": 343, "maletski": 483, "malform": [88, 158, 186, 199, 225, 242, 258, 271, 466, 468, 475, 483], "malformedheaderdefect": 199, "malfunct": 426, "malici": [33, 109, 268, 299, 314, 348, 352, 358, 411, 412, 413, 414, 419, 420, 455, 468, 483], "mallard": 477, "malley": [426, 465], "malloc": [5, 7, 34, 42, 73, 78, 213, 282, 293, 424, 455, 462, 463, 465, 467, 477, 478, 479, 483], "malloc_debug": [42, 455], "malloc_stat": 34, "malm": 101, "malt": 477, "maltes": 158, "man": [92, 173, 271, 293, 313, 322, 328, 333, 337, 342, 366, 369, 375, 383, 469, 483], "man1": 483, "man7": 483, "manag": [5, 17, 28, 33, 42, 61, 63, 68, 74, 76, 87, 96, 101, 110, 120, 124, 128, 137, 139, 144, 151, 158, 164, 176, 184, 186, 191, 194, 203, 218, 225, 243, 244, 245, 247, 250, 252, 254, 267, 271, 278, 284, 285, 293, 295, 298, 299, 308, 315, 328, 329, 330, 337, 338, 341, 348, 352, 355, 358, 359, 360, 362, 365, 368, 374, 376, 384, 388, 390, 395, 403, 419, 421, 422, 426, 427, 434, 459, 460, 461, 462, 465, 466, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "manage_cloud": 475, "managed_resourc": 169, "manager_own": 483, "manda": 318, "mandat": [196, 205, 248, 262, 319, 366, 479], "mandatori": [58, 76, 84, 225, 242, 248, 250, 268, 293, 342, 465, 476, 480, 482, 483], "mandatoryreleas": [113, 483], "mandeep": [480, 483], "mandelbrot": 85, "manfr": 446, "mangl": [85, 196, 225, 321, 430, 435, 436, 440, 477, 483], "mangle_from": 483, "mangle_from_": [196, 201, 208, 478], "manhattan_dist": 473, "manheaderlen": 201, "mani": [7, 13, 33, 34, 63, 64, 72, 73, 75, 76, 79, 84, 92, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 128, 133, 137, 139, 158, 163, 167, 169, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 203, 208, 212, 225, 230, 235, 242, 243, 244, 247, 250, 259, 261, 265, 267, 275, 278, 283, 288, 292, 293, 295, 298, 299, 305, 307, 308, 314, 319, 325, 328, 330, 332, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 375, 380, 381, 384, 385, 386, 395, 403, 405, 406, 410, 415, 427, 428, 432, 434, 436, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "manifest": [225, 362, 469, 483], "manipul": [7, 13, 33, 34, 42, 45, 55, 68, 73, 76, 95, 99, 102, 144, 169, 176, 177, 183, 186, 194, 205, 207, 259, 269, 271, 283, 293, 308, 324, 331, 332, 334, 337, 342, 344, 352, 369, 375, 376, 394, 410, 413, 420, 425, 432, 455, 462, 465, 468, 476, 477, 479, 481, 482, 483], "manner": [56, 73, 85, 92, 101, 102, 167, 245, 268, 270, 292, 307, 311, 313, 319, 321, 348, 386, 388, 400, 415, 427, 428, 432, 456, 465, 467, 468, 483], "manoli": 472, "manpag": [176, 293, 337, 479, 483], "mant_dig": [352, 468], "mantissa": [318, 466, 468], "manual": [33, 45, 61, 68, 72, 73, 77, 79, 84, 85, 92, 93, 95, 100, 102, 109, 112, 120, 132, 133, 139, 164, 176, 177, 185, 193, 197, 206, 215, 225, 267, 271, 283, 292, 293, 302, 304, 313, 320, 328, 337, 340, 341, 344, 356, 358, 361, 365, 366, 368, 375, 386, 410, 413, 421, 424, 428, 434, 451, 456, 460, 461, 462, 463, 464, 465, 466, 468, 469, 470, 474, 476, 477, 478, 480, 481, 483], "manual_upd": 102, "manuel": [480, 481, 483], "manufactur": 281, "map": [16, 22, 32, 33, 34, 42, 49, 50, 59, 65, 66, 68, 75, 78, 79, 84, 85, 87, 93, 94, 95, 102, 103, 104, 109, 110, 112, 122, 155, 158, 160, 161, 166, 169, 170, 175, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 212, 213, 216, 217, 225, 226, 230, 236, 242, 245, 247, 254, 255, 259, 261, 267, 268, 269, 270, 271, 272, 273, 276, 278, 279, 280, 281, 283, 287, 288, 291, 292, 293, 295, 298, 299, 308, 312, 314, 318, 319, 321, 322, 329, 337, 340, 341, 343, 345, 346, 347, 348, 352, 362, 365, 366, 367, 376, 377, 384, 385, 386, 387, 394, 395, 402, 411, 413, 415, 416, 430, 431, 432, 436, 440, 441, 442, 444, 450, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 482, 483], "map01": 143, "map_": 68, "map_add": [191, 481], "map_aligned_sup": [278, 483], "map_anon": 278, "map_anonym": 278, "map_async": [283, 468, 476], "map_conc": [278, 483], "map_denywrit": 278, "map_execut": 278, "map_popul": [278, 483], "map_priv": 278, "map_shar": 278, "map_stack": [278, 483], "map_table_b2": 346, "map_table_b3": 346, "map_to_typ": 203, "maplogrecord": 269, "mapnam": 287, "mapping_pattern": [427, 431], "mappingproxi": 344, "mappingproxytyp": [22, 181, 225, 344, 385, 427, 472, 474, 476, 483], "mappingsubclass": 440, "mappingview": [161, 344, 386, 483], "mapprior": 269, "mapresult": 483, "mar": [93, 94, 95, 183, 343, 434, 441, 464, 468], "marangozov": [462, 463, 465], "marat": [480, 483], "marc": [109, 230, 340, 462, 463, 464, 465, 467, 476, 483], "marcel": [482, 483], "march": [150, 183, 344, 366, 384, 451, 462, 466, 477], "marcin": 475, "marco": 483, "marek": 426, "marg": 481, "mari": [93, 337, 441], "marian": [479, 483], "mariatta": [479, 483], "mario": [472, 480, 483], "marius": [109, 462], "mariusz": 483, "mark": [22, 23, 28, 34, 58, 61, 64, 75, 84, 93, 96, 98, 102, 106, 109, 112, 117, 120, 130, 133, 139, 144, 158, 166, 167, 177, 181, 190, 191, 193, 205, 230, 236, 240, 247, 255, 262, 269, 271, 297, 300, 305, 314, 328, 337, 340, 344, 348, 359, 362, 369, 380, 386, 388, 410, 415, 426, 428, 430, 431, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "markcoroutinefunct": [255, 474, 483], "markdown": [258, 472], "marker": [47, 98, 109, 117, 149, 158, 170, 191, 193, 225, 255, 258, 270, 297, 299, 340, 341, 377, 400, 456, 476, 479, 480, 483], "market": 467, "markovitch": 462, "markowitz": 483, "markthisstringfortransl": 230, "markup": [68, 217, 254, 314, 410, 419, 468, 475, 476, 483], "markupbas": 470, "markus": [478, 483], "marshal": [32, 65, 68, 85, 142, 158, 254, 262, 269, 298, 379, 419, 465, 466, 469, 478, 483], "mart": 483, "marta": [474, 483], "martelli": [465, 468], "martijn": 483, "martin": [109, 230, 288, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 481, 483], "maru": 469, "maruch": 462, "masayuki": [480, 483], "mashal": 483, "mask": [63, 68, 176, 177, 256, 293, 322, 329, 332, 333, 337, 342, 353, 356, 369, 376, 405, 428, 466, 468, 475, 476, 482, 483], "maskpri": [142, 356], "masquerad": [247, 483], "mass": [84, 94, 183, 462], "massiv": [299, 466, 467, 478, 483], "mast": [482, 483], "master": [106, 109, 189, 193, 292, 293, 295, 299, 309, 319, 369, 370, 373, 374, 376, 384, 468, 483], "master_doc": 483, "master_open": [474, 483], "master_read": 309, "mat": [426, 469, 482, 483], "match": [5, 11, 22, 23, 33, 42, 45, 61, 63, 64, 68, 73, 78, 85, 92, 94, 95, 96, 101, 102, 109, 110, 118, 136, 139, 141, 144, 151, 155, 163, 167, 177, 183, 186, 190, 191, 193, 196, 197, 203, 204, 205, 208, 213, 216, 220, 225, 226, 228, 242, 243, 246, 247, 248, 251, 255, 261, 264, 267, 268, 270, 272, 283, 287, 288, 293, 296, 297, 302, 308, 311, 314, 318, 320, 323, 331, 332, 333, 337, 340, 341, 344, 345, 347, 348, 352, 358, 359, 362, 363, 366, 369, 375, 376, 378, 381, 382, 383, 385, 386, 388, 394, 395, 400, 403, 410, 411, 413, 415, 420, 425, 429, 430, 431, 433, 435, 443, 445, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "match_arg": [181, 386, 483], "match_cas": 122, "match_case_ti": 431, "match_class": [191, 473], "match_equ": 390, "match_foo": 390, "match_hostnam": [341, 472, 474, 475, 477, 478, 480, 483], "match_key": [191, 473], "match_map": 191, "match_sequ": 191, "match_stmt": [427, 431], "match_test": 382, "match_valu": 362, "match_wrong": 390, "matcha": [122, 483], "matchclass": [122, 483], "matcher": [362, 390], "matchfil": 483, "matchmap": [122, 483], "matchobj": 319, "matchor": [122, 483], "matchsequ": [122, 483], "matchsingleton": [122, 483], "matchstar": [122, 483], "matchvalu": [122, 483], "matej": [478, 483], "materi": [77, 95, 106, 177, 190, 234, 337, 341, 375, 426, 466, 469, 483], "math": [68, 87, 95, 154, 166, 186, 193, 212, 221, 225, 254, 261, 283, 289, 290, 318, 343, 344, 347, 352, 384, 426, 428, 430, 442, 444, 446, 451, 456, 465, 466, 468, 469, 471, 483], "mathemat": [47, 95, 106, 183, 186, 261, 275, 290, 344, 428, 430, 466, 468, 478, 483], "mathematisch": [33, 69, 426], "mathewson": 464, "mathia": 477, "mathieu": 483, "mathmodul": 84, "mathsclass": 283, "mathworld": 261, "matlab": 343, "matmul": [261, 291, 478, 483], "matmult": [122, 431], "matplotlib": 483, "matric": [261, 288, 463], "matrix": [47, 68, 85, 225, 261, 384, 426, 430, 442, 463, 481, 483], "matsumoto": [318, 426], "matt": [469, 477, 478, 483], "matter": [85, 93, 94, 102, 109, 163, 193, 208, 247, 250, 253, 266, 292, 293, 338, 340, 344, 352, 361, 376, 386, 388, 400, 428, 431, 461, 462, 464, 466, 467, 468, 469, 477, 483], "matthew": [200, 473, 477, 483], "matthia": [85, 469, 472, 474, 476, 479, 480, 481, 483], "matthieu": 483, "mattia": [471, 475], "mattip": 483, "matusiak": 483, "matveev": [472, 474, 481, 483], "maupin": 468, "maureira": 474, "mauro": 483, "max": [5, 87, 95, 108, 120, 141, 154, 160, 183, 186, 225, 226, 236, 243, 244, 261, 275, 318, 340, 341, 343, 344, 352, 400, 427, 430, 440, 450, 467, 469, 474, 475, 477, 481, 483], "max_10_exp": 352, "max_count": [203, 208], "max_delay": 362, "max_denomin": 221, "max_depth": 413, "max_digest_s": 235, "max_digit": 362, "max_emax": [186, 476], "max_ev": 328, "max_exp": [87, 352], "max_group_depth": [381, 483], "max_group_width": [381, 483], "max_interpolation_depth": 167, "max_key_s": 235, "max_length": [149, 270, 424, 478, 483], "max_lin": [364, 477], "max_line_length": [196, 205, 208, 476, 483], "max_mag": 186, "max_memus": 362, "max_num_field": [394, 483], "max_path": [68, 458, 479, 483], "max_prec": [186, 476], "max_prefixlen": 259, "max_py_ssize_t": 362, "max_siz": [360, 386], "max_struct_s": 483, "max_tasks_per_child": [166, 483], "max_wbit": 424, "max_work": [102, 126, 166, 475, 483], "maxag": 160, "maxarray": 321, "maxbyt": [102, 268, 269, 469], "maxbytecount": 369, "maxchar": 64, "maxconnect": 365, "maxcount": 64, "maxdata": 483, "maxdepth": 413, "maxdequ": 321, "maxdict": 321, "maxdiff": [388, 475], "maxdigit": [186, 352], "maxev": 328, "maxfd": 337, "maxfrozenset": 321, "maxheaderlen": [196, 201, 205, 477], "maxim": [141, 190, 191, 196, 235, 247, 362, 440, 481, 483], "maximov": 483, "maximum": [7, 25, 59, 64, 85, 93, 95, 101, 102, 106, 115, 139, 141, 151, 158, 163, 167, 176, 177, 186, 190, 195, 202, 203, 208, 213, 235, 247, 261, 262, 269, 270, 275, 278, 281, 283, 288, 293, 299, 305, 307, 319, 320, 321, 322, 329, 337, 339, 340, 341, 343, 348, 352, 358, 364, 365, 376, 378, 382, 384, 388, 394, 395, 413, 435, 455, 462, 464, 465, 467, 468, 469, 475, 476, 478, 479, 480, 483], "maximum_support": 341, "maximum_vers": [341, 472, 480, 483], "maxint": [112, 470], "maxitem": 386, "maxk": 483, "maxlen": [151, 160, 261, 386, 468, 469], "maxlength": [195, 283], "maxlevel": [163, 307, 321], "maxlin": [479, 480, 483], "maxlinelen": 202, "maxlist": 321, "maxlong": 321, "maxmem": 235, "maxoth": 321, "maxpp": 141, "maxrequest": 160, "maxset": 321, "maxsiz": [85, 93, 112, 134, 160, 220, 225, 226, 283, 303, 316, 344, 352, 362, 369, 428, 450, 470, 475, 481, 483], "maxsplit": [64, 106, 319, 344], "maxstr": 321, "maxtasksperchild": [283, 469, 483], "maxtri": 395, "maxtupl": 321, "maxunicod": [352, 450, 476], "maxval": 384, "maxvalu": 93, "maxwel": 483, "maxyear": [183, 483], "may": [5, 7, 9, 10, 11, 13, 22, 23, 24, 27, 28, 31, 33, 34, 42, 43, 45, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 115, 117, 120, 122, 128, 132, 133, 138, 139, 141, 144, 146, 149, 150, 151, 155, 157, 158, 159, 161, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 213, 215, 216, 218, 221, 223, 225, 226, 228, 230, 231, 233, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 279, 281, 282, 283, 287, 288, 292, 293, 295, 297, 299, 301, 302, 305, 307, 311, 312, 313, 314, 319, 320, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 446, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "mayank": [478, 483], "mayb": [34, 73, 94, 95, 271, 400, 431, 434, 472], "maybe_dtrace_lin": 98, "maybe_sequence_pattern": [427, 431], "maybe_star_pattern": [427, 431], "mayfield": 483, "maystr": 477, "maze": 92, "mazin": 466, "mazur": 483, "mb": [469, 483], "mb_iconasterisk": 406, "mb_iconexclam": 406, "mb_iconhand": 406, "mb_iconquest": 406, "mb_ok": 406, "mbambo": 89, "mbcs": [16, 33, 34, 68, 145, 352, 455, 461, 464, 465, 475, 476, 479, 483], "mbox": [68, 196, 201, 285, 467, 483], "mboxmailbox": 85, "mboxmessag": [68, 205, 285], "mboxo": 271, "mbstowc": 34, "mbtn": 376, "mbuf": 322, "mc": [435, 483], "mca": 483, "mcafe": 86, "mcclure": 477, "mccormick": 483, "mccracken": 483, "mcculli": 483, "mcet": 483, "mcfluff": 319, "mcguir": [469, 471], "mcintyr": [467, 468], "mckellar": 478, "mckinnon": 483, "mclay": 464, "mclean": 483, "mcls": [93, 382], "mcmillan": [85, 107, 465], "mcnamara": [465, 467], "md": 258, "md2": 475, "md4": 475, "md5": [173, 235, 237, 248, 335, 340, 341, 398, 456, 467, 468, 469, 470, 474, 475, 477, 481, 482, 483], "md5sum": [340, 483], "mdc2": 475, "mdiff": 483, "mdt": 183, "me": [84, 103, 200, 226, 240, 288, 345, 362, 453, 461, 468, 473, 474], "me_hash": 96, "me_key": 96, "me_valu": 96, "meador": [469, 476, 483], "mean": [5, 7, 13, 22, 23, 27, 31, 33, 34, 42, 45, 59, 61, 63, 64, 66, 67, 73, 75, 76, 84, 93, 95, 96, 99, 100, 101, 102, 105, 106, 109, 110, 112, 115, 117, 120, 122, 133, 139, 141, 144, 151, 155, 158, 163, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 196, 202, 203, 205, 206, 207, 208, 209, 214, 215, 216, 218, 220, 225, 226, 228, 233, 234, 235, 242, 243, 244, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 276, 278, 281, 283, 288, 292, 293, 297, 299, 301, 307, 308, 311, 314, 318, 319, 321, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 361, 362, 365, 366, 369, 376, 381, 384, 385, 386, 388, 394, 395, 397, 400, 405, 410, 413, 419, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "meaning": [63, 106, 193, 235, 250, 255, 259, 268, 271, 283, 293, 314, 319, 337, 341, 352, 382, 385, 395, 428, 434, 436, 470, 475, 477, 478, 483], "meaningless": [33, 109, 463, 464, 477, 483], "meant": [49, 61, 101, 102, 133, 139, 141, 158, 213, 230, 250, 308, 337, 362, 369, 386, 395, 422, 431, 461, 467, 468, 469, 472, 475, 476, 477, 478, 480, 481, 483], "meantim": [33, 483], "meanwhil": 386, "measur": [68, 92, 93, 133, 139, 141, 186, 190, 222, 226, 299, 308, 322, 334, 338, 366, 369, 372, 382, 441, 462, 465, 466, 467, 468, 469, 474, 476, 477, 480, 481, 482, 483], "mechan": [7, 11, 28, 33, 45, 61, 63, 73, 75, 79, 84, 85, 92, 93, 94, 101, 102, 106, 108, 139, 169, 176, 181, 193, 197, 203, 226, 243, 244, 245, 246, 248, 251, 259, 260, 266, 267, 268, 269, 271, 272, 292, 297, 299, 302, 314, 319, 322, 324, 333, 335, 337, 338, 341, 344, 352, 358, 365, 369, 375, 376, 385, 388, 395, 400, 423, 426, 428, 432, 435, 436, 462, 463, 464, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 481, 482, 483], "media": [110, 153, 281, 293, 319, 426], "median": [93, 318, 343, 451, 477, 483], "median_group": [343, 483], "median_high": 343, "median_low": 343, "medium": [55, 94, 178, 186, 426, 466, 467, 483], "meerkat": 464, "meet": [93, 95, 102, 140, 169, 186, 190, 193, 299, 344, 395, 426, 428, 462, 466], "mefistot": 482, "mega": 375, "megabyt": 151, "mehdi": 483, "mei": 435, "meier": 235, "meili": [481, 483], "melbourn": 366, "melero": 483, "melin": 477, "melotti": [109, 469, 475, 476, 477, 478], "mem": [7, 42, 43], "mem1": 340, "mem_0d": 483, "member": [5, 26, 31, 33, 34, 35, 45, 50, 56, 59, 61, 63, 68, 73, 75, 76, 112, 149, 163, 167, 176, 177, 181, 184, 191, 211, 213, 233, 234, 244, 245, 248, 268, 270, 293, 299, 311, 313, 315, 332, 337, 339, 340, 341, 342, 343, 344, 347, 352, 358, 362, 366, 378, 385, 386, 388, 389, 422, 427, 428, 430, 465, 466, 467, 468, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "member_delet": 93, "member_get": 93, "member_nam": [94, 472], "member_repr": 93, "member_set": 93, "member_sinc": 481, "memberdescriptortyp": [385, 483], "membernam": 483, "membership": [68, 92, 94, 99, 151, 178, 233, 293, 344, 428, 442, 466, 475, 483], "memberst_mtim": 464, "memcpi": [64, 473, 483], "memf": 456, "memfd": [293, 483], "memfd_creat": [215, 293, 481, 483], "memlen": 7, "memlevel": 424, "memlimit": 270, "memmov": [176, 468], "memo": [171, 299, 300, 431, 479, 483], "memoiz": [85, 139, 226, 463, 479, 483], "memorandum": 271, "memorecord": 299, "memori": [5, 7, 23, 28, 31, 32, 33, 34, 41, 43, 45, 47, 49, 55, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 85, 87, 93, 95, 96, 100, 101, 102, 106, 107, 108, 109, 115, 119, 132, 137, 151, 158, 176, 184, 185, 186, 207, 212, 213, 214, 225, 234, 235, 247, 250, 255, 258, 261, 269, 271, 278, 283, 284, 293, 299, 314, 322, 330, 332, 333, 337, 338, 340, 347, 348, 352, 358, 362, 365, 386, 389, 405, 406, 411, 413, 421, 422, 428, 435, 442, 455, 456, 462, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 479, 480, 481, 482, 483], "memorybio": [341, 478, 483], "memoryerror": [9, 23, 55, 60, 64, 122, 186, 213, 395, 450, 477, 483], "memoryhandl": [68, 101, 102, 118, 268, 483], "memoryobject": [476, 478], "memorysanit": 456, "memoryview": [5, 7, 16, 68, 87, 112, 145, 225, 254, 284, 299, 332, 337, 352, 386, 427, 428, 450, 470, 474, 475, 477, 478, 481, 483, 484], "memset": [49, 176, 483], "memus": 362, "mend": 483, "mendoza": [472, 473], "mental": 483, "mention": [73, 75, 76, 77, 95, 99, 102, 106, 109, 167, 176, 177, 191, 193, 214, 215, 225, 262, 267, 268, 271, 283, 292, 293, 331, 334, 338, 354, 362, 427, 428, 432, 434, 435, 436, 462, 470, 474, 476, 477, 480, 482, 483], "menu": [68, 92, 368, 369, 375, 384, 428, 461, 467, 471, 475, 479, 480, 481, 482, 483], "menubutton": 376, "menudef": 483, "menus": [68, 368, 369, 483], "merchant": 426, "merci": [102, 428], "mercuri": [94, 343, 475, 477, 483], "mere": [85, 169, 183, 193, 225, 284, 292, 333, 348, 352, 384, 426, 427, 470], "merejkowski": 483, "merg": [22, 68, 85, 87, 92, 93, 95, 101, 102, 103, 177, 183, 193, 213, 236, 267, 269, 282, 292, 293, 344, 380, 386, 426, 452, 456, 461, 462, 465, 468, 469, 474, 478, 483], "merge_consts_recurs": 483, "meridian": 366, "merri": 483, "mersenn": [68, 318, 465], "mertz": [95, 103], "merzouki": 481, "mesg_num": 305, "mesgnum": 305, "mess": [92, 120, 292, 464], "messag": [5, 23, 33, 34, 54, 59, 66, 68, 72, 73, 75, 76, 79, 84, 85, 89, 92, 95, 99, 106, 109, 110, 120, 126, 133, 136, 142, 144, 146, 151, 155, 157, 158, 163, 176, 177, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 206, 207, 208, 209, 212, 213, 228, 235, 242, 243, 245, 246, 247, 248, 250, 255, 259, 262, 267, 268, 269, 272, 279, 283, 285, 288, 292, 293, 297, 305, 311, 314, 319, 322, 331, 333, 335, 337, 338, 341, 342, 352, 356, 357, 358, 359, 362, 373, 375, 378, 381, 386, 388, 395, 399, 400, 413, 414, 415, 419, 421, 427, 429, 431, 436, 446, 449, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 482, 483], "message_bodi": 242, "message_factori": [207, 208, 479], "message_from_binary_fil": [200, 207, 208, 475], "message_from_byt": [207, 475], "message_from_fil": [204, 207], "message_from_str": [207, 476], "message_id": 288, "message_num": 248, "message_part": 248, "message_set": 248, "message_spec": 288, "messagebeep": [406, 479, 483], "messagebox": [68, 176, 189, 254, 368, 369, 483], "messageboxw": 176, "messageclass": 245, "messagedefect": 199, "messageerror": 199, "messagefil": 200, "messageidhead": 203, "messageparseerror": [199, 271], "messi": [95, 465, 469], "messier": [95, 106, 464, 465, 469], "met": [33, 63, 75, 93, 94, 95, 101, 190, 341, 426, 467, 481, 483], "meta": [60, 68, 87, 112, 122, 151, 177, 178, 220, 231, 250, 251, 292, 352, 395, 428, 464, 474, 476, 477, 479, 483], "meta_path": [34, 87, 142, 250, 251, 302, 352, 432, 436, 450, 461, 465, 476, 479, 483], "metabas": 407, "metacharact": [68, 272, 319, 348, 466], "metaclass": [61, 68, 87, 93, 94, 112, 116, 122, 176, 211, 225, 226, 255, 344, 385, 386, 427, 468, 470, 473, 474, 475, 477, 478, 479, 480, 481, 483], "metadata": [68, 84, 98, 110, 111, 181, 226, 230, 250, 254, 255, 280, 288, 293, 294, 311, 332, 342, 358, 386, 419, 422, 428, 432, 441, 453, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "metadata_encod": [422, 483], "metadatapathfind": 483, "metal": 93, "metalog": 223, "metamag": 103, "metapathfind": [87, 250, 251, 352, 472, 473, 476, 477, 480, 483], "metaphor": [73, 250, 252, 253, 375], "metaslash": 288, "metatyp": [63, 255], "metavar": [68, 102, 118, 200, 292, 399, 469, 474, 475, 483], "metavartypehelpformatt": 120, "metcalf": [473, 483], "meter": [94, 375], "meth": [21, 44, 63, 78, 85, 87, 112, 386, 463, 466, 473, 476], "meth_class": [58, 62, 465], "meth_coexist": [58, 466], "meth_fastcal": [58, 100, 480, 483], "meth_keyword": [58, 73, 100, 483], "meth_method": [58, 100, 482, 483], "meth_noarg": [35, 58, 76, 464, 465, 483], "meth_o": [58, 62, 464, 483], "meth_oldarg": [5, 464, 470], "meth_stat": [58, 465], "meth_vararg": [5, 58, 72, 73, 464, 483], "method": [5, 7, 10, 16, 21, 22, 23, 24, 25, 28, 33, 34, 39, 42, 45, 46, 49, 53, 54, 55, 56, 58, 61, 62, 63, 66, 68, 72, 74, 75, 80, 81, 86, 87, 92, 95, 97, 101, 102, 108, 109, 110, 112, 115, 116, 117, 118, 128, 131, 132, 133, 136, 137, 138, 139, 142, 144, 146, 147, 149, 151, 153, 155, 157, 158, 159, 161, 163, 164, 166, 167, 168, 170, 175, 176, 177, 179, 181, 183, 184, 186, 187, 190, 191, 193, 195, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 216, 218, 221, 222, 223, 225, 226, 227, 230, 234, 235, 237, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 267, 268, 269, 270, 271, 273, 276, 278, 279, 281, 291, 293, 295, 296, 297, 298, 299, 301, 302, 305, 307, 308, 311, 312, 313, 314, 315, 316, 318, 319, 321, 323, 325, 328, 329, 330, 331, 335, 338, 341, 343, 345, 347, 348, 349, 352, 358, 359, 360, 362, 364, 365, 369, 374, 375, 376, 378, 381, 382, 385, 386, 387, 388, 389, 394, 395, 397, 399, 402, 403, 405, 408, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 427, 429, 432, 433, 435, 436, 441, 442, 443, 444, 445, 447, 449, 451, 452, 455, 463, 464, 465, 468, 469, 471, 472, 473, 474, 475, 476, 477, 481, 483, 484], "method_": 173, "method_1": 78, "method_blowfish": 173, "method_cal": [389, 390], "method_crypt": [173, 479, 483], "method_descriptor": 466, "method_md5": 173, "method_nam": [78, 79], "method_not_allow": 241, "method_sha256": 173, "method_sha512": 173, "method_to_typeid": 283, "methodattr": 112, "methodcal": [87, 108, 291, 468, 478, 483], "methoddef": 483, "methoddescriptortyp": [385, 480, 483], "methodhelp": [419, 420], "methodnam": [78, 283, 388, 419, 440, 441], "methodrespons": 419, "methodsignatur": [419, 420], "methodtyp": [44, 93, 385, 483], "methodwrapp": 483, "methodwrappertyp": [255, 385, 473, 480, 483], "metl": 93, "metr": 183, "metric": [85, 372, 483], "metzen": 190, "mexico": 483, "meyer": [474, 476, 481, 482, 483], "mez": [474, 483], "meza": 483, "mezzo": 467, "mf": 270, "mf_bt2": 270, "mf_bt3": 270, "mf_bt4": 270, "mf_hc3": 270, "mf_hc4": 270, "mfc": 461, "mfd_": 293, "mfd_allow_s": 293, "mfd_cloexec": 293, "mfd_huge": 293, "mfd_huge_16gb": 293, "mfd_huge_16mb": 293, "mfd_huge_1gb": 293, "mfd_huge_1mb": 293, "mfd_huge_256mb": 293, "mfd_huge_2gb": 293, "mfd_huge_2mb": 293, "mfd_huge_32mb": 293, "mfd_huge_512kb": 293, "mfd_huge_512mb": 293, "mfd_huge_64kb": 293, "mfd_huge_8mb": 293, "mfd_huge_mask": 293, "mfd_huge_shift": 293, "mfd_hugetlb": 293, "mgr": 468, "mgr1": [467, 468], "mgr2": [467, 468], "mh": [68, 285, 467], "mh_profil": 271, "mh_sequenc": 271, "mhlib": 468, "mhmessag": [68, 285], "mi": [84, 149, 467, 481, 482, 483], "mib": [42, 235, 270, 283, 332, 473, 481, 483], "micha": [479, 483], "michael": [110, 441, 442, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 481, 482, 483], "michel": [103, 464, 465, 476, 477, 478, 479, 480, 481, 482, 483], "michlmayr": 468, "mick": [384, 462, 465, 467], "micka": 483, "micro": [76, 85, 352, 462, 469, 471, 480, 483], "microbenchmark": 483, "microoptim": 483, "microphon": 295, "micropython": [472, 483], "microsecond": [183, 322, 340, 366, 468, 483], "microsoft": [59, 68, 77, 86, 158, 167, 176, 254, 293, 350, 352, 398, 399, 407, 448, 456, 458, 464, 465, 467, 468, 473, 478, 483], "microsystem": [408, 426], "mid": [139, 483], "middl": [85, 92, 169, 199, 297, 318, 321, 364, 384, 416, 467, 469, 479, 483], "middleton": 463, "middlewar": 407, "midi": 236, "midnight": [183, 269, 468, 475, 478, 483], "midpoint": 343, "midst": 359, "midway": 76, "might": [7, 23, 33, 58, 63, 64, 73, 75, 76, 85, 92, 94, 95, 96, 100, 101, 102, 103, 105, 106, 109, 110, 132, 137, 139, 141, 144, 146, 158, 176, 179, 181, 183, 191, 193, 196, 205, 207, 209, 221, 234, 235, 243, 247, 253, 259, 266, 267, 268, 269, 271, 272, 278, 283, 284, 288, 292, 293, 295, 299, 302, 305, 307, 308, 319, 335, 337, 340, 341, 344, 352, 353, 355, 362, 365, 369, 384, 386, 394, 395, 400, 408, 413, 422, 428, 432, 434, 455, 461, 462, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 483], "migrat": [68, 91, 251, 252, 255, 386, 400, 410, 436, 467, 468, 471, 474, 476, 477, 483], "miguel": [473, 483], "mike": [95, 464, 466, 467, 468, 473, 483], "mikhail": 472, "miki": [469, 475], "milan": [478, 480, 483], "milauer": 477, "milchior": 483, "mile": 183, "mileag": [5, 335], "militari": 483, "mill": 435, "miller": [468, 477], "millimetr": 369, "million": [109, 343, 441], "millisecond": [101, 177, 183, 247, 267, 328, 376, 384, 406, 475, 479, 482, 483], "milman": [480, 483], "mime": [68, 87, 106, 143, 146, 151, 158, 196, 200, 202, 203, 204, 205, 207, 208, 245, 254, 272, 285, 352, 407, 432, 451, 464, 466, 469, 472, 475, 477, 478, 479, 480, 483], "mime_typ": 407, "mimeappl": 206, "mimeaudio": [198, 206, 483], "mimebas": 206, "mimeimag": [198, 199, 200, 206], "mimemessag": 206, "mimemultipart": 206, "mimenonmultipart": [199, 206, 483], "mimepart": [197, 205, 477], "mimetext": [198, 206, 478, 483], "mimetool": 468, "mimetyp": [68, 156, 197, 200, 254, 272, 285, 382, 407, 464, 468, 469, 479, 483], "mimeversionhead": 203, "mimewrit": 468, "mimic": [183, 255, 267, 347, 381, 384, 469, 471, 483], "mimifi": 468, "min": [5, 87, 95, 102, 106, 107, 108, 160, 166, 183, 186, 225, 226, 236, 261, 275, 316, 343, 344, 352, 367, 430, 440, 450, 467, 469, 477, 483], "min_10_exp": 352, "min_emin": [186, 476], "min_etini": 186, "min_exp": 352, "min_instrumented_opcod": 191, "min_mag": 186, "min_pseudo_opcod": 191, "min_vers": 362, "mind": [31, 85, 92, 100, 102, 106, 120, 176, 186, 200, 252, 269, 283, 292, 386, 395, 413, 432, 464, 466, 475], "mindom": 483, "minequ": 377, "mingliang": 483, "mingw": [481, 483], "mini": [167, 345, 435, 469, 471], "miniaefram": 468, "minidentd": 223, "minidom": [68, 254, 273, 409, 410, 412, 462, 463, 465, 479, 480, 481, 483], "minifieldstorag": [151, 483], "minilanguag": 331, "minim": [24, 45, 73, 76, 84, 92, 102, 141, 151, 186, 190, 193, 214, 235, 248, 250, 259, 292, 299, 305, 319, 324, 333, 337, 339, 340, 362, 364, 379, 395, 411, 456, 461, 462, 467, 479, 483], "minimal_hanoi": 384, "minimalist": 384, "minimis": 483, "minimum": [25, 34, 42, 64, 76, 93, 102, 111, 115, 133, 141, 176, 177, 186, 197, 257, 261, 275, 293, 328, 334, 341, 344, 352, 362, 365, 376, 383, 384, 386, 388, 456, 464, 465, 468, 475, 476, 477, 479, 480, 483], "minimum_support": 341, "minimum_vers": [341, 472, 480, 483], "minitab": 343, "minmax": 141, "minmin": 483, "minor": [33, 63, 66, 68, 77, 79, 84, 92, 102, 110, 122, 177, 203, 206, 293, 303, 313, 352, 355, 358, 415, 456, 461, 463, 464, 465, 466, 467, 469, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 483], "minorvers": 354, "minsiz": 93, "mintz": 483, "minus": [177, 186, 225, 275, 332, 344, 345, 347, 365, 377, 430, 436, 480, 483], "minut": [20, 109, 135, 183, 269, 293, 366, 422, 435, 456, 465, 480, 483], "minutia": 68, "minval": 384, "minvalu": 93, "minwidth": 376, "minyear": 183, "mip": 483, "mircea": 483, "miro": [473, 483], "mirror": [23, 110, 223, 267, 268, 269, 369, 377, 387, 415, 455, 466, 483], "mis": [247, 483], "misbehav": [139, 483], "misc": [0, 35, 80, 96, 223, 344, 376, 456, 462, 465, 466, 467, 468, 469, 470, 473, 475, 477, 483, 484], "misc_head": 155, "miscalcul": [358, 483], "miscellan": [68, 118, 119, 155, 164, 191, 217, 368, 458, 483, 484], "misconfigur": [101, 247, 483], "misctest": 344, "misctestcas": 362, "misdetect": 483, "misdirect": 483, "misdirected_request": 241, "mise": 318, "misfold": 483, "misform": 483, "mishandl": 483, "misimpl": 475, "misindent": 483, "misinterpret": 141, "mislabel": 483, "mislead": [75, 109, 152, 183, 395, 411, 464, 475, 483], "mismatch": [193, 213, 216, 267, 319, 334, 341, 413, 427, 463, 465, 467, 469, 478, 483], "misnam": [466, 475], "misnom": 31, "misord": 483, "misplac": 483, "misplacedenvelopeheaderdefect": 199, "misrepres": 426, "miss": [55, 106, 160, 170, 176, 181, 186, 196, 199, 205, 211, 226, 235, 247, 250, 251, 255, 261, 267, 276, 279, 292, 293, 337, 341, 343, 348, 352, 353, 362, 366, 367, 375, 380, 386, 394, 395, 425, 427, 428, 430, 431, 432, 441, 443, 462, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "missil": 475, "missing_c_docstr": 362, "missing_compiler_execut": [362, 483], "missing_ok": [296, 483], "missingheaderbodyseparatordefect": 199, "missingsectionheadererror": 167, "mission": 292, "mississ": 344, "mississippi": [160, 344], "misspel": [92, 93, 167, 483], "mist": 465, "mistak": [61, 73, 94, 103, 106, 120, 211, 213, 267, 271, 292, 344, 366, 369, 456, 466, 467, 469, 471, 474, 483], "mistaken": [85, 440, 462, 475, 477, 483], "mistyp": 435, "misunderstand": 483, "misus": [33, 45, 340, 464, 483], "mit": [95, 251, 307, 426, 483], "mitar": 483, "mitch": 84, "mitchel": [468, 473, 483], "mitig": [33, 68, 135, 244, 290, 344, 358, 471, 472, 474, 479, 480, 481, 482, 483], "mitpress": 95, "mix": [33, 42, 68, 102, 116, 167, 186, 204, 205, 206, 207, 218, 225, 228, 259, 275, 283, 293, 295, 309, 338, 344, 355, 362, 386, 394, 427, 428, 435, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 483], "mixabl": 295, "mixed_cas": 483, "mixer": 68, "mixerdev": 295, "mixin": [68, 94, 161, 169, 211, 256, 258, 395, 483], "mixtur": [63, 203, 431, 435, 478], "miyurusara": 483, "mjs": 483, "mkd": 223, "mkdir": [84, 142, 200, 293, 296, 422, 451, 473, 474, 476, 478, 483], "mkdtemp": [142, 293, 360, 362, 402, 474, 483], "mkfifo": [293, 476, 478, 483], "mkfifoat": 483, "mknod": [293, 465, 476, 478, 483], "mknodat": 483, "mksalt": [173, 476, 480, 483], "mkstemp": [142, 283, 360, 483], "mkstringprep": [346, 465], "mktemp": [327, 360, 395, 483], "mktime": [183, 209, 366, 475, 483], "mktime_tz": 209, "ml": [58, 95, 465], "ml_doc": [58, 75], "ml_flag": [58, 75], "ml_meth": [58, 75], "ml_name": [58, 75], "mlsd": [223, 476], "mm": [85, 183, 248, 278, 344, 366], "mmap": [42, 68, 142, 213, 254, 260, 462, 468, 473, 475, 478, 479, 483], "mmask_t": 483, "mmdf": [68, 285, 483], "mmdfmessag": [68, 285], "mmm": [120, 248], "mms": 394, "mn": [109, 435], "mnemon": [178, 268, 341, 376, 464], "mno": 104, "mnt": 355, "mo": [150, 183, 230, 319, 344, 465, 479, 481, 483], "mobil": 475, "mock": [68, 187, 254, 382, 388, 473, 476, 477, 481, 482, 483], "mock1": 389, "mock2": 389, "mock_add_spec": 389, "mock_backend": 390, "mock_bar": 390, "mock_cal": [389, 390, 483], "mock_class": 389, "mock_dat": 390, "mock_exit": 389, "mock_foo": [389, 390], "mock_frob": 390, "mock_funct": 389, "mock_inst": 390, "mock_method": [389, 390], "mock_open": [68, 187, 390, 477, 483], "mock_ord": 389, "mock_request": 389, "mock_respons": 390, "mock_spam": 390, "mock_stdout": 389, "mock_th": 389, "mockclass": 389, "mockclass1": [389, 390], "mockclass2": [389, 390], "mockiti": 389, "mocksomeclass": 390, "mod": [85, 102, 122, 225, 250, 279, 291, 380, 421, 431, 436, 468, 481, 483], "mod_nam": 324, "mod_spec": 483, "mod_ti": [431, 472, 483], "mod_wsgi": [283, 348], "modal": [189, 373], "mode": [5, 24, 33, 34, 35, 41, 42, 59, 64, 66, 68, 73, 84, 92, 101, 102, 106, 109, 112, 117, 120, 122, 125, 135, 142, 144, 149, 151, 158, 163, 167, 174, 176, 177, 178, 184, 188, 189, 190, 193, 200, 207, 213, 214, 218, 223, 225, 228, 234, 245, 247, 250, 251, 252, 253, 258, 266, 267, 269, 270, 271, 282, 288, 290, 292, 293, 295, 296, 297, 299, 301, 305, 309, 311, 318, 319, 320, 322, 323, 331, 332, 334, 335, 337, 340, 341, 342, 343, 344, 347, 348, 349, 351, 352, 354, 358, 360, 362, 376, 378, 382, 383, 384, 386, 388, 397, 401, 403, 413, 415, 421, 422, 424, 425, 428, 436, 446, 448, 455, 456, 461, 463, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "mode_fast": 270, "mode_norm": 270, "model": [42, 60, 68, 84, 85, 93, 169, 183, 186, 194, 196, 205, 225, 273, 283, 293, 318, 335, 341, 343, 365, 368, 384, 395, 410, 411, 412, 415, 427, 428, 429, 461, 462, 464, 465, 466, 467, 473, 474, 475, 477, 478, 479, 480, 481, 483, 484], "modelbas": 386, "modelmeta": 386, "moder": [85, 95, 106, 288, 292, 305, 319, 464, 465], "modern": [73, 139, 177, 178, 194, 235, 258, 332, 337, 358, 369, 406, 462, 466, 468, 469, 475, 476, 479, 480, 481, 482, 483], "modernis": 474, "modest": [186, 483], "modf": 275, "modif": [22, 27, 34, 61, 64, 66, 73, 94, 102, 103, 112, 169, 190, 216, 234, 245, 248, 250, 266, 269, 271, 278, 283, 292, 293, 324, 332, 334, 338, 342, 352, 358, 362, 376, 410, 413, 422, 426, 428, 461, 467, 469, 475, 476, 477, 478, 479, 481, 483], "modifi": [5, 9, 22, 23, 27, 33, 34, 61, 63, 64, 66, 68, 73, 76, 77, 79, 94, 95, 100, 101, 102, 103, 109, 110, 112, 120, 137, 139, 141, 158, 167, 173, 176, 177, 185, 186, 191, 193, 196, 197, 201, 203, 205, 208, 215, 216, 225, 245, 247, 255, 266, 267, 268, 269, 271, 281, 283, 284, 292, 293, 297, 299, 302, 307, 308, 314, 319, 321, 324, 328, 329, 330, 331, 332, 335, 337, 338, 340, 344, 345, 348, 352, 353, 355, 358, 362, 365, 369, 375, 376, 378, 381, 382, 384, 385, 388, 394, 395, 396, 397, 400, 405, 407, 410, 413, 416, 417, 420, 421, 423, 425, 426, 427, 428, 429, 432, 434, 435, 436, 455, 458, 462, 463, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 483], "modnam": [85, 440, 450, 467, 474, 479], "modul": [5, 7, 11, 16, 17, 23, 24, 31, 33, 34, 35, 41, 42, 58, 59, 61, 63, 65, 66, 68, 71, 72, 74, 75, 76, 77, 79, 81, 84, 87, 88, 89, 91, 92, 94, 96, 98, 101, 104, 105, 109, 110, 112, 114, 115, 117, 118, 120, 122, 125, 131, 138, 139, 141, 142, 144, 146, 149, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 167, 169, 170, 173, 174, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 233, 234, 235, 237, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 287, 288, 290, 291, 292, 293, 295, 296, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 344, 345, 346, 347, 349, 350, 351, 352, 353, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 368, 371, 374, 375, 376, 377, 378, 380, 381, 382, 385, 386, 387, 389, 390, 391, 392, 393, 394, 395, 396, 397, 399, 400, 402, 403, 404, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 429, 430, 434, 435, 436, 439, 440, 441, 442, 443, 445, 446, 448, 449, 451, 452, 455, 456, 458, 470, 472, 473, 474, 476, 477, 481, 482, 483, 484], "modula": [78, 80, 274, 440], "modular": [68, 84, 101, 173, 225, 476, 481, 483], "module1": 462, "module2": 462, "module_api_vers": 45, "module_cleanup": 483, "module_def": 100, "module_dep": 483, "module_find": 302, "module_for_load": [472, 473, 474, 477, 483], "module_fre": 483, "module_from_spec": [250, 385, 474, 478, 483], "module_glob": [265, 400, 483], "module_logg": 102, "module_nam": [144, 250, 283, 362, 472, 480, 483], "module_or_nam": 302, "module_rel": 193, "module_repr": [432, 472, 473, 474, 477, 483], "module_search_path": [33, 34, 59, 473, 483], "module_search_paths_set": [33, 34, 59, 473, 483], "module_to_load": 477, "modulea": 432, "modulefind": [68, 254, 280, 483], "modulefindertest": 483, "moduleinfo": [302, 479], "modulenam": [11, 71, 73, 79, 85, 98, 450, 483], "modulenotfounderror": [23, 213, 250, 432, 479, 480, 483], "modules_cleanup": 362, "modules_setup": 362, "modulespec": [31, 45, 68, 87, 250, 302, 324, 352, 385, 432], "moduletyp": [45, 250, 252, 385, 428, 432, 465, 474, 478, 483], "modulex": 432, "moduley": 432, "modulez": 432, "modulo": [39, 102, 186, 213, 225, 291, 333, 344, 376, 428, 430, 446, 465, 469, 475, 481, 483], "modulus": [154, 289, 344, 352, 468, 475, 481], "modzelewski": 474, "moham": 483, "mohd": 483, "mohr": [480, 483], "moin": [80, 84, 459, 466], "mojam": 426, "mojibak": 483, "molesti": 149, "mollusk": 230, "moment": [85, 109, 183, 213, 283, 293, 432, 479, 483], "momentarili": [247, 271, 483], "mon": [106, 150, 183, 209, 211, 465], "mon_1": 266, "mon_10": 266, "mon_11": 266, "mon_12": 266, "mon_2": 266, "mon_3": 266, "mon_4": 266, "mon_5": 266, "mon_6": 266, "mon_7": 266, "mon_8": 266, "mon_9": 266, "mon_decimal_point": 266, "mon_group": 266, "mon_thousands_sep": 266, "monday": [94, 150, 183, 211, 266, 269, 366, 483], "monetari": [186, 266, 467, 480, 483], "money": [186, 348], "moneyfmt": 186, "monitor": [33, 68, 101, 102, 132, 137, 186, 254, 269, 308, 315, 329, 338, 352, 399, 466, 468, 479, 480, 483], "monkey": [120, 386, 389, 390, 474, 483], "mono": [117, 141, 295], "monochrom": 375, "monograph": 376, "monolingu": 230, "monomorphic_oper": 289, "monophon": 295, "monospac": [102, 247, 364], "monoton": [103, 131, 134, 169, 190, 325, 343, 366, 440, 465, 476, 478, 483], "monotonic_n": [366, 480, 483], "monsel": [481, 483], "monster": [167, 364], "mont": [68, 290], "montag": 183, "montagn": 477, "montanaro": [426, 462, 465, 466, 467, 468], "monterey": [269, 483], "month": [20, 85, 150, 183, 266, 366, 422, 435, 462, 463, 465, 469, 474, 483], "month_abbr": 150, "month_nam": [150, 435], "monthcalendar": 150, "monthdatescalendar": 150, "monthdays2calendar": 150, "monthdayscalendar": 150, "monthrang": 150, "monti": [73, 167, 193, 225, 262, 293, 296, 340, 343, 344, 358, 422, 439, 454, 466, 468, 475], "mood": 94, "moodi": [99, 476, 477, 478], "moolenaar": 435, "moon": [292, 386], "moon_weight": 386, "moor": [369, 464, 465, 468, 477, 478, 480, 483], "more": [5, 11, 13, 22, 23, 24, 25, 27, 33, 34, 42, 45, 49, 51, 56, 58, 60, 61, 63, 64, 66, 68, 71, 72, 73, 74, 76, 77, 79, 80, 84, 85, 86, 93, 94, 95, 100, 101, 103, 109, 110, 112, 115, 120, 123, 133, 137, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 213, 215, 218, 220, 222, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 267, 268, 269, 270, 271, 275, 276, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 311, 312, 314, 318, 319, 321, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 381, 382, 386, 388, 390, 394, 395, 399, 400, 405, 406, 410, 411, 412, 413, 415, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 443, 448, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483], "moreau": 480, "morecolor": 94, "morehous": [481, 483], "moreov": [33, 34, 103, 225, 271, 384, 469, 470, 483], "morph": 293, "morr": [469, 471], "morrison": [153, 477], "morsel": [68, 256, 468, 478, 480, 483], "mortem": [193, 297, 352, 440, 474], "mosaic": [403, 474, 483], "mosh": [462, 463, 464, 466], "moss": 472, "most": [5, 7, 9, 23, 25, 31, 33, 34, 39, 42, 45, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 77, 79, 84, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 120, 125, 133, 136, 139, 141, 144, 146, 149, 151, 153, 158, 160, 167, 169, 176, 177, 183, 184, 186, 188, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 207, 211, 213, 214, 215, 221, 225, 226, 230, 233, 234, 243, 247, 248, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 272, 275, 278, 283, 284, 292, 293, 295, 296, 297, 299, 302, 305, 307, 308, 314, 319, 321, 328, 329, 330, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 355, 356, 358, 362, 364, 365, 366, 369, 374, 375, 381, 382, 384, 386, 387, 388, 389, 390, 394, 395, 400, 403, 406, 408, 410, 411, 413, 414, 415, 416, 421, 422, 425, 427, 428, 429, 430, 432, 434, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "most_common": [160, 469], "most_recent_first": [382, 480, 483], "motejlek": 483, "motif": 375, "motion": [68, 177, 222, 371], "motiv": [34, 93, 358, 428, 430, 463, 465, 466, 476, 481, 483], "mount": [33, 293, 294, 296, 332, 469, 474, 477, 480, 483], "mountain": [183, 426], "mountifield": 483, "mous": [84, 92, 177, 348, 371, 376, 384, 462, 468, 483], "mouseinterv": 177, "mousemask": 177, "mousewheel": [247, 483], "mouzo": 469, "movabl": 399, "movap": 483, "move": [34, 84, 85, 91, 92, 93, 96, 99, 102, 110, 112, 120, 142, 155, 176, 177, 179, 181, 183, 196, 205, 206, 218, 247, 261, 269, 271, 278, 293, 297, 311, 332, 362, 366, 371, 375, 376, 384, 388, 394, 395, 413, 451, 462, 463, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "move_fil": 483, "move_first_element_to_last": 386, "move_to_end": [160, 475, 483], "moved_perman": [241, 466], "movement": [177, 384, 468, 475, 483], "moveov": 483, "moveto": [481, 483], "movetothread": 102, "movi": [93, 147, 340, 386, 473, 474], "moving_averag": 160, "movup": 483, "mozilla": [1, 110, 243, 341, 395, 403, 466, 483], "mozillacookiejar": [243, 483], "mp": [283, 465], "mp4": 468, "mp64": 483, "mp_ass_subscript": 63, "mp_context": [166, 283, 480, 483], "mp_film": 262, "mp_init": 483, "mp_length": 63, "mp_subscript": [63, 483], "mp_to_unsigned_bin_n": 483, "mp_unsigned_bin_s": 483, "mpdec": 456, "mpdecim": [476, 483], "mpeg": 272, "mpf": 432, "mpi": 483, "mplog": 102, "mptcp": [472, 483], "mptest": 102, "mpz": 466, "mro": [49, 61, 68, 85, 87, 103, 116, 181, 197, 344, 385, 480, 483], "mros": 103, "ms": [68, 98, 158, 176, 177, 254, 292, 293, 348, 375, 461, 462, 480, 483], "ms1361": 158, "ms932": 158, "ms936": 158, "ms949": 158, "ms950": 158, "ms_win64": 483, "ms_window": [23, 34], "msan": [456, 483], "msbuild": [461, 483], "msc": [35, 86, 483], "msd": 186, "msdn": [126, 293], "msec": [267, 367, 478], "msg": [23, 84, 102, 107, 122, 129, 139, 151, 169, 176, 190, 196, 197, 198, 200, 201, 202, 203, 204, 205, 207, 208, 209, 213, 228, 235, 237, 242, 250, 262, 266, 267, 269, 271, 283, 286, 319, 335, 337, 344, 359, 362, 381, 388, 393, 395, 408, 414, 450, 465, 466, 467, 475, 476, 477, 478, 479, 483], "msg297804": 483, "msg_": 337, "msg_flag": 337, "msgfile": 200, "msgfmt": [230, 469], "msgid": [102, 200, 209], "msglen": [107, 337], "msgno": 102, "msgnum": 248, "msi": [281, 467, 478, 480, 483], "msiclosehandl": 281, "msicolinfo_nam": 281, "msicolinfo_typ": 281, "msicreaterecord": 281, "msidatabasecommit": 281, "msidatabaseopenview": 281, "msidbopen_cr": 281, "msidbopen_createdirect": 281, "msidbopen_direct": 281, "msidbopen_patchfil": 281, "msidbopen_readon": 281, "msidbopen_transact": 281, "msie": [110, 244], "msierror": [281, 483], "msigetsummaryinform": 281, "msilib": [68, 254, 350, 467, 468, 473, 474, 483], "msimodify_assign": 281, "msimodify_delet": 281, "msimodify_insert": 281, "msimodify_insert_temporari": 281, "msimodify_merg": 281, "msimodify_refresh": 281, "msimodify_replac": 281, "msimodify_seek": 281, "msimodify_upd": 281, "msimodify_valid": 281, "msimodify_validate_delet": 281, "msimodify_validate_field": 281, "msimodify_validate_new": 281, "msiopendatabas": 281, "msirecordcleardata": 281, "msirecordgetfieldcount": 281, "msirecordsetinteg": 281, "msirecordsetstr": 281, "msirecordsetstream": 281, "msis": 483, "msisummaryinfogetproperti": 281, "msisummaryinfogetpropertycount": 281, "msisummaryinfopersist": 281, "msisummaryinfosetproperti": 281, "msiviewclos": 281, "msiviewexecut": 281, "msiviewfetch": 281, "msiviewgetcolumninfo": 281, "msiviewmodifi": 281, "msix": 461, "mskanji": 158, "msoft": 467, "msoxzw": 473, "mss": 483, "mst": 183, "msvc": [35, 63, 77, 86, 176, 466, 481, 483], "msvcrt": [68, 77, 86, 142, 176, 254, 404, 468, 469, 483], "mszip": 281, "mt": 426, "mt19937": 426, "mt2002": 426, "mt_interact": 359, "mtime": [216, 234, 250, 293, 358, 396, 481, 483], "mtime_n": 293, "mu": [318, 343, 481, 483], "mua": [271, 341, 480], "much": [23, 55, 61, 63, 67, 73, 75, 76, 78, 84, 85, 92, 95, 102, 106, 109, 110, 120, 137, 151, 154, 158, 167, 176, 186, 193, 194, 203, 207, 255, 261, 269, 270, 271, 275, 283, 292, 293, 295, 299, 308, 319, 330, 337, 348, 355, 369, 376, 382, 384, 388, 410, 411, 419, 427, 432, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 481, 482, 483], "mueller": 483, "mul": [95, 112, 141, 186, 261, 275, 283, 291, 420], "mul_stereo": 141, "mullend": [462, 468], "muller": 469, "mult": [122, 431], "multi": [7, 16, 32, 33, 68, 71, 73, 84, 85, 86, 87, 94, 95, 100, 102, 106, 108, 109, 113, 118, 149, 186, 190, 191, 193, 226, 234, 247, 250, 267, 268, 270, 283, 316, 319, 322, 325, 331, 332, 340, 344, 365, 420, 422, 427, 435, 445, 455, 461, 462, 467, 469, 472, 474, 476, 477, 481, 483, 484], "multi_status": 241, "multiarch": 483, "multibyt": [92, 177, 208, 344, 476, 483], "multical": [68, 256, 420], "multicast": [259, 337, 362, 398, 483], "multichannel": 271, "multicontext": 160, "multidimension": [87, 344], "multifil": 468, "multihitlrucach": 160, "multihop": 212, "multilevel": [163, 483], "multilin": [106, 158, 167, 247, 319, 335, 388, 474, 475, 482, 483], "multiline_valu": 167, "multilingu": [230, 247, 483], "multiloopchildwatch": [132, 474, 483], "multimedia": [272, 295], "multimod": [343, 481], "multipag": 239, "multipart": [151, 194, 196, 197, 198, 199, 200, 201, 204, 205, 206, 207, 483], "multipartconversionerror": [199, 206], "multipartinvariantviolationdefect": [199, 207, 483], "multiphas": [482, 483], "multipl": [28, 31, 33, 34, 45, 47, 49, 63, 64, 68, 71, 73, 75, 76, 84, 87, 92, 94, 95, 96, 101, 103, 105, 106, 109, 110, 115, 116, 120, 121, 122, 124, 135, 137, 149, 151, 158, 160, 163, 167, 169, 177, 181, 183, 186, 187, 189, 193, 199, 205, 209, 213, 221, 225, 226, 228, 230, 231, 234, 235, 245, 247, 250, 251, 253, 255, 258, 261, 267, 268, 270, 271, 276, 278, 282, 283, 284, 292, 293, 297, 299, 302, 307, 314, 319, 320, 329, 330, 331, 335, 337, 338, 340, 341, 342, 343, 344, 347, 352, 353, 356, 358, 362, 365, 369, 375, 376, 377, 380, 384, 386, 388, 400, 413, 415, 419, 427, 428, 429, 430, 431, 432, 435, 436, 441, 444, 455, 456, 461, 462, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "multiple_char": 109, "multiple_choic": 241, "multiple_result": 283, "multiplex": [328, 329, 341, 477], "multiplexedpath": 483, "multipli": [47, 72, 76, 141, 176, 183, 186, 199, 261, 269, 308, 318, 345, 352, 419, 430, 462, 465, 466, 468, 475, 483], "multiplicand": 186, "multiprocess": [68, 84, 101, 107, 125, 126, 164, 166, 247, 254, 269, 316, 327, 341, 362, 365, 398, 407, 469, 470, 474, 483, 484], "multiprocessor": [84, 284, 303], "multiset": [160, 475], "multisort": 108, "multissltest": 483, "multitask": 369, "multithread": [68, 137, 139, 235, 266, 283, 348, 359, 407, 465, 474, 482, 483], "multiway": 95, "mung": [68, 363], "munmap": 42, "munro": 483, "murray": [469, 475, 477, 478, 479, 483], "musi": [395, 396], "music": [93, 160], "musl": 483, "must": [5, 7, 9, 11, 13, 17, 18, 22, 23, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 56, 58, 59, 60, 61, 63, 64, 66, 71, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 106, 110, 112, 115, 117, 120, 122, 132, 133, 139, 144, 146, 149, 151, 155, 158, 161, 167, 169, 173, 176, 177, 181, 183, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 213, 214, 218, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 291, 292, 293, 295, 297, 299, 301, 302, 304, 308, 314, 319, 320, 322, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 365, 366, 369, 371, 375, 376, 378, 380, 382, 384, 386, 388, 394, 395, 397, 400, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "mustexist": 189, "mutabl": [5, 27, 28, 33, 63, 68, 85, 87, 95, 100, 161, 171, 176, 181, 203, 211, 215, 225, 226, 255, 283, 291, 293, 297, 299, 330, 413, 424, 427, 430, 436, 440, 442, 449, 462, 465, 467, 468, 469, 470, 473, 474, 479, 482, 483], "mutablemap": [78, 87, 161, 167, 184, 330, 344, 386, 428, 468, 470, 476], "mutablesequ": [161, 344, 386, 470, 476, 478, 483], "mutableset": [161, 344, 386, 483], "mutablil": 483, "mutant": 292, "mutat": [5, 22, 63, 85, 100, 167, 181, 196, 226, 250, 258, 283, 330, 344, 386, 400, 464, 466, 477, 483], "mutate_flag": 215, "mutex": [84, 115, 124, 138, 340, 352, 483], "mutual": [5, 63, 68, 118, 262, 268, 271, 292, 319, 369, 380, 386, 403, 429, 483], "mv": [332, 476, 483], "mvaddstr": 92, "mvderwin": 177, "mview": 43, "mvwaddstr": 92, "mvwin": 177, "my": [63, 73, 78, 94, 95, 102, 103, 110, 151, 160, 193, 230, 248, 268, 296, 341, 344, 345, 362, 369, 446, 462, 464, 465, 466, 467, 474, 483], "my_abstract_classmethod": 116, "my_abstract_method": 116, "my_abstract_properti": 116, "my_abstract_staticmethod": 116, "my_app": 268, "my_arch": 332, "my_attribut": 299, "my_binary_fil": 296, "my_birthday": 183, "my_bytes_object": 85, "my_callback": [73, 75, 292], "my_databas": 181, "my_dealloc": [75, 100], "my_decor": [226, 467], "my_dict": 390, "my_dir": 167, "my_execut": 34, "my_filt": 270, "my_flag": 193, "my_funct": [112, 441], "my_gener": 169, "my_lock": 386, "my_logg": 102, "my_method": 100, "my_mock": 389, "my_module_with_doctest": 193, "my_nam": [114, 389], "my_namespac": 250, "my_obj_method": 62, "my_pictur": 167, "my_program": 34, "my_proj_dir": 475, "my_python_lib": 461, "my_script": 104, "my_set_callback": 73, "my_str": [85, 474], "my_struct": 100, "my_tarfil": 358, "my_text_fil": 296, "my_travers": [28, 100], "myabc": 116, "myaddr": 341, "myapp": [86, 102, 167, 235, 267, 369, 421, 478], "myapplic": 230, "myarchiv": [332, 452, 475], "myarg": 348, "myargumentpars": 120, "myattr": 203, "myattribut": 100, "mybyt": 207, "mycertfil": 341, "myclass": [299, 428, 440], "mycmd": 348, "mycod": 112, "mycontext": 169, "mycookiepolici": 243, "mycustom": 76, "mydata": [225, 365, 411, 452, 475], "mydict": [78, 85, 386, 466], "mydir": 78, "mydircmp": 216, "myemptyclass": 441, "myenum": 94, "myenv": 399, "myeventlooppolici": 132, "myextensionclass": 462, "myfavouriteshap": 384, "myfil": [149, 258, 293, 388, 422, 440, 443, 452], "myfilt": [102, 475], "myfoo": 289, "myfunc": [85, 102, 191, 319, 420], "myfunct": [73, 79, 169], "mygroup": [213, 341], "myhandl": [101, 102, 268], "myhtmlpars": 240, "myint": 473, "myintegr": 289, "myintenum": 211, "myiter": [116, 386], "mykey": 268, "mykeyfil": 341, "mylib": [267, 388], "mylink": 296, "mylist": [85, 181, 321, 475], "mylock": 473, "mylog": [230, 471, 475], "mylogg": [102, 267], "mymanag": 283, "mymessag": [196, 205], "mymock": 390, "mymod": 63, "mymodul": [57, 79, 101, 230, 389, 390, 400, 469, 475], "mymsg": [208, 477], "myobj_clear": 63, "myobj_dealloc": 63, "myobj_hash": 63, "myobj_new": 63, "myobj_repr": 63, "myobj_travers": 63, "myobject": [63, 75], "myobject_typ": 63, "myoption": 292, "myorgan": 341, "myothercontext": 186, "myoung": 483, "myownfunct": 176, "mypackag": 101, "mypath": 296, "mypi": [85, 386, 428, 473, 478, 479, 483], "mypickl": 299, "mypkg": [292, 388], "mypolici": [126, 476], "myprog": 422, "myprogram": 120, "myproject": [102, 388], "myprotocol": 133, "myreadlin": 79, "myrec": 107, "myrepr": 321, "myright": [248, 466], "myscript": [79, 297, 308, 438, 455], "myself": 462, "mysend": 107, "myserv": 341, "myshap": 384, "mysignatur": 255, "myskippedtestcas": 388, "mysocket": [107, 262], "mysql": [167, 223, 469], "mysqld": [167, 469], "mystat": 341, "mysteri": [23, 73, 151, 334, 477], "mystr": 63, "mystr_typ": 63, "mystruct": [176, 283], "mysubclass": 428, "mysum": 340, "mysuperwhammyfunct": 362, "mytag": 413, "mytcphandl": 338, "mytest": [389, 390], "mytestcas": 388, "mytestcase1": 362, "mytestcase2": 362, "myth": 75, "myturtl": 384, "mytyp": [75, 292, 473], "mytype_dealloc": 473, "myudphandl": 338, "myvar": 161, "myvisitor": 78, "myxml": 411, "myzip": 422, "n1": 259, "n1256": 352, "n2": 259, "n42": 292, "n7": 96, "n_": 230, "n_arg": 340, "n_col_offset": 483, "n_cs_preced": 266, "n_in_sequ": 60, "n_keyword_list": 431, "n_sep_by_spac": 266, "n_sign_posn": 266, "n_token": 377, "n_wait": [138, 365], "na": [186, 326, 463, 472, 473, 474, 481, 482, 483], "nadeem": [476, 477], "nadikud": 483, "nagl": [469, 483], "naitre": 483, "naiv": [33, 68, 103, 106, 182, 203, 209, 235, 290, 340, 476, 483], "najera": [481, 482, 483], "nak": 178, "nake": 483, "nal2l": 471, "nal3l": 471, "nam": 149, "namag": 247, "name": [5, 10, 11, 13, 14, 17, 19, 20, 23, 24, 26, 28, 29, 30, 31, 33, 34, 35, 42, 45, 49, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 87, 92, 95, 96, 98, 101, 102, 103, 108, 109, 110, 112, 114, 117, 118, 119, 122, 126, 128, 133, 134, 136, 139, 140, 142, 144, 145, 147, 149, 151, 152, 153, 155, 157, 160, 161, 163, 166, 167, 169, 170, 175, 176, 177, 178, 181, 183, 184, 186, 188, 190, 191, 193, 194, 195, 196, 197, 200, 202, 203, 205, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 223, 225, 226, 228, 230, 231, 233, 234, 235, 237, 238, 239, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 265, 266, 267, 268, 269, 270, 271, 272, 276, 278, 279, 281, 282, 283, 284, 285, 287, 288, 291, 292, 294, 295, 296, 297, 299, 302, 303, 305, 307, 308, 310, 311, 312, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 349, 351, 353, 354, 355, 359, 360, 361, 362, 365, 366, 369, 372, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 431, 432, 433, 434, 435, 436, 440, 441, 442, 443, 446, 449, 450, 452, 453, 455, 456, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "name1": [427, 467], "name2": [427, 467], "name2codepoint": [239, 240], "name_in_zip": 362, "name_of_modul": 362, "name_or_attr": [427, 431], "name_or_ordin": 176, "namealias": [387, 435], "nameconst": [122, 474, 481, 483], "named_express": [427, 431], "named_flag": 211, "namedefaultpair": 431, "namedexpr": 122, "namedexpress": 483, "namedint": 85, "namednodemap": [68, 273], "namedsequ": 387, "namedtemporaryfil": [110, 200, 360, 468, 474, 483], "namedtoplo": 472, "namedtupl": [60, 68, 87, 94, 117, 147, 182, 288, 299, 302, 303, 319, 329, 336, 340, 344, 347, 349, 352, 382, 385, 386, 401, 442, 468, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "namedtuple_factori": 340, "nameerror": [23, 26, 68, 176, 213, 250, 386, 429, 430, 436, 443, 449, 450, 462, 463, 464, 467, 474, 483], "namei": 191, "namelen": 483, "nameless": 483, "namelist": 422, "nameprep": [158, 346], "namer": [68, 269, 483], "namereplac": [109, 158, 225, 258, 478, 483], "namereplace_error": 158, "namesak": 471, "namespac": [33, 45, 61, 68, 73, 78, 79, 85, 87, 89, 93, 95, 101, 114, 118, 157, 160, 168, 181, 191, 193, 207, 222, 225, 226, 230, 247, 248, 250, 251, 255, 267, 268, 273, 283, 293, 297, 299, 302, 314, 324, 331, 337, 344, 351, 352, 353, 366, 382, 385, 386, 388, 389, 390, 398, 400, 410, 411, 412, 415, 416, 427, 429, 436, 437, 445, 450, 455, 462, 463, 464, 465, 467, 469, 470, 474, 475, 477, 478, 479, 480, 481, 483, 484], "namespace_dn": [398, 467], "namespace_err": 410, "namespace_oid": 398, "namespace_separ": 314, "namespace_url": 398, "namespace_x500": 398, "namespaceerr": 410, "namespaceload": [250, 477, 483], "namespaceuri": [410, 416], "nametofont": [372, 483], "nan": [25, 68, 85, 121, 154, 186, 225, 275, 285, 343, 344, 345, 352, 430, 442, 456, 466, 468, 469, 472, 473, 475, 476, 478, 479, 483], "nand": 464, "nanj": [154, 225, 479, 483], "nanjeky": [481, 482, 483], "nannynag": 357, "nano": 459, "nanosecond": [68, 293, 366, 405, 467, 476, 481, 482, 483], "nanoserv": 303, "nanosleep": [366, 473, 483], "naoki": [472, 473, 474, 478, 479, 480, 481, 482, 483], "napm": 177, "narg": [58, 68, 89, 100, 102, 118, 292, 309, 340, 399, 451, 469, 475, 483], "nargsf": 10, "narrat": 193, "narrow": [64, 319, 337, 344, 386, 456, 464, 472, 475, 476, 483], "nasm": 483, "nasty_eq_vs_dict": 96, "nat": [223, 337, 476], "natali": [469, 476, 477, 478], "nate": 483, "nathaniel": [478, 480, 483], "nation": [69, 426], "nativ": [7, 25, 33, 41, 64, 68, 109, 115, 145, 158, 169, 170, 176, 183, 184, 208, 213, 235, 258, 293, 330, 337, 340, 344, 352, 365, 368, 384, 422, 432, 461, 464, 469, 470, 475, 476, 477, 479, 480, 481, 482, 483], "native_id": [365, 481, 483], "native_thread_id": 483, "natp2": 471, "natur": [33, 94, 106, 109, 158, 176, 186, 193, 194, 230, 261, 275, 278, 308, 330, 337, 376, 403, 413, 430, 435, 462, 466, 468, 469, 470, 471, 475, 479, 480, 483], "naur": 434, "nav": [468, 483], "navarret": [478, 483], "navig": [7, 68, 92, 177, 313, 368, 375, 483], "nb": [319, 470], "nb_absolut": 63, "nb_add": [61, 63, 100], "nb_and": 63, "nb_bool": [63, 470], "nb_divmod": 63, "nb_float": 63, "nb_floor_divid": 63, "nb_index": [47, 63, 467], "nb_inplace_add": 63, "nb_inplace_and": 63, "nb_inplace_floor_divid": 63, "nb_inplace_lshift": 63, "nb_inplace_matrix_multipli": 63, "nb_inplace_multipli": 63, "nb_inplace_or": 63, "nb_inplace_pow": 63, "nb_inplace_remaind": 63, "nb_inplace_rshift": 63, "nb_inplace_subtract": 63, "nb_inplace_true_divid": 63, "nb_inplace_xor": 63, "nb_int": 63, "nb_invert": 63, "nb_long": 63, "nb_lshift": 63, "nb_matrix_multipli": 63, "nb_multipli": 63, "nb_negat": 63, "nb_nonzero": 470, "nb_or": 63, "nb_posit": 63, "nb_power": 63, "nb_remaind": 63, "nb_reserv": 63, "nb_rshift": 63, "nb_subtract": 63, "nb_true_divid": 63, "nb_xor": 63, "nbar": 120, "nbit": 259, "nbyte": [96, 126, 133, 142, 282, 284, 314, 326, 337, 344], "ncall": [308, 483], "nchannel": [117, 141, 295, 336, 349, 401], "ncmdshow": 348, "ncol": 177, "ncpl": 103, "ncs": 398, "ncsa": 395, "ncurs": [84, 92, 177, 462, 463, 466, 472, 481, 483], "ncurses6": 483, "ncurses_vers": [177, 481, 483], "ncursesw": [476, 483], "ncycl": 261, "nd": [109, 225, 247, 255, 319, 344, 435], "ndarray": 284, "ndata": [314, 415], "ndb": 483, "ndbm": [68, 298, 330, 428, 456, 481, 483], "nde": [344, 475], "ndebug": 456, "nder": 483, "ndetail": 193, "ndez": 469, "ndiff": [68, 193, 363, 463, 464], "ndiff_output": 190, "ndigit": [221, 225, 428, 444, 483], "ndim": [7, 344], "ndk": [479, 483], "ndstr": [471, 475], "ne": [95, 112, 291, 369], "neal": [288, 465, 467, 468], "near": [28, 101, 167, 184, 186, 190, 247, 267, 269, 275, 283, 293, 297, 428, 436, 464, 465, 467, 468, 469, 470, 474, 475, 478, 483], "nearbi": 483, "nearest": [64, 103, 183, 186, 221, 225, 275, 352, 429, 436, 470, 471, 483], "neat": [106, 169, 464, 469], "neaten": 483, "nec": 149, "necess": [201, 483], "necessari": [33, 49, 61, 63, 64, 72, 73, 76, 77, 84, 85, 93, 94, 95, 99, 100, 101, 102, 106, 112, 115, 120, 133, 139, 155, 158, 161, 167, 169, 177, 184, 186, 193, 194, 195, 196, 205, 206, 207, 208, 209, 213, 225, 226, 242, 243, 247, 248, 250, 261, 266, 267, 270, 271, 272, 275, 278, 283, 288, 292, 293, 299, 302, 308, 332, 335, 337, 340, 341, 344, 346, 347, 348, 353, 355, 356, 362, 364, 365, 374, 376, 384, 388, 405, 408, 410, 412, 415, 419, 422, 428, 429, 430, 431, 436, 461, 464, 465, 467, 468, 469, 471, 474, 476, 477, 478, 479, 481, 483], "necessarili": [13, 23, 61, 63, 72, 76, 85, 100, 115, 177, 186, 193, 196, 205, 251, 271, 275, 283, 293, 299, 319, 337, 340, 344, 352, 353, 366, 385, 410, 415, 425, 426, 436, 461, 465, 467, 468, 469, 483], "ned": [109, 469, 475, 477, 481, 482, 483], "need": [5, 7, 11, 13, 23, 26, 28, 31, 33, 34, 42, 45, 49, 51, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 85, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 117, 120, 122, 132, 137, 138, 139, 141, 144, 149, 151, 153, 155, 157, 158, 161, 167, 169, 173, 176, 177, 179, 181, 183, 186, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 278, 281, 283, 288, 292, 293, 295, 299, 302, 305, 307, 308, 311, 314, 319, 320, 321, 322, 325, 326, 330, 331, 332, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 358, 361, 362, 364, 365, 366, 369, 375, 377, 378, 384, 385, 386, 388, 394, 395, 399, 400, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 428, 430, 431, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "need_special_resourc": 169, "needcurrentdirectoryforexepathw": [332, 474], "needforspe": 467, "needl": 483, "needless": 483, "needn": [33, 319, 347, 480], "needs_input": [149, 270], "nefari": 245, "neg": [186, 226, 261, 291], "negat": [7, 15, 22, 23, 31, 39, 42, 45, 47, 49, 54, 58, 60, 61, 63, 64, 66, 93, 94, 95, 100, 106, 115, 120, 133, 137, 146, 149, 153, 158, 160, 175, 176, 177, 178, 183, 186, 221, 225, 226, 258, 259, 261, 266, 270, 275, 278, 283, 293, 299, 308, 319, 320, 328, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 365, 366, 369, 384, 410, 427, 428, 430, 431, 436, 441, 442, 462, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "negative_sign": 266, "neglect": 405, "neglig": [39, 344, 426], "negoti": [68, 241, 341, 468, 476, 483], "neighbor": [235, 413, 464, 465], "neil": [462, 463, 464, 465, 467, 469, 475, 478, 479, 480, 481, 483], "neither": [33, 76, 95, 99, 103, 106, 133, 144, 158, 181, 186, 191, 193, 196, 205, 209, 242, 262, 270, 271, 283, 292, 293, 299, 319, 338, 340, 341, 344, 352, 376, 380, 386, 388, 403, 425, 426, 428, 430, 455, 474, 477, 479, 480, 483], "nel": 467, "nelem": 42, "nelement": 320, "nelson": 477, "nemec": 480, "nemu": 190, "neon": 211, "neophyt": 85, "nephew": 462, "neptun": [94, 343], "nest": [5, 13, 68, 73, 85, 87, 94, 95, 101, 106, 113, 139, 160, 169, 176, 181, 186, 190, 191, 193, 199, 213, 226, 255, 261, 262, 267, 271, 283, 297, 302, 307, 312, 314, 319, 344, 352, 365, 369, 376, 381, 386, 388, 413, 415, 427, 428, 429, 430, 435, 436, 441, 442, 455, 462, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 483, 484], "nested_scop": [113, 436, 463, 464], "nester": 483, "net": [68, 81, 84, 110, 183, 194, 235, 243, 256, 293, 319, 328, 424, 426, 434, 461, 462, 463, 464, 465, 466, 467, 468, 470, 476, 483], "net4": 99, "net6": 99, "net_loc": 394, "netbsd": [115, 293, 303, 337, 365, 366, 473, 480, 483], "netdb": 483, "netherland": 426, "netlib": 426, "netlink": 467, "netloc": [394, 469, 475], "netlog": 469, "netlogg": 469, "netmask": [99, 259, 478, 483], "netmaskvalueerror": [99, 259], "netrc": [68, 217, 223, 254, 288, 464, 477, 478, 483], "netrcparseerror": 286, "netscap": [177, 243, 271, 403, 463, 466, 468, 474, 483], "netstat": 483, "network": [68, 101, 107, 109, 110, 126, 133, 136, 141, 184, 212, 247, 249, 254, 256, 257, 269, 283, 288, 293, 299, 322, 328, 335, 337, 338, 341, 347, 355, 358, 362, 394, 395, 398, 405, 414, 420, 432, 463, 464, 465, 468, 476, 478, 480, 481, 483], "network_address": 259, "network_authentication_requir": 241, "netzer": 465, "neuburg": 473, "neufeld": 483, "neumaier": 474, "neumann": 428, "neut": 483, "neutral": [64, 73, 99, 477], "neval": 299, "neve": [235, 426, 479], "never": [5, 13, 22, 23, 27, 28, 33, 34, 42, 59, 60, 61, 63, 68, 73, 76, 85, 92, 95, 101, 102, 106, 110, 120, 128, 132, 133, 139, 141, 144, 151, 158, 163, 166, 167, 169, 170, 176, 177, 181, 183, 186, 190, 196, 199, 205, 226, 230, 242, 243, 245, 247, 250, 255, 259, 262, 265, 266, 267, 269, 278, 283, 292, 293, 297, 299, 314, 319, 322, 324, 328, 332, 334, 338, 340, 341, 344, 347, 348, 358, 359, 362, 365, 369, 385, 386, 394, 400, 403, 410, 413, 415, 422, 425, 427, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 470, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483], "never_call_m": 386, "never_eq": 362, "nevertheless": [76, 102, 103, 139, 158, 197, 292, 358, 413, 470], "new": [1, 5, 7, 9, 13, 17, 22, 23, 26, 27, 28, 31, 33, 37, 39, 42, 43, 45, 49, 50, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 68, 72, 73, 75, 76, 79, 84, 85, 87, 92, 93, 94, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 120, 126, 128, 129, 132, 133, 138, 139, 144, 149, 151, 153, 155, 157, 158, 160, 161, 167, 169, 170, 176, 177, 178, 181, 183, 184, 186, 191, 193, 194, 195, 196, 200, 201, 205, 206, 207, 208, 209, 213, 214, 215, 216, 221, 225, 226, 234, 235, 236, 237, 242, 247, 248, 250, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 276, 278, 280, 281, 283, 284, 288, 293, 295, 297, 299, 301, 304, 307, 308, 309, 312, 314, 315, 319, 320, 322, 325, 328, 329, 332, 333, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 355, 358, 361, 362, 365, 366, 369, 375, 376, 380, 382, 384, 385, 386, 388, 389, 394, 395, 399, 403, 405, 410, 411, 412, 413, 415, 416, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 432, 434, 436, 440, 441, 442, 449, 451, 452, 455, 456, 461, 472, 473, 483, 484], "new_arch": 421, "new_attr": 464, "new_attribut": 389, "new_b": 299, "new_cal": 389, "new_child": [160, 477, 483], "new_class": [385, 476, 483], "new_con": 340, "new_cur": 340, "new_deadlin": 139, "new_diff": 318, "new_event_loop": [126, 130, 132, 135, 481], "new_exc": 213, "new_f": 109, "new_fd": 293, "new_featur": 112, "new_fram": 141, "new_game_model": 96, "new_h_len": 320, "new_i": 177, "new_items": 344, "new_l": 85, "new_limit": [175, 467], "new_local": 87, "new_mailbox": 248, "new_mock": [389, 390], "new_modul": 474, "new_nod": 122, "new_non_team_us": 386, "new_panel": 179, "new_path": 84, "new_prefix": 259, "new_pric": 221, "new_rank": 413, "new_read": 299, "new_refcnt": 472, "new_select": 343, "new_sig": 255, "new_siz": [42, 473], "new_str": 319, "new_struct": 468, "new_target": [169, 371], "new_tarinfo": 358, "new_tre": 122, "new_typ": 473, "new_type_com": 431, "new_val": 362, "new_valu": [22, 27, 362], "new_vector": 386, "new_x": 177, "new_york": 425, "newattr": [410, 464], "newbi": [103, 467, 469], "newchild": 410, "newchildren": 376, "newdatatyp": 75, "newdatatype_cal": 75, "newdatatype_dealloc": 75, "newdatatype_getattr": 75, "newdatatype_hash": 75, "newdatatype_repr": 75, "newdatatype_richcmp": 75, "newdatatype_setattr": 75, "newdatatype_str": 75, "newdatatypeobject": 75, "newdict": 85, "newdoc": 411, "newenumnam": 94, "newer": [71, 75, 96, 101, 117, 193, 243, 247, 257, 268, 269, 288, 293, 297, 299, 312, 314, 328, 340, 344, 366, 369, 386, 408, 422, 456, 461, 474, 477, 478, 479, 480, 481, 482, 483], "newest": 139, "newfil": 331, "newfontset": 375, "newfrag": 141, "newfunc": [57, 63, 75, 226], "newgrad": 108, "newgroup": 288, "newindex": 376, "newkey": [389, 390], "newkeyword": 226, "newl": 411, "newli": [5, 42, 59, 68, 73, 85, 101, 139, 157, 161, 181, 191, 232, 243, 258, 283, 293, 302, 332, 334, 337, 375, 376, 384, 410, 427, 428, 466, 468, 474, 476, 479, 480, 483], "newlin": [24, 68, 79, 87, 102, 106, 120, 122, 146, 149, 157, 159, 175, 177, 190, 193, 196, 207, 218, 225, 234, 247, 250, 258, 265, 267, 269, 270, 271, 278, 288, 296, 299, 307, 314, 319, 331, 337, 338, 344, 348, 356, 360, 364, 366, 377, 378, 381, 382, 394, 400, 411, 419, 421, 422, 427, 431, 435, 437, 449, 451, 452, 455, 463, 466, 467, 468, 469, 470, 472, 473, 477, 479, 480, 481, 482, 483, 484], "newline_and_indent_ev": 483, "newloc": 475, "newmailbox": 248, "newnam": [279, 452], "newnew": 288, "newobj": [402, 483], "newobj_ex": 483, "neworsavedgameselector": 96, "newpad": [92, 177], "newpart": 9, "newpath": 279, "newpric": 160, "news": [103, 106, 184, 194, 226, 269, 288, 394, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 483, 484], "newschem": 375, "newscmprio": 375, "newsgroup": [80, 288, 466], "newsiz": [9, 28, 60, 278], "newsocket": 341, "newsread": 271, "newstat": 141, "newstream": 331, "newsyslog": 269, "newtab": 31, "newterm": 177, "newton": [244, 319], "newtyp": [68, 187, 479, 483], "newurl": 395, "newvalu": [389, 390], "newwidth": 141, "newwin": [92, 177], "next": [7, 23, 26, 33, 37, 42, 63, 64, 68, 72, 73, 75, 76, 85, 87, 92, 93, 94, 95, 99, 102, 103, 106, 109, 112, 114, 117, 139, 141, 144, 149, 151, 153, 155, 157, 159, 160, 167, 175, 176, 177, 186, 190, 191, 193, 194, 195, 196, 197, 205, 213, 218, 221, 225, 226, 230, 236, 242, 243, 247, 250, 253, 255, 261, 267, 269, 270, 271, 278, 282, 283, 288, 292, 293, 297, 307, 308, 314, 319, 320, 323, 325, 330, 331, 333, 337, 338, 340, 341, 344, 348, 353, 354, 358, 369, 375, 376, 384, 389, 395, 400, 413, 425, 427, 428, 429, 430, 432, 434, 436, 440, 442, 449, 450, 452, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 475, 476, 478, 480, 481, 482, 484], "next_block": 483, "next_control": 281, "next_i": 261, "next_index": 483, "next_minus": 186, "next_plus": 186, "next_server_avail": 318, "next_toward": 186, "nextaft": [275, 474, 482, 483], "nextfil": 218, "nextkey": 184, "nextsibl": 410, "nez": 483, "nfc": [108, 109, 387, 481], "nfd": [108, 109, 387], "nfkc": [109, 346, 387, 394, 435, 483], "nfkd": [109, 387], "nfl": 308, "nfoo2": 319, "nframe": [117, 336, 349, 382, 401, 455], "nfs": [212, 293, 483], "ng": 483, "ngalim": [482, 483], "ngettext": [230, 483], "nginx": 341, "ngot": 395, "ngroup": 483, "ngroups_max": 483, "nh": 341, "nholm": [472, 473, 481], "nhost": 341, "ni": [77, 307, 394, 446, 467], "ni_": 337, "nibh": 149, "nice": [103, 120, 140, 144, 151, 169, 176, 193, 225, 270, 293, 322, 335, 338, 344, 403, 428, 462, 475, 476], "nice_len": 270, "nicer": [319, 483], "niceti": 468, "nich": 92, "nichola": [109, 465, 472], "nick": [95, 99, 109, 324, 428, 464, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 480, 483], "nicknam": 167, "nicola": 483, "niehof": 476, "niel": 483, "niemey": [230, 464, 465, 466, 467], "nifti": 465, "nigetspamdata": 77, "night": 167, "nikhil": 479, "nikita": [473, 474, 483], "nikla": [472, 473, 483], "nikolaou": [472, 474, 482, 483], "nikolaus": [478, 483], "nikolay": [479, 483], "nil": [419, 465], "nim": 384, "nimstick": 384, "nina": 483, "nine": [109, 186, 355, 477, 483], "nine_year": 183, "ninth": 463, "nir": [469, 475, 476, 480, 483], "nirina": 469, "nis": [68, 233, 254, 350, 467, 473, 474, 483], "nishimura": [318, 426], "nist": [235, 465], "nistpub": 235, "nistspecialpublication800": 235, "nitem": [61, 63], "nitin": 483, "nitish": [480, 483], "nitpick_ignor": 483, "nix": 480, "nkeyboard": 420, "nl": [177, 178, 240, 337, 377, 378, 394, 426, 435, 468, 483], "nl1l": 471, "nl_langinfo": [34, 266, 464, 483], "nlargest": [87, 108, 225, 226, 236, 466, 467, 483], "nline": [177, 188], "nlocal": [13, 142, 385], "nlst": [223, 476], "nmh": 271, "nmro": 103, "nmsmallest": 483, "nmt": 483, "nn": 86, "nng": 102, "nngsockethandl": 102, "nngsocketlisten": 102, "nnn": [225, 240, 395], "nnnn": [478, 483], "nnnnnn": 348, "nntlib": 288, "nntp": [68, 194, 254, 350, 394, 466, 476, 482, 483], "nntp_implement": 288, "nntp_ssl": [288, 475, 482, 483], "nntp_version": 288, "nntpdataerror": 288, "nntperror": [288, 483], "nntplib": [68, 142, 194, 201, 254, 350, 462, 466, 469, 471, 473, 474, 475, 483], "nntppermanenterror": 288, "nntpprotocolerror": 288, "nntpreplyerror": 288, "nntps": 288, "nntptemporaryerror": 288, "no": [5, 7, 11, 13, 17, 18, 22, 23, 24, 26, 27, 31, 33, 34, 35, 37, 39, 41, 42, 45, 46, 49, 51, 53, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 100, 102, 103, 104, 105, 106, 108, 109, 110, 112, 115, 117, 120, 122, 126, 132, 133, 137, 138, 139, 141, 144, 146, 151, 153, 155, 158, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 201, 203, 205, 207, 208, 209, 212, 213, 214, 216, 218, 225, 226, 228, 230, 234, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 283, 284, 288, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 309, 311, 313, 314, 318, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 373, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 441, 443, 444, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "no_block": [11, 483], "no_bug": 73, "no_cach": 425, "no_cont": 241, "no_data_allowed_err": 410, "no_debug_rang": [34, 428, 455, 473], "no_ev": 353, "no_modification_allowed_err": 410, "no_proxi": [395, 483], "no_sit": [34, 352, 475], "no_strict_list_append": 462, "no_trac": 362, "no_type_check": [386, 473, 483], "no_type_check_decor": 386, "no_user_sit": [352, 475], "noah": 483, "noam": 483, "nobodi": [73, 151, 235, 245, 335, 483], "noboundaryinmultipartdefect": 199, "nocbreak": [92, 177], "nodataallowederr": 410, "noddi": 28, "node": [68, 232, 235, 259, 264, 273, 293, 294, 296, 303, 337, 341, 352, 376, 377, 398, 411, 412, 413, 415, 452, 456, 462, 465, 467, 468, 469, 472, 475, 479, 480, 481, 482, 483], "node_depth": 235, "node_group": 232, "node_offset": [235, 483], "node_or_str": 122, "nodefaultcurrentdirectoryinexepath": 332, "nodefaultroot": 483, "nodej": 257, "nodelay": [92, 177], "nodelist": [68, 273, 411, 428], "nodenam": [293, 303, 410], "noderawf": 456, "nodetransform": [122, 468, 483], "nodetyp": [410, 411], "nodev": 483, "nodevalu": 410, "nodevisitor": [122, 468, 481, 483], "nodist": 399, "noecho": [92, 177], "noexpr": 266, "nofar": 483, "noflag": [319, 483], "nofre": 475, "nois": [190, 292, 293, 343, 483], "noisi": [190, 292, 483], "noller": [468, 471], "nome": 95, "nomenclatur": 352, "nomial": 343, "nomin": [68, 122, 187, 483], "nomodificationallowederr": 410, "non": [5, 7, 9, 11, 13, 18, 22, 23, 25, 26, 28, 31, 34, 35, 36, 39, 42, 45, 49, 58, 59, 60, 61, 63, 64, 68, 71, 73, 75, 76, 84, 92, 93, 94, 95, 100, 101, 102, 103, 107, 109, 110, 115, 120, 125, 132, 133, 139, 144, 149, 151, 155, 158, 167, 169, 175, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 215, 223, 225, 226, 228, 230, 233, 234, 235, 237, 242, 243, 245, 247, 248, 250, 252, 253, 257, 258, 259, 261, 265, 266, 268, 269, 273, 275, 276, 278, 283, 285, 288, 292, 293, 295, 296, 297, 298, 299, 302, 305, 308, 311, 314, 316, 319, 320, 322, 328, 331, 332, 333, 334, 335, 337, 338, 342, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 377, 385, 386, 388, 394, 395, 400, 403, 415, 419, 422, 425, 426, 427, 428, 429, 430, 432, 433, 435, 436, 440, 441, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 478, 479, 480, 481, 482, 483], "non_authoritative_inform": 241, "non_existent_fil": 348, "non_existing_attribut": 389, "non_nul": 442, "non_profiled_stuff": 104, "non_release_vers": 303, "nonadjust": 366, "nonam": [193, 422], "nonblock": [295, 483], "noncallablemagicmock": 389, "noncallablemock": [389, 483], "noncod": 101, "noncompli": 305, "nondeterminist": 337, "none": [3, 5, 16, 20, 23, 26, 31, 33, 34, 45, 55, 56, 58, 63, 64, 67, 68, 73, 80, 85, 87, 88, 89, 93, 95, 96, 101, 102, 103, 106, 107, 108, 110, 112, 113, 114, 116, 117, 120, 122, 126, 128, 129, 132, 133, 135, 136, 137, 138, 139, 141, 143, 144, 147, 149, 150, 151, 152, 155, 157, 158, 159, 160, 161, 163, 166, 167, 168, 169, 170, 172, 173, 175, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 216, 218, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 236, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 279, 281, 283, 284, 286, 287, 288, 291, 292, 293, 296, 297, 299, 300, 302, 304, 305, 307, 308, 311, 312, 314, 316, 318, 319, 320, 321, 323, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 343, 344, 345, 347, 348, 349, 352, 353, 355, 358, 359, 360, 362, 364, 365, 366, 367, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 430, 431, 432, 435, 436, 437, 441, 442, 443, 446, 450, 453, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "nonempti": [155, 191, 319, 344, 384, 403, 428], "nonemptyseq": 103, "nonetheless": 248, "nonetyp": [89, 168, 193, 226, 284, 319, 385, 386, 472, 473, 483], "nonexclus": 426, "nonexist": [166, 483], "nonexistentfil": 296, "noninfring": 426, "nonl": 177, "nonloc": [68, 85, 87, 122, 160, 225, 255, 261, 351, 427, 429, 431, 433, 435, 440, 441, 470, 479, 483], "nonlocal_stmt": [431, 436], "nonmemb": [211, 473, 483], "nonmultipart": [206, 483], "nonneg": [5, 149, 186, 270, 337, 384, 430, 436], "nonnorm": 483, "nonprint": [64, 344], "nonrandom": 149, "nonsens": [293, 477], "nonspac": [109, 435], "nonstandard": [340, 456, 467], "nontrivi": 483, "nonzero": [11, 23, 33, 59, 73, 106, 112, 115, 186, 191, 225, 269, 275, 278, 283, 311, 319, 352, 361, 365, 366, 428, 435, 438, 455, 468, 481], "nonzerodigit": 435, "noop": [248, 283, 305, 335, 483], "nooptionerror": [167, 469], "nop": [191, 359, 441, 483], "nope": [167, 441], "nopic": 384, "nopip": 399, "noptarg": 483, "noqiflush": 177, "nor": [23, 33, 34, 63, 75, 76, 84, 89, 94, 99, 103, 110, 133, 144, 158, 191, 242, 243, 270, 283, 292, 293, 297, 299, 302, 319, 330, 338, 340, 341, 344, 352, 353, 376, 380, 386, 388, 403, 425, 426, 428, 430, 455, 456, 474, 475, 477, 479, 480, 483], "noraw": 177, "nordic": 158, "nores": 384, "noreturn": [386, 483], "norm": [275, 483], "normal": [5, 20, 22, 23, 25, 31, 33, 34, 45, 49, 51, 56, 58, 63, 66, 72, 73, 75, 76, 85, 92, 93, 94, 101, 102, 106, 107, 108, 109, 110, 120, 139, 144, 146, 155, 158, 167, 169, 176, 177, 181, 183, 186, 190, 193, 195, 196, 200, 202, 205, 208, 209, 214, 218, 220, 221, 225, 226, 230, 234, 235, 242, 247, 248, 258, 266, 267, 268, 269, 275, 276, 282, 283, 288, 292, 293, 297, 299, 302, 308, 311, 314, 319, 320, 321, 324, 331, 333, 335, 337, 339, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 362, 364, 365, 366, 369, 372, 374, 376, 381, 384, 385, 386, 387, 388, 394, 395, 400, 410, 411, 414, 415, 416, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 461, 463, 468, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "normal_argu": 389, "normal_priority_class": 348, "normaldist": [68, 290, 481, 483], "normalis": [413, 483], "normalizationtest": 483, "normalize_encod": [472, 482, 483], "normalize_whitespac": 193, "normalizestr": 483, "normalvari": [84, 318, 483], "normat": 435, "normcas": [220, 294, 483], "normpath": [293, 294, 469, 483], "north": [94, 183, 376, 384, 469, 471, 483], "northampton": 110, "norvig": 318, "norwegian": [73, 158, 441], "norwitz": [288, 465, 467, 468], "nos": 465, "nose": 469, "nosectionerror": 167, "noshow": 102, "nosigint": [297, 475], "nostra": 467, "nosuchdb": 340, "nosuchfont": 102, "nosuchmailboxerror": 271, "not": [5, 7, 9, 11, 13, 17, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 39, 42, 43, 45, 46, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 80, 84, 87, 89, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 107, 108, 109, 110, 112, 114, 115, 117, 120, 122, 124, 125, 128, 129, 132, 133, 136, 137, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 310, 311, 312, 313, 314, 318, 319, 320, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 348, 349, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 448, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "not_": [95, 291], "not_a_child": 389, "not_a_test": 390, "not_accept": 241, "not_don": 166, "not_export": [362, 483], "not_extend": 241, "not_found": [241, 242, 483], "not_found_err": 410, "not_impl": 241, "not_modifi": 241, "not_non": 473, "not_submock": 389, "not_supported_err": 410, "not_test": 430, "notabl": [68, 100, 137, 191, 266, 283, 333, 340, 353, 400, 425, 463, 465, 466, 467, 468, 469, 471, 478, 479, 484], "notadirectoryerror": [23, 212, 213, 293, 450, 476, 483], "notaft": 341, "notar": 459, "notat": [68, 78, 87, 95, 99, 102, 103, 106, 109, 167, 186, 225, 259, 262, 278, 293, 299, 314, 337, 344, 345, 348, 363, 369, 389, 410, 413, 415, 427, 428, 430, 431, 433, 435, 440, 446, 455, 465, 466, 467, 470, 475, 481, 482, 483], "notation3": 483, "notation_nod": 410, "notationdecl": 415, "notationdeclhandl": 314, "notationnam": 314, "notbefor": 341, "notconnect": 242, "note": [5, 7, 23, 25, 28, 31, 33, 34, 42, 45, 46, 51, 54, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 120, 132, 137, 139, 141, 151, 157, 158, 161, 163, 167, 169, 176, 177, 178, 181, 183, 184, 190, 191, 193, 194, 196, 199, 200, 201, 204, 205, 208, 209, 213, 214, 215, 216, 220, 221, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 253, 255, 256, 257, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 278, 283, 284, 285, 287, 288, 290, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 309, 314, 319, 321, 322, 324, 328, 331, 332, 334, 335, 340, 344, 345, 347, 348, 352, 353, 354, 358, 359, 361, 362, 364, 365, 366, 368, 369, 378, 381, 384, 385, 386, 388, 394, 395, 400, 403, 405, 407, 410, 413, 414, 415, 416, 419, 420, 421, 422, 423, 425, 427, 428, 430, 431, 432, 434, 435, 436, 442, 443, 446, 449, 455, 461, 462, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 478, 479, 480, 481, 482, 483], "note_track": 328, "notebook": [68, 368, 375, 481, 483], "notebooktabchang": 376, "notemptyerror": 271, "notenoughresourceserror": 472, "notenoughscienceerror": 472, "notepad": 158, "noteq": [122, 431], "noteq_bitwise_or": 431, "notequ": 377, "notest": 422, "noteworthi": [271, 462, 463], "notfounderr": 410, "notgener": 386, "noth": [23, 33, 34, 42, 58, 64, 72, 73, 75, 101, 102, 103, 106, 110, 115, 132, 139, 154, 158, 169, 177, 181, 183, 190, 191, 193, 226, 247, 248, 266, 267, 268, 269, 271, 282, 283, 292, 299, 305, 319, 332, 333, 338, 340, 344, 346, 348, 359, 365, 369, 382, 386, 388, 399, 417, 426, 428, 430, 435, 436, 441, 455, 464, 465, 468, 469, 474, 477, 478, 481, 482, 483], "nothead": 103, "notic": [73, 76, 96, 100, 101, 102, 103, 106, 110, 112, 132, 133, 158, 167, 173, 184, 186, 202, 218, 250, 258, 269, 283, 332, 337, 340, 355, 362, 369, 384, 426, 428, 430, 461, 463, 465, 469, 475, 476, 480, 481, 483], "notif": [32, 67, 68, 329, 400, 405, 415, 462, 469, 474, 481, 483], "notifi": [22, 59, 101, 134, 138, 139, 247, 248, 283, 353, 365, 371, 483], "notify_al": [138, 365, 472, 483], "notify_by_email": 386, "notifyal": [365, 472, 483], "notimeout": 177, "notimpl": [49, 68, 94, 116, 168, 213, 226, 250, 289, 299, 385, 389, 430, 450, 469, 470, 472, 477, 482, 483], "notimplementederror": [23, 133, 168, 183, 200, 213, 226, 243, 250, 267, 283, 293, 296, 318, 341, 386, 405, 422, 450, 477, 479, 483], "notimplementedtyp": [168, 385, 472, 483], "notin": [122, 431], "notin_bitwise_or": 431, "notion": [58, 183, 186, 190, 193, 225, 299, 344, 376, 410, 414, 430, 434, 475], "notori": 93, "notrequir": [386, 473, 483], "notset": [101, 267, 268, 283], "notstandalonehandl": 314, "notsupportederr": 410, "notsupportederror": [340, 483], "nottingham": 452, "nottinghamfolk": 452, "notwithstand": [426, 462], "noun": [345, 483], "noutrefresh": [92, 177], "nov": [95, 183, 209, 223, 245, 341, 366, 464, 479], "nova": 453, "novel": [464, 465, 467], "novemb": [78, 150, 183, 435, 483], "novic": 292, "now": [10, 23, 28, 33, 34, 39, 42, 49, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 84, 85, 92, 93, 94, 101, 102, 103, 106, 107, 108, 109, 110, 115, 117, 120, 126, 132, 133, 137, 139, 140, 141, 146, 149, 151, 153, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 200, 202, 205, 212, 213, 214, 215, 216, 218, 221, 225, 226, 230, 234, 235, 242, 243, 244, 245, 248, 250, 251, 252, 255, 258, 259, 262, 266, 267, 268, 269, 270, 271, 275, 278, 282, 283, 284, 288, 292, 293, 295, 297, 299, 304, 305, 308, 309, 311, 313, 314, 319, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 343, 344, 347, 348, 352, 359, 360, 365, 366, 377, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 411, 413, 419, 420, 422, 423, 427, 428, 430, 432, 435, 436, 441, 442, 449, 450, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "nowaday": 358, "nowak": 465, "nowrap": 150, "np": [284, 476], "np0": 471, "np22": 103, "npb": [158, 465], "npgettext": 230, "npj": 476, "npn": [341, 472, 483], "nport": 167, "nptl": 96, "npy_": 319, "npy_myfunc": 319, "npy_relaxed_strides_check": 483, "npython": 468, "nrp3": 471, "ns": [142, 293, 314, 382, 385, 398, 413, 473, 483], "nsec": 367, "nsecond": [258, 449], "nset": 471, "nsig": [333, 483], "nskeyedarchiv": [304, 481], "nskeyedunarchiv": 304, "nsmallest": [87, 108, 225, 226, 236, 466, 467], "nsmallnegint": 483, "nsmallposint": 483, "nss": 341, "nsson": [469, 475, 477], "nstype": 293, "nsubject": 102, "nswe": 376, "nsystem": 299, "nt": [68, 101, 110, 160, 269, 293, 303, 314, 315, 352, 399, 411, 413, 462, 475, 481, 483, 484], "nt4": 468, "nt_gnu_abi_tag": 98, "nt_gnu_build_id": 98, "nt_offset": 377, "nt_stapsdt": 98, "nt_user": [68, 315, 475], "nt_venv": [355, 473, 483], "nteventloghandl": [68, 101, 118, 268], "ntfs": [84, 483], "nth": [7, 261, 376], "nthree": 190, "nto": [102, 335], "ntoh": [107, 337, 472, 480, 483], "ntohl": [107, 337], "ntp": 366, "ntpath": [294, 480, 483], "ntr": 299, "ntransfercmd": 223, "ntree": 190, "ntsc": 477, "ntwo": 190, "nu": [158, 465], "nuanc": 354, "nubi": 468, "nubia": 108, "nuget": [68, 458, 480, 483], "nugetclidl": 461, "nuitka": [78, 85], "nul": [5, 63, 176, 177, 178, 237, 269, 284, 293, 296, 314, 347, 352, 419, 475, 476, 483], "nul_bug_demo": 284, "null": [2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 47, 49, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 72, 75, 76, 79, 93, 100, 102, 109, 122, 175, 176, 191, 225, 227, 243, 262, 272, 281, 284, 287, 293, 299, 318, 319, 337, 340, 341, 347, 348, 405, 408, 410, 411, 422, 431, 435, 436, 462, 466, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "null_ptr": 176, "nullcontext": [169, 472, 480, 483], "nullhandl": [68, 101, 118, 471], "nullifi": 483, "nullimport": [474, 476], "nullptr": 483, "nulltransl": [68, 246, 473], "nulti": 483, "num": [15, 102, 122, 158, 177, 186, 226, 230, 240, 248, 283, 292, 300, 341, 345, 386, 441, 442, 468, 469, 474, 481, 483], "num_act": 261, "num_address": [99, 259], "num_param": 340, "num_request": 102, "num_serv": 318, "num_str": [262, 379], "num_ticket": [341, 483], "numarg": 72, "numarray": 467, "numba": 74, "number": [5, 7, 9, 13, 22, 23, 25, 26, 28, 31, 32, 33, 39, 41, 42, 47, 50, 54, 55, 58, 59, 60, 64, 66, 68, 72, 73, 75, 76, 77, 79, 84, 87, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 106, 108, 109, 112, 115, 116, 117, 118, 120, 122, 126, 132, 133, 137, 138, 139, 141, 144, 146, 149, 151, 152, 155, 158, 160, 163, 166, 167, 170, 173, 175, 176, 177, 183, 186, 190, 191, 193, 195, 196, 199, 202, 203, 205, 208, 211, 212, 213, 214, 215, 216, 218, 221, 225, 226, 230, 234, 235, 240, 242, 244, 245, 247, 248, 250, 251, 254, 255, 257, 258, 259, 261, 264, 266, 267, 269, 270, 271, 272, 274, 275, 276, 278, 281, 283, 285, 288, 290, 292, 295, 297, 299, 304, 305, 307, 308, 312, 313, 314, 315, 318, 319, 320, 321, 322, 324, 325, 326, 328, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 352, 353, 358, 359, 362, 364, 365, 366, 367, 369, 376, 377, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 400, 402, 403, 405, 406, 407, 408, 410, 413, 414, 416, 417, 419, 422, 425, 427, 430, 431, 432, 434, 435, 436, 441, 442, 443, 444, 445, 450, 451, 452, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "number_class": 186, "number_of_process": 283, "number_of_subs_mad": 319, "numberstest": [388, 477], "numer": [7, 41, 47, 63, 64, 68, 85, 95, 101, 102, 106, 109, 110, 144, 147, 154, 158, 177, 186, 191, 209, 212, 213, 221, 225, 233, 234, 238, 240, 242, 245, 261, 262, 266, 267, 275, 283, 289, 290, 293, 302, 308, 314, 319, 325, 331, 335, 337, 340, 341, 343, 344, 345, 352, 369, 376, 377, 384, 387, 388, 395, 413, 419, 422, 430, 449, 461, 463, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 481, 483], "numeric_level": 101, "numeric_own": [358, 478, 483], "numeric_typ": 344, "numfre": 468, "numinput": [384, 483], "numlin": 190, "numliter": 112, "nummessag": 305, "numpi": [2, 68, 85, 121, 225, 284, 299, 343, 444, 450, 453, 461, 467, 468, 473, 475, 476, 478, 483], "nunc": 149, "nurpmeso": 475, "nurseri": 483, "nvlpub": 235, "nw": 369, "nwfu0wseb0krcjhdep": 235, "nworld": 364, "nx": 319, "nxn": [95, 464, 465], "nyayapati": 483, "nyberg": 483, "nyman": 465, "nz": 243, "nzerodivisionerror": 102, "o0": [362, 483], "o1": [47, 49, 54, 78, 181], "o2": [47, 49, 54, 78, 181, 306, 402], "o3": [47, 72], "o_append": [282, 293], "o_async": 293, "o_binari": [33, 34, 282, 293], "o_cloexec": [293, 476, 483], "o_creat": 293, "o_direct": 293, "o_directori": 293, "o_dsync": 293, "o_evton": [293, 472, 483], "o_excl": [293, 360], "o_exlock": [215, 293, 467, 483], "o_fsync": [293, 472, 483], "o_ndelay": [107, 215, 293], "o_noatim": 293, "o_noctti": 293, "o_nofollow": 293, "o_nofollow_ani": [293, 472, 483], "o_noinherit": 293, "o_nonblock": [107, 293, 476, 478, 483], "o_path": [293, 477, 483], "o_random": 293, "o_rdon": [225, 282, 283, 293], "o_rdwr": [293, 333], "o_rsync": 293, "o_sequenti": 293, "o_shlock": [215, 293, 467, 483], "o_short_liv": 293, "o_symlink": [293, 472, 483], "o_sync": 293, "o_temporari": [293, 360], "o_text": [33, 282, 293], "o_tmpfil": [293, 360, 477, 483], "o_trunc": 293, "o_wron": [293, 333], "ob": [12, 19, 20, 29, 56, 67, 402, 473], "ob1": 483, "ob_bas": [57, 58, 76, 96, 483], "ob_digit": [96, 483], "ob_fval": 76, "ob_refcnt": [57, 63, 96, 472, 483], "ob_shash": [473, 474, 483], "ob_siz": [57, 58, 63, 96, 473, 483], "ob_typ": [57, 63, 76, 96, 473, 483], "oberkirch": [478, 480, 483], "obershelp": 190, "obey": [110, 331, 348, 365, 428, 468], "obj": [7, 9, 10, 23, 24, 26, 28, 33, 36, 39, 43, 45, 48, 49, 52, 63, 64, 75, 77, 78, 84, 85, 87, 93, 94, 95, 102, 112, 129, 139, 142, 158, 161, 176, 179, 181, 191, 193, 197, 208, 211, 213, 225, 227, 255, 259, 262, 278, 283, 291, 299, 321, 344, 345, 362, 382, 386, 388, 389, 402, 428, 431, 440, 441, 462, 463, 464, 465, 466, 467, 468, 472, 473, 478, 480, 481, 483], "obj1": [75, 466], "obj2": [75, 466], "obj_addr": 58, "obj_or_typ": 176, "obj_tot": 95, "obj_underlyingdatatypeptr": 75, "objdump": 176, "object": [5, 6, 7, 11, 13, 14, 16, 17, 20, 22, 25, 26, 28, 31, 32, 33, 34, 35, 37, 39, 41, 43, 45, 46, 47, 49, 53, 54, 55, 59, 61, 64, 66, 67, 68, 72, 73, 74, 76, 77, 78, 80, 87, 92, 95, 96, 103, 104, 106, 108, 109, 110, 115, 116, 117, 118, 119, 121, 125, 126, 129, 133, 136, 137, 138, 141, 142, 144, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 163, 164, 167, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 184, 187, 188, 189, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 204, 205, 206, 207, 209, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 224, 225, 227, 229, 230, 231, 233, 234, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 261, 264, 269, 270, 271, 273, 274, 276, 278, 282, 285, 288, 290, 291, 292, 294, 297, 298, 302, 304, 305, 307, 308, 310, 313, 314, 315, 322, 323, 324, 329, 331, 332, 333, 335, 336, 337, 339, 341, 345, 347, 349, 351, 352, 355, 358, 360, 361, 362, 363, 364, 366, 369, 371, 374, 378, 380, 381, 382, 385, 386, 387, 388, 390, 394, 397, 399, 400, 401, 402, 404, 406, 407, 411, 412, 413, 414, 415, 417, 420, 421, 423, 424, 425, 426, 427, 429, 430, 432, 433, 436, 440, 441, 442, 446, 449, 450, 452, 455, 456, 459, 461, 462, 463, 464, 467, 470, 471, 472, 474, 475, 476, 478, 479, 480, 481, 482, 483, 484], "object_getattribut": 93, "object_hook": [262, 483], "object_list": 283, "object_new": 93, "object_or_typ": 225, "object_pairs_hook": [262, 469, 471], "object_parts_hook": 262, "object_to_patch": 362, "objectnam": 102, "objectwis": 462, "objimpl": 462, "objn": 466, "objobjargproc": [57, 63], "objobjproc": [57, 63], "objtyp": 93, "oblig": [353, 426, 462], "obmalloc": [42, 96, 463, 465, 467, 477, 482, 483], "obscur": [183, 193, 468, 477, 478, 480, 483], "observ": [13, 27, 85, 94, 102, 183, 208, 318, 343, 348, 382, 384, 394, 436, 464, 476, 483], "observed_diff": 318, "obsolesc": 305, "obsolet": [73, 92, 151, 213, 243, 262, 267, 314, 344, 366, 394, 400, 403, 408, 419, 462, 463, 464, 467, 469, 474, 475, 477, 478, 479, 483], "obstacl": [241, 483], "obtain": [7, 31, 64, 92, 99, 101, 103, 106, 137, 149, 151, 152, 153, 177, 183, 186, 190, 196, 197, 203, 205, 208, 215, 225, 235, 248, 258, 259, 261, 266, 267, 268, 269, 270, 278, 283, 292, 293, 308, 311, 313, 319, 337, 341, 344, 348, 366, 395, 399, 413, 414, 415, 426, 427, 430, 436, 461, 462, 464, 465, 467, 468, 475, 476, 477, 478, 479, 480, 483], "obtrus": 483, "obufcount": 295, "obuffre": 295, "obvious": [63, 73, 95, 101, 102, 103, 106, 167, 177, 186, 267, 292, 295, 299, 308, 323, 347, 348, 362, 379, 413, 461, 462, 466, 467, 479, 483], "ocaml": 95, "occas": [109, 110, 297, 313, 333, 347, 362, 467, 477], "occasion": [72, 84, 102, 120, 169, 177, 186, 190, 201, 205, 230, 247, 271, 292, 293, 365, 436, 462, 467, 468, 475, 483], "occupi": [73, 109, 117, 283, 322, 376, 477], "occur": [5, 7, 13, 17, 18, 22, 23, 31, 39, 42, 45, 49, 59, 63, 64, 66, 73, 75, 79, 85, 93, 95, 99, 101, 102, 109, 120, 122, 137, 139, 144, 151, 152, 157, 158, 167, 169, 170, 177, 181, 183, 186, 190, 191, 193, 203, 212, 213, 218, 228, 230, 247, 250, 255, 261, 267, 269, 270, 271, 288, 292, 293, 297, 299, 302, 311, 314, 319, 328, 332, 333, 335, 337, 344, 345, 348, 352, 353, 358, 362, 364, 365, 366, 369, 371, 376, 381, 384, 385, 386, 388, 395, 400, 403, 407, 410, 412, 413, 415, 419, 422, 427, 428, 429, 430, 432, 435, 436, 443, 452, 465, 467, 468, 469, 470, 472, 475, 476, 477, 480, 481, 482, 483], "occurr": [54, 64, 85, 106, 160, 167, 177, 186, 196, 205, 228, 271, 292, 319, 328, 344, 358, 386, 400, 413, 428, 429, 430, 431, 434, 435, 436, 464, 466, 467, 470, 475, 483], "ocert": [428, 455], "ocfs2": 215, "ochoa": 483, "ocsp": [341, 477], "oct": [85, 95, 102, 183, 211, 223, 225, 341, 344, 345, 352, 367, 428, 450, 464, 468, 470, 483], "octagon": 384, "octal": [64, 85, 106, 112, 151, 184, 259, 292, 293, 319, 344, 345, 435, 462, 463, 465, 466, 468, 470, 472, 473, 474, 475, 480, 481, 482, 483], "octdigit": [345, 435], "octet": [99, 200, 206, 259, 305, 345, 394, 483], "octinteg": 435, "octob": [103, 150, 183, 462, 464, 465, 468, 474, 481, 482], "od": [160, 469, 472, 475, 483], "od1": [160, 469], "od2": [160, 469], "odd": [64, 92, 95, 153, 186, 235, 308, 348, 435, 441, 462, 465, 466, 467, 469, 483], "oddbal": 292, "odditi": 483, "odict": 483, "odictobject": [472, 483], "odm": 483, "odomet": 261, "odziej": [479, 483], "oe": 471, "oem": [158, 479, 483], "of": [1, 5, 6, 7, 9, 11, 13, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 87, 89, 91, 92, 96, 103, 105, 106, 108, 109, 110, 112, 113, 114, 115, 117, 118, 119, 120, 122, 123, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 147, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 170, 173, 175, 176, 177, 178, 179, 180, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 280, 281, 282, 284, 287, 288, 290, 292, 295, 296, 297, 298, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 349, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 374, 375, 376, 377, 378, 379, 380, 381, 383, 385, 387, 388, 389, 394, 395, 397, 398, 402, 403, 405, 406, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 420, 421, 423, 425, 426, 427, 430, 431, 432, 433, 434, 436, 440, 441, 442, 443, 444, 446, 448, 449, 450, 451, 452, 455, 457, 458, 459, 463, 464, 465, 466, 467, 468, 471, 472, 473, 475, 476, 482, 483, 484], "ofey": [474, 483], "off": [68, 84, 92, 95, 101, 102, 106, 110, 112, 120, 155, 167, 176, 177, 183, 190, 191, 200, 208, 209, 216, 225, 232, 243, 247, 267, 268, 269, 290, 292, 301, 305, 308, 315, 331, 335, 344, 361, 362, 366, 376, 384, 388, 395, 420, 428, 432, 435, 436, 448, 455, 462, 463, 464, 465, 466, 467, 468, 470, 475, 477, 478, 479, 481, 482, 483], "off_t": 306, "offend": [429, 443, 463], "offer": [33, 63, 73, 84, 91, 92, 93, 94, 95, 99, 101, 102, 109, 157, 161, 186, 216, 225, 235, 258, 261, 267, 268, 269, 271, 283, 297, 319, 320, 324, 332, 337, 340, 344, 348, 354, 365, 366, 395, 405, 408, 416, 426, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 477, 481, 482, 483], "offic": [194, 426], "offici": [33, 103, 105, 158, 195, 209, 276, 295, 341, 369, 388, 411, 419, 428, 461, 462, 463, 464, 467, 469, 475, 476, 478, 480, 482, 483], "offlin": [288, 382, 461], "offload": 283, "offscreen": 376, "offset": [7, 10, 20, 22, 23, 26, 28, 58, 61, 63, 75, 76, 84, 93, 98, 122, 126, 141, 142, 153, 176, 183, 186, 191, 203, 209, 213, 215, 223, 235, 240, 255, 258, 271, 278, 283, 293, 306, 314, 337, 340, 347, 353, 358, 362, 366, 379, 381, 415, 422, 425, 428, 446, 455, 462, 467, 468, 472, 475, 476, 480, 483], "offset_data": 358, "offset_dst": 293, "offset_src": 293, "offsetof": [58, 76, 474], "offvalu": 369, "oflag": 361, "ofs": 176, "often": [11, 13, 33, 58, 64, 73, 75, 76, 84, 85, 92, 93, 95, 99, 102, 106, 109, 110, 120, 146, 151, 155, 176, 183, 184, 186, 190, 193, 194, 213, 225, 230, 233, 255, 267, 281, 292, 299, 308, 309, 311, 331, 337, 340, 341, 344, 346, 348, 354, 362, 365, 366, 369, 386, 395, 414, 428, 430, 434, 435, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 478, 481, 483], "og": [319, 362, 483], "ogam": 483, "ogr": 319, "ohioe": 84, "oid": [341, 398, 402, 483], "ois": [230, 476, 477, 478], "ok": [25, 73, 110, 177, 189, 193, 223, 241, 242, 243, 245, 248, 292, 335, 341, 373, 375, 386, 388, 407, 441, 466, 473, 474, 475, 483], "ok_command": 189, "ok_ev": 189, "okano": [482, 483], "okay": [33, 94, 120, 167, 266, 386], "okcancel": 373, "oksman": 483, "oktob": 435, "old": [5, 9, 13, 23, 42, 45, 58, 59, 60, 64, 68, 73, 85, 101, 103, 105, 106, 112, 120, 151, 160, 169, 176, 177, 187, 196, 205, 225, 226, 243, 248, 250, 262, 268, 269, 271, 276, 283, 292, 293, 297, 299, 304, 308, 330, 333, 340, 343, 344, 352, 358, 361, 362, 369, 381, 382, 384, 386, 410, 415, 427, 428, 430, 435, 436, 462, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "old_arch": 421, "old_binascii": 100, "old_factori": [102, 267], "old_level": 102, "old_method": 390, "old_nod": 122, "old_password": 167, "old_path": 84, "old_pric": 221, "old_snapshot": 382, "old_target": 371, "old_tarinfo": 358, "old_valu": 170, "old_width": 141, "oldattr": 410, "oldb": 386, "oldchild": 410, "olddict": 85, "older": [5, 33, 61, 63, 68, 73, 75, 78, 92, 96, 102, 119, 120, 164, 177, 186, 190, 202, 230, 235, 247, 251, 252, 268, 288, 293, 295, 297, 299, 314, 328, 340, 352, 354, 362, 369, 377, 386, 395, 415, 422, 430, 432, 462, 465, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "oldest": [139, 227, 269, 365, 382, 469, 475, 480, 481, 483], "oldmailbox": 248, "oldmask": 177, "oldmodul": 362, "oldnam": 279, "oldpackag": 467, "oldpars": [455, 482, 483], "oldpath": 279, "oldt": 386, "oldweirdtrio": 386, "oledl": [176, 468, 483], "oleg": [467, 474, 483], "oleksandr": [482, 483], "oliph": [467, 468, 469], "oliv": [462, 483], "oliva": 483, "olivedrab1": 376, "olivedrab2": 376, "oliveira": 483, "olivi": [481, 483], "olko": 483, "olsen": [84, 468, 469], "olson": [183, 483], "omar": [479, 480, 483], "omg": [410, 411], "omiss": [255, 314, 337, 483], "omit": [23, 60, 68, 75, 102, 104, 106, 117, 120, 153, 167, 176, 177, 183, 190, 193, 200, 201, 202, 204, 213, 225, 230, 234, 245, 247, 248, 252, 258, 259, 265, 266, 271, 276, 278, 283, 288, 292, 293, 297, 299, 305, 314, 319, 320, 328, 331, 332, 334, 335, 337, 340, 344, 345, 358, 365, 376, 381, 384, 386, 388, 400, 411, 413, 414, 421, 426, 427, 428, 430, 431, 435, 436, 455, 461, 465, 466, 467, 469, 470, 476, 477, 479, 480, 483], "omit_suffix": 362, "on": [1, 5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 39, 41, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 80, 85, 86, 89, 91, 92, 93, 94, 96, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 120, 122, 132, 133, 136, 137, 138, 139, 141, 144, 146, 153, 155, 157, 158, 161, 163, 164, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 209, 212, 213, 215, 220, 221, 224, 225, 228, 232, 233, 234, 235, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 289, 292, 293, 295, 296, 297, 298, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 334, 335, 338, 339, 340, 342, 344, 345, 346, 347, 352, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 368, 369, 371, 375, 376, 378, 381, 382, 384, 385, 386, 387, 388, 394, 395, 397, 398, 399, 400, 403, 405, 406, 407, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 442, 446, 448, 449, 451, 455, 456, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "on_cleanup": 388, "on_con_lost": 133, "on_delet": [33, 483], "on_error": [296, 386], "on_fals": 85, "on_mot": 371, "on_or_off": 193, "on_releas": 371, "on_success": 386, "on_tru": 85, "on_upd": 386, "onc": [5, 7, 13, 22, 23, 24, 28, 33, 34, 56, 59, 61, 63, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 100, 101, 102, 106, 109, 117, 120, 132, 133, 139, 149, 151, 155, 158, 159, 160, 163, 167, 169, 186, 190, 193, 196, 205, 218, 226, 230, 234, 235, 244, 245, 247, 250, 251, 255, 258, 261, 267, 268, 269, 270, 271, 283, 284, 288, 292, 293, 295, 299, 308, 314, 319, 320, 328, 329, 332, 333, 334, 337, 338, 340, 341, 344, 347, 353, 354, 358, 362, 365, 369, 382, 384, 386, 388, 389, 390, 395, 399, 400, 403, 410, 411, 413, 415, 416, 427, 428, 430, 431, 432, 436, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 470, 474, 475, 476, 478, 480, 481, 482, 483], "onceregistri": 483, "onclick": 384, "onder": [474, 483], "ondrag": 384, "ondrej": 465, "one": [5, 7, 9, 11, 13, 23, 24, 25, 28, 31, 33, 34, 42, 43, 45, 47, 49, 51, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 87, 89, 91, 92, 93, 94, 95, 96, 99, 101, 102, 103, 106, 109, 110, 112, 115, 117, 119, 120, 122, 132, 133, 135, 137, 138, 139, 141, 144, 146, 151, 153, 155, 157, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 181, 183, 186, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 213, 215, 216, 218, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 311, 314, 318, 319, 320, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 400, 405, 407, 408, 410, 411, 412, 413, 415, 419, 422, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 443, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "one_way": 400, "onecmd": 155, "oneith": 461, "onelineexceptionformatt": 102, "oneof": 93, "onerror": [142, 293, 302, 332, 474, 480, 483], "onexc": [332, 474, 483], "ongo": [461, 480], "onion": 340, "onkey": 384, "onkeypress": 384, "onkeyreleas": 384, "onli": [5, 7, 9, 10, 13, 22, 23, 26, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 49, 51, 54, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 107, 108, 109, 110, 112, 115, 117, 120, 122, 132, 135, 137, 138, 139, 141, 143, 144, 146, 149, 151, 153, 155, 158, 160, 161, 163, 166, 167, 169, 170, 176, 177, 179, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 221, 225, 226, 227, 228, 230, 232, 234, 235, 242, 243, 244, 245, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 287, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 311, 312, 313, 314, 315, 318, 319, 320, 322, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 356, 358, 361, 362, 364, 365, 366, 368, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 397, 399, 400, 403, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 445, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 482, 483, 484], "onlin": [313, 369, 384, 399, 414, 464, 468], "only_key": 425, "onlyexplicitinlin": 483, "onor": 441, "onreleas": 384, "onscreenclick": 384, "onstott": 483, "ont": 297, "ontim": 384, "onto": [169, 177, 191, 248, 299, 307, 331, 346, 384, 386, 388, 432, 462, 468, 474, 483], "ontosi": 419, "onvalu": 369, "onward": [95, 102, 186, 221, 255, 333, 340, 483], "oo": [60, 352, 362, 450, 455, 471, 478, 483], "ooi": 76, "ooo": [183, 435], "oop": [193, 443], "oor": 176, "op": [3, 10, 15, 27, 28, 33, 37, 39, 49, 63, 64, 75, 85, 122, 138, 177, 191, 230, 269, 283, 293, 319, 337, 340, 352, 365, 377, 378, 407, 465, 468, 472, 473, 474, 480, 483], "op1": 430, "op2": 430, "op_": 341, "op_al": 341, "op_cipher_server_prefer": [341, 476, 483], "op_enable_ktl": [341, 483], "op_enable_middlebox_compat": [341, 483], "op_ignore_unexpected_eof": [341, 472, 483], "op_legacy_server_connect": [341, 483], "op_no_compress": [341, 476, 483], "op_no_renegoti": [341, 483], "op_no_ssl": [341, 483], "op_no_sslv2": [341, 472, 475, 483], "op_no_sslv3": [341, 472, 483], "op_no_ticket": 341, "op_no_tl": 341, "op_no_tlsv1": [341, 472], "op_no_tlsv1_1": [341, 472], "op_no_tlsv1_2": [341, 472], "op_no_tlsv1_3": [341, 472, 483], "op_single_dh_us": [341, 483], "op_single_ecdh_us": [341, 483], "opaqu": [11, 13, 26, 33, 35, 39, 61, 63, 96, 116, 171, 258, 314, 329, 342, 408, 413, 463, 474, 475, 477, 480, 481, 482, 483], "oparg": [96, 191, 474, 483], "opcod": [33, 68, 190, 264, 299, 300, 352, 428, 465, 466, 468, 469, 472, 474, 477, 479, 480, 481, 482, 483], "opcodeinfo": 300, "open": [24, 33, 34, 41, 51, 66, 68, 73, 78, 84, 87, 92, 95, 101, 106, 109, 112, 117, 120, 126, 133, 136, 140, 142, 148, 149, 151, 155, 158, 160, 167, 169, 175, 177, 183, 184, 188, 189, 190, 200, 207, 208, 212, 213, 214, 215, 218, 219, 223, 225, 230, 234, 235, 240, 242, 243, 245, 247, 248, 249, 250, 253, 254, 255, 258, 265, 266, 267, 268, 269, 270, 271, 276, 278, 280, 281, 283, 288, 293, 294, 295, 296, 299, 301, 302, 305, 309, 313, 314, 320, 322, 326, 328, 330, 331, 333, 335, 336, 337, 340, 341, 342, 344, 348, 349, 352, 356, 358, 359, 360, 362, 365, 369, 375, 376, 378, 379, 381, 384, 386, 389, 390, 395, 397, 401, 403, 405, 407, 411, 413, 414, 416, 419, 421, 422, 425, 426, 427, 428, 435, 438, 440, 443, 446, 450, 451, 452, 455, 461, 462, 463, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "open_binari": [252, 473, 474], "open_cod": [24, 258, 483], "open_connect": [124, 126, 133, 136, 478, 480, 483], "open_flag": 184, "open_ftp": 483, "open_func": 467, "open_help": 386, "open_item": 467, "open_mod": 142, "open_new": [403, 467], "open_new_tab": [403, 467], "open_osfhandl": [142, 282], "open_resourc": [250, 253], "open_sequence_pattern": [427, 431], "open_side_effect": 390, "open_text": [252, 473, 474], "open_unix_connect": [124, 136], "open_unknown": 395, "open_urlresourc": 362, "openat2": 483, "openbsd": [68, 115, 223, 278, 293, 337, 365, 366, 458, 478, 480, 483], "opendatabas": [281, 483], "opendir": [293, 483], "openerdirector": [68, 110, 256, 477], "openexr": [249, 478, 483], "openfp": [480, 482, 483], "opengraph": 483, "openhook": [218, 467, 483], "openkey": [142, 405], "openkeyex": 405, "openlog": [142, 356, 474, 483], "openmix": 295, "openmp": 483, "openprocess": 142, "openpti": [293, 309, 483], "opensourc": 426, "openssl": [68, 235, 237, 341, 362, 456, 458, 462, 467, 468, 469, 472, 474, 475, 477, 478, 479, 480, 482, 483], "openssl_add_all_algorithms_noconf": 483, "openssl_api_compat": 483, "openssl_cafil": 341, "openssl_cafile_env": 341, "openssl_capath": 341, "openssl_capath_env": 341, "openssl_no_tlsext": 341, "openssl_vers": [341, 469, 475], "openssl_version_info": [341, 469, 475], "openssl_version_numb": [341, 469, 475], "openssldir": 460, "opensus": 460, "openview": [281, 483], "openvm": 465, "openwrapp": [474, 483], "oper": [5, 7, 22, 23, 28, 33, 37, 41, 42, 47, 49, 54, 59, 63, 64, 66, 68, 72, 73, 75, 76, 77, 84, 87, 92, 93, 94, 101, 102, 103, 106, 109, 110, 112, 113, 118, 119, 122, 126, 133, 139, 141, 142, 144, 147, 151, 161, 166, 167, 169, 173, 176, 177, 183, 184, 186, 191, 194, 195, 196, 200, 201, 202, 205, 207, 208, 212, 213, 215, 216, 219, 220, 221, 224, 225, 227, 230, 242, 245, 247, 250, 251, 254, 255, 256, 257, 258, 261, 266, 267, 269, 270, 271, 275, 276, 283, 289, 295, 296, 299, 308, 309, 313, 314, 319, 320, 322, 328, 330, 331, 333, 335, 337, 340, 342, 345, 347, 348, 352, 353, 355, 358, 359, 361, 362, 365, 369, 376, 378, 384, 385, 386, 394, 395, 399, 400, 403, 404, 405, 410, 411, 413, 416, 419, 422, 425, 427, 428, 429, 431, 432, 433, 434, 436, 442, 443, 446, 449, 455, 456, 461, 462, 463, 465, 466, 467, 468, 469, 474, 475, 476, 479, 480, 481, 483, 484], "opera": [160, 403, 467, 483], "operand": [63, 68, 89, 122, 158, 183, 191, 193, 213, 225, 267, 290, 344, 428, 430, 436, 443, 449, 464, 469, 470, 475, 476, 483], "operationalerror": [340, 483], "opid": 49, "opinion": [91, 462, 467], "opmap": 191, "opn": 430, "opnam": [85, 191, 362, 477], "opportun": [133, 139, 158, 325, 461, 483], "oppos": [76, 92, 106, 157, 201, 208, 247, 337, 395, 432, 468, 478, 483], "opposit": [95, 106, 109, 209, 259, 319, 384, 428, 462, 468, 470, 483], "ops": [33, 122, 341], "opt": [68, 72, 167, 190, 228, 250, 292, 299, 306, 338, 432, 450, 455, 456, 465, 468, 469, 474, 475, 477, 478, 480, 483], "opt_str": 292, "optcr": 167, "optic": 475, "optik": [465, 466, 467], "optim": [27, 34, 42, 58, 63, 66, 68, 76, 85, 96, 106, 128, 133, 139, 141, 158, 163, 177, 191, 211, 225, 235, 243, 250, 255, 265, 293, 299, 300, 308, 311, 337, 340, 352, 362, 365, 366, 422, 427, 428, 436, 456, 461, 462, 464, 465, 466, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "optim_args_from_interpreter_flag": 362, "optimi": 483, "optimis": [382, 428, 483], "optimization_level": [33, 34, 474], "optimize_cfg": 483, "optimized_bytecode_suffix": 250, "optimizedunicod": [472, 473, 474, 483], "optimizer_id": 353, "option": [5, 23, 33, 34, 42, 47, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 78, 88, 89, 92, 93, 94, 95, 96, 100, 101, 102, 106, 109, 110, 112, 115, 118, 119, 122, 126, 128, 135, 137, 139, 141, 146, 151, 152, 153, 155, 157, 158, 160, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 185, 186, 187, 189, 190, 191, 195, 196, 197, 200, 201, 202, 204, 205, 206, 207, 209, 213, 214, 216, 218, 221, 223, 225, 226, 228, 230, 234, 235, 241, 242, 245, 248, 250, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 276, 278, 281, 283, 288, 293, 295, 297, 299, 305, 307, 308, 309, 311, 312, 313, 314, 319, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 340, 341, 344, 345, 346, 347, 348, 352, 354, 355, 356, 359, 362, 364, 365, 366, 368, 370, 372, 373, 375, 378, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 403, 407, 411, 413, 414, 415, 417, 419, 420, 421, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 449, 458, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "option_class": 292, "option_list": 292, "option_str": 120, "optional_var": 122, "optionalreleas": 113, "optionconflicterror": 292, "optioncontain": 292, "optionerror": [120, 292], "optionflag": 193, "optiongroup": 292, "optionmenu": [375, 483], "optionpars": [120, 292, 465, 467], "optionvalu": 292, "optionvalueerror": [120, 292], "optionxform": 167, "optlen": [337, 479], "optlist": 228, "optnam": [337, 479], "optpars": [68, 89, 118, 254, 350, 466, 467, 469, 475, 479, 483], "optparse_pars": 292, "optval": 337, "opus": 483, "or": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 86, 87, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 103, 105, 106, 108, 109, 110, 112, 113, 115, 117, 118, 122, 123, 126, 128, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 146, 147, 149, 151, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 167, 168, 169, 170, 173, 175, 177, 178, 179, 181, 182, 184, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 287, 288, 291, 292, 293, 295, 296, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 428, 429, 430, 431, 432, 434, 435, 436, 442, 443, 445, 448, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "or_": [95, 291], "or_expr": [430, 435], "or_pattern": [427, 431], "or_test": 430, "oracl": [184, 340, 467, 476, 483], "oran": 483, "orang": [102, 160, 291, 384, 442, 471, 483], "orbit": 343, "orbital_period": 343, "orchestr": 102, "ord": [92, 109, 120, 122, 176, 178, 225, 340, 344, 389, 428, 430, 450, 462, 468], "order": [4, 7, 13, 28, 31, 33, 34, 43, 45, 58, 59, 63, 64, 68, 72, 73, 75, 76, 87, 92, 93, 94, 95, 97, 99, 100, 101, 102, 106, 108, 109, 110, 112, 116, 118, 120, 133, 139, 145, 147, 149, 151, 153, 155, 158, 160, 167, 169, 177, 178, 179, 183, 184, 186, 190, 191, 193, 196, 200, 202, 203, 205, 208, 213, 214, 218, 224, 225, 228, 230, 233, 236, 245, 247, 248, 250, 254, 255, 259, 261, 262, 266, 267, 269, 271, 275, 281, 283, 288, 293, 295, 299, 302, 303, 304, 307, 308, 309, 313, 314, 315, 316, 318, 319, 325, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 344, 345, 348, 352, 353, 358, 362, 364, 365, 366, 369, 376, 381, 382, 384, 385, 386, 388, 389, 394, 395, 400, 410, 411, 413, 415, 421, 422, 427, 428, 429, 431, 432, 433, 435, 440, 442, 443, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483, 484], "order_default": 386, "order_mock": 389, "order_mock_inst": 389, "ordered_attribut": 314, "ordereddict": [68, 87, 167, 175, 182, 255, 344, 386, 469, 471, 473, 475, 478, 479, 481, 482, 483], "orderedenum": 68, "orderedset": 161, "ordin": [64, 94, 109, 158, 176, 178, 183, 343, 344, 476, 478], "ordinari": [92, 101, 106, 151, 169, 193, 225, 234, 319, 330, 333, 340, 343, 358, 413, 432, 435, 436, 462, 476, 483], "ordinarili": [206, 331], "ore": [63, 178, 190, 193, 293, 319, 341, 369, 406], "oreillynet": 464, "orels": [122, 468], "oren": [465, 474, 476, 480, 483], "orendorff": [465, 468], "oreo": 244, "orest": 483, "org": [1, 57, 68, 75, 78, 79, 84, 87, 95, 102, 103, 107, 109, 110, 111, 126, 160, 166, 167, 169, 184, 223, 226, 235, 239, 240, 242, 243, 247, 248, 283, 288, 303, 307, 313, 314, 319, 328, 335, 337, 340, 341, 352, 355, 387, 394, 395, 396, 398, 403, 411, 413, 415, 419, 426, 428, 435, 444, 445, 451, 453, 454, 455, 458, 459, 460, 462, 463, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 478, 480, 481, 482, 483], "organ": [68, 84, 95, 100, 102, 106, 187, 193, 341, 426, 432, 465, 482, 483], "organis": [101, 102, 267], "organiz": [87, 341, 428], "organizationalunitnam": 341, "organizationnam": 341, "orgnam": 101, "orient": [7, 42, 68, 76, 85, 87, 93, 95, 109, 133, 155, 201, 222, 283, 308, 337, 344, 365, 366, 369, 376, 440, 463, 468, 475, 477], "orig": [23, 203, 396], "orig_argv": [33, 34, 352, 472, 483], "orig_key": 235, "origin": [5, 7, 9, 23, 33, 34, 42, 43, 60, 62, 63, 67, 73, 85, 92, 94, 96, 101, 103, 105, 106, 109, 112, 120, 141, 144, 149, 152, 158, 167, 169, 173, 176, 177, 181, 186, 190, 191, 193, 196, 197, 199, 200, 201, 202, 203, 205, 208, 213, 221, 225, 226, 230, 234, 243, 247, 250, 255, 261, 262, 266, 267, 269, 271, 275, 278, 283, 284, 292, 293, 297, 299, 308, 312, 319, 324, 328, 331, 332, 337, 340, 341, 344, 348, 352, 358, 362, 365, 366, 369, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 407, 408, 413, 415, 416, 417, 421, 422, 423, 425, 426, 427, 428, 430, 432, 434, 436, 440, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 483], "origin_req_host": [243, 395], "origin_serv": 407, "original_exc": 213, "original_list": 171, "original_valu": 362, "orignam": 483, "orm": 68, "ornar": 149, "orphan": [283, 483], "orr": [476, 477, 481, 482, 483], "orthogon": 102, "ortran": 43, "os": [23, 33, 34, 59, 64, 68, 73, 78, 85, 87, 92, 93, 95, 98, 101, 102, 109, 112, 115, 118, 120, 124, 125, 126, 132, 133, 137, 138, 139, 140, 142, 151, 160, 163, 164, 166, 167, 169, 170, 183, 187, 188, 189, 190, 193, 200, 208, 210, 212, 214, 215, 216, 219, 220, 225, 229, 230, 231, 234, 235, 243, 245, 247, 252, 254, 258, 266, 269, 272, 278, 282, 283, 286, 292, 299, 301, 302, 303, 306, 308, 309, 318, 320, 328, 329, 332, 333, 334, 335, 337, 340, 341, 342, 344, 352, 354, 355, 358, 360, 365, 366, 369, 380, 382, 388, 389, 395, 399, 400, 403, 407, 421, 422, 425, 428, 438, 443, 451, 452, 455, 456, 461, 462, 464, 465, 466, 467, 470, 483, 484], "os2": 475, "os2_hom": 475, "os_arch": 303, "os_environ": 407, "os_help": [68, 187, 254, 483], "os_nam": 303, "os_vers": 303, "osa": 464, "osaterminolog": 468, "osborn": 477, "oscura": 467, "ose": [84, 258, 337, 462, 480, 483], "oserror": [23, 109, 126, 130, 133, 153, 176, 183, 188, 213, 215, 218, 223, 225, 230, 234, 243, 245, 250, 255, 258, 278, 282, 283, 288, 293, 294, 295, 296, 303, 306, 322, 328, 332, 333, 335, 337, 341, 348, 358, 359, 362, 366, 393, 395, 405, 423, 427, 443, 450, 469, 472, 476, 477, 481, 483], "osf": 476, "oshmyan": 483, "osi": 307, "osinfo": 303, "osipov": 483, "ospe": 361, "oss": [68, 254, 348, 350, 465, 476, 483], "oss_audio_devic": 295, "oss_mixer_devic": 295, "ossaudiodev": [68, 254, 350, 465, 473, 474, 478, 483], "ossaudioerror": 295, "ossl": 483, "ostrowski": 483, "oststrom": 483, "osversioninfoex": 352, "osx": [84, 176, 477, 480, 483], "osx_framework_us": [68, 315], "ot": 483, "other": [5, 7, 9, 11, 13, 22, 23, 25, 27, 28, 33, 34, 35, 39, 42, 43, 45, 54, 55, 58, 59, 60, 61, 62, 63, 64, 66, 68, 72, 73, 74, 75, 77, 78, 84, 92, 93, 95, 100, 103, 106, 108, 109, 110, 112, 115, 118, 132, 133, 137, 141, 144, 146, 151, 152, 153, 158, 159, 161, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 207, 209, 211, 213, 215, 216, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 255, 256, 257, 258, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 278, 280, 283, 287, 288, 289, 293, 296, 297, 298, 302, 307, 308, 309, 313, 314, 315, 319, 321, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 345, 346, 347, 348, 352, 354, 355, 356, 358, 359, 362, 365, 366, 369, 376, 378, 380, 382, 384, 385, 387, 388, 389, 390, 394, 395, 399, 400, 404, 405, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 436, 440, 443, 446, 455, 456, 461, 464, 466, 467, 468, 471, 472, 474, 475, 476, 481, 482, 483, 484], "other_api": 362, "other_fract": 221, "other_fun": 386, "other_func": 122, "other_id_continu": 435, "other_id_start": 435, "other_obj": 75, "other_path": 296, "other_popen_kwarg": 348, "otherexcept": [122, 213], "othergui": 483, "othernam": [430, 462], "otherpython": 473, "otherstyl": 211, "othertestcas": 362, "othertypeiknowabout": 289, "otherwis": [5, 7, 11, 13, 22, 23, 27, 28, 31, 33, 34, 39, 42, 43, 45, 47, 49, 54, 58, 59, 61, 63, 64, 66, 73, 76, 79, 94, 95, 101, 102, 103, 106, 110, 112, 117, 120, 129, 133, 139, 141, 146, 149, 155, 157, 158, 163, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 200, 202, 205, 206, 208, 209, 214, 216, 218, 225, 226, 230, 234, 242, 243, 244, 245, 247, 250, 251, 252, 255, 257, 258, 259, 261, 262, 267, 268, 269, 271, 275, 276, 278, 283, 292, 293, 296, 297, 299, 301, 302, 304, 305, 307, 311, 312, 314, 319, 321, 324, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 376, 378, 381, 382, 384, 387, 388, 394, 395, 400, 403, 406, 407, 411, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 442, 455, 456, 461, 463, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "otkidach": 465, "otten": 483, "ouch": 479, "oud": 483, "oudkerk": [468, 476, 477, 483], "ought": 476, "ouput": 483, "our": [31, 73, 76, 85, 93, 94, 102, 106, 109, 110, 134, 167, 169, 176, 196, 200, 205, 259, 292, 299, 319, 335, 338, 340, 341, 362, 386, 407, 422, 464, 467, 468, 483], "our_app_it": 235, "ourselv": [76, 94, 386, 483], "oussoren": [467, 468, 469, 475, 477, 481, 482], "ousterhout": 369, "out": [18, 23, 31, 34, 35, 39, 42, 56, 59, 60, 64, 68, 72, 73, 76, 85, 92, 94, 95, 96, 99, 101, 102, 103, 106, 109, 110, 120, 133, 134, 139, 141, 144, 149, 158, 161, 163, 167, 176, 177, 178, 183, 184, 186, 190, 191, 193, 195, 196, 203, 205, 212, 213, 215, 226, 230, 235, 243, 247, 250, 251, 253, 258, 259, 261, 266, 267, 275, 283, 292, 293, 295, 297, 298, 300, 304, 308, 311, 313, 314, 319, 322, 328, 331, 333, 337, 338, 340, 341, 343, 345, 347, 348, 352, 358, 362, 365, 369, 381, 384, 385, 386, 388, 389, 390, 394, 399, 400, 407, 410, 413, 417, 419, 423, 425, 426, 427, 428, 429, 436, 441, 442, 449, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 483], "out1": 270, "out2": 270, "out3": 270, "out4": 270, "out_fd": [293, 483], "out_fil": [397, 413, 483], "out_test": 141, "outbound": 107, "outcom": [159, 167, 388, 427, 483], "outdat": [96, 176, 250, 369, 468, 474, 475, 480, 483], "outer": [26, 85, 139, 169, 186, 191, 207, 226, 237, 255, 352, 427, 428, 429, 430, 435, 436, 470, 473, 474, 475, 476, 482, 483], "outer_stack": 169, "outermost": [255, 344, 365, 483], "outfd": [332, 481], "outfil": [85, 120, 140, 262, 292, 301, 380, 452, 471, 475, 483], "outfp": 201, "outgo": [133, 200, 337, 341, 474, 475, 476], "outlier": 343, "outlin": [49, 101, 102, 139, 167, 221, 244, 384, 428, 483], "outlinewidth": 384, "outliv": [11, 58, 427, 483], "outlook": 483, "outlookmailbox": 85, "output": [5, 9, 33, 34, 42, 59, 63, 64, 66, 68, 73, 75, 76, 79, 84, 89, 92, 95, 96, 101, 106, 109, 112, 114, 117, 120, 133, 137, 139, 141, 143, 144, 146, 148, 149, 151, 152, 155, 157, 158, 163, 167, 169, 176, 177, 183, 187, 190, 191, 193, 195, 200, 201, 202, 204, 208, 209, 212, 218, 219, 223, 225, 228, 234, 235, 242, 244, 245, 246, 248, 255, 258, 261, 262, 267, 269, 270, 275, 279, 283, 288, 292, 293, 295, 299, 300, 301, 302, 305, 307, 308, 309, 311, 313, 314, 317, 319, 321, 322, 325, 328, 331, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 357, 358, 359, 361, 362, 364, 366, 368, 378, 380, 381, 382, 384, 386, 388, 395, 397, 399, 400, 411, 413, 417, 421, 422, 428, 435, 436, 445, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "output_charset": [195, 196, 469, 473, 481], "output_codec": 195, "output_differ": 193, "output_dir": [358, 422], "output_fil": 308, "outputcheck": [68, 187, 466], "outputdata": 141, "outputdirectori": 461, "outputstr": 244, "outrat": 141, "outright": 195, "outset": 468, "outsid": [23, 59, 85, 93, 95, 101, 102, 106, 107, 132, 139, 158, 163, 170, 176, 177, 183, 186, 196, 199, 205, 208, 213, 245, 247, 252, 262, 299, 313, 314, 319, 325, 332, 337, 341, 344, 345, 347, 358, 362, 365, 366, 367, 376, 384, 386, 400, 413, 415, 422, 427, 428, 435, 440, 465, 466, 469, 472, 473, 474, 475, 479, 480, 481, 482, 483], "outsidedestinationerror": 358, "outsiz": 483, "outstand": [283, 426], "outstanding_bug": 483, "outward": 186, "outweigh": 85, "outwin": 483, "ov": 471, "over": [7, 13, 22, 23, 33, 42, 49, 61, 64, 68, 73, 74, 75, 84, 91, 92, 93, 94, 95, 101, 102, 106, 108, 109, 120, 133, 141, 144, 151, 152, 160, 161, 167, 170, 176, 177, 183, 184, 186, 190, 191, 193, 196, 201, 202, 204, 205, 218, 225, 226, 230, 243, 247, 248, 250, 252, 253, 258, 259, 261, 266, 267, 268, 269, 271, 276, 278, 283, 288, 293, 299, 305, 308, 314, 319, 322, 328, 329, 332, 335, 337, 340, 341, 344, 348, 352, 358, 362, 365, 369, 375, 376, 377, 378, 380, 384, 385, 386, 388, 397, 400, 410, 412, 413, 419, 422, 427, 428, 430, 432, 435, 440, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "overal": [183, 194, 268, 292, 308, 319, 345, 347, 382, 428, 444, 469, 477, 478], "overalloc": [186, 344, 481, 483], "overcom": [365, 475, 483], "overcommit": 322, "overdu": 139, "overeag": 483, "overfil": 483, "overflow": [5, 18, 23, 39, 42, 141, 176, 183, 186, 188, 212, 214, 275, 283, 352, 428, 456, 466, 468, 469, 474, 479, 480, 483], "overflow_except": 18, "overflowerror": [23, 25, 39, 47, 115, 157, 159, 183, 186, 193, 213, 225, 275, 304, 337, 340, 344, 365, 366, 428, 450, 464, 465, 468, 469, 471, 472, 476, 477, 483], "overflowwarn": 466, "overhaul": 483, "overhead": [33, 35, 75, 102, 132, 139, 252, 261, 270, 293, 308, 340, 342, 344, 352, 353, 367, 382, 384, 386, 428, 432, 462, 463, 464, 465, 467, 471, 473, 474, 475, 476, 479, 480, 481, 482, 483], "overkil": 292, "overlap": [61, 64, 92, 106, 161, 177, 190, 259, 261, 282, 292, 319, 343, 344, 384, 436, 463, 464, 483], "overlay": 177, "overload": [63, 226, 386, 395, 419, 428, 430, 463, 464, 473, 477, 483], "overly_gener": 427, "overread": 483, "overrid": [22, 33, 34, 49, 61, 63, 64, 66, 68, 85, 93, 101, 102, 103, 110, 116, 120, 132, 135, 136, 144, 155, 157, 161, 167, 171, 175, 176, 181, 183, 189, 193, 196, 202, 203, 205, 208, 209, 213, 218, 225, 226, 230, 243, 244, 245, 248, 250, 255, 258, 267, 269, 272, 283, 287, 292, 293, 299, 311, 314, 315, 319, 331, 334, 337, 338, 344, 345, 348, 352, 354, 362, 365, 376, 384, 386, 388, 395, 413, 417, 422, 428, 429, 430, 432, 440, 455, 456, 461, 462, 465, 468, 469, 470, 471, 476, 477, 479, 480, 481, 483], "overridden": [34, 85, 93, 94, 102, 103, 120, 144, 155, 161, 167, 183, 208, 225, 230, 243, 244, 245, 250, 255, 267, 269, 292, 293, 297, 307, 313, 324, 338, 340, 341, 344, 348, 352, 358, 365, 376, 386, 388, 395, 399, 400, 428, 430, 432, 443, 455, 468, 469, 476, 477, 481, 482, 483], "overrod": [462, 483], "overrul": 337, "overrun": [464, 469, 483], "oversight": [469, 476, 478, 480, 483], "overstrik": 372, "overview": [68, 74, 99, 109, 259, 280, 288, 292, 307, 308, 315, 461, 462, 463, 464, 465, 467, 468, 469, 470, 474, 475, 478, 480], "overwhelm": 292, "overwrit": [73, 101, 102, 112, 149, 163, 177, 181, 196, 200, 205, 258, 267, 269, 270, 293, 320, 330, 344, 358, 395, 421, 422, 427, 428, 441, 461, 465, 468, 469, 471, 474, 475, 476, 477, 483], "overwritten": [42, 102, 243, 269, 271, 308, 332, 352, 386, 427, 469, 476, 483], "owen": 426, "own": [5, 7, 9, 22, 23, 26, 28, 33, 45, 59, 61, 63, 64, 68, 72, 73, 76, 77, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 109, 110, 112, 118, 120, 133, 137, 139, 151, 167, 169, 181, 186, 193, 196, 200, 203, 205, 207, 225, 230, 243, 247, 250, 255, 267, 268, 269, 271, 283, 292, 293, 297, 299, 308, 319, 321, 326, 331, 332, 333, 337, 340, 341, 344, 345, 348, 352, 358, 362, 364, 365, 369, 384, 388, 394, 395, 399, 403, 410, 413, 415, 420, 426, 428, 430, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 480, 482, 483], "own_gil": 483, "owned_file_handl": 102, "owner": [73, 93, 96, 98, 102, 181, 212, 283, 293, 296, 332, 342, 358, 426, 428, 452, 479, 483], "ownership": [35, 68, 100, 102, 136, 257, 283, 365, 426, 468, 476, 483], "oxer": 483, "oz": 480, "p0": 261, "p1": [176, 261, 284, 348, 427, 466, 473, 478], "p2": [106, 176, 261, 284, 348, 427, 441, 466, 472, 473, 478], "p21": 103, "p22": 103, "p3": 427, "p_all": 293, "p_cs_preced": 266, "p_detach": 293, "p_n": 261, "p_nowait": [293, 348], "p_nowaito": 293, "p_overlay": 293, "p_pgid": 293, "p_pid": 293, "p_pidfd": [293, 482, 483], "p_sep_by_spac": 266, "p_sign_posn": 266, "p_unicod": 64, "p_wait": [293, 348], "paalasma": 464, "pablo": [104, 469, 472, 473, 474, 478, 480, 481, 482, 483], "pace": [463, 468], "pach": 483, "pacif": [183, 425], "pack": [16, 68, 102, 141, 176, 215, 225, 234, 247, 259, 268, 269, 271, 293, 303, 337, 344, 347, 369, 374, 376, 408, 421, 428, 442, 452, 467, 469, 473, 475, 483], "pack_array": 408, "pack_bool": 408, "pack_byt": 408, "pack_doubl": 408, "pack_enum": 408, "pack_farray": 408, "pack_float": 408, "pack_fopaqu": 408, "pack_fstr": 408, "pack_hyp": 408, "pack_int": 408, "pack_into": [225, 347, 467, 483], "pack_item": 408, "pack_list": 408, "pack_opaqu": 408, "pack_str": 408, "pack_typ": 408, "pack_uhyp": 408, "pack_uint": 408, "packag": [31, 33, 34, 63, 64, 68, 70, 74, 77, 79, 80, 84, 85, 87, 93, 96, 101, 102, 111, 112, 114, 151, 160, 173, 176, 183, 192, 193, 194, 196, 197, 199, 200, 202, 203, 204, 205, 206, 207, 208, 210, 212, 225, 230, 242, 247, 250, 253, 254, 255, 261, 267, 268, 269, 276, 279, 280, 281, 283, 307, 312, 313, 324, 330, 334, 335, 340, 341, 352, 354, 355, 362, 369, 375, 380, 384, 385, 386, 388, 389, 390, 392, 399, 400, 411, 414, 421, 422, 423, 425, 433, 436, 438, 445, 453, 454, 455, 456, 458, 459, 460, 462, 464, 466, 469, 470, 471, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484], "package_distribut": 251, "package_nam": 461, "package_test": 388, "package_url": 307, "packagemetadata": [251, 483], "packagenotfounderror": 483, "packagepath": [251, 481], "packages_distribut": [251, 472, 483], "packaging_tutorial_gnu_hello": 460, "packard": 462, "packed_ip": 337, "packer": [68, 368], "packet": [133, 141, 259, 269, 337, 338, 419, 469, 483], "packet_": 337, "packet_broadcast": 337, "packet_host": 337, "packet_multicast": 337, "packet_otherhost": 337, "packet_outgo": 337, "packmail": 462, "pad": [64, 68, 84, 122, 143, 146, 153, 177, 183, 186, 196, 199, 225, 234, 235, 259, 284, 337, 344, 345, 347, 349, 366, 369, 376, 395, 408, 462, 465, 468, 469, 475, 479, 483], "padded_sign": 261, "padi": 369, "padx": 369, "pag": 184, "page": [64, 68, 84, 87, 92, 95, 101, 102, 103, 110, 115, 120, 133, 136, 158, 166, 169, 173, 177, 190, 215, 247, 251, 254, 266, 268, 269, 271, 278, 284, 293, 304, 313, 314, 322, 328, 333, 337, 340, 342, 347, 350, 356, 361, 362, 365, 366, 369, 375, 383, 384, 395, 403, 413, 420, 422, 426, 434, 440, 451, 453, 455, 461, 462, 464, 466, 467, 468, 469, 475, 476, 479, 480, 481, 483], "pagedown": 247, "pagefil": 278, "pager": [313, 483], "pages": 278, "pageup": 247, "pagin": 313, "paid": 462, "pain": [106, 266, 462, 467, 483], "paint": [92, 177, 384, 464], "pair": [5, 7, 22, 28, 33, 64, 68, 73, 75, 85, 92, 94, 95, 99, 106, 109, 120, 126, 133, 136, 141, 144, 151, 160, 167, 177, 181, 184, 186, 190, 191, 193, 196, 197, 202, 209, 213, 221, 228, 230, 244, 255, 259, 261, 262, 268, 271, 275, 283, 288, 292, 293, 297, 299, 309, 322, 332, 337, 338, 340, 341, 344, 348, 355, 358, 359, 361, 363, 365, 369, 375, 376, 384, 385, 386, 389, 394, 395, 402, 410, 413, 416, 417, 427, 428, 430, 435, 436, 441, 442, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 479, 483], "pair_cont": [177, 472], "pair_numb": 177, "pairwis": [261, 384, 472, 483], "pal": 476, "palard": [474, 480], "palat": 102, "palin": 441, "palivoda": [473, 479, 481, 483], "palkovski": 465, "palmo": 158, "palomar": 230, "palumbo": 483, "pam": [106, 483], "pan": [240, 483], "panama": 413, "panda": 461, "pane": [247, 375, 376, 483], "paneconfigur": 483, "panedwindow": [375, 376, 483], "panel": [68, 83, 118, 177, 254, 406, 463, 483], "panelpars": 468, "panic": [269, 465], "pankovych": [472, 483], "panter": [478, 479, 483], "panther": 473, "panton": 94, "panzenb": 477, "pao": 345, "paolini": 483, "paper": [103, 109, 120, 337, 384, 465, 483], "papert": 384, "par": 483, "para": 413, "paradigm": [77, 95], "paradox": [85, 465], "paragraph": [101, 139, 197, 247, 262, 292, 293, 341, 344, 364, 413, 420, 426, 428, 462, 465, 483], "parallel": [68, 84, 87, 95, 100, 102, 124, 129, 134, 137, 163, 169, 207, 225, 232, 235, 261, 283, 352, 384, 388, 403, 413, 443, 455, 462, 469, 475, 476, 477, 478, 482, 483], "param": [102, 139, 151, 196, 197, 203, 205, 209, 242, 255, 281, 293, 305, 340, 388, 394, 395, 399, 419, 420, 431, 469, 475, 482, 483], "param1": 427, "param2": 427, "param_maybe_default": 431, "param_no_default": 431, "param_no_default_star_annot": 431, "param_star_annot": 431, "param_with_default": 431, "paramet": [5, 7, 9, 11, 17, 22, 23, 28, 32, 34, 37, 45, 49, 56, 58, 61, 63, 64, 66, 67, 68, 74, 75, 79, 84, 87, 93, 94, 95, 101, 106, 109, 112, 115, 117, 118, 120, 137, 139, 141, 144, 149, 151, 158, 163, 167, 169, 170, 175, 177, 183, 184, 186, 190, 191, 193, 196, 197, 199, 201, 203, 205, 206, 208, 209, 213, 214, 215, 216, 218, 220, 225, 226, 228, 230, 234, 235, 242, 243, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 305, 307, 311, 312, 314, 315, 319, 320, 322, 325, 328, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 348, 351, 352, 356, 358, 359, 362, 365, 366, 368, 375, 380, 381, 382, 384, 388, 394, 395, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 417, 419, 420, 422, 425, 428, 429, 430, 431, 432, 433, 436, 445, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 482, 483], "parameter": [87, 177, 193, 340, 344, 385, 386, 428, 472, 482, 483], "parameter_list": [427, 430], "parameter_list_no_poson": 427, "parameter_list_stararg": 427, "parameteris": [102, 386, 473], "parameterizedmimehead": 203, "parameterkind": 483, "parameterless": 328, "paramflag": 176, "paramount": 186, "paramspec": [122, 191, 344, 386, 427, 431, 472, 474, 483], "paramspecarg": [386, 472, 483], "paramspeckwarg": [386, 472, 483], "paramspecvari": 386, "paramstyl": 340, "paranoid": 76, "parcel": [369, 376], "pardir": [216, 293], "paren": [85, 112, 122, 175, 247, 431, 467, 483], "parenmatch": 483, "parent": [59, 61, 63, 68, 85, 99, 101, 102, 103, 114, 118, 133, 160, 177, 189, 225, 248, 250, 253, 255, 267, 278, 281, 283, 293, 296, 302, 305, 309, 312, 314, 333, 337, 338, 340, 341, 348, 352, 369, 371, 373, 376, 385, 389, 395, 410, 413, 421, 428, 432, 440, 464, 465, 466, 467, 468, 472, 474, 476, 477, 479, 480, 483], "parent_conn": 283, "parent_modul": 250, "parent_nam": 250, "parent_pars": 120, "parent_process": [283, 483], "parentclass": 428, "parenth_form": 430, "parenthes": [5, 63, 68, 73, 79, 85, 95, 102, 106, 157, 191, 225, 248, 250, 266, 308, 319, 344, 399, 427, 428, 429, 431, 434, 435, 436, 442, 449, 462, 466, 467, 468, 469, 472, 474, 478, 480, 481, 483], "parenthesi": [106, 112, 122, 247, 427, 431, 466, 483], "parenthesis": [344, 483], "parentnod": 410, "pareto": 318, "paretovari": [318, 483], "parg": 72, "pari": [95, 106, 425, 449], "pariti": 483, "park": 319, "parnassus": 463, "paroz": [478, 483], "parrot": [73, 225, 242, 307, 441, 468], "pars": [34, 59, 64, 65, 66, 68, 73, 79, 84, 85, 99, 102, 106, 110, 112, 118, 122, 133, 136, 151, 155, 157, 159, 167, 183, 193, 194, 196, 199, 200, 201, 203, 205, 206, 207, 208, 209, 217, 222, 225, 228, 230, 240, 242, 243, 244, 245, 248, 250, 254, 256, 259, 262, 264, 268, 269, 271, 273, 276, 286, 293, 304, 308, 314, 340, 344, 345, 348, 355, 366, 377, 378, 382, 392, 395, 396, 399, 400, 410, 411, 412, 414, 415, 416, 417, 419, 420, 430, 431, 435, 436, 443, 446, 450, 455, 462, 463, 464, 465, 466, 467, 468, 474, 476, 477, 478, 479, 483, 484], "parsabl": [112, 476, 482, 483], "parse_and_bind": [320, 323, 483], "parse_arg": [68, 89, 102, 118, 160, 190, 200, 228, 292, 309, 399, 451, 465, 469, 475], "parse_argv": [33, 34, 35, 483], "parse_colnam": [340, 483], "parse_config_h": 355, "parse_const": 262, "parse_decltyp": 340, "parse_envlist": 483, "parse_float": [262, 379], "parse_head": [151, 242, 245, 483], "parse_int": 262, "parse_intermixed_arg": [120, 480, 483], "parse_known_arg": [120, 483], "parse_known_intermixed_arg": 120, "parse_makefil": 483, "parse_message_id": 483, "parse_multipart": [151, 472, 479, 480, 481, 482, 483], "parse_q": [151, 394, 468, 472, 479, 480, 481, 482, 483], "parse_qsl": [151, 394, 468, 472, 479, 480, 481, 482, 483], "parseabl": [102, 303, 331], "parseaddr": [209, 483], "parsebyt": 207, "parsed": 209, "parsedate_to_datetim": [209, 476], "parsedate_tz": [209, 483], "parseent": 483, "parseerror": [409, 413, 469, 475, 483], "parsefil": 314, "parseflag": 248, "parser": [33, 34, 68, 73, 79, 89, 95, 102, 106, 109, 112, 118, 122, 157, 159, 160, 175, 190, 193, 194, 196, 199, 200, 201, 203, 205, 206, 208, 213, 217, 228, 238, 254, 262, 268, 273, 285, 297, 304, 309, 319, 331, 344, 395, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 431, 435, 436, 441, 443, 447, 451, 455, 456, 462, 463, 465, 466, 467, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "parser_a": 120, "parser_b": 120, "parser_bar": 120, "parser_class": 120, "parser_debug": [33, 34, 474], "parser_foo": 120, "parser_inst": 167, "parser_interfac": [472, 483], "parser_l": 475, "parser_list": [414, 483], "parser_m": 475, "parserbas": [472, 483], "parsercr": 314, "parsererror": 483, "parseresult": [394, 469, 475, 483], "parseresultbyt": [394, 475, 483], "parsermodul": 483, "parsestr": [200, 207, 411, 412, 414, 462, 478, 483], "parsetok": 483, "parsetupl": 64, "parsingerror": [167, 473, 474, 483], "parso": [112, 122, 482], "part": [7, 9, 13, 18, 23, 25, 33, 34, 39, 58, 60, 61, 63, 64, 66, 72, 73, 75, 85, 92, 94, 95, 96, 99, 100, 102, 103, 106, 109, 110, 112, 128, 151, 157, 158, 159, 161, 167, 169, 176, 177, 183, 184, 186, 191, 193, 194, 196, 197, 200, 201, 202, 203, 204, 205, 206, 208, 209, 213, 225, 230, 235, 245, 247, 248, 250, 251, 258, 259, 266, 267, 268, 269, 270, 275, 276, 281, 282, 283, 293, 296, 299, 302, 307, 308, 314, 319, 323, 331, 334, 337, 338, 340, 341, 344, 345, 346, 352, 355, 362, 365, 366, 369, 375, 381, 384, 385, 386, 388, 394, 399, 403, 410, 411, 413, 419, 426, 427, 428, 429, 430, 432, 435, 436, 449, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "part_info": 201, "part_numb": 160, "partfil": 200, "parti": [7, 31, 33, 84, 85, 102, 112, 128, 132, 133, 138, 158, 169, 176, 181, 183, 184, 225, 235, 250, 251, 283, 293, 299, 302, 330, 334, 340, 341, 352, 355, 365, 369, 380, 386, 399, 400, 425, 426, 428, 461, 462, 463, 465, 466, 468, 469, 471, 474, 475, 476, 477, 479, 481, 482, 483], "partial": [24, 34, 68, 88, 95, 109, 110, 118, 126, 127, 129, 136, 177, 181, 197, 206, 207, 224, 225, 248, 255, 269, 270, 275, 284, 322, 324, 337, 338, 344, 348, 358, 413, 427, 462, 465, 466, 468, 469, 470, 471, 476, 477, 478, 479, 480, 481, 483, 484], "partial_appl": 95, "partial_cont": 241, "partialmethod": [226, 344, 477, 481, 483], "particip": [63, 75, 76, 183, 243, 250, 299, 319, 462, 464, 467, 469], "particular": [13, 33, 45, 59, 63, 64, 66, 68, 72, 73, 75, 78, 85, 93, 95, 99, 100, 101, 103, 106, 109, 110, 115, 120, 139, 151, 158, 161, 167, 169, 176, 177, 183, 193, 203, 208, 213, 243, 247, 248, 251, 255, 259, 262, 267, 268, 269, 271, 275, 276, 283, 288, 292, 293, 297, 299, 302, 308, 319, 322, 328, 332, 333, 334, 335, 337, 338, 341, 342, 344, 345, 347, 348, 352, 353, 355, 362, 364, 365, 369, 375, 376, 381, 386, 388, 394, 395, 400, 410, 411, 413, 420, 426, 427, 428, 430, 431, 432, 434, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "partit": [261, 332, 337, 344, 467, 478, 481, 483], "partnership": 426, "partnum": 160, "pascal": [78, 80, 85, 95, 347, 440, 441, 442, 465, 469], "pascual": 483, "pasechnik": 483, "pass": [5, 7, 9, 11, 13, 17, 22, 23, 27, 28, 33, 34, 42, 43, 45, 47, 49, 58, 59, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 84, 87, 88, 92, 93, 94, 99, 100, 101, 103, 106, 108, 109, 110, 112, 116, 118, 120, 122, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 155, 157, 158, 160, 163, 167, 169, 170, 173, 177, 178, 181, 183, 190, 191, 193, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 218, 225, 226, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 311, 314, 319, 320, 321, 322, 323, 325, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 351, 352, 353, 355, 358, 359, 362, 364, 365, 366, 367, 369, 375, 376, 378, 380, 381, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 402, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 433, 435, 443, 445, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "pass_": 305, "pass_fd": [348, 481, 483], "pass_stmt": 436, "passion": 442, "passiv": [223, 255, 461, 463, 479, 480, 481, 482], "passlib": 173, "passphras": 326, "passwd": [175, 223, 296, 310, 361, 388, 395, 466, 467, 468], "passwd_mgr": 395, "password": [102, 110, 173, 223, 229, 233, 235, 248, 269, 283, 286, 288, 293, 305, 310, 326, 335, 339, 341, 359, 361, 394, 395, 419, 422, 467, 468, 469, 476, 477, 478, 479, 483], "password_mgr": [110, 395], "past": [102, 120, 183, 193, 216, 247, 255, 293, 299, 314, 345, 348, 366, 407, 475, 477, 478, 481, 482, 483], "pasv": [223, 483], "pat": [106, 189, 220, 478], "patch": [1, 57, 68, 80, 84, 89, 92, 106, 120, 177, 187, 241, 242, 288, 344, 362, 386, 460, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 479, 481, 482, 483], "patchcheck": [468, 483], "patched_foo": 389, "patcher": [68, 187, 390, 483], "patcher1": 389, "patcher2": 389, "patchlevel": [4, 303, 483], "patel": 480, "patent": 426, "path": [5, 23, 24, 31, 32, 33, 35, 39, 59, 64, 68, 72, 73, 76, 84, 85, 87, 93, 95, 96, 98, 100, 101, 102, 109, 111, 114, 119, 120, 126, 136, 139, 142, 144, 148, 149, 151, 163, 167, 169, 176, 184, 190, 193, 200, 210, 213, 215, 219, 220, 223, 225, 230, 231, 234, 242, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 258, 265, 266, 267, 268, 269, 270, 271, 276, 279, 280, 281, 283, 286, 288, 292, 293, 296, 297, 302, 308, 311, 312, 313, 315, 320, 324, 327, 330, 331, 332, 334, 335, 337, 340, 341, 342, 348, 352, 356, 358, 360, 362, 366, 369, 384, 386, 388, 389, 394, 395, 399, 400, 403, 405, 407, 413, 416, 419, 420, 421, 423, 425, 428, 433, 436, 438, 450, 452, 453, 455, 456, 458, 460, 462, 464, 465, 466, 467, 468, 469, 471, 473, 475, 476, 477, 478, 480, 482, 483], "path1": 294, "path2": 294, "path_convert": 483, "path_find": 250, "path_hook": [31, 87, 142, 250, 302, 352, 432, 436, 450, 465, 476, 477, 483], "path_importer_cach": [31, 250, 302, 352, 432, 450, 465, 473, 474, 476, 477, 478, 480, 483], "path_info": 407, "path_item": 302, "path_max": 483, "path_mtim": [250, 476], "path_nam": 324, "path_return_ok": 243, "path_stat": [250, 476], "path_transl": 407, "pathbrows": 483, "pathconf": [293, 476], "pathconf_nam": 293, "pathconfig_warn": [33, 34, 474], "pathdistribut": [251, 483], "pathentryfind": [87, 250, 423, 432, 472, 473, 476, 477, 480], "pathext": [86, 332, 399, 461, 474, 477, 483], "pathfind": [250, 432, 472, 473, 477, 480, 483], "pathfix": 483, "pathlib": [68, 120, 142, 163, 219, 231, 250, 251, 252, 253, 254, 293, 294, 416, 422, 483], "pathlik": [59, 64, 87, 163, 225, 252, 293, 294, 296, 344, 389, 425, 479, 483], "pathnam": [31, 84, 142, 151, 176, 220, 223, 231, 267, 269, 279, 281, 293, 294, 331, 342, 352, 358, 369, 375, 397, 422, 423, 428, 432, 455, 475, 478, 483], "pathname2url": 395, "patholog": [85, 483], "pathscript": 483, "pathseg": [253, 296], "pathsep": [34, 293, 334, 380, 403, 425, 455, 456], "pathway": [475, 483], "patienc": 283, "patil": 483, "patrascu": [479, 483], "patrick": [468, 472, 483], "pattern": [42, 63, 68, 76, 85, 93, 109, 142, 144, 163, 169, 178, 189, 190, 191, 220, 222, 226, 231, 247, 248, 261, 264, 267, 275, 281, 283, 288, 292, 293, 296, 297, 308, 319, 332, 344, 345, 362, 369, 371, 382, 386, 388, 390, 429, 430, 431, 435, 441, 456, 461, 463, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "pattern_1": 472, "pattern_2": 472, "pattern_3": 472, "pattern_argu": 427, "pattern_capture_target": 431, "pattern_ti": 431, "paugh": [478, 483], "paul": [84, 103, 314, 461, 462, 463, 464, 465, 467, 468, 469, 473, 474, 476, 477, 478, 480, 481, 482, 483], "paulius": 483, "paulo": [476, 483], "paus": [92, 95, 133, 137, 177, 295, 297, 333, 430, 466, 467, 483], "pause_read": [130, 133, 480, 483], "pause_writ": [130, 133], "pavliuk": [482, 483], "pawn": 109, "pax": [332, 358, 468, 481, 483], "pax_format": [358, 468], "pax_head": 358, "pay": [100, 102, 106, 193, 461, 474, 477], "paygrad": 160, "payload": [158, 194, 196, 197, 198, 199, 200, 201, 204, 205, 206, 207, 242, 251, 469, 483], "payment": [110, 261], "payment_requir": 241, "pb": [102, 270], "pbkdf2": [235, 472], "pbkdf2_hmac": [235, 469, 472, 474, 477, 483], "pbkdf2_hmac_fast": 483, "pbm": [206, 249], "pbzip2": 476, "pc": [158, 177, 274, 406, 422, 435, 456, 461, 468, 473, 483], "pcall": 308, "pcbuild": [362, 461, 468, 483], "pcm": [295, 401], "pctp": 466, "pd": 384, "pdb": [68, 85, 114, 142, 144, 156, 185, 193, 214, 225, 254, 352, 381, 382, 455, 461, 465, 467, 468, 471, 473, 483], "pdbrc": [297, 473, 475, 479, 482, 483], "pdf": [80, 101, 109, 235, 318, 343, 352, 481, 483], "pdict": 151, "pdq": 395, "pdt": [183, 425, 482], "peac": 384, "peach": 190, "peak": [68, 141, 185, 467, 482], "pear": [291, 442, 451, 471], "pearson": [343, 472, 483], "peculiar": [42, 255], "pedagog": 103, "pedant": 483, "pedro": 468, "pedroni": [103, 465, 467], "peek": [149, 160, 234, 258, 270, 402, 475, 483], "peeknamedpip": 483, "peel": 200, "peephol": [34, 466, 467, 475, 480, 483], "peer": [107, 133, 212, 213, 288, 328, 341, 483], "peercert": 133, "peernam": [133, 136], "peeter": 479, "peg": [112, 431, 472, 473, 474, 482, 483], "pegen": 483, "peix": [472, 483], "peksag": [472, 477, 478, 479, 480, 481, 483], "pellentesqu": 149, "pelleti": 464, "pem": [341, 460, 477, 483], "pem_cert_str": 341, "pem_cert_to_der_cert": 341, "pen": [68, 222], "penalti": [102, 181, 216, 462, 475], "pencolor": 384, "pend": [13, 22, 23, 27, 33, 39, 75, 112, 133, 139, 166, 258, 271, 281, 305, 328, 333, 340, 341, 430, 475, 477, 479, 482, 483], "pendict": 384, "pendingdeprecationwarn": [23, 112, 188, 213, 388, 400, 450, 465, 468, 469, 478, 479, 480, 481, 482, 483], "pendown": 384, "penelop": 200, "penguin": [230, 427], "penros": [384, 483], "pensiz": 384, "penstat": 384, "penteado": 483, "pentium": 466, "penultim": 85, "penup": 384, "peopl": [93, 95, 99, 103, 109, 177, 186, 190, 193, 230, 235, 292, 413, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 476, 479, 481, 483], "pep": [10, 13, 23, 26, 30, 31, 33, 34, 35, 45, 49, 57, 59, 62, 63, 64, 66, 68, 71, 73, 75, 78, 80, 85, 86, 87, 88, 95, 105, 108, 109, 112, 113, 116, 117, 122, 126, 129, 141, 142, 151, 152, 153, 154, 158, 160, 161, 163, 166, 169, 170, 173, 175, 181, 191, 200, 210, 213, 221, 225, 226, 227, 247, 249, 250, 251, 255, 258, 265, 266, 267, 272, 275, 281, 287, 288, 289, 293, 295, 296, 299, 301, 302, 311, 322, 324, 326, 328, 329, 332, 333, 334, 336, 337, 339, 340, 341, 344, 345, 348, 349, 352, 353, 358, 359, 362, 366, 378, 385, 386, 397, 399, 402, 407, 408, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 441, 450, 455, 456, 457, 461, 462, 482, 483, 484], "pep3118": 483, "pep425": 483, "pep495": 183, "pep8": 483, "pepe": 200, "pepper": 340, "per": [7, 13, 22, 23, 31, 35, 45, 49, 63, 64, 68, 73, 84, 85, 102, 117, 120, 132, 133, 141, 144, 146, 158, 177, 181, 183, 186, 191, 196, 197, 203, 205, 208, 209, 226, 242, 250, 251, 267, 271, 281, 283, 288, 293, 295, 305, 307, 308, 315, 319, 329, 334, 337, 338, 340, 341, 344, 352, 362, 365, 366, 367, 369, 376, 380, 382, 388, 419, 422, 427, 428, 432, 436, 455, 461, 465, 466, 467, 469, 470, 471, 472, 476, 477, 478, 480, 481, 483, 484], "percal": 308, "perceiv": 271, "percent": [68, 84, 343, 345, 377, 394, 426, 461, 468, 470, 475, 483], "percentag": [308, 345, 446, 468, 483], "percentequ": 377, "percentil": [343, 481], "percentstyl": 483, "perceptu": 413, "percol": 483, "pereira": [480, 483], "perez": 483, "perf": [32, 34, 65, 68, 97, 352, 455, 474, 483], "perf_count": [308, 366, 367, 476, 481, 483], "perf_counter_n": [366, 367, 480, 483], "perf_profil": 34, "perfect": [33, 95, 151, 196, 243, 247, 292, 341, 343, 430, 461, 483], "perform": [18, 23, 28, 33, 39, 42, 59, 60, 63, 64, 68, 72, 75, 84, 92, 95, 101, 102, 109, 112, 118, 120, 133, 139, 158, 161, 163, 167, 169, 177, 181, 183, 186, 191, 193, 199, 206, 209, 211, 215, 220, 225, 226, 227, 242, 243, 245, 247, 248, 249, 250, 252, 259, 261, 262, 266, 267, 268, 269, 272, 283, 288, 293, 298, 305, 308, 314, 319, 321, 331, 332, 333, 334, 336, 337, 338, 340, 341, 344, 348, 352, 353, 355, 365, 366, 371, 378, 384, 386, 388, 394, 395, 399, 405, 415, 419, 420, 426, 428, 430, 432, 435, 436, 455, 458, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "perform_oper": 169, "perhap": [33, 63, 72, 73, 76, 79, 84, 94, 100, 101, 102, 106, 110, 120, 151, 177, 181, 193, 218, 243, 266, 268, 283, 293, 299, 334, 337, 394, 411, 428, 430, 431, 462, 463, 464, 466, 467, 468, 472, 474, 481, 483], "peril": [103, 444], "perimet": 225, "period": [33, 85, 94, 101, 151, 177, 183, 186, 220, 226, 267, 269, 283, 294, 302, 323, 337, 338, 341, 343, 364, 376, 420, 430, 435, 461, 462, 465, 466, 467, 468, 469, 474, 475, 483], "period_squar": 343, "perl": [87, 95, 106, 108, 243, 319, 439, 444, 452, 462, 466, 467, 483], "perm": [94, 223, 261, 275, 435, 473, 480, 481, 483], "perman": [73, 110, 248, 395, 452, 461, 478, 482, 483], "permanent_redirect": 241, "permiss": [63, 84, 85, 87, 101, 102, 110, 163, 212, 213, 216, 248, 257, 293, 311, 332, 333, 337, 340, 342, 355, 358, 360, 395, 397, 405, 426, 461, 469, 480, 483], "permissionerror": [23, 212, 213, 250, 293, 322, 339, 360, 362, 450, 476, 479, 483], "permit": [11, 27, 59, 73, 99, 186, 212, 221, 225, 245, 255, 257, 259, 262, 265, 271, 283, 293, 299, 308, 319, 344, 348, 354, 410, 419, 426, 430, 431, 435, 436, 455, 467, 468, 474, 476, 477, 478, 481, 483], "permitscontrol": 328, "permut": [95, 261, 318, 435, 462, 468, 471, 481, 483], "pernici": 478, "perpendicular": 384, "perpetu": [426, 477], "perrin": [466, 472], "perror": 213, "persist": [68, 184, 241, 245, 247, 254, 268, 269, 274, 281, 320, 426, 475, 477, 483], "persistent_id": [299, 483], "persistent_load": [299, 483], "perslist": 462, "person": [68, 93, 95, 174, 225, 247, 340, 341, 343, 355, 426, 461, 462, 464, 468], "person_s": 235, "persona": 462, "perspect": [250, 253], "pertain": [33, 63, 73, 293, 352, 375, 426, 470, 483], "pertin": [267, 325], "pertoir": 109, "perturb": 173, "pessimist": 483, "pet": 384, "petazzoni": [472, 483], "pete": 93, "peter": [93, 99, 114, 230, 318, 367, 462, 463, 464, 465, 466, 467, 468, 473, 476, 477, 478, 479, 482, 483], "peterson": [109, 468, 469, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481], "petr": [472, 473, 474, 478, 480, 481, 482, 483], "petri": [476, 483], "petrisor": 483, "petrosyan": 468, "petrov": 483, "petten": 467, "petter": [472, 481, 483], "pew": 200, "pf": [292, 376], "pf_can": [337, 476], "pf_divert": 337, "pf_packet": 337, "pf_rds": [337, 476], "pf_system": [337, 476], "pformat": [307, 477, 483], "pfs": 483, "pfunc": [61, 72], "pg": 293, "pgen": [481, 483], "pgen2": 483, "pgen3": 483, "pgettext": [230, 481, 483], "pgid": [142, 293], "pginstrument": 483, "pgm": [206, 249, 369], "pgn": 337, "pgo": [35, 362, 456, 468, 479, 482, 483], "pgrp": 293, "pha": 341, "phan": [235, 483], "phane": [479, 480, 483], "pharetra": 149, "phase": [16, 32, 33, 68, 71, 73, 100, 138, 154, 227, 250, 341, 376, 431, 432, 436, 468, 472, 475, 476, 483], "phaseit": 84, "phi": [154, 275], "phil": [422, 423, 468, 483], "philbrick": 73, "philip": [469, 474, 475, 479, 483], "philipp": [235, 426, 467, 472, 483], "phillip": [467, 468, 471, 475, 479, 483], "philosoph": 428, "philosophi": [186, 196, 470], "phoenix": 95, "phone": [446, 475], "phonebook": [68, 363], "phonelist": 475, "phonenumb": 475, "phoni": 483, "photofil": 452, "photoimag": [369, 376, 481, 483], "php": [223, 419, 462, 464], "phpaudit": 223, "phpbench": 223, "phrase": [114, 241, 242, 248, 272, 292, 395, 430, 434, 435, 465, 468, 476, 478, 483], "physic": [7, 68, 92, 177, 193, 247, 252, 278, 281, 337, 344, 377, 378, 384, 405, 432, 467, 480], "physicist": 319, "pi": [93, 154, 176, 177, 186, 221, 275, 297, 318, 384, 413, 442, 444, 446, 451, 475, 476, 481], "pi_factori": 413, "pick": [76, 85, 102, 110, 141, 160, 245, 251, 292, 297, 382, 388, 421, 462, 467, 483], "pickl": [63, 68, 76, 84, 101, 102, 142, 156, 158, 160, 166, 171, 176, 182, 183, 186, 226, 254, 262, 264, 267, 268, 269, 274, 283, 284, 298, 327, 330, 347, 379, 386, 389, 446, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 480, 483, 484], "picklabl": [94, 166, 255, 283, 299, 478, 483], "pickle2db": 465, "pickle_by_enum_nam": 94, "pickle_c": 172, "pickleabl": [100, 269, 483], "picklebuff": [299, 483], "picklebufobject": [472, 483], "pickleerror": 299, "pickler": [172, 299, 300, 471, 476, 481, 483], "picklestr": [299, 300], "pickletest": 483, "pickletool": [68, 156, 254, 264, 299, 382, 468, 483], "picklingerror": 299, "picnam": 384, "pictur": [73, 167, 200, 464, 466], "pid": [51, 98, 126, 132, 137, 142, 167, 278, 283, 293, 299, 309, 322, 337, 348, 362, 467, 469, 482, 483], "pid_appnam": 281, "pid_author": 281, "pid_charcount": 281, "pid_codepag": 281, "pid_com": 281, "pid_create_dtm": 281, "pid_keyword": 281, "pid_lastauthor": 281, "pid_lastprint": 281, "pid_lastsave_dtm": 281, "pid_pagecount": 281, "pid_revnumb": 281, "pid_secur": 281, "pid_subject": 281, "pid_templ": 281, "pid_titl": 281, "pid_wordcount": 281, "pidfd": [132, 333, 483], "pidfd_nonblock": [293, 474, 483], "pidfd_open": [293, 474, 482, 483], "pidfd_send_sign": [333, 482, 483], "pidfdchildwatch": [132, 474, 482, 483], "pie": [275, 340], "piec": [72, 87, 95, 106, 133, 141, 146, 151, 169, 179, 190, 191, 193, 202, 243, 270, 292, 341, 358, 369, 386, 414, 429, 435, 464, 467, 477, 482, 483], "pier": [464, 465], "pierci": 483, "pierr": [480, 481, 483], "pieter": 483, "pietraszek": 469, "pietri": 483, "pil": [2, 68, 85, 344], "pile": 483, "pillai": [469, 475], "pillow": [369, 450], "pimp": 468, "pin": 483, "pinard": 230, "pincast": 223, "pinchuk": 473, "pineappl": 190, "ping": [223, 462, 463, 464, 467], "pink": [94, 384], "piotr": 469, "pip": [68, 76, 114, 192, 251, 254, 261, 399, 421, 445, 455, 461, 472, 474, 483], "pip3": 477, "pip_us": 483, "pipe": [68, 87, 102, 106, 107, 125, 126, 130, 131, 133, 137, 164, 190, 208, 212, 213, 215, 254, 258, 293, 328, 329, 332, 333, 342, 348, 350, 352, 358, 362, 399, 455, 466, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 483], "pipe2": [293, 476], "pipe_buf": [328, 475, 483], "pipe_clos": 133, "pipe_connection_lost": [130, 133], "pipe_data_receiv": [130, 133, 483], "pipe_max_s": 362, "pipe_mod": 142, "pipefil": 301, "pipelin": [68, 164, 254, 350, 462, 483], "pipenam": 283, "pipepag": 483, "piper": 106, "pipermail": [78, 103, 454, 463, 465], "pipes": [348, 483], "pipx": [210, 469, 477], "piraeus": 477, "pirat": 93, "pis": 413, "pitch": 483, "pitfal": [68, 106, 119, 473, 483], "pitrou": [468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "pixel": [160, 369, 372, 376, 384, 483], "pixmap": [249, 375], "pixmapwrapp": 468, "pkcs": [235, 341, 477, 483], "pkcs_7_asn": 341, "pkey": 22, "pkg": [31, 250, 302, 421, 436, 455, 456, 460, 462, 463, 467, 469, 472, 473, 474, 481, 483], "pkg_add": 460, "pkg_dir": 362, "pkg_directori": 474, "pkg_name": [279, 362, 382], "pkg_prog_pkg_config": 483, "pkg_resourc": [251, 252, 474, 483], "pkgutil": [68, 254, 280, 467, 468, 472, 473, 474, 476, 479, 480, 483], "pki": 460, "pkttype": 337, "pkzip": [422, 423, 462], "pl": 304, "place": [13, 22, 23, 27, 33, 34, 38, 42, 45, 47, 52, 54, 58, 60, 61, 63, 64, 68, 73, 75, 76, 77, 79, 84, 87, 93, 94, 95, 100, 101, 102, 108, 110, 112, 120, 139, 151, 152, 158, 160, 167, 168, 169, 176, 177, 181, 183, 186, 189, 190, 191, 193, 196, 205, 208, 218, 224, 225, 226, 230, 232, 243, 247, 250, 258, 262, 267, 268, 269, 271, 275, 278, 283, 293, 296, 297, 299, 302, 308, 311, 314, 318, 319, 321, 324, 338, 340, 341, 344, 345, 348, 364, 369, 375, 376, 380, 384, 385, 386, 388, 389, 390, 395, 397, 399, 413, 421, 422, 426, 427, 428, 430, 432, 436, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 475, 476, 478, 479, 480, 481, 483], "placebo": 318, "placehold": [68, 93, 102, 191, 230, 236, 267, 269, 298, 321, 345, 358, 364, 394, 399, 405, 436, 452, 467, 473, 474, 475, 477, 480, 483], "placeholderdict": 475, "placement": [73, 146, 369, 413, 474, 483], "placer": 369, "placerat": 149, "plagu": [68, 477], "plain": [73, 85, 94, 102, 110, 151, 152, 160, 173, 183, 196, 197, 200, 204, 205, 206, 213, 242, 255, 267, 293, 335, 341, 342, 346, 376, 386, 395, 407, 421, 422, 426, 427, 435, 464, 470, 475, 477, 478, 479, 483], "plaintext": [173, 248, 476], "plan": [49, 133, 299, 384, 386, 403, 462, 466, 467, 468, 469, 470, 475, 477, 483], "plane": [247, 275, 472, 483], "planet": [68, 343, 467], "planet_and_moon": 384, "plase": 319, "plast": 261, "plastic": 93, "plat": [33, 461, 479, 483], "platbas": 475, "platform": [5, 9, 25, 33, 34, 35, 42, 51, 59, 61, 64, 68, 72, 73, 75, 76, 84, 85, 102, 115, 118, 133, 156, 158, 163, 173, 176, 183, 186, 189, 193, 208, 212, 213, 219, 225, 235, 247, 250, 251, 254, 257, 258, 266, 269, 271, 275, 282, 283, 292, 293, 307, 308, 309, 322, 323, 326, 328, 329, 333, 337, 338, 340, 341, 342, 347, 348, 352, 354, 355, 358, 362, 365, 366, 368, 369, 378, 388, 399, 403, 406, 407, 425, 430, 435, 450, 455, 456, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "platform_tag": 483, "platform_triplet": 483, "platform_vers": [352, 479, 483], "platformtoolset": 483, "platinclud": [355, 475], "platlib": [355, 475, 483], "platlibdir": [34, 352, 354, 455, 456, 482, 483], "platstdlib": [355, 475], "play": [31, 76, 96, 103, 176, 186, 295, 318, 341, 384, 388, 406, 428, 440, 470, 483], "playback": [155, 295], "player": [295, 319, 345, 384], "playground": 384, "playlist": 474, "playsound": [406, 479, 483], "plch": [482, 483], "pleas": [1, 24, 33, 71, 100, 101, 102, 105, 106, 110, 120, 128, 137, 151, 167, 176, 223, 230, 242, 248, 250, 267, 268, 269, 288, 293, 305, 314, 319, 322, 332, 335, 337, 340, 341, 348, 352, 358, 361, 384, 400, 407, 413, 428, 430, 434, 441, 443, 457, 461, 462, 463, 465, 467, 470, 474, 476, 477, 478, 479, 480, 481, 482, 483], "pleasant": [84, 462, 463, 467], "please_add": 332, "plenti": 73, "plist": [68, 217, 254, 272, 459, 468, 477, 480, 481, 483], "plist_str": 468, "plistlib": [68, 217, 254, 479, 480, 482, 483], "plmrptoy": 319, "plock": 293, "plone": 475, "plot": [94, 466], "plug": [331, 483], "pluggabl": [475, 477, 479], "plugin": 479, "plugin1": 479, "plugin2": 479, "pluginbas": 479, "plumag": [35, 73, 441], "plummer": 483, "plural": [102, 230, 469, 480, 483], "plus": [59, 63, 75, 84, 103, 120, 176, 177, 178, 186, 190, 194, 208, 283, 292, 293, 305, 331, 342, 344, 352, 362, 364, 365, 377, 394, 411, 430, 434, 435, 461, 464, 465, 466, 467, 474, 476, 477, 483], "plusequ": 377, "plutil": 483, "pluto": 343, "pm": [183, 193, 266, 297, 352, 366], "pmincol": 177, "pminrow": 177, "pmodul": [72, 73, 483], "pname": 72, "pnext": 176, "png": [200, 206, 240, 249, 369, 376], "pngfile": 200, "po": [89, 230, 469, 473], "poefsrosr": 319, "pofsros": 319, "point": [5, 7, 16, 17, 22, 23, 31, 33, 34, 39, 41, 42, 43, 45, 47, 55, 58, 60, 63, 64, 66, 68, 73, 77, 79, 84, 85, 87, 92, 93, 95, 100, 101, 102, 103, 106, 109, 115, 116, 126, 133, 137, 138, 139, 141, 144, 153, 158, 160, 162, 163, 167, 169, 170, 176, 177, 181, 183, 189, 190, 193, 196, 200, 202, 203, 205, 206, 209, 213, 221, 225, 232, 235, 247, 250, 261, 262, 266, 267, 268, 269, 271, 274, 275, 278, 280, 281, 283, 290, 292, 293, 294, 296, 297, 299, 302, 308, 319, 322, 328, 331, 332, 333, 337, 340, 341, 343, 344, 345, 346, 347, 352, 354, 355, 358, 362, 365, 366, 369, 372, 376, 378, 381, 384, 386, 388, 395, 399, 403, 408, 411, 412, 413, 414, 421, 423, 425, 427, 428, 429, 430, 432, 436, 441, 442, 443, 444, 449, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "point2d": [122, 386], "point3d": [122, 160, 386], "point_1": 473, "point_2": 473, "point_array": 176, "pointel": 483, "pointer": [5, 7, 9, 11, 13, 17, 18, 23, 31, 33, 39, 42, 43, 45, 49, 54, 55, 58, 59, 60, 61, 63, 64, 68, 72, 75, 76, 78, 79, 85, 87, 96, 100, 104, 117, 118, 142, 177, 179, 242, 278, 283, 293, 299, 303, 308, 349, 352, 430, 440, 464, 466, 467, 468, 469, 474, 475, 477, 479, 480, 483], "pointfloat": 435, "pointless": [102, 483], "poison": 483, "poke": 292, "poker": [319, 384], "polaco": 483, "polar": [154, 468, 483], "poli": [384, 462], "poliak": 477, "polic": 319, "polici": [42, 68, 80, 102, 123, 131, 135, 194, 196, 200, 201, 203, 205, 206, 207, 213, 225, 243, 285, 293, 335, 338, 341, 456, 461, 463, 466, 469, 474, 477, 478, 479, 483], "policy100": 208, "policy80": 208, "polish": [465, 483], "polit": [183, 462], "poll": [68, 84, 132, 137, 283, 293, 329, 333, 338, 341, 342, 348, 466, 468, 475, 476, 478, 482, 483], "poll_interv": 338, "poller": 483, "pollerr": 328, "pollhup": 328, "pollin": 328, "pollnval": 328, "pollobj": 468, "pollout": 328, "pollpri": 328, "pollrdhup": [328, 483], "pollselector": [131, 329, 480], "pollut": 483, "polo": [468, 469, 471, 477, 479, 480, 483], "poly1": 384, "poly1305": [341, 479, 483], "poly2": 384, "polygon": 384, "polymorph": [76, 87, 417], "polynomi": [146, 261], "polynomial_deriv": 261, "polynomial_ev": 261, "polynomial_from_root": 261, "polzin": 462, "pomran": 468, "poni": 386, "pool": [68, 73, 84, 124, 126, 130, 164, 166, 223, 261, 284, 293, 318, 463, 465, 468, 469, 475, 476, 477, 479, 483], "pool_sema": 365, "poolexecutor": 483, "poolwork": 283, "poor": [102, 149, 305, 308, 319, 463, 464, 483], "pop": [33, 35, 80, 84, 85, 102, 121, 160, 161, 186, 191, 194, 203, 236, 271, 293, 305, 331, 344, 375, 376, 384, 388, 399, 428, 435, 442, 452, 464, 465, 466, 467, 468, 475, 477, 478, 483], "pop3": [68, 254, 256, 476, 477, 478, 482, 483], "pop3_port": 305, "pop3_ssl": [305, 475, 482, 483], "pop3_ssl_port": 305, "pop_al": 169, "pop_block": [191, 473], "pop_doc": 35, "pop_except": 191, "pop_except_and_rerais": 483, "pop_fin": [481, 483], "pop_jump_backward_if_": 473, "pop_jump_backward_if_fals": 483, "pop_jump_backward_if_non": 483, "pop_jump_backward_if_not_non": 483, "pop_jump_backward_if_tru": 483, "pop_jump_forward_if_": 473, "pop_jump_forward_if_fals": 483, "pop_jump_forward_if_non": 483, "pop_jump_forward_if_not_non": 483, "pop_jump_forward_if_tru": 483, "pop_jump_if_fals": [191, 473, 475, 483], "pop_jump_if_non": [191, 483], "pop_jump_if_not_non": [191, 483], "pop_jump_if_tru": [191, 473, 483], "pop_sourc": 331, "pop_task": 236, "pop_top": [191, 483], "popa": [477, 478, 483], "popcount": 426, "popd": 460, "pope": [472, 483], "popen": [68, 102, 126, 133, 137, 142, 151, 164, 208, 248, 293, 301, 306, 328, 337, 360, 362, 399, 428, 466, 468, 476, 477, 479, 480, 481, 483], "popen2": [68, 164, 466, 468], "popen3": [68, 164], "popen4": 348, "popen_spawn_win32": 483, "popitem": [160, 161, 167, 261, 271, 288, 344, 428, 463, 465, 469, 483], "popleft": [160, 316, 442, 452, 466], "poplib": [68, 142, 156, 194, 254, 256, 451, 466, 474, 476, 479, 483], "popul": [28, 35, 45, 68, 101, 102, 120, 122, 183, 191, 207, 250, 267, 284, 299, 318, 324, 343, 385, 400, 411, 413, 428, 432, 461, 465, 472, 473, 479, 483], "popular": [73, 93, 102, 190, 193, 226, 248, 271, 347, 380, 434, 461, 475, 476, 481], "popup": [247, 362, 483], "popup_menu": 467, "popupmenu": 375, "poq": 477, "port": [68, 91, 92, 102, 105, 107, 110, 126, 136, 142, 167, 223, 242, 243, 245, 247, 248, 257, 268, 269, 283, 288, 293, 305, 313, 333, 335, 337, 338, 340, 341, 342, 359, 362, 394, 395, 407, 419, 420, 463, 464, 483, 484], "port_specifi": 243, "portabl": [65, 73, 80, 81, 102, 109, 131, 176, 177, 215, 216, 219, 249, 250, 266, 278, 293, 299, 303, 306, 337, 342, 358, 366, 403, 421, 448, 461, 462, 465, 471, 476, 480, 481, 483], "portal": 460, "porter": [482, 483], "portion": [63, 87, 92, 95, 99, 106, 128, 141, 179, 183, 186, 203, 209, 226, 235, 267, 268, 269, 337, 342, 376, 388, 394, 410, 416, 419, 420, 426, 432, 462, 475, 476, 478, 483], "portugues": [158, 483], "pos": [22, 60, 117, 141, 153, 186, 255, 262, 278, 291, 293, 300, 319, 320, 349, 376, 384, 401, 465, 469, 478], "pos1": 441, "pos2": 441, "pos_on": 441, "pos_only_arg": 441, "pos_or_kwd": 441, "pose": [462, 466], "posit": [5, 7, 13, 23, 25, 47, 58, 60, 61, 63, 64, 68, 73, 76, 84, 85, 87, 89, 92, 94, 95, 100, 102, 106, 108, 109, 115, 117, 120, 133, 136, 138, 139, 144, 149, 153, 155, 158, 160, 163, 175, 176, 177, 181, 183, 186, 190, 191, 193, 213, 215, 221, 222, 225, 226, 234, 235, 247, 252, 255, 258, 259, 261, 266, 267, 270, 275, 278, 282, 283, 293, 299, 311, 314, 320, 321, 325, 328, 332, 337, 340, 341, 344, 345, 347, 348, 349, 352, 358, 362, 363, 365, 366, 369, 376, 378, 381, 382, 385, 386, 388, 394, 399, 408, 410, 413, 415, 421, 422, 427, 430, 431, 442, 445, 449, 462, 465, 466, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483], "positional_argu": 430, "positional_item": 430, "positional_on": 255, "positional_only_passed_as_keyword": 483, "positional_or_keyword": [87, 255], "positional_pattern": [427, 431], "positive_sign": 266, "positon": 483, "posix": [23, 34, 68, 102, 107, 111, 115, 133, 137, 150, 166, 176, 183, 209, 213, 254, 257, 266, 283, 284, 286, 292, 293, 294, 296, 301, 309, 316, 322, 328, 331, 332, 337, 338, 348, 352, 355, 358, 360, 365, 366, 391, 399, 421, 425, 426, 455, 456, 462, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 480, 481, 483], "posix_fadv_dontne": 293, "posix_fadv_noreus": 293, "posix_fadv_norm": 293, "posix_fadv_random": 293, "posix_fadv_sequenti": 293, "posix_fadv_willne": 293, "posix_fadvis": [293, 476, 478, 483], "posix_falloc": [293, 476, 478, 483], "posix_hom": [68, 315, 475], "posix_prefix": [68, 315, 475, 483], "posix_spawn": [68, 142, 164, 293, 481, 483], "posix_spawn_clos": 293, "posix_spawn_dup2": 293, "posix_spawn_file_actions_addclos": 293, "posix_spawn_file_actions_adddup2": 293, "posix_spawn_file_actions_addopen": 293, "posix_spawn_open": 293, "posix_spawn_resetid": 293, "posix_spawn_setpgroup": 293, "posix_spawn_setschedparam": 293, "posix_spawn_setschedul": 293, "posix_spawn_setsid": 293, "posix_spawn_setsid_np": 293, "posix_spawn_setsigdef": 293, "posix_spawn_setsigmask": 293, "posix_spawnp": [293, 483], "posix_us": [68, 315, 475, 483], "posix_venv": [355, 473, 483], "posixfil": [464, 468], "posixly_correct": 228, "posixmodul": 483, "posixpath": [251, 253, 294, 296, 483], "posixpathtest": 483, "posixrul": 425, "posixuidgidtest": 483, "posonly1": 87, "posonly2": 87, "posonlyarg": [122, 483], "posonlyargcount": [13, 142, 385, 481, 483], "possess": [319, 344, 405, 473, 483], "possibl": [5, 7, 13, 22, 23, 27, 31, 33, 34, 39, 42, 47, 49, 58, 61, 63, 64, 66, 68, 71, 72, 73, 76, 78, 79, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 112, 115, 117, 120, 132, 139, 141, 149, 151, 158, 159, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 194, 196, 197, 200, 201, 202, 203, 205, 206, 208, 213, 218, 222, 225, 226, 232, 235, 242, 245, 247, 250, 255, 258, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 304, 308, 309, 311, 312, 314, 319, 320, 323, 328, 331, 332, 333, 337, 340, 341, 344, 345, 346, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 382, 385, 386, 388, 394, 395, 400, 403, 405, 406, 413, 415, 416, 419, 421, 422, 423, 426, 427, 428, 430, 431, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "post": [68, 94, 95, 101, 102, 103, 110, 143, 151, 176, 193, 194, 241, 242, 245, 269, 288, 295, 297, 315, 341, 352, 369, 394, 395, 399, 420, 440, 456, 462, 464, 468, 474, 475, 476, 479, 480, 481, 483], "post_f": 464, "post_handshake_auth": [242, 341, 479, 480, 481, 483], "post_mortem": [193, 297, 468], "post_pars": 483, "post_setup": 399, "postalcod": 341, "postcmd": 155, "postcommand": 376, "postcondit": 464, "poster": 288, "posterior": 343, "posterior_femal": 343, "posterior_mal": 343, "posteriori": 343, "postfil": 141, "postgresql": [340, 467], "postloop": 155, "posto": 223, "postpon": [68, 113, 177, 250, 427, 428, 473, 483], "pot": [478, 483], "potenti": [33, 34, 63, 85, 95, 100, 102, 103, 167, 173, 183, 223, 225, 248, 250, 253, 255, 261, 267, 268, 269, 283, 293, 299, 305, 338, 341, 344, 352, 364, 385, 386, 388, 394, 421, 428, 432, 455, 461, 463, 464, 468, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "potential_err": 107, "potential_read": 107, "potential_writ": 107, "potlmrpi": 319, "pott": [479, 481, 483], "potuit": 103, "pound": [177, 190], "pour": 200, "pow": [47, 85, 89, 122, 166, 169, 225, 261, 275, 283, 289, 291, 344, 420, 428, 430, 431, 450, 464, 473, 475, 481, 483], "pow3": 283, "powel": [154, 483], "power": [68, 85, 89, 93, 94, 141, 167, 173, 176, 186, 225, 235, 261, 290, 292, 293, 297, 299, 319, 337, 344, 353, 358, 384, 413, 426, 427, 431, 433, 449, 465, 466, 468, 469, 470, 475, 476, 481, 483], "power8": 483, "powerpc": [295, 466, 467, 468, 483], "powerset": 261, "powershel": [399, 461, 481, 483], "powersofthre": 211, "powersort": 483, "poynton": 162, "pp": [93, 297, 307, 318, 481, 483], "pp165": 154, "ppc": [355, 468, 475], "ppc64": [355, 483], "ppc64le": 483, "ppercas": 387, "ppm": [206, 249, 369, 375], "ppos": 22, "pprint": [68, 93, 147, 182, 190, 254, 297, 299, 341, 452, 463, 471, 475, 483], "ppt": [196, 205], "pq": [236, 319], "pr": [308, 462, 483], "practic": [42, 63, 68, 74, 76, 84, 92, 95, 99, 101, 102, 103, 110, 120, 174, 177, 178, 186, 193, 194, 199, 223, 225, 235, 242, 248, 251, 252, 255, 283, 288, 305, 335, 340, 341, 344, 358, 365, 366, 369, 386, 394, 411, 425, 426, 428, 430, 463, 464, 465, 470, 475, 477, 480, 483], "pradeep": 473, "prado": 472, "pradyun": 474, "pragma": [176, 483], "pragmat": 109, "pranav": 474, "pranskevichus": [478, 479, 480, 481, 482, 483], "prc": 466, "prcal": 150, "pre": [34, 35, 73, 101, 102, 106, 111, 186, 191, 203, 208, 226, 245, 250, 261, 268, 292, 324, 331, 338, 340, 352, 353, 358, 381, 386, 387, 395, 399, 427, 455, 456, 461, 462, 465, 466, 467, 469, 474, 475, 477, 478, 479, 480, 482, 483], "pre6": 483, "pre_f": 464, "pread": [293, 476, 478, 480, 483], "preadv": [293, 480, 483], "prealloc": 42, "preambl": [196, 200, 205, 300, 483], "prebuilt": 461, "prec": [186, 452, 466, 467, 468], "precal": [473, 474, 483], "precall_funct": 483, "precall_funt": 483, "precall_method": 483, "precall_method_descriptor_fast_with_keyword": 483, "precari": 428, "precaut": 102, "preced": [68, 93, 101, 102, 103, 106, 153, 167, 178, 183, 190, 191, 193, 194, 202, 207, 226, 247, 255, 266, 267, 268, 276, 303, 308, 319, 334, 337, 340, 344, 345, 347, 348, 352, 353, 366, 369, 376, 384, 386, 400, 410, 413, 419, 420, 422, 427, 428, 429, 431, 433, 434, 435, 436, 455, 456, 461, 463, 464, 476, 480, 483], "precis": [9, 13, 18, 25, 45, 64, 68, 72, 101, 183, 213, 225, 230, 259, 262, 268, 269, 275, 283, 290, 293, 308, 313, 328, 329, 337, 340, 344, 345, 347, 352, 366, 376, 386, 395, 408, 427, 428, 430, 434, 435, 444, 452, 462, 466, 467, 468, 469, 475, 476, 477, 479, 480, 481, 482, 483], "preclud": [58, 344, 481], "precmd": 155, "precompil": [66, 324, 344, 455, 483], "precompos": 430, "precomput": [68, 147, 483], "precondit": [110, 341, 343, 464, 475], "precondition_fail": 241, "precondition_requir": 241, "preconfig": [34, 481], "preconfigur": 34, "precursor": 269, "pred": 399, "predat": [178, 190, 283, 394], "predecessor": [232, 465, 475], "predeclar": 73, "predefin": [73, 85, 101, 106, 112, 155, 158, 176, 177, 247, 267, 281, 345, 369, 403, 405, 428, 483], "predetermin": 269, "predic": [93, 95, 138, 255, 261, 364, 365, 413, 465, 468, 475, 480, 483], "predict": [141, 225, 258, 352, 413, 428, 455, 461, 475, 482, 483], "predicted_dist": 343, "predictor": 226, "preexec_fn": [348, 466, 481, 483], "prefabr": 176, "prefer": [5, 22, 23, 28, 31, 34, 43, 49, 61, 63, 68, 85, 94, 95, 102, 110, 120, 126, 139, 161, 167, 177, 183, 186, 202, 205, 213, 225, 250, 255, 258, 261, 266, 267, 271, 283, 292, 293, 299, 313, 332, 340, 341, 343, 348, 352, 355, 362, 364, 365, 366, 368, 376, 384, 385, 386, 403, 405, 416, 421, 426, 432, 456, 461, 467, 469, 474, 475, 476, 478, 479, 480, 481, 483], "preferencelist": [200, 205], "preferenti": 483, "prefil": 141, "prefix": [33, 34, 35, 47, 58, 61, 63, 64, 68, 73, 99, 106, 118, 155, 159, 163, 167, 173, 176, 177, 186, 190, 191, 203, 213, 228, 230, 235, 243, 245, 247, 256, 268, 269, 282, 293, 297, 302, 312, 314, 315, 319, 332, 334, 344, 345, 347, 352, 354, 360, 362, 364, 369, 375, 376, 380, 388, 399, 400, 410, 413, 415, 419, 423, 427, 431, 435, 436, 440, 449, 450, 455, 456, 460, 461, 465, 468, 469, 474, 475, 476, 478, 479, 481, 483], "prefix_char": [68, 118], "prefixlen": 259, "prefixlen_diff": 259, "pregener": [469, 478, 479, 483], "prehead": 483, "preiniti": [32, 42, 59, 68, 266], "prejudic": 186, "preliminari": [463, 480, 483], "preload": [283, 456, 483], "preloop": 155, "prematur": [73, 101, 242, 271, 470, 483], "premium": 160, "prep_reraise_star": [473, 483], "prepackag": 93, "prepar": [23, 59, 66, 68, 102, 109, 110, 157, 183, 191, 225, 230, 232, 235, 244, 269, 293, 299, 337, 346, 348, 352, 362, 384, 385, 388, 395, 413, 414, 417, 422, 426, 468, 470, 477, 478, 480, 482, 483], "preparatori": 267, "prepare_class": [385, 476], "prepare_input_sourc": 417, "prepare_ssl": 483, "prepareprotocol": [68, 298, 483], "prepend": [33, 34, 93, 102, 158, 163, 178, 202, 226, 261, 269, 271, 288, 292, 301, 312, 331, 332, 352, 356, 364, 413, 421, 455, 461, 474, 483], "prepend_prefix": 163, "prependdir": [163, 482, 483], "prependpath": [461, 473], "preprocess": [167, 175, 394], "preprocessor": [23, 42, 57, 68, 331, 458, 462, 469, 483], "prereleas": [57, 483], "prerequisit": [68, 427, 470, 483], "prerog": 101, "prescod": [462, 463, 464, 467], "prescript": 103, "presenc": [33, 63, 73, 75, 112, 158, 161, 186, 191, 218, 243, 250, 292, 308, 341, 348, 352, 378, 386, 388, 427, 428, 430, 464, 465, 470, 472, 479, 480, 481, 482, 483], "present": [7, 22, 31, 34, 39, 45, 49, 63, 68, 73, 74, 77, 79, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 115, 120, 146, 151, 152, 153, 155, 158, 161, 167, 176, 177, 181, 184, 186, 190, 191, 193, 196, 197, 205, 215, 221, 225, 226, 235, 243, 245, 247, 250, 251, 255, 259, 262, 267, 268, 269, 271, 276, 278, 288, 292, 293, 297, 299, 307, 308, 313, 314, 319, 322, 331, 335, 337, 341, 343, 344, 345, 352, 358, 359, 362, 364, 365, 366, 367, 369, 371, 375, 376, 378, 381, 384, 386, 388, 394, 395, 410, 413, 415, 419, 421, 423, 427, 428, 430, 432, 435, 436, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "preserv": [27, 33, 42, 68, 73, 84, 85, 95, 102, 103, 112, 120, 167, 183, 186, 190, 193, 196, 201, 203, 205, 208, 213, 255, 261, 262, 268, 269, 292, 293, 297, 299, 331, 332, 340, 344, 358, 362, 368, 385, 386, 388, 411, 413, 427, 428, 430, 435, 461, 462, 463, 464, 465, 467, 468, 469, 475, 476, 477, 478, 480, 481, 482, 483], "preset": [270, 297, 358, 483], "preset_default": 270, "preset_extrem": 270, "presiz": 483, "press": [23, 92, 102, 126, 154, 177, 247, 282, 297, 323, 369, 375, 376, 384, 388, 422, 469, 475, 483], "preston": [426, 480], "presult": 36, "presum": [63, 101, 161, 183, 271, 283, 347, 348, 394, 430, 464, 469, 470, 483], "pretend": [73, 107, 177, 428, 464, 481], "pretend_serv": 110, "pretium": 149, "pretti": [68, 76, 92, 103, 109, 122, 167, 185, 190, 250, 255, 262, 269, 292, 297, 307, 308, 378, 411, 413, 419, 430, 462, 463, 464, 467, 468, 470, 482, 483], "pretty_nam": 303, "prettyprint": [68, 182, 477, 483], "prev": [177, 376], "prev_fram": 483, "prev_h_len": 320, "prev_instr": 483, "prevail": [430, 483], "prevent": [13, 22, 23, 27, 33, 42, 58, 61, 73, 75, 76, 84, 85, 92, 93, 100, 101, 102, 109, 110, 139, 158, 167, 169, 170, 176, 181, 186, 190, 193, 206, 225, 226, 247, 250, 259, 262, 268, 269, 271, 272, 276, 283, 288, 292, 293, 305, 311, 335, 337, 341, 348, 352, 353, 358, 362, 369, 381, 384, 386, 388, 400, 422, 428, 430, 432, 455, 461, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "preview": [200, 257, 483], "preview2": 483, "previous": [5, 7, 9, 11, 13, 17, 22, 23, 26, 27, 28, 33, 42, 47, 58, 59, 61, 63, 64, 72, 73, 75, 76, 79, 84, 85, 92, 95, 101, 102, 103, 106, 109, 120, 132, 133, 139, 144, 149, 151, 158, 167, 169, 170, 173, 176, 177, 183, 186, 190, 191, 193, 207, 208, 213, 214, 216, 221, 226, 230, 242, 245, 247, 250, 253, 255, 258, 259, 261, 265, 267, 269, 270, 271, 276, 278, 282, 283, 284, 292, 293, 297, 299, 311, 314, 319, 329, 330, 331, 333, 335, 337, 340, 341, 344, 347, 352, 355, 356, 358, 362, 364, 365, 366, 375, 376, 380, 382, 384, 385, 386, 388, 394, 395, 400, 405, 410, 413, 420, 422, 423, 426, 427, 428, 429, 432, 436, 446, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "previouss": 410, "pri": 356, "price": [100, 160, 221, 319, 412, 449, 466, 467, 478, 481, 483], "primari": [13, 68, 76, 85, 93, 94, 108, 157, 169, 193, 194, 196, 205, 206, 218, 261, 267, 276, 281, 293, 299, 308, 334, 337, 340, 341, 352, 378, 419, 425, 431, 432, 433, 436, 452, 462, 463, 465, 466, 468, 469, 470, 475, 476, 477, 483], "primarili": [61, 85, 99, 101, 139, 141, 158, 183, 194, 206, 226, 252, 255, 267, 299, 304, 344, 348, 352, 386, 388, 400, 411, 427, 429, 461, 463, 464, 466, 468, 469, 476, 478, 480, 482, 483], "primary_except": 470, "prime": [85, 166, 193, 208, 225, 261, 283, 352, 366, 441, 451, 475, 479, 481, 483], "prime256v1": [341, 483], "primer": 68, "primit": [68, 75, 84, 85, 115, 123, 124, 136, 164, 176, 177, 187, 258, 299, 308, 319, 328, 329, 333, 341, 365, 452, 472, 476, 477, 480, 483], "princ": 474, "princip": [85, 243, 341, 471, 475], "principl": [73, 85, 103, 186, 476], "print": [13, 22, 27, 32, 33, 34, 42, 49, 59, 63, 68, 72, 73, 75, 76, 78, 79, 84, 85, 86, 87, 88, 89, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 113, 114, 115, 118, 122, 123, 125, 126, 129, 133, 134, 135, 136, 137, 138, 139, 140, 144, 146, 151, 155, 157, 159, 160, 163, 166, 167, 169, 170, 172, 175, 176, 177, 181, 183, 184, 186, 188, 190, 191, 193, 196, 200, 201, 204, 205, 211, 213, 214, 216, 220, 225, 226, 228, 230, 232, 235, 240, 242, 244, 245, 247, 248, 250, 251, 255, 258, 262, 267, 269, 271, 278, 279, 282, 283, 288, 293, 296, 297, 299, 301, 304, 305, 307, 308, 309, 313, 314, 316, 318, 319, 320, 321, 322, 325, 329, 331, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 348, 352, 355, 357, 358, 359, 360, 362, 364, 365, 367, 369, 375, 376, 378, 380, 381, 382, 384, 386, 388, 389, 395, 397, 399, 400, 402, 405, 407, 408, 411, 412, 413, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "print_ab": 386, "print_assign": 95, "print_cal": 308, "print_calle": 308, "print_capit": 386, "print_cont": 369, "print_diff_fil": 216, "print_directori": 151, "print_environ": 151, "print_environ_usag": 151, "print_error": [79, 475], "print_escap": 483, "print_exc": [102, 367, 381, 483], "print_except": [267, 269, 381, 472, 483], "print_expr": 483, "print_form": 151, "print_funct": [112, 113, 436, 468], "print_help": [120, 292], "print_http_head": 136, "print_it": 369, "print_last": 381, "print_mro": 103, "print_some_tim": 325, "print_stack": [139, 267, 381, 478, 483], "print_stat": 308, "print_tb": [214, 381, 478], "print_tim": 325, "print_usag": [120, 292], "print_user_nam": 114, "print_vers": 292, "print_warn": 362, "printabl": [64, 146, 158, 177, 178, 195, 196, 197, 198, 202, 203, 208, 225, 282, 317, 344, 345, 346, 428, 463, 470, 475], "printabletyp": 468, "printdir": 422, "printdocu": 92, "printer": [68, 106, 247, 369, 378, 405], "printf": [9, 64, 68, 72, 73, 98, 176, 245, 267, 430, 446, 449, 460, 467, 473, 483], "printnameoffset": 483, "printout": [308, 483], "prio_darwin_bg": [293, 483], "prio_darwin_nonui": [293, 483], "prio_darwin_process": [293, 483], "prio_darwin_thread": [293, 483], "prio_pgrp": 293, "prio_process": 293, "prio_us": 293, "prion": 475, "prior": [13, 22, 27, 33, 45, 59, 85, 93, 101, 102, 186, 225, 226, 245, 251, 255, 267, 314, 329, 332, 337, 340, 341, 343, 344, 348, 352, 356, 358, 362, 365, 386, 388, 413, 422, 426, 427, 428, 430, 432, 435, 436, 474, 477, 478, 479, 480, 481, 483], "prior_femal": 343, "prior_mal": 343, "priori": [250, 253], "priorit": 483, "prioriti": [34, 68, 93, 108, 124, 142, 167, 236, 250, 262, 269, 293, 299, 316, 322, 325, 328, 341, 344, 348, 356, 365, 375, 428, 430, 464, 465, 468, 475, 476, 477, 479, 481, 483], "prioritizeditem": [236, 316], "priority_numb": [134, 316], "priorityqu": 465, "priorityqueu": [124, 134, 316, 344, 468, 483], "privaci": [85, 341], "privat": [13, 32, 33, 42, 43, 57, 68, 85, 93, 94, 95, 176, 181, 190, 223, 225, 247, 248, 250, 259, 278, 283, 299, 305, 335, 341, 346, 348, 362, 386, 430, 435, 436, 440, 461, 463, 464, 465, 468, 474, 475, 476, 477, 478, 479, 481, 483], "private_nam": 93, "privatekey": 483, "privileg": [151, 288, 293, 337, 339, 342, 366, 405, 476, 479, 483], "prize": 103, "prlimit": [142, 322, 477, 483], "prmonth": [150, 483], "prng": 341, "pro": 319, "proactor": [478, 483], "proactor_ev": 131, "proactoreventloop": [126, 131, 132, 137, 473, 481, 483], "proactorloopctrlc": 483, "proactorsockettransport": 483, "prob_dist": 475, "probabilist": 308, "probabl": [31, 33, 56, 73, 75, 79, 85, 92, 99, 102, 106, 158, 159, 176, 183, 193, 200, 213, 230, 283, 293, 297, 308, 318, 335, 337, 338, 340, 341, 343, 352, 355, 384, 395, 405, 406, 415, 434, 456, 462, 463, 464, 465, 467, 468, 470, 475, 476, 483], "probe": [68, 98, 477, 483], "probenam": 98, "probl": 288, "problem": [23, 25, 33, 59, 63, 68, 73, 76, 84, 85, 92, 93, 95, 96, 100, 101, 102, 103, 109, 141, 152, 158, 159, 167, 169, 183, 186, 190, 193, 196, 199, 203, 205, 207, 230, 245, 247, 250, 261, 262, 266, 267, 268, 283, 292, 293, 299, 308, 314, 333, 337, 340, 344, 347, 358, 362, 364, 386, 395, 410, 413, 427, 435, 443, 444, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 480, 481, 483], "problemat": [61, 167, 268, 283, 466, 471, 475, 480, 483], "proc": [137, 240, 293, 348, 479, 483], "procedur": [42, 72, 80, 95, 103, 121, 151, 158, 176, 225, 308, 335, 346, 362, 384, 418, 419, 436, 441, 463, 464, 467, 475], "proceed": [72, 76, 110, 186, 195, 205, 261, 271, 283, 293, 308, 341, 365, 427, 430, 483], "process": [5, 7, 23, 32, 34, 39, 45, 51, 58, 59, 63, 66, 68, 72, 73, 75, 77, 78, 79, 84, 92, 95, 96, 98, 99, 101, 106, 107, 109, 110, 112, 114, 115, 120, 126, 130, 133, 134, 137, 145, 149, 150, 151, 155, 158, 164, 166, 169, 175, 176, 177, 183, 186, 193, 200, 201, 203, 212, 213, 214, 218, 225, 226, 228, 230, 232, 235, 240, 241, 245, 247, 248, 250, 254, 255, 257, 260, 261, 266, 267, 268, 269, 270, 271, 278, 280, 284, 292, 293, 295, 296, 299, 308, 309, 314, 315, 316, 319, 322, 324, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 342, 344, 346, 347, 348, 352, 354, 356, 358, 359, 362, 364, 365, 366, 367, 369, 371, 378, 380, 381, 384, 385, 386, 394, 395, 399, 400, 403, 405, 407, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 425, 427, 428, 430, 432, 435, 436, 455, 456, 461, 463, 464, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "process_block": 225, "process_client_connect": 365, "process_exit": [130, 133, 483], "process_fil": 169, "process_group": [348, 483], "process_id": [142, 337], "process_messag": [478, 479], "process_request": [102, 338], "process_server_connect": 365, "process_tim": [308, 366, 367, 476, 481, 483], "process_time_n": [366, 480, 483], "process_token": 357, "processerror": 283, "processing_instruct": 412, "processing_instruction_nod": [410, 411], "processinginstruct": [68, 273, 413, 415, 467], "processinginstructionhandl": 314, "processlookuperror": [23, 212, 213, 322, 450, 476], "processnam": [102, 267, 283], "processor": [25, 35, 73, 93, 109, 283, 288, 292, 295, 303, 314, 322, 337, 395, 415, 428, 462, 466, 467, 481, 482, 483], "processpoolexcutor": 483, "processpoolexecutor": [68, 84, 125, 126, 164, 283, 365, 475, 478, 480, 481, 482, 483], "procf": [293, 483], "procid": 102, "procthread": 461, "procur": 426, "prod": [261, 275, 481, 483], "produc": [5, 7, 22, 23, 25, 34, 39, 59, 63, 76, 77, 84, 85, 92, 95, 101, 102, 106, 109, 120, 139, 149, 151, 158, 161, 163, 167, 176, 177, 183, 186, 187, 190, 193, 194, 196, 197, 201, 202, 203, 205, 208, 213, 214, 225, 228, 230, 234, 235, 248, 258, 261, 262, 267, 270, 276, 283, 288, 293, 299, 302, 305, 308, 313, 318, 319, 321, 341, 343, 344, 347, 348, 352, 358, 365, 377, 378, 380, 384, 394, 397, 406, 411, 412, 414, 415, 416, 421, 422, 428, 430, 432, 435, 449, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "product": [7, 68, 80, 84, 95, 101, 125, 186, 193, 225, 236, 245, 247, 261, 269, 275, 318, 344, 352, 384, 388, 389, 421, 426, 430, 435, 440, 450, 459, 462, 463, 467, 468, 469, 471, 476, 479, 481, 483], "product_typ": [352, 469], "productcod": 281, "productionclass": [389, 390], "productnam": 281, "productvers": 281, "profdata": [456, 483], "profession": [461, 471], "professor": 319, "profici": 411, "profil": [13, 32, 34, 51, 68, 85, 96, 104, 156, 158, 185, 333, 341, 346, 352, 354, 365, 369, 405, 438, 451, 455, 456, 459, 463, 464, 466, 467, 468, 470, 472, 473, 474, 479, 481, 483], "profile_m": 96, "profile_task": [456, 482, 483], "profilefunc": 352, "profiler_id": 353, "profit": 426, "proftpd": [223, 475], "prog": [68, 89, 102, 118, 292, 319, 399, 451, 475], "program": [5, 31, 33, 34, 42, 45, 66, 68, 72, 73, 77, 84, 86, 89, 93, 94, 95, 97, 101, 102, 106, 110, 112, 118, 120, 125, 133, 135, 137, 146, 151, 155, 157, 158, 159, 160, 164, 167, 168, 169, 176, 183, 186, 193, 200, 201, 203, 208, 213, 214, 216, 222, 224, 225, 226, 227, 228, 234, 246, 247, 248, 250, 254, 255, 267, 269, 271, 272, 276, 282, 292, 293, 296, 297, 299, 307, 308, 309, 311, 313, 314, 319, 322, 328, 330, 333, 337, 338, 340, 341, 347, 348, 352, 353, 354, 362, 365, 368, 375, 376, 380, 381, 384, 386, 388, 394, 395, 400, 403, 405, 410, 411, 419, 421, 422, 426, 427, 428, 430, 433, 434, 435, 436, 440, 452, 455, 456, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 483], "program_nam": [33, 34], "programacion": [468, 470], "programfil": 461, "programm": [7, 63, 73, 77, 80, 85, 92, 93, 101, 103, 177, 181, 183, 186, 193, 194, 266, 271, 283, 292, 293, 295, 337, 340, 344, 347, 352, 369, 375, 384, 390, 400, 405, 427, 436, 463, 464, 466, 467, 468, 475, 483], "programmat": [68, 72, 167, 169, 185, 208, 266, 268, 280, 292, 299, 309, 320, 352, 378, 395, 469, 476, 477, 483], "programmingerror": [340, 473, 474, 483], "programnam": 120, "programprioritytest": 483, "progress": [84, 106, 151, 193, 212, 283, 293, 331, 340, 341, 358, 375, 376, 399, 400, 461, 462, 464, 469, 483], "progress_handl": 340, "progressbar": [68, 368], "prohibit": [132, 193, 258, 262, 341, 430, 480, 481, 482, 483], "proj": [388, 483], "project": [70, 75, 76, 77, 84, 86, 91, 102, 112, 151, 167, 183, 193, 223, 230, 235, 250, 251, 261, 292, 307, 314, 386, 388, 399, 421, 422, 425, 426, 434, 456, 459, 461, 462, 465, 468, 469, 470, 473, 474, 475, 476, 477, 479, 482, 483], "project_bas": 483, "project_directori": 388, "project_info": 307, "project_nam": 475, "project_url": 307, "projectbas": 475, "prolept": [150, 183], "prolog": 483, "prologu": 411, "promin": [426, 470, 483], "promis": [73, 94, 255, 475, 483], "promiscu": 337, "promot": [194, 426, 468, 483], "prompt": [34, 66, 79, 85, 112, 120, 142, 155, 157, 166, 173, 176, 189, 191, 193, 200, 207, 225, 229, 247, 248, 283, 297, 313, 319, 320, 335, 341, 344, 348, 352, 361, 365, 381, 384, 395, 399, 432, 436, 441, 444, 449, 455, 461, 465, 468, 472, 475, 477, 479, 480, 481, 482, 483], "prompt_last_lin": 483, "prompt_user_passwd": 395, "prone": [76, 103, 151, 183, 193, 299, 308, 344, 474, 478, 483], "pronounc": 475, "proof": [85, 95, 203, 283, 462, 481, 483], "prop": [93, 461, 474, 483], "propag": [23, 33, 36, 95, 101, 102, 125, 139, 157, 170, 213, 250, 267, 268, 283, 297, 302, 325, 332, 333, 340, 344, 348, 352, 366, 381, 388, 395, 427, 428, 430, 432, 443, 465, 467, 479, 483], "prope": 483, "proper": [5, 23, 33, 34, 45, 49, 59, 63, 72, 73, 75, 76, 85, 96, 100, 102, 106, 137, 169, 170, 177, 190, 191, 202, 203, 207, 209, 213, 230, 235, 245, 247, 250, 266, 283, 293, 308, 314, 332, 335, 337, 341, 344, 347, 348, 352, 358, 362, 365, 369, 376, 386, 388, 394, 395, 410, 413, 415, 427, 428, 430, 461, 462, 463, 464, 465, 469, 470, 474, 476, 477, 478, 479, 480, 481, 483], "proper_slic": 430, "properti": [16, 58, 63, 68, 87, 94, 95, 99, 101, 103, 106, 116, 122, 158, 160, 170, 176, 177, 181, 186, 193, 195, 196, 203, 205, 208, 211, 221, 225, 226, 230, 235, 241, 251, 255, 257, 259, 262, 266, 271, 281, 283, 304, 331, 335, 341, 344, 346, 347, 352, 365, 378, 382, 384, 385, 386, 387, 388, 389, 395, 402, 405, 410, 411, 414, 415, 416, 426, 427, 428, 435, 436, 450, 461, 462, 464, 465, 466, 467, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "property_declaration_handl": 415, "property_descr_get": 483, "property_descr_set": 483, "property_dom_nod": 415, "property_lexical_handl": 415, "property_xml_str": 415, "propertymock": [389, 483], "propertynam": 416, "proplist": 435, "proport": [141, 167, 318, 343, 483], "propos": [80, 87, 103, 153, 175, 226, 267, 341, 344, 348, 410, 427, 430, 432, 435, 436, 462, 463, 465, 466, 467, 468, 469, 475, 479, 481, 483], "proprietari": 92, "prose": 193, "prospero": 394, "prot": 278, "prot_c": 223, "prot_p": 223, "prot_read": 278, "prot_writ": 278, "protect": [23, 33, 73, 75, 76, 102, 139, 167, 176, 177, 181, 223, 230, 235, 248, 258, 270, 278, 283, 307, 314, 324, 331, 338, 342, 358, 400, 421, 428, 455, 464, 467, 474, 478, 483], "proto": [126, 136, 300, 337, 386, 395], "protocol": [2, 8, 9, 23, 28, 32, 47, 49, 54, 55, 58, 61, 63, 66, 68, 74, 79, 84, 87, 93, 94, 95, 99, 102, 109, 110, 121, 126, 130, 137, 141, 142, 146, 151, 158, 161, 169, 176, 183, 184, 187, 194, 203, 209, 212, 217, 225, 235, 241, 242, 243, 245, 248, 250, 251, 253, 254, 255, 258, 260, 267, 268, 269, 271, 283, 288, 293, 295, 299, 300, 305, 328, 329, 330, 335, 337, 338, 340, 341, 344, 346, 347, 358, 359, 362, 365, 369, 386, 395, 405, 407, 416, 419, 420, 423, 427, 428, 430, 435, 456, 462, 464, 465, 467, 468, 469, 471, 472, 473, 475, 477, 480, 482, 483, 484], "protocol_": 341, "protocol_factori": [126, 133], "protocol_sslv2": 472, "protocol_sslv23": [223, 341, 472, 483], "protocol_sslv3": [341, 472, 483], "protocol_tl": [341, 472, 483], "protocol_tls_cli": [341, 472, 483], "protocol_tls_serv": [341, 472, 483], "protocol_tlsv1": [341, 472], "protocol_tlsv1_1": [341, 472, 477], "protocol_tlsv1_2": [341, 472, 477, 483], "protocol_vers": [245, 248], "protocolerror": [68, 256], "protocolnam": [142, 337], "prototyp": [66, 68, 118, 155, 186, 340, 462, 467, 469, 483], "prouser": 386, "prouserid": 386, "provabl": [68, 461, 483], "prove": [63, 95, 103, 176, 261, 341, 427, 465, 470, 471], "proven": [95, 193, 384, 465], "provid": [5, 7, 11, 23, 25, 28, 31, 33, 34, 42, 43, 45, 47, 49, 51, 54, 58, 61, 63, 64, 66, 68, 72, 74, 75, 79, 84, 85, 91, 92, 93, 94, 95, 96, 98, 99, 100, 102, 103, 106, 108, 109, 110, 115, 117, 120, 124, 133, 137, 139, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 215, 216, 218, 220, 221, 224, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 280, 281, 282, 283, 288, 290, 292, 293, 295, 298, 302, 304, 305, 307, 308, 311, 312, 314, 315, 319, 320, 321, 322, 323, 324, 326, 328, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 430, 432, 435, 436, 440, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "provinc": 341, "provis": [101, 302, 341, 426, 430], "provision": [32, 68, 87, 197, 203, 205, 208, 251, 352, 477, 478, 479, 480, 481, 483], "provok": 42, "proxi": [61, 67, 68, 164, 167, 170, 187, 213, 225, 226, 242, 248, 257, 344, 385, 388, 395, 402, 410, 419, 426, 428, 463, 468, 474, 475, 476, 478, 479, 481, 483], "proxiedtransport": 419, "proxy_auth_handl": 395, "proxy_authentication_requir": 241, "proxy_bypass_environ": 483, "proxy_handl": 395, "proxy_head": 419, "proxy_support": 110, "proxyauth": 248, "proxybasicauthhandl": [68, 256], "proxydigestauthhandl": [68, 256], "proxyhandl": [68, 110, 256, 483], "proxytyp": [283, 402, 483], "prs": 483, "prune": [293, 483], "prweek": 483, "pryear": [150, 483], "pryor": 467, "ps": [297, 308, 348, 399], "ps1": [66, 157, 337, 352, 399, 438, 450, 455, 481, 483], "ps2": [66, 157, 352, 438, 450, 455, 483], "pseudo": [66, 94, 120, 176, 181, 191, 196, 274, 286, 293, 302, 309, 322, 326, 344, 352, 432, 464, 465, 468, 474, 479, 483], "pseudorandom": [235, 318], "pseudotermin": 309, "psf": [68, 80, 296], "pslaee": 319, "psm": 337, "psm_21467_46075": 284, "psm_6572_12221": 284, "psm_6572_7512": 284, "pst": [183, 425, 482], "pstat": [156, 308, 451, 463, 467, 483], "pstdev": [343, 483], "psuedo": 483, "psycopg": 476, "pt": 176, "pt154": 158, "ptag": 483, "ptcp154": 158, "pth": [302, 334, 352, 354, 455, 462, 479, 483], "pthread": [33, 115, 352, 365, 456, 475, 483], "pthread_": 483, "pthread_atfork": 33, "pthread_cond_timedwait": 483, "pthread_condattr_setclock": 483, "pthread_exit": 483, "pthread_getcpuclockid": [366, 480, 483], "pthread_kil": [142, 293, 333, 476], "pthread_mutex_lock": 483, "pthread_scope_system": 483, "pthread_sigmask": [333, 476], "pti": [68, 142, 254, 293, 341, 391, 474, 483], "ptp": 366, "ptr": [7, 18, 34, 42, 142, 176, 259, 466, 478], "ptr_to_char_star": 96, "ptr_to_python_str": 96, "ptrace": [293, 483], "ptraceback": 23, "ptrdiff_t": [64, 474, 483], "ptype": [18, 23, 303, 483], "pu": 384, "pub": [102, 124, 223, 332, 460], "pub0": 102, "pubid": 413, "public": [17, 26, 28, 33, 34, 55, 63, 68, 84, 93, 103, 107, 110, 155, 175, 176, 190, 204, 222, 223, 235, 240, 243, 250, 251, 255, 264, 282, 283, 292, 314, 331, 337, 341, 352, 358, 362, 364, 386, 387, 388, 395, 408, 410, 413, 416, 426, 435, 436, 440, 462, 463, 465, 466, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "public_id": 415, "public_key": 223, "public_nam": 93, "publicdomain": 235, "publicid": [314, 410, 415], "publish": [73, 102, 106, 186, 190, 192, 340, 362, 420, 426, 461, 463, 469, 475, 482, 483], "pula": 483, "pull": [68, 73, 183, 186, 273, 328, 384, 412, 425, 462, 466, 469, 477, 480, 483], "pulldom": [68, 254, 273, 409, 473, 481, 483], "pulliainen": 477, "puls": 102, "pulvinar": 149, "pumpkin": 340, "pun": 483, "punch": 483, "punctuat": [106, 109, 331, 345, 435, 479], "punctuation_char": [331, 479, 483], "punycod": [71, 158, 465, 483], "puppi": 190, "purcel": 463, "pure": [68, 74, 84, 85, 95, 100, 102, 105, 169, 176, 183, 186, 223, 230, 235, 261, 296, 308, 333, 352, 355, 356, 362, 427, 428, 442, 455, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 481, 483], "pureftpd": 223, "purelib": [355, 399, 475], "purepath": [251, 293, 296, 472, 473, 474, 482, 483], "pureposixpath": [296, 483], "purewindowspath": [296, 483], "purg": 319, "purifi": [78, 456], "puriti": [95, 394], "purl": 413, "purpl": [92, 94, 102, 211], "purplish": 177, "purpos": [5, 7, 17, 31, 33, 42, 63, 68, 72, 73, 75, 85, 93, 94, 101, 102, 106, 110, 114, 128, 158, 167, 169, 170, 173, 176, 177, 181, 183, 186, 190, 193, 196, 202, 205, 206, 213, 226, 230, 235, 245, 250, 253, 255, 261, 268, 283, 292, 293, 295, 299, 307, 308, 323, 325, 334, 337, 340, 341, 347, 352, 358, 365, 369, 376, 384, 385, 386, 388, 394, 400, 407, 410, 413, 414, 421, 425, 426, 427, 429, 430, 431, 432, 435, 440, 455, 456, 461, 462, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "purus": 149, "push": [102, 157, 160, 169, 177, 179, 186, 191, 282, 283, 314, 331, 365, 413, 435, 436, 441, 462, 468, 476, 483], "push_async_callback": [169, 481], "push_async_exit": 169, "push_exc_info": [191, 473], "push_nul": [191, 473, 483], "push_sourc": 331, "push_token": 331, "pushback": 331, "pushbutton": 281, "pushd": 460, "pussycat": 200, "put": [34, 49, 58, 68, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 96, 100, 102, 106, 134, 138, 151, 158, 167, 176, 191, 193, 201, 203, 208, 215, 230, 232, 241, 242, 247, 250, 268, 281, 283, 295, 299, 300, 316, 333, 334, 335, 337, 341, 344, 355, 364, 365, 369, 395, 425, 432, 441, 449, 461, 463, 464, 465, 466, 467, 468, 469, 475, 478, 483], "put_nowait": [102, 134, 269, 283, 316], "putch": 282, "putchar": 177, "putcmd": 483, "putenv": [142, 293, 306, 482, 483], "puthead": 242, "putlin": [142, 288, 305, 483], "putp": 177, "putrequest": [242, 483], "putwch": [282, 468], "putwin": 177, "puzzl": [96, 467], "pvalu": [22, 23, 72], "pvarianc": [343, 483], "pvm": 84, "pvs": 483, "pw_dir": 310, "pw_geco": 310, "pw_gid": 310, "pw_name": 310, "pw_passwd": 310, "pw_shell": 310, "pw_uid": [310, 348], "pwd": [68, 173, 223, 229, 233, 254, 293, 294, 339, 348, 391, 422, 465, 482, 483], "pwrite": [293, 476, 478, 480], "pwritev": [293, 480, 483], "px": [94, 275], "py": [34, 35, 51, 68, 73, 76, 79, 85, 86, 87, 89, 94, 95, 98, 101, 102, 103, 104, 109, 111, 112, 113, 116, 117, 120, 122, 125, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 147, 149, 150, 151, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 166, 167, 169, 171, 172, 173, 175, 176, 178, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 197, 198, 199, 201, 202, 203, 204, 205, 207, 208, 209, 211, 214, 216, 218, 220, 221, 223, 226, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 276, 279, 281, 284, 286, 288, 289, 291, 292, 293, 294, 296, 297, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 321, 323, 324, 325, 326, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 354, 355, 357, 358, 359, 360, 362, 364, 365, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 388, 389, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 430, 432, 438, 448, 449, 450, 451, 452, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "py2": [453, 475, 483], "py2app": [85, 459], "py2ex": [85, 283, 483], "py3": [112, 453, 471, 475, 483], "py32": 475, "py3c": 91, "py3k": [33, 87, 352, 355, 470], "py3kwarn": 468, "py_": [58, 61, 461, 483], "py_ab": 35, "py_addpendingcal": [33, 57, 469, 482, 483], "py_address_in_rang": 483, "py_adjust_erange1": [473, 483], "py_adjust_erange2": [473, 483], "py_allow_recurs": [472, 483], "py_always_inlin": [35, 483], "py_atexit": [57, 59], "py_audit_read": [58, 474], "py_audithookfunct": 59, "py_begin_allow_thread": [5, 33, 57, 73], "py_big_endian": 25, "py_block_thread": [33, 57], "py_bt": 483, "py_buff": [5, 7, 43, 57, 63, 468, 473, 476, 483], "py_build_cor": [474, 483], "py_build_core_builtin": 456, "py_build_core_modul": [456, 483], "py_buildvalu": [5, 10, 35, 57, 59, 60, 68, 73, 86, 467, 472, 481, 483], "py_builtin_module_cflag": 456, "py_bytesmain": [57, 66, 104, 481], "py_byteswarningflag": [33, 474, 480], "py_call_trampolin": 483, "py_cflag": [456, 483], "py_cflags_nodist": [456, 483], "py_charmask": 35, "py_cleanup_support": 5, "py_clear": [52, 63, 73, 75, 76, 466, 474, 483], "py_cmp_func": 176, "py_code_event_cr": 13, "py_code_event_destroy": 13, "py_coderesourc": 474, "py_coerce_c_local": 456, "py_compil": [68, 85, 156, 163, 254, 264, 469, 474, 475, 477, 483], "py_compilestr": [57, 66, 472], "py_compilestringexflag": 66, "py_compilestringflag": 66, "py_compilestringobject": 66, "py_complex": [5, 15, 73], "py_core_cflag": 456, "py_core_ldflag": 456, "py_cppflag": 456, "py_create_mod": 483, "py_debug": [34, 35, 362, 456, 472, 481, 483], "py_debugflag": [33, 474], "py_decodelocal": [33, 34, 57, 59, 64, 72, 73, 478, 480, 483], "py_decref": [13, 22, 23, 28, 35, 36, 45, 52, 57, 63, 72, 73, 75, 76, 79, 87, 100, 472, 474, 481, 483], "py_deprec": [35, 481, 483], "py_dontwritebytecodeflag": [33, 474], "py_dtsf_add_dot_0": 18, "py_dtsf_alt": 18, "py_dtsf_sign": 18, "py_dtst_finit": 18, "py_dtst_infinit": 18, "py_dtst_nan": 18, "py_ellipsi": [56, 431], "py_emscripten_signal_handl": 483, "py_emscriptensignalbuff": 483, "py_enable_shar": 355, "py_encodelocal": [33, 57, 59, 64, 478, 480, 483], "py_end_allow_recurs": [472, 483], "py_end_allow_thread": [33, 57, 73, 481, 483], "py_endinterpret": [33, 57, 100, 483], "py_enterrecursivecal": [10, 23, 57, 482, 483], "py_eq": [49, 63, 64, 75], "py_eval_input": [66, 79, 431], "py_exit": [57, 59, 479, 483], "py_exitstatusexcept": [34, 481], "py_exported_symbol": 456, "py_fals": [6, 63, 64, 75, 431, 483], "py_fatalerror": [33, 35, 42, 57, 59, 64, 482, 483], "py_fdisinteract": 59, "py_fil": 358, "py_file_input": [66, 431, 472], "py_filesystemdefaultencod": [57, 474, 483], "py_filesystemdefaultencodeerror": [57, 474, 483], "py_fin": [33, 34, 57, 469, 483], "py_finalizeex": [33, 35, 57, 59, 72, 100, 479, 483], "py_force_doubl": [473, 483], "py_frozen": 474, "py_frozenflag": [33, 474], "py_frozenmain": [472, 483], "py_func_type_input": 431, "py_g": [49, 63, 64, 75], "py_genericalia": [57, 62, 483], "py_genericaliastyp": [57, 62, 483], "py_getargcargv": [32, 68, 483], "py_getbuildinfo": [33, 57, 467], "py_getcompil": [33, 57], "py_getcopyright": [33, 57], "py_getenv": 35, "py_getexecprefix": [33, 35, 57, 472, 474, 483], "py_getpath": [33, 35, 57, 472, 474, 483], "py_getplatform": [33, 57], "py_getprefix": [33, 35, 57, 472, 474, 483], "py_getprogramfullpath": [33, 35, 57, 472, 474, 481, 483], "py_getprogramnam": [33, 57, 472, 474, 481, 483], "py_getpythonhom": [33, 57, 472, 474, 483], "py_getrecursionlimit": 57, "py_getvers": [33, 57], "py_gt": [49, 63, 64, 75], "py_hasfilesystemdefaultencod": [57, 474], "py_hash_t": [30, 49, 63, 75, 475], "py_hashrandomizationflag": [33, 474], "py_have_native_tl": 483, "py_huge_v": 18, "py_i": [57, 58, 472, 483], "py_ignoreenvironmentflag": [33, 474, 480, 483], "py_imported_symbol": 456, "py_incref": [23, 35, 52, 57, 67, 73, 75, 76, 86, 87, 472, 473, 474, 481, 483], "py_infin": 483, "py_initi": [24, 31, 33, 34, 35, 57, 59, 72, 73, 86, 461, 472, 475, 480, 482, 483], "py_initializeex": [33, 57, 100, 483], "py_initializefromconfig": [33, 34, 42, 354, 474, 481, 483], "py_inspectflag": [33, 474], "py_interactiveflag": [33, 474], "py_intptr_t": 57, "py_is_infin": [473, 483], "py_is_nan": 466, "py_is_typ": [58, 483], "py_isalnum": 469, "py_isalpha": 469, "py_isdigit": 469, "py_isfals": [57, 58, 472, 483], "py_isiniti": [33, 35, 57], "py_islow": 469, "py_isnon": [57, 58, 472, 483], "py_isolatedflag": [33, 474], "py_isspac": 469, "py_istru": [57, 58, 472, 483], "py_isupp": 469, "py_isxdigit": 469, "py_l": [49, 63, 64, 75], "py_ldflag": 456, "py_ldflags_nodist": 456, "py_leaverecursivecal": [10, 23, 57, 482, 483], "py_legacywindowsfsencodingflag": [33, 474, 483], "py_legacywindowsstdioflag": [33, 474], "py_limited_api": [33, 56, 57, 59, 61, 472, 473, 475, 480, 482, 483], "py_loc": 467, "py_local_aggress": 467, "py_local_inlin": 467, "py_long_long": 479, "py_lt": [49, 63, 64, 75], "py_main": [34, 57, 66, 461, 480, 483], "py_major_vers": [4, 113], "py_makependingcal": 57, "py_marshal_vers": [41, 473, 483], "py_max": 35, "py_member_s": 35, "py_memcpi": 483, "py_micro_vers": [4, 113], "py_min": 35, "py_minor_vers": [4, 66, 113, 481], "py_mod_cr": 45, "py_mod_exec": [45, 482, 483], "py_mod_multiple_interpret": [33, 45, 483], "py_mod_multiple_interpreters_not_support": 45, "py_mod_multiple_interpreters_support": 45, "py_mod_per_interpreter_gil_support": [45, 483], "py_modul": 462, "py_n": [49, 63, 64, 75], "py_nb_add": 61, "py_newinterpret": [33, 57, 100, 483], "py_newinterpreterfromconfig": [33, 474, 483], "py_newref": [52, 57, 60, 76, 87, 472, 483], "py_no_inlin": [35, 483], "py_no_nan": [473, 483], "py_non": [3, 23, 27, 33, 46, 47, 56, 67, 73, 86, 431], "py_nositeflag": [33, 474], "py_notimpl": [49, 63, 64, 75, 463], "py_nousersitedirectori": [33, 474], "py_object": [176, 467, 483], "py_oldfunct": [35, 481], "py_opencodehookfunct": 24, "py_optimizeflag": [33, 474], "py_overflow": [473, 483], "py_preiniti": [34, 42, 59, 474, 481], "py_preinitializefromarg": [34, 481], "py_preinitializefrombytesarg": [34, 481], "py_print_raw": [24, 49], "py_py3kwarningflag": 468, "py_python": 461, "py_python3": 461, "py_quietflag": [33, 474], "py_readon": [58, 75, 474], "py_ref_debug": [34, 456], "py_refcnt": [52, 58, 76, 468, 472, 483], "py_relative_offset": [58, 474], "py_release_level": [4, 113], "py_release_seri": [4, 113], "py_reprent": [23, 57], "py_reprleav": [23, 57], "py_resourc": 474, "py_resum": 353, "py_return": 353, "py_return_fals": [6, 466], "py_return_non": [35, 46, 73, 466], "py_return_notimpl": 49, "py_return_richcompar": [63, 480, 483], "py_return_tru": [6, 466], "py_runmain": [32, 68, 481, 483], "py_safe_downcast": 456, "py_set_erange_if_overflow": [473, 483], "py_set_errno_on_math_error": [473, 483], "py_set_refcnt": [52, 472, 483], "py_set_s": [58, 473, 483], "py_set_typ": [58, 473, 483], "py_setpath": [33, 57, 354, 461, 473, 481, 483], "py_setprogramnam": [33, 34, 35, 57, 72, 73, 461, 473, 483], "py_setpythonhom": [33, 34, 57, 473, 483], "py_setrecursionlimit": 57, "py_setref": [52, 76, 474, 483], "py_setstandardstreamencod": [33, 34, 473, 477, 483], "py_single_input": [66, 431], "py_siz": [58, 468, 473, 483], "py_size_max": 483, "py_sourc": 474, "py_spammodule_h": 73, "py_sq_length": 61, "py_sqlite_enable_load_extens": 483, "py_ssize_t": [3, 5, 7, 8, 9, 10, 13, 18, 22, 23, 28, 34, 35, 38, 39, 40, 41, 43, 45, 47, 48, 49, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 73, 75, 100, 176, 352, 428, 467, 468, 473, 481, 483], "py_ssize_t_clean": [5, 35, 59, 72, 73, 76, 467, 472, 481, 483], "py_ssize_t_max": [35, 47, 56, 483], "py_ssize_t_min": [47, 56], "py_start": 353, "py_stat": 456, "py_stdlib_mod": 483, "py_stdmodule_cflag": [456, 483], "py_stringifi": 35, "py_symtablestr": [472, 483], "py_symtablestringobject": [472, 483], "py_t_bool": 58, "py_t_byt": 58, "py_t_char": 58, "py_t_doubl": [58, 75, 474], "py_t_float": 58, "py_t_int": [58, 75, 76, 474], "py_t_long": 58, "py_t_longlong": 58, "py_t_object_ex": [58, 76, 474], "py_t_pyssizet": 58, "py_t_short": 58, "py_t_str": 58, "py_t_string_inplac": 58, "py_t_ubyt": 58, "py_t_uint": 58, "py_t_ulong": 58, "py_t_ulonglong": 58, "py_t_ushort": 58, "py_throw": [353, 483], "py_todo": 475, "py_tolow": [266, 469], "py_toupp": 469, "py_tp_bas": [61, 63], "py_tp_dealloc": 61, "py_tp_doc": 61, "py_tp_fin": 483, "py_tp_getset": 483, "py_tp_memb": [58, 61, 483], "py_tp_travers": 100, "py_tpflags_base_exc_subclass": 63, "py_tpflags_basetyp": [63, 76], "py_tpflags_bytes_subclass": 63, "py_tpflags_checktyp": 463, "py_tpflags_default": [63, 76], "py_tpflags_dict_subclass": 63, "py_tpflags_disallow_instanti": [63, 100, 472, 474, 483], "py_tpflags_gc": 464, "py_tpflags_have_am_send": 483, "py_tpflags_have_fin": [63, 474, 481], "py_tpflags_have_gc": [28, 61, 63, 76, 100, 464, 473, 483], "py_tpflags_have_stackless_extens": 63, "py_tpflags_have_vectorcal": [10, 63, 474, 483], "py_tpflags_have_version_tag": [468, 483], "py_tpflags_heaptyp": [61, 63, 100, 472, 482], "py_tpflags_immutabletyp": [63, 100, 472, 473, 474, 483], "py_tpflags_items_at_end": [49, 61, 63, 474, 483], "py_tpflags_list_subclass": 63, "py_tpflags_long_subclass": 63, "py_tpflags_managed_dict": [58, 61, 63, 474, 483], "py_tpflags_managed_weakref": [58, 61, 63, 75, 474, 483], "py_tpflags_map": [63, 191, 427, 483], "py_tpflags_method_descriptor": [10, 63, 483], "py_tpflags_readi": 63, "py_tpflags_sequ": [63, 191, 427, 483], "py_tpflags_tuple_subclass": 63, "py_tpflags_type_subclass": 63, "py_tpflags_unicode_subclass": 63, "py_tpflags_valid_version_tag": [63, 483], "py_trace_ref": [34, 35, 63, 456, 472, 481, 482, 483], "py_tracefunc": 33, "py_trashcan_begin": [473, 482, 483], "py_trashcan_begin_condit": [482, 483], "py_trashcan_end": [473, 482, 483], "py_trashcan_safe_begin": [473, 482, 483], "py_trashcan_safe_end": [473, 482, 483], "py_tru": [6, 63, 64, 75, 431, 483], "py_tss_needs_init": 33, "py_tss_t": [33, 480], "py_typ": [49, 58, 61, 63, 75, 76, 100, 468, 473, 481, 482, 483], "py_ucs1": [64, 476], "py_ucs2": [64, 476], "py_ucs4": [57, 64, 476], "py_uhash_t": 30, "py_uintptr_t": 57, "py_unblock_thread": [33, 57], "py_unbufferedstdioflag": [33, 474], "py_unicod": [5, 64, 121, 472, 473, 474, 476, 482, 483], "py_unicode_copi": [473, 476, 482, 483], "py_unicode_fil": [473, 476, 482, 483], "py_unicode_is_high_surrog": 64, "py_unicode_is_low_surrog": 64, "py_unicode_is_surrog": 64, "py_unicode_isalnum": 64, "py_unicode_isalpha": 64, "py_unicode_isdecim": [64, 475], "py_unicode_isdigit": 64, "py_unicode_islinebreak": 64, "py_unicode_islow": 64, "py_unicode_isnumer": 64, "py_unicode_isprint": 64, "py_unicode_isspac": [64, 483], "py_unicode_istitl": 64, "py_unicode_isupp": 64, "py_unicode_join_surrog": 64, "py_unicode_match": [476, 482, 483], "py_unicode_str": [472, 483], "py_unicode_strcat": [472, 476], "py_unicode_strchr": [472, 476], "py_unicode_strcmp": [472, 476], "py_unicode_strcpi": [472, 476], "py_unicode_strlen": [472, 476], "py_unicode_strncmp": [472, 476], "py_unicode_strncpi": [472, 476], "py_unicode_strrchr": [472, 476], "py_unicode_todecim": 64, "py_unicode_todigit": 64, "py_unicode_tolow": [64, 475], "py_unicode_tonumer": 64, "py_unicode_totitl": 64, "py_unicode_toupp": 64, "py_unicode_wid": 474, "py_unind": 483, "py_unreach": [35, 480, 483], "py_unus": [35, 58, 76, 483], "py_unwind": [353, 483], "py_useclassexceptionsflag": 483, "py_utf8mod": [57, 474, 483], "py_va_copi": 475, "py_vabuildvalu": [5, 57], "py_vectorcall_arguments_offset": [10, 57, 474, 483], "py_verboseflag": [33, 474], "py_vers": [4, 33, 57, 100, 176, 473, 475, 483], "py_version_hex": [4, 57, 100, 472, 473, 481, 482, 483], "py_version_nodot": 475, "py_version_short": 475, "py_visit": [28, 63, 76, 100, 482], "py_warn": 362, "py_xdecref": [35, 45, 52, 63, 72, 73, 76, 473, 481, 483], "py_xincref": [52, 73, 473, 481, 483], "py_xnewref": [52, 57, 472, 483], "py_xsetref": [52, 76, 474, 483], "py_yield": 353, "pyaiter_check": [36, 57, 483], "pyanyset_check": 55, "pyanyset_checkexact": 55, "pyapi_data": [456, 465, 483], "pyapi_func": [35, 456, 465, 481, 483], "pyarena": [472, 483], "pyarena_addpyobject": [472, 483], "pyarena_fre": [472, 483], "pyarena_malloc": [472, 483], "pyarena_new": [472, 483], "pyarg_": 23, "pyarg_noarg": 465, "pyarg_pars": [5, 57, 469, 475, 483], "pyarg_parsetupl": [5, 7, 48, 57, 58, 72, 73, 75, 77, 100, 430, 462, 464, 465, 467, 468, 472, 474, 476, 481, 483], "pyarg_parsetupleandkeyword": [5, 57, 58, 73, 75, 76, 466, 479, 483], "pyarg_unpacktupl": [5, 57, 58, 464, 483], "pyarg_validatekeywordargu": [5, 57, 483], "pyarg_vapars": [5, 57, 483], "pyarg_vaparsetupleandkeyword": [5, 57, 466, 483], "pyasciiobject": [64, 476], "pyast_compil": [467, 472, 483], "pyast_compileex": [472, 483], "pyast_compileobject": [472, 483], "pyast_fromnodeobject": 483, "pyast_valid": [472, 483], "pyasyncgen_clearfreelist": [482, 483], "pyasyncgenobject": 483, "pyasyncmethod": [61, 63, 75, 483], "pyatom": 483, "pybabel": [89, 230], "pybaseobject_typ": [57, 63], "pybench": [467, 483], "pyblake2": 235, "pybool_check": 6, "pybool_fromlong": [6, 57], "pybool_typ": [6, 57, 483], "pybsddb": [330, 465, 468, 469, 470], "pybuf_": 483, "pybuf_any_contigu": 7, "pybuf_c_contigu": [7, 468], "pybuf_contig": 7, "pybuf_contig_ro": 7, "pybuf_f_contigu": [7, 468], "pybuf_format": 7, "pybuf_ful": 7, "pybuf_full_ro": 7, "pybuf_indirect": 7, "pybuf_lock": 468, "pybuf_max_ndim": 7, "pybuf_nd": 7, "pybuf_read": 43, "pybuf_record": 7, "pybuf_records_ro": 7, "pybuf_simpl": 7, "pybuf_strid": 7, "pybuf_strided_ro": 7, "pybuf_writ": [7, 43, 468], "pybuff": 483, "pybuffer_fillcontiguousstrid": [7, 57, 473], "pybuffer_fillinfo": [7, 57, 63, 473, 483], "pybuffer_fromcontigu": [7, 57, 473, 483], "pybuffer_getpoint": [7, 57, 473, 483], "pybuffer_iscontigu": [7, 57, 473, 483], "pybuffer_releas": [5, 7, 48, 57, 63, 468, 473, 483], "pybuffer_sizefromformat": [7, 57, 473, 483], "pybuffer_tocontigu": [7, 57, 473, 483], "pybufferproc": [5, 61, 63, 75], "pybuilddir": [34, 483], "pybytearray_as_str": 8, "pybytearray_asstr": [8, 57], "pybytearray_check": 8, "pybytearray_checkexact": 8, "pybytearray_concat": [8, 57], "pybytearray_fini": [481, 483], "pybytearray_fromobject": [8, 57, 468], "pybytearray_fromstringands": [8, 57, 468], "pybytearray_get_s": 8, "pybytearray_init": [481, 483], "pybytearray_res": [8, 57], "pybytearray_s": [8, 57], "pybytearray_typ": [8, 57], "pybytearrayiter_typ": 57, "pybytearrayobject": [5, 8], "pybytes_as_str": [9, 431], "pybytes_asstr": [9, 57, 472], "pybytes_asstringands": [9, 57, 79], "pybytes_check": [9, 79, 468], "pybytes_checkexact": 9, "pybytes_concat": [9, 57, 483], "pybytes_concatanddel": [9, 57], "pybytes_decodeescap": [57, 483], "pybytes_fromformat": [9, 57, 483], "pybytes_fromformatv": [9, 57], "pybytes_fromobject": [9, 57], "pybytes_fromstr": [9, 42, 57], "pybytes_fromstringands": [9, 57, 468], "pybytes_get_s": 9, "pybytes_repr": [57, 483], "pybytes_s": [9, 57, 79], "pybytes_typ": [9, 57, 483], "pybytesiter_typ": 57, "pybytesobject": [5, 9, 13, 64, 468, 473, 474, 483], "pyc": [31, 33, 34, 68, 86, 87, 163, 250, 274, 281, 299, 311, 332, 344, 352, 362, 382, 422, 423, 428, 432, 450, 455, 456, 461, 463, 465, 466, 468, 469, 473, 474, 477, 478, 482, 483, 484], "pyc_compil": 483, "pycach": [252, 352], "pycache_prefix": [34, 163, 352, 450, 455, 481, 483], "pycallable_check": [10, 57, 72, 73], "pycalliter_check": 37, "pycalliter_new": [37, 57], "pycalliter_typ": [37, 57], "pycapsul": [11, 73, 469, 471, 472, 475, 483], "pycapsule_checkexact": 11, "pycapsule_destructor": [11, 57], "pycapsule_get": 11, "pycapsule_getcontext": [11, 57], "pycapsule_getdestructor": [11, 57], "pycapsule_getnam": [11, 57], "pycapsule_getpoint": [11, 57, 469], "pycapsule_import": [11, 57, 73, 483], "pycapsule_isvalid": [11, 57, 469], "pycapsule_new": [11, 57, 73], "pycapsule_setcontext": [11, 57], "pycapsule_setdestructor": [11, 57], "pycapsule_setnam": [11, 57], "pycapsule_setpoint": [11, 57], "pycapsule_typ": 57, "pycarraytype_new": 483, "pycell_check": 12, "pycell_get": 12, "pycell_new": 12, "pycell_set": [12, 472, 483], "pycell_typ": 12, "pycellobject": 12, "pycf_": 225, "pycf_allow_top_level_await": [122, 225, 481, 482, 483], "pycf_only_ast": [66, 122, 467, 481, 483], "pycf_type_com": 122, "pycfunct": [35, 44, 57, 58, 73, 75, 76, 100, 466, 483], "pycfunction_cal": [57, 483], "pycfunction_checkexact": 483, "pycfunction_clearfreelist": [482, 483], "pycfunction_getflag": 57, "pycfunction_getfunct": 57, "pycfunction_getself": 57, "pycfunction_new": [57, 58, 483], "pycfunction_newex": [57, 58, 483], "pycfunction_typ": 57, "pycfunctionwithkeyword": [57, 58], "pycharm": [85, 479], "pycheck": 467, "pycinvalidationmod": [163, 311], "pyclassmethod_typ": 93, "pyclassmethoddescr_typ": 57, "pyclbr": [68, 156, 254, 264, 483], "pycmethod": [58, 61, 100, 473, 482, 483], "pycmethod_check": 483, "pycmethod_checkexact": 483, "pycmethod_new": [57, 58, 483], "pycmpwrapper_typ": [482, 483], "pycobject": [469, 471, 475], "pycobject_asvoidptr": 469, "pycode_addr2lin": [13, 465, 472, 473, 479], "pycode_addr2loc": [13, 473, 483], "pycode_addwatch": [13, 474, 483], "pycode_check": 13, "pycode_clearwatch": [13, 474, 483], "pycode_getcellvar": [13, 473, 483], "pycode_getcod": [13, 473, 483], "pycode_getextra": 13, "pycode_getfirstfre": 13, "pycode_getfreevar": [13, 473, 483], "pycode_getnumfre": 13, "pycode_getvarnam": [13, 473, 483], "pycode_new": [13, 469, 473, 474, 481, 483], "pycode_newempti": [13, 469], "pycode_newwithposonlyarg": [13, 473, 474, 481, 483], "pycode_setextra": 13, "pycode_typ": 13, "pycode_watchcallback": 13, "pycodec_backslashreplaceerror": [14, 57], "pycodec_decod": [14, 57, 474], "pycodec_encod": [14, 57, 474], "pycodec_ignoreerror": [14, 57], "pycodec_incrementaldecod": [14, 57], "pycodec_incrementalencod": [14, 57], "pycodec_knownencod": [14, 57], "pycodec_lookuperror": [14, 57], "pycodec_namereplaceerror": [14, 57, 478], "pycodec_regist": [14, 57], "pycodec_registererror": [14, 57], "pycodec_replaceerror": [14, 57], "pycodec_streamread": [14, 57], "pycodec_streamwrit": [14, 57], "pycodec_stricterror": [14, 57], "pycodec_unregist": [14, 57, 472, 483], "pycodec_xmlcharrefreplaceerror": [14, 57], "pycodeev": 13, "pycodeobject": [13, 26, 473, 483], "pycompactunicodeobject": [64, 476], "pycompile_opcodestackeffectwithjump": 483, "pycompileerror": [311, 483], "pycompilerflag": [66, 481], "pycomplex_asccomplex": [15, 468], "pycomplex_check": 15, "pycomplex_checkexact": 15, "pycomplex_fromccomplex": 15, "pycomplex_fromdoubl": [15, 57], "pycomplex_imagasdoubl": [15, 57], "pycomplex_realasdoubl": [15, 57], "pycomplex_typ": [15, 57], "pycomplexobject": 15, "pycon": [92, 105, 109, 341, 467], "pyconfig": [32, 33, 35, 59, 66, 68, 87, 293, 352, 354, 355, 456, 469, 472, 473, 474, 481, 482, 483], "pyconfig_clear": [34, 481, 483], "pyconfig_initisolatedconfig": [34, 481], "pyconfig_initpythonconfig": [34, 481], "pyconfig_read": [34, 59, 87, 293, 352, 473, 481, 483], "pyconfig_setargv": [34, 481], "pyconfig_setbytesargv": [34, 481], "pyconfig_setbytesstr": [34, 59, 481], "pyconfig_setstr": [34, 481], "pyconfig_setwidestringlist": [34, 483], "pycontext": 17, "pycontext_checkexact": 17, "pycontext_clearfreelist": [482, 483], "pycontext_copi": 17, "pycontext_copycurr": 17, "pycontext_ent": 17, "pycontext_exit": 17, "pycontext_new": 17, "pycontext_typ": 17, "pycontexttoken": 17, "pycontexttoken_checkexact": 17, "pycontexttoken_typ": 17, "pycontextvar": [17, 483], "pycontextvar_checkexact": 17, "pycontextvar_get": 17, "pycontextvar_new": 17, "pycontextvar_reset": 17, "pycontextvar_set": 17, "pycontextvar_typ": 17, "pycore_": 483, "pycore_bitutil": 483, "pycore_bytes_method": 483, "pycore_coreconfig": 483, "pycore_dtoa": 483, "pycore_fram": 483, "pycore_gc": 482, "pycore_pyst": [481, 483], "pycoro_checkexact": 19, "pycoro_new": 19, "pycoro_typ": 19, "pycoroobject": 19, "pyctyp": [266, 472, 483], "pyd": [68, 71, 84, 269, 354, 423, 467, 475, 478, 481, 483], "pydate_check": 20, "pydate_checkexact": 20, "pydate_fromd": 20, "pydate_fromtimestamp": [20, 483], "pydatetime_": 483, "pydatetime_check": 20, "pydatetime_checkexact": 20, "pydatetime_d": 20, "pydatetime_date_get_fold": 20, "pydatetime_date_get_hour": 20, "pydatetime_date_get_microsecond": 20, "pydatetime_date_get_minut": 20, "pydatetime_date_get_second": 20, "pydatetime_date_get_tzinfo": [20, 472, 483], "pydatetime_datetim": 20, "pydatetime_datetimetyp": 20, "pydatetime_datetyp": 20, "pydatetime_delta": 20, "pydatetime_delta_get_day": 20, "pydatetime_delta_get_microsecond": 20, "pydatetime_delta_get_second": 20, "pydatetime_deltatyp": 20, "pydatetime_fromdateandtim": 20, "pydatetime_fromdateandtimeandfold": [20, 483], "pydatetime_fromtimestamp": 20, "pydatetime_get_day": 20, "pydatetime_get_month": 20, "pydatetime_get_year": 20, "pydatetime_import": 20, "pydatetime_isocalendardatetyp": 483, "pydatetime_tim": 20, "pydatetime_time_get_fold": 20, "pydatetime_time_get_hour": 20, "pydatetime_time_get_microsecond": 20, "pydatetime_time_get_minut": 20, "pydatetime_time_get_second": 20, "pydatetime_time_get_tzinfo": [20, 472, 483], "pydatetime_timetyp": 20, "pydatetime_timezone_utc": [20, 480], "pydatetime_tzinfotyp": 20, "pydatetimeapi": 20, "pydebug": [35, 96, 352, 456, 465, 472, 477, 483], "pydelta_check": 20, "pydelta_checkexact": 20, "pydelta_fromdsu": 20, "pydescr_isdata": [21, 483], "pydescr_newclassmethod": [21, 57], "pydescr_newgetset": [21, 57], "pydescr_newmemb": [21, 57], "pydescr_newmethod": [21, 57, 483], "pydescr_newwrapp": 21, "pydict_addwatch": [22, 474], "pydict_check": [16, 22], "pydict_checkexact": 22, "pydict_clear": [22, 57], "pydict_clearfreelist": [482, 483], "pydict_clearwatch": 22, "pydict_contain": [22, 57, 466], "pydict_copi": [22, 57], "pydict_delitem": [22, 57], "pydict_delitemstr": [22, 57], "pydict_event_ad": 22, "pydict_event_clear": 22, "pydict_event_clon": 22, "pydict_event_dealloc": 22, "pydict_event_delet": 22, "pydict_event_modifi": 22, "pydict_getitem": [22, 57, 73, 472, 483], "pydict_getitemstr": [22, 57, 73, 96], "pydict_getitemwitherror": [22, 57, 483], "pydict_item": [22, 57], "pydict_key": [22, 57], "pydict_merg": [22, 57], "pydict_mergefromseq2": [22, 57], "pydict_new": [22, 57], "pydict_next": [22, 57], "pydict_s": [22, 57], "pydict_setdefault": [22, 483], "pydict_setitem": [22, 57, 63, 73, 483], "pydict_setitemstr": [22, 57, 483], "pydict_typ": [22, 57], "pydict_unwatch": 22, "pydict_upd": [22, 57], "pydict_valu": [22, 57], "pydict_watch": [22, 474], "pydict_watchcallback": 22, "pydict_watchev": 22, "pydictitems_typ": 57, "pydictiteritem_typ": 57, "pydictiterkey_typ": 57, "pydictitervalue_typ": 57, "pydictkeys_typ": 57, "pydictobject": [22, 55, 96, 474, 483], "pydictproxy_new": [22, 57], "pydictproxy_typ": 57, "pydictreviteritem_typ": 57, "pydictreviterkey_typ": 57, "pydictrevitervalue_typ": 57, "pydictvalues_typ": 57, "pydll": [176, 483], "pydoc": [63, 68, 76, 84, 156, 187, 225, 254, 420, 463, 464, 465, 466, 469, 471, 478, 483], "pydoc3": 475, "pydoc_str": [35, 58, 63, 76, 483], "pydoc_strvar": [35, 45, 100, 456, 483], "pydoc_strvar_shar": 483, "pydoc_var": 483, "pyellipsis_typ": 57, "pyenum_typ": 57, "pyenv": 483, "pyerr_": 73, "pyerr_badargu": [23, 57], "pyerr_badinternalcal": [23, 57], "pyerr_checksign": [23, 57, 474, 483], "pyerr_clear": [23, 35, 57, 73, 477], "pyerr_display": [57, 472, 474, 483], "pyerr_displayexcept": [23, 57, 474, 483], "pyerr_exceptionmatch": [23, 35, 57], "pyerr_fetch": [23, 57, 63, 75, 474, 477, 483], "pyerr_format": [23, 57, 75, 469, 478, 483], "pyerr_formatv": [23, 57, 478, 483], "pyerr_getexcinfo": [23, 57, 473, 483], "pyerr_gethandledexcept": [23, 57, 473, 483], "pyerr_getraisedexcept": [23, 57, 474, 483], "pyerr_givenexceptionmatch": [23, 57], "pyerr_newexcept": [23, 57, 73, 467, 469, 475], "pyerr_newexceptionwithdoc": [23, 57, 469, 475], "pyerr_nomemori": [23, 42, 57, 73], "pyerr_normalizeexcept": [23, 57, 474, 483], "pyerr_occur": [11, 22, 23, 25, 35, 36, 39, 41, 49, 57, 64, 72, 73, 431, 483], "pyerr_print": [23, 57, 68, 72, 73, 483], "pyerr_printex": [23, 57, 483], "pyerr_programtext": 57, "pyerr_resourcewarn": [23, 57, 479, 483], "pyerr_restor": [23, 57, 63, 75, 474, 483], "pyerr_set": 23, "pyerr_setexcfromwindowserr": [23, 57], "pyerr_setexcfromwindowserrwithfilenam": [23, 57, 483], "pyerr_setexcfromwindowserrwithfilenameobject": [23, 57], "pyerr_setexcfromwindowserrwithunicodefilenam": 483, "pyerr_setexcinfo": [23, 57, 473, 483], "pyerr_setfromerrno": [23, 57, 73], "pyerr_setfromerrnowithfilenam": [23, 57, 483], "pyerr_setfromerrnowithfilenameobject": [23, 57], "pyerr_setfromerrnowithunicodefilenam": 483, "pyerr_setfromwindowserr": [23, 57], "pyerr_setfromwindowserrwithfilenam": [23, 57, 483], "pyerr_setfromwindowserrwithunicodefilenam": 483, "pyerr_sethandledexcept": [23, 57, 473, 483], "pyerr_setimporterror": [23, 57, 477, 479], "pyerr_setimporterrorsubclass": [23, 57, 479], "pyerr_setinterrupt": [23, 57], "pyerr_setinterruptex": [23, 57, 472], "pyerr_setnon": [23, 57], "pyerr_setobject": [23, 57, 73, 474, 483], "pyerr_setraisedexcept": [23, 57, 474, 483], "pyerr_setstr": [23, 35, 57, 73, 75, 76, 100, 469, 474, 483], "pyerr_syntaxloc": [23, 57], "pyerr_syntaxlocationex": [23, 57, 483], "pyerr_syntaxlocationobject": [23, 483], "pyerr_warn": 467, "pyerr_warnex": [23, 57, 400, 467], "pyerr_warnexplicit": [23, 57, 483], "pyerr_warnexplicitobject": 23, "pyerr_warnformat": [23, 57], "pyerr_writeunrais": [13, 22, 23, 27, 57, 75, 483], "pyerror": 483, "pyeval_": 483, "pyeval_acquirelock": [33, 57, 475, 481, 483], "pyeval_acquirethread": [33, 57, 481, 483], "pyeval_callfunct": [57, 482, 483], "pyeval_callmethod": [57, 482, 483], "pyeval_callobject": [469, 475, 482, 483], "pyeval_callobjectwithkeyword": [57, 482, 483], "pyeval_evalcod": [57, 66, 104, 472, 483], "pyeval_evalcodeex": [57, 66, 483], "pyeval_evalfram": [57, 66], "pyeval_evalframeex": [57, 66, 96, 477, 483], "pyeval_getbuiltin": [53, 57], "pyeval_getcallstat": 483, "pyeval_getfram": [26, 33, 53, 57, 483], "pyeval_getfuncdesc": [53, 57], "pyeval_getfuncnam": [53, 57], "pyeval_getglob": [53, 57], "pyeval_getloc": [53, 57], "pyeval_initthread": [33, 57, 475, 482, 483], "pyeval_mergecompilerflag": 66, "pyeval_reinitthread": [481, 483], "pyeval_releaselock": [33, 57, 475], "pyeval_releasethread": [33, 57], "pyeval_restorethread": [33, 57, 475, 481, 483], "pyeval_savethread": [33, 57, 475], "pyeval_setprofil": [33, 464, 483], "pyeval_setprofileallthread": [33, 474, 483], "pyeval_settrac": [33, 464, 483], "pyeval_settraceallthread": [33, 474, 483], "pyeval_threadsiniti": [33, 57, 466, 482, 483], "pyexc_": 23, "pyexc_arithmeticerror": [23, 57], "pyexc_assertionerror": [23, 57], "pyexc_attributeerror": [23, 57, 75, 76], "pyexc_baseexcept": [23, 57], "pyexc_baseexceptiongroup": 57, "pyexc_blockingioerror": [23, 57], "pyexc_brokenpipeerror": [23, 57], "pyexc_buffererror": [23, 57], "pyexc_byteswarn": [23, 57], "pyexc_childprocesserror": [23, 57], "pyexc_connectionabortederror": [23, 57], "pyexc_connectionerror": [23, 57], "pyexc_connectionrefusederror": [23, 57], "pyexc_connectionreseterror": [23, 57], "pyexc_deprecationwarn": [23, 57], "pyexc_encodingwarn": 57, "pyexc_environmenterror": [23, 57], "pyexc_eoferror": [23, 57], "pyexc_except": [23, 57], "pyexc_fileexistserror": [23, 57], "pyexc_filenotfounderror": [23, 57], "pyexc_floatingpointerror": [23, 57], "pyexc_futurewarn": [23, 57], "pyexc_generatorexit": [23, 57], "pyexc_importerror": [23, 57, 100], "pyexc_importwarn": [23, 57], "pyexc_indentationerror": [23, 57], "pyexc_indexerror": [23, 57], "pyexc_interruptederror": [23, 57], "pyexc_ioerror": [23, 57], "pyexc_isadirectoryerror": [23, 57], "pyexc_keyboardinterrupt": [23, 57], "pyexc_keyerror": [23, 35, 57], "pyexc_lookuperror": [23, 57], "pyexc_memoryerror": [23, 57], "pyexc_modulenotfounderror": [23, 57], "pyexc_nameerror": [23, 57], "pyexc_notadirectoryerror": [23, 57], "pyexc_notimplementederror": [23, 57], "pyexc_oserror": [23, 57, 73], "pyexc_overflowerror": [23, 57], "pyexc_pendingdeprecationwarn": [23, 57], "pyexc_permissionerror": [23, 57], "pyexc_processlookuperror": [23, 57], "pyexc_recursionerror": [23, 57, 478], "pyexc_recursionerrorinst": [479, 480, 483], "pyexc_referenceerror": [23, 57], "pyexc_resourcewarn": [23, 57], "pyexc_runtimeerror": [23, 57, 75], "pyexc_runtimewarn": [23, 57], "pyexc_stopasynciter": [23, 57], "pyexc_stopiter": [23, 57], "pyexc_syntaxerror": [23, 57, 431], "pyexc_syntaxwarn": [23, 57], "pyexc_systemerror": [23, 57], "pyexc_systemexit": [23, 57], "pyexc_taberror": [23, 57], "pyexc_timeouterror": [23, 57], "pyexc_typeerror": [23, 57, 73, 75, 76], "pyexc_unboundlocalerror": [23, 57], "pyexc_unicodedecodeerror": [23, 57], "pyexc_unicodeencodeerror": [23, 57], "pyexc_unicodeerror": [23, 57], "pyexc_unicodetranslateerror": [23, 57], "pyexc_unicodewarn": [23, 57], "pyexc_userwarn": [23, 57], "pyexc_valueerror": [23, 57, 73, 469], "pyexc_warn": [23, 57], "pyexc_windowserror": [23, 57], "pyexc_zerodivisionerror": [23, 57, 73], "pyexception_getarg": [23, 57, 474, 483], "pyexception_getcaus": [23, 57], "pyexception_getcontext": [23, 57], "pyexception_gettraceback": [23, 57], "pyexception_setarg": [23, 57, 474, 483], "pyexception_setcaus": [23, 57], "pyexception_setcontext": [23, 57], "pyexception_settraceback": [23, 57, 483], "pyexceptionclass_nam": [57, 481, 483], "pyexpat": [314, 409, 426, 456, 462, 465, 467, 468, 469, 483], "pyexpat_capi": 483, "pyexpatn": 483, "pyfailmalloc": 477, "pyfile_decusecount": 468, "pyfile_fromfd": [24, 57], "pyfile_getlin": [24, 57], "pyfile_incusecount": 468, "pyfile_setopencodehook": [24, 258, 483], "pyfile_writeobject": [24, 49, 57], "pyfile_writestr": [24, 57], "pyfilter_typ": 57, "pyflak": [85, 483], "pyfloat": 25, "pyfloat_as_doubl": 25, "pyfloat_asdoubl": [25, 57, 481], "pyfloat_check": 25, "pyfloat_checkexact": 25, "pyfloat_clearfreelist": [482, 483], "pyfloat_fromdoubl": [25, 57], "pyfloat_fromstr": [25, 57], "pyfloat_getinfo": [25, 57, 468], "pyfloat_getmax": [25, 57, 468], "pyfloat_getmin": [25, 57, 468], "pyfloat_pack2": [25, 473, 483], "pyfloat_pack4": [25, 473, 483], "pyfloat_pack8": [25, 473, 483], "pyfloat_typ": [25, 57], "pyfloat_unpack2": [25, 473, 483], "pyfloat_unpack4": [25, 473, 483], "pyfloat_unpack8": [25, 473, 483], "pyfloatobject": [25, 76], "pyfp": [472, 482, 483], "pyfpe_end_protect": [482, 483], "pyfpe_start_protect": [482, 483], "pyframe_blockpop": 473, "pyframe_blocksetup": 473, "pyframe_check": [26, 473, 483], "pyframe_clearfreelist": [482, 483], "pyframe_extendstack": [482, 483], "pyframe_fasttolocalswitherror": [473, 483], "pyframe_getback": [26, 473, 482, 483], "pyframe_getbuiltin": [26, 473, 483], "pyframe_getcod": [26, 57, 473, 482, 483], "pyframe_getgener": [26, 473, 483], "pyframe_getglob": [26, 473, 483], "pyframe_getlasti": [26, 473, 483], "pyframe_getlinenumb": [13, 26, 57, 469, 472, 473, 479, 482], "pyframe_getloc": [26, 473, 483], "pyframe_getvar": [26, 474, 483], "pyframe_getvarstr": [26, 474, 483], "pyframe_localstofast": [473, 483], "pyframe_new": 483, "pyframe_typ": [26, 473, 483], "pyframeobject": [19, 26, 29, 33, 53, 57, 66, 96, 473, 477, 483], "pyfrozenset_check": 55, "pyfrozenset_checkexact": 55, "pyfrozenset_new": [55, 57, 467], "pyfrozenset_typ": [55, 57], "pyfunction_addwatch": 27, "pyfunction_check": 27, "pyfunction_clearwatch": 27, "pyfunction_event_cr": 27, "pyfunction_event_destroy": 27, "pyfunction_event_modify_cod": 27, "pyfunction_event_modify_default": 27, "pyfunction_event_modify_kwdefault": 27, "pyfunction_getannot": [27, 483], "pyfunction_getclosur": 27, "pyfunction_getcod": 27, "pyfunction_getdefault": 27, "pyfunction_getglob": 27, "pyfunction_getmodul": 27, "pyfunction_new": 27, "pyfunction_newwithqualnam": 27, "pyfunction_setannot": 27, "pyfunction_setclosur": 27, "pyfunction_setdefault": 27, "pyfunction_setvectorcal": [27, 474, 483], "pyfunction_typ": [27, 483], "pyfunction_watchcallback": 27, "pyfunction_watchev": 27, "pyfunctionobject": [27, 474, 483], "pyfunctyp": 176, "pyfuture_fromast": [472, 483], "pyfuture_fromastobject": [472, 483], "pygam": 80, "pygc_collect": [28, 57, 482, 483], "pygc_dis": [28, 57, 472, 483], "pygc_en": [28, 57, 472, 483], "pygc_head": [481, 482, 483], "pygc_head_s": 464, "pygc_isen": [28, 57, 472, 483], "pygen": 483, "pygen_check": 29, "pygen_checkexact": 29, "pygen_error": 36, "pygen_needsfin": [482, 483], "pygen_new": 29, "pygen_newwithqualnam": 29, "pygen_next": 36, "pygen_return": 36, "pygen_typ": 29, "pygenobject": 29, "pygetopt": 483, "pygetsetdef": [21, 57, 58, 63, 75, 76, 100, 255, 385, 480, 483], "pygetsetdescr_typ": 57, "pygettext": [230, 478, 483], "pygilst": 33, "pygilstate_": 33, "pygilstate_check": 33, "pygilstate_ensur": [33, 57, 481, 483], "pygilstate_getthisthreadst": [33, 57, 483], "pygilstate_releas": [33, 57, 483], "pygilstate_st": [33, 57], "pygram": 483, "pygtk": 467, "pyhamcrest": 390, "pyhash": [32, 65, 68, 426, 456, 483], "pyhash_funcdef": 30, "pyhash_getfuncdef": 30, "pyheaptype_get_memb": [473, 483], "pyhkey": [142, 405], "pyhon": [440, 450], "pyi": [472, 473, 482, 483], "pyimport_addmodul": [31, 57, 73], "pyimport_addmoduleobject": [31, 57], "pyimport_appendinittab": [31, 33, 34, 45, 57, 72, 73, 483], "pyimport_cleanup": 482, "pyimport_execcodemodul": [31, 57], "pyimport_execcodemoduleex": [31, 57], "pyimport_execcodemoduleobject": [31, 57, 483], "pyimport_execcodemodulewithpathnam": [31, 57], "pyimport_extendinittab": [31, 33, 34, 483], "pyimport_frozenmodul": [31, 34, 176, 483], "pyimport_getimport": [31, 57, 483], "pyimport_getmagicnumb": [31, 57, 476], "pyimport_getmagictag": [31, 57], "pyimport_getmodul": [31, 57, 480, 483], "pyimport_getmoduledict": [31, 57, 483], "pyimport_import": [31, 57, 72, 468], "pyimport_importfrozenmodul": [31, 57, 483], "pyimport_importfrozenmoduleobject": [31, 57, 483], "pyimport_importmodul": [31, 57, 73, 79, 463, 468, 470, 472, 474, 483], "pyimport_importmoduleex": [31, 476], "pyimport_importmodulelevel": [31, 57, 476], "pyimport_importmodulelevelobject": [31, 57], "pyimport_importmodulenoblock": [31, 57, 468, 470, 474, 476, 483], "pyimport_inittab": [73, 483], "pyimport_reinitlock": 483, "pyimport_reloadmodul": [31, 57, 483], "pyindex_check": [47, 57, 482, 483], "pyinit": [35, 71], "pyinit_": [35, 71, 456, 483], "pyinit_cli": 73, "pyinit_custom": 76, "pyinit_custom2": 76, "pyinit_custom3": 76, "pyinit_custom4": 76, "pyinit_emb": 72, "pyinit_foo": 86, "pyinit_keywdarg": 73, "pyinit_modulenam": [45, 71], "pyinit_nam": 73, "pyinit_spam": [35, 73], "pyinit_sublist": 76, "pyinitfrozenextens": 33, "pyinitu_": 71, "pyinstal": [85, 283, 459], "pyinstancemethod_check": 44, "pyinstancemethod_funct": 44, "pyinstancemethod_get_funct": 44, "pyinstancemethod_new": 44, "pyinstancemethod_typ": 44, "pyinterpreterconfig": [33, 474, 483], "pyinterpreterconfig_default_gil": [33, 483], "pyinterpreterconfig_own_gil": [33, 474, 483], "pyinterpreterconfig_shared_gil": [33, 483], "pyinterpreterst": [33, 34, 57, 63, 472, 481, 482, 483], "pyinterpreterstate_clear": [33, 57, 142], "pyinterpreterstate_delet": [33, 57], "pyinterpreterstate_get": [33, 57, 482, 483], "pyinterpreterstate_getdict": [33, 57, 483], "pyinterpreterstate_getid": [33, 57, 480], "pyinterpreterstate_head": [33, 464], "pyinterpreterstate_main": [33, 483], "pyinterpreterstate_new": [33, 57, 142, 483], "pyinterpreterstate_next": [33, 464], "pyinterpreterstate_threadhead": [33, 464], "pyiter_check": [36, 57, 63, 483], "pyiter_next": [36, 57, 63], "pyiter_send": [36, 57, 63, 472, 483], "pylauncher_allow_instal": [461, 483], "pylauncher_always_instal": 461, "pylauncher_debug": 461, "pylauncher_dryrun": 461, "pylauncher_no_search_path": 461, "pylib": 467, "pylifecycl": 483, "pylinetable_initaddressrang": 483, "pylint": 85, "pylist_append": [38, 57, 483], "pylist_astupl": [38, 57], "pylist_check": [35, 38, 79], "pylist_checkexact": 38, "pylist_clearfreelist": [482, 483], "pylist_get_item": [38, 57], "pylist_get_s": 38, "pylist_getitem": [35, 38, 57, 73, 79, 483], "pylist_getslic": [38, 57], "pylist_insert": [38, 57], "pylist_new": [2, 35, 38, 57], "pylist_revers": [38, 57], "pylist_s": [35, 38, 57, 79, 467], "pylist_set_item": [38, 472, 483], "pylist_setitem": [35, 38, 57, 73], "pylist_setslic": [38, 57], "pylist_sort": [38, 57], "pylist_typ": [38, 57, 76], "pylistiter_typ": 57, "pylistobject": [22, 38, 54, 76], "pylistreviter_typ": 57, "pyload": [475, 477], "pylong": [39, 471, 483], "pylong_": 474, "pylong_a": 39, "pylong_asdoubl": [39, 57, 483], "pylong_aslong": [22, 35, 39, 57, 72, 481], "pylong_aslongandoverflow": [39, 57, 469, 475], "pylong_aslonglong": [39, 57], "pylong_aslonglongandoverflow": [39, 57, 469, 475], "pylong_aspid": 483, "pylong_assize_t": [39, 57], "pylong_asssize_t": [39, 57], "pylong_asunsignedlong": [39, 57], "pylong_asunsignedlonglong": [39, 57, 471], "pylong_asunsignedlonglongmask": [39, 57, 483], "pylong_asunsignedlongmask": [39, 57], "pylong_asvoidptr": [39, 57], "pylong_bas": 483, "pylong_bits_in_digit": [456, 473, 483], "pylong_check": [35, 39, 63], "pylong_checkexact": 39, "pylong_fromdoubl": [39, 57, 482, 483], "pylong_fromlong": [22, 35, 39, 45, 57, 72, 73, 75, 76, 483], "pylong_fromlonglong": [39, 57, 483], "pylong_fromsize_t": [39, 57, 483], "pylong_fromssize_t": [35, 39, 57], "pylong_fromstr": [39, 57, 483], "pylong_fromunicod": [472, 483], "pylong_fromunicodeobject": [39, 472], "pylong_fromunsignedlong": [39, 57, 483], "pylong_fromunsignedlonglong": [39, 57, 483], "pylong_fromvoidptr": [39, 57], "pylong_getinfo": 57, "pylong_typ": [39, 57, 483], "pylongobject": [39, 57, 96, 474, 483], "pylongrangeiter_typ": 57, "pylongvalu": 483, "pylookup": 160, "pymain_parse_cmdline_impl": 483, "pymain_run_python": [104, 483], "pymalloc": [32, 34, 68, 352, 455, 456, 463, 468, 469, 475, 477, 479, 481, 483, 484], "pymalloc_debug": [42, 455, 483], "pymap": 79, "pymap_typ": 57, "pymapping_": 35, "pymapping_check": [40, 57, 63], "pymapping_delitem": 40, "pymapping_delitemstr": 40, "pymapping_getitemstr": [40, 57], "pymapping_haskey": [40, 57], "pymapping_haskeystr": [40, 57], "pymapping_item": [40, 57, 480, 483], "pymapping_key": [22, 40, 57, 480, 483], "pymapping_length": [40, 57], "pymapping_s": [40, 57, 63, 483], "pymapping_setitemstr": [40, 57, 483], "pymapping_valu": [40, 57, 480, 483], "pymappingmethod": [61, 63, 75], "pymarshal_readlastobjectfromfil": 41, "pymarshal_readlongfromfil": 41, "pymarshal_readobjectfromfil": 41, "pymarshal_readobjectfromstr": [41, 473, 483], "pymarshal_readshortfromfil": 41, "pymarshal_writelongtofil": [41, 473, 483], "pymarshal_writeobjecttofil": [41, 473, 483], "pymarshal_writeobjecttostr": [41, 473, 483], "pymem": [462, 467], "pymem_": 467, "pymem_allocator_debug": 34, "pymem_allocator_default": 34, "pymem_allocator_malloc": 34, "pymem_allocator_malloc_debug": 34, "pymem_allocator_not_set": 34, "pymem_allocator_pymalloc": 34, "pymem_allocator_pymalloc_debug": 34, "pymem_buffer_overflow": 483, "pymem_calloc": [42, 57, 478, 483], "pymem_cleanbyt": 42, "pymem_deadbyt": 42, "pymem_debug_serialno": [42, 483], "pymem_del": [42, 463], "pymem_domain_mem": [42, 455, 479, 483], "pymem_domain_obj": [42, 455, 479], "pymem_domain_raw": [42, 455], "pymem_forbiddenbyt": 42, "pymem_fre": [5, 18, 34, 42, 57, 59, 64, 465, 467, 483], "pymem_getalloc": [33, 42], "pymem_malloc": [42, 57, 64, 66, 465, 467, 477, 479, 483], "pymem_new": [42, 64, 463], "pymem_rawcalloc": [33, 42, 478, 483], "pymem_rawfre": [33, 42, 59, 72, 73], "pymem_rawmalloc": [33, 34, 42, 66, 477, 483], "pymem_rawrealloc": [33, 42, 66, 477], "pymem_realloc": [42, 57, 66, 465, 467, 477], "pymem_res": 42, "pymem_setalloc": [33, 34, 42, 474], "pymem_setupdebughook": [33, 42, 188, 479, 483], "pymemalloc": [42, 478], "pymemallocatordomain": 42, "pymemallocatorex": [42, 478], "pymember_get": 470, "pymember_geton": [57, 58, 93, 474], "pymember_set": 470, "pymember_seton": [57, 58, 474], "pymemberdef": [21, 57, 58, 61, 63, 75, 76, 93, 255, 385, 469, 474, 480, 483], "pymemberdescr_typ": 57, "pymemcompat": 465, "pymemoryview_check": 43, "pymemoryview_frombuff": [7, 43, 57, 473, 483], "pymemoryview_frommemori": [43, 57, 476], "pymemoryview_fromobject": [43, 57], "pymemoryview_get_bas": 43, "pymemoryview_get_buff": 43, "pymemoryview_getcontigu": [43, 57], "pymemoryview_typ": 57, "pymemoryviewobject": [476, 478], "pymethod_check": 44, "pymethod_clearfreelist": [482, 483], "pymethod_funct": 44, "pymethod_get_funct": 44, "pymethod_get_self": 44, "pymethod_new": 44, "pymethod_self": 44, "pymethod_typ": [44, 93], "pymethoddef": [21, 35, 45, 57, 58, 62, 63, 72, 73, 75, 76, 100, 465, 483], "pymethoddescr_typ": 57, "pymodinit_func": [35, 73, 76, 456, 465, 483], "pymodule_": 45, "pymodule_addfunct": [45, 57], "pymodule_addintconst": [45, 57, 462], "pymodule_addintmacro": [45, 468], "pymodule_addobject": [45, 57, 73, 76, 462, 472, 483], "pymodule_addobjectref": [45, 57, 76, 472, 483], "pymodule_addstringconst": [45, 57, 462], "pymodule_addstringmacro": [45, 468], "pymodule_addtyp": [45, 57, 482, 483], "pymodule_check": 45, "pymodule_checkexact": 45, "pymodule_cr": [3, 33, 35, 45, 72, 73, 76], "pymodule_create2": [45, 57], "pymodule_execdef": [45, 57, 478], "pymodule_fromdefandspec": [33, 45, 478], "pymodule_fromdefandspec2": [45, 57, 478], "pymodule_getdef": [45, 57], "pymodule_getdict": [45, 57], "pymodule_getfilenam": [45, 57, 474], "pymodule_getfilenameobject": [45, 57, 474], "pymodule_getnam": [45, 57], "pymodule_getnameobject": [45, 57], "pymodule_getst": [33, 45, 57, 61, 100, 482, 483], "pymodule_getwarningsmodul": 472, "pymodule_new": [45, 57], "pymodule_newobject": [45, 57], "pymodule_setdocstr": [45, 57], "pymodule_typ": [45, 57], "pymoduledef": [35, 45, 57, 61, 71, 72, 73, 76, 100, 482, 483], "pymoduledef_bas": [45, 57], "pymoduledef_head_init": [35, 45, 72, 73, 76], "pymoduledef_init": [45, 57], "pymoduledef_slot": 45, "pymoduledef_typ": 57, "pymp": 283, "pynch": [473, 483], "pynng": 68, "pynoargsfunct": [482, 483], "pynode_addchild": 481, "pynode_compil": [472, 482], "pynone_check": 46, "pynullimporter_typ": [482, 483], "pynumber_": 35, "pynumber_absolut": [47, 57], "pynumber_add": [35, 47, 57], "pynumber_and": [47, 55, 57], "pynumber_asssize_t": [47, 57], "pynumber_check": [47, 57, 481], "pynumber_coerc": 470, "pynumber_coerceex": 470, "pynumber_divmod": [47, 57], "pynumber_float": [47, 57, 481], "pynumber_floordivid": [47, 57], "pynumber_index": [47, 57, 79, 467, 472, 483], "pynumber_inplaceadd": [47, 57], "pynumber_inplaceand": [47, 55, 57], "pynumber_inplacefloordivid": [47, 57], "pynumber_inplacelshift": [47, 57], "pynumber_inplacematrixmultipli": [47, 57, 478], "pynumber_inplacemultipli": [47, 57], "pynumber_inplaceor": [47, 55, 57], "pynumber_inplacepow": [47, 57], "pynumber_inplaceremaind": [47, 57], "pynumber_inplacershift": [47, 57], "pynumber_inplacesubtract": [47, 55, 57], "pynumber_inplacetruedivid": [47, 57], "pynumber_inplacexor": [47, 55, 57], "pynumber_int": 471, "pynumber_invert": [47, 57], "pynumber_long": [47, 57, 471, 481], "pynumber_lshift": [47, 57], "pynumber_matrixmultipli": [47, 57, 478], "pynumber_multipli": [47, 57], "pynumber_neg": [47, 57], "pynumber_or": [47, 55, 57], "pynumber_posit": [47, 57], "pynumber_pow": [47, 57], "pynumber_remaind": [47, 57], "pynumber_rshift": [47, 57], "pynumber_subtract": [47, 55, 57], "pynumber_tobas": [47, 57, 483], "pynumber_truedivid": [47, 57], "pynumber_xor": [47, 55, 57], "pynumbermethod": [61, 63, 75, 464, 467], "pyo": [68, 163, 250, 382, 465, 468, 469, 477, 483], "pyobj_fromptr": 142, "pyobjc": 459, "pyobject": [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 79, 96, 98, 100, 176, 319, 362, 464, 467, 468, 472, 473, 480, 481, 483], "pyobject_": [35, 45, 63, 467], "pyobject_as_gc": 464, "pyobject_ascharbuff": [48, 57, 483], "pyobject_ascii": [49, 57], "pyobject_asfiledescriptor": [24, 57], "pyobject_asreadbuff": [48, 57, 483], "pyobject_aswritebuff": [48, 57, 483], "pyobject_byt": [49, 57], "pyobject_cal": [10, 57, 63, 73, 482, 483], "pyobject_callfunct": [10, 57, 467, 481], "pyobject_callfunctionobjarg": [10, 57, 483], "pyobject_callmethod": [10, 39, 55, 57, 79, 472, 474], "pyobject_callmethodnoarg": [10, 483], "pyobject_callmethodobjarg": [10, 57, 483], "pyobject_callmethodonearg": [10, 483], "pyobject_callnoarg": [10, 57, 75, 482, 483], "pyobject_callobject": [10, 57, 72, 73, 79], "pyobject_calloc": [42, 57, 478, 483], "pyobject_callonearg": [10, 482, 483], "pyobject_checkbuff": [7, 57, 473, 482, 483], "pyobject_checkreadbuff": [48, 57, 483], "pyobject_clearweakref": [57, 63, 67, 75, 474], "pyobject_copydata": [7, 57, 473], "pyobject_del": [3, 42, 63, 465], "pyobject_delattr": 49, "pyobject_delattrstr": 49, "pyobject_delitem": [40, 49, 57, 63, 465], "pyobject_delitemstr": [57, 465], "pyobject_dir": [49, 57], "pyobject_fastcalldict": 483, "pyobject_format": [49, 57, 191], "pyobject_fre": [42, 57, 63, 465, 467, 479, 483], "pyobject_from_gc": 464, "pyobject_gc_del": [28, 57, 63, 100, 464, 481, 483], "pyobject_gc_fini": 464, "pyobject_gc_init": 464, "pyobject_gc_isfin": [28, 57, 482, 483], "pyobject_gc_istrack": [28, 57, 482, 483], "pyobject_gc_new": [28, 63, 100, 464, 481], "pyobject_gc_newvar": [28, 63, 100, 464, 481], "pyobject_gc_res": [28, 483], "pyobject_gc_track": [28, 57, 464, 483], "pyobject_gc_untrack": [28, 57, 63, 75, 76, 100, 464, 473, 483], "pyobject_genericgetattr": [49, 57, 63, 93], "pyobject_genericgetdict": [49, 57, 63, 483], "pyobject_genericsetattr": [49, 57, 63], "pyobject_genericsetdict": [49, 57], "pyobject_get_weakrefs_listptr": [482, 483], "pyobject_getait": [49, 57, 483], "pyobject_getarenaalloc": [33, 42], "pyobject_getattr": [49, 57, 61, 63], "pyobject_getattrstr": [49, 57, 72, 73, 79, 473], "pyobject_getbuff": [7, 48, 57, 63, 468, 473, 483], "pyobject_getit": [36, 49, 55, 57, 63], "pyobject_getitem": [22, 35, 40, 49, 57, 63], "pyobject_getitemdata": [49, 474], "pyobject_gettypedata": [49, 57, 61, 474, 483], "pyobject_hasattr": [49, 57], "pyobject_hasattrstr": [49, 57, 483], "pyobject_hash": [49, 55, 57, 63, 473, 474], "pyobject_hashnotimpl": [49, 57, 63, 468], "pyobject_head": [58, 63, 76, 470], "pyobject_head_init": [58, 63, 474], "pyobject_init": [3, 57, 481, 482, 483], "pyobject_init_var": [481, 482, 483], "pyobject_initvar": [3, 57, 483], "pyobject_is_gc": [28, 63, 75, 482, 483], "pyobject_isinst": [49, 57, 63, 478, 483], "pyobject_issubclass": [49, 57, 61, 478, 483], "pyobject_istru": [49, 55, 57, 483], "pyobject_length": [35, 49, 57], "pyobject_lengthhint": [49, 477], "pyobject_malloc": [42, 57, 96, 465, 467, 477, 479, 483], "pyobject_new": [3, 28, 42, 63, 68, 465, 481, 482, 483], "pyobject_new_var": [482, 483], "pyobject_newvar": [3, 28, 42, 63, 100, 465, 481, 482, 483], "pyobject_not": [49, 57, 483], "pyobject_print": [49, 55, 73, 483], "pyobject_realloc": [42, 57, 465, 467, 483], "pyobject_repr": [49, 55, 57, 63, 64, 477, 478, 483], "pyobject_richcompar": [49, 57, 63, 75], "pyobject_richcomparebool": [49, 55, 57, 75, 483], "pyobject_s": [49, 57, 63, 483], "pyobject_selfit": 57, "pyobject_setarenaalloc": [33, 42], "pyobject_setattr": [49, 57, 63, 483], "pyobject_setattrstr": [49, 57, 79, 483], "pyobject_setitem": [35, 40, 49, 57, 63, 467, 483], "pyobject_str": [49, 57, 63, 64, 477], "pyobject_typ": [49, 57], "pyobject_typecheck": [49, 75, 483], "pyobject_var_head": [58, 63, 75], "pyobject_vectorcal": [10, 57, 104, 474, 483], "pyobject_vectorcalldict": 10, "pyobject_vectorcallmethod": [10, 57, 474, 483], "pyobjectarenaalloc": 42, "pyodid": [257, 473, 483], "pyos_afterfork": [57, 59, 474, 480, 483], "pyos_afterfork_child": [33, 57, 59, 293, 474, 480, 481, 483], "pyos_afterfork_par": [57, 59, 293, 480, 483], "pyos_ascii_atof": [466, 469, 471], "pyos_ascii_formatd": 466, "pyos_ascii_strtod": [466, 469, 471], "pyos_beforefork": [57, 59, 293, 480, 483], "pyos_checkstack": [23, 57, 59, 483], "pyos_double_to_str": [18, 57], "pyos_fspath": [57, 59, 479, 483], "pyos_getsig": [57, 59, 462], "pyos_initinterrupt": [472, 483], "pyos_inputhook": [57, 66, 474, 483], "pyos_interruptoccur": [57, 483], "pyos_mystricmp": [57, 483], "pyos_mystrnicmp": [57, 483], "pyos_readlin": 483, "pyos_readlinefunctionpoint": [66, 79, 472, 474, 477, 483], "pyos_setsig": [57, 59, 462, 483], "pyos_sighandler_t": [57, 59], "pyos_snprintf": [18, 57, 464], "pyos_stdioreadlin": 483, "pyos_stricmp": [18, 468], "pyos_string_to_doubl": [18, 57, 469, 471], "pyos_strnicmp": [18, 468], "pyos_strtol": [18, 57], "pyos_strtoul": [18, 57], "pyos_vsnprintf": [18, 57, 464], "pyoxid": 85, "pypa": [307, 399], "pypackag": 467, "pypars": 483, "pyparser_": 483, "pyparser_addtoken": 481, "pyparser_astfromfil": [467, 472, 483], "pyparser_astfromfilenam": [472, 483], "pyparser_astfromfileobject": [472, 483], "pyparser_astfromstr": [467, 472, 483], "pyparser_astfromstringobject": [472, 483], "pyparser_simpleparsefileflag": [472, 482], "pyparser_simpleparsestringfilenam": 483, "pyparser_simpleparsestringflag": [472, 482], "pyparser_simpleparsestringflagsfilenam": [472, 482], "pypegen": 483, "pypegen_first_item": 431, "pypegen_last_item": 431, "pyperform": [473, 483], "pypi": [78, 89, 101, 151, 188, 303, 307, 341, 352, 389, 399, 409, 425, 434, 449, 454, 465, 467, 469, 472, 474, 475, 477, 478, 479, 480, 481, 482, 483], "pypirc": 483, "pyport": [462, 483], "pypreconfig": [32, 33, 42, 59, 68, 474, 481], "pypreconfig_initisolatedconfig": [34, 481], "pypreconfig_initpythonconfig": [34, 481], "pyproj": 483, "pyproject": [76, 379, 483], "pyproperty_typ": [21, 57, 93], "pypy3": 186, "pypycload": [475, 477], "pyqt": [85, 459], "pyqt5": 102, "pyqt6": 102, "pyqtsign": 102, "pyqtslot": 102, "pyramid": 302, "pyrange_new": [464, 467], "pyrange_typ": [57, 467], "pyrangeiter_typ": 57, "pyre": 85, "pyreversed_typ": 57, "pyrex": 79, "pyrun_": 483, "pyrun_anyfil": 66, "pyrun_anyfileex": 66, "pyrun_anyfileexflag": 66, "pyrun_anyfileflag": 66, "pyrun_fil": 66, "pyrun_fileex": 66, "pyrun_fileexflag": 66, "pyrun_fileflag": 66, "pyrun_interactiveloop": [66, 79], "pyrun_interactiveloopflag": 66, "pyrun_interactiveon": [66, 483], "pyrun_interactiveoneflag": 66, "pyrun_simplefil": [66, 72], "pyrun_simplefileex": 66, "pyrun_simplefileexflag": [66, 483], "pyrun_simplestr": [33, 34, 66, 72, 79, 86, 468], "pyrun_simplestringflag": 66, "pyrun_str": [66, 79, 483], "pyrun_stringflag": 66, "pyruntimest": 483, "pyscannerobject": 483, "pyscript": 257, "pysendresult": [36, 63], "pyseqiter_check": 37, "pyseqiter_new": [37, 57], "pyseqiter_typ": [37, 57], "pysequence_": 35, "pysequence_check": [54, 57, 63], "pysequence_concat": [54, 57, 63], "pysequence_contain": [54, 57, 63], "pysequence_count": [54, 57], "pysequence_delitem": [54, 57, 483], "pysequence_delslic": [54, 57, 63], "pysequence_fast": [54, 57], "pysequence_fast_get_item": 54, "pysequence_fast_get_s": 54, "pysequence_fast_item": 54, "pysequence_getitem": [35, 54, 57, 60, 63, 79, 483], "pysequence_getslic": [54, 57, 63], "pysequence_in": 57, "pysequence_index": [54, 57], "pysequence_inplaceconcat": [54, 57, 63], "pysequence_inplacerepeat": [54, 57, 63], "pysequence_item": 54, "pysequence_length": [35, 54, 57, 79], "pysequence_list": [54, 57], "pysequence_repeat": [54, 57, 63], "pysequence_s": [54, 57, 63, 483], "pysequence_setitem": [35, 38, 54, 57, 63, 483], "pysequence_setslic": [54, 57, 63], "pysequence_tupl": [54, 57, 483], "pysequencemethod": [61, 63, 75], "pyseri": 84, "pyset_add": [55, 57, 467], "pyset_check": 55, "pyset_checkexact": [55, 472, 483], "pyset_clear": [55, 57], "pyset_clearfreelist": [482, 483], "pyset_contain": [55, 57, 467], "pyset_discard": [55, 57, 467], "pyset_get_s": 55, "pyset_new": [55, 57, 467], "pyset_pop": [55, 57], "pyset_s": [55, 57, 467], "pyset_typ": [55, 57], "pysetiter_typ": 57, "pysetobject": 55, "pyshar": 475, "pyshel": [160, 186, 247, 319, 479, 480, 481, 483], "pyshellext": 483, "pysid": 459, "pyside2": 102, "pyside6": 102, "pysignal_setwakeupfd": [23, 468], "pyslice_adjustindic": [56, 57, 474, 480, 483], "pyslice_check": 56, "pyslice_getindic": [56, 57], "pyslice_getindicesex": [56, 57, 474, 480, 483], "pyslice_new": [56, 57], "pyslice_typ": [56, 57], "pyslice_unpack": [56, 57, 474, 480, 483], "pysliceobject": 56, "pysortwrapper_typ": [482, 483], "pyspam_api": 73, "pyspam_api_point": 73, "pyspam_system": 73, "pyspam_system_num": 73, "pyspam_system_proto": 73, "pyspam_system_return": 73, "pysqlit": [340, 467, 469, 475], "pysqlite_row_key": 35, "pysqlite_row_method": 35, "pyst_getscop": [472, 483], "pystack": 483, "pystackv": 483, "pystat": [456, 483], "pystate_addmodul": [45, 57, 483], "pystate_findmodul": [45, 57], "pystate_removemodul": [45, 57], "pystaticmethod_typ": 93, "pystatus": [32, 33, 68, 474, 481], "pystatus_error": [34, 481], "pystatus_except": [34, 474, 481], "pystatus_exit": [34, 481], "pystatus_iserror": [34, 481], "pystatus_isexit": [34, 481], "pystatus_nomemori": [34, 481], "pystatus_ok": [34, 481], "pyston": [465, 466, 467, 470, 483], "pystrhex": [473, 483], "pystring_fromformat": 469, "pystring_fromformatv": 469, "pystring_new": 465, "pystringobject": 468, "pystructsequ": 483, "pystructsequence_desc": [57, 60, 480, 483], "pystructsequence_field": [57, 60, 480, 483], "pystructsequence_get_item": 60, "pystructsequence_getitem": [57, 60], "pystructsequence_inittyp": [60, 477], "pystructsequence_inittype2": [60, 477], "pystructsequence_new": [57, 60], "pystructsequence_newtyp": [57, 60, 483], "pystructsequence_set_item": 60, "pystructsequence_setitem": [57, 60], "pystructsequence_unnamedfield": [57, 60, 482, 483], "pysuper_typ": 57, "pysymtable_build": [472, 483], "pysymtable_buildobject": [472, 483], "pysymtable_fre": [472, 483], "pysys_addaudithook": [59, 142, 352], "pysys_addwarnopt": [33, 57, 59, 473, 480, 483], "pysys_addwarnoptionunicod": [57, 59, 473, 480, 483], "pysys_addxopt": [33, 57, 59, 473, 483], "pysys_audit": [59, 98, 142, 352, 483], "pysys_formatstderr": [57, 59], "pysys_formatstdout": [57, 59], "pysys_getobject": [34, 57, 59, 100, 473], "pysys_getxopt": [57, 59], "pysys_haswarnopt": [57, 473, 483], "pysys_resetwarnopt": [33, 57, 59, 474, 483], "pysys_setargv": [33, 57, 468, 469, 473, 483], "pysys_setargvex": [33, 57, 468, 469, 473, 475, 483], "pysys_setobject": [57, 59], "pysys_setpath": [57, 59, 473, 483], "pysys_writestderr": [57, 59], "pysys_writestdout": [57, 59], "pytest": [251, 388], "pyth": [341, 480], "pythagorean": 275, "pythn": [341, 480], "python": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 75, 76, 77, 87, 89, 90, 94, 98, 99, 101, 102, 106, 107, 108, 110, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 182, 183, 184, 185, 186, 187, 189, 190, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 265, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 298, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 313, 314, 316, 317, 318, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 331, 332, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 356, 357, 359, 360, 361, 363, 364, 365, 366, 368, 370, 371, 372, 373, 374, 375, 376, 379, 381, 382, 383, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 439, 441, 442, 443, 444, 446, 447, 453, 454, 455, 457], "python18035": 98, "python2": [79, 96, 111, 112, 344, 355, 421, 461, 463, 468, 477, 483], "python26": 468, "python273": 483, "python3": [34, 57, 72, 89, 96, 98, 102, 111, 112, 200, 208, 296, 334, 344, 354, 355, 382, 399, 421, 438, 448, 453, 455, 456, 460, 461, 469, 472, 474, 475, 477, 479, 481, 482, 483], "python311": 354, "python312": [451, 452], "python32": 475, "python33": 332, "python35": [399, 453], "python36": 479, "python37": 461, "python38": 481, "python39": 57, "python3_d": 483, "python3x": 483, "python_api_vers": [45, 465], "python_branch": [303, 483], "python_build": [303, 483], "python_compil": 303, "python_coroutin": 483, "python_dir": 167, "python_dom": 410, "python_for_gen": 483, "python_for_regen": [474, 483], "python_histori": [320, 334, 447], "python_implement": 303, "python_is_optim": 362, "python_logo": 419, "python_revis": [303, 483], "python_tzpath_context": 483, "python_vers": 303, "python_version_tupl": 303, "pythonapi": [176, 467], "pythonasynciodebug": [125, 126, 188, 455, 483], "pythonbook": 80, "pythonbreakpoint": [225, 352, 455, 480], "pythonc": 462, "pythoncap": 473, "pythoncap_compat": 473, "pythoncaseok": [225, 455, 463, 482, 483], "pythoncoerceclocal": [34, 293, 455, 456, 480, 483], "pythoncor": [461, 473, 483], "pythondebug": [33, 34, 455, 456], "pythondecoratorlibrari": 466, "pythondevmod": [34, 188, 455, 480], "pythondoc": [313, 483], "pythondontwritebytecod": [33, 34, 85, 352, 455, 468], "pythondotorg": 483, "pythondumpref": [34, 63, 455, 456, 481, 483], "pythondumprefsfil": [455, 483], "pythonexecut": [34, 455], "pythonfaulthandl": [34, 188, 214, 455, 476], "pythonfil": 72, "pythonhashse": [33, 34, 428, 455, 476, 483], "pythonhom": [33, 34, 35, 354, 362, 455, 461, 474, 479], "pythonhost": 341, "pythonhttpsverifi": 469, "pythoninfo": 483, "pythoninspect": [33, 34, 455, 465], "pythonintmaxstrdigit": [34, 344, 352, 455, 483], "pythonioencod": [33, 34, 293, 352, 455, 468, 477, 483], "pythonista": 103, "pythonlab": [426, 462, 464], "pythonlegacywindowsfsencod": [33, 34, 352, 455, 479], "pythonlegacywindowsstdio": [33, 34, 352, 455, 479], "pythonmac": 459, "pythonmalloc": [42, 68, 188, 455, 456, 483], "pythonmallocstat": [34, 42, 455, 483], "pythonnn": 86, "pythonnodebugrang": [34, 428, 455, 473], "pythonnousersit": [33, 34, 334, 455, 468], "pythonoldpars": [482, 483], "pythonoptim": [33, 34, 455], "pythonpath": [33, 34, 35, 71, 86, 151, 352, 354, 362, 432, 450, 455, 459, 461, 477, 483], "pythonpath_env": 34, "pythonperfsupport": [34, 104, 455, 474], "pythonplatlibdir": [34, 354, 455, 483], "pythonprofileimporttim": [34, 455, 480, 483], "pythonpycacheprefix": [34, 352, 455, 481, 483], "pythonrc": 438, "pythonregrtest_unicode_guard": 483, "pythonrun": [79, 467, 483], "pythonsafepath": [34, 327, 352, 455, 473, 483], "pythonshowalloccount": 469, "pythonshowrefcount": 469, "pythonsoftwarefound": 461, "pythonstartup": [247, 320, 334, 352, 438, 455, 477, 483], "pythontest": 483, "pythonthreaddebug": [472, 473, 483], "pythontracemalloc": [34, 382, 455, 483], "pythontzpath": 425, "pythonunbuff": [33, 34, 352, 455, 483], "pythonuserbas": [334, 455, 468], "pythonusersit": 362, "pythonutf8": [34, 293, 352, 455, 461, 480, 483], "pythonverbos": [33, 34, 455], "pythonvers": 35, "pythonw": [247, 283, 334, 352, 459, 461, 464, 479, 480, 483], "pythonwarn": [34, 188, 400, 455, 469, 475, 480, 483], "pythonwarndefaultencod": [258, 455, 472, 483], "pythonwin": [85, 176, 461, 462], "pythonx": [35, 72, 334, 344, 352, 399, 483], "pythonx86": 461, "pythonxi": [77, 461, 481], "pythread": 33, "pythread_acquire_lock": [57, 483], "pythread_acquire_lock_tim": [57, 483], "pythread_allocate_lock": 57, "pythread_create_key": [33, 57, 474, 483], "pythread_delete_key": [33, 57, 474], "pythread_delete_key_valu": [33, 57, 474], "pythread_exit_thread": [57, 483], "pythread_free_lock": 57, "pythread_get_key_valu": [33, 57, 474], "pythread_get_stacks": 57, "pythread_get_thread_id": [57, 480, 483], "pythread_get_thread_native_id": [57, 483], "pythread_getinfo": 57, "pythread_init_thread": 57, "pythread_reinittl": [33, 57, 474], "pythread_release_lock": [57, 483], "pythread_set_key_valu": [33, 57, 474, 477], "pythread_set_stacks": 57, "pythread_start_new_thread": [57, 480, 483], "pythread_tss_alloc": [33, 57, 474], "pythread_tss_cr": [33, 57], "pythread_tss_delet": [33, 57, 474], "pythread_tss_fre": [33, 57, 474], "pythread_tss_get": [33, 57, 474], "pythread_tss_is_cr": [33, 57], "pythread_tss_set": [33, 57, 474], "pythreadframegett": [482, 483], "pythreadst": [33, 57, 472, 473, 474, 477, 482, 483], "pythreadstate_clear": [33, 57, 483], "pythreadstate_delet": [33, 57, 483], "pythreadstate_deletecurr": [33, 482, 483], "pythreadstate_entertrac": [33, 473, 483], "pythreadstate_get": [33, 57, 483], "pythreadstate_getdict": [33, 57, 483], "pythreadstate_getfram": [26, 33, 53, 57, 473, 482, 483], "pythreadstate_getid": [33, 57, 482, 483], "pythreadstate_getinterpret": [33, 57, 482, 483], "pythreadstate_leavetrac": [33, 473, 483], "pythreadstate_new": [33, 57, 483], "pythreadstate_next": [33, 464], "pythreadstate_setasyncexc": [33, 57, 480, 483], "pythreadstate_swap": [33, 57], "pytim": [472, 483], "pytime_check": 20, "pytime_checkexact": 20, "pytime_fromtim": 20, "pytime_fromtimeandfold": 20, "pytimezone_fromoffset": [20, 480], "pytimezone_fromoffsetandnam": [20, 480], "pytrace_c_cal": 33, "pytrace_c_except": 33, "pytrace_c_return": 33, "pytrace_cal": 33, "pytrace_except": 33, "pytrace_lin": 33, "pytrace_opcod": 33, "pytrace_return": 33, "pytraceback_her": [57, 483], "pytraceback_print": [57, 479, 483], "pytraceback_typ": 57, "pytracebackobject": 466, "pytracemalloc_track": [42, 480], "pytracemalloc_untrack": [42, 480], "pytrash_unwind_level": [482, 483], "pytuple_check": [60, 79], "pytuple_checkexact": 60, "pytuple_clearfreelist": [482, 483], "pytuple_get_item": 60, "pytuple_get_s": 60, "pytuple_getitem": [57, 60, 73, 79], "pytuple_getslic": [57, 60], "pytuple_new": [35, 57, 60, 72], "pytuple_pack": [57, 60, 79, 466], "pytuple_s": [57, 60, 79], "pytuple_set_item": [60, 472, 483], "pytuple_setitem": [35, 55, 57, 60, 72, 73], "pytuple_typ": [57, 60], "pytupleiter_typ": 57, "pytupleobject": [13, 54, 59, 60, 62], "pytyp": [85, 479], "pytype_": 63, "pytype_addwatch": [61, 474], "pytype_check": [61, 73, 483], "pytype_checkexact": [61, 483], "pytype_clearcach": [57, 61], "pytype_clearwatch": 61, "pytype_from": [61, 474, 483], "pytype_frommetaclass": [57, 61, 63, 474, 483], "pytype_frommoduleandspec": [57, 61, 63, 100, 472, 474, 482, 483], "pytype_fromspec": [28, 45, 57, 58, 61, 63, 76, 100, 474, 481, 482, 483], "pytype_fromspecwithbas": [28, 57, 61, 63, 472, 474, 483], "pytype_genericalloc": [57, 61, 63, 481], "pytype_genericnew": [57, 61, 63, 76], "pytype_getdict": [61, 63, 483], "pytype_getflag": [57, 61, 483], "pytype_getmodul": [57, 61, 100, 482, 483], "pytype_getmodulebydef": [61, 100, 473, 483], "pytype_getmodulest": [57, 61, 100, 482, 483], "pytype_getnam": [57, 61, 473, 483], "pytype_getqualnam": [57, 61, 473, 483], "pytype_getslot": [57, 61, 472, 477, 483], "pytype_gettypedatas": [49, 57, 474], "pytype_hasfeatur": [61, 63, 483], "pytype_is_gc": 61, "pytype_issubtyp": [57, 61], "pytype_modifi": [57, 61, 63, 483], "pytype_readi": [28, 45, 57, 61, 63, 75, 76, 100, 473, 483], "pytype_slot": [57, 58, 61], "pytype_spec": [49, 57, 61, 63, 100, 474, 483], "pytype_typ": [57, 61, 63, 474, 483], "pytype_watch": [61, 474, 483], "pytype_watchcallback": 61, "pytypeobject": [3, 6, 8, 9, 12, 13, 15, 17, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 35, 37, 38, 39, 44, 45, 46, 49, 50, 55, 56, 57, 58, 60, 61, 62, 64, 68, 75, 76, 100, 463, 473, 474, 478, 481, 482, 483], "pytypereadi": 93, "pytz": 183, "pytzinfo_check": 20, "pytzinfo_checkexact": 20, "pyunicod": [64, 483], "pyunicode_1byte_data": [64, 476], "pyunicode_1byte_kind": [64, 476], "pyunicode_2byte_data": [64, 476], "pyunicode_2byte_kind": [64, 476], "pyunicode_4byte_data": [64, 476], "pyunicode_4byte_kind": [64, 476], "pyunicode_append": 57, "pyunicode_appendanddel": 57, "pyunicode_as_data": [473, 474, 476, 483], "pyunicode_as_unicod": [473, 474, 476, 483], "pyunicode_asasciistr": [57, 64, 476], "pyunicode_ascharmapstr": [57, 64], "pyunicode_asdecodedobject": [57, 474, 479, 483], "pyunicode_asdecodedunicod": [57, 474, 479, 483], "pyunicode_asencodedobject": [57, 474, 476, 479, 483], "pyunicode_asencodedstr": [57, 64, 483], "pyunicode_asencodedunicod": [57, 474, 479, 483], "pyunicode_aslatin1str": [57, 64, 476], "pyunicode_asmbcsstr": [57, 64, 476], "pyunicode_asrawunicodeescapestr": [57, 64, 476], "pyunicode_asucs4": [57, 64, 476], "pyunicode_asucs4copi": [57, 64, 472, 476], "pyunicode_asunicod": [473, 474, 476, 482, 483], "pyunicode_asunicodeands": [473, 474, 476, 482, 483], "pyunicode_asunicodecopi": [472, 476, 483], "pyunicode_asunicodeescapestr": [57, 64, 476], "pyunicode_asutf16str": [57, 64], "pyunicode_asutf32str": [57, 64], "pyunicode_asutf8": [64, 476, 480, 483], "pyunicode_asutf8ands": [57, 64, 472, 480, 483], "pyunicode_asutf8str": [57, 64, 476], "pyunicode_aswidechar": [57, 64, 483], "pyunicode_aswidecharstr": [57, 64, 472, 476, 480, 483], "pyunicode_buildencodingmap": [57, 483], "pyunicode_check": [64, 76], "pyunicode_check_intern": [473, 483], "pyunicode_checkexact": 64, "pyunicode_clearfreelist": [482, 483], "pyunicode_compar": [57, 64, 472, 476], "pyunicode_comparewithasciistr": [57, 64, 475, 483], "pyunicode_concat": [57, 64, 476], "pyunicode_contain": [57, 64], "pyunicode_copycharact": [64, 472, 473, 476, 483], "pyunicode_count": [57, 64], "pyunicode_data": [64, 476, 483], "pyunicode_decod": [57, 64, 483], "pyunicode_decodeascii": [57, 64], "pyunicode_decodecharmap": [57, 64], "pyunicode_decodecodepagest": 57, "pyunicode_decodefsdefault": [57, 64, 72, 483], "pyunicode_decodefsdefaultands": [57, 59, 64], "pyunicode_decodelatin1": [57, 64], "pyunicode_decodelocal": [57, 64], "pyunicode_decodelocaleands": [57, 59, 64, 480], "pyunicode_decodembc": [57, 64], "pyunicode_decodembcsst": [57, 64], "pyunicode_decoderawunicodeescap": [57, 64], "pyunicode_decodeunicodeescap": [57, 64], "pyunicode_decodeutf16": [57, 64], "pyunicode_decodeutf16st": [57, 64], "pyunicode_decodeutf32": [57, 64], "pyunicode_decodeutf32st": [57, 64], "pyunicode_decodeutf7": [57, 64], "pyunicode_decodeutf7st": [57, 64], "pyunicode_decodeutf8": [57, 64], "pyunicode_decodeutf8st": [57, 64, 483], "pyunicode_encod": [473, 476, 483], "pyunicode_encodeascii": [473, 476], "pyunicode_encodecharmap": [473, 476, 483], "pyunicode_encodecodepag": [57, 64, 476, 483], "pyunicode_encodedecim": [473, 476, 483], "pyunicode_encodefsdefault": [57, 59, 64, 483], "pyunicode_encodelatin1": [473, 476, 483], "pyunicode_encodelocal": [57, 59, 64, 480, 483], "pyunicode_encodembc": [476, 483], "pyunicode_encoderawunicodeescap": [473, 476, 483], "pyunicode_encodeunicodeescap": [473, 476, 483], "pyunicode_encodeutf16": [473, 476, 483], "pyunicode_encodeutf32": [473, 476, 483], "pyunicode_encodeutf7": [473, 476, 483], "pyunicode_encodeutf8": [473, 476, 483], "pyunicode_fil": [64, 473, 476, 483], "pyunicode_find": [57, 64], "pyunicode_findchar": [57, 64, 472, 476, 480, 483], "pyunicode_format": [57, 64], "pyunicode_fromencodedobject": [57, 64], "pyunicode_fromformat": [23, 57, 64, 75, 76, 472, 474, 476, 477, 478, 483], "pyunicode_fromformatv": [57, 59, 64, 474, 483], "pyunicode_fromkindanddata": [64, 476], "pyunicode_fromobject": [57, 64], "pyunicode_fromordin": 57, "pyunicode_fromstr": [22, 35, 57, 64, 72, 76], "pyunicode_fromstringands": [57, 64, 472, 483], "pyunicode_fromunicod": [472, 473, 474, 476, 482, 483], "pyunicode_fromwidechar": [57, 64, 476], "pyunicode_fsconvert": [5, 57, 64, 479, 483], "pyunicode_fsdecod": [57, 64, 474, 479, 483], "pyunicode_get_data_s": [473, 474, 476, 483], "pyunicode_get_length": [64, 472, 476], "pyunicode_get_s": [473, 474, 476, 483], "pyunicode_getdefaultencod": 57, "pyunicode_getlength": [57, 64, 472, 476], "pyunicode_getmax": [472, 476, 483], "pyunicode_gets": [473, 474, 476], "pyunicode_internfromstr": [57, 64], "pyunicode_internimmort": [472, 473, 474, 483], "pyunicode_interninplac": [57, 64, 472, 483], "pyunicode_is_compact": 473, "pyunicode_is_readi": 473, "pyunicode_isidentifi": [57, 64, 483], "pyunicode_join": [57, 64, 476], "pyunicode_kind": [64, 476], "pyunicode_max_char_valu": [64, 476], "pyunicode_new": [64, 472, 476], "pyunicode_partit": 57, "pyunicode_read": [64, 476], "pyunicode_read_char": [64, 476], "pyunicode_readchar": [57, 64, 476], "pyunicode_readi": [64, 473, 474, 476], "pyunicode_replac": [57, 64], "pyunicode_res": 57, "pyunicode_richcompar": [57, 64], "pyunicode_rpartit": 57, "pyunicode_rsplit": 57, "pyunicode_split": [57, 64], "pyunicode_splitlin": [57, 64], "pyunicode_substr": [57, 64, 472, 476], "pyunicode_tailmatch": [57, 64, 472, 476, 482], "pyunicode_transformdecimaltoascii": [473, 476, 483], "pyunicode_transl": [57, 64], "pyunicode_translatecharmap": [473, 476, 483], "pyunicode_typ": [57, 63, 64], "pyunicode_wchar_kind": [64, 473, 474, 476], "pyunicode_writ": [64, 476], "pyunicode_writechar": [57, 64, 476], "pyunicode_wstr_length": [473, 482, 483], "pyunicodedecodeerror_cr": [23, 57], "pyunicodedecodeerror_getencod": [23, 57], "pyunicodedecodeerror_getend": [23, 57], "pyunicodedecodeerror_getobject": [23, 57], "pyunicodedecodeerror_getreason": [23, 57], "pyunicodedecodeerror_getstart": [23, 57], "pyunicodedecodeerror_setend": [23, 57], "pyunicodedecodeerror_setreason": [23, 57], "pyunicodedecodeerror_setstart": [23, 57], "pyunicodeencodeerror_cr": 483, "pyunicodeencodeerror_getencod": [23, 57], "pyunicodeencodeerror_getend": [23, 57], "pyunicodeencodeerror_getobject": [23, 57], "pyunicodeencodeerror_getreason": [23, 57], "pyunicodeencodeerror_getstart": [23, 57], "pyunicodeencodeerror_setend": [23, 57], "pyunicodeencodeerror_setreason": [23, 57], "pyunicodeencodeerror_setstart": [23, 57], "pyunicodeiter_typ": 57, "pyunicodeobject": [24, 63, 64, 96, 472, 473], "pyunicodetranslateerror_cr": 483, "pyunicodetranslateerror_getend": [23, 57], "pyunicodetranslateerror_getobject": [23, 57], "pyunicodetranslateerror_getreason": [23, 57], "pyunicodetranslateerror_getstart": [23, 57], "pyunicodetranslateerror_setend": [23, 57], "pyunicodetranslateerror_setreason": [23, 57], "pyunicodetranslateerror_setstart": [23, 57], "pyunicodeucs2_decodeutf8": 96, "pyunicodeucs2_decodeutf8st": 96, "pyunicodeucs2_fromstr": 96, "pyunicodeucs2_fromstringands": 96, "pyunit": [362, 463], "pyunstabl": 57, "pyunstable_": 474, "pyunstable_code_getextra": [13, 474], "pyunstable_code_new": [13, 474], "pyunstable_code_newwithposonlyarg": [13, 474], "pyunstable_code_setextra": [13, 474], "pyunstable_eval_requestcodeextraindex": [13, 474], "pyunstable_exc_prepreraisestar": [23, 483], "pyunstable_gc_visitobject": 28, "pyunstable_interpreterframe_getcod": [26, 483], "pyunstable_interpreterframe_getlasti": [26, 483], "pyunstable_interpreterframe_getlin": [26, 483], "pyunstable_long_compactvalu": [39, 474, 483], "pyunstable_long_iscompact": [39, 474, 483], "pyunstable_object_gc_newwithextradata": [28, 483], "pyunstable_perfmapstate_fini": [51, 483], "pyunstable_perfmapstate_init": [51, 483], "pyunstable_type_assignversiontag": [61, 483], "pyunstable_visitobject": 483, "pyunstable_writeperfmapentri": [51, 483], "pyvarobject": [3, 28, 50, 57, 58, 68, 362, 473], "pyvarobject_head_init": [58, 63, 75, 76, 483], "pyvectorcall_cal": [10, 57, 63, 474, 483], "pyvectorcall_funct": [10, 483], "pyvectorcall_narg": [10, 57, 474, 483], "pyvenv": [34, 334, 354, 399, 461, 476, 477, 479, 481, 483], "pyvideo": 454, "pyw": [247, 438, 461, 464, 483], "pyweakref_": 63, "pyweakref_check": 67, "pyweakref_checkproxi": 67, "pyweakref_checkref": 67, "pyweakref_get_object": [67, 473, 483], "pyweakref_getobject": [57, 67], "pyweakref_newproxi": [57, 67], "pyweakref_newref": [5, 57, 67, 483], "pyweakrefer": [57, 473, 483], "pywidestringlist": [32, 68, 481], "pywidestringlist_append": [34, 481], "pywidestringlist_insert": [34, 481], "pywin32": [68, 85, 458, 483], "pywrapper_new": [21, 57], "pywrapperdescr_typ": 57, "pyxml": [68, 463], "pyyaml": [251, 469, 471], "pyz": [421, 478, 483], "pyzip_typ": 57, "pyzipfil": [68, 119, 477], "pyzmq": 102, "pyzw": [421, 483], "q0": 261, "q1": 261, "qa1067": 459, "qabxcd": 190, "qapplic": 102, "qe": 464, "qemu": [348, 481, 483], "qfont": 102, "qfoutfil": 292, "qh": 102, "qh6xq": 347, "qhand": 268, "qiflush": 177, "qmail": 271, "qmark": 340, "qname": [68, 273, 410, 415, 416], "qname_aware_attr": 413, "qname_aware_tag": 413, "qnan": 186, "qobject": 102, "qop": 483, "qp": 195, "qplaintextedit": 102, "qpop": 305, "qpushbutton": 102, "qq": 163, "qqh": 347, "qqh6x": 347, "qr": 190, "qs": [84, 394], "qscan": 223, "qseen": 190, "qsize": [134, 283, 316], "qsort": 176, "qt": [68, 459], "qt6": 102, "qtc": 223, "qtcore": 102, "qtgui": 102, "qthandler": 102, "qthread": 102, "qthreadnam": 102, "qti": 467, "qtwidget": 102, "quack": [102, 468], "quad": [337, 464, 483], "quadrant": 275, "quadrat": [85, 161, 190, 211, 314, 344, 409, 469, 472, 483], "quadro": 117, "quadrupl": 483, "qualcomm": [337, 483], "qualif": [455, 477], "qualifi": [61, 68, 87, 93, 191, 193, 197, 250, 255, 268, 269, 299, 335, 337, 344, 348, 386, 388, 398, 400, 413, 416, 423, 428, 432, 436, 455, 461, 467, 473, 478, 481, 483, 484], "qualifiednam": 410, "qualit": 369, "qualiti": [117, 193, 293, 295, 305, 428, 475, 483], "qualnam": [13, 19, 27, 29, 94, 101, 197, 211, 268, 483], "quantifi": [106, 261, 314, 319, 473, 483], "quantil": [318, 343, 481, 483], "quantiti": [93, 186, 275, 293, 319, 341, 465, 469, 475], "quantity_on_hand": 181, "quantiz": [186, 476, 483], "quantum": 293, "quartil": [318, 343, 481], "quartz": 102, "quay": 483, "que": 102, "queen": [95, 318, 319, 464, 465], "quentel": [480, 483], "quentin": [480, 483], "queri": [32, 50, 68, 84, 95, 102, 106, 109, 118, 133, 136, 151, 158, 169, 205, 219, 230, 245, 250, 251, 255, 281, 298, 305, 328, 358, 362, 369, 375, 376, 386, 394, 395, 405, 410, 419, 432, 455, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "query_count": 473, "query_field": 471, "query_opt": 376, "query_str": [407, 473], "query_us": 473, "queryinfokey": [142, 405], "querykey": 405, "queryreflectionkey": [142, 405, 468, 469], "queryvalu": [142, 405, 483], "queryvalueex": [405, 483], "quest": [345, 442], "questhead": 369, "question": [58, 73, 79, 85, 94, 95, 101, 102, 106, 109, 141, 158, 193, 194, 235, 266, 292, 340, 369, 373, 406, 442, 462, 464, 465, 467, 480, 482, 483], "queu": [33, 155, 177, 269, 295, 337, 361, 468], "queue": [68, 84, 101, 102, 107, 108, 123, 136, 160, 164, 177, 182, 212, 232, 254, 268, 269, 293, 318, 322, 325, 328, 337, 338, 344, 359, 361, 365, 369, 413, 445, 452, 462, 465, 466, 467, 468, 470, 475, 478, 481, 482, 483], "queue_factori": 268, "queue_handl": 102, "queue_manag": 483, "queueempti": 134, "queueful": 134, "queuehandl": [68, 101, 118, 483], "queuelisten": [68, 118, 478, 483], "queuemanag": 283, "qui": [103, 149], "quick": [33, 50, 68, 75, 84, 85, 95, 102, 106, 110, 118, 190, 216, 217, 218, 222, 267, 269, 290, 319, 333, 352, 369, 375, 388, 463, 464, 465, 466, 467, 468, 470, 471, 474, 475, 477, 483], "quick_ratio": 190, "quicken": [191, 483], "quickest": 251, "quickstart": 476, "quicktim": 464, "quiet": [33, 34, 89, 96, 163, 186, 190, 275, 292, 311, 352, 362, 397, 461, 466, 469, 472, 474, 475, 478, 483], "quinlan": [465, 466, 469, 475], "quirk": [92, 344, 434, 472, 477, 483], "quit": [7, 72, 73, 76, 84, 92, 95, 96, 101, 102, 103, 106, 120, 144, 168, 169, 176, 177, 189, 200, 223, 247, 258, 269, 283, 288, 292, 297, 305, 309, 335, 340, 341, 369, 430, 432, 434, 441, 448, 450, 451, 462, 463, 464, 465, 467, 476, 477, 483], "quixot": 465, "quo": 231, "quopri": [68, 146, 156, 158, 254, 285], "quopri_codec": 158, "quot": [5, 68, 79, 84, 85, 87, 96, 106, 109, 126, 137, 146, 158, 175, 176, 195, 196, 197, 198, 202, 203, 205, 208, 209, 235, 238, 247, 248, 256, 262, 297, 317, 319, 331, 340, 344, 345, 348, 360, 364, 384, 386, 395, 413, 417, 426, 427, 431, 434, 435, 446, 449, 451, 461, 462, 465, 467, 474, 475, 476, 480, 483], "quota": [102, 212, 248], "quotat": [158, 348, 468, 483], "quote_": 175, "quote_al": 175, "quote_from_byt": [394, 483], "quote_minim": 175, "quote_non": 175, "quote_nonnumer": 175, "quote_notnul": [175, 474, 483], "quote_plus": [394, 475], "quote_str": [175, 474, 483], "quote_via": [394, 478, 483], "quoteattr": 417, "quotechar": [175, 483], "quoted_print": 158, "quotedprint": 158, "quotetab": [146, 158, 317], "quotient": [183, 186, 275, 308, 430, 449], "quux": 358, "qvboxlayout": 102, "qwarn": 469, "qwertyuiop": 100, "qwidget": 102, "qx": 275, "r1": [190, 242, 384, 394], "r12": 98, "r13": 483, "r14": 483, "r2": [190, 242, 384, 394], "r5rs": 468, "r6": 483, "r_luxury_yacht": 400, "r_ok": 293, "rab": 102, "rabbit": 449, "rabic": 387, "race": [33, 87, 140, 186, 226, 250, 293, 327, 337, 360, 402, 474, 475, 476, 482, 483], "rad": [109, 465], "radian": [186, 275, 384, 465, 481, 483], "radic": 466, "radio": [281, 375, 483], "radiobutton": [281, 375, 376, 483], "radiobuttongroup": 281, "radiogroup": 281, "radislav": 483, "radius": [94, 155, 275, 340, 384], "radix": [39, 186, 225, 266, 352, 435, 483], "radixchar": 266, "radu": 483, "rafik": [478, 483], "ragusa": 474, "rahtz": 473, "rainfal": 85, "rais": [5, 7, 9, 13, 22, 24, 25, 26, 28, 32, 33, 34, 37, 39, 45, 47, 49, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 73, 75, 76, 78, 92, 93, 94, 95, 99, 102, 103, 107, 109, 110, 112, 114, 115, 120, 122, 125, 132, 133, 135, 137, 138, 139, 141, 144, 146, 147, 149, 151, 153, 157, 158, 159, 160, 163, 167, 169, 170, 173, 175, 176, 177, 181, 183, 184, 186, 191, 193, 194, 196, 197, 199, 200, 202, 203, 205, 206, 208, 209, 213, 215, 218, 221, 225, 226, 228, 230, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 278, 281, 282, 283, 287, 288, 291, 293, 295, 296, 297, 299, 302, 304, 305, 307, 311, 314, 319, 322, 323, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 344, 345, 347, 348, 352, 353, 355, 356, 358, 359, 362, 365, 366, 369, 378, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 407, 408, 410, 413, 414, 415, 416, 419, 422, 423, 425, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 442, 443, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "raise_error_known_loc": 431, "raise_indentation_error": 431, "raise_on_defect": [208, 476], "raise_on_error": 193, "raise_sign": [115, 333, 483], "raise_stmt": [431, 436], "raise_syntax_error": 431, "raise_syntax_error_invalid_target": 431, "raise_syntax_error_known_loc": 431, "raise_syntax_error_known_rang": 431, "raise_syntax_error_on_next_token": 431, "raise_syntax_error_starting_from": 431, "raise_vararg": 191, "raiseexcept": [101, 102, 267, 269, 475], "raj": [478, 483], "ralf": [467, 468], "ralph": 468, "ram": [109, 186, 467, 483], "ramachandran": 473, "ramalho": 483, "ramaswami": 483, "rambl": 95, "ramchandra": [479, 483], "ramnani": 477, "ramvikram": 474, "ran": [160, 193, 348, 388, 468, 469, 474, 483], "rand": [176, 341, 343], "rand_add": [341, 483], "rand_byt": [341, 474, 476, 483], "rand_egd": [341, 472, 483], "rand_list": 95, "rand_pseudo_byt": [472, 474, 476, 483], "rand_status": [341, 483], "randal": [85, 108], "randbelow": [326, 483], "randbit": 326, "randbyt": [318, 482, 483], "randel": 483, "randint": [318, 475, 483], "random": [33, 34, 35, 68, 73, 84, 85, 87, 92, 95, 102, 109, 118, 134, 149, 158, 173, 174, 176, 193, 218, 226, 247, 254, 257, 261, 283, 290, 292, 308, 319, 326, 327, 328, 341, 343, 358, 362, 384, 388, 398, 410, 424, 426, 428, 451, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 476, 477, 478, 481, 483], "random_combin": 318, "random_combination_with_replac": 318, "random_permut": 318, "random_product": 318, "randrang": [84, 318, 451, 466, 472, 474, 475, 483], "randse": 469, "rang": [5, 7, 18, 23, 25, 39, 59, 64, 68, 72, 73, 76, 84, 85, 87, 92, 93, 94, 95, 96, 99, 102, 104, 106, 109, 110, 112, 120, 126, 134, 138, 139, 141, 144, 149, 158, 166, 167, 169, 176, 177, 178, 183, 186, 190, 191, 193, 212, 213, 225, 226, 235, 236, 241, 244, 248, 254, 255, 259, 261, 262, 278, 283, 284, 288, 293, 295, 297, 299, 304, 305, 308, 315, 316, 318, 319, 322, 326, 333, 335, 337, 340, 341, 343, 345, 347, 352, 353, 365, 366, 367, 369, 375, 378, 381, 382, 384, 386, 388, 394, 406, 410, 419, 425, 427, 428, 429, 430, 432, 434, 435, 436, 440, 442, 443, 445, 446, 449, 450, 451, 452, 455, 459, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "range_iter": 483, "rank": [291, 343, 413, 474], "ranlib": 483, "raphael": 235, "rapid": [193, 308, 481, 483], "rare": [63, 84, 103, 133, 177, 181, 193, 199, 213, 235, 243, 247, 267, 292, 330, 333, 337, 344, 358, 410, 463, 464, 467, 468, 474, 476, 483], "rarer": 467, "rarg": 292, "rarrow": 377, "raseliarison": 469, "rast": [206, 249], "raster": 249, "rat": 230, "ratcliff": 190, "rate": [84, 117, 141, 289, 295, 308, 343, 349, 396, 479, 483], "ratecv": [141, 483], "rath": [478, 483], "rather": [5, 7, 22, 23, 33, 41, 45, 49, 55, 58, 61, 64, 72, 73, 75, 76, 84, 94, 96, 100, 101, 102, 103, 120, 137, 149, 151, 155, 158, 163, 169, 176, 177, 181, 183, 186, 191, 208, 209, 213, 225, 226, 235, 243, 247, 248, 255, 258, 261, 267, 268, 269, 270, 271, 275, 283, 292, 293, 295, 302, 312, 313, 314, 319, 324, 331, 332, 334, 335, 337, 340, 341, 344, 345, 348, 352, 355, 358, 362, 365, 366, 369, 375, 376, 378, 384, 386, 388, 394, 395, 399, 400, 410, 413, 419, 422, 423, 425, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 463, 464, 465, 466, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "ratio": [149, 190, 221, 275, 343, 384, 476, 483], "ration": [183, 186, 221, 289, 344, 428, 468, 469, 470, 475, 483], "rational": [213, 235, 293, 328, 329, 333, 337, 358, 366, 428, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "ratnadeep": [480, 483], "raw": [5, 7, 16, 32, 63, 68, 101, 106, 118, 120, 151, 167, 176, 177, 191, 193, 196, 197, 205, 206, 207, 225, 230, 255, 270, 283, 288, 293, 299, 329, 331, 337, 338, 344, 363, 366, 369, 381, 383, 395, 398, 415, 427, 435, 449, 463, 465, 467, 468, 470, 473, 474, 476, 478, 483], "raw_data": 442, "raw_data_manag": [197, 208], "raw_decod": [262, 483], "raw_input": [112, 157, 470], "raw_shm": 284, "raw_unicode_escap": 158, "rawarray": 283, "rawconfigpars": [68, 217, 268, 469, 473, 477, 483], "rawdata": 244, "rawdescriptionhelpformatt": 120, "rawio": 483, "rawiobas": [225, 258, 468, 476, 478, 483], "rawparam": 196, "rawpen": 384, "rawtexthelpformatt": 120, "rawturtl": [68, 222, 474, 483], "rawvalu": 283, "rax": 98, "ray": [475, 477, 483], "raymond": [92, 93, 95, 108, 177, 347, 427, 462, 463, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "raymondhetting": 475, "raynor": 466, "rb": [66, 84, 87, 102, 117, 126, 149, 160, 200, 208, 218, 225, 234, 235, 250, 252, 253, 258, 270, 288, 299, 302, 344, 360, 378, 379, 386, 397, 401, 407, 419, 422, 435, 446, 452, 462, 465, 472, 476, 483], "rbp": 98, "rbpb15s": 235, "rbrace": [377, 431], "rc": [102, 106, 176, 208, 296, 348, 355, 362, 399, 411], "rc1": 483, "rc2": 483, "rc4": [341, 483], "rc_bad_venv_cfg": 461, "rc_create_process": 461, "rc_instal": 461, "rc_internal_error": 461, "rc_no_commandlin": 461, "rc_no_python": 461, "rc_no_venv_cfg": 461, "rcn": [80, 93], "rcomplet": 483, "rcpt": 335, "rcpt_option": 335, "rcvall_": 337, "rcvall_off": 337, "rcvall_on": 337, "rd": [102, 341, 344], "rdigkeiten": 475, "rdivmod": 483, "rdmurray": 477, "rdn": 341, "rdns": 341, "rds": [476, 483], "rds_": 337, "rdstest": 483, "re": [7, 33, 42, 45, 63, 68, 72, 73, 75, 76, 77, 84, 85, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 109, 139, 144, 145, 155, 160, 163, 167, 169, 176, 177, 183, 186, 187, 190, 191, 193, 196, 201, 205, 207, 211, 220, 243, 247, 248, 250, 254, 258, 259, 266, 267, 268, 269, 271, 278, 279, 283, 288, 292, 293, 295, 297, 308, 314, 315, 338, 341, 344, 345, 348, 352, 353, 363, 364, 365, 369, 377, 378, 384, 386, 394, 395, 400, 407, 413, 415, 419, 427, 428, 429, 432, 434, 435, 436, 441, 451, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 481, 483], "reach": [23, 24, 66, 73, 75, 84, 85, 95, 102, 105, 106, 110, 137, 144, 149, 153, 159, 225, 242, 261, 267, 270, 293, 297, 313, 314, 328, 331, 337, 338, 340, 344, 348, 365, 381, 395, 413, 415, 427, 428, 430, 432, 436, 461, 462, 463, 464, 465, 467, 468, 469, 475, 477, 478, 480, 481, 483], "reachabl": [33, 193, 259, 292, 293, 296, 386, 428, 482, 483], "reacquir": [33, 176, 365], "react": [63, 92, 272, 369, 462, 468], "reaction": [462, 463], "read": [5, 7, 22, 23, 24, 25, 31, 33, 34, 41, 42, 43, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 79, 85, 86, 87, 92, 93, 94, 95, 96, 101, 102, 103, 106, 107, 110, 112, 117, 119, 120, 126, 136, 137, 140, 143, 146, 148, 149, 151, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 170, 175, 176, 177, 181, 183, 184, 189, 190, 191, 193, 194, 200, 203, 204, 207, 208, 212, 213, 215, 216, 218, 219, 223, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 253, 254, 255, 258, 262, 265, 267, 268, 271, 276, 278, 280, 281, 282, 283, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 309, 312, 313, 314, 319, 320, 325, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 342, 344, 347, 348, 352, 355, 358, 359, 360, 365, 366, 369, 376, 378, 380, 381, 382, 384, 385, 389, 390, 394, 395, 396, 397, 399, 400, 407, 410, 413, 414, 415, 416, 417, 419, 421, 422, 425, 426, 427, 428, 430, 432, 435, 438, 440, 446, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "read1": [149, 234, 258, 483], "read_": 359, "read_al": 359, "read_binari": [252, 473, 474, 483], "read_boundmethod": [481, 482], "read_builtin": [481, 482], "read_byt": [250, 252, 253, 278, 296, 422, 478, 483], "read_classvar_from_class": [481, 482], "read_classvar_from_inst": [481, 482], "read_data": [389, 390, 446, 483], "read_dequ": [481, 482], "read_dict": [167, 475, 480, 481, 482, 483], "read_eag": 359, "read_environ": [407, 475], "read_ev": 413, "read_fil": [167, 268, 474], "read_glob": [481, 482], "read_histori": 320, "read_history_fil": 320, "read_init_fil": [320, 323, 483], "read_instancevar": [481, 482], "read_instancevar_slot": [481, 482], "read_lazi": 359, "read_list": [481, 482], "read_loc": [481, 482], "read_mime_typ": [276, 483], "read_multi": 483, "read_namedtupl": [481, 482], "read_nonloc": [481, 482], "read_restrict": [58, 474], "read_sb_data": 359, "read_som": 359, "read_str": [167, 475, 478], "read_strdict": [481, 482], "read_text": [250, 251, 252, 253, 258, 296, 422, 473, 474, 478, 483], "read_token": 331, "read_until": 359, "read_var": 483, "read_very_eag": 359, "read_very_lazi": 359, "read_windows_registri": 276, "readabl": [5, 85, 92, 101, 102, 103, 106, 117, 120, 133, 149, 151, 155, 160, 167, 176, 190, 191, 205, 230, 243, 245, 258, 267, 268, 283, 288, 293, 299, 303, 304, 307, 310, 319, 333, 338, 342, 344, 347, 348, 349, 369, 377, 414, 426, 435, 455, 463, 464, 466, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "readal": [258, 472, 477, 483], "readcd": 468, "readconsol": 483, "readdir": [293, 478], "readelf": [98, 483], "reader": [91, 99, 103, 106, 109, 126, 136, 149, 158, 160, 170, 175, 196, 200, 202, 205, 225, 242, 250, 253, 258, 271, 272, 283, 288, 292, 299, 333, 337, 347, 387, 399, 410, 413, 414, 415, 416, 417, 428, 434, 455, 465, 467, 470, 472, 478, 483], "readermod": 288, "readerror": [358, 483], "readexact": [136, 479, 483], "readfil": 483, "readfp": [167, 276, 469, 473, 474, 483], "readfram": [117, 349, 401], "readfunc": 157, "readi": [33, 64, 80, 92, 101, 102, 132, 133, 136, 144, 170, 176, 186, 190, 242, 245, 258, 269, 283, 328, 329, 337, 341, 366, 381, 416, 417, 462, 465, 475, 476, 478, 483], "readili": [102, 283, 359, 477, 483], "readinto": [7, 149, 242, 258, 299, 468, 476, 478, 483], "readinto1": [258, 478], "readlin": [24, 34, 66, 68, 79, 84, 95, 100, 109, 126, 136, 137, 140, 143, 151, 155, 158, 170, 188, 190, 204, 207, 213, 218, 223, 225, 248, 254, 258, 268, 278, 293, 296, 297, 299, 315, 331, 338, 363, 369, 378, 382, 389, 395, 399, 421, 422, 428, 438, 440, 443, 446, 447, 448, 455, 456, 462, 463, 464, 465, 467, 468, 469, 475, 477, 480, 483], "readlink": [293, 296, 476, 481, 482, 483], "readm": [188, 223, 247, 258, 296, 456, 460, 461, 462, 475, 479, 480, 483], "readmodul": [312, 472, 483], "readmodule_ex": [312, 472, 483], "readon": [2, 43, 58, 68, 248, 332, 340, 344, 376, 410, 411, 468, 474, 483], "readplist": [468, 477, 480, 483], "readplistfrombyt": [477, 480, 483], "readplistfromstr": 468, "readrc": [297, 479, 483], "readthedoc": [71, 251, 407, 467], "readtransport": [126, 133, 480, 483], "readuntil": [136, 478, 479, 483], "readv": [293, 476, 478, 480, 483], "readwrit": 483, "ready_to_read": 107, "ready_to_writ": 107, "reak": 297, "real": [15, 47, 59, 68, 72, 76, 85, 87, 93, 102, 103, 110, 144, 153, 154, 157, 169, 176, 191, 193, 200, 205, 213, 225, 226, 248, 250, 262, 288, 289, 293, 308, 319, 322, 324, 331, 333, 334, 340, 341, 343, 344, 345, 352, 353, 354, 366, 369, 388, 389, 390, 413, 427, 431, 435, 440, 461, 467, 468, 469, 474, 475, 476, 479, 483], "real_max_memus": 362, "real_numb": 431, "real_person": 413, "real_quick_ratio": 190, "real_valu": 244, "realis": 462, "realist": [84, 348, 411, 466, 467], "realiti": [73, 183, 292, 337, 395, 427], "realiz": [79, 208, 297, 467, 468, 483], "realli": [49, 63, 72, 75, 77, 85, 92, 95, 102, 103, 106, 109, 183, 191, 200, 203, 205, 271, 283, 288, 293, 328, 344, 352, 365, 366, 384, 387, 413, 428, 435, 436, 441, 462, 463, 464, 465, 466, 467, 470, 474, 479, 483], "realloc": [9, 42, 54, 73, 177, 466, 479, 483], "realm": [110, 208, 395, 483], "realnam": [209, 483], "realpart": 440, "realpath": [293, 294, 296, 461, 472, 481, 483], "realtim": 348, "realtime_priority_class": 348, "ream": 468, "reap": [132, 483], "reap_children": 362, "reap_thread": 362, "rearrag": 483, "rearrang": [452, 462, 465, 467, 469, 482, 483], "reason": [22, 23, 33, 42, 46, 47, 49, 51, 63, 73, 76, 84, 85, 92, 94, 95, 101, 102, 103, 106, 109, 110, 115, 139, 141, 151, 155, 177, 181, 183, 186, 191, 193, 194, 196, 213, 216, 230, 241, 242, 245, 247, 248, 250, 267, 268, 269, 270, 271, 292, 293, 299, 305, 308, 314, 332, 334, 337, 341, 344, 352, 358, 359, 362, 364, 365, 366, 369, 384, 386, 388, 393, 395, 425, 426, 427, 428, 432, 464, 465, 467, 470, 475, 476, 477, 478, 483], "reassembl": 133, "reassign": [10, 42, 63, 76, 307, 348, 386, 402, 474, 481, 483], "reassoci": 293, "reassur": 77, "reattach": 376, "reattempt": 332, "rebas": 483, "rebind": [85, 227, 436, 466, 483], "reboot": [283, 296, 477], "rebound": [250, 429, 436], "rebuild": [73, 163, 475, 483], "rebuilt": [276, 476, 478, 483], "rec": [96, 314, 411, 413], "rec_len": 475, "recal": [102, 247], "recalc": 93, "recalcul": [93, 267, 425], "recap": 93, "recast": [261, 475], "reccontrol": 295, "receiv": [5, 23, 33, 45, 49, 67, 68, 72, 73, 76, 84, 95, 101, 110, 115, 120, 126, 132, 133, 136, 138, 151, 155, 158, 167, 176, 190, 213, 225, 235, 242, 243, 244, 245, 247, 248, 259, 267, 268, 269, 283, 288, 295, 299, 305, 309, 314, 322, 329, 332, 333, 335, 337, 338, 341, 348, 353, 359, 365, 376, 381, 388, 395, 400, 410, 411, 413, 414, 415, 420, 426, 427, 429, 430, 462, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "recent": [73, 76, 84, 85, 89, 93, 94, 95, 96, 99, 100, 102, 103, 109, 114, 120, 125, 132, 144, 151, 160, 167, 169, 176, 186, 188, 193, 211, 214, 225, 226, 234, 247, 248, 255, 259, 267, 269, 283, 284, 293, 295, 296, 297, 299, 307, 314, 319, 335, 337, 340, 341, 344, 345, 347, 348, 352, 362, 375, 381, 382, 384, 387, 388, 389, 390, 394, 400, 422, 427, 428, 429, 430, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "recept": [126, 133, 136], "reciev": 191, "recip": [68, 85, 94, 102, 110, 147, 160, 182, 190, 200, 224, 250, 275, 290, 293, 298, 315, 330, 344, 352, 413, 454, 474, 475, 483], "recipi": [133, 200, 208, 209, 335, 338, 426], "reciproc": 343, "recit": 106, "reclaim": [73, 75, 250, 386], "reclam": 63, "recod": 5, "recogn": [68, 73, 85, 93, 99, 103, 106, 120, 155, 158, 167, 177, 187, 191, 196, 203, 218, 228, 235, 249, 250, 262, 266, 276, 282, 292, 293, 297, 299, 319, 331, 336, 345, 362, 366, 369, 377, 386, 394, 395, 416, 435, 436, 461, 462, 470, 475, 476, 477, 478, 483], "recognis": [213, 268, 302, 331, 340, 428, 483], "recognit": 276, "recogniz": [42, 161, 186, 483], "recombin": [141, 476], "recommend": [5, 33, 42, 45, 63, 64, 68, 72, 73, 75, 76, 85, 91, 94, 95, 101, 108, 109, 120, 132, 133, 139, 158, 167, 173, 176, 181, 183, 186, 193, 196, 225, 230, 235, 242, 245, 247, 248, 250, 255, 262, 267, 275, 288, 293, 295, 299, 308, 314, 319, 324, 331, 332, 337, 338, 340, 341, 348, 352, 358, 365, 366, 369, 384, 386, 388, 394, 410, 411, 415, 416, 422, 425, 428, 432, 435, 456, 461, 462, 464, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "recompil": [72, 79, 163, 250, 462, 465, 469, 475, 478, 479], "recomput": [101, 328, 329, 333, 366, 477, 483], "reconfigur": [225, 258, 480, 483], "reconnect": [242, 478, 483], "reconstitut": [267, 299], "reconstruct": [258, 299, 307, 378, 407, 483], "reconstructor": 299, "record": [31, 61, 68, 75, 78, 92, 93, 94, 95, 101, 102, 104, 109, 155, 160, 163, 176, 177, 178, 184, 185, 186, 197, 203, 212, 251, 255, 259, 267, 269, 271, 279, 292, 293, 295, 299, 308, 309, 340, 342, 344, 347, 362, 384, 385, 386, 388, 389, 400, 422, 432, 440, 445, 462, 465, 466, 467, 468, 469, 475, 476, 477, 478, 481, 483], "record_attr_dict": 269, "record_factori": [102, 267], "record_foo_seen": 292, "record_numb": 475, "record_original_stdout": 362, "records_ro": 255, "recount": 186, "recov": [158, 190, 221, 352, 397, 415, 469, 474, 475], "recover": [212, 415], "recoveri": [201, 248, 395, 431], "recreat": [94, 158, 190, 298, 337, 394, 399, 428, 476, 480, 483], "rect": [154, 176, 468], "rectangl": [73, 92, 177, 181], "rectangular": [92, 384], "recur": 376, "recurs": [22, 27, 32, 33, 61, 68, 73, 85, 95, 112, 142, 151, 163, 167, 170, 181, 190, 191, 193, 196, 200, 205, 213, 216, 226, 231, 250, 252, 262, 283, 293, 296, 297, 299, 302, 307, 308, 313, 321, 330, 332, 342, 352, 358, 365, 384, 386, 388, 395, 412, 413, 422, 428, 429, 432, 436, 440, 462, 463, 464, 465, 466, 468, 474, 475, 477, 478, 479, 480, 481, 483], "recursinginfinitelyerror": 483, "recursion_crit": 483, "recursion_depth": [473, 482, 483], "recursion_limit": [472, 473, 483], "recursion_remain": 473, "recursion_rit": 472, "recursionerror": [23, 122, 213, 262, 299, 307, 352, 443, 478, 479, 483], "recursive_funct": 96, "recursive_repr": [23, 321, 475, 483], "recv": [102, 107, 126, 283, 327, 329, 333, 337, 338, 341, 362, 369, 469, 478, 483], "recv_byt": 283, "recv_bytes_into": 283, "recv_fd": [337, 482], "recv_into": [126, 337, 341, 467, 469, 483], "recv_json": 102, "recv_timeout": 102, "recvfd": 483, "recvfrom": [126, 337, 369, 478, 483], "recvfrom_into": [126, 337, 467, 469], "recvmsg": [337, 476, 478], "recvmsg_into": [337, 476], "recycl": [115, 365, 483], "red": [79, 80, 92, 94, 101, 102, 106, 108, 147, 150, 160, 177, 211, 230, 240, 261, 318, 343, 344, 369, 376, 384, 402, 426, 441, 449, 452, 465, 466, 471, 472, 473, 474, 479, 483], "redact": 475, "reddi": [473, 480, 483], "redefin": [85, 144, 161, 250, 338, 428, 465, 468, 483], "redefinit": [250, 428, 483], "redemo": 483, "redesign": [468, 469, 477], "redhat": 483, "redic": 5, "redirect": [7, 63, 68, 86, 101, 102, 110, 133, 137, 169, 242, 243, 245, 250, 267, 333, 348, 352, 395, 399, 455, 458, 462, 477, 478, 479, 480, 483], "redirect_request": 395, "redirect_stderr": [169, 478, 483], "redirect_stdout": [169, 477, 478], "redirector": [399, 480, 483], "redisplay": [177, 320, 465], "redistribut": [426, 483], "redistributor": [355, 469], "redo": [177, 247, 483], "redraw": 92, "redrawln": 177, "redrawn": [92, 177, 384], "redrawwin": 177, "reduc": [42, 56, 75, 85, 95, 103, 108, 112, 133, 177, 183, 186, 226, 235, 247, 261, 293, 299, 308, 328, 341, 344, 362, 365, 413, 421, 435, 456, 461, 462, 464, 465, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "reduce_someclass": 299, "reducer_overrid": [299, 481, 483], "reduct": [39, 68, 172, 298, 344, 474, 476, 483], "reductionist": 106, "redund": [73, 270, 319, 344, 386, 424, 436, 464, 469, 483], "ree": 483, "reedi": [109, 465, 472, 473, 478, 479, 480, 481, 482, 483], "reenabl": 469, "reenter": 369, "reentranc": [68, 118, 169, 316, 483], "reentrant": [68, 258, 315, 316, 365, 477, 483], "rees": 483, "ref": [5, 34, 35, 63, 67, 78, 177, 402, 455, 456, 463, 469, 472, 477, 481, 483], "ref_api": 362, "refactor": [87, 95, 112, 388, 466, 477, 478, 479, 480, 483], "refactoringtool": 483, "refchild": 410, "refcnt": [52, 472], "refcount": [9, 33, 63, 100, 352, 362, 467, 483], "refcount_test": 362, "refer": [0, 5, 7, 9, 11, 12, 13, 17, 19, 22, 23, 24, 26, 27, 28, 29, 31, 33, 34, 35, 36, 39, 42, 45, 49, 50, 54, 55, 58, 59, 60, 64, 66, 67, 68, 71, 72, 74, 76, 77, 78, 84, 87, 93, 99, 100, 101, 102, 106, 110, 115, 118, 120, 129, 133, 136, 137, 139, 141, 142, 144, 158, 164, 167, 170, 177, 183, 185, 191, 205, 212, 213, 215, 222, 225, 226, 227, 228, 230, 233, 235, 239, 240, 243, 245, 247, 250, 251, 253, 255, 258, 259, 262, 267, 268, 269, 271, 273, 278, 288, 293, 297, 298, 299, 302, 307, 313, 314, 319, 321, 324, 329, 332, 333, 334, 337, 344, 345, 347, 352, 356, 361, 362, 365, 366, 368, 375, 376, 377, 381, 385, 386, 388, 394, 395, 400, 402, 405, 410, 411, 415, 417, 421, 422, 425, 427, 428, 429, 433, 434, 435, 436, 440, 441, 445, 449, 450, 455, 456, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "referenc": [5, 7, 13, 60, 63, 67, 73, 75, 85, 101, 106, 120, 139, 167, 179, 191, 225, 226, 247, 255, 283, 293, 299, 319, 344, 351, 402, 410, 428, 461, 463, 464, 465, 468, 469, 470, 476, 477, 483], "referenceerror": [23, 213, 402, 450, 463, 464], "referencetyp": [402, 483], "referendum": 446, "referenti": [299, 483], "refin": [85, 480, 483], "refleak": [362, 474, 483], "reflect": [26, 32, 65, 68, 85, 102, 117, 120, 177, 183, 193, 215, 225, 226, 247, 250, 255, 284, 292, 293, 308, 320, 337, 340, 341, 344, 347, 352, 369, 384, 385, 386, 405, 411, 421, 427, 428, 429, 455, 468, 474, 475, 476, 478, 481, 482, 483], "reflex": 430, "reflink": [215, 293], "refold": [201, 208, 476], "refold_head": 208, "refold_sourc": [201, 208, 476], "reformat": [247, 271, 292, 465, 483], "refresh": [92, 160, 177, 288, 369, 376, 467, 482, 483], "refus": [25, 103, 212, 213, 272, 288, 330, 335, 337, 341, 358, 422, 472, 483], "reg_binari": [405, 483], "reg_dword": 405, "reg_dword_big_endian": 405, "reg_dword_little_endian": 405, "reg_expand_sz": 405, "reg_full_resource_descriptor": 405, "reg_link": 405, "reg_multi_sz": [405, 483], "reg_non": 405, "reg_qword": [405, 479, 483], "reg_qword_little_endian": 405, "reg_resource_list": 405, "reg_resource_requirements_list": 405, "reg_sz": 405, "regard": [63, 100, 101, 169, 205, 226, 235, 269, 293, 340, 344, 348, 353, 383, 410, 413, 426, 461, 483], "regardless": [9, 24, 33, 34, 41, 59, 64, 94, 120, 139, 169, 177, 183, 186, 208, 220, 247, 250, 258, 261, 262, 302, 314, 333, 334, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 355, 376, 384, 388, 400, 403, 412, 425, 430, 432, 435, 455, 461, 474, 475, 476, 477, 478, 480, 483], "regebro": [469, 483], "regen": [68, 456, 483], "regener": [201, 311, 432, 456, 469, 474, 478, 479, 483], "regex": [106, 163, 220, 266, 302, 319, 359, 388, 463, 467, 468, 475, 477, 480, 483], "regexflag": [211, 319, 473, 480, 483], "regexp": [362, 475, 483], "region": [177, 247, 278, 282, 293, 319, 369, 376, 384, 440, 468, 471, 483], "regist": [13, 22, 27, 33, 34, 59, 61, 63, 68, 73, 76, 84, 85, 87, 109, 110, 116, 120, 126, 128, 132, 133, 136, 140, 158, 161, 167, 169, 193, 197, 203, 208, 214, 225, 226, 250, 258, 267, 276, 283, 289, 293, 298, 299, 302, 314, 315, 320, 328, 329, 332, 333, 337, 341, 344, 352, 362, 369, 376, 384, 386, 388, 395, 400, 402, 403, 406, 410, 413, 415, 420, 421, 427, 428, 430, 432, 461, 462, 463, 465, 466, 468, 469, 472, 473, 474, 475, 476, 477, 478, 480, 481, 483], "register_adapt": 340, "register_archive_format": [332, 475], "register_at_fork": [59, 293, 480, 483], "register_callback": [353, 483], "register_convert": 340, "register_defect": 208, "register_dialect": 175, "register_error": [158, 225, 258, 344, 465], "register_funct": [419, 420, 480, 483], "register_inst": 420, "register_introspection_funct": 420, "register_multicall_funct": [419, 420], "register_namespac": [413, 469, 475], "register_optionflag": 193, "register_shap": 384, "register_unpack_format": 332, "registerdomimplement": 410, "registerresult": 388, "registr": [33, 59, 161, 169, 293, 299, 329, 395, 405, 420, 468, 483], "registri": [14, 23, 34, 64, 68, 158, 167, 175, 195, 197, 203, 226, 250, 259, 269, 276, 299, 303, 341, 352, 354, 386, 395, 400, 404, 406, 413, 458, 462, 468, 469, 479, 482, 483], "regloadkey": 405, "regress": [68, 78, 85, 187, 193, 254, 262, 343, 469, 477, 478, 481, 483], "regrtest": [96, 362, 382, 465, 469, 483], "regsub": 467, "regtyp": 358, "regular": [7, 11, 33, 34, 42, 63, 68, 76, 84, 85, 87, 93, 95, 96, 102, 108, 120, 133, 160, 161, 163, 167, 169, 176, 181, 186, 193, 200, 220, 225, 226, 234, 243, 247, 254, 255, 266, 268, 293, 299, 308, 311, 328, 333, 335, 337, 341, 342, 343, 344, 345, 352, 358, 359, 362, 363, 384, 386, 388, 395, 400, 428, 429, 430, 435, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "regular_funct": 225, "rei": 466, "reid": [469, 475], "reifschneid": [463, 465, 466, 467, 469], "reign": 266, "reilli": [106, 319, 367, 454, 464, 478, 483], "reimplement": [76, 388, 464, 477, 478, 479, 480, 483], "reimport": 483, "reinartz": 483, "reingold": [150, 183], "reinhardt": 464, "reiniti": [63, 483], "reinitialis": 432, "reinsert": [362, 376, 469, 471], "reinstal": [42, 461], "reinstat": [267, 483], "reinterpret_cast": 483, "reintroduc": [435, 483], "reitz": 453, "rejeb": 466, "reject": [7, 99, 103, 106, 167, 243, 248, 275, 318, 358, 435, 436, 462, 469, 477, 479, 483], "rejoin": 208, "rekey": 341, "rel_tol": [154, 275, 478], "relat": [2, 33, 42, 45, 63, 68, 79, 84, 85, 93, 95, 96, 101, 102, 103, 106, 108, 109, 112, 113, 133, 139, 153, 158, 167, 169, 177, 181, 183, 190, 191, 193, 194, 196, 200, 205, 207, 208, 209, 211, 213, 215, 217, 225, 228, 235, 241, 245, 255, 257, 259, 261, 265, 266, 267, 269, 270, 271, 278, 280, 281, 283, 290, 293, 296, 298, 299, 302, 308, 314, 315, 319, 320, 324, 325, 331, 332, 333, 337, 340, 341, 343, 344, 345, 348, 352, 354, 358, 362, 366, 369, 375, 376, 380, 384, 385, 388, 394, 399, 400, 405, 407, 412, 413, 415, 421, 422, 425, 428, 430, 431, 433, 435, 436, 450, 455, 461, 462, 463, 464, 465, 466, 469, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "relationship": [68, 93, 133, 161, 183, 193, 343, 344, 352, 369, 380, 410, 426, 428, 467, 483], "relative_modul": 436, "relative_to": [296, 474, 483], "relativecr": [102, 267], "relax": [95, 183, 244, 475, 482, 483], "relay": [480, 483], "releas": [5, 7, 9, 28, 34, 35, 36, 42, 45, 57, 58, 61, 63, 64, 68, 72, 73, 75, 76, 77, 80, 84, 85, 93, 96, 102, 103, 110, 115, 132, 135, 138, 139, 147, 169, 176, 177, 191, 215, 234, 235, 236, 255, 267, 271, 283, 284, 293, 299, 303, 314, 333, 337, 340, 344, 352, 362, 365, 369, 371, 382, 384, 386, 400, 413, 422, 426, 428, 436, 455, 456, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 484], "release_db_connect": 169, "release_lock": [470, 474], "release_resourc": 169, "release_special_resourc": 169, "release_url": 307, "releasebufferproc": [57, 63, 483], "releaselevel": [352, 469, 471], "relev": [63, 73, 75, 84, 85, 92, 95, 96, 99, 101, 102, 122, 167, 186, 193, 194, 208, 215, 242, 245, 251, 262, 267, 268, 269, 288, 292, 293, 302, 341, 344, 348, 355, 356, 362, 388, 414, 423, 425, 461, 462, 464, 466, 474, 476, 477, 478, 479, 482, 483], "reli": [13, 51, 73, 76, 85, 93, 94, 100, 102, 133, 151, 161, 181, 183, 225, 250, 255, 267, 276, 283, 292, 293, 299, 302, 330, 332, 352, 362, 364, 365, 366, 386, 388, 427, 428, 429, 432, 461, 462, 465, 466, 467, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "reliabl": [59, 124, 132, 133, 139, 158, 161, 186, 251, 283, 333, 348, 403, 415, 427, 432, 461, 465, 469, 475, 476, 477, 478, 479, 480, 483], "reliable_datagram_socket": 476, "relianc": 483, "relicens": 466, "relief": [369, 376], "relink": 79, "relinquish": [169, 293, 365, 366], "reload": [31, 85, 94, 112, 243, 247, 250, 352, 362, 382, 432, 450, 465, 470, 474, 477, 480, 483], "reloc": [54, 468, 483], "relpath": [294, 296, 468, 474, 483], "remahl": 468, "remain": [5, 13, 33, 42, 63, 73, 76, 85, 94, 95, 102, 106, 120, 139, 153, 161, 169, 176, 177, 183, 186, 190, 191, 193, 194, 202, 203, 205, 208, 209, 213, 218, 225, 226, 247, 248, 250, 268, 271, 275, 283, 292, 293, 295, 297, 299, 312, 322, 324, 333, 337, 340, 344, 345, 348, 352, 362, 364, 365, 376, 384, 385, 386, 388, 394, 400, 426, 427, 428, 432, 435, 436, 442, 455, 456, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "remaind": [47, 75, 106, 155, 183, 186, 208, 268, 275, 292, 319, 366, 369, 430, 449, 468, 480, 483], "remainder_near": 186, "remap": 471, "remark": [271, 384, 462, 466, 483], "rembermer2buy": 103, "rembrandt": 160, "remedi": 481, "rememb": [73, 85, 92, 95, 101, 102, 106, 159, 193, 225, 247, 261, 283, 319, 340, 362, 369, 376, 395, 402, 410, 412, 436, 441, 461, 462, 463, 467, 468, 469, 471, 475, 476], "remember2buy": 103, "remi": 483, "remind": [85, 344, 441, 470, 483], "remot": [68, 96, 101, 102, 121, 126, 133, 164, 170, 212, 242, 245, 248, 266, 267, 268, 269, 337, 341, 355, 359, 375, 395, 403, 405, 414, 418, 419, 464, 475, 478, 479, 480, 481, 482, 483], "remote_addr": [126, 133], "remote_command": 331, "remote_host": 126, "remote_port": 126, "remotedisconnect": [242, 478, 483], "remoteerror": 283, "remotesign": 399, "remov": [5, 10, 22, 24, 26, 28, 31, 34, 35, 45, 49, 55, 63, 64, 66, 68, 73, 75, 76, 80, 84, 93, 94, 95, 101, 102, 103, 106, 110, 112, 120, 121, 132, 135, 137, 139, 142, 144, 149, 151, 155, 157, 158, 160, 161, 163, 167, 169, 177, 179, 183, 186, 191, 193, 194, 196, 200, 203, 205, 207, 208, 212, 213, 218, 225, 226, 234, 235, 236, 242, 243, 247, 248, 250, 251, 252, 255, 259, 262, 266, 267, 269, 271, 275, 281, 283, 292, 293, 296, 297, 299, 304, 305, 308, 313, 314, 319, 320, 325, 328, 329, 331, 332, 333, 334, 335, 340, 341, 344, 345, 352, 358, 359, 360, 362, 364, 376, 377, 382, 384, 385, 386, 388, 394, 395, 400, 402, 403, 405, 410, 412, 413, 421, 422, 423, 425, 426, 428, 430, 432, 436, 442, 449, 451, 452, 455, 456, 458, 462, 463, 464, 465, 466, 470, 472, 473, 474, 475, 476, 477, 483, 484], "remove_child_handl": 132, "remove_done_callback": [129, 139, 483], "remove_expon": 186, "remove_flag": 271, "remove_fold": 271, "remove_gray_shad": 87, "remove_head": [395, 477], "remove_histori": 320, "remove_history_item": 320, "remove_label": 271, "remove_mem_hook": 483, "remove_modul": 483, "remove_opt": [167, 292], "remove_pyc": 281, "remove_read": [126, 130], "remove_readon": 332, "remove_sect": 167, "remove_sequ": 271, "remove_signal_handl": [126, 130, 131], "remove_task": 236, "remove_thi": 319, "remove_var_callback": 483, "remove_writ": [126, 130], "removeattribut": 410, "removeattributen": 410, "removeattributenod": [410, 483], "removechild": [410, 462], "removedinsphinx40warn": 483, "removedir": [84, 293], "removefil": 483, "removefilt": [101, 267], "removehandl": [101, 102, 267, 388, 469], "removenameditem": 410, "removeprefix": [344, 482, 483], "removeresult": 388, "removesuffix": [344, 482, 483], "removexattr": [142, 293, 476], "renam": [13, 42, 58, 63, 76, 84, 102, 112, 142, 160, 213, 223, 247, 248, 252, 269, 271, 293, 296, 311, 328, 332, 342, 381, 388, 421, 452, 462, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 478, 479, 483], "renaud": [476, 483], "render": [102, 109, 189, 201, 338, 376, 381, 411, 428, 461, 465, 468, 469, 481, 483], "render_goodby": 170, "rendezv": [293, 475], "rendit": 177, "renegoti": [341, 469], "renew": 475, "renumb": [94, 248], "reobj": 220, "reopen": [101, 269, 299, 340, 359, 469, 479, 483], "reopenifneed": [269, 479], "reoprt": 319, "reorder": [85, 94, 413, 483], "reorder_attribut": 413, "reorgan": [184, 194, 463, 468, 471, 479, 481, 483], "reorganis": 462, "reorpt": 319, "repack": 345, "repaint": 177, "repair": [429, 461, 483], "repars": [293, 314, 413, 481, 483], "reparse_data_buff": 483, "repeat": [33, 54, 58, 63, 68, 79, 95, 103, 110, 112, 120, 155, 161, 176, 177, 183, 190, 197, 214, 225, 235, 247, 261, 266, 276, 283, 285, 292, 295, 297, 302, 308, 318, 319, 337, 340, 341, 344, 345, 347, 365, 367, 380, 381, 384, 386, 388, 395, 405, 406, 427, 428, 443, 455, 464, 465, 466, 468, 469, 475, 476, 477, 478, 479, 483], "repeat_on": 279, "repeatfunc": 261, "repertoir": [314, 335, 375, 468], "repetit": [106, 120, 149, 235, 261, 270, 275, 319, 344, 381, 388, 400, 428, 430, 434, 464, 483], "repl": [34, 114, 123, 191, 319, 352, 455, 472, 481, 483], "replac": [22, 24, 31, 33, 34, 42, 56, 59, 60, 61, 63, 64, 68, 71, 73, 84, 85, 89, 92, 93, 94, 95, 100, 102, 103, 109, 112, 120, 132, 139, 151, 157, 158, 164, 173, 176, 177, 179, 181, 183, 190, 191, 193, 196, 197, 202, 205, 206, 209, 211, 213, 214, 218, 225, 229, 235, 250, 251, 252, 255, 258, 266, 267, 268, 271, 272, 276, 279, 283, 292, 293, 296, 297, 307, 308, 315, 318, 319, 320, 321, 331, 332, 333, 340, 341, 344, 345, 352, 358, 362, 364, 365, 366, 368, 369, 371, 375, 376, 378, 382, 384, 385, 386, 387, 388, 394, 395, 399, 400, 410, 413, 415, 417, 421, 422, 425, 428, 430, 433, 435, 436, 449, 451, 455, 456, 461, 462, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "replace_error": 158, "replace_head": [196, 205], "replace_history_entri": 320, "replace_history_item": 320, "replace_path": 279, "replace_paths_in_cod": 483, "replace_whitespac": 364, "replacechild": 410, "replacement_field": 435, "replacepackag": 279, "replay": 389, "repli": [183, 203, 245, 271, 283, 288, 335, 338, 395, 441, 483], "replic": [85, 95, 208, 283, 461, 466, 469, 483], "replstr": 64, "repo": 483, "report": [1, 7, 22, 33, 45, 61, 72, 73, 85, 99, 101, 104, 105, 106, 109, 120, 133, 151, 152, 166, 176, 177, 190, 191, 193, 196, 203, 205, 213, 216, 225, 233, 255, 259, 279, 283, 292, 293, 308, 314, 319, 328, 329, 333, 339, 341, 342, 344, 352, 362, 369, 380, 386, 388, 395, 400, 413, 415, 431, 455, 461, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 479, 481, 483], "report_": 193, "report_cdiff": [193, 466], "report_failur": 193, "report_full_closur": 216, "report_ndiff": [193, 466], "report_only_first_failur": 193, "report_partial_closur": 216, "report_start": 193, "report_success": 193, "report_udiff": [193, 466], "report_unexpected_except": 193, "reporthook": 395, "reporting_flag": 193, "reposit": [158, 258], "repositori": [68, 96, 250, 425, 460, 462, 463, 467, 469, 483, 484], "repr": [18, 23, 24, 49, 63, 64, 68, 75, 94, 96, 102, 108, 109, 112, 139, 176, 181, 182, 183, 191, 193, 211, 225, 242, 247, 254, 283, 314, 329, 337, 344, 345, 352, 362, 364, 378, 381, 385, 386, 389, 390, 425, 427, 428, 435, 436, 444, 446, 450, 452, 462, 463, 465, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483], "repr1": 321, "repr_textiowrapp": 321, "repr_typ": 321, "reprenum": [211, 473], "repres": [5, 6, 7, 9, 11, 13, 17, 20, 22, 25, 33, 39, 42, 45, 47, 55, 58, 60, 63, 64, 66, 68, 73, 77, 84, 85, 92, 94, 95, 96, 99, 102, 103, 106, 109, 110, 120, 133, 139, 144, 146, 151, 153, 158, 167, 176, 177, 183, 186, 191, 194, 197, 199, 201, 203, 205, 206, 208, 209, 213, 215, 221, 225, 242, 243, 244, 248, 250, 251, 252, 253, 255, 258, 259, 262, 266, 267, 268, 270, 271, 272, 275, 276, 281, 282, 283, 285, 288, 292, 293, 299, 304, 305, 307, 308, 314, 319, 321, 322, 325, 328, 332, 333, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 358, 359, 362, 365, 366, 369, 375, 376, 377, 381, 384, 386, 388, 397, 400, 405, 410, 411, 412, 413, 415, 416, 419, 420, 421, 422, 425, 426, 427, 428, 430, 432, 435, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "represent": [5, 7, 9, 23, 25, 26, 39, 41, 49, 58, 59, 63, 64, 68, 75, 76, 85, 96, 101, 109, 120, 121, 146, 158, 160, 167, 176, 177, 178, 182, 183, 186, 191, 196, 197, 201, 204, 205, 207, 212, 225, 242, 244, 245, 248, 250, 253, 259, 262, 266, 267, 271, 272, 275, 281, 283, 290, 293, 299, 307, 314, 321, 330, 337, 340, 344, 345, 346, 347, 352, 362, 366, 377, 381, 384, 386, 388, 408, 410, 413, 426, 428, 432, 445, 462, 466, 467, 468, 469, 471, 474, 475, 477, 478, 479, 481, 482, 483, 484], "reprfunc": [57, 63, 75], "reprlib": [23, 68, 182, 254, 452, 470, 483], "reprnam": 183, "reproduc": [68, 85, 110, 201, 234, 290, 348, 362, 395, 417, 426, 456, 475, 480, 481, 483], "reproduct": 426, "republ": 426, "req": [84, 110, 341, 389, 395, 475], "request": [2, 5, 23, 31, 33, 42, 43, 45, 49, 61, 63, 68, 76, 84, 85, 94, 95, 99, 100, 102, 109, 110, 120, 133, 139, 142, 151, 158, 160, 166, 169, 176, 177, 186, 197, 208, 212, 213, 215, 223, 225, 226, 230, 234, 241, 242, 243, 244, 245, 247, 248, 250, 254, 255, 256, 258, 271, 283, 288, 292, 293, 295, 299, 305, 307, 309, 314, 316, 322, 328, 331, 333, 334, 341, 344, 348, 352, 362, 366, 376, 384, 389, 392, 394, 396, 399, 405, 407, 410, 416, 417, 419, 420, 423, 428, 432, 436, 441, 451, 453, 461, 462, 463, 465, 466, 467, 468, 469, 472, 475, 476, 477, 478, 480, 481, 482, 483], "request_count": 160, "request_entity_too_larg": 241, "request_header_fields_too_larg": 241, "request_host": 395, "request_method": [110, 395, 407, 483], "request_queue_s": 338, "request_r": [396, 483], "request_text": 420, "request_timeout": 241, "request_uri": 407, "request_uri_too_long": 241, "request_vers": 245, "requestb": 395, "requested_range_not_satisfi": 241, "requestedexecutionlevel": 483, "requesthandl": 420, "requesthandlerclass": [245, 338, 407], "requestinterrupt": 102, "requestlin": 245, "requestr": 396, "requir": [5, 7, 23, 28, 33, 35, 42, 45, 51, 58, 59, 63, 64, 68, 71, 72, 73, 75, 76, 79, 84, 85, 89, 92, 93, 94, 95, 100, 101, 102, 106, 108, 109, 110, 112, 115, 118, 132, 138, 139, 149, 157, 158, 161, 167, 169, 170, 177, 181, 183, 184, 186, 189, 191, 193, 194, 195, 196, 200, 201, 202, 203, 207, 208, 212, 213, 221, 226, 228, 234, 235, 243, 245, 247, 248, 250, 252, 253, 255, 257, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 280, 281, 283, 288, 292, 293, 295, 299, 301, 305, 307, 308, 314, 319, 322, 328, 330, 332, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 356, 358, 361, 362, 365, 366, 369, 375, 376, 378, 381, 384, 385, 386, 387, 388, 394, 395, 397, 399, 405, 410, 413, 414, 415, 416, 417, 419, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 441, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "require_": 483, "require_int": 466, "required_on": 362, "requires_android_level": 483, "requires_bz2": 362, "requires_dist": 307, "requires_docstr": 362, "requires_fork": 483, "requires_freebsd_vers": 362, "requires_gzip": 362, "requires_hashdigest": 483, "requires_ieee_754": 362, "requires_limited_api": 362, "requires_linux_vers": 362, "requires_lzma": 362, "requires_mac_vers": 362, "requires_multiprocessing_queu": 483, "requires_python": [251, 307], "requires_resourc": 362, "requires_subprocess": 483, "requires_zlib": [362, 483], "requot": [196, 205], "rer": 483, "rerais": [23, 169, 191, 283, 344, 353, 427, 428, 483], "rerum": 103, "rerun": [432, 470, 483], "res": [34, 42, 45, 79, 103, 106, 139, 242, 283, 319, 337, 340, 483], "resampl": 343, "rescan": [158, 302], "reschedul": 139, "rescu": 213, "research": [69, 95, 426, 483], "reselect": 483, "resembl": [76, 94, 177, 225, 243, 293, 297, 331, 455, 464, 468, 469, 481, 483], "resent": [203, 209, 271, 335], "resent_cc": 209, "resent_to": 209, "resequenc": 475, "reserv": [28, 49, 61, 68, 94, 255, 259, 299, 314, 319, 322, 333, 339, 344, 365, 405, 410, 419, 422, 426, 428, 436, 443, 455, 463, 468, 470, 475, 480, 481, 483], "reserved_futur": 398, "reserved_keyword": 431, "reserved_microsoft": 398, "reserved_nc": 398, "reset": [17, 33, 59, 85, 94, 95, 110, 138, 144, 155, 157, 158, 160, 170, 177, 186, 190, 206, 212, 213, 214, 218, 240, 245, 247, 250, 267, 283, 293, 295, 301, 326, 328, 333, 337, 341, 344, 356, 358, 362, 365, 366, 375, 380, 384, 388, 400, 408, 412, 413, 416, 425, 427, 435, 464, 468, 475, 476, 477, 478, 483], "reset_cont": 241, "reset_mock": [389, 479, 483], "reset_peak": [382, 482], "reset_prog_mod": 177, "reset_shell_mod": 177, "reset_tzpath": 425, "resetbuff": 157, "resetid": [293, 483], "resetlocal": [266, 473, 474, 483], "resetopt": 375, "resetscreen": 384, "resetti": 177, "resetwarn": [400, 475], "reshap": 261, "reshuffl": 318, "resid": [102, 200, 230, 271, 293, 313, 322, 342, 432, 462, 483], "resign": 92, "resili": 483, "resist": [106, 235, 332, 463, 469, 476, 483], "resiz": [5, 9, 28, 42, 54, 56, 60, 64, 176, 177, 258, 278, 333, 344, 369, 375, 376, 384, 388, 478, 480, 483], "resize_term": 177, "resizemod": 384, "resizeterm": 177, "resolut": [63, 68, 75, 76, 85, 87, 93, 97, 100, 116, 118, 183, 214, 216, 225, 226, 232, 234, 245, 255, 293, 294, 295, 299, 308, 337, 344, 366, 386, 427, 428, 432, 440, 465, 467, 476, 477, 478, 479, 481, 482, 483], "resolv": [34, 68, 75, 85, 101, 102, 120, 128, 139, 167, 176, 183, 191, 193, 250, 251, 252, 255, 259, 267, 268, 292, 293, 296, 302, 308, 314, 332, 337, 348, 352, 385, 386, 388, 411, 412, 413, 415, 416, 417, 429, 455, 461, 464, 476, 477, 478, 479, 480, 481, 483], "resolve_attr": 291, "resolve_bas": [385, 428, 480, 483], "resolve_beneath": 483, "resolve_dotted_attribut": 466, "resolve_nam": [250, 302, 482, 483], "resolveent": [415, 416], "resort": [101, 184, 266, 267, 464], "resourc": [7, 23, 33, 63, 68, 84, 85, 91, 100, 110, 119, 120, 132, 133, 135, 138, 142, 169, 193, 212, 213, 226, 242, 248, 250, 251, 254, 257, 267, 280, 283, 293, 299, 302, 329, 332, 337, 341, 344, 352, 362, 365, 369, 376, 382, 388, 391, 394, 395, 398, 400, 405, 413, 416, 419, 428, 432, 455, 465, 467, 468, 469, 473, 475, 476, 479, 482, 483], "resource_nam": 362, "resource_path": [250, 253], "resource_shar": 483, "resource_track": 483, "resourcedeni": 362, "resourcehandl": 483, "resourceload": [250, 480, 483], "resourcemanag": 169, "resourceread": [250, 252, 253, 474, 480, 483], "resourcewarn": [23, 68, 125, 187, 213, 227, 293, 348, 362, 388, 400, 450, 475, 479, 483], "resp": [158, 266, 288, 307, 478], "respect": [5, 7, 22, 23, 31, 33, 34, 39, 47, 49, 64, 72, 73, 75, 76, 85, 93, 94, 101, 102, 103, 106, 108, 112, 120, 132, 135, 139, 141, 149, 151, 158, 163, 167, 176, 177, 183, 186, 191, 193, 194, 196, 208, 215, 225, 230, 243, 245, 250, 253, 258, 262, 267, 268, 269, 270, 275, 278, 283, 293, 299, 308, 309, 322, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 358, 365, 366, 375, 376, 384, 386, 388, 397, 411, 426, 428, 430, 432, 436, 455, 456, 462, 464, 466, 468, 470, 474, 475, 476, 477, 479, 480, 481, 482, 483], "respect_handler_level": [102, 269, 478, 483], "respond": [110, 242, 245, 247, 269, 313, 337, 341, 352, 369, 407, 419, 420, 469, 483], "respons": [5, 23, 33, 34, 45, 61, 63, 64, 68, 73, 76, 79, 93, 94, 95, 101, 102, 109, 110, 133, 135, 137, 155, 169, 177, 179, 183, 191, 196, 242, 243, 245, 248, 250, 254, 256, 266, 267, 288, 305, 314, 325, 335, 337, 338, 340, 341, 343, 347, 348, 358, 386, 388, 390, 393, 412, 419, 420, 421, 425, 426, 428, 430, 432, 441, 451, 461, 462, 465, 468, 469, 473, 475, 476, 477, 478, 480, 481, 483], "responseerror": 483, "responsenotreadi": 242, "ressembl": 200, "rest": [9, 64, 77, 85, 95, 100, 101, 102, 103, 106, 112, 120, 122, 128, 151, 161, 177, 186, 193, 213, 223, 226, 247, 267, 276, 292, 293, 302, 319, 323, 344, 362, 376, 378, 419, 427, 428, 431, 435, 436, 441, 462, 464, 465, 467, 468, 469, 470, 472, 474, 476, 477, 480, 482, 483], "restart": [33, 102, 177, 212, 247, 268, 297, 333, 361, 366, 468, 469, 478, 480, 481, 483], "restart_cmd": 102, "restart_ev": 353, "restat": 308, "restkey": 175, "reston": 426, "restor": [13, 17, 22, 23, 27, 33, 63, 75, 92, 102, 132, 158, 169, 170, 171, 177, 186, 190, 191, 243, 247, 255, 258, 266, 292, 299, 301, 319, 320, 324, 340, 348, 352, 358, 361, 362, 365, 376, 383, 384, 388, 400, 405, 428, 462, 464, 465, 467, 468, 474, 477, 480, 482, 483], "restore_env": 483, "restore_sign": 348, "restrict": [7, 33, 42, 58, 68, 73, 75, 76, 93, 100, 102, 106, 115, 120, 158, 176, 177, 183, 186, 190, 205, 223, 225, 230, 235, 247, 256, 257, 262, 283, 293, 298, 308, 312, 319, 337, 340, 341, 344, 345, 346, 348, 353, 354, 356, 365, 366, 386, 410, 413, 419, 420, 426, 427, 428, 430, 431, 435, 436, 455, 461, 463, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "restricted_load": 299, "restrictedunpickl": 299, "restructur": [307, 462, 463, 468, 483], "restructuredtext": [0, 68, 80, 103, 193, 483], "restval": 175, "restyp": [176, 467], "result": [5, 7, 9, 13, 23, 26, 31, 33, 34, 39, 42, 45, 47, 49, 53, 54, 58, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 78, 84, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 104, 106, 109, 117, 120, 122, 123, 125, 126, 129, 133, 135, 137, 138, 139, 141, 142, 144, 146, 151, 152, 158, 159, 160, 163, 166, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 196, 197, 199, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 215, 216, 225, 226, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 256, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 305, 307, 308, 309, 311, 318, 319, 321, 322, 324, 328, 331, 332, 333, 335, 337, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 390, 395, 397, 400, 403, 405, 410, 411, 413, 416, 417, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 435, 436, 441, 443, 446, 450, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "resultclass": 388, "resulttokenwithmetadata": 431, "resulttyp": 483, "resum": [33, 95, 133, 139, 169, 177, 178, 191, 255, 283, 293, 297, 299, 314, 353, 361, 365, 427, 428, 430, 464, 465, 466, 467, 473, 483], "resume_read": [130, 133, 480, 483], "resume_writ": [130, 133], "resumpt": [293, 353, 479, 483], "resund": 101, "resurrect": [13, 22, 27, 352, 362, 365, 428, 475, 482, 483], "resynchron": [109, 476], "ret": 407, "retain": [73, 120, 167, 169, 177, 186, 190, 196, 205, 208, 213, 247, 250, 255, 261, 267, 271, 293, 331, 340, 341, 384, 394, 419, 426, 428, 430, 435, 476, 477, 479, 481, 483], "retcod": 348, "retir": [463, 483], "retr": [223, 305], "retrain": 470, "retrbinari": 223, "retri": [68, 106, 110, 213, 269, 293, 328, 329, 333, 337, 341, 348, 373, 395, 429, 441, 464, 465, 469, 473, 483], "retriev": [5, 11, 23, 33, 39, 45, 49, 54, 56, 61, 63, 68, 72, 73, 75, 84, 85, 92, 93, 95, 106, 110, 139, 151, 166, 167, 171, 176, 177, 181, 184, 189, 196, 203, 207, 208, 225, 226, 234, 241, 242, 243, 247, 248, 258, 265, 266, 268, 271, 283, 293, 299, 302, 304, 305, 315, 319, 322, 328, 330, 332, 340, 344, 345, 352, 365, 382, 386, 395, 405, 413, 427, 428, 430, 436, 455, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 480, 481, 482, 483], "retriv": 483, "retrlin": 223, "retryabl": 293, "retrycancel": 373, "retryfactor": 269, "retrymax": 269, "retrystart": 269, "return": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 78, 79, 84, 86, 87, 92, 94, 95, 96, 98, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 114, 115, 116, 117, 118, 120, 122, 125, 126, 130, 132, 133, 135, 136, 137, 138, 139, 141, 144, 146, 147, 148, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 166, 167, 169, 170, 172, 173, 177, 178, 179, 181, 183, 184, 186, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 225, 226, 227, 228, 230, 231, 233, 234, 235, 236, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 287, 288, 289, 291, 292, 293, 295, 296, 297, 299, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 355, 356, 358, 359, 361, 362, 364, 365, 366, 367, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 394, 395, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 433, 435, 440, 441, 443, 449, 450, 451, 452, 455, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "return_annot": 255, "return_const": [191, 474, 483], "return_except": [134, 139, 483], "return_gener": [191, 473, 483], "return_ok": 243, "return_self": 386, "return_stmt": [431, 436], "return_typ": 431, "return_valu": [68, 144, 187, 191, 390, 475, 477, 479, 483], "return_when": [139, 166], "returncod": [132, 133, 137, 348, 478, 481, 483], "returnfram": 144, "returns_egg": 386, "returntyp": 386, "retval": [297, 353, 463], "reunion": 200, "reus": [73, 76, 80, 128, 138, 158, 166, 169, 176, 184, 193, 214, 226, 250, 292, 293, 319, 337, 338, 341, 347, 358, 362, 364, 365, 427, 432, 435, 467, 474, 475, 477, 479, 480, 481, 482, 483], "reusabl": [68, 114, 315, 386, 477], "reuse_address": [126, 136, 473, 479, 480, 481, 482, 483], "reuse_port": [126, 136, 337], "reuseaddr": 483, "reuseport": 483, "rev": 440, "revamp": [469, 475], "reveal": [93, 96, 183, 386, 468, 475, 483], "reveal_typ": [386, 473, 483], "revel": 472, "revenu": 426, "revers": [34, 38, 68, 73, 80, 92, 93, 95, 108, 109, 121, 141, 158, 160, 161, 169, 177, 181, 183, 186, 191, 211, 214, 225, 236, 255, 259, 261, 283, 289, 293, 308, 314, 319, 331, 340, 344, 378, 382, 385, 386, 388, 394, 428, 440, 442, 450, 462, 465, 467, 468, 469, 470, 471, 472, 475, 476, 477, 478, 479, 480, 481, 483, 484], "reverse_ord": 308, "reverse_point": [259, 478, 483], "revert": [102, 170, 242, 243, 324, 358, 362, 455, 469, 476, 479, 483], "review": [110, 169, 235, 340, 465, 470, 479, 481, 483], "revis": [33, 68, 109, 110, 347, 408, 426, 462, 467, 468, 471, 479, 480, 483], "revisit": [347, 483], "revoc": [341, 477, 483], "revok": 328, "revolv": 193, "rewind": [117, 258, 349, 401], "reword": 483, "rework": [68, 213, 288, 463, 464, 465, 467, 469, 475, 479, 483, 484], "rewrap": [201, 226], "rewrit": [100, 200, 218, 293, 378, 462, 465, 467, 469, 470, 478, 481, 483], "rewrite_prefix": 413, "rewritenam": 122, "rewritten": [42, 135, 193, 194, 235, 283, 436, 462, 463, 464, 465, 468, 469, 471, 475, 476, 477, 479, 480, 481, 483], "rewrot": [462, 465, 483], "rexec": 465, "rexx": 466, "reykjavik": 467, "reynold": 319, "rezinski": 84, "rf": [85, 331, 435, 483], "rfactor": 141, "rfc": [68, 101, 102, 106, 110, 126, 143, 146, 158, 175, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 207, 208, 209, 223, 230, 235, 237, 241, 242, 243, 244, 245, 248, 254, 256, 259, 262, 266, 269, 271, 272, 288, 305, 317, 327, 335, 337, 341, 346, 347, 359, 366, 393, 394, 395, 407, 408, 419, 451, 462, 464, 466, 467, 468, 469, 472, 475, 476, 478, 479, 480, 481, 482, 483], "rfc2047": 483, "rfc2087": 248, "rfc2109": 243, "rfc2109_as_netscap": 243, "rfc2231": 483, "rfc2822": [464, 483], "rfc2965": 243, "rfc4122": 483, "rfc5424": 68, "rfc6555": 126, "rfc8018": 235, "rfc822": [196, 197, 204, 205, 206, 207, 248, 464, 466], "rfc_4122": 398, "rfcomm": 483, "rfcs": [151, 158, 194, 196, 201, 202, 203, 205, 208, 209, 305, 465, 478, 483], "rfile": [245, 338], "rfind": [102, 278, 344, 468, 475, 476, 478, 483], "rfs": 212, "rg": 466, "rgb": [92, 94, 162, 177, 206, 249, 292, 369, 384, 449, 477, 483], "rgb_to_hl": [162, 483], "rgb_to_hsv": 162, "rgb_to_yiq": 162, "rgba": 449, "rgbimg": 468, "rgen": [466, 483], "rgensen": 483, "rgid": 293, "rglob": [142, 296, 473, 474, 483], "rgs": 297, "rh": 102, "rhapsodi": 483, "rhat": 467, "rhel": [473, 480, 483], "rhel7": 473, "rhel8": 483, "rhode": [482, 483], "rhoncus": 149, "rhs": [191, 476], "rhythm": 464, "ric": [109, 473, 476, 477, 481, 483], "rica": 413, "riccardo": 483, "ricciardi": 465, "rich": [63, 64, 68, 75, 112, 160, 197, 225, 226, 291, 369, 375, 419, 428, 430, 432, 470, 475, 480, 482, 483, 484], "richard": [465, 467, 468, 476, 477, 483], "richcmpfunc": [57, 63, 75], "richer": 479, "richest": 200, "richi": 465, "richter": 468, "rick": 483, "rid": [77, 463, 483], "ridg": 369, "ridicul": 193, "right": [7, 15, 42, 47, 64, 68, 72, 73, 85, 92, 95, 102, 103, 106, 109, 112, 122, 141, 144, 146, 151, 155, 158, 160, 169, 176, 177, 183, 186, 190, 191, 193, 196, 213, 216, 225, 226, 235, 247, 248, 255, 275, 288, 289, 292, 293, 295, 299, 302, 308, 314, 319, 330, 337, 341, 344, 345, 364, 369, 374, 375, 376, 384, 388, 389, 400, 403, 404, 411, 425, 426, 427, 428, 430, 431, 435, 436, 452, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 477, 479, 480, 481, 483], "right_list": 216, "right_on": 216, "right_volum": 295, "rightarrow": 247, "rightmost": [35, 147, 158, 160, 177, 186, 261, 293, 344, 430, 466], "rightshift": 377, "rightshiftequ": 377, "rigo": [466, 467, 468, 483], "rigor": 95, "rigour": 483, "riku": 468, "rindex": [344, 469, 475, 476], "ring": [340, 464, 467, 468, 469], "rip": 465, "ripemd160": 475, "risc": [107, 483], "risco": [463, 470], "riscv": 483, "risk": [5, 42, 43, 73, 85, 95, 103, 213, 268, 271, 283, 292, 299, 362, 384, 413, 421, 426, 468, 475, 480, 481, 483], "riski": [76, 193, 483], "risus": 149, "riti": 477, "ritrovai": 467, "rittau": [472, 473], "ritual": 462, "ritvanen": 483, "rivera": 483, "rizvi": 483, "rjsmin": 483, "rjust": [344, 446, 466, 476], "rk1048": 158, "rkl": 344, "rl_attempted_completion_funct": 320, "rl_complet": 320, "rl_completer_word_break_charact": 320, "rl_completion_display_matches_hook": 320, "rl_completion_match": 320, "rl_completion_typ": 320, "rl_insert_text": 320, "rl_line_buff": 320, "rl_parse_and_bind": 320, "rl_pre_input_hook": 320, "rl_read_init_fil": 320, "rl_redisplay": 320, "rl_startup_hook": 320, "rlcomplet": [68, 114, 254, 320, 334, 363, 467, 468, 483], "rldecode_hqx": 473, "rlecode_hqx": [473, 482, 483], "rledecode_hqx": [482, 483], "rlim_cur": 322, "rlim_infin": 322, "rlimit_a": 322, "rlimit_cor": [322, 362], "rlimit_cpu": [322, 483], "rlimit_data": 322, "rlimit_fs": [322, 483], "rlimit_kqueu": [322, 483], "rlimit_memlock": 322, "rlimit_msgqueu": [322, 477], "rlimit_nic": [322, 477], "rlimit_nofil": 322, "rlimit_nproc": 322, "rlimit_npt": [322, 477], "rlimit_ofil": 322, "rlimit_rss": 322, "rlimit_rtprio": [322, 477], "rlimit_rttim": [322, 477], "rlimit_sbs": [322, 477], "rlimit_sigpend": [322, 477], "rlimit_stack": 322, "rlimit_swap": [322, 477], "rlimit_vmem": 322, "rlist": 328, "rlock": [68, 164, 169, 283, 468, 472, 475, 478, 483], "rm": [85, 89, 296, 331, 483], "rm5epjai72qck3rgbpw3vpnfzy5ozothi": 235, "rmail": 271, "rmd": 223, "rmdir": [84, 142, 293, 296, 362, 476], "rmff": 153, "rmode": 384, "rms": 141, "rmtree": [68, 84, 142, 219, 293, 296, 362, 402, 473, 474, 476, 480, 481, 483], "rn": [108, 481], "rng": 337, "rnopen": 330, "ro": [58, 85, 340], "roach": [446, 479, 481, 483], "road": [93, 244], "roadblock": 100, "roast": 200, "robert": [465, 467, 468, 469, 478, 480, 483], "roberto": 483, "robin": [293, 413, 442, 481, 483], "robla": 483, "robot": [68, 254, 256, 384, 392, 462, 483], "robotfilepars": [396, 479, 483], "robotpars": [68, 254, 256, 392, 462, 470, 483], "robotstxt": 396, "robust": [76, 139, 151, 184, 255, 308, 333, 469, 475, 477, 478, 483], "roc": 466, "rocco": 483, "rock": [85, 109, 120], "rocket": 472, "rocket_launch": 243, "rocki": [244, 468], "roddi": 469, "rodman": 483, "rodol": [475, 476, 481], "rodola": [469, 474, 475, 478, 480, 481, 483], "rodolfo": 475, "rodrigu": 483, "roger": [471, 482, 483], "roja": 481, "role": [158, 341, 413, 470, 475, 481, 483], "rolf": [479, 483], "roll": [160, 183, 269, 340, 362, 388, 440, 467, 468, 483], "rollback": [340, 467, 468, 473, 483], "rollov": [269, 360, 477, 483], "roman": [109, 372, 387, 465, 483], "roman8": [466, 483], "romanc": 147, "romberg": 464, "rome": 95, "ron": 475, "ronach": [468, 469, 471, 475, 476, 477], "ronald": [319, 467, 468, 469, 475, 477, 481, 482], "ronni": 479, "roolz": [196, 205], "room": [42, 55, 343, 434, 446, 470, 483], "root": [63, 93, 96, 101, 102, 111, 112, 141, 142, 160, 176, 186, 201, 205, 206, 207, 210, 235, 247, 248, 252, 261, 267, 268, 275, 283, 293, 294, 296, 302, 304, 314, 332, 339, 341, 342, 348, 352, 358, 362, 366, 369, 371, 372, 375, 376, 388, 410, 413, 415, 421, 422, 423, 428, 452, 455, 456, 462, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 481, 482, 483], "root_dir": [142, 231, 332, 472, 474, 483], "rootfd": 293, "rootlogg": 102, "rose": [155, 261, 479, 483], "roseman": [369, 472, 482, 483], "rosemari": 94, "rosen": 308, "rosenberg": [478, 482, 483], "rosenstein": 473, "rosett": [384, 483], "rosetta": 483, "roshan": 474, "roskind": [85, 308], "ross": [319, 469, 471, 476, 482, 483], "rossi": 483, "rossum": [78, 80, 85, 87, 103, 423, 426, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "rot": [160, 464, 483], "rot13": [158, 477, 483], "rot_13": [156, 158], "rot_four": [473, 481, 483], "rot_n": [473, 483], "rot_thre": [473, 483], "rot_two": [473, 483], "rotat": [68, 101, 160, 186, 269, 384, 466, 468, 469, 483], "rotatingfilehandl": [68, 101, 102, 118, 268, 466, 468, 469], "rotatinghandl": 483, "rotation_filenam": 269, "rotor": [465, 466], "rouault": [479, 483], "rougeth": 483, "rough": [85, 93, 102, 109, 202, 226, 243, 252, 261, 275, 281, 283, 292, 293, 302, 344, 362, 365, 385, 428, 436, 462, 468, 469, 480, 482, 483], "rouhani": 483, "roulett": 318, "roumen": 483, "round": [5, 63, 64, 68, 103, 149, 173, 183, 190, 193, 221, 225, 243, 261, 275, 289, 290, 293, 318, 343, 344, 345, 347, 352, 378, 384, 386, 388, 428, 430, 442, 444, 449, 450, 451, 452, 462, 464, 466, 467, 468, 469, 470, 471, 476, 477, 480, 481, 483], "round_05up": 186, "round_ceil": [186, 466], "round_danc": 384, "round_down": [186, 466], "round_floor": [186, 483], "round_half_down": 186, "round_half_even": [186, 466, 483], "round_half_up": 186, "round_up": 186, "round_up_to_power_2": 483, "roundoff": 430, "roundrobin": [160, 261], "roundup": 68, "rout": [95, 110, 212, 385, 452, 464, 465, 469, 477, 483], "routeabl": 477, "router": [99, 259, 337], "routin": [25, 33, 41, 63, 72, 73, 75, 86, 93, 96, 109, 141, 173, 177, 184, 195, 215, 250, 258, 266, 281, 293, 308, 341, 356, 366, 465, 466, 480, 483], "rovner": 467, "row": [35, 68, 73, 85, 175, 225, 261, 298, 369, 376, 378, 384, 435, 442, 467, 471, 475, 478, 479, 483], "row1": 340, "row2": 340, "row_factori": 340, "rowcount": [340, 483], "rowid": 340, "roy": [469, 483], "royalti": 426, "rp": 396, "rpar": [377, 378], "rpartit": [250, 344, 467, 469, 475, 483], "rpath": [456, 460, 472, 483], "rpc": [68, 80, 247, 254, 256, 262, 274, 418, 426, 464, 465, 466, 467, 468, 469, 479, 483], "rpc2": [420, 467], "rpc_path": [420, 467], "rpcrt4": 483, "rpm": [79, 462, 465], "rpmbuild": 483, "rpop": 305, "rrate": 396, "rrggbb": 369, "rrrgggbbb": 369, "rrrrggggbbbb": 369, "rs": [177, 178], "rsa": [235, 341, 472, 483], "rsampl": 141, "rseen": 190, "rset": [305, 335, 483], "rshift": [122, 291, 431], "rsock": [126, 133, 136], "rsplit": [344, 466, 469, 475, 483], "rsqb": 377, "rss": [80, 464], "rss10": 467, "rst": [188, 296, 456, 460, 480, 483], "rstenau": [469, 483], "rstlint": [474, 483], "rstrip": [85, 133, 136, 137, 188, 247, 284, 344, 451, 465, 483], "rstripextens": 483, "rsync": 394, "rsyslog": 269, "rt": [149, 225, 234, 270, 362, 384, 483], "rte": 483, "rtld_": [352, 483], "rtld_deepbind": [293, 476], "rtld_global": [176, 293, 352, 476, 481, 483], "rtld_lazi": [293, 352, 476], "rtld_local": [176, 293, 476, 481, 483], "rtld_nodelet": [293, 476], "rtld_noload": [293, 476], "rtld_now": [176, 293, 476], "rtos": [472, 483], "rtsp": 394, "rtsps": [394, 483], "rtspu": 394, "ru": [85, 218, 465], "ru_idrss": 322, "ru_inblock": 322, "ru_isrss": 322, "ru_ixrss": 322, "ru_majflt": 322, "ru_maxrss": 322, "ru_minflt": 322, "ru_msgrcv": 322, "ru_msgsnd": 322, "ru_nivcsw": 322, "ru_nsign": 322, "ru_nswap": 322, "ru_nvcsw": 322, "ru_oublock": 322, "ru_stim": 322, "ru_utim": 322, "rubi": [95, 343, 452], "rudiment": 109, "rudimentari": 478, "ruff": 483, "rui": 472, "ruid": 293, "rule": [23, 28, 33, 61, 63, 68, 85, 93, 94, 95, 100, 102, 103, 106, 109, 120, 151, 161, 176, 178, 181, 183, 186, 190, 194, 196, 202, 203, 205, 207, 208, 209, 221, 222, 225, 243, 244, 247, 259, 266, 275, 292, 319, 345, 347, 348, 365, 366, 375, 386, 394, 400, 411, 415, 427, 428, 429, 430, 431, 432, 434, 435, 436, 462, 463, 465, 467, 468, 469, 470, 474, 475, 476, 483], "rule_nam": 431, "ruler": 155, "rume": [479, 483], "run": [4, 23, 28, 33, 34, 42, 45, 51, 59, 63, 64, 68, 72, 73, 76, 77, 79, 81, 84, 85, 86, 89, 92, 93, 95, 96, 100, 101, 106, 107, 109, 112, 115, 120, 122, 123, 124, 125, 126, 129, 132, 133, 134, 135, 136, 137, 138, 144, 151, 152, 157, 163, 166, 167, 169, 170, 173, 176, 177, 181, 186, 187, 193, 200, 203, 208, 213, 214, 226, 228, 230, 235, 236, 242, 243, 244, 245, 250, 251, 255, 261, 266, 267, 268, 269, 271, 279, 283, 288, 292, 293, 296, 297, 308, 313, 314, 320, 322, 323, 324, 325, 331, 332, 333, 334, 337, 338, 340, 341, 344, 347, 348, 352, 353, 354, 355, 356, 362, 364, 365, 366, 368, 369, 376, 380, 382, 384, 386, 389, 390, 399, 400, 403, 405, 407, 413, 420, 421, 427, 428, 429, 430, 431, 432, 435, 440, 443, 451, 452, 453, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "run_cgi": 483, "run_command": [34, 142, 455], "run_coroutine_threadsaf": [124, 125, 139, 472, 478, 479, 483], "run_dialog": 96, "run_docstring_exampl": 193, "run_doctest": [382, 483], "run_fil": [142, 455], "run_filenam": 34, "run_forev": [126, 130, 483], "run_glob": 382, "run_in_executor": [125, 126, 130, 139, 482, 483], "run_in_subinterp": 362, "run_interactivehook": [142, 352], "run_mod": 104, "run_modul": [34, 142, 324, 455, 483], "run_nam": 324, "run_onc": 407, "run_path": [324, 455, 469, 483], "run_python_until_end": [362, 483], "run_queri": [386, 473], "run_script": 279, "run_setup": 483, "run_startup": [142, 455], "run_stdin": [142, 455], "run_swallowed_dialog": 96, "run_test": 483, "run_unittest": 483, "run_until_complet": [126, 130, 478, 479, 481, 483], "run_user_cod": 381, "run_with_local": 362, "run_with_tz": 362, "runaway": 462, "runcal": [144, 297, 308, 481], "runcod": 157, "runctx": [144, 308, 380], "runev": [144, 297], "runfunc": [380, 481], "runmainfromimport": 483, "runnabl": [102, 483], "runner": [68, 102, 123, 124, 193, 388, 400, 466, 469, 473, 483], "runni": 441, "runpi": [68, 114, 156, 254, 280, 382, 455, 467, 468, 469, 471, 472, 477, 483], "runsourc": [157, 340], "runtest": [193, 388], "runtest_mp": 483, "runtim": [13, 24, 27, 33, 35, 42, 51, 52, 59, 66, 68, 73, 75, 76, 77, 85, 87, 88, 96, 100, 101, 109, 113, 140, 142, 163, 167, 176, 182, 188, 191, 213, 225, 250, 254, 257, 268, 269, 292, 293, 311, 314, 340, 344, 348, 352, 354, 369, 382, 386, 400, 404, 409, 411, 421, 424, 427, 428, 429, 432, 436, 440, 455, 456, 461, 463, 465, 469, 470, 472, 474, 476, 477, 478, 479, 482, 483], "runtime_check": [386, 472, 474, 481, 483], "runtimeerror": [23, 95, 107, 115, 121, 126, 127, 132, 137, 138, 139, 140, 166, 169, 170, 213, 218, 225, 258, 261, 268, 283, 293, 296, 319, 335, 344, 348, 352, 356, 362, 365, 386, 406, 422, 428, 430, 436, 443, 450, 465, 466, 467, 469, 474, 476, 478, 479, 480, 481, 483], "runtimeexcept": 483, "runtimewarn": [23, 45, 125, 126, 213, 337, 352, 388, 400, 450, 475, 481, 483], "rupprecht": 483, "rusag": 483, "rusage_": 322, "rusage_both": 322, "rusage_children": 322, "rusage_self": 322, "rusage_thread": 322, "ruscii": 158, "rush": [426, 462], "ruslan": 483, "russ": 462, "russel": 466, "russian": [109, 158], "russo": 483, "rust": 441, "rutrum": 149, "rv": [18, 35, 215], "rvalu": 344, "rw": [89, 94, 102, 223, 295, 332, 340, 348, 475, 478, 479, 480], "rwald": [465, 466, 467, 481], "rwf_append": [293, 483], "rwf_dsync": 293, "rwf_hipri": 293, "rwf_nowait": 293, "rwf_sync": 293, "rwx": [94, 332], "rwxr": [89, 332], "rwxrwxrwx": [342, 476], "rx": [163, 319], "rx_addr": 337, "ry": [480, 483], "ryan": [469, 476, 477, 479, 480, 483], "rykoff": 481, "ryosuk": 483, "rzenichstra": 109, "rzenichstrass": 109, "s1": [18, 109, 161, 190, 266, 337, 465], "s150": 102, "s2": [18, 109, 161, 190, 266, 337, 465], "s390x": 483, "s92p": 464, "s_enfmt": [293, 342], "s_i": 141, "s_iexec": [293, 342], "s_ifblk": [293, 342], "s_ifchr": [293, 342, 483], "s_ifdir": 342, "s_ifdoor": [342, 477, 483], "s_ififo": [293, 342], "s_iflnk": [342, 481], "s_ifmt": 342, "s_ifport": [342, 477, 483], "s_ifreg": [293, 342], "s_ifsock": 342, "s_ifwht": [342, 477, 483], "s_imod": 342, "s_in": 234, "s_iread": [293, 342], "s_irgrp": [293, 342], "s_iroth": [293, 342], "s_irusr": [293, 342, 358], "s_irwxg": [293, 342], "s_irwxo": [293, 342], "s_irwxu": [293, 342], "s_is": 342, "s_isblk": 342, "s_ischr": 342, "s_isdir": [293, 342], "s_isdoor": [342, 483], "s_isfifo": 342, "s_isgid": [293, 342], "s_islnk": 342, "s_isport": [342, 483], "s_isreg": 342, "s_issock": 342, "s_isuid": [293, 342], "s_isvtx": [293, 342], "s_iswht": [342, 483], "s_iwgrp": [293, 342, 358], "s_iwoth": [293, 342, 358], "s_iwrit": [293, 332, 342], "s_iwusr": [293, 342, 358], "s_ixgrp": [293, 342, 358], "s_ixoth": [293, 342, 358], "s_ixusr": [293, 342, 358], "s_jis": 158, "s_jisx0213": 158, "s_out": 234, "s_server": 362, "sa": [109, 150, 183, 337], "sa_onstack": 483, "sabella": [479, 480, 481, 483], "sabl": 475, "sad": [94, 470, 483], "sadruddin": 466, "sae": 337, "safari": 403, "safe": [5, 22, 23, 33, 34, 42, 45, 49, 51, 56, 59, 63, 64, 68, 72, 73, 75, 76, 85, 96, 102, 125, 129, 130, 132, 133, 134, 137, 138, 139, 143, 151, 160, 169, 176, 177, 181, 193, 214, 235, 247, 250, 258, 266, 267, 268, 270, 271, 283, 293, 299, 312, 324, 325, 328, 330, 331, 332, 334, 337, 340, 341, 348, 362, 365, 386, 394, 398, 400, 415, 461, 462, 463, 465, 468, 469, 474, 475, 476, 480, 481, 483], "safe_builtin": 299, "safe_path": [33, 34, 352, 473], "safe_substitut": [345, 452, 466], "safechildwatch": [132, 474, 483], "safeconfigpars": [473, 474, 475, 483], "safeguard": 464, "safer": [100, 193, 299, 465, 466, 474, 483], "saferepr": 307, "safest": [92, 176, 271, 483], "safethread": 84, "safeti": [33, 68, 73, 94, 118, 139, 200, 255, 283, 292, 324, 340, 469, 471, 475, 483], "safetransport": [419, 483], "safeuuid": [398, 483], "saha": [479, 483], "sai_servic": 483, "said": [85, 92, 93, 167, 283, 427, 428, 435, 449, 463, 464, 479, 483], "saihadhav": 483, "saimadhav": [480, 481, 483], "sajip": [101, 102, 465, 466, 468, 469, 471, 475, 476, 477, 478, 479, 480, 481, 482], "sake": [92, 102, 128, 205, 293, 331, 432, 465, 483], "sakki": [261, 469], "salad": 344, "salari": [225, 344, 440], "sale": [471, 475], "sales_item": 412, "salesl": 475, "salgado": [472, 473, 478, 481, 482, 483], "salient": 475, "salli": 476, "salmela": 95, "salt": [173, 235, 326, 428, 455, 475, 476, 483], "salt1": 235, "salt2": 235, "salt_siz": 235, "salut": 200, "sam": [81, 294, 426, 462, 473, 483], "same": [5, 6, 7, 9, 13, 18, 20, 22, 23, 25, 26, 27, 28, 33, 34, 39, 41, 42, 45, 46, 49, 51, 54, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 92, 93, 94, 95, 96, 100, 101, 103, 106, 109, 110, 112, 115, 120, 122, 132, 133, 135, 137, 138, 139, 141, 144, 151, 157, 158, 163, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 201, 202, 203, 205, 207, 208, 209, 213, 215, 216, 218, 220, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 284, 288, 292, 293, 295, 296, 297, 299, 305, 307, 308, 309, 312, 313, 314, 319, 320, 321, 322, 325, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 378, 381, 384, 385, 386, 387, 388, 389, 394, 395, 399, 400, 403, 405, 410, 413, 415, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 482, 483], "same_fil": 216, "same_quantum": 186, "samefil": [294, 296, 477, 478, 483], "samefileerror": [332, 477, 483], "sameopenfil": 294, "sameorigin": 341, "samesit": [244, 483], "samestat": [294, 296, 477], "sami": 483, "samodya": 473, "samp": 465, "sampl": [73, 75, 84, 93, 94, 95, 102, 104, 106, 117, 141, 155, 175, 176, 193, 247, 279, 295, 299, 307, 308, 318, 319, 336, 343, 349, 358, 367, 376, 395, 401, 413, 427, 441, 451, 461, 463, 464, 465, 468, 469, 473, 475, 477, 479, 480, 481, 483], "sample_config": [167, 469], "sample_nam": 389, "sampleproject": 307, "sampler": 295, "samples": 117, "sampletest": 388, "sampletestcas": 388, "sampling_r": 336, "sampmodul": 465, "sampwidth": [117, 336, 349, 401], "samson": 483, "samstag": 183, "samuel": [103, 235, 337, 426, 465, 467, 479, 482, 483], "samwys": 478, "san": [341, 396], "sanad": 483, "sand": 319, "sandbox": [257, 324, 352, 483], "sander": 483, "sanderson": [481, 483], "sandler": 475, "sandov": [479, 480, 483], "sandro": 476, "sane": [63, 177, 183, 319, 483], "sanit": [200, 456, 483], "saniti": [64, 456, 477, 483], "sanjay": 483, "santa": 426, "santoso": 483, "sanyam": [480, 483], "sape": 442, "sapien": 149, "sapin": 483, "sapphir": 483, "saratoga": 426, "sarcast": 464, "sarnowski": 483, "sas": 343, "sat": [102, 150, 183, 341, 343], "satisfact": 341, "satisfactorili": 73, "satisfi": [73, 110, 181, 221, 234, 255, 258, 268, 275, 365, 428, 432, 475], "satur": 475, "saturday": [94, 150, 183, 211], "saturn": [94, 343], "saus": 225, "sausag": [160, 225, 344], "sauthoff": 472, "savag": 459, "savannah": 483, "save": [13, 22, 23, 27, 33, 42, 63, 68, 72, 73, 75, 85, 93, 94, 95, 100, 101, 102, 106, 120, 139, 149, 151, 152, 155, 167, 169, 177, 183, 200, 209, 226, 243, 247, 261, 266, 269, 270, 271, 292, 293, 299, 308, 313, 319, 320, 334, 340, 352, 362, 365, 366, 368, 369, 381, 384, 400, 405, 419, 425, 427, 428, 464, 466, 467, 468, 469, 470, 471, 474, 475, 477, 480, 482, 483], "save_env": 483, "save_histori": 320, "savea": 189, "savecount": 140, "saved_at": 96, "saved_gam": 96, "saved_game_model": 96, "saved_st": 96, "savedcwd": [96, 362], "savefiledialog": 189, "savekey": [142, 405], "savesign": 362, "savetti": 177, "saw": 73, "saw_foo": 292, "sawyer": 483, "sax": [68, 254, 273, 409, 410, 411, 412, 451, 462, 463, 472, 479, 480, 481, 483], "sax2": [68, 254, 273, 409, 411, 415], "sax2dom": 412, "sax2lib": 415, "saxexcept": [68, 273], "saxnotrecognizedexcept": [414, 416], "saxnotsupportedexcept": [414, 416], "saxparseexcept": [414, 415], "saxutil": [68, 254, 273, 414], "say": [72, 73, 75, 77, 85, 93, 99, 102, 103, 106, 109, 133, 139, 183, 193, 202, 226, 230, 243, 247, 251, 266, 267, 268, 269, 271, 283, 348, 355, 395, 413, 421, 428, 432, 434, 446, 463, 464, 465, 467, 468, 469, 473, 475, 477, 483], "say_aft": 139, "say_hello": 378, "sayan": 483, "sb": [336, 359], "sbardella": 483, "sbin": [84, 176, 319], "sblondon": 472, "sc22": 352, "sc_iov_max": [293, 337], "sc_minsigstksz": [293, 483], "scala": 472, "scalabl": [328, 462], "scalar": [7, 141, 196, 199, 226, 384, 386, 483], "scale": [132, 318, 328, 343, 376, 386, 462, 465, 468, 479, 480, 483], "scaleb": 186, "scalet": 483, "scaletest": 483, "scan": [18, 85, 93, 95, 101, 106, 158, 177, 193, 228, 230, 245, 293, 319, 328, 369, 386, 428, 429, 455, 464, 465, 467, 469, 475, 478, 483], "scandir": [68, 142, 231, 293, 296, 479, 480, 481, 483], "scandir_path": 293, "scandiriteratortyp": 483, "scanf": [68, 363], "scanner": [319, 357, 378, 477, 483], "scanstr": 483, "scardin": 476, "scare": 103, "scari": 483, "scarlet_pimpernel": 96, "scatter": [337, 464, 465, 469], "scelerisqu": 149, "scenario": [51, 101, 102, 186, 267, 268, 320, 388, 395, 432, 456, 477, 479, 483], "scene": [176, 384, 461], "scgi": 407, "schaaf": [475, 476], "sched": [68, 164, 254, 468, 483], "sched_": 483, "sched_batch": 293, "sched_fifo": 293, "sched_get_priority_max": [293, 476], "sched_get_priority_min": [293, 476], "sched_getaffin": [283, 293, 476, 483], "sched_getparam": [293, 476], "sched_getschedul": [293, 476], "sched_idl": 293, "sched_oth": 293, "sched_param": 293, "sched_prior": 293, "sched_reset_on_fork": 293, "sched_rr": 293, "sched_rr_get_interv": [293, 476], "sched_setaffin": [293, 476, 483], "sched_setparam": [293, 476], "sched_setschedul": [293, 476], "sched_sporad": 293, "sched_yield": [293, 476, 483], "schedul": [33, 68, 80, 84, 108, 115, 118, 125, 126, 164, 252, 255, 322, 333, 352, 366, 376, 430, 464, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 482, 483], "schedulenau": 475, "schema": [68, 93, 118, 281, 340, 469, 483], "scheme": [7, 31, 63, 68, 75, 78, 95, 102, 110, 136, 141, 158, 176, 247, 269, 271, 315, 334, 340, 352, 358, 375, 394, 395, 399, 407, 428, 455, 462, 463, 465, 468, 469, 474, 475, 476, 477, 478, 483], "schemenau": [462, 463, 464, 465, 467, 469, 478, 481], "schevchenko": [472, 483], "schiller": 341, "schlawack": [472, 476, 477, 483], "schmidt": 462, "schmitt": 468, "schneider": [462, 483], "schnell": 468, "schnider": 483, "schoentgen": 483, "school": [186, 347, 465], "schoolbook": 186, "schott": 483, "schouten": 483, "schroeder": [467, 483], "schulenklopp": 483, "schuppeni": 468, "schw": 483, "schwab": 483, "schwager": 483, "schwarschild_black_hol": 472, "schwartz": [85, 108, 468], "schwartzian": 108, "schwarzschild_black_hol": 472, "schwertberg": 463, "sci": 426, "scienc": [95, 106, 365, 478], "scientif": [186, 345, 454, 461, 468], "scientist": 365, "scintilla": 85, "scipi": [343, 444, 451, 454, 461], "scissor": 120, "scm": 303, "scm_": 337, "scm_creds2": [337, 483], "scm_right": 337, "scoket": 107, "scol": 378, "scoop": 470, "scope": [68, 78, 85, 87, 94, 99, 101, 102, 103, 113, 144, 160, 191, 225, 255, 259, 297, 307, 314, 320, 331, 337, 341, 351, 352, 369, 386, 399, 411, 413, 415, 427, 428, 430, 432, 436, 445, 450, 462, 468, 470, 474, 475, 476, 479, 480, 481, 482, 483, 484], "scope_id": [259, 337, 482, 483], "scope_test": 440, "scopeid": 483, "score": [147, 190, 340, 343, 452], "scott": [109, 465, 467, 481, 483], "scram": 476, "scraper": 462, "scratch": [102, 128, 189, 201, 206, 207, 341, 399, 410, 476, 477, 483], "screen": [68, 85, 92, 95, 98, 109, 155, 177, 179, 222, 247, 320, 348, 369, 375, 376, 378, 462, 464, 465, 468, 475, 478, 482, 483], "screennam": [369, 375], "screenshot": 469, "screensiz": 384, "scrict_mod": 483, "script": [33, 34, 35, 66, 68, 72, 73, 75, 79, 85, 87, 98, 101, 102, 103, 104, 110, 112, 120, 152, 163, 169, 188, 191, 193, 213, 222, 228, 230, 240, 244, 245, 250, 251, 267, 279, 292, 297, 308, 309, 311, 313, 324, 330, 334, 340, 352, 354, 355, 362, 369, 376, 378, 386, 388, 395, 399, 403, 420, 421, 429, 432, 434, 435, 436, 443, 450, 453, 455, 456, 458, 460, 462, 463, 464, 465, 466, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "script_basenam": 362, "script_dir": 362, "script_from_exampl": 193, "script_help": [68, 187, 254, 483], "script_nam": [362, 407], "scriptfil": 84, "scriptnam": 102, "scriptsinstal": 483, "scroll": [92, 155, 177, 247, 369, 374, 376, 483], "scrollabl": [68, 247, 368, 375], "scrollbar": [247, 369, 374, 376, 384, 483], "scrollcommand": [369, 376], "scrolledcanva": 384, "scrolledlist": 483, "scrolledtext": [68, 254, 368, 369], "scrollok": 177, "scrub": 245, "scrypt": [235, 479, 483], "sd": 102, "sdata": 102, "sdeedfish": 106, "sdev": 84, "sdid": 102, "sdist": [462, 463, 467, 469, 479, 480, 483], "sdk": [257, 456, 482, 483], "sdkdir": 456, "sdks": 483, "sdt": 98, "se": [85, 243, 359, 369], "se_restore_privileg": 405, "sea_green": 94, "seabra": 483, "seal": [215, 389, 475, 480, 483], "seal_ballot": 475, "seamless": 93, "sean": [463, 465, 466, 467, 469, 483], "search": [23, 31, 33, 34, 35, 59, 64, 68, 75, 84, 85, 93, 100, 101, 109, 141, 147, 151, 158, 160, 163, 176, 193, 196, 216, 225, 230, 248, 250, 254, 265, 266, 267, 268, 270, 278, 279, 280, 288, 293, 297, 299, 302, 308, 311, 312, 313, 331, 332, 334, 340, 344, 348, 352, 355, 363, 368, 369, 371, 375, 384, 388, 395, 396, 403, 410, 412, 413, 415, 420, 422, 423, 425, 427, 428, 429, 430, 433, 450, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 478, 479, 480, 481, 482, 483], "search_criterion": 248, "search_error": 474, "search_funct": [14, 158], "search_paths_first": 483, "search_stud": 114, "searchabl": [432, 483], "searchdialogbas": 483, "searchengin": 483, "season": 225, "sebackupprivileg": 405, "sebastian": [472, 473, 483], "sec": [106, 366, 367, 478, 483], "seccomp": 483, "sechrest": 337, "secker": 469, "second": [5, 20, 22, 23, 33, 58, 64, 67, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 112, 115, 117, 129, 134, 135, 136, 138, 139, 141, 151, 158, 167, 169, 176, 177, 183, 186, 190, 191, 193, 195, 200, 203, 208, 209, 211, 213, 214, 215, 218, 221, 225, 228, 230, 235, 242, 243, 247, 248, 250, 255, 258, 267, 268, 269, 271, 272, 275, 276, 282, 283, 284, 292, 293, 295, 297, 299, 301, 302, 305, 307, 308, 318, 319, 322, 325, 328, 329, 331, 332, 333, 335, 337, 338, 340, 341, 344, 347, 348, 352, 355, 358, 359, 361, 362, 365, 366, 376, 378, 384, 386, 388, 389, 394, 395, 396, 407, 413, 419, 422, 428, 430, 431, 432, 435, 436, 442, 446, 449, 456, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 478, 479, 480, 481, 483], "second_16": 176, "second_alt": 431, "second_patch": 389, "second_peak": 382, "second_s": 382, "secondari": [108, 247, 261, 308, 352, 469, 470, 483], "secondaryexcept": 470, "secp": 483, "secreatesymboliclinkprivileg": 293, "secreci": [341, 483], "secret": [33, 68, 133, 174, 235, 254, 283, 292, 293, 305, 318, 327, 341, 426, 455, 462, 483], "secret_key": 235, "sectcr": 167, "section": [7, 17, 34, 42, 51, 55, 58, 63, 64, 71, 72, 73, 75, 76, 77, 85, 92, 93, 95, 99, 100, 101, 102, 103, 106, 109, 110, 114, 120, 122, 132, 133, 137, 139, 151, 155, 158, 160, 167, 169, 176, 181, 184, 186, 193, 194, 202, 203, 212, 221, 230, 235, 241, 242, 243, 247, 248, 258, 261, 262, 267, 268, 271, 292, 293, 299, 305, 307, 308, 314, 319, 321, 328, 332, 337, 340, 341, 344, 347, 348, 352, 358, 365, 369, 384, 388, 394, 395, 410, 411, 413, 415, 416, 419, 422, 426, 427, 428, 429, 430, 432, 435, 436, 451, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "section1": 167, "section2": 167, "section3": 167, "section_nam": 167, "section_proxi": 167, "sectionnam": 483, "sector": 140, "secur": [30, 68, 85, 102, 118, 164, 176, 223, 235, 242, 243, 244, 248, 256, 269, 270, 272, 283, 288, 293, 299, 305, 314, 326, 331, 334, 335, 337, 344, 352, 358, 395, 405, 411, 412, 413, 414, 419, 420, 458, 462, 463, 464, 465, 467, 468, 475, 476, 479, 484], "secure_protocol": [243, 483], "security_attribut": 405, "security_level": [341, 483], "sed": [190, 483], "see": [5, 7, 11, 23, 26, 31, 33, 34, 42, 45, 47, 58, 59, 61, 62, 63, 64, 66, 71, 72, 73, 75, 76, 77, 79, 80, 84, 85, 92, 93, 94, 95, 96, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 120, 132, 133, 137, 139, 141, 144, 151, 155, 158, 161, 163, 167, 168, 169, 173, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 230, 233, 234, 235, 242, 243, 245, 247, 248, 250, 251, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 272, 275, 278, 279, 281, 283, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 311, 313, 314, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 380, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 411, 412, 413, 414, 415, 416, 419, 420, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "see_oth": 241, "seealso": 235, "seed": [30, 33, 34, 87, 293, 318, 341, 343, 352, 426, 455, 469, 475, 482, 483], "seed_bit": [30, 352], "seeder": 318, "seek": [79, 84, 85, 109, 117, 149, 153, 175, 212, 215, 218, 258, 278, 293, 299, 340, 358, 360, 362, 422, 424, 446, 462, 468, 471, 483], "seek_": 258, "seek_cur": [215, 258, 278, 293, 340, 467, 471], "seek_data": [258, 293, 476], "seek_end": [215, 258, 278, 293, 340, 467, 471], "seek_hol": [258, 293, 476], "seek_set": [215, 258, 278, 293, 340, 467, 471], "seekabl": [117, 149, 258, 401, 422, 468, 483], "seem": [73, 76, 79, 95, 101, 106, 120, 193, 216, 271, 279, 293, 308, 340, 430, 432, 462, 463, 464, 465, 467, 483], "seen": [73, 75, 84, 85, 94, 95, 102, 155, 191, 230, 235, 255, 261, 269, 271, 292, 305, 331, 353, 369, 400, 413, 415, 455, 465, 468, 471, 474, 477, 480, 483], "segev": [480, 483], "segfault": [177, 466, 467, 479, 480, 483], "segment": [42, 48, 176, 184, 193, 214, 215, 220, 253, 283, 293, 333, 366, 394, 399, 467, 469, 475, 476, 483], "segreg": 476, "segv": 483, "sehensw": 475, "seifert": 483, "seilnacht": 469, "seipp": [482, 483], "sekera": 483, "sektion": 328, "sel": [329, 333], "seldom": 348, "select": [7, 33, 59, 64, 66, 68, 84, 93, 94, 96, 101, 106, 107, 109, 120, 138, 141, 160, 169, 176, 177, 213, 225, 230, 246, 247, 248, 251, 254, 260, 261, 266, 268, 270, 281, 283, 288, 293, 299, 308, 311, 313, 318, 329, 333, 335, 337, 338, 340, 343, 344, 345, 347, 348, 364, 365, 366, 368, 369, 371, 375, 376, 384, 386, 390, 403, 413, 417, 427, 428, 429, 430, 432, 456, 461, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 478, 479, 480, 481, 482, 483], "selected_alpn_protocol": [341, 478], "selected_npn_protocol": [341, 472], "selection_add": [376, 483], "selection_el": 483, "selection_from": [481, 483], "selection_get": 376, "selection_pres": [481, 483], "selection_rang": [481, 483], "selection_remov": [376, 483], "selection_set": [376, 481, 483], "selection_to": [481, 483], "selection_toggl": [376, 483], "selectmod": 376, "selector": [68, 95, 125, 126, 131, 254, 260, 261, 328, 333, 338, 341, 361, 368, 395, 469, 471, 480, 483], "selector_ev": 483, "selectoreventloop": [126, 131, 132, 137, 473, 483], "selectorkey": 329, "selectorloop": 483, "selectselector": [126, 131, 329], "self": [5, 10, 22, 28, 44, 52, 58, 61, 63, 68, 72, 73, 75, 76, 79, 84, 87, 93, 94, 95, 96, 98, 100, 102, 104, 107, 108, 116, 120, 122, 126, 132, 133, 142, 144, 148, 155, 160, 161, 169, 172, 176, 181, 183, 186, 191, 203, 205, 211, 213, 216, 221, 223, 225, 226, 227, 230, 232, 240, 242, 243, 248, 250, 253, 255, 259, 262, 274, 283, 288, 289, 292, 293, 296, 297, 299, 305, 318, 320, 321, 333, 335, 337, 338, 340, 344, 345, 358, 359, 362, 369, 375, 381, 382, 384, 385, 386, 388, 389, 390, 395, 399, 402, 410, 413, 417, 419, 420, 421, 427, 428, 432, 440, 441, 446, 451, 452, 455, 462, 463, 464, 465, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 482, 483], "self_test": 84, "selfsigned_pythontestdotnet": 483, "selftest": 455, "selik": [481, 483], "selinux": 483, "selivanov": [472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sell": [426, 467], "selm": 84, "selma": 95, "selva": 467, "sem": 138, "sem_clockwait": [473, 483], "sem_getvalu": [283, 483], "sem_open": 483, "sem_timedwait": [283, 483], "sem_wait": 96, "semant": [5, 7, 11, 13, 27, 57, 63, 64, 94, 101, 102, 133, 139, 161, 186, 193, 196, 202, 205, 207, 208, 225, 248, 250, 252, 255, 259, 267, 268, 269, 271, 283, 292, 293, 295, 299, 311, 316, 319, 330, 331, 332, 337, 342, 352, 365, 366, 386, 394, 405, 423, 425, 427, 428, 429, 430, 432, 436, 455, 456, 462, 464, 465, 467, 468, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "semaphor": [68, 84, 98, 115, 124, 164, 212, 283, 293, 352, 362, 452, 468, 475, 476, 481, 482, 483], "semaphore_not": 475, "semaphore_track": 483, "semi": [283, 292, 377, 483], "semicircl": 384, "semicolon": [5, 33, 76, 106, 297, 340, 427, 436, 455, 461], "seminumer": 186, "semlock": 483, "semper": 149, "semyon": 483, "send": [7, 68, 79, 84, 92, 95, 101, 106, 107, 110, 126, 128, 133, 136, 137, 141, 142, 151, 152, 158, 161, 169, 177, 191, 194, 200, 201, 212, 223, 230, 242, 244, 245, 247, 248, 257, 267, 268, 269, 278, 283, 288, 293, 299, 305, 316, 329, 333, 335, 337, 338, 341, 348, 356, 361, 362, 369, 384, 386, 395, 419, 428, 430, 452, 462, 465, 466, 467, 469, 473, 474, 475, 476, 478, 479, 480, 482, 483], "send_byt": 283, "send_error": [245, 477, 483], "send_ev": 369, "send_fd": [337, 482, 483], "send_head": 245, "send_http": 169, "send_json": 102, "send_messag": [200, 208, 335, 475, 478, 483], "send_post_request": 344, "send_respons": 245, "send_response_on": 245, "send_sign": [130, 133, 137, 348, 468, 483], "send_timeout": 102, "sendal": [126, 337, 338, 341, 478, 483], "sendcmd": [142, 223], "sender": [84, 102, 200, 203, 208, 271, 335], "sendfil": [126, 127, 130, 133, 293, 332, 337, 341, 407, 476, 478, 480, 483], "sendfilenotavailableerror": [126, 127], "sendfunc": 63, "sendmail": [84, 102, 106, 201, 208, 319, 335, 451, 475, 478], "sendmsg": [142, 337, 474, 476, 478, 483], "sendmsg_afalg": [337, 479], "sendto": [126, 130, 133, 142, 337, 338, 478, 483], "sendtyp": 386, "sens": [75, 85, 94, 99, 101, 102, 103, 112, 120, 183, 186, 190, 205, 206, 226, 247, 259, 271, 283, 292, 293, 308, 333, 338, 340, 344, 352, 384, 394, 403, 426, 428, 432, 461, 470, 475, 477, 478, 480, 483], "sensibl": [110, 120, 167, 183, 235, 255, 292, 365, 394, 430, 466, 469, 479, 480, 483], "sensit": [33, 167, 220, 248, 269, 276, 352, 386, 388, 400, 455, 463, 465, 466, 467, 468, 474, 477, 483], "sent": [23, 68, 92, 95, 101, 103, 107, 109, 110, 133, 137, 169, 177, 200, 235, 242, 244, 245, 247, 248, 259, 267, 268, 269, 283, 288, 293, 297, 305, 322, 333, 335, 337, 338, 340, 341, 348, 366, 386, 395, 419, 420, 426, 461, 462, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sentenc": [95, 226, 319, 364, 464, 465, 468, 483], "senthil": [469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "sentinel": [31, 37, 58, 68, 73, 75, 76, 85, 102, 181, 187, 225, 269, 283, 390, 464, 476, 480, 483], "seo": [466, 476], "sep": [64, 85, 95, 146, 183, 186, 225, 231, 244, 247, 253, 293, 296, 341, 344, 345, 358, 407, 427, 441, 464, 467, 468, 469, 470, 473, 483], "separ": [23, 33, 34, 55, 59, 63, 64, 68, 77, 79, 84, 85, 92, 94, 96, 100, 101, 102, 103, 106, 109, 112, 120, 127, 132, 136, 139, 146, 151, 155, 158, 167, 169, 175, 176, 177, 178, 183, 186, 190, 193, 196, 201, 202, 205, 208, 213, 220, 225, 226, 230, 245, 247, 248, 250, 252, 253, 258, 259, 262, 266, 267, 268, 269, 270, 271, 276, 283, 288, 292, 293, 297, 302, 303, 307, 313, 314, 319, 324, 331, 334, 335, 337, 338, 340, 341, 343, 344, 345, 347, 348, 358, 361, 362, 364, 365, 368, 369, 380, 386, 388, 394, 395, 400, 403, 422, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 441, 452, 455, 456, 461, 462, 464, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "septemb": [150, 435, 462, 467, 476, 478], "seq": [37, 64, 85, 103, 160, 191, 220, 225, 261, 291, 318, 326, 344, 462, 466, 473, 475], "seq1": [95, 291, 462], "seq2": [22, 95, 291, 462], "seq_index": 261, "seq_typ": 388, "seqdict": 465, "seqnum": 452, "sequenc": [5, 7, 16, 22, 32, 33, 35, 37, 39, 42, 49, 50, 54, 56, 59, 64, 66, 68, 75, 78, 79, 84, 87, 92, 94, 95, 100, 102, 103, 106, 109, 112, 120, 122, 139, 145, 157, 158, 159, 161, 163, 164, 175, 176, 177, 189, 190, 191, 193, 196, 202, 205, 206, 209, 212, 213, 218, 225, 230, 236, 238, 243, 250, 254, 255, 258, 259, 261, 262, 266, 268, 270, 271, 275, 276, 281, 283, 284, 292, 293, 299, 301, 302, 307, 312, 314, 318, 319, 321, 325, 332, 337, 340, 341, 343, 345, 358, 359, 362, 363, 366, 369, 376, 378, 381, 382, 384, 386, 387, 388, 394, 395, 400, 405, 410, 413, 414, 419, 425, 430, 434, 435, 436, 440, 441, 445, 449, 462, 463, 464, 465, 466, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "sequence1": [95, 462], "sequence2": [95, 462], "sequence3": 95, "sequence_of_numb": [226, 481], "sequence_pattern": [427, 431], "sequenceinclud": [112, 469, 470], "sequencemanag": 483, "sequencematch": [68, 363, 463, 467, 468, 477, 483], "sequencen": [95, 462], "sequenti": [84, 102, 125, 163, 218, 235, 283, 299, 308, 344, 362, 428, 452, 483], "serbian": 158, "serenityo": 483, "serg": 483, "sergey": [472, 473, 482, 483], "serhiy": [109, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "seri": [7, 33, 61, 95, 106, 112, 120, 155, 176, 186, 191, 225, 235, 292, 314, 337, 344, 355, 365, 375, 386, 394, 430, 441, 449, 450, 464, 466, 467, 468, 469, 477, 480], "serial": [33, 41, 42, 68, 102, 167, 182, 194, 196, 197, 201, 203, 205, 206, 207, 208, 262, 267, 269, 283, 284, 299, 304, 330, 333, 335, 340, 347, 352, 413, 446, 462, 468, 469, 471, 473, 475, 476, 477, 482, 483], "serialis": [102, 158, 324, 413, 483], "serializ": [244, 262], "serialno": 483, "serialnum": 347, "serialnumb": 341, "serious": [101, 103, 193, 213, 235, 267], "serna": 476, "serp": 483, "serra": 483, "serv": [5, 73, 76, 101, 102, 133, 136, 186, 193, 202, 203, 225, 226, 245, 250, 253, 261, 268, 283, 293, 299, 313, 333, 340, 341, 369, 384, 386, 407, 413, 420, 432, 435, 466, 470, 475, 476, 478, 480, 483], "serve_cli": 483, "serve_forev": [126, 133, 136, 170, 245, 283, 333, 338, 407, 419, 420, 467, 468, 476, 480, 483], "serve_until_quit": 483, "serve_until_stop": 102, "server": [68, 84, 85, 92, 95, 101, 107, 110, 136, 151, 156, 167, 170, 176, 192, 194, 200, 208, 223, 226, 235, 241, 242, 243, 244, 247, 248, 254, 256, 257, 259, 267, 268, 269, 283, 288, 293, 294, 296, 305, 313, 318, 327, 328, 329, 333, 335, 337, 340, 352, 355, 356, 359, 362, 365, 369, 382, 386, 393, 395, 407, 418, 426, 451, 452, 461, 463, 464, 465, 466, 467, 468, 469, 474, 476, 477, 478, 479, 481, 482, 483, 484], "server_activ": [338, 420, 468], "server_address": [245, 338, 407], "server_auth": [341, 477], "server_bind": [338, 420, 468], "server_class": [245, 407], "server_clos": [338, 407, 480, 483], "server_document": 420, "server_hostnam": [126, 136, 341, 475, 480, 483], "server_log": [95, 467], "server_nam": [245, 407, 420], "server_name_callback": 341, "server_port": [245, 407], "server_sid": [126, 341], "server_softwar": 407, "server_thread": 338, "server_titl": 420, "server_vers": 245, "serveraliveinterv": 167, "serverhandl": 483, "serverhtmldoc": 483, "servernam": 283, "serverproto": 483, "serverproxi": [68, 256, 420, 478, 481, 483], "serversocket": 107, "serverstandard": 303, "serverthread": 483, "servic": [102, 110, 225, 230, 255, 262, 267, 269, 282, 283, 293, 303, 314, 315, 321, 328, 335, 337, 338, 341, 344, 358, 366, 409, 419, 426, 428, 455, 461, 462, 466, 469, 472, 473, 476, 480, 481, 482, 483], "service_act": [338, 476], "service_complet": 318, "service_dur": 318, "service_id": 337, "service_pack": [352, 469], "service_pack_major": [352, 469], "service_pack_minor": [352, 469], "service_unavail": 241, "servicenam": [142, 337], "servo": 106, "serwi": [471, 483], "session": [68, 85, 93, 101, 102, 126, 155, 169, 193, 213, 242, 243, 283, 293, 297, 305, 309, 320, 329, 335, 352, 395, 436, 450, 455, 461, 466, 474, 476, 477, 479, 481, 483], "session_id": 296, "session_reus": 341, "session_stat": 341, "set": [5, 7, 9, 10, 11, 13, 17, 18, 22, 23, 24, 25, 27, 28, 31, 33, 34, 39, 41, 42, 45, 49, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 75, 76, 77, 78, 79, 81, 84, 85, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 122, 129, 133, 135, 136, 137, 138, 139, 144, 149, 151, 152, 153, 155, 157, 158, 160, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 181, 182, 183, 186, 189, 190, 191, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 215, 222, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 248, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 274, 276, 278, 279, 280, 281, 282, 283, 288, 292, 293, 295, 297, 299, 301, 305, 307, 308, 311, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 345, 346, 348, 349, 352, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 368, 374, 375, 376, 377, 380, 382, 383, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 401, 402, 403, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 429, 431, 432, 435, 436, 440, 445, 448, 450, 452, 455, 456, 458, 462, 463, 464, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "set_1": 461, "set_add": 191, "set_aft": 129, "set_al": [35, 226], "set_allowed_domain": 243, "set_alpn_protocol": [242, 341, 395, 478], "set_app": 407, "set_asyncgen_hook": [352, 430, 450, 483], "set_asyncgen_hooks_fin": [142, 352], "set_asyncgen_hooks_firstit": [142, 352], "set_attr": 358, "set_author": [340, 473, 483], "set_auto_histori": [320, 479, 483], "set_block": [293, 478, 483], "set_blocked_domain": 243, "set_boundari": [196, 199, 205], "set_break": 144, "set_callback": 73, "set_charset": 196, "set_child_watch": [131, 132, 474, 483], "set_children": 376, "set_ciph": 341, "set_complet": [320, 323], "set_completer_delim": [320, 483], "set_completion_display_matches_hook": 320, "set_conflict_handl": 292, "set_cont": [196, 197, 198, 200, 205, 207, 208, 483], "set_continu": 144, "set_cooki": 243, "set_cookie_if_ok": 243, "set_coroutine_origin_tracking_depth": [255, 352, 450, 480, 483], "set_coroutine_wrapp": [478, 480, 481, 483], "set_curr": 281, "set_dat": 271, "set_data": 250, "set_dead": 226, "set_debug": [125, 126, 130, 227, 478], "set_debuglevel": [223, 242, 288, 305, 335, 359, 478], "set_default": [120, 292, 483], "set_default_executor": [126, 130, 473, 481, 483], "set_default_typ": [196, 205], "set_default_verify_path": [341, 477, 483], "set_display": 430, "set_ecdh_curv": [341, 476, 483], "set_errno": [142, 176, 468], "set_escdelay": [177, 482, 483], "set_ev": 353, "set_event_loop": [126, 130, 131, 132, 135, 481, 483], "set_event_loop_polici": [126, 130, 132], "set_except": [125, 129, 139, 142, 166, 176, 479, 483], "set_exception_handl": [126, 130], "set_execut": [283, 483], "set_filt": 189, "set_flag": 271, "set_forkserver_preload": [283, 483], "set_from": 271, "set_handle_inherit": [293, 348, 477], "set_history_length": 320, "set_info": 271, "set_inherit": [293, 328, 337, 477, 483], "set_int_max_str_digit": [344, 352, 362, 483], "set_label": 271, "set_last_error": [142, 176, 468], "set_lineno": 465, "set_liter": 112, "set_load": [474, 477, 483], "set_loader_wrapp": [472, 473], "set_loc": 330, "set_local_ev": [353, 483], "set_memlimit": 362, "set_merg": 483, "set_nam": [93, 126, 139, 481, 483], "set_next": 144, "set_nomemori": 483, "set_nonstandard_attr": 243, "set_npn_protocol": [341, 472, 476], "set_ok": 243, "set_option_negotiation_callback": 359, "set_output_charset": [473, 481], "set_packag": [474, 477, 483], "set_package_wrapp": [472, 473], "set_panel_userptr": 483, "set_param": [196, 205, 477], "set_pasv": [223, 463], "set_payload": [196, 206, 483], "set_polici": 243, "set_posit": 408, "set_pre_input_hook": 320, "set_progress_handl": [340, 483], "set_protocol": [130, 133, 483], "set_proxi": [395, 419, 477], "set_quit": 144, "set_recsrc": 295, "set_result": [129, 133, 139, 166, 483], "set_return": 144, "set_running_loop": 483, "set_running_or_notify_cancel": 166, "set_sampl": 483, "set_select": 189, "set_seq": 190, "set_seq1": 190, "set_seq2": 190, "set_sequ": 271, "set_server_document": 420, "set_server_nam": 420, "set_server_titl": 420, "set_servername_callback": [341, 477], "set_siz": 464, "set_spec": 483, "set_start_method": [283, 474, 477], "set_startup_hook": 320, "set_stat": 226, "set_step": 144, "set_subdir": 271, "set_symmetric_differ": 483, "set_sys_last_var": 23, "set_tabs": [177, 482, 483], "set_task_factori": [126, 130, 139, 478, 483], "set_termin": 483, "set_threshold": 227, "set_trac": [144, 193, 225, 297, 352, 455, 480, 483], "set_trace_callback": [340, 476, 483], "set_transport": 483, "set_tunnel": [242, 419, 475, 483], "set_typ": 196, "set_unittest_reportflag": 193, "set_unixfrom": [196, 205], "set_until": 144, "set_upd": [191, 483], "set_url": 396, "set_usag": 292, "set_userptr": 179, "set_valu": 102, "set_vis": 271, "set_wakeup_fd": [23, 333, 468, 478, 480, 483], "set_write_buffer_limit": [130, 133], "setacl": [248, 464], "setannot": 248, "setattr": [85, 87, 93, 120, 181, 225, 250, 292, 402, 440, 450, 462, 483], "setattrfunc": [57, 63, 75], "setattribut": 410, "setattributen": 410, "setattributenod": 410, "setattributenoden": 410, "setattrofunc": [57, 63, 75], "setbas": 314, "setblock": [107, 293, 329, 337, 341, 483], "setbytestream": 416, "setcbreak": [383, 483], "setcchar": 483, "setcharacterstream": 416, "setcheckinterv": [465, 482, 483], "setcomp": [122, 431], "setcomptyp": [117, 349, 401], "setconfig": [340, 474, 483], "setcontenthandl": [416, 462], "setcontext": 186, "setdaemon": [365, 468, 472, 483], "setdefault": [22, 78, 160, 161, 184, 244, 344, 407, 428, 462, 465, 475, 476, 483], "setdefaultencod": 462, "setdefaulttimeout": [110, 337], "setdlopenflag": [293, 352, 450, 464, 476], "setdocumentloc": 415, "setdtdhandl": 416, "setegid": 293, "seten": 102, "setencod": 416, "setentityresolv": 416, "setenv": [482, 483], "seterrorhandl": 416, "seterrormod": 362, "seteuid": 293, "setfeatur": [412, 414, 416], "setfilesystemencod": 475, "setfirstweekday": 150, "setfixeds": 102, "setfmt": 295, "setfont": 102, "setformatt": [101, 102, 267, 269], "setframer": [117, 349, 401], "setgid": [293, 358], "setgroup": [293, 348, 483], "seth": [384, 483], "sethead": 384, "sethostnam": [142, 337, 476], "seti": 384, "setinputs": 340, "setinteg": 281, "setitem": [291, 390], "setitim": [333, 468, 483], "setlasterror": 176, "setlevel": [101, 102, 125, 267, 283, 465, 483], "setlimit": [340, 473, 483], "setlocal": [87, 258, 266, 416, 452, 473, 478, 483], "setloggerclass": [102, 267], "setlogmask": [142, 356], "setlogrecordfactori": [102, 267], "setmark": 117, "setmaxconn": 395, "setmod": 282, "setn": [293, 483], "setnam": [365, 472, 483], "setnchannel": [117, 349, 401], "setnfram": [117, 349, 401], "setobject": 483, "setobjectnam": 102, "setopencodehook": [24, 142], "setoutputs": 340, "setparam": [117, 349, 401], "setparamentitypars": 314, "setparamet": 295, "setpassword": 422, "setpgid": [293, 348], "setpgroup": [293, 483], "setpgrp": 293, "setpo": [117, 349, 384, 401], "setposit": 384, "setprior": [293, 476, 483], "setprofil": [33, 142, 283, 352, 365, 450, 464, 472, 483], "setprofile_all_thread": [365, 474, 483], "setproperti": [281, 415, 416], "setpublicid": 416, "setquota": 248, "setr": 483, "setrac": 483, "setraw": [383, 483], "setreadon": 102, "setrecsrc": 295, "setrecursionlimit": [247, 299, 352, 450, 462, 474, 483], "setregid": [293, 348], "setreparsedeferralen": [314, 413, 483], "setresgid": [293, 469], "setresuid": [293, 469], "setreuid": [293, 348], "setrlimit": [142, 322, 362, 483], "setsampwidth": [117, 349, 401, 477], "setscrreg": 177, "setsid": [293, 348, 483], "setsigdef": [293, 483], "setsigmask": [293, 483], "setsockopt": [337, 341, 469, 479], "setsockopt_str": 102, "setstat": [158, 318, 483], "setstr": 281, "setstream": [269, 281, 480, 483], "setstylehint": 102, "setswitchinterv": [33, 84, 352, 362, 450, 475, 482, 483], "setsystemid": 416, "setsyx": 177, "settabl": [208, 247, 400, 462, 464, 483], "settarget": [269, 483], "setter": [49, 50, 57, 68, 76, 93, 116, 225, 226, 344, 365, 389, 395, 468, 477, 483], "settiltangl": [384, 473, 474, 483], "settimeofday": 366, "settimeout": [337, 341, 395, 465, 483], "settl": [318, 468], "settrac": [33, 142, 144, 283, 352, 365, 450, 464, 472, 483], "settrace_all_thread": [365, 474, 483], "setuid": [293, 358], "setundobuff": 384, "setup": [42, 68, 73, 76, 79, 92, 102, 110, 169, 193, 247, 296, 338, 341, 355, 362, 367, 384, 388, 389, 390, 453, 455, 456, 461, 462, 463, 464, 465, 467, 468, 469, 473, 474, 475, 476, 479, 481, 483], "setup_annot": [191, 479], "setup_async_with": 473, "setup_cleanup": 191, "setup_environ": 407, "setup_except": [481, 483], "setup_fin": [191, 473, 483], "setup_keyword": [251, 465], "setup_loop": [481, 483], "setup_python": 399, "setup_script": 399, "setup_testing_default": 407, "setup_with": [191, 473], "setupclass": [68, 187, 469, 481, 483], "setupmodul": [68, 187, 469, 481, 483], "setupterm": 177, "setuptool": [68, 74, 76, 77, 251, 302, 307, 355, 399, 453, 461, 469, 472, 474, 477, 479, 483], "setvalu": [142, 405, 483], "setvalueex": [405, 483], "setworldcoordin": 384, "setx": [93, 225, 384, 461], "setxattr": [142, 293, 476, 483], "seven": [186, 244, 390, 475, 483], "seventh": 358, "sever": [7, 28, 33, 42, 66, 72, 73, 75, 77, 84, 85, 93, 94, 95, 96, 100, 101, 102, 106, 108, 109, 110, 112, 120, 135, 137, 157, 158, 161, 167, 176, 177, 183, 184, 186, 191, 193, 199, 212, 225, 241, 247, 250, 255, 259, 267, 268, 269, 271, 273, 281, 283, 287, 292, 293, 295, 299, 307, 308, 311, 319, 321, 329, 333, 335, 337, 338, 340, 341, 342, 344, 347, 348, 358, 365, 369, 375, 376, 378, 380, 381, 384, 386, 387, 388, 395, 400, 403, 405, 406, 415, 419, 425, 427, 428, 432, 434, 436, 449, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "sewel": 483, "seymour": 384, "sf": 468, "sf_append": [293, 342], "sf_archiv": [293, 342], "sf_immut": [293, 342], "sf_mnowait": 293, "sf_nocach": [293, 483], "sf_nodiskio": 293, "sf_nounlink": [293, 342], "sf_snapshot": [293, 342], "sf_sync": 293, "sftp": 394, "sgha": 483, "sgi": 249, "sgid": 293, "sgml": [240, 273, 417, 468], "sgmlop": 462, "sh": [68, 84, 102, 164, 301, 309, 331, 456, 462, 483], "sha": [173, 235, 398, 467, 468, 472, 475, 476, 479, 483], "sha1": [235, 456, 467, 469, 474, 475, 483], "sha2": [235, 341, 474, 482, 483], "sha224": [235, 467, 469, 475], "sha256": [235, 251, 337, 341, 456, 467, 469, 475, 483], "sha3": [235, 456, 473, 474, 482, 483], "sha384": [235, 341, 467, 469, 475], "sha3_224": [235, 479], "sha3_256": [235, 479, 483], "sha3_384": [235, 479], "sha3_512": [235, 479, 483], "sha512": [235, 456, 467, 469, 475, 483], "shachnev": 483, "shadow": [68, 85, 86, 173, 233, 254, 255, 310, 350, 358, 450, 467, 477, 482, 483], "shah": 483, "shahaf": [473, 478, 483], "shake": [68, 174, 456, 473, 479, 482, 483], "shake_128": [235, 479], "shake_256": [235, 479], "shall": [58, 103, 299, 329, 415, 426, 461, 475], "shallow": [17, 33, 68, 160, 170, 181, 182, 193, 216, 244, 254, 255, 299, 344, 358, 385, 442, 483], "shalt": [345, 475], "shane": 483, "shannon": [472, 473, 474, 476, 480, 481, 482, 483], "shantanu": [473, 474, 483], "shape": [2, 63, 68, 94, 222, 225, 284, 318, 344, 386, 468, 472, 473, 476, 483], "shapelist": 384, "shapenam": 384, "shapes": 384, "shapetransform": 384, "sharablelist": 483, "sharafutdinov": [480, 483], "share": [5, 7, 33, 35, 41, 42, 45, 58, 63, 64, 68, 71, 73, 76, 77, 79, 84, 94, 98, 100, 102, 104, 107, 115, 118, 120, 133, 138, 164, 181, 183, 186, 212, 215, 226, 230, 235, 259, 261, 266, 267, 278, 284, 292, 293, 294, 296, 299, 311, 322, 326, 330, 337, 338, 340, 342, 344, 345, 352, 354, 358, 365, 366, 369, 375, 388, 426, 427, 428, 430, 432, 440, 455, 456, 461, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 477, 479, 480, 481, 483, 484], "share_mod": 142, "shareabl": 483, "shareablelist": [284, 483], "shared": 223, "shared_ciph": [341, 478, 483], "shared_link": 261, "shared_memori": [68, 164, 254, 352, 481, 483], "sharedarraybuff": 483, "sharedctyp": [68, 164, 478, 483], "sharedinstal": 483, "sharedmemori": [283, 284, 483], "sharedmemorymanag": [284, 483], "sharedmemoryserv": 481, "sharepoint": [231, 422, 483], "sharma": 483, "sharp": [84, 158], "sharper": [479, 480, 483], "shasha": 318, "shashwat": 475, "shaulov": 483, "shawley": 483, "shawn": 468, "she": 167, "shea": 483, "shear": 384, "shearfactor": 384, "shebang": [68, 167, 399, 421, 448, 458, 460, 476, 479, 483], "shed": 167, "sheesh": 464, "sheet": [150, 384, 386, 483], "sheila": 102, "shelf": [330, 344, 475, 477], "shell": [35, 68, 73, 76, 79, 80, 85, 86, 87, 92, 95, 102, 111, 124, 126, 130, 137, 151, 155, 164, 167, 177, 193, 220, 222, 231, 254, 255, 262, 272, 284, 288, 292, 293, 294, 309, 313, 340, 350, 352, 354, 362, 368, 369, 384, 388, 399, 400, 405, 438, 439, 447, 448, 449, 450, 451, 453, 455, 456, 459, 460, 461, 462, 464, 466, 469, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "shellexecut": [293, 483], "shelv": [68, 84, 184, 254, 274, 298, 299, 327, 344, 462, 465, 475, 483], "shepherd": [462, 465], "shi": [472, 473], "shield": [68, 124, 481, 483], "shift": [47, 68, 177, 178, 183, 186, 191, 247, 283, 293, 376, 428, 433, 462, 464, 466, 468, 469, 473, 476, 483], "shift_expr": [430, 431], "shift_ji": 158, "shift_jis_2004": 158, "shift_jisx0213": 158, "shift_path_info": 407, "shiftji": 158, "shiftjis2004": 158, "shiftjisx0213": 158, "shik": [466, 467], "shim": 483, "shimizukawa": 483, "shin": 483, "shinya": [482, 483], "ship": [132, 184, 250, 253, 369, 388, 421, 461, 462, 465, 469, 471, 475, 477, 478, 482, 483], "shipman": 483, "shkop": [472, 483], "shl": 475, "shlex": [68, 114, 126, 137, 167, 222, 254, 297, 348, 474, 482, 483], "shlib_suffix": 477, "shlwapi": 483, "shm": [284, 483], "shm_a": 284, "shm_b": 284, "shoe": 106, "shop": [441, 454], "shopkeep": 441, "short": [5, 7, 41, 42, 58, 63, 73, 75, 84, 94, 95, 96, 100, 102, 103, 106, 107, 120, 121, 159, 176, 177, 193, 228, 245, 259, 267, 271, 283, 292, 293, 314, 331, 344, 347, 348, 352, 362, 366, 369, 384, 386, 388, 411, 413, 421, 434, 442, 455, 461, 462, 464, 465, 467, 469, 475, 476, 477, 479, 480, 482, 483], "short_array": 176, "short_empty_el": [413, 417, 477], "short_timeout": [362, 483], "short_titl": 120, "shortbyt": 435, "shortbyteschar": 435, "shortbytesitem": 435, "shortcom": [271, 465], "shortcut": [61, 68, 103, 193, 235, 247, 298, 321, 344, 358, 385, 428, 461, 466, 468, 480, 483], "shortdescript": [388, 483], "shorten": [184, 321, 364, 475, 476, 477, 482, 483], "shorter": [106, 202, 225, 235, 261, 292, 347, 430, 462, 463, 466, 468, 469, 474, 475, 483], "shortest": [95, 195, 225, 261, 462, 467, 469, 470, 471, 475], "shorthand": [23, 85, 99, 120, 191, 193, 259, 302, 337, 364, 369, 381, 386, 400, 427, 443, 465, 466, 477], "shortmessag": [110, 245], "shortopt": 228, "shortstr": 435, "shortstringchar": 435, "shortstringitem": 435, "shot": [68, 119, 169, 328, 480], "should": [5, 7, 10, 11, 13, 22, 23, 25, 27, 28, 31, 33, 34, 35, 37, 42, 45, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 94, 95, 96, 101, 102, 103, 106, 109, 110, 112, 115, 117, 120, 128, 132, 133, 135, 137, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 180, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 215, 221, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 287, 288, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 314, 319, 320, 321, 322, 324, 325, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 355, 358, 359, 362, 364, 365, 366, 369, 371, 374, 375, 376, 378, 380, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 406, 408, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "shouldflush": 269, "shouldn": [51, 64, 76, 100, 106, 133, 272, 302, 352, 388, 395, 463, 464, 466, 467, 468, 471, 479, 483], "shouldstop": [96, 388], "show": [33, 34, 68, 72, 73, 76, 85, 89, 92, 93, 94, 95, 98, 100, 101, 102, 103, 109, 110, 120, 139, 151, 152, 155, 158, 160, 169, 176, 179, 186, 189, 190, 193, 202, 213, 216, 225, 226, 235, 242, 243, 247, 248, 250, 261, 262, 267, 278, 283, 292, 293, 299, 307, 308, 321, 332, 334, 337, 340, 341, 343, 344, 345, 358, 369, 373, 375, 376, 378, 380, 381, 384, 388, 399, 400, 419, 420, 421, 431, 435, 442, 451, 452, 453, 455, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 477, 478, 479, 481, 482, 483], "show_alloc_count": [34, 479, 482, 483], "show_bug": 483, "show_cach": [191, 483], "show_chor": 94, "show_cmd": [142, 293], "show_cod": [191, 475, 477], "show_flag_valu": 211, "show_miss": 380, "show_ref_count": 34, "show_track_count": [479, 483], "showalloccount": [455, 479, 482, 483], "showcas": 133, "showerror": 373, "showinfo": 373, "shown": [23, 42, 73, 77, 92, 94, 96, 100, 101, 102, 103, 108, 110, 120, 169, 181, 186, 190, 191, 193, 203, 214, 247, 267, 268, 292, 297, 308, 313, 319, 325, 348, 366, 375, 376, 381, 384, 388, 394, 400, 428, 461, 468, 478, 479, 480, 481, 482, 483], "showparti": 272, "showrefcount": [34, 455, 456, 477, 483], "showroom": 475, "showsyntaxerror": 157, "showtop": 483, "showtraceback": [157, 478, 483], "showturtl": 384, "showwarn": [373, 400, 468, 483], "showwindow": 348, "shrank": 483, "shrink": [60, 184, 466, 483], "shrt": 344, "shrunk": [463, 483], "shtml": 469, "shttp": 394, "shtull": 464, "shuffl": [84, 318, 319, 473, 475, 482, 483], "shut": [51, 72, 102, 245, 328, 333, 337, 338, 352, 384, 407, 452, 455, 465, 469, 478, 482, 483], "shut_rd": 337, "shut_rdwr": [337, 341, 483], "shut_wr": 337, "shutdown": [42, 87, 100, 102, 107, 135, 136, 166, 212, 213, 227, 248, 267, 269, 283, 284, 333, 337, 338, 341, 365, 402, 405, 428, 430, 455, 468, 475, 477, 478, 480, 482, 483], "shutdown_asyncgen": [126, 130, 352, 430, 479, 483], "shutdown_default_executor": [126, 135, 482, 483], "shutdown_timeout": [283, 483], "shutil": [68, 84, 102, 110, 119, 142, 166, 219, 225, 234, 254, 293, 296, 348, 358, 362, 402, 451, 465, 468, 469, 472, 480, 482, 483], "si": [73, 178, 348], "si_band": [333, 483], "si_cod": [293, 333, 482, 483], "si_errno": 333, "si_pid": [293, 333], "si_signo": [293, 333], "si_status": [293, 333], "si_uid": [293, 333], "sibl": [7, 85, 112, 120, 225, 376, 410], "sicp": 95, "siddharth": 483, "side": [7, 14, 22, 33, 52, 60, 68, 73, 75, 84, 85, 95, 102, 106, 109, 110, 133, 151, 160, 169, 177, 181, 187, 190, 191, 196, 226, 242, 243, 250, 266, 267, 269, 283, 288, 293, 299, 302, 311, 318, 323, 324, 330, 337, 338, 344, 348, 352, 362, 369, 376, 386, 388, 389, 413, 425, 427, 430, 432, 436, 442, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "side_effect": [68, 187, 479, 483], "side_modul": 483, "sidebar": 483, "sidestep": 466, "sidh": 467, "sidney": 483, "siev": 261, "sig": [80, 100, 109, 111, 126, 142, 158, 235, 255, 293, 333, 378, 459, 462, 463, 465, 469, 478], "sig_block": 333, "sig_dfl": [23, 115, 333, 348, 483], "sig_ign": [23, 115, 333, 348, 483], "sig_setmask": 333, "sig_unblock": 333, "sigabrt": [188, 214, 293, 333, 455, 476, 483], "sigact": [59, 483], "sigalrm": [333, 483], "sigaltstack": [214, 483], "sigbreak": 333, "sigbus": [188, 214, 333, 455, 476], "sigchld": [132, 293, 333], "sigcld": 333, "sigcont": [293, 333], "sigdef": 293, "sigfillset": 483, "sigfp": [188, 214, 333, 455, 476, 483], "sight": [73, 141], "sighup": [333, 483], "sigil": [188, 214, 333, 455, 476], "siginfo": 333, "siginfo_t": [293, 333, 483], "sigint": [23, 68, 115, 135, 283, 297, 316, 333, 348, 388, 472, 475, 481, 483], "siginterrupt": [333, 468, 476, 483], "sigiot": 483, "sigkil": [133, 137, 283, 293, 333, 348, 360, 466, 480, 483], "sigma": [318, 343, 481], "sigmask": 333, "sign": [1, 49, 64, 68, 75, 85, 106, 121, 141, 154, 158, 167, 176, 177, 183, 186, 196, 201, 209, 221, 225, 228, 235, 266, 268, 269, 272, 275, 283, 292, 293, 295, 297, 299, 319, 336, 344, 345, 347, 365, 366, 394, 413, 428, 430, 435, 459, 461, 463, 464, 466, 467, 468, 469, 474, 475, 477, 479, 481, 483], "signal": [32, 33, 34, 49, 59, 63, 68, 92, 95, 100, 102, 106, 115, 126, 130, 132, 133, 135, 137, 141, 142, 166, 176, 177, 185, 187, 191, 193, 213, 242, 254, 257, 258, 260, 261, 267, 268, 275, 283, 290, 292, 293, 297, 299, 309, 319, 322, 328, 329, 331, 337, 340, 341, 345, 348, 352, 362, 365, 366, 371, 381, 386, 395, 413, 415, 419, 430, 432, 455, 462, 463, 464, 465, 466, 467, 468, 469, 472, 475, 479, 481, 483], "signaldict": 483, "signalnum": [142, 333], "signam": [126, 333], "signatur": [13, 17, 45, 58, 63, 68, 71, 85, 93, 94, 100, 101, 102, 122, 139, 145, 159, 160, 161, 169, 181, 183, 213, 216, 225, 226, 235, 247, 267, 268, 292, 299, 313, 315, 332, 340, 341, 348, 352, 381, 384, 385, 386, 389, 394, 413, 415, 419, 424, 428, 430, 440, 468, 471, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "signed_numb": [427, 431], "signed_real_numb": 431, "signer": 235, "signifi": [94, 181, 245, 340, 344, 428, 435, 474], "signific": [5, 41, 85, 95, 99, 102, 106, 109, 132, 133, 158, 169, 178, 186, 193, 197, 258, 259, 261, 269, 275, 293, 299, 308, 341, 344, 345, 352, 365, 388, 411, 428, 432, 434, 435, 444, 455, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "significand": [345, 352], "signoff": 305, "signum": [23, 84, 115, 126, 214, 293, 333, 483], "sigpend": [333, 476], "sigpip": [68, 348], "sigprocmask": 333, "sigprof": 333, "sigquit": [333, 348], "sigrtmax": 483, "sigrtmin": 483, "sigsegv": [188, 214, 333, 455, 476, 483], "sigset": [333, 483], "sigset_t": 483, "sigsgv": 483, "sigstkflt": [333, 483], "sigstksz": 483, "sigstop": 333, "sigterm": [68, 133, 137, 283, 333, 348, 468, 483], "sigtimedwait": [333, 476, 478, 483], "sigusr1": 333, "sigusr2": 333, "sigvtalrm": 333, "sigwait": [333, 476], "sigwaitinfo": [333, 476, 478, 483], "sigwinch": [177, 333, 483], "sigxcpu": 322, "sigxfsz": 348, "sigxfz": 348, "sijin": 476, "sila": 483, "sile": 473, "silenc": [59, 120, 225, 323, 332, 397, 469, 475, 477, 482, 483], "silent": [5, 22, 49, 56, 59, 66, 101, 102, 109, 115, 133, 169, 186, 218, 248, 267, 269, 271, 278, 283, 284, 293, 295, 297, 307, 308, 330, 332, 334, 340, 348, 365, 394, 425, 436, 455, 461, 462, 466, 467, 469, 470, 474, 475, 477, 478, 480, 481, 482, 483], "silentghost": [478, 479, 483], "silicon": [68, 459, 483], "silli": [176, 292], "sillier": 292, "silva": 483, "sim": 472, "similar": [5, 7, 9, 13, 22, 23, 26, 28, 31, 33, 45, 49, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 79, 84, 85, 93, 94, 95, 96, 100, 101, 102, 106, 109, 110, 112, 120, 133, 137, 139, 146, 151, 157, 158, 163, 167, 169, 170, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 195, 196, 205, 207, 213, 220, 225, 226, 228, 230, 233, 235, 242, 243, 245, 247, 250, 251, 252, 255, 258, 259, 261, 266, 268, 270, 271, 276, 282, 283, 292, 293, 297, 299, 301, 302, 305, 308, 313, 319, 321, 331, 332, 335, 337, 338, 339, 340, 341, 344, 347, 348, 352, 355, 358, 364, 365, 366, 369, 375, 381, 382, 384, 386, 388, 394, 408, 410, 411, 413, 414, 417, 419, 422, 425, 427, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "simionato": [103, 465], "simon": [465, 483], "simon04": 483, "simpkin": 476, "simpl": [7, 33, 43, 63, 64, 67, 68, 73, 75, 84, 85, 92, 94, 95, 99, 100, 101, 102, 103, 109, 110, 113, 115, 120, 122, 138, 141, 151, 155, 158, 161, 167, 169, 170, 173, 174, 176, 181, 183, 184, 187, 189, 190, 194, 196, 200, 205, 207, 208, 209, 226, 230, 234, 242, 244, 248, 255, 262, 267, 268, 269, 271, 278, 283, 289, 292, 293, 295, 297, 299, 304, 307, 308, 319, 324, 329, 331, 333, 335, 337, 340, 343, 344, 345, 347, 358, 359, 362, 365, 369, 378, 380, 381, 384, 385, 386, 388, 394, 395, 399, 400, 406, 407, 408, 410, 411, 413, 414, 419, 420, 422, 427, 430, 431, 436, 440, 446, 455, 461, 462, 463, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 481, 482, 483, 484], "simple_app": 407, "simple_enum": 483, "simple_exampl": [101, 102], "simple_logging_config": 101, "simple_logging_modul": 101, "simple_serv": [68, 256, 467, 479, 483], "simple_stmt": [427, 431], "simplecooki": [244, 483], "simpledialog": [68, 368, 369, 483], "simpleexampl": [101, 102], "simpleexpr": 429, "simplefilt": [362, 400, 468, 469, 473, 483], "simpleformatt": 101, "simplehandl": [407, 462], "simplehttp": 245, "simplehttprequesthandl": [245, 333, 480, 483], "simplehttpserv": [470, 483], "simpleinstal": 461, "simpleinstalldescript": 461, "simplejson": [468, 469], "simplenamespac": [68, 160, 307, 385, 399, 482, 483], "simpleparamspec": 427, "simplepath": 483, "simplequeu": [68, 164, 269, 283, 344, 480, 482, 483], "simpler": [5, 63, 68, 92, 102, 106, 120, 151, 225, 235, 283, 319, 344, 369, 411, 413, 415, 432, 461, 462, 463, 464, 465, 467, 469, 476, 477, 480, 483, 484], "simpleserv": 483, "simplest": [33, 63, 72, 73, 76, 95, 99, 100, 101, 106, 110, 120, 158, 169, 186, 193, 200, 299, 319, 341, 365, 386, 388, 428, 430, 455, 462, 464, 465], "simpletypevar": 427, "simpletypevartupl": 427, "simplexmlrpcdispatch": [480, 483], "simplexmlrpcrequesthandl": [420, 466, 469], "simplexmlrpcserv": [68, 256, 419, 464, 466, 467, 468, 469, 470], "simpli": [7, 63, 72, 73, 75, 76, 79, 84, 85, 95, 99, 102, 103, 106, 109, 120, 139, 152, 155, 158, 167, 176, 177, 183, 186, 193, 225, 230, 250, 255, 262, 267, 268, 269, 272, 283, 292, 293, 297, 299, 304, 314, 319, 324, 325, 333, 335, 340, 342, 345, 348, 352, 353, 365, 385, 386, 388, 395, 400, 403, 410, 411, 419, 421, 432, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 478, 483], "simplic": [64, 75, 262, 340, 344, 462, 464, 483], "simplif": [215, 483], "simplifi": [28, 33, 42, 66, 93, 95, 106, 110, 124, 128, 135, 158, 169, 183, 197, 201, 216, 226, 250, 255, 283, 319, 337, 338, 375, 376, 378, 410, 427, 435, 461, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 482, 483], "simplist": 102, "simpson": 481, "simsalabim": 475, "simul": [23, 68, 92, 93, 102, 115, 126, 133, 136, 177, 234, 299, 318, 333, 343, 347, 363, 384, 463, 464, 477], "simultan": [33, 63, 102, 137, 138, 149, 186, 247, 258, 261, 271, 281, 330, 338, 340, 362, 365, 375, 436, 461, 468, 478, 481, 483], "sin": [122, 154, 186, 275, 428, 465], "sin6_flowinfo": 337, "sin6_scope_id": 337, "sinc": [5, 7, 13, 22, 23, 28, 33, 34, 45, 46, 49, 54, 58, 59, 61, 63, 64, 68, 72, 73, 75, 76, 78, 79, 84, 85, 92, 93, 94, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 133, 144, 146, 149, 151, 157, 161, 167, 169, 173, 176, 177, 181, 183, 186, 190, 193, 194, 196, 199, 201, 203, 205, 207, 208, 209, 218, 222, 225, 226, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 258, 262, 266, 267, 268, 269, 271, 272, 278, 283, 288, 292, 293, 295, 297, 307, 308, 314, 319, 328, 330, 332, 335, 337, 338, 339, 340, 341, 344, 345, 347, 352, 355, 358, 362, 364, 365, 366, 369, 376, 378, 380, 381, 382, 386, 388, 395, 400, 405, 410, 411, 412, 414, 415, 419, 421, 422, 427, 428, 430, 432, 434, 435, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sinclair": 478, "sine": [186, 275], "sinfo": 267, "singapor": 413, "singaravelan": 483, "singh": [480, 483], "singl": [5, 7, 9, 16, 22, 23, 25, 31, 33, 39, 48, 51, 58, 59, 61, 63, 64, 66, 67, 68, 71, 73, 76, 79, 85, 87, 92, 94, 95, 96, 99, 100, 103, 106, 108, 109, 110, 120, 122, 144, 146, 151, 157, 158, 159, 163, 166, 167, 176, 177, 178, 181, 183, 186, 189, 190, 191, 193, 195, 196, 202, 203, 207, 208, 213, 218, 220, 223, 225, 226, 230, 234, 235, 242, 243, 247, 248, 250, 251, 253, 255, 258, 259, 261, 265, 267, 268, 269, 270, 271, 275, 278, 281, 283, 284, 288, 292, 293, 297, 299, 302, 305, 307, 308, 314, 315, 318, 319, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 362, 364, 366, 369, 371, 376, 378, 380, 381, 386, 388, 394, 395, 400, 408, 410, 413, 415, 417, 419, 421, 422, 427, 428, 430, 431, 432, 434, 435, 436, 441, 444, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "single_char": 109, "single_subscript_attribute_target": 431, "single_target": 431, "singleaddresshead": 203, "singledispatch": [87, 226, 473, 477, 480, 483], "singledispatchmethod": [226, 481, 483], "singleton": [16, 20, 33, 45, 46, 49, 56, 58, 63, 73, 85, 87, 94, 102, 122, 183, 274, 299, 344, 389, 419, 427, 428, 430, 441, 442, 456, 463, 473, 479, 480, 483], "singleus": 169, "singular": [230, 483], "sinh": [154, 275], "sinpi": 483, "sio": 85, "sio_keepalive_v": 337, "sio_loopback_fast_path": [337, 479, 483], "sio_rcval": 337, "sionneau": [478, 479], "sip": [79, 394], "siphash": [426, 477, 483], "siphash13": [456, 473, 483], "siphash24": [68, 456, 473, 483], "sir": [413, 441, 471, 481], "siregar": [482, 483], "sit": [149, 375, 417], "site": [33, 34, 68, 85, 95, 96, 109, 110, 156, 167, 225, 243, 244, 250, 251, 254, 259, 267, 293, 302, 315, 335, 352, 354, 355, 358, 395, 399, 400, 414, 430, 432, 438, 450, 453, 455, 456, 461, 462, 467, 469, 470, 476, 477, 478, 483, 484], "site_import": [33, 34, 474], "site_map": [396, 483], "sitecustom": [68, 315, 354, 438, 469, 477, 483], "sitedir": 334, "sitemap": 396, "situat": [7, 42, 61, 63, 73, 75, 85, 94, 95, 100, 101, 102, 103, 110, 120, 151, 158, 169, 181, 191, 207, 213, 230, 235, 250, 253, 258, 267, 271, 283, 292, 335, 348, 362, 365, 397, 400, 410, 428, 464, 469, 470, 474, 477, 478, 479, 483], "sivaraam": 483, "six": [102, 108, 183, 225, 226, 299, 318, 319, 340, 376, 394, 422, 468, 475, 477, 480, 481, 483], "sixth": [299, 464, 481], "sixtofour": 259, "sizabl": [463, 464], "size": [3, 5, 7, 9, 18, 28, 31, 34, 39, 41, 42, 43, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 68, 73, 75, 76, 92, 93, 94, 96, 98, 100, 101, 102, 109, 115, 117, 118, 120, 133, 137, 141, 142, 144, 145, 149, 151, 153, 158, 161, 163, 173, 174, 177, 184, 185, 186, 190, 191, 215, 216, 219, 223, 225, 226, 242, 245, 247, 248, 250, 251, 258, 261, 262, 266, 269, 270, 278, 283, 284, 295, 299, 305, 308, 311, 314, 320, 321, 322, 335, 337, 338, 340, 342, 343, 344, 348, 349, 352, 358, 360, 361, 362, 364, 365, 369, 372, 375, 376, 381, 384, 386, 388, 395, 408, 410, 421, 422, 428, 432, 446, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "size1": 75, "size2": 75, "size_diff": 382, "size_or_initi": 283, "size_t": [9, 10, 18, 28, 34, 35, 39, 42, 59, 64, 176, 347, 476, 483], "sizeabl": 483, "sizegrip": [68, 368], "sizehint": [133, 158, 328, 483], "sizeof": [35, 42, 63, 76, 176, 303, 347, 352, 389, 483], "sizeof_digit": [352, 469, 471], "sizeof_long_doubl": 483, "sizeof_void_p": 473, "sizeof_x": 483, "sjis": 158, "sjis2004": 158, "sjis_2004": 158, "sjisx0213": 158, "sjoerd": [344, 446, 462, 468], "skcipher": 337, "skein": [223, 235], "skeleton": 93, "sketch": [193, 243, 441, 467, 468], "ski": [476, 477, 481, 483], "skill": [85, 384], "skimp": 193, "skip": [7, 33, 34, 35, 58, 68, 84, 95, 96, 103, 106, 109, 139, 144, 153, 158, 163, 167, 169, 183, 187, 191, 193, 204, 205, 218, 250, 255, 261, 262, 267, 271, 272, 297, 304, 319, 331, 334, 342, 344, 347, 352, 358, 362, 376, 386, 399, 413, 415, 426, 427, 436, 452, 455, 461, 462, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 482, 483], "skip_accept_encod": 242, "skip_curdir": 163, "skip_file_prefix": [400, 483], "skip_host": 242, "skip_if_broken_multiprocessing_synchron": [362, 483], "skip_source_first_lin": 34, "skip_unless_bind_unix_socket": [362, 483], "skip_unless_symlink": 362, "skip_unless_xattr": 362, "skipif": [362, 388], "skipinitialspac": [175, 483], "skipkey": [262, 304, 483], "skippedent": 415, "skipston": [403, 474, 483], "skiptest": [362, 388, 469, 477, 483], "skipunless": [388, 471], "skipunlesshasattr": 388, "skit": [73, 193], "skonieczni": 483, "skrobov": 483, "skurikhin": 483, "sky": 474, "skycach": 223, "skycaptain": 475, "sl": [84, 284, 483], "slackbook": 460, "slackwar": 460, "slant": [372, 462], "slash": [106, 221, 225, 253, 255, 259, 292, 293, 296, 313, 358, 377, 394, 422, 423, 461, 483], "slash_no_default": 431, "slash_with_default": 431, "slashequ": 377, "slashwithdefault": 431, "slate": [193, 358, 432, 477, 478, 483], "slave": [288, 293, 309, 369, 483], "slave_open": [474, 483], "sle257ohy9fvq07z": 341, "sleep": [68, 84, 95, 96, 102, 123, 124, 125, 126, 129, 133, 134, 135, 137, 138, 166, 167, 177, 257, 283, 322, 325, 333, 340, 348, 362, 366, 468, 472, 473, 476, 478, 479, 480, 481, 483], "sleep_for": 134, "sleeper": 483, "sleepi": 475, "sleeping_retri": 362, "slen": 102, "slept": 134, "sles": 480, "slew": 202, "slghtli": 102, "slice": [7, 40, 42, 54, 56, 60, 68, 85, 87, 95, 121, 122, 141, 168, 171, 176, 191, 206, 213, 225, 228, 261, 278, 283, 291, 293, 296, 299, 319, 340, 344, 366, 415, 431, 436, 442, 446, 449, 450, 462, 464, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 480, 482, 483, 484], "slice_item": 430, "slice_list": 430, "slice_richcompar": 483, "slicelength": 56, "slide": [109, 411], "slider": 483, "slideshow": 411, "sliding_window": 261, "slight": [75, 79, 85, 95, 101, 102, 110, 169, 186, 196, 215, 230, 243, 251, 258, 292, 293, 297, 307, 308, 341, 344, 384, 394, 432, 436, 462, 464, 465, 466, 467, 468, 469, 475, 477, 478, 480, 482, 483], "slimmer": 269, "slope": 343, "slot": [10, 16, 32, 45, 47, 49, 50, 58, 61, 68, 75, 76, 93, 102, 134, 181, 191, 212, 226, 250, 255, 281, 283, 299, 316, 344, 385, 386, 428, 430, 462, 463, 464, 466, 467, 468, 470, 472, 473, 474, 476, 477, 478, 481, 482, 483], "slot_descriptor": 255, "slot_nam": 93, "slot_tp_getattr_hook": 93, "slot_valu": 93, "slotdef": 483, "slotfunc": 102, "slow": [92, 102, 184, 235, 247, 258, 261, 269, 283, 330, 338, 344, 353, 362, 384, 386, 422, 423, 462, 463, 465, 466, 468, 482, 483], "slow_callback_dur": [125, 126], "slowdown": 483, "slower": [84, 85, 106, 158, 226, 247, 258, 270, 283, 330, 384, 465, 466, 468, 470, 474, 480, 481, 482, 483], "slowest": [234, 362, 384, 388, 474, 483], "slowli": [73, 102], "sluggish": 102, "sm": 477, "small": [5, 33, 39, 42, 55, 58, 63, 68, 73, 84, 85, 92, 94, 99, 102, 106, 108, 109, 158, 169, 176, 186, 190, 193, 243, 247, 258, 261, 271, 275, 283, 288, 293, 308, 319, 330, 333, 337, 344, 362, 365, 375, 382, 388, 407, 413, 428, 436, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 479, 481, 482, 483], "small_stack": 483, "small_sum": 382, "smaller": [25, 42, 64, 92, 93, 106, 133, 176, 183, 186, 190, 191, 226, 259, 270, 275, 293, 299, 308, 345, 347, 355, 369, 376, 382, 384, 394, 411, 428, 430, 435, 455, 463, 465, 466, 467, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "smallest": [95, 108, 109, 183, 186, 275, 344, 352, 362, 369, 382, 452, 465, 466, 467, 468, 483], "smalltabl": 476, "smalltak": 440, "smalltalk": [84, 95, 160, 388, 440, 463], "sman": 483, "smarrita": 467, "smart": [103, 247, 464, 483], "smarter": [471, 475, 483], "smaxcol": 177, "smaxrow": 177, "smb": [481, 483], "smelli": 483, "smime": 201, "smincol": 177, "sminrow": 177, "smirnov": 483, "smith": [466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sml": 261, "smm": 284, "smooth": 343, "smp": 284, "sms": 483, "sms2": 483, "smtp": [68, 80, 84, 101, 102, 194, 200, 201, 203, 208, 254, 256, 269, 341, 451, 462, 464, 468, 475, 476, 477, 478, 482, 483], "smtp_code": 335, "smtp_error": 335, "smtp_ssl": [335, 468, 476, 482, 483], "smtpauthenticationerror": 335, "smtpchannel": [477, 478, 479, 483], "smtpconnecterror": 335, "smtpd": [68, 473, 479, 482, 483], "smtpdataerror": 335, "smtpexcept": [335, 477], "smtphandler": [68, 101, 102, 118, 268, 483], "smtpheloerror": 335, "smtplib": [68, 84, 102, 142, 194, 200, 201, 208, 254, 256, 269, 341, 451, 464, 468, 474, 475, 479, 483], "smtpnotsupport": 335, "smtpnotsupportederror": [335, 483], "smtprecipientsrefus": 335, "smtpresponseexcept": 335, "smtpsenderrefus": 335, "smtpserver": [477, 478, 479, 483], "smtpserverdisconnect": [335, 483], "smtputf8": [208, 335, 478, 483], "smtputf8simtest": 483, "sn": 465, "snake": [122, 160], "snan": [186, 469], "snapshot": [68, 185, 257, 342, 477], "snapshot1": 382, "snapshot2": 382, "snd": 349, "snd_alia": 406, "snd_async": 406, "snd_filenam": 406, "snd_loop": 406, "snd_memori": [406, 483], "snd_nodefault": 406, "snd_nostop": 406, "snd_nowait": 406, "snd_purg": 406, "sndctl_dsp_setfmt": 295, "sndctl_dsp_sync": 295, "sndhdr": [68, 254, 350, 473, 474, 483], "sndr": 336, "sndt": 336, "sndtool": 336, "sneak": 483, "sneakili": 464, "sneezi": 475, "snew": 394, "sni": [341, 474, 477, 480, 483], "sni_callback": [341, 483], "snider": [479, 483], "snif": 110, "sniff": [175, 483], "sniffer": [175, 337, 483], "snip": 96, "snippet": [23, 94, 102, 139, 170, 244, 268, 331, 341, 365, 461, 464, 465, 467, 478, 483], "snmp": 107, "snow": [324, 473, 474, 476, 477, 478, 479, 480, 481], "snowman": [102, 474], "snprintf": [18, 464, 472, 483], "so": [5, 7, 11, 13, 22, 23, 25, 27, 28, 31, 33, 34, 41, 42, 45, 49, 54, 57, 59, 63, 64, 66, 68, 71, 72, 73, 75, 76, 77, 79, 84, 85, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 137, 139, 141, 151, 153, 157, 158, 159, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 186, 190, 191, 193, 196, 199, 200, 201, 202, 203, 205, 207, 208, 209, 213, 214, 215, 216, 218, 221, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 250, 253, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 278, 283, 284, 292, 293, 297, 299, 302, 308, 312, 314, 319, 325, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 385, 386, 388, 395, 399, 405, 406, 407, 410, 411, 413, 415, 416, 420, 421, 423, 425, 426, 427, 428, 429, 430, 431, 432, 436, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "so_": 337, "so_domain": [337, 479], "so_exclusiveaddrus": 362, "so_incoming_cpu": [337, 483], "so_mark": 337, "so_passcr": 337, "so_passsec": [337, 479], "so_peersec": [337, 479], "so_protocol": [337, 479], "so_reuseaddr": [126, 337, 362, 473, 479, 480, 481, 482, 483], "so_reuseport": [126, 337, 362, 483], "so_rtabl": [337, 483], "so_setfib": 469, "so_user_cooki": [337, 483], "so_vm": 337, "soabi": [475, 483], "soapbox": [68, 187], "soar": 483, "sobolev": [473, 474, 483], "soc": 122, "sock": [102, 106, 107, 126, 133, 136, 242, 308, 329, 337, 338, 341, 362, 475, 478, 480, 483], "sock_": [337, 477, 483], "sock_accept": [126, 130, 480, 483], "sock_cloexec": [337, 480, 483], "sock_connect": [126, 130, 478, 483], "sock_dgram": [126, 269, 337, 338, 469], "sock_max_s": 362, "sock_nonblock": [337, 480, 483], "sock_raw": 337, "sock_rdm": 337, "sock_recv": [126, 130, 480, 483], "sock_recv_into": [126, 130, 480, 483], "sock_recvfrom": [126, 130, 473, 483], "sock_recvfrom_into": [126, 130, 473, 483], "sock_sendal": [126, 130, 480, 483], "sock_sendfil": [126, 130, 480, 483], "sock_sendto": [126, 130, 473, 483], "sock_seqpacket": 337, "sock_stream": [102, 107, 126, 269, 337, 338, 341, 362, 469, 480], "sockaddr": [126, 142, 337], "sockaddr_in6": 337, "sockaddr_un": 483, "socket": [23, 68, 80, 87, 95, 97, 99, 101, 106, 109, 124, 127, 130, 131, 142, 158, 170, 171, 187, 207, 212, 213, 223, 235, 242, 245, 247, 248, 254, 256, 257, 258, 259, 260, 267, 268, 269, 283, 284, 288, 293, 296, 305, 307, 322, 328, 329, 333, 335, 338, 342, 358, 359, 369, 402, 407, 413, 428, 439, 452, 456, 462, 463, 464, 465, 466, 467, 468, 469, 474, 483], "socket_help": [68, 187, 254], "socket_typ": 338, "socketcan": [476, 483], "sockethandl": [68, 101, 102, 118, 268, 473, 477], "socketio": 235, "socketkind": 337, "socketmodul": 483, "socketpair": [126, 133, 136, 333, 337, 466, 480, 483], "socketserv": [68, 102, 241, 245, 254, 256, 337, 420, 468, 469, 470, 483], "sockettyp": 337, "socknam": [133, 483], "socktyp": [102, 269, 337, 362, 469], "socular": 483, "soffer": [480, 483], "soft": [177, 247, 263, 322, 358, 362, 427, 431, 435, 436, 472, 483], "soft_keyword": [377, 431], "softkwlist": 263, "softspac": [470, 483], "softwar": [33, 68, 69, 77, 80, 95, 101, 102, 103, 109, 151, 158, 177, 187, 192, 193, 194, 212, 228, 235, 245, 246, 247, 266, 267, 288, 293, 307, 341, 366, 384, 399, 405, 419, 426, 459, 461, 462, 463, 465, 466, 468, 469, 483, 484], "softwarepythonpythoncorex": 34, "soh": 178, "sokolovskiy": 235, "sol_": 337, "sol_alg": [337, 479], "sol_can_": 337, "sol_rd": 337, "sol_socket": 337, "solari": [33, 68, 246, 293, 303, 306, 328, 352, 355, 366, 462, 469, 475, 476, 478, 480, 483], "soldier": 291, "sole": [85, 94, 161, 186, 255, 283, 340, 344, 364, 385, 386, 426, 428, 430, 469, 476, 477, 478, 480, 483], "solicit": 155, "solid": [177, 476, 477], "solidus": 387, "solitari": 283, "solomon": [384, 483], "solut": [68, 73, 84, 85, 93, 94, 95, 100, 102, 103, 106, 109, 132, 181, 186, 247, 299, 333, 338, 343, 355, 384, 426, 432, 461, 462, 464, 465, 466, 467, 468, 469, 471, 475, 481, 483], "solv": [33, 84, 85, 95, 103, 106, 247, 283, 330, 347, 358, 386, 427, 464, 465, 467, 471, 475, 477, 481, 483], "somaxconn": [337, 478], "some": [5, 7, 23, 28, 33, 34, 42, 58, 59, 60, 61, 63, 64, 68, 72, 73, 75, 76, 84, 85, 92, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 108, 109, 110, 112, 114, 115, 120, 126, 132, 133, 137, 138, 139, 141, 149, 151, 155, 157, 158, 161, 163, 167, 169, 175, 176, 177, 180, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 199, 203, 204, 205, 206, 207, 208, 209, 215, 216, 218, 221, 225, 226, 230, 234, 235, 240, 243, 244, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 282, 283, 288, 292, 293, 295, 296, 297, 299, 302, 307, 308, 311, 314, 319, 322, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 376, 377, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 403, 410, 411, 412, 413, 414, 415, 416, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 443, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "some_attribut": [76, 389], "some_behavior": 94, "some_class": 93, "some_conn_id": 102, "some_coro": 139, "some_coroutin": 427, "some_default": 427, "some_enum_var": 94, "some_fil": 479, "some_fract": 473, "some_func": 351, "some_funct": [102, 389, 390], "some_handler_inst": 110, "some_id": [386, 479], "some_int": 85, "some_it": [474, 483], "some_iter": 112, "some_lock": 365, "some_machine_integ": 96, "some_method": [390, 419], "some_mock": 389, "some_numb": 75, "some_obj": 390, "some_object": [75, 85, 255, 389], "some_other_cod": 472, "some_python_coroutin": 139, "some_python_integ": 96, "some_s": 75, "some_sequ": 470, "some_tag": 411, "some_tupl": 85, "some_typ": 176, "some_valu": 386, "some_var": 211, "some_vari": 297, "some_xml_docu": 314, "somebodi": 110, "someclass": [112, 299, 386, 389, 390, 462], "somedata": [94, 235, 304], "someday": 483, "somedir": 225, "someexcept": [213, 388, 470], "somefil": [169, 204, 230, 293, 331, 380], "somehow": [73, 283, 358, 468, 469], "someiter": 175, "somelogg": 102, "somemoredata": 304, "somenam": 344, "somenamedtupl": 160, "someon": [73, 85, 183, 335, 395, 413, 468, 469, 474, 483], "someone_els": 200, "someotherfil": 169, "somepackag": 111, "somepolici": 208, "someserv": 110, "somestr": 348, "sometag": 413, "sometest": [388, 480], "sometext": 413, "someth": [22, 33, 36, 73, 75, 84, 85, 92, 93, 95, 99, 100, 101, 102, 106, 107, 120, 122, 132, 139, 144, 151, 169, 176, 201, 213, 225, 228, 247, 250, 251, 253, 255, 261, 262, 267, 268, 283, 292, 293, 299, 308, 314, 322, 338, 340, 341, 355, 358, 362, 365, 369, 386, 388, 389, 390, 395, 410, 413, 419, 425, 428, 431, 432, 436, 441, 449, 462, 463, 464, 465, 466, 467, 468, 469, 472, 474, 475, 482, 483], "somethin": 474, "something_els": 211, "somethingfortest": 389, "sometim": [73, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 102, 106, 109, 110, 112, 120, 135, 139, 151, 158, 167, 169, 176, 177, 186, 190, 193, 203, 213, 225, 226, 235, 247, 255, 259, 261, 268, 271, 288, 292, 293, 299, 308, 319, 341, 342, 366, 369, 384, 386, 395, 413, 428, 430, 434, 436, 462, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 482, 483], "sometyp": [386, 478], "someurl": 110, "somevalu": 410, "somevar": 85, "somewarn": 388, "somewhat": [11, 23, 100, 102, 176, 183, 204, 226, 247, 266, 292, 293, 337, 369, 425, 462, 467, 470, 480, 481, 483], "somewher": [73, 84, 85, 102, 245, 247, 292, 302, 314, 344, 410, 441, 461, 468, 472], "somewidget": 376, "son": 462, "song": [93, 474], "sonntag": 183, "sonoma": 483, "soon": [84, 92, 106, 109, 136, 139, 193, 228, 232, 261, 283, 293, 297, 344, 362, 384, 386, 411, 427, 428, 465, 467, 474, 477, 482, 483], "sooner": [176, 411, 468], "soonest": [325, 476], "soothsay": 451, "sophist": [85, 133, 155, 169, 186, 267, 345, 413, 464, 467], "sornay": 483, "sorri": 441, "sort": [38, 68, 76, 77, 80, 84, 87, 89, 95, 110, 112, 120, 147, 151, 160, 167, 173, 176, 184, 186, 190, 193, 208, 225, 226, 232, 236, 248, 251, 255, 259, 261, 262, 266, 271, 283, 291, 292, 293, 296, 304, 307, 308, 318, 319, 328, 335, 340, 343, 344, 358, 362, 382, 384, 388, 395, 410, 413, 422, 428, 430, 441, 442, 450, 452, 461, 464, 465, 466, 467, 468, 469, 470, 471, 475, 477, 478, 480, 481, 482, 483], "sort_criteria": 248, "sort_dict": [307, 481, 483], "sort_key": [262, 304, 475], "sort_ord": 308, "sort_stat": 308, "sortabl": [259, 269], "sortbi": 308, "sortdict": 362, "sortedcollect": 147, "sorting_anim": 384, "sortkey": 308, "sorttestmethodsus": 388, "sottil": [480, 481, 482, 483], "soumendra": [474, 483], "soumya": 483, "sound": [72, 84, 117, 141, 177, 223, 295, 336, 355, 406, 450, 465, 468], "sound_mixer_": 295, "sound_mixer_m": 295, "sound_mixer_pcm": 295, "sound_mixer_synth": 295, "sound_mixer_volum": 295, "soundcard": 295, "soup": 240, "sourc": [5, 13, 22, 23, 31, 33, 34, 66, 68, 72, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 102, 112, 122, 129, 131, 142, 152, 157, 158, 159, 163, 167, 176, 177, 181, 182, 187, 190, 191, 193, 203, 207, 208, 209, 213, 214, 223, 225, 230, 235, 242, 248, 251, 252, 254, 257, 261, 264, 265, 267, 268, 269, 270, 280, 281, 283, 292, 293, 295, 297, 299, 308, 311, 312, 313, 315, 321, 324, 330, 331, 332, 335, 337, 340, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 366, 368, 369, 371, 377, 380, 381, 382, 388, 395, 399, 400, 405, 410, 413, 414, 415, 416, 417, 421, 422, 423, 426, 427, 428, 432, 434, 435, 436, 443, 453, 455, 456, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "source1": [358, 422], "source_address": [223, 242, 335, 337, 469, 475, 476], "source_buf": 472, "source_byt": 250, "source_bytes_object": 472, "source_date_epoch": [163, 311, 480, 483], "source_fil": 120, "source_from_cach": [31, 250, 474, 475, 477, 479], "source_hash": [250, 480, 483], "source_lin": 122, "source_suffix": [250, 474], "source_to_cod": [250, 477, 478, 483], "source_traceback": 125, "sourcecod": 384, "sourcefileload": [31, 250, 474, 476, 479, 483], "sourceforg": [81, 183, 426, 462, 463, 465, 468, 483], "sourcehook": 331, "sourceless": [250, 476, 478], "sourcelessfileload": [250, 476, 479], "sourcelin": 208, "sourceload": [250, 476, 477], "sourcen": [358, 422], "south": [94, 158, 319, 376, 384, 468, 471], "southeast": 376, "sovers": 483, "sowt": 483, "sox": 426, "sp": [96, 178, 235, 240], "sp3": 480, "sp4": 468, "sp_expir": 339, "sp_flag": 339, "sp_inact": 339, "sp_lstchg": 339, "sp_max": 339, "sp_min": 339, "sp_namp": 339, "sp_pwdp": 339, "sp_warn": 339, "space": [5, 18, 33, 42, 49, 59, 61, 63, 64, 72, 73, 85, 92, 93, 95, 100, 101, 106, 109, 115, 120, 146, 150, 155, 158, 161, 162, 167, 177, 178, 184, 186, 190, 191, 193, 199, 201, 202, 212, 213, 221, 226, 242, 247, 248, 255, 259, 261, 266, 267, 268, 283, 284, 292, 293, 297, 303, 314, 319, 321, 322, 331, 332, 333, 334, 335, 337, 344, 345, 346, 348, 362, 364, 365, 366, 369, 375, 376, 378, 382, 384, 394, 395, 397, 399, 410, 413, 426, 428, 432, 434, 435, 461, 462, 466, 467, 468, 469, 470, 471, 472, 474, 476, 477, 479, 480, 482, 483], "space_around_delimit": 167, "spacious": 344, "spaghetti": 78, "spam": [35, 45, 73, 77, 102, 103, 106, 110, 120, 170, 175, 176, 193, 218, 225, 226, 230, 242, 243, 245, 250, 255, 258, 268, 296, 307, 313, 319, 321, 330, 334, 340, 344, 348, 358, 381, 385, 386, 389, 390, 395, 413, 422, 428, 430, 432, 440, 441, 443, 446, 449, 450, 462, 468, 478, 483], "spam42": 478, "spam_appl": 102, "spam_doc": 73, "spam_modul": [35, 73], "spam_object": 58, "spam_system": 73, "spam_type_memb": 58, "spamcontext": 333, "spamerror": 73, "spammer": 335, "spammetapathfind": 250, "spammethod": 73, "spammifi": 73, "spammish": 235, "spammodul": 73, "spampathentryfind": 250, "spamread": 175, "spamspam": 225, "spamwrit": 175, "span": [100, 106, 122, 167, 193, 220, 240, 278, 319, 344, 345, 427, 467, 468, 474, 476, 478, 479, 483], "sparc": [33, 295], "spare": 463, "spark": [463, 483], "sparrow": 465, "spars": [22, 293, 358, 483], "spawn": [68, 102, 124, 130, 132, 137, 138, 142, 164, 166, 257, 293, 309, 338, 362, 365, 474, 477, 481, 482, 483], "spawn_python": 362, "spawnl": 293, "spawnlp": [293, 348], "spawnv": [293, 483], "spawnvp": [293, 348], "spdi": 341, "speak": [33, 34, 68, 73, 85, 183, 344, 347, 356], "speaker": 406, "spearman": [343, 474, 483], "spec": [31, 45, 61, 68, 87, 108, 211, 236, 239, 244, 250, 255, 262, 324, 345, 352, 376, 389, 390, 394, 419, 423, 431, 465, 474, 477, 478, 479, 480, 481, 482, 483], "spec_arg": 483, "spec_from_file_loc": [250, 474, 479], "spec_from_load": [250, 472], "spec_set": [389, 390], "specc": 389, "special": [7, 18, 23, 31, 33, 34, 35, 42, 49, 58, 60, 61, 63, 64, 68, 73, 75, 84, 85, 87, 92, 94, 95, 100, 101, 102, 103, 106, 109, 120, 137, 138, 139, 144, 151, 152, 155, 167, 168, 169, 176, 177, 180, 181, 183, 187, 191, 193, 196, 203, 205, 208, 220, 222, 228, 230, 245, 247, 250, 254, 255, 259, 261, 262, 266, 267, 268, 271, 272, 281, 282, 283, 290, 292, 293, 299, 302, 319, 321, 324, 329, 331, 332, 333, 337, 341, 342, 347, 348, 352, 353, 358, 361, 365, 369, 375, 388, 394, 395, 410, 413, 415, 419, 425, 426, 427, 429, 430, 431, 433, 435, 436, 449, 456, 461, 462, 463, 464, 466, 467, 468, 469, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "specialbuild": [35, 456], "specialfileerror": [358, 469], "specialfilt": 102, "specialform": 483, "specialis": [102, 110, 340, 344, 386, 431, 483], "specif": [23, 34, 42, 45, 49, 51, 58, 60, 61, 63, 66, 67, 68, 73, 76, 77, 85, 93, 96, 98, 99, 100, 101, 102, 103, 106, 109, 110, 111, 112, 115, 120, 132, 133, 145, 151, 153, 155, 161, 167, 169, 176, 177, 181, 183, 184, 186, 187, 193, 194, 195, 196, 202, 203, 205, 206, 208, 212, 213, 215, 221, 222, 225, 226, 228, 230, 235, 240, 242, 243, 244, 245, 247, 250, 251, 252, 253, 254, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 275, 281, 283, 288, 293, 295, 296, 297, 299, 308, 314, 315, 321, 322, 328, 329, 331, 332, 335, 337, 338, 340, 341, 342, 344, 347, 352, 353, 354, 355, 358, 359, 362, 363, 364, 365, 366, 368, 369, 374, 377, 385, 387, 388, 394, 395, 399, 400, 404, 407, 410, 411, 413, 417, 419, 422, 423, 425, 426, 427, 428, 432, 434, 435, 436, 446, 455, 461, 462, 463, 464, 470, 471, 472, 473, 474, 475, 476, 477, 479, 480, 481, 482, 483], "specifi": [5, 7, 9, 11, 13, 17, 22, 23, 25, 33, 34, 39, 42, 45, 49, 56, 61, 63, 64, 66, 68, 73, 75, 76, 77, 79, 85, 89, 92, 93, 94, 95, 101, 102, 103, 106, 109, 110, 112, 115, 117, 118, 119, 120, 132, 133, 135, 138, 139, 141, 144, 146, 149, 151, 155, 157, 158, 161, 163, 167, 169, 173, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 218, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 275, 276, 278, 279, 281, 282, 283, 284, 288, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 311, 313, 314, 319, 320, 322, 324, 328, 329, 330, 331, 332, 333, 335, 337, 340, 341, 344, 345, 347, 348, 352, 353, 354, 355, 358, 359, 361, 362, 365, 366, 369, 375, 376, 378, 380, 381, 384, 385, 388, 394, 395, 397, 399, 400, 405, 406, 410, 411, 413, 415, 416, 422, 423, 425, 427, 428, 429, 430, 431, 432, 435, 436, 446, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "specific_submodul": 450, "specified_attribut": [314, 483], "specir": 102, "sped": [475, 478, 481, 482, 483], "speech": [102, 295], "speed": [42, 64, 73, 93, 101, 106, 146, 161, 177, 184, 186, 190, 216, 226, 234, 250, 258, 261, 295, 297, 299, 330, 341, 343, 352, 361, 384, 428, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "speedstr": 384, "speedup": [39, 299, 426, 431, 463, 467, 468, 469, 471, 474, 475, 476, 477, 481, 483], "speedvalu": 384, "speleotrov": 466, "spell": [92, 158, 183, 203, 267, 308, 344, 376, 435, 436, 465, 470, 476, 483], "spend": [322, 462, 483], "spent": [73, 139, 308, 322, 333, 467, 468], "spew": 483, "sphinx": [0, 68, 80, 84, 102, 474, 483], "sphinxext": 483, "spice": 225, "spider": 462, "spielberg": [93, 147], "spil": 483, "spill": 183, "spin": [318, 483], "spinbox": [68, 368, 375, 480, 481, 483], "spiral": 155, "spiritu": 102, "spite": 33, "splat": 483, "splice": [212, 293, 472, 483], "splice_f_mor": 293, "splice_f_mov": 293, "splice_f_nonblock": 293, "split": [45, 64, 68, 78, 84, 85, 102, 108, 120, 141, 155, 158, 167, 186, 190, 191, 196, 200, 202, 208, 213, 228, 230, 248, 261, 281, 291, 292, 293, 294, 297, 303, 307, 318, 319, 321, 331, 335, 340, 341, 344, 345, 348, 364, 378, 386, 388, 389, 394, 399, 407, 415, 435, 440, 464, 465, 466, 467, 468, 469, 471, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "split_command": 331, "splitchar": 202, "splitdriv": [294, 480, 483], "splitext": [102, 200, 294, 296, 358, 452, 468, 479, 483], "splithost": 483, "splitlin": [87, 155, 190, 200, 208, 344, 364, 381, 468, 475, 477, 483], "splitlist": [482, 483], "splitresult": [394, 483], "splitresultbyt": [394, 483], "splitroot": [294, 474, 483], "splitunc": [480, 483], "spoerri": 467, "spoken": 102, "spolski": 109, "spool": 360, "spooledtemporaryfil": [360, 468, 473, 476, 483], "sporad": 293, "spot": [85, 295, 364], "spray": 190, "spread": [68, 290, 369, 468], "spreadsheet": [93, 465], "spring": [106, 183, 225], "sprinkl": [85, 434], "sprint": [467, 468], "sprintf": [344, 462, 464], "sprocket": 475, "spurious": [186, 333, 471, 483], "spwd": [68, 233, 254, 310, 350, 467, 473, 474, 479, 483], "spytz": [472, 473, 481, 482, 483], "sq_ass_item": 63, "sq_concat": 63, "sq_contain": [58, 63], "sq_inplace_concat": 63, "sq_inplace_repeat": 63, "sq_item": [63, 483], "sq_length": [61, 63, 483], "sq_repeat": 63, "sql": [68, 95, 109, 175, 261, 281, 292, 298, 386, 451, 467, 471, 473, 476, 483], "sql_script": 340, "sqlite": [68, 254, 298, 443, 451, 456, 467, 469, 472, 473, 474, 475, 476, 477, 480, 483], "sqlite3": [68, 84, 93, 142, 156, 160, 254, 298, 299, 456, 468, 469, 481, 483], "sqlite3_column_blob": 483, "sqlite3_column_nam": 483, "sqlite3_column_text": 483, "sqlite3_get_autocommit": 483, "sqlite3_prepare_v2": 483, "sqlite3_value_blob": 483, "sqlite_dbconfig": 340, "sqlite_dbconfig_defens": 340, "sqlite_dbconfig_dqs_ddl": 340, "sqlite_dbconfig_dqs_dml": 340, "sqlite_dbconfig_enable_fkey": 340, "sqlite_dbconfig_enable_fts3_token": 340, "sqlite_dbconfig_enable_load_extens": 340, "sqlite_dbconfig_enable_qpsg": 340, "sqlite_dbconfig_enable_trigg": 340, "sqlite_dbconfig_enable_view": 340, "sqlite_dbconfig_legacy_alter_t": 340, "sqlite_dbconfig_legacy_file_format": 340, "sqlite_dbconfig_no_ckpt_on_clos": 340, "sqlite_dbconfig_reset_databas": 340, "sqlite_dbconfig_trigger_eqp": 340, "sqlite_dbconfig_trusted_schema": 340, "sqlite_dbconfig_writable_schema": 340, "sqlite_deni": 340, "sqlite_errorcod": [340, 473], "sqlite_errornam": [340, 473], "sqlite_ignor": 340, "sqlite_limit_attach": 340, "sqlite_limit_length": 483, "sqlite_limit_sql_length": [340, 483], "sqlite_mast": 340, "sqlite_misus": 483, "sqlite_nomem": 483, "sqlite_ok": 340, "sqlite_omit_autoinit": 483, "sqlite_threadsaf": 340, "sqlite_vers": 340, "sqlite_version_info": 340, "sqllite3": 451, "sqrt": [141, 154, 166, 186, 275, 343, 466, 467, 468, 475, 481, 483], "sqrt_n": 166, "squar": [5, 33, 63, 85, 87, 89, 94, 95, 109, 141, 177, 181, 186, 261, 275, 297, 308, 340, 343, 344, 384, 394, 413, 427, 428, 430, 434, 435, 436, 440, 442, 449, 464, 465, 468, 472, 481, 483], "squeez": [247, 479, 480, 481, 483], "squeezer": 483, "squirrel": [33, 308], "sr": 223, "src": [7, 52, 89, 104, 142, 176, 193, 200, 231, 240, 278, 281, 293, 332, 340, 465, 467, 483], "src1": [166, 475], "src2": [166, 475], "src3": [166, 475], "src4": 166, "src_dir_fd": [142, 293], "src_path": 142, "srcdir": [456, 475, 483], "srcname": 332, "sre": [462, 464], "sre_compil": [473, 483], "sre_const": [473, 478, 483], "sre_flag_unicod": 279, "sre_match": 478, "sre_pars": [473, 483], "sre_pattern": 483, "sriniva": [473, 480, 483], "srinivasan": 473, "srivastava": [472, 483], "srmount": 212, "srow": 378, "srt": 483, "srv": [126, 170, 480], "ss": [73, 109, 183, 248, 344, 366, 472, 476], "sscanf": 176, "sse2": 483, "sse3": 483, "sse4": 483, "ssh": [266, 288, 331, 332, 394, 483], "ssize_t": [64, 68, 176, 347, 475, 476, 484], "ssizeargfunc": [57, 63], "ssizeobjargproc": [57, 63], "ssizessizeargfunc": 57, "ssizessizeobjargproc": 57, "ssl": [68, 94, 110, 126, 133, 136, 223, 242, 248, 254, 260, 269, 288, 293, 305, 327, 335, 337, 386, 395, 407, 419, 426, 456, 460, 462, 465, 466, 469, 482, 483], "ssl3": 341, "ssl_cert_dir": 483, "ssl_cert_fil": 483, "ssl_context": [248, 288, 474, 483], "ssl_ctx": 483, "ssl_ctx_set_cipher_list": 483, "ssl_ctx_set_default_verify_path": 483, "ssl_ctx_set_min_proto_vers": 483, "ssl_error_": 341, "ssl_error_ssl": 483, "ssl_error_syscal": 483, "ssl_handshake_timeout": [126, 136, 480], "ssl_mode_auto_retri": 469, "ssl_mode_release_buff": 483, "ssl_object": 133, "ssl_op_al": 341, "ssl_r_certificate_verify_fail": 483, "ssl_read_ex": [341, 483], "ssl_shutdown_timeout": [126, 136, 483], "ssl_sock": 341, "ssl_verify_post_handshak": 483, "ssl_version": [223, 341, 474, 483], "ssl_write_ex": [341, 483], "sslcertverificationerror": [341, 480, 483], "sslcontext": [126, 133, 136, 223, 242, 248, 269, 288, 305, 335, 341, 395, 419, 469, 472, 474, 475, 476, 477, 478, 479, 480, 483], "ssleoferror": [341, 483], "sslerror": [341, 475], "sslerrornumb": 341, "sslfakefil": 476, "sslkeylogfil": [341, 483], "sslobject": [133, 341, 386, 478, 480, 483], "sslobject_class": 341, "sslproto": 483, "sslprotocol": 483, "sslsession": [341, 479, 483], "sslsocket": [133, 341, 469, 472, 477, 478, 479, 480, 482, 483], "sslsocket_class": 341, "sslsyscallerror": 341, "ssltransport": 483, "sslv2": [341, 475], "sslv23": 341, "sslv23_method": 483, "sslv3": [341, 476, 478, 483], "sslwantreaderror": [341, 478, 483], "sslwantwriteerror": [341, 478, 483], "sslzeroreturnerror": 341, "ssnd": 483, "ssock": 341, "sss": [73, 75, 183], "ssse3": 483, "sstate_interned_immort": [474, 483], "sstate_interned_immortal_stat": 474, "st": [384, 465, 479, 480, 483], "st_append": 293, "st_atim": [293, 342], "st_atime_n": 293, "st_birthtim": [293, 467, 474, 483], "st_birthtime_n": 293, "st_blksize": 293, "st_block": [293, 483], "st_creator": 293, "st_ctime": [293, 342, 474, 483], "st_ctime_n": 293, "st_dev": [293, 342, 474], "st_file_attribut": [293, 342, 478, 483], "st_flag": [293, 467], "st_fstype": [293, 480, 483], "st_gen": [293, 467], "st_gid": [293, 342], "st_immut": 293, "st_ino": [269, 293, 342, 474, 483], "st_mandlock": 293, "st_mode": [293, 296, 342, 477, 481], "st_mtime": [190, 234, 293, 296, 342, 358, 465], "st_mtime_n": 293, "st_nlink": [293, 342], "st_noatim": 293, "st_nodev": 293, "st_nodiratim": 293, "st_noexec": 293, "st_nosuid": 293, "st_rdev": [293, 474], "st_rdon": 293, "st_relatim": 293, "st_reparse_tag": [293, 342, 481], "st_rsize": 293, "st_size": [293, 296, 342, 464], "st_synchron": 293, "st_type": 293, "st_uid": [293, 342], "st_write": 293, "stab": 292, "stabil": [261, 473, 483], "stabl": [57, 58, 61, 68, 100, 225, 236, 252, 276, 292, 344, 352, 425, 465, 466, 469, 474, 477, 478, 479, 481, 482, 483, 484], "stack": [12, 23, 33, 35, 59, 68, 73, 75, 78, 94, 96, 101, 104, 115, 122, 126, 135, 139, 140, 144, 157, 160, 169, 171, 177, 179, 184, 185, 191, 193, 213, 214, 225, 226, 247, 254, 257, 267, 269, 297, 315, 316, 319, 322, 331, 333, 337, 342, 344, 352, 353, 365, 375, 388, 400, 427, 428, 429, 430, 435, 436, 443, 445, 455, 462, 463, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 480, 481, 482, 483], "stack_effect": [191, 477, 483], "stack_glob": 483, "stack_info": [267, 483], "stack_level": 23, "stack_siz": [115, 365, 467, 483], "stack_t": 483, "stackbrows": 483, "stackcheck_count": 473, "stackexchang": 235, "stackless": [78, 434], "stacklevel": [102, 258, 267, 400, 467, 483], "stacksiz": [13, 142, 385, 483], "stacksummari": [68, 315, 473, 478, 483], "stacktop": 483, "stackview": 483, "staff": [101, 332, 358], "stage": [106, 365, 395, 400, 410, 462, 482, 483], "stake": 384, "stale": [212, 250, 477, 483], "stall": 483, "stamatogiannaki": 472, "stamp": [183, 384, 465, 466, 483], "stamp_id": 384, "stampid": 384, "stand": [7, 81, 85, 109, 169, 186, 275, 292, 302, 319, 420, 421, 427, 435, 462, 467, 468, 469, 475, 477, 480, 481, 483], "standalon": [68, 169, 192, 193, 252, 314, 384, 388, 411, 427, 459, 468, 483], "standard": [5, 7, 31, 32, 33, 34, 42, 59, 61, 63, 64, 66, 68, 73, 74, 75, 76, 77, 79, 80, 84, 85, 94, 95, 96, 101, 102, 106, 108, 109, 110, 112, 114, 115, 120, 133, 137, 141, 144, 145, 151, 153, 157, 163, 167, 176, 177, 178, 182, 183, 186, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 207, 208, 209, 212, 213, 214, 218, 220, 223, 225, 230, 235, 243, 245, 247, 248, 250, 255, 257, 258, 261, 266, 267, 268, 269, 271, 272, 273, 275, 276, 278, 279, 281, 283, 285, 288, 293, 295, 297, 299, 301, 302, 305, 308, 309, 311, 312, 314, 319, 321, 324, 326, 328, 331, 332, 333, 334, 335, 337, 338, 343, 345, 348, 352, 354, 355, 357, 358, 359, 362, 365, 366, 369, 375, 376, 381, 384, 386, 387, 388, 394, 395, 397, 398, 400, 407, 408, 410, 413, 419, 421, 422, 425, 426, 427, 428, 429, 430, 433, 434, 435, 436, 441, 444, 445, 452, 454, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "standard_arg": 441, "standard_b64decod": 143, "standard_b64encod": 143, "standard_option_list": 292, "standard_rights_read": 405, "standard_rights_requir": 405, "standard_rights_writ": 405, "standard_test": [362, 388], "standard_way": 108, "standarderror": [112, 468, 470], "standend": 177, "standout": 177, "stani": 483, "stanislav": 474, "stanley": [472, 479, 480, 481, 482, 483], "stansburi": 483, "stap": 98, "stapsdt": 98, "star": [93, 122, 191, 358, 377, 427, 431, 434, 436, 472, 473, 483], "star_annot": 431, "star_atom": 431, "star_etc": 431, "star_express": 431, "star_named_express": [427, 431], "star_pattern": [427, 431], "star_target": 431, "star_targets_list_seq": 431, "star_targets_tuple_seq": 431, "stararg": [468, 483], "starequ": 377, "staretc": 431, "starmap": [95, 225, 261, 275, 283, 476], "starmap_async": [283, 476], "starostin": 483, "starred_and_keyword": 430, "starred_express": [430, 431, 436], "starred_item": 430, "starred_list": [427, 430], "starship": [386, 467, 479], "start": [7, 9, 11, 22, 23, 25, 33, 34, 42, 56, 63, 64, 66, 68, 72, 75, 76, 79, 80, 84, 85, 93, 94, 95, 96, 98, 101, 102, 103, 105, 106, 109, 110, 114, 115, 117, 120, 121, 132, 133, 137, 139, 141, 142, 144, 146, 151, 153, 157, 158, 160, 161, 164, 166, 169, 176, 177, 178, 181, 183, 184, 189, 190, 191, 193, 194, 199, 201, 203, 205, 208, 211, 213, 215, 217, 220, 222, 225, 227, 230, 233, 240, 242, 243, 245, 247, 248, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 272, 275, 278, 281, 284, 288, 290, 292, 293, 294, 297, 299, 302, 305, 308, 309, 312, 313, 314, 316, 318, 319, 320, 332, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 356, 358, 362, 365, 366, 369, 371, 376, 378, 380, 381, 382, 386, 388, 389, 390, 394, 395, 399, 400, 403, 407, 410, 411, 413, 415, 417, 421, 422, 427, 428, 430, 431, 432, 435, 436, 441, 442, 451, 452, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "start_cal": 390, "start_cmd": 102, "start_color": [92, 177], "start_column": [13, 428], "start_compon": [281, 483], "start_dir": [388, 483], "start_docu": 412, "start_el": [314, 412], "start_gam": 96, "start_lin": [13, 428], "start_method": 166, "start_n": [413, 481, 483], "start_new_sess": [348, 481, 483], "start_new_thread": [115, 142, 483], "start_offset": 270, "start_respons": [407, 475, 483], "start_rul": 431, "start_serv": [124, 126, 133, 136, 170, 365, 480, 483], "start_thread": [102, 362, 483], "start_tl": [126, 130, 136, 473, 480, 483], "start_unix_serv": [124, 126, 136], "startboundarynotfounddefect": 199, "startcdata": 415, "startcdatasectionhandl": 314, "startcom": 341, "startdoctypedeclhandl": 314, "startdocu": 415, "startdtd": [415, 466], "started_at": 134, "startel": [415, 416, 462], "startelementhandl": 314, "startelementn": [415, 416], "starter": 68, "startf_useshowwindow": 348, "startf_usestdhandl": 348, "startfil": [142, 293, 483], "starti": 384, "starting_nod": 452, "startnamespacedeclhandl": 314, "startprefixmap": 415, "startrespons": 407, "starts_lin": 191, "startswith": [240, 293, 344, 352, 388, 399, 422, 451, 462, 465, 467, 468, 471, 476, 478, 481, 483], "starttest": [388, 483], "starttestrun": [388, 469, 483], "starttl": [102, 248, 269, 288, 335, 341, 468, 475, 476, 483], "startup": [33, 34, 68, 214, 250, 266, 268, 293, 334, 344, 352, 363, 368, 382, 432, 455, 467, 468, 476, 477, 478, 480, 482, 483], "startup_fil": 438, "startupinfo": [348, 466, 480, 483], "startupinfoex": 348, "startx": 384, "stash": 355, "stasiak": [479, 483], "stat": [68, 87, 109, 185, 190, 216, 219, 234, 250, 254, 258, 269, 288, 293, 294, 296, 305, 332, 341, 358, 382, 386, 432, 464, 465, 467, 468, 472, 474, 475, 478, 479, 480, 481, 483], "stat1": 294, "stat2": 294, "stat_float_tim": [465, 467, 476, 480, 483], "stat_result": [293, 296, 358, 465, 478, 481, 483], "statcach": 467, "state": [5, 13, 17, 22, 23, 27, 31, 32, 45, 50, 51, 53, 59, 61, 63, 68, 73, 75, 76, 84, 85, 92, 95, 96, 101, 106, 110, 119, 133, 138, 139, 141, 144, 151, 154, 157, 158, 160, 164, 167, 169, 170, 171, 177, 185, 191, 212, 218, 222, 226, 235, 243, 244, 248, 250, 258, 259, 268, 270, 271, 293, 295, 297, 298, 301, 308, 314, 315, 318, 320, 323, 325, 328, 333, 337, 338, 340, 341, 344, 348, 352, 362, 365, 366, 368, 369, 375, 381, 385, 388, 394, 395, 400, 405, 411, 412, 425, 426, 428, 430, 432, 441, 452, 462, 464, 465, 467, 474, 475, 476, 477, 480, 481, 482, 483], "statefulfilt": 358, "stateless": [68, 141, 145, 147], "statement": [23, 47, 49, 54, 61, 63, 66, 68, 72, 73, 78, 79, 85, 87, 95, 100, 102, 112, 113, 114, 115, 117, 120, 122, 139, 144, 149, 151, 159, 164, 166, 176, 184, 186, 191, 193, 201, 213, 218, 225, 234, 242, 247, 248, 250, 252, 254, 255, 270, 271, 278, 281, 283, 288, 291, 292, 293, 295, 297, 312, 315, 319, 328, 335, 337, 338, 340, 341, 344, 348, 352, 354, 358, 359, 361, 362, 367, 378, 380, 384, 386, 405, 410, 411, 412, 422, 426, 429, 430, 431, 432, 433, 435, 437, 439, 440, 446, 455, 462, 463, 464, 465, 466, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484], "statement_newlin": 431, "stateorprovincenam": 341, "statespec": 376, "statetestcas": 483, "static": [5, 10, 28, 33, 35, 42, 45, 50, 52, 58, 60, 62, 64, 68, 72, 73, 75, 76, 77, 79, 80, 87, 102, 106, 113, 183, 189, 191, 215, 225, 226, 250, 299, 315, 319, 344, 365, 369, 386, 427, 432, 436, 440, 456, 463, 464, 465, 466, 469, 471, 472, 475, 478, 479, 480, 481, 482, 483], "static_assert": 483, "static_cast": 483, "static_method": [389, 390], "static_ord": 232, "staticmethod": [58, 85, 87, 93, 94, 116, 193, 211, 225, 226, 268, 358, 389, 420, 428, 450, 464, 466, 469, 472, 475, 476, 481, 483], "statinfo": 293, "station": 85, "station_id": 85, "statist": [34, 42, 68, 93, 185, 226, 254, 275, 288, 290, 308, 318, 332, 341, 352, 380, 451, 455, 456, 462, 463, 467, 469, 473, 475, 476, 483], "statisticdiff": [68, 185], "statisticserror": 343, "statsprofil": [308, 483], "status": [5, 33, 34, 49, 59, 63, 68, 73, 84, 92, 94, 101, 102, 105, 110, 115, 120, 144, 177, 196, 205, 207, 213, 214, 219, 241, 242, 245, 247, 248, 271, 283, 288, 292, 293, 305, 307, 309, 311, 334, 338, 340, 348, 352, 376, 395, 407, 438, 441, 448, 462, 466, 467, 469, 470, 472, 474, 475, 477, 478, 479, 480, 482, 483], "status_cod": [388, 481], "status_control_c_exit": 483, "statvf": [293, 464, 468, 476, 483], "stay": [64, 138, 352, 474, 475, 476, 479, 483], "std": [294, 352, 366, 467, 483], "std66": 394, "std_error_handl": 348, "std_input_handl": 348, "std_output_handl": 348, "std_time": 183, "stdatom": 483, "stdbool": 483, "stdbuttonbox": 375, "stdc_header": 483, "stdcall": 176, "stddef": [58, 76, 474], "stderr": [23, 33, 34, 42, 59, 64, 68, 72, 73, 85, 101, 102, 114, 126, 130, 133, 137, 151, 157, 169, 190, 193, 214, 227, 229, 245, 247, 258, 267, 268, 269, 283, 292, 293, 311, 321, 333, 340, 344, 348, 352, 358, 362, 365, 367, 381, 386, 388, 399, 400, 407, 428, 450, 451, 452, 455, 461, 462, 466, 468, 469, 470, 475, 477, 478, 479, 480, 482, 483], "stderr_data": [137, 348, 466], "stderrprint": 483, "stdev": [226, 343, 473, 481, 483], "stdev_service_tim": 318, "stdin": [33, 34, 59, 66, 76, 85, 87, 94, 95, 100, 103, 120, 122, 126, 130, 133, 137, 144, 151, 155, 157, 163, 176, 186, 190, 191, 193, 208, 214, 215, 218, 229, 234, 247, 248, 258, 259, 262, 283, 293, 296, 297, 309, 321, 328, 331, 344, 347, 348, 352, 358, 361, 362, 378, 387, 395, 407, 420, 427, 428, 430, 432, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 455, 456, 463, 464, 465, 466, 468, 469, 470, 472, 474, 476, 477, 478, 479, 480, 482, 483], "stdin_read": 309, "stdint": [456, 483], "stdio": [35, 72, 73, 104, 293, 468, 473, 483], "stdio_encod": [33, 34, 352], "stdio_error": [33, 34, 352], "stdlib": [33, 34, 35, 68, 73, 100, 102, 211, 235, 247, 355, 456, 467, 473, 475, 476, 478, 483], "stdlib_module_nam": [352, 472, 483], "stdname": [183, 308], "stdoffset": 183, "stdout": [33, 34, 59, 64, 66, 68, 73, 87, 101, 102, 120, 122, 126, 130, 133, 137, 139, 151, 155, 169, 176, 177, 190, 191, 193, 210, 216, 223, 225, 242, 247, 248, 258, 262, 268, 269, 283, 292, 293, 297, 300, 307, 308, 309, 321, 333, 344, 348, 352, 358, 359, 362, 378, 380, 381, 388, 389, 399, 400, 407, 413, 417, 422, 428, 446, 450, 451, 455, 456, 461, 462, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 483], "stdout_data": [137, 348, 466], "stdout_fileno": 293, "stdoutcatch": 79, "stdprinter": 483, "stdscr": [92, 177, 468], "stdsuit": 468, "stdtype": 483, "stdwin": 462, "steadi": 462, "steal": [22, 23, 33, 35, 45, 49, 54, 60, 483], "steel": [84, 483], "steer": [113, 384, 463, 466, 473, 475, 483], "stefan": [426, 469, 473, 476, 477, 478, 479, 480, 481, 482, 483], "stefano": 483, "steffen": 475, "stein": [84, 462, 483], "stellenbosch": 468, "stem": [296, 422, 469, 473, 483], "step": [56, 63, 68, 72, 73, 77, 84, 85, 93, 95, 100, 106, 110, 112, 120, 122, 141, 144, 151, 155, 158, 169, 176, 185, 186, 191, 193, 225, 230, 242, 247, 250, 261, 267, 275, 281, 283, 292, 293, 297, 318, 319, 338, 340, 343, 344, 352, 358, 376, 384, 399, 414, 421, 427, 428, 430, 436, 441, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 483], "stephan": 483, "stephen": [464, 473, 483], "stereo": [117, 141, 295], "stereocontrol": 295, "stereophon": 295, "sterl": 177, "steve": [341, 463, 468, 474, 478, 479, 480, 481, 482, 483], "steven": [93, 463, 467, 469, 474, 475, 477, 478, 479, 481, 483], "stew": 340, "stgdict": 483, "sticht": [33, 69, 426], "stick": [92, 109, 270, 283, 362, 376, 384, 464, 465, 468], "sticki": [186, 342, 358, 376], "stiff": [73, 441], "stikbakk": 483, "still": [7, 9, 13, 22, 23, 27, 28, 31, 33, 34, 58, 63, 72, 73, 75, 76, 77, 84, 85, 92, 94, 95, 99, 100, 101, 102, 103, 106, 110, 120, 133, 139, 151, 158, 163, 167, 169, 170, 176, 177, 181, 186, 193, 194, 202, 206, 208, 213, 226, 230, 243, 247, 250, 252, 255, 267, 268, 269, 271, 275, 278, 283, 292, 293, 295, 299, 308, 314, 319, 322, 323, 324, 328, 330, 333, 334, 337, 338, 340, 341, 344, 348, 352, 362, 364, 365, 369, 376, 382, 385, 386, 388, 395, 402, 410, 413, 416, 426, 427, 428, 430, 432, 435, 436, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "still_act": 483, "stinner": [469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "stippl": 177, "stipul": 483, "stitch": 207, "stls": [305, 477], "stmt": [122, 367, 468, 483], "stmt_list": [427, 437], "stmt_ti": 431, "stock": [340, 467, 475, 483], "stoke": [479, 483], "stole": 45, "stolen": [9, 72, 483], "stolk": 464, "stomp": 456, "stone": 477, "stop": [23, 28, 34, 56, 85, 94, 95, 101, 102, 103, 121, 126, 130, 133, 137, 139, 144, 155, 159, 160, 161, 190, 191, 193, 197, 207, 213, 225, 227, 228, 235, 247, 255, 261, 267, 268, 269, 271, 283, 292, 293, 295, 297, 300, 302, 308, 314, 318, 333, 338, 344, 348, 362, 365, 376, 382, 384, 385, 386, 388, 389, 390, 406, 407, 427, 428, 430, 441, 462, 463, 464, 465, 467, 468, 469, 470, 472, 474, 475, 478, 479, 480, 483], "stop_cmd": 102, "stop_ev": 102, "stop_her": 144, "stop_iter": [68, 315], "stop_serv": 483, "stopal": [389, 483], "stopasynciter": [23, 87, 191, 213, 225, 389, 427, 428, 430, 436, 483], "stopfram": 144, "stopit": 483, "stopiter": [23, 63, 68, 75, 87, 95, 113, 160, 191, 213, 225, 261, 274, 283, 344, 353, 389, 428, 430, 436, 440, 450, 464, 465, 467, 468, 472, 479, 480, 483], "stopiteration_error": 483, "stoplisten": [102, 268], "stoppag": 426, "stoptest": [388, 483], "stoptestrun": [388, 469, 483], "stor": 223, "storag": [5, 32, 35, 42, 55, 68, 87, 100, 102, 109, 158, 167, 177, 191, 250, 258, 261, 284, 293, 330, 340, 344, 347, 413, 440, 464, 467, 468, 469, 474, 476, 477, 483], "storbinari": [223, 468, 469], "storchacha": 477, "storchaka": [109, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "store": [5, 7, 11, 13, 25, 27, 28, 33, 34, 41, 42, 49, 56, 58, 61, 63, 64, 68, 73, 75, 76, 79, 84, 85, 93, 95, 100, 101, 102, 106, 109, 110, 117, 120, 122, 133, 134, 141, 158, 160, 167, 170, 173, 176, 177, 181, 183, 184, 186, 191, 193, 196, 197, 200, 201, 203, 205, 208, 243, 245, 247, 248, 250, 253, 255, 258, 261, 267, 270, 271, 272, 276, 278, 283, 284, 288, 293, 298, 299, 314, 328, 329, 330, 335, 337, 338, 340, 341, 342, 344, 347, 352, 355, 358, 362, 365, 375, 376, 380, 381, 382, 384, 385, 386, 388, 395, 405, 410, 413, 419, 421, 422, 425, 427, 428, 430, 431, 432, 435, 436, 443, 448, 455, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 479, 480, 481, 482, 483], "store_act": 292, "store_annot": [479, 480, 483], "store_attr": [191, 483], "store_attr_slot": 483, "store_attr_split_key": 483, "store_attr_with_hint": 483, "store_const": [120, 292, 483], "store_deref": [191, 483], "store_fals": [120, 292], "store_fast": [191, 483], "store_glob": 191, "store_nam": [191, 341], "store_slic": [191, 474, 483], "store_subscr": [191, 483], "store_tru": [89, 120, 190, 228, 292, 309, 399, 469, 475, 483], "store_valu": 292, "storeroom": 475, "stori": [33, 73, 147, 446], "storlin": [223, 468], "storm": 464, "stormi": 462, "stp": 98, "str": [5, 10, 18, 22, 24, 25, 26, 33, 34, 35, 39, 40, 49, 58, 59, 63, 64, 66, 68, 75, 76, 78, 84, 85, 87, 88, 89, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 106, 108, 109, 112, 114, 120, 122, 126, 136, 142, 146, 149, 155, 158, 160, 163, 167, 169, 175, 177, 181, 182, 183, 184, 186, 188, 190, 191, 195, 196, 197, 201, 202, 203, 205, 208, 209, 211, 213, 221, 223, 225, 226, 234, 235, 236, 237, 240, 242, 244, 247, 251, 252, 254, 255, 258, 259, 261, 262, 266, 267, 268, 270, 283, 284, 288, 291, 292, 293, 296, 299, 306, 318, 319, 331, 335, 338, 340, 341, 345, 347, 348, 352, 353, 358, 362, 363, 364, 367, 378, 379, 382, 385, 386, 388, 389, 394, 398, 400, 402, 405, 410, 413, 414, 419, 422, 425, 427, 428, 430, 435, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "str1": [472, 483], "str2": [472, 483], "str_": 483, "str_convert": 483, "str_digits_check_threshold": [34, 344, 352], "str_iter": 440, "stracktrac": 483, "straddl": 183, "straight": [202, 206, 283, 352, 388, 411, 444, 462, 470, 481, 483], "straightforward": [23, 73, 84, 85, 100, 102, 103, 109, 158, 167, 176, 259, 268, 292, 328, 337, 384, 464, 465, 468, 475, 476, 483], "strand": [465, 466], "strandmark": [481, 483], "strang": [85, 115, 364, 394, 428, 461, 463, 467, 468], "strataki": [482, 483], "strategi": [33, 42, 63, 73, 76, 79, 120, 135, 158, 269, 362, 369, 388, 403, 424, 425, 432, 441, 465, 470, 475, 480, 483], "stratford": 483, "strcach": 472, "strcasecmp": 483, "strchr": 176, "strcmp": [11, 18, 75, 483], "strcoll": [108, 226, 266, 475], "strcpi": 109, "strdup": 483, "stream": [14, 33, 34, 41, 68, 84, 87, 95, 101, 107, 109, 118, 126, 136, 137, 139, 145, 146, 149, 157, 169, 177, 194, 200, 201, 206, 207, 212, 213, 225, 229, 234, 242, 245, 247, 249, 252, 261, 262, 267, 268, 269, 270, 276, 281, 293, 298, 307, 308, 314, 328, 329, 331, 332, 333, 334, 336, 337, 338, 348, 349, 352, 358, 362, 378, 386, 388, 395, 399, 408, 412, 413, 416, 417, 419, 422, 428, 430, 434, 435, 455, 462, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 483], "stream_or_str": 412, "stream_read": 462, "stream_writ": 462, "streamerror": 358, "streamhandl": [68, 101, 102, 118, 267, 268, 475, 480, 483], "streamlin": [478, 483], "streamread": [14, 68, 124, 126, 137, 145, 466, 467, 478, 479, 483], "streamreaderprotocol": 483, "streamreaderwrit": [68, 145], "streamrecod": [68, 109, 145, 483], "streamrequesthandl": [102, 338, 479, 483], "streamserv": 483, "streamwrit": [14, 68, 124, 126, 137, 145, 467, 473, 480, 483], "street": [109, 120, 319], "streetaddress": 341, "strength": [226, 473], "strength_bit": 341, "strengthen": [209, 483], "strenum": [68, 211, 241, 472, 473, 483], "strerror": [23, 212, 213, 266, 293, 468, 483], "stress": 483, "stretch": [235, 247, 376, 384, 410, 480], "stretch_len": 384, "stretch_wid": 384, "stretchfactor": 384, "strformatstyl": 483, "strfri": 467, "strftime": [68, 101, 102, 139, 182, 266, 267, 269, 271, 366, 419, 451, 452, 465, 467, 468, 475, 476, 479, 483], "strict": [14, 34, 63, 64, 73, 94, 95, 99, 102, 109, 120, 133, 158, 167, 175, 176, 181, 183, 186, 202, 207, 208, 211, 218, 225, 240, 242, 243, 244, 248, 252, 255, 258, 259, 261, 262, 275, 276, 293, 294, 295, 296, 299, 341, 344, 352, 362, 366, 394, 395, 410, 426, 427, 428, 429, 430, 432, 435, 456, 462, 463, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 480, 483], "strict_domain": 243, "strict_error": 158, "strict_mod": [146, 483], "strict_ns_domain": 243, "strict_ns_set_initial_dollar": 243, "strict_ns_set_path": 243, "strict_ns_unverifi": 243, "strict_pars": [151, 394], "strict_rfc2965_unverifi": 243, "strict_timestamp": [422, 483], "stricter": [186, 462, 463, 467, 476, 478, 480, 483], "strictflag": 211, "stride": [2, 63, 68, 255, 344, 428, 430, 465, 476, 483], "strided_ro": 255, "strigl": 483, "string": [7, 8, 9, 11, 16, 18, 22, 23, 24, 25, 26, 28, 31, 33, 34, 35, 39, 41, 42, 45, 47, 49, 53, 58, 59, 63, 65, 66, 68, 72, 73, 75, 76, 79, 87, 89, 92, 93, 95, 96, 99, 101, 102, 108, 110, 112, 113, 117, 120, 122, 133, 137, 139, 141, 144, 145, 146, 149, 151, 152, 153, 155, 157, 158, 159, 164, 167, 169, 173, 175, 176, 177, 178, 181, 182, 183, 184, 186, 190, 191, 193, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 220, 221, 223, 225, 226, 228, 230, 233, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 262, 266, 267, 268, 269, 271, 272, 274, 276, 278, 281, 282, 283, 287, 288, 289, 291, 293, 295, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 320, 321, 326, 330, 331, 332, 334, 335, 336, 337, 338, 339, 340, 341, 342, 346, 351, 352, 355, 356, 358, 359, 361, 362, 363, 364, 365, 366, 367, 369, 375, 376, 377, 378, 379, 380, 381, 382, 384, 386, 387, 388, 389, 394, 395, 397, 398, 399, 400, 403, 405, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 422, 423, 424, 427, 428, 429, 430, 431, 432, 434, 436, 442, 444, 445, 447, 449, 450, 452, 455, 456, 461, 463, 464, 467, 469, 471, 472, 475, 477, 478, 483, 484], "string1": [266, 340, 442], "string2": [266, 340, 442], "string3": 442, "string_at": [142, 176, 214, 476], "stringent": [100, 477], "stringescapeseq": 435, "stringifi": [175, 381, 473, 483], "stringified_newdatatyp": 75, "stringio": [79, 85, 87, 169, 196, 207, 258, 262, 308, 344, 352, 362, 389, 407, 411, 468, 469, 470, 475, 477, 478, 483], "stringiz": [88, 255, 472, 483], "stringlib": 475, "stringliter": 430, "stringo": 96, "stringprefix": 435, "stringprep": [68, 158, 254, 363, 465], "stringsubclass": 386, "stringtemplatestyl": 483, "stringtranslatepseudomap": 483, "stringtyp": 483, "stringvar": [369, 376], "strip": [34, 85, 95, 106, 120, 158, 167, 170, 177, 178, 183, 190, 193, 200, 208, 209, 228, 245, 247, 268, 269, 284, 308, 326, 331, 335, 338, 343, 344, 348, 356, 358, 362, 381, 382, 386, 394, 400, 413, 422, 442, 443, 462, 465, 470, 471, 472, 475, 478, 479, 480, 481, 482, 483], "strip_dir": 308, "strip_prefix": 163, "strip_python_stderr": 483, "strip_text": 413, "stripdir": [163, 482, 483], "stripe": 483, "stripp": [34, 483], "stripped_it": 95, "stripped_lin": 95, "stripped_list": 95, "stripspac": 177, "strive": 469, "strk1048_2002": 158, "strlen": [64, 79, 107, 109], "strncmp": 18, "stroke": [109, 464], "strong": [5, 7, 9, 13, 23, 26, 33, 49, 58, 59, 60, 63, 64, 73, 75, 87, 94, 101, 103, 139, 170, 183, 225, 240, 341, 352, 402, 415, 422, 428, 432, 456, 463, 464, 467, 468, 473, 479, 483], "stronger": [139, 483], "strongest": [173, 469], "strop": 462, "stropt": [479, 483], "strorbytessequ": 386, "strptime": [68, 182, 267, 366, 419, 464, 465, 467, 475, 483], "strs": [109, 386], "strsequenc": 386, "strsignal": [333, 483], "strtod": 68, "strtol": 18, "strtoul": 18, "struck": 92, "struct": [7, 15, 16, 21, 26, 31, 33, 35, 39, 45, 57, 58, 61, 63, 66, 68, 73, 75, 76, 78, 84, 86, 100, 102, 121, 141, 145, 176, 215, 225, 254, 268, 269, 284, 337, 344, 366, 419, 440, 452, 464, 467, 468, 469, 472, 473, 474, 475, 480, 481, 482, 483], "struct_frozen": 176, "struct_tim": [183, 248, 271, 366, 479], "structmemb": [58, 93, 474, 483], "structseq": [25, 469, 483], "structseq_repr": 483, "structsequ": 483, "structur": [2, 5, 13, 17, 22, 26, 31, 32, 33, 34, 42, 43, 45, 47, 50, 55, 58, 59, 61, 66, 68, 73, 75, 76, 78, 79, 85, 92, 93, 95, 96, 100, 101, 106, 118, 128, 135, 139, 144, 153, 158, 177, 194, 196, 201, 203, 204, 205, 206, 207, 212, 213, 215, 217, 222, 223, 226, 230, 233, 245, 247, 248, 251, 254, 255, 256, 258, 262, 271, 276, 281, 283, 293, 299, 305, 307, 311, 319, 332, 333, 337, 339, 341, 344, 346, 347, 348, 354, 362, 366, 369, 375, 384, 385, 386, 388, 410, 413, 414, 419, 422, 423, 427, 428, 432, 433, 462, 463, 464, 465, 466, 467, 468, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482, 483], "structured_data": 102, "structuredmessag": 102, "strxfrm": [87, 108, 266], "sts": [73, 84, 348, 466], "stti": [383, 483], "stuart": 337, "stub": [78, 155, 257, 258, 293, 352, 386, 389, 483], "stuck": 177, "student": [108, 114, 175, 226, 347, 384, 386, 440, 461, 473, 475], "student_nam": 114, "student_object": 108, "student_tupl": 108, "studi": [77, 85, 95, 193, 384, 413, 465, 468], "studio": [77, 85, 456, 461, 468, 478, 483], "stuf": 157, "stuff": [63, 75, 79, 101, 102, 122, 169, 176, 193, 307, 389, 470], "stufft": [469, 477], "stumbl": [68, 484], "stupid": 367, "stutzbach": [468, 469, 475], "stx": 178, "style": [2, 5, 9, 23, 64, 68, 73, 76, 78, 85, 87, 94, 95, 101, 103, 106, 120, 133, 144, 146, 150, 160, 167, 190, 196, 205, 207, 220, 221, 224, 225, 226, 228, 230, 240, 242, 245, 261, 267, 268, 271, 275, 276, 292, 293, 296, 297, 299, 308, 313, 319, 330, 332, 333, 337, 340, 352, 355, 361, 362, 365, 368, 369, 373, 375, 381, 388, 407, 420, 430, 431, 434, 435, 445, 446, 449, 452, 456, 461, 462, 463, 464, 465, 466, 468, 469, 470, 473, 474, 475, 476, 477, 480, 481, 483, 484], "style1": 469, "styleadapt": 102, "stylehint": 102, "stylesheet": [469, 483], "stype": 208, "su": [150, 483], "sub": [32, 45, 50, 68, 95, 100, 101, 102, 106, 118, 122, 124, 133, 176, 177, 178, 183, 190, 191, 194, 196, 201, 205, 207, 214, 231, 248, 252, 254, 259, 261, 268, 271, 278, 291, 308, 314, 319, 330, 344, 352, 362, 375, 386, 388, 405, 413, 430, 431, 443, 451, 461, 462, 464, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 483], "sub0": 102, "sub_dcmp": 216, "sub_key": [142, 405], "subcal": 308, "subcategori": 109, "subclass": [23, 28, 43, 47, 49, 54, 58, 59, 61, 63, 68, 74, 75, 87, 99, 100, 101, 103, 106, 110, 116, 120, 132, 133, 138, 139, 144, 155, 157, 158, 161, 167, 175, 176, 181, 182, 183, 186, 189, 193, 199, 203, 205, 206, 208, 213, 216, 218, 223, 225, 226, 242, 245, 248, 250, 251, 253, 255, 256, 258, 259, 262, 267, 268, 269, 271, 283, 292, 293, 299, 305, 307, 318, 319, 330, 331, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 358, 362, 365, 369, 375, 376, 384, 385, 386, 388, 390, 394, 395, 397, 399, 400, 410, 412, 413, 414, 415, 417, 419, 423, 425, 427, 429, 430, 436, 440, 443, 452, 455, 462, 464, 465, 466, 467, 468, 469, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "subclassoffoo": 386, "subclaus": 95, "subcommand": [102, 120, 469, 475], "subcompon": 194, "subcontext": 160, "subdir": [120, 216, 253, 271, 362, 483], "subdirectori": [73, 76, 84, 85, 102, 163, 200, 216, 247, 250, 252, 253, 271, 293, 302, 334, 355, 380, 388, 399, 421, 422, 423, 461, 462, 463, 465, 468, 469, 478, 480, 481, 482, 483], "subdomain": 166, "subel": [413, 475], "subexpress": [106, 483], "subfunct": [308, 476], "subgener": [68, 430, 484], "subgroup": [106, 191, 213, 319, 475, 481, 483], "subinterpret": [33, 45, 63, 140, 250, 293, 344, 348, 356, 362, 473, 474, 481, 482, 483], "subitem": 450, "subiter": [430, 476], "subject": [13, 39, 45, 55, 61, 63, 75, 84, 95, 101, 102, 110, 122, 167, 183, 191, 193, 196, 200, 202, 203, 205, 243, 247, 255, 262, 267, 268, 269, 271, 288, 293, 307, 308, 330, 337, 341, 362, 366, 386, 426, 427, 428, 431, 435, 441, 467, 472, 474, 477, 483], "subject_expr": [427, 431], "subjectaltnam": 341, "subkey": [405, 461], "sublayout": 376, "sublicens": 426, "sublist": [76, 375, 462, 475], "sublist_incr": 76, "sublist_init": 76, "sublist_method": 76, "sublistmodul": 76, "sublistobject": 76, "sublisttyp": 76, "submiss": [110, 151, 283, 314, 426, 462], "submit": [1, 92, 102, 110, 139, 151, 166, 247, 283, 426, 462, 469, 475, 478, 479, 480, 481, 483], "submitt": 462, "submock": 389, "submodul": [31, 63, 68, 87, 158, 184, 193, 225, 250, 302, 324, 380, 422, 436, 450, 455, 467, 470, 471, 477, 480, 483], "submodule_search_loc": [250, 252, 432], "subn": [106, 319, 469, 471, 474, 478, 483], "subnegoti": 359, "subnet": [259, 476, 478, 483], "subnet_of": [259, 480, 483], "subnod": 411, "subnorm": [186, 483], "subobj": 321, "subobject": [76, 85], "suboffset": [2, 63, 68, 344, 476], "subopt": 359, "suboptim": 478, "subordin": [405, 469], "subpackag": [63, 87, 250, 281, 352, 388, 422, 432, 450, 462], "subpackage1": 432, "subpackage2": 432, "subpad": 177, "subpars": [102, 120, 475, 480, 483], "subparser1": 120, "subparser2": 120, "subparser_nam": 120, "subpart": [196, 199, 201, 204, 205, 206, 207], "subpath": [296, 423], "subpattern": [427, 441, 483], "subpkg": 250, "subpkg1": 436, "subpkg2": 436, "subprocess": [33, 68, 102, 123, 126, 130, 131, 132, 142, 164, 166, 169, 208, 210, 248, 254, 257, 283, 293, 301, 327, 331, 337, 338, 362, 368, 382, 384, 399, 400, 455, 460, 465, 468, 469, 472, 475, 481, 482, 483, 484], "subprocess_exec": [68, 126, 130, 131, 132, 137, 483], "subprocess_shel": [126, 130, 131, 133, 137], "subprocesserror": [348, 483], "subprocessprotocol": [68, 126], "subprocessstreamprotocol": 483, "subprocesstransport": [126, 133], "subrang": 344, "subroutin": [72, 87, 95, 467], "subscrib": [102, 248, 386, 428, 483], "subscript": [37, 63, 68, 87, 102, 176, 191, 247, 264, 344, 386, 428, 436, 449, 455, 465, 468, 472, 473, 474, 482, 483], "subsect": [92, 106, 247, 344, 430, 483], "subsequ": [5, 23, 33, 45, 60, 64, 85, 93, 106, 115, 120, 159, 177, 190, 191, 202, 206, 208, 226, 243, 250, 255, 258, 261, 268, 269, 271, 278, 283, 292, 293, 319, 332, 337, 341, 344, 345, 352, 356, 358, 365, 369, 375, 384, 395, 426, 427, 430, 432, 434, 436, 465, 466, 467, 468, 469, 471, 478, 481, 483], "subsequent_ind": 364, "subsequenti": 483, "subset": [95, 158, 167, 177, 235, 247, 248, 250, 253, 257, 262, 269, 271, 295, 299, 314, 328, 332, 337, 344, 358, 365, 410, 413, 415, 422, 430, 456, 465, 467, 469, 478, 480, 483], "subshel": [231, 293], "subslic": 261, "substanti": [73, 243, 261, 314, 410, 426, 464, 466, 471, 475, 476, 477, 479, 483], "substitut": [42, 68, 87, 101, 102, 106, 112, 132, 158, 164, 167, 178, 186, 193, 250, 261, 272, 292, 293, 308, 319, 320, 321, 340, 344, 345, 359, 378, 386, 403, 426, 427, 428, 430, 436, 447, 452, 461, 465, 467, 468, 469, 474, 475, 477, 478, 483, 484], "substr": [64, 95, 106, 109, 167, 193, 235, 292, 319, 344, 388, 430, 449, 462, 464, 465, 466, 467, 468, 476, 478, 480, 483], "subsubdir": 253, "subsubdirectori": 334, "subsubitem": 450, "subsubsect": 483, "subsuddir": 253, "subsystem": [23, 95, 102, 250, 348, 369, 461, 465, 467, 469, 481, 483], "subt": [92, 196, 205, 432], "subtask": 139, "subtest": [68, 187, 477, 483], "subtitl": 483, "subtl": [13, 23, 63, 73, 103, 193, 215, 292, 295, 308, 428, 429, 477, 483], "subtlest": 462, "subtleti": [106, 183, 243], "subtract": [47, 141, 160, 183, 186, 259, 270, 275, 308, 384, 419, 430, 462, 465, 468, 469, 475, 480, 483], "subtre": [33, 413, 462], "subtupl": 23, "subtyp": [9, 11, 20, 25, 39, 45, 49, 55, 60, 61, 63, 64, 181, 196, 197, 200, 201, 203, 204, 205, 206, 243, 247, 276, 292, 333, 386, 416, 427, 428, 430, 464, 483], "subtype_dealloc": 483, "subvers": [467, 468, 469, 475, 480, 483], "subview": 344, "subwidget": 375, "subwin": 177, "subwindow": 177, "succeed": [5, 7, 9, 11, 13, 17, 25, 37, 39, 43, 45, 47, 49, 54, 55, 56, 60, 61, 63, 64, 67, 85, 106, 176, 193, 209, 232, 249, 288, 293, 332, 336, 337, 341, 362, 388, 394, 395, 405, 410, 427, 429, 431, 455, 464, 465, 466, 483], "success": [5, 7, 9, 11, 13, 17, 22, 23, 27, 31, 33, 34, 35, 39, 42, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 73, 75, 76, 77, 79, 80, 85, 92, 95, 101, 106, 110, 115, 122, 132, 133, 139, 159, 163, 167, 169, 176, 177, 191, 193, 209, 215, 223, 242, 245, 248, 250, 261, 266, 269, 278, 283, 288, 292, 293, 295, 299, 305, 314, 319, 323, 332, 335, 337, 340, 341, 344, 347, 348, 352, 365, 375, 376, 388, 395, 410, 423, 427, 428, 432, 436, 453, 456, 462, 465, 466, 469, 475, 477, 478, 479, 481, 483], "successor": [102, 128, 232], "succinct": [93, 261], "such": [5, 7, 13, 23, 25, 27, 28, 31, 33, 34, 42, 45, 51, 58, 61, 63, 64, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 126, 132, 133, 137, 139, 141, 144, 146, 151, 155, 158, 159, 161, 167, 169, 176, 177, 181, 183, 184, 186, 190, 193, 194, 196, 197, 202, 203, 205, 207, 208, 209, 211, 212, 213, 215, 216, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 271, 272, 275, 278, 281, 283, 287, 288, 292, 293, 295, 297, 299, 302, 304, 307, 308, 313, 314, 319, 324, 328, 329, 330, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 355, 358, 359, 361, 362, 365, 366, 369, 375, 376, 377, 380, 381, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 406, 410, 411, 412, 413, 415, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "sudo": [96, 98, 102], "sudoku_mak": 96, "sudokumak": 96, "suexec": 151, "suffer": [388, 463, 464, 465], "suffic": [85, 225, 295], "suffici": [46, 63, 73, 99, 100, 101, 115, 158, 183, 184, 186, 193, 275, 293, 312, 314, 341, 365, 388, 403, 415, 432, 436, 461, 475, 476, 479, 480, 483], "suffix": [25, 64, 68, 71, 102, 112, 176, 200, 225, 245, 248, 250, 259, 267, 268, 269, 276, 293, 296, 319, 330, 335, 344, 360, 395, 422, 430, 431, 456, 461, 462, 464, 473, 475, 476, 481, 483], "suffix_map": 276, "sugalski": 467, "sugar": [102, 169, 225, 244, 250, 261, 340, 441, 470], "suggest": [61, 68, 74, 84, 85, 91, 95, 102, 106, 109, 115, 133, 186, 225, 230, 235, 250, 299, 307, 320, 340, 365, 366, 382, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 479, 481, 482, 483], "suid": 293, "suit": [63, 75, 84, 85, 87, 95, 101, 102, 161, 193, 230, 283, 292, 340, 341, 358, 362, 382, 388, 400, 422, 427, 456, 461, 467, 468, 469, 470, 473, 474, 475, 477, 479, 480, 482, 483], "suitabl": [33, 63, 64, 73, 85, 95, 101, 102, 108, 109, 124, 146, 158, 169, 173, 176, 183, 190, 196, 204, 208, 209, 235, 244, 250, 253, 259, 261, 266, 267, 268, 269, 271, 276, 283, 288, 293, 299, 308, 323, 324, 333, 335, 337, 338, 344, 352, 358, 362, 365, 366, 380, 388, 400, 410, 413, 421, 422, 428, 455, 461, 464, 465, 466, 468, 469, 475, 479, 480, 481, 483], "suite2": 427, "suite_mask": [352, 469], "suiteclass": [388, 469], "sullivan": 483, "sum": [7, 87, 93, 95, 103, 120, 122, 126, 141, 160, 183, 186, 193, 208, 225, 226, 255, 261, 270, 275, 284, 293, 296, 308, 318, 322, 326, 337, 343, 344, 366, 376, 382, 386, 430, 431, 440, 441, 444, 449, 450, 451, 452, 465, 466, 468, 471, 473, 474, 481, 482, 483], "sum_i": 340, "sum_list": 35, "sum_of_squar": 261, "sum_sequ": 35, "sum_threadsaf": 386, "sum_two_numb": [87, 122], "sumint": 340, "summar": [93, 109, 186, 193, 259, 330, 343, 386, 388, 427, 430, 432, 466, 475], "summari": [68, 84, 193, 251, 292, 302, 307, 322, 380, 381, 426, 453, 461, 463, 464, 465, 466, 475, 483, 484], "summarili": 235, "summarize_address_rang": [259, 478, 483], "summarize_stat": 456, "summaryinfo": 483, "summaryinform": [281, 483], "summat": [225, 444, 474, 483], "summer": [225, 366, 467, 468], "sumprod": [261, 275, 474, 483], "sun": [68, 109, 141, 150, 183, 245, 249, 254, 295, 343, 350, 366, 408, 426, 473, 483], "sun4u": 355, "sunau": [68, 254, 350, 473, 474, 482, 483], "sunaudiodev": [462, 468], "suncc": 469, "sundaresan": 483, "sunday": [94, 150, 183, 211, 266, 269, 366, 469, 483], "sundri": 465, "sunken": 369, "sunmy2019": 483, "suno": [33, 303, 358, 483], "sunos5": [33, 352], "sunpro": 471, "super": [68, 85, 87, 94, 102, 106, 116, 120, 132, 160, 169, 181, 191, 203, 211, 213, 225, 250, 262, 283, 296, 299, 312, 322, 369, 382, 384, 390, 395, 399, 402, 428, 440, 450, 464, 468, 470, 472, 474, 477, 479, 483], "super_getattro": 93, "supercalifragilisticexpialidoci": [449, 452], "superclass": [58, 61, 63, 100, 103, 116, 155, 181, 225, 226, 262, 268, 312, 338, 386, 428, 464, 465, 467, 474, 483], "supercop": 426, "superfici": 85, "superflu": [299, 337, 340, 483], "superinstruct": [473, 483], "superior": 261, "supernet": [259, 478], "supernet_of": [259, 480], "superscript": 344, "supersed": [33, 59, 250, 253, 288, 295, 341, 426, 462, 469, 476, 480, 483], "superset": [101, 306, 344, 430, 462, 465, 483], "superset_of": 483, "superstit": 106, "superus": 293, "supervis": 467, "supervisor": 102, "supervisorctl": 102, "supplement": [203, 293, 461, 468, 477, 483], "supplementari": 337, "suppli": [5, 28, 33, 63, 75, 85, 92, 93, 94, 95, 96, 106, 109, 110, 120, 122, 139, 146, 151, 152, 161, 176, 177, 178, 181, 183, 186, 191, 193, 215, 226, 235, 243, 247, 248, 250, 251, 253, 255, 259, 261, 267, 269, 283, 288, 292, 293, 295, 297, 302, 308, 314, 324, 328, 337, 340, 341, 344, 348, 355, 362, 365, 376, 381, 384, 386, 388, 394, 395, 399, 400, 415, 419, 421, 422, 425, 427, 428, 430, 432, 436, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 479, 483], "supplimentari": 483, "support": [5, 7, 13, 16, 22, 23, 25, 28, 32, 34, 41, 42, 43, 47, 49, 54, 58, 60, 61, 63, 65, 67, 68, 73, 74, 79, 84, 85, 89, 91, 92, 93, 96, 99, 100, 101, 103, 105, 106, 110, 112, 115, 117, 119, 120, 122, 132, 133, 137, 139, 141, 146, 149, 151, 153, 155, 158, 161, 163, 164, 173, 176, 177, 180, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 201, 202, 203, 204, 207, 208, 211, 212, 213, 214, 215, 217, 218, 220, 221, 223, 224, 225, 226, 228, 234, 235, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 281, 283, 284, 288, 290, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 314, 315, 319, 320, 321, 322, 328, 329, 330, 332, 333, 334, 335, 337, 338, 340, 342, 344, 345, 347, 348, 352, 353, 355, 359, 361, 365, 366, 369, 371, 376, 377, 382, 385, 386, 387, 388, 394, 395, 397, 399, 400, 402, 403, 405, 406, 408, 410, 411, 412, 414, 415, 416, 419, 420, 421, 422, 423, 425, 426, 427, 428, 430, 431, 432, 434, 435, 436, 442, 449, 451, 455, 456, 457, 459, 461, 462, 463, 464, 466, 467, 469, 470, 471, 474, 475, 476, 483, 484], "support_team": 268, "supports_bytes_environ": [293, 475], "supports_dir_fd": [293, 476], "supports_effective_id": [293, 476], "supports_fd": [293, 476], "supports_follow_symlink": [293, 332], "supports_follows_symlink": 476, "supports_root_dir": 332, "supports_unicode_filenam": [294, 465], "supportsab": 386, "supportsbyt": [386, 473, 483], "supportscomplex": [386, 473, 483], "supportsfloat": 386, "supportsindex": [386, 481, 483], "supportsint": [221, 386, 473, 481, 483], "supportsround": 386, "suppos": [23, 60, 63, 64, 73, 77, 85, 99, 102, 181, 186, 193, 196, 199, 248, 309, 319, 334, 337, 340, 341, 345, 358, 376, 467, 468, 469, 475, 480, 481, 483], "suppress": [22, 33, 34, 68, 92, 101, 120, 139, 152, 157, 163, 169, 193, 261, 288, 292, 311, 315, 334, 335, 344, 348, 352, 362, 427, 428, 436, 455, 456, 461, 463, 465, 467, 468, 469, 470, 471, 477, 478, 480, 481, 483, 484], "suppress_help": 292, "suppress_ragged_eof": [341, 483], "suppress_usag": 292, "suppresscrashreport": [362, 483], "sur": [68, 483], "sure": [23, 45, 63, 64, 72, 75, 76, 84, 85, 92, 95, 101, 102, 106, 120, 151, 155, 158, 167, 176, 186, 213, 225, 235, 250, 266, 283, 292, 293, 314, 329, 340, 341, 343, 362, 365, 369, 397, 400, 413, 421, 428, 461, 464, 465, 467, 468, 470, 475, 476, 483], "surfac": [96, 293, 384, 474], "surface_grav": 94, "surjaninov": 483, "surpris": [58, 68, 84, 85, 102, 108, 118, 183, 186, 193, 225, 247, 267, 283, 308, 343, 358, 369, 386, 425, 432, 463, 464, 467, 471, 472, 473, 474, 478, 480, 481, 482, 483], "surrog": [59, 64, 158, 225, 262, 293, 340, 346, 358, 410, 476, 477, 481, 483], "surrogateescap": [34, 59, 64, 109, 158, 201, 208, 218, 225, 293, 337, 340, 352, 358, 455, 475, 478, 479, 480, 483], "surrogatepass": [33, 34, 158, 455, 477, 479, 483], "surround": [42, 79, 95, 106, 167, 190, 225, 244, 247, 266, 345, 348, 374, 399, 427, 429, 430, 431, 435, 450, 456, 462, 467, 468, 469, 470, 471, 474, 479, 483], "surviv": [115, 176], "survivor": 469, "susan": [475, 483], "suscept": [332, 461, 483], "suse": [352, 456, 482, 483], "susp": 177, "suspect": [151, 462, 483], "suspend": [33, 95, 139, 177, 255, 314, 333, 352, 361, 365, 366, 427, 428, 430, 464, 465, 467, 478, 480, 483], "suspens": [366, 428, 430], "suspici": [474, 483], "sussman": 95, "susumu": 483, "suutari": 483, "suzi": 465, "suzuki": 465, "sv": 468, "sv1": 110, "svensson": 466, "svetlov": [472, 473, 477, 480, 481, 482, 483], "svg": 467, "sviatoslav": 483, "svn": [96, 120, 163, 355, 394, 465, 467, 468, 469, 475, 483], "svneol": 483, "svr4": 215, "sw": 369, "sw_hide": 348, "sw_showdefault": 348, "swallow": [96, 101, 102, 139, 452, 462, 469, 475, 481, 483], "swamp": 102, "swap": [33, 72, 158, 160, 176, 191, 261, 283, 322, 337, 347, 362, 428, 436, 473, 480, 483], "swap_attr": [362, 483], "swap_item": [362, 483], "swapcas": [344, 483], "swappablearea": 96, "swart": 477, "swatch": 94, "swati": 483, "swear": 92, "sweeney": [472, 473, 474, 482, 483], "sweep": 467, "sweet": [106, 261], "sweet32": 483, "sweigart": 483, "swiegart": 479, "swig": [74, 79, 86], "switch": [31, 33, 35, 61, 64, 68, 75, 84, 100, 109, 110, 111, 112, 128, 133, 137, 158, 193, 225, 230, 243, 245, 247, 292, 305, 319, 322, 324, 340, 344, 345, 352, 358, 384, 412, 432, 441, 450, 455, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 480, 481, 482, 483], "switcher": 483, "switching_protocol": 241, "switzerland": 413, "swordfish": 106, "swprintf": 483, "sx": 85, "sxs": 483, "sy": 85, "sydorenko": 483, "syllabl": 109, "symbol": [34, 66, 71, 73, 77, 79, 85, 92, 94, 96, 102, 103, 104, 109, 157, 159, 176, 177, 186, 193, 212, 245, 266, 269, 272, 293, 296, 300, 319, 322, 332, 333, 337, 340, 342, 344, 351, 352, 354, 357, 358, 359, 361, 362, 369, 376, 384, 387, 394, 405, 410, 415, 428, 431, 434, 436, 441, 455, 461, 462, 464, 466, 467, 469, 471, 472, 474, 475, 479, 481, 482, 483], "symbolt": [351, 482, 483], "symlink": [45, 142, 163, 257, 292, 293, 296, 311, 332, 358, 399, 450, 459, 460, 466, 468, 472, 475, 476, 477, 481, 483], "symlink_to": [296, 472, 481, 483], "symmetr": [235, 284, 341, 344, 428, 430, 462, 464, 465, 466, 476, 483], "symmetri": [348, 462], "symmetric_differ": [344, 465], "symmetric_difference_upd": [344, 465], "symtabl": [57, 68, 254, 264, 469, 472, 474, 482, 483], "symtyp": 358, "syn": 178, "sync": [94, 177, 184, 255, 283, 293, 295, 330, 369, 474, 476, 481, 483], "sync_foo": 389, "syncdown": 177, "synch": 190, "synchron": [68, 115, 123, 139, 164, 169, 178, 184, 186, 212, 226, 250, 254, 258, 278, 293, 330, 333, 338, 341, 362, 365, 369, 428, 452, 468, 474, 475, 478, 480, 483], "synchronis": [344, 476], "syncmanag": [283, 483], "syncok": 177, "syncup": 177, "synonym": [92, 102, 103, 109, 115, 177, 292, 299, 342, 369, 410, 435, 468, 483], "synopsi": [313, 341, 483], "syntact": [68, 85, 169, 202, 250, 314, 340, 344, 378, 386, 394, 400, 414, 427, 429, 430, 434, 435, 436, 441, 466, 467, 470, 483], "syntax": [5, 7, 68, 73, 79, 80, 85, 95, 99, 101, 102, 106, 109, 110, 112, 118, 139, 151, 157, 159, 167, 168, 176, 181, 186, 203, 211, 213, 225, 230, 247, 254, 255, 262, 264, 266, 268, 273, 283, 292, 295, 297, 314, 319, 331, 340, 344, 345, 352, 362, 369, 376, 381, 382, 386, 388, 394, 395, 417, 419, 427, 428, 429, 430, 431, 432, 434, 435, 436, 445, 449, 455, 457, 462, 463, 464, 465, 466, 467, 469, 471, 472, 473, 475, 477, 480, 481, 482, 483, 484], "syntax_err": 410, "syntaxerr": 410, "syntaxerror": [23, 66, 68, 79, 106, 122, 157, 159, 168, 193, 213, 225, 247, 319, 362, 378, 381, 386, 427, 429, 431, 435, 436, 442, 443, 446, 449, 450, 462, 463, 464, 473, 474, 475, 477, 478, 479, 480, 483], "syntaxwarn": [23, 213, 319, 362, 400, 435, 450, 465, 473, 474, 479, 481, 483], "synthes": [95, 193, 386], "synthet": [388, 474, 483], "sys": [23, 24, 28, 31, 33, 34, 35, 45, 59, 63, 64, 66, 68, 73, 79, 80, 85, 87, 88, 98, 100, 101, 102, 104, 109, 112, 113, 114, 115, 118, 122, 133, 136, 137, 139, 140, 142, 144, 151, 152, 155, 157, 163, 169, 175, 176, 177, 186, 188, 190, 191, 193, 200, 210, 213, 214, 215, 216, 218, 223, 225, 227, 228, 229, 230, 234, 245, 247, 250, 251, 254, 255, 258, 262, 265, 267, 268, 269, 275, 279, 280, 283, 292, 293, 295, 297, 299, 300, 302, 303, 307, 308, 309, 311, 312, 313, 315, 321, 324, 327, 328, 331, 332, 333, 334, 337, 338, 340, 342, 344, 347, 348, 355, 356, 358, 359, 361, 362, 365, 367, 369, 380, 381, 382, 385, 386, 388, 389, 390, 395, 399, 400, 402, 407, 413, 417, 420, 421, 422, 423, 427, 428, 430, 432, 436, 437, 438, 443, 446, 448, 450, 451, 452, 453, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 483, 484], "sys_exc": 112, "sys_shutdown": 483, "sys_vers": 245, "syscal": [96, 213, 293, 322, 332, 478, 479, 481, 483], "sysconf": [293, 337, 483], "sysconf_nam": [293, 483], "sysconfig": [68, 72, 104, 156, 254, 293, 315, 382, 399, 425, 472, 477, 483], "sysctl": [322, 483], "sysdep": 96, "sysf": 293, "syslog": [68, 101, 142, 254, 269, 391, 469, 474, 476, 483], "syslog_udp_port": [268, 269], "sysloghandl": [68, 101, 118, 268, 356, 469, 473, 476, 483], "sysloghandler5424": 102, "sysmacro": 483, "sysmodul": 468, "sysnam": [293, 303], "sysproto_control": 337, "sysroot": 483, "system": [7, 16, 23, 33, 34, 42, 59, 63, 68, 73, 74, 76, 77, 79, 84, 85, 86, 92, 94, 95, 96, 101, 102, 106, 109, 110, 115, 118, 119, 121, 133, 137, 142, 144, 155, 163, 164, 167, 169, 173, 176, 177, 183, 186, 187, 207, 208, 209, 212, 213, 214, 215, 220, 223, 225, 228, 230, 231, 245, 247, 250, 251, 252, 253, 257, 258, 266, 267, 268, 269, 270, 271, 272, 276, 278, 282, 283, 287, 295, 296, 297, 299, 301, 302, 303, 306, 308, 309, 311, 313, 314, 322, 324, 326, 328, 331, 332, 333, 334, 337, 338, 340, 341, 342, 344, 347, 352, 355, 356, 358, 361, 362, 365, 366, 369, 375, 382, 384, 385, 388, 390, 395, 399, 403, 405, 406, 410, 413, 414, 415, 416, 419, 420, 421, 425, 426, 428, 433, 435, 436, 451, 455, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 480, 481, 482, 483, 484], "system32": [348, 461], "system_alia": 303, "system_dir": 167, "system_id": [415, 416], "system_must_validate_cert": 362, "system_sit": 399, "system_site_packag": 399, "systemasterisk": 406, "systemat": [193, 483], "systemconfigur": 483, "systemdefault": 406, "systemerror": [5, 23, 27, 45, 49, 55, 60, 64, 213, 443, 450, 474, 479, 483], "systemev": 468, "systemexclam": 406, "systemexit": [23, 66, 101, 115, 139, 140, 157, 168, 213, 247, 352, 365, 406, 429, 443, 450, 467, 468, 470, 479, 483], "systemhand": 406, "systemid": [314, 410, 415], "systemquest": 406, "systemrandom": [293, 318, 326], "systemroot": 348, "systemtap": [68, 97, 456, 483], "systemx86": 461, "sysv": [84, 96, 462, 463], "sz": [473, 483], "szakmeist": 483, "szmek": [476, 483], "szorc": 483, "szulik": 478, "t012": 344, "t0123": 344, "t01234": 344, "t04": 183, "t042301": 183, "t1": [183, 186, 261, 386, 399], "t11": 384, "t12": 384, "t2": [183, 186, 261, 386, 399], "t20170401": 483, "t21": 384, "t22": 384, "t3": [183, 186, 292, 386], "t_arg": 385, "t_co": 386, "t_doubl": 474, "t_fmt": 266, "t_fmt_ampm": 266, "t_int": [58, 474], "t_lookahead": 431, "t_none": [58, 474, 483], "t_object": [58, 474, 483], "t_origin": 385, "t_primari": 431, "t_string_inplac": 469, "t_uint": 483, "t_ulong": 483, "t_wobbler_mangrov": 400, "ta": [482, 483], "tab": [5, 66, 68, 77, 122, 146, 155, 175, 177, 178, 190, 193, 198, 202, 213, 242, 247, 255, 262, 297, 317, 319, 320, 323, 331, 334, 344, 345, 348, 364, 368, 375, 394, 403, 419, 435, 441, 445, 449, 455, 462, 467, 469, 472, 474, 476, 477, 479, 480, 481, 482, 483], "tab_id": 376, "tabbedpag": 483, "tabbedpageset": 483, "taberror": [23, 86, 213, 435, 450, 462, 474], "tabifi": 247, "tabl": [5, 7, 31, 33, 42, 45, 58, 59, 64, 68, 74, 75, 77, 78, 93, 95, 101, 106, 109, 110, 147, 158, 176, 177, 183, 186, 190, 203, 212, 235, 247, 250, 261, 262, 266, 267, 276, 283, 298, 319, 328, 338, 340, 341, 344, 346, 347, 351, 352, 358, 366, 369, 379, 386, 388, 403, 405, 410, 422, 426, 430, 441, 446, 452, 455, 464, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 482, 483], "table_nam": 473, "tablea": 346, "tableb": 346, "tablec": 346, "tabnanni": [68, 86, 156, 254, 264, 462, 483], "tabpag": 483, "tabsiz": [190, 344, 364, 483], "tabul": [261, 344, 411], "tabular": [68, 368], "tac": 442, "tack": 101, "tackl": [299, 462], "tacti": 483, "tad": 5, "taddei": [479, 483], "tadek": 469, "tag": [31, 61, 63, 68, 75, 98, 106, 122, 151, 190, 240, 248, 250, 269, 278, 293, 299, 314, 346, 352, 356, 368, 395, 410, 413, 417, 419, 461, 462, 467, 469, 473, 477, 478, 481, 483, 484], "tag1": 462, "tag_bind": 376, "tag_configur": 376, "tag_ha": [376, 483], "tag_unbind": 483, "tagbanwa": 109, "tagnam": [278, 376, 410, 411, 412, 483], "tahia": 483, "tai": 475, "taifersar": [469, 475, 483], "tail": [64, 94, 103, 151, 160, 190, 261, 294, 334, 413, 467, 474, 476, 479, 483], "tailor": [72, 246, 340, 344, 362, 474], "tajik": [158, 478], "takashi": 483, "takayuki": 483, "take": [5, 9, 13, 22, 23, 27, 31, 33, 49, 51, 58, 60, 63, 64, 66, 73, 75, 76, 79, 84, 85, 92, 93, 94, 95, 101, 102, 103, 106, 109, 120, 139, 141, 144, 151, 152, 158, 167, 169, 176, 177, 178, 181, 183, 186, 187, 190, 191, 193, 194, 201, 202, 203, 206, 207, 208, 209, 215, 218, 225, 226, 230, 232, 235, 243, 244, 245, 247, 249, 250, 251, 258, 261, 262, 266, 267, 268, 270, 271, 275, 276, 283, 288, 292, 293, 299, 307, 308, 314, 319, 324, 325, 328, 330, 331, 332, 333, 335, 336, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 358, 361, 362, 364, 369, 375, 376, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 407, 408, 410, 411, 412, 413, 415, 417, 419, 421, 422, 427, 428, 430, 432, 436, 441, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "take_act": 292, "take_gil": 483, "take_snapshot": 382, "takefocus": [81, 376], "taken": [5, 33, 34, 42, 45, 55, 63, 66, 73, 75, 95, 102, 103, 120, 141, 144, 163, 167, 183, 186, 191, 193, 196, 202, 205, 206, 216, 225, 230, 248, 261, 266, 268, 269, 276, 278, 283, 293, 308, 311, 314, 322, 331, 340, 341, 344, 347, 353, 358, 362, 364, 365, 381, 382, 397, 400, 427, 428, 432, 436, 462, 464, 465, 467, 474, 475, 476, 477, 481, 483], "takeuchi": 483, "takewhil": [95, 261], "takuji": 426, "tal": [472, 478, 479, 480, 481, 483], "talbot": 475, "tale": 120, "talent": 92, "talin": 468, "talk": [64, 85, 92, 102, 109, 341, 348, 428, 467, 478], "talli": [160, 469, 475, 476], "talo": 483, "tam": 483, "tamil": 109, "tamper": [235, 299], "tan": [154, 275, 483], "tane": 473, "tangent": [275, 384], "tangerin": 442, "tanh": [154, 275], "tape": 358, "tapset": 68, "tar": [68, 80, 119, 254, 276, 292, 296, 332, 399, 426, 453, 460, 462, 465, 466, 467, 468, 469, 472, 473, 474, 475, 481, 482, 483], "tar_filt": 358, "tara": 477, "tarbal": [462, 483], "tarek": [332, 355, 468, 469, 475, 478, 483], "tarerror": 358, "tarfil": [68, 114, 119, 156, 254, 332, 451, 465, 466, 467, 468, 469, 474, 479, 480, 483], "target": [7, 33, 35, 64, 68, 84, 93, 98, 101, 102, 120, 122, 133, 136, 169, 183, 186, 191, 241, 242, 247, 250, 251, 255, 268, 269, 283, 284, 292, 293, 296, 314, 316, 319, 332, 333, 337, 338, 340, 358, 362, 365, 369, 371, 386, 388, 389, 399, 410, 413, 415, 419, 421, 422, 423, 425, 427, 428, 429, 430, 431, 432, 436, 442, 455, 456, 461, 465, 467, 468, 470, 472, 474, 475, 476, 477, 480, 481, 483], "target_": 483, "target_handl": 102, "target_is_directori": [293, 296, 476], "target_key": 261, "target_list": [427, 430, 436], "target_with_star_atom": 431, "targetdir": [461, 483], "targetscopeerror": 483, "tarinfo": [68, 119, 469, 475], "tashrif": 483, "task": [68, 73, 84, 85, 87, 95, 96, 100, 101, 103, 106, 108, 109, 115, 125, 127, 129, 130, 134, 135, 136, 138, 167, 169, 170, 201, 207, 236, 247, 259, 267, 269, 271, 283, 293, 299, 308, 316, 322, 338, 348, 365, 388, 394, 420, 430, 452, 456, 462, 464, 468, 469, 471, 473, 474, 475, 478, 479, 480, 481, 482, 483], "task1": [139, 452], "task2": [139, 452], "task3": 452, "task4": 452, "task_don": [134, 283, 316, 467, 478, 483], "task_queu": [232, 283], "taskaya": [472, 473, 474, 481, 482, 483], "taskgroup": [124, 139, 473, 483], "taskmanag": 481, "tasknam": [267, 483], "tasks1": 283, "tasks2": 283, "taskwakeupmethwrapp": 483, "tast": 85, "tatschner": 482, "tau": [154, 275, 479, 483], "taught": 247, "tautolog": 483, "tavar": 477, "tax": [85, 319, 449, 465], "taxonomi": 388, "taylor": [186, 468, 483], "tb": [23, 102, 191, 213, 247, 381, 382, 385, 390, 428, 467, 468, 474, 477, 483], "tb_frame": [255, 385, 428, 483], "tb_lasti": [255, 385, 428], "tb_lineno": [255, 381, 385, 428], "tb_local": 388, "tb_next": [255, 381, 385, 428, 480, 483], "tbd": [113, 483], "tbreak": 297, "tbs": 483, "tbutton": 376, "tc": 431, "tcdrain": 361, "tcflow": 361, "tcflush": 361, "tcgetattr": [361, 383, 483], "tcgetpgrp": 293, "tcgetwins": [361, 483], "tciflush": 361, "tcioff": 361, "tcioflush": 361, "tcion": 361, "tck": 469, "tcl": [68, 81, 247, 254, 368, 375, 376, 452, 459, 461, 462, 465, 468, 469, 472, 473, 475, 478, 479, 481, 482, 483], "tcl8": 469, "tcl_librari": 81, "tcl_obj": [465, 483], "tclerror": 483, "tclsam_init": 81, "tcltk": [472, 473, 475, 482, 483], "tcltk_cflag": 473, "tcltk_lib": 473, "tcoflush": 361, "tcombobox": 376, "tcooff": 361, "tcoon": 361, "tcp": [68, 80, 84, 101, 102, 107, 124, 126, 130, 223, 257, 269, 283, 335, 337, 338, 341, 362, 468, 469, 479, 480, 483], "tcp_": [337, 483], "tcp_cc_info": [337, 483], "tcp_congest": [337, 479, 480, 483], "tcp_connection_info": [337, 483], "tcp_echo_cli": 136, "tcp_fastopen": [337, 483], "tcp_fastopen_connect": [337, 483], "tcp_fastopen_key": [337, 483], "tcp_fastopen_no_cooki": [337, 483], "tcp_info": 337, "tcp_inq": [337, 483], "tcp_keepal": [337, 483], "tcp_keepcnt": [337, 483], "tcp_keepidl": [337, 483], "tcp_keepintvl": [337, 483], "tcp_md5sig": [337, 483], "tcp_md5sig_ext": [337, 483], "tcp_nodelay": [107, 126, 469, 479, 480, 483], "tcp_notsent_lowat": [337, 480, 483], "tcp_queue_seq": [337, 483], "tcp_repair": [337, 483], "tcp_repair_opt": [337, 483], "tcp_repair_queu": [337, 483], "tcp_repair_window": [337, 483], "tcp_save_syn": [337, 483], "tcp_saved_syn": [337, 483], "tcp_thin_dupack": [337, 483], "tcp_thin_linear_timeout": [337, 483], "tcp_timestamp": [337, 483], "tcp_tx_delay": [337, 483], "tcp_ulp": [337, 483], "tcp_user_timeout": [337, 479, 480, 483], "tcp_zerocopy_rec": [337, 483], "tcpclient": 338, "tcpconnect": 247, "tcplisten": 247, "tcpserver": [68, 102, 245, 256, 267, 420, 469, 483], "tcsadrain": 361, "tcsaflush": [361, 383], "tcsanow": 361, "tcsendbreak": 361, "tcsetattr": [361, 383, 483], "tcsetpgrp": 293, "tcsetwins": [361, 483], "tcsh": [399, 466], "td": [176, 183], "tdemo_nim": 384, "tdemo_round_d": 384, "te": 102, "tea": 451, "teach": [230, 464, 481, 483], "teacher": 384, "team": [461, 462, 463, 464, 469, 477, 482, 483], "teamus": 386, "teapot": [441, 472, 483], "tear": [193, 388], "teardown": [193, 362, 388, 389, 390, 469, 483], "teardownclass": [68, 187, 469, 483], "teardownmodul": [68, 187, 469, 483], "tearoff": 483, "tebeka": [469, 475], "tech": 483, "technic": [68, 95, 112, 167, 183, 191, 252, 262, 292, 293, 319, 344, 400, 427, 432, 461, 462, 469, 480, 483], "techniqu": [85, 95, 102, 109, 151, 161, 193, 201, 226, 293, 308, 319, 340, 354, 361, 375, 386, 432, 475, 481, 483], "technolog": [84, 92, 426], "techtonik": [469, 483], "ted": 308, "tedious": [100, 109, 128, 151, 384, 462, 467, 481], "tee": [95, 177, 261, 466, 483], "teichmann": [479, 483], "tel": 442, "telco": 476, "telenovela": 475, "telephon": 319, "teleport": [384, 483], "teleprint": 178, "tell": [5, 18, 31, 33, 68, 73, 75, 92, 95, 102, 106, 112, 117, 120, 126, 151, 153, 159, 193, 208, 222, 235, 258, 267, 269, 278, 283, 292, 295, 299, 332, 333, 337, 338, 340, 341, 344, 349, 369, 380, 386, 395, 401, 422, 446, 462, 464, 465, 466, 468, 478, 479, 480, 483], "tellabl": 483, "telnet": [68, 142, 170, 254, 350, 394, 468, 479, 483], "telnetlib": [68, 142, 254, 350, 468, 473, 474, 483], "telopt_": 359, "temp": [73, 283, 330, 340, 360, 411, 421, 430, 456, 461, 483], "temp0": 176, "temp1": 176, "temp_cwd": [96, 362, 483], "temp_dir": 362, "temp_umask": 362, "tempcwd": 362, "tempdir": [360, 402, 483], "temperatur": 475, "temperature_feb": 481, "temperature_februari": 343, "tempfil": [68, 110, 142, 200, 219, 225, 254, 283, 293, 327, 362, 395, 402, 468, 470, 483], "templ": 483, "templat": [68, 73, 85, 96, 101, 160, 201, 267, 319, 344, 345, 368, 384, 445, 446, 464, 466, 468, 469, 473, 475, 476, 479, 480, 483], "tempnam": 470, "tempo": 106, "tempor": 483, "temporari": [7, 22, 49, 55, 63, 68, 96, 102, 110, 112, 144, 176, 193, 247, 252, 258, 261, 266, 271, 272, 283, 293, 297, 324, 340, 344, 352, 358, 360, 362, 382, 388, 395, 458, 464, 466, 468, 475, 476, 477, 482, 483], "temporarili": [23, 68, 73, 102, 110, 169, 186, 193, 230, 250, 266, 267, 314, 315, 332, 344, 348, 362, 376, 382, 388, 413, 427, 461, 468, 474, 479, 480, 483], "temporary_redirect": 241, "temporarydirectori": [360, 475, 483], "temporaryfil": [360, 483], "tempt": [76, 102, 106], "temptat": [106, 388, 463], "ten": [85, 93, 102, 160, 177, 186, 308, 318, 343, 347, 465], "ten_year": 183, "tenabl": 343, "tend": [85, 100, 149, 190, 226, 305, 308, 471], "tendenc": 343, "tenfold": 466, "teninteg": 176, "tenpointsarraytyp": 176, "tensorflow": 473, "tentat": 483, "tenth": [92, 141, 177, 209], "teo": [481, 483], "tep": 297, "ter": 483, "teredo": 259, "tereick": 483, "term": [73, 93, 95, 139, 177, 186, 209, 213, 221, 235, 243, 250, 262, 267, 292, 299, 308, 345, 362, 366, 369, 385, 394, 399, 414, 426, 427, 431, 432, 466, 468, 469, 471, 474, 476, 477, 479, 481, 483], "termattr": 177, "termcap": 483, "termin": [5, 7, 9, 31, 33, 34, 37, 39, 45, 58, 60, 61, 63, 64, 66, 68, 73, 84, 85, 92, 95, 96, 100, 101, 102, 109, 115, 118, 120, 130, 132, 133, 137, 139, 155, 176, 177, 178, 189, 190, 191, 193, 207, 208, 214, 219, 225, 229, 242, 245, 247, 255, 258, 261, 265, 266, 269, 271, 283, 288, 292, 297, 302, 308, 309, 319, 322, 333, 335, 338, 340, 341, 344, 345, 348, 352, 361, 365, 369, 377, 384, 395, 400, 405, 411, 413, 415, 426, 427, 429, 430, 432, 435, 436, 455, 462, 466, 467, 468, 470, 475, 476, 478, 480, 481, 483], "terminal_s": [293, 332], "terminalcommand": 468, "terminate_broken": 483, "terminateprocess": [133, 137, 142, 283, 293, 348, 468, 469, 483], "terminfo": 177, "terminolog": [68, 99, 201, 245, 366, 376, 410, 463, 464, 467, 468], "termio": [68, 215, 254, 383, 391, 482, 483], "termnam": 177, "ternari": [63, 428, 430], "ternaryfunc": [57, 63, 75], "terrain": 483, "terrenc": 475, "terri": [109, 442, 472, 473, 478, 479, 480, 481, 482, 483], "terribl": 106, "terron": 483, "ters": [84, 303, 384, 461], "tesler": 481, "test": [5, 23, 46, 58, 61, 68, 73, 78, 84, 85, 92, 93, 94, 96, 98, 99, 100, 101, 102, 106, 108, 109, 110, 114, 120, 122, 125, 155, 161, 170, 176, 177, 178, 181, 186, 187, 189, 191, 193, 200, 220, 225, 226, 228, 236, 240, 245, 247, 248, 249, 250, 251, 254, 255, 259, 261, 262, 266, 269, 272, 275, 283, 293, 296, 305, 309, 315, 319, 335, 336, 340, 342, 344, 352, 358, 364, 365, 367, 375, 376, 382, 386, 389, 390, 395, 413, 419, 422, 425, 426, 427, 428, 434, 440, 442, 443, 446, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 479, 480, 481, 482], "test1": [345, 427], "test2": [345, 427], "test2to3": 483, "test_": [362, 422, 483], "test___all__": 483, "test__all__": 362, "test_abc": 483, "test_add_file_after_2107": 483, "test_anagram": 475, "test_api": 483, "test_argpars": 483, "test_ast": 483, "test_asyncio": 483, "test_asyncor": 483, "test_autocomplet": 483, "test_averag": 451, "test_bas": 483, "test_base64": 483, "test_bdb": 483, "test_binhex": 483, "test_both": 483, "test_brows": 483, "test_bufio": 465, "test_build_ext": 483, "test_builtin": 483, "test_byt": 479, "test_c": 483, "test_c_locale_coercion": 483, "test_call_lat": 483, "test_capi": 483, "test_cas": [362, 388], "test_chown": 483, "test_chown_gid": 483, "test_class": 388, "test_clos": 483, "test_cmath": 483, "test_cmd_lin": 483, "test_cmd_line_script": 483, "test_cod": 483, "test_code_modul": 483, "test_codec": 483, "test_collect": 483, "test_commun": 483, "test_compile_dir_maxlevel": 483, "test_compileal": 483, "test_concurrent_futur": 483, "test_config": 483, "test_configdialog": 483, "test_configure_screen": 483, "test_control_and_wait": 483, "test_copyfile_nonexistent_dir": 483, "test_copyreg": 483, "test_cor": 483, "test_coroutin": 483, "test_count": 193, "test_cppext": 483, "test_cprofil": 483, "test_create_datagram_endpoint_existing_sock_unix": 483, "test_create_directory_with_writ": 483, "test_ctyp": 483, "test_current_": 483, "test_curs": 483, "test_cyclic_gc": 483, "test_data_dir": 362, "test_dataclass": 483, "test_datetim": 483, "test_dbm_gnu": 483, "test_debugg": 483, "test_decim": 483, "test_default_timeout": 474, "test_default_widget_s": 388, "test_deleg": 483, "test_determinist": 483, "test_di": 483, "test_distutil": 483, "test_division_by_zero": 471, "test_doctest": [193, 483], "test_dotted_but_module_not_load": 483, "test_editor": 483, "test_eintr": 483, "test_email": 483, "test_emb": 483, "test_encodebyt": 483, "test_entry_points_by_index": 483, "test_enum": 94, "test_epol": [68, 483], "test_ev": 483, "test_even": [388, 477], "test_events_mask_overflow": 483, "test_except": 483, "test_expandus": 483, "test_extens": 483, "test_fail": 388, "test_faulthandl": 483, "test_feature_on": 362, "test_feature_two": 362, "test_fil": 461, "test_file_button": 483, "test_file_not_exist": 483, "test_find": 193, "test_flag": 483, "test_float": 483, "test_font_set": 483, "test_foo": [388, 390, 480], "test_format": 388, "test_freez": 483, "test_freeze_simple_script": 483, "test_from_tupl": 483, "test_frozen_pickl": 483, "test_frozenmain": 483, "test_frozent": 483, "test_ftplib": 483, "test_func": 362, "test_funct": 389, "test_functool": 483, "test_future4": 483, "test_gdb": 483, "test_gener": [95, 464, 465, 483], "test_genericalia": 483, "test_get": 481, "test_get_ciph": 483, "test_get_event_loop_new_process": 483, "test_getaddrinfo_ipv6_scopeid_symbol": 483, "test_getallocatedblock": 483, "test_getnameinfo_ipv6_scopeid_symbol": 483, "test_getsetlocale_issue1813": 483, "test_gimzo_without_required_librari": 471, "test_gizmo_on_window": 471, "test_hashlib": 483, "test_help": 483, "test_help_about": 483, "test_hex": 479, "test_hmac_sha1": 483, "test_home_dir": 362, "test_http_url": [362, 483], "test_httpserv": 483, "test_idl": 483, "test_imap4_host_default_valu": 483, "test_imaplib": 483, "test_import": 483, "test_importlib": 483, "test_indent_scal": 483, "test_inst": 362, "test_interprocess_sign": 483, "test_io": 483, "test_issue2301": 483, "test_isupp": 388, "test_json": 483, "test_lib2to3": 483, "test_license_exists_at_url": 483, "test_local": 483, "test_locale_calendar_formatweekday": 483, "test_locale_flag": 483, "test_localtime_daylight_false_dst_tru": 483, "test_localtime_daylight_true_dst_tru": 483, "test_log": 483, "test_macholib": 483, "test_mailcap": 483, "test_main": [362, 483], "test_marsh": 483, "test_master_read": 483, "test_math": 483, "test_maybe_skip": 388, "test_memfd_cr": 483, "test_metadata_api": 483, "test_method": 388, "test_min_max_vers": 483, "test_min_max_version_mismatch": 483, "test_mktim": 483, "test_modul": 388, "test_module1": 388, "test_module2": 388, "test_modulefind": 483, "test_monoton": 483, "test_multiprocess": 483, "test_multiprocessing_fork": 483, "test_multiprocessing_forkserv": 483, "test_multiprocessing_main_handl": 483, "test_multiprocessing_spawn": 483, "test_mymanag": 483, "test_mypkg": 388, "test_name_error_suggestions_do_not_trigger_for_too_many_loc": 483, "test_namer_rotator_inherit": 483, "test_namespace_pkg": 483, "test_netrc": 483, "test_nntplib": 483, "test_no_fatalerror_infinite_loop": 483, "test_nonascii": 483, "test_norm": 483, "test_not_run": 388, "test_noth": 388, "test_notifi": 96, "test_ntpath": 483, "test_o": 483, "test_on": [388, 390], "test_openpti": 483, "test_ordered_dict": 483, "test_pack_configure_in": 483, "test_pair": 483, "test_pass_by_valu": 483, "test_pathlib": [296, 483], "test_pdb": 483, "test_peg_gener": 483, "test_perf_profil": 483, "test_pha_required_nocert": 483, "test_pickletool": 382, "test_pidfd_open": 483, "test_pip": 483, "test_pkg": 483, "test_pkg_import": 483, "test_pkgutil": 483, "test_place_configure_in": 483, "test_popen": 483, "test_posix": 483, "test_posix_falloc": 483, "test_pre_initialization_sys_opt": 483, "test_prefix": [68, 187], "test_pthread_getcpuclickid": 483, "test_pti": 483, "test_py_compil": 483, "test_pycfunct": 483, "test_pyexpat": 483, "test_python_": 483, "test_queu": 483, "test_queue_feeder_donot_stop_onexc": 483, "test_r": 483, "test_race_between_set_target_and_flush": 483, "test_rais": 483, "test_raisememerror": 483, "test_readlin": 483, "test_resourc": 483, "test_respons": 388, "test_ressources_gced_in_work": 483, "test_runn": 382, "test_sampl": 389, "test_search_cpp": 483, "test_select": 483, "test_sendfil": 483, "test_sha256": 483, "test_shared_memory_bas": 483, "test_shared_memory_cleaned_after_process_termin": 483, "test_shared_memory_recr": 483, "test_shutil": 483, "test_si": 483, "test_sidebar": 483, "test_sigfp": 483, "test_sign": 483, "test_signal_handl": 388, "test_simple_enum": 483, "test_sit": 483, "test_skip": 483, "test_smtplib": 483, "test_socket": 483, "test_socketserv": 483, "test_someth": [388, 389, 390, 480], "test_source_encod": 483, "test_spam": 362, "test_speech128": 483, "test_split": [388, 389], "test_sqlit": 483, "test_sqlite3": 483, "test_squeez": 483, "test_ssl": 483, "test_start_tls_server_1": 483, "test_startup_import": 483, "test_statist": 483, "test_stdlib_dir": 483, "test_str": 483, "test_stress_modifying_handl": 483, "test_strptim": 483, "test_subprocess": 483, "test_sundri": 483, "test_support": [96, 468, 470], "test_support_dir": 362, "test_suppress_warn": 362, "test_sys_settrac": 483, "test_sysconfig": 483, "test_tabnanni": 483, "test_tarfil": 483, "test_tarfile_vs_tar": 483, "test_tcl": 483, "test_tempfil": 483, "test_test": 483, "test_thre": 388, "test_thread": [474, 483], "test_tim": 483, "test_timeout": [474, 483], "test_timestamp_overflow": 483, "test_tk": 483, "test_tkint": 483, "test_tomllib": 483, "test_tool": 483, "test_tooltip": 483, "test_ttk": 483, "test_ttk_guion": 483, "test_two": [388, 390], "test_udp_reconnect": 483, "test_undecodable_env": 483, "test_undecodable_fil": 483, "test_underpth_bas": 483, "test_unicod": 483, "test_unicodedata": 483, "test_unittest": 483, "test_unpack_archive_xztar": 483, "test_unpars": 483, "test_upp": 388, "test_urllib2net": 483, "test_us": 483, "test_user_similar": 483, "test_utf8_mod": 483, "test_util": 483, "test_uuid": 483, "test_vari": 472, "test_venv": 483, "test_wait": 483, "test_widget": [388, 483], "test_widget_res": 388, "test_winconsoleio": 483, "test_window": 483, "test_windows_support": 388, "test_windows_util": 483, "test_with_pip": 483, "test_wrong_cert_tls13": 483, "test_wsgiref": 483, "test_xmlrpc": 483, "test_yield_from": 483, "test_zipfil": 483, "test_zipfile64": 483, "test_zipimport": 483, "test_zlib": 483, "test_zoneinfo": 483, "testal": [422, 468], "testcapi": 483, "testcas": [193, 362, 388, 389, 390, 426, 451, 469, 471, 473, 474, 475, 476, 477, 481, 483], "testcase1": 388, "testcase2": 388, "testcase3": 388, "testcaseclass": 388, "testclass": 388, "testcongest": 483, "testcopi": 483, "testcwd": 96, "testdidnotrun": 483, "testdir": 483, "testenumer": 483, "testenviron": 483, "testfail": 362, "testfil": [193, 467, 483], "testfn": [362, 483], "testfn_nonascii": 362, "testfn_undecod": 362, "testfn_unencod": 362, "testfn_unicod": 362, "testfreez": 483, "testfunc": 388, "testfuncacceptssequencesmixin": 362, "testgizmo": 471, "testhook": 344, "testload": [362, 388, 389, 469, 473, 474, 478, 483], "testmethod": 382, "testmethodprefix": 388, "testmod": [193, 451, 466, 471], "testn": 483, "testnamepattern": 388, "testprogram": [388, 473, 474], "testpypi": 341, "testrequest": 481, "testresult": [96, 193, 388, 469, 471, 476, 483], "testrunn": 388, "testsampl": 389, "testsocknam": 483, "testsometh": 388, "testsourc": 193, "testsrun": [96, 388], "teststatisticalfunct": 451, "teststringmethod": [388, 389], "testsuit": [193, 362, 388, 465, 477, 478, 483], "testtimeout": [456, 483], "testwithdirectori": 483, "testzip": 422, "tetxtwrap": 483, "tex": 106, "text": [5, 54, 59, 64, 68, 72, 75, 84, 85, 87, 95, 101, 102, 106, 109, 110, 118, 120, 122, 126, 145, 146, 149, 150, 151, 152, 155, 157, 159, 167, 168, 173, 176, 178, 187, 190, 191, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 212, 213, 218, 223, 225, 226, 234, 240, 242, 245, 248, 250, 252, 253, 254, 255, 258, 262, 266, 267, 268, 269, 270, 271, 273, 281, 282, 288, 292, 293, 296, 298, 299, 305, 307, 313, 314, 320, 323, 331, 333, 341, 345, 346, 348, 352, 358, 360, 364, 367, 368, 369, 372, 374, 375, 376, 377, 381, 384, 386, 387, 388, 394, 395, 399, 400, 403, 407, 411, 412, 413, 415, 416, 422, 426, 428, 429, 430, 432, 434, 435, 446, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483], "text1": 190, "text2": 190, "text_encod": [258, 483], "text_factori": 340, "text_nod": [410, 411], "text_or_uri": 413, "text_signatur": 483, "text_textview": 483, "text_typ": 251, "textbook": [95, 106, 319, 467, 468], "textbox": [68, 92, 118, 468, 483], "textcalendar": [150, 483], "textdomain": [230, 266], "textedit": 102, "textfil": 200, "textinput": [384, 483], "textio": [252, 386, 483], "textiobas": [79, 225, 242, 258, 360, 369, 428, 468, 469, 470, 473, 483], "textiowrapp": [34, 120, 149, 188, 218, 225, 234, 250, 253, 258, 270, 348, 360, 422, 468, 472, 476, 477, 479, 480, 483], "textmat": [459, 477], "textnod": 467, "textpad": [68, 92, 118, 254, 468, 483], "textread": 299, "texttestresult": [388, 474, 483], "texttestrunn": [388, 483], "textual": [75, 76, 85, 109, 120, 176, 201, 267, 288, 314, 319, 344, 358, 376, 410, 411, 430, 436, 440, 464, 479, 483], "textvari": [369, 376], "textview": 483, "textwrap": [68, 120, 254, 363, 452, 465, 468, 483], "textwrapp": [364, 465, 477, 483], "teyit": 474, "tf": [190, 475], "tg": 139, "tgot": 283, "tgz": [276, 460], "th": [54, 150, 191, 196, 225, 266, 283, 343, 344, 366, 384, 410, 428, 462, 465, 467], "thai": [109, 158, 426], "than": [5, 10, 22, 23, 24, 25, 33, 34, 39, 41, 42, 45, 49, 55, 56, 58, 61, 63, 64, 68, 72, 73, 75, 76, 84, 85, 87, 92, 93, 94, 95, 96, 100, 101, 103, 106, 108, 109, 110, 114, 115, 117, 120, 133, 137, 139, 144, 146, 147, 149, 151, 158, 160, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 191, 193, 195, 196, 197, 199, 201, 203, 205, 207, 208, 209, 213, 215, 218, 225, 226, 230, 234, 235, 242, 243, 244, 247, 248, 250, 251, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 272, 275, 276, 278, 283, 284, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 313, 314, 319, 320, 322, 324, 325, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 354, 355, 358, 359, 362, 364, 365, 366, 369, 374, 375, 376, 378, 381, 382, 384, 386, 388, 394, 395, 399, 400, 405, 410, 411, 413, 415, 419, 422, 425, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thank": [77, 95, 100, 106, 109, 155, 200, 235, 283, 340, 362, 386, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 479, 480, 483], "that": [5, 7, 9, 13, 17, 22, 23, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 46, 47, 49, 51, 54, 55, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 92, 96, 99, 100, 101, 103, 105, 106, 108, 109, 110, 112, 114, 115, 117, 120, 122, 124, 125, 128, 132, 133, 134, 135, 136, 137, 138, 139, 141, 144, 146, 148, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 241, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 265, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 283, 284, 287, 288, 292, 293, 295, 297, 298, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 395, 397, 399, 400, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 442, 443, 446, 452, 455, 456, 457, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thatiparthi": [473, 480, 483], "the": [1, 5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 22, 24, 25, 26, 27, 31, 32, 34, 35, 37, 39, 41, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 67, 68, 71, 72, 74, 75, 77, 79, 80, 86, 87, 89, 91, 92, 93, 94, 97, 98, 99, 105, 107, 108, 110, 112, 113, 114, 115, 117, 118, 122, 124, 125, 126, 128, 129, 133, 134, 135, 136, 137, 138, 139, 140, 141, 144, 146, 147, 149, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 232, 233, 234, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 284, 285, 287, 288, 290, 291, 295, 296, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 333, 334, 335, 336, 338, 339, 341, 342, 343, 345, 346, 347, 355, 356, 358, 359, 360, 361, 362, 364, 366, 367, 368, 371, 374, 375, 376, 377, 378, 380, 381, 383, 385, 387, 388, 389, 390, 394, 395, 397, 398, 399, 402, 403, 405, 406, 407, 408, 412, 413, 414, 415, 417, 419, 420, 422, 423, 426, 429, 431, 433, 434, 435, 440, 441, 442, 443, 444, 446, 449, 450, 451, 452, 454, 455, 458, 459, 462, 463, 466, 470, 471, 472, 473, 483, 484], "the_answ": 440, "the_except": 388, "the_list": 78, "the_pag": 110, "the_world_is_flat": 448, "their": [5, 7, 28, 33, 34, 42, 45, 55, 61, 63, 64, 68, 72, 73, 75, 76, 77, 84, 85, 92, 93, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 132, 137, 139, 151, 158, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 194, 195, 196, 203, 205, 207, 208, 213, 214, 215, 216, 218, 225, 226, 230, 235, 243, 244, 250, 251, 255, 258, 259, 261, 262, 266, 267, 268, 269, 275, 279, 282, 283, 288, 292, 293, 297, 299, 307, 308, 312, 313, 314, 324, 325, 326, 329, 332, 333, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 355, 358, 361, 362, 363, 365, 366, 369, 375, 376, 381, 382, 383, 384, 386, 387, 388, 394, 395, 399, 400, 410, 411, 412, 413, 415, 417, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 435, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theller": 467, "thello": 364, "them": [5, 7, 22, 23, 33, 34, 45, 59, 63, 64, 66, 68, 71, 73, 76, 77, 84, 85, 91, 92, 94, 95, 96, 99, 100, 101, 106, 109, 110, 112, 120, 126, 128, 134, 139, 151, 155, 158, 159, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 186, 191, 193, 195, 196, 201, 206, 208, 214, 216, 225, 226, 230, 235, 243, 244, 247, 248, 250, 251, 255, 258, 266, 267, 268, 269, 271, 283, 288, 292, 293, 295, 299, 307, 308, 319, 322, 324, 328, 330, 335, 337, 340, 341, 342, 344, 347, 348, 352, 353, 355, 358, 359, 362, 364, 365, 369, 375, 376, 382, 384, 386, 388, 400, 405, 410, 411, 412, 413, 422, 427, 428, 430, 431, 432, 434, 436, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theme": [1, 68, 247, 369, 376, 465, 468, 471, 479, 480, 483], "theme_cr": 376, "theme_nam": 376, "theme_set": 376, "theme_us": 376, "themechang": [376, 483], "themenam": 376, "themonth": 150, "themselv": [33, 63, 73, 75, 85, 99, 101, 106, 141, 151, 158, 167, 176, 194, 208, 230, 261, 262, 275, 283, 297, 299, 319, 332, 340, 344, 362, 364, 388, 411, 419, 428, 430, 432, 464, 467, 468, 469, 474, 475, 477, 478, 480, 483], "then": [5, 7, 13, 23, 25, 27, 28, 31, 33, 34, 42, 43, 47, 49, 59, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 85, 91, 92, 93, 94, 95, 96, 100, 101, 102, 103, 106, 109, 110, 115, 120, 132, 133, 139, 144, 151, 157, 158, 161, 163, 169, 176, 177, 181, 183, 184, 186, 189, 190, 191, 193, 194, 195, 196, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 225, 226, 228, 230, 235, 243, 245, 247, 248, 250, 251, 253, 255, 257, 258, 259, 261, 262, 265, 266, 267, 268, 269, 271, 272, 275, 276, 278, 281, 283, 288, 292, 293, 297, 298, 299, 302, 307, 308, 309, 313, 314, 319, 322, 324, 325, 328, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 354, 358, 362, 364, 365, 366, 369, 371, 375, 376, 378, 380, 381, 382, 384, 385, 386, 387, 388, 390, 394, 395, 400, 403, 405, 407, 408, 410, 413, 414, 415, 420, 421, 422, 426, 427, 428, 430, 431, 432, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theorem": [275, 343, 344], "theoret": [95, 186], "theori": [84, 319, 426, 477, 478], "there": [5, 7, 9, 13, 22, 23, 25, 26, 27, 31, 33, 34, 39, 41, 42, 45, 46, 49, 51, 55, 58, 59, 60, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 92, 93, 94, 95, 100, 101, 102, 103, 105, 106, 109, 110, 114, 115, 120, 122, 132, 133, 137, 139, 144, 151, 153, 155, 157, 158, 159, 163, 166, 167, 169, 170, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 196, 197, 199, 200, 201, 203, 205, 207, 208, 209, 213, 215, 216, 218, 225, 226, 228, 230, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 255, 258, 259, 261, 265, 266, 267, 268, 269, 271, 275, 278, 281, 283, 287, 288, 292, 293, 295, 297, 299, 304, 305, 307, 308, 313, 314, 318, 319, 324, 325, 328, 330, 331, 333, 334, 335, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 378, 384, 386, 387, 388, 394, 395, 399, 400, 408, 410, 411, 413, 414, 415, 416, 421, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 455, 457, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thereaft": [183, 247, 266, 395], "therebi": [73, 85, 197, 203, 384, 477, 483], "therefor": [5, 23, 33, 42, 49, 63, 73, 75, 76, 84, 85, 92, 95, 101, 102, 103, 106, 109, 120, 139, 146, 151, 158, 173, 176, 181, 183, 208, 214, 215, 225, 243, 250, 253, 258, 262, 266, 267, 269, 281, 283, 293, 299, 313, 319, 330, 332, 333, 337, 341, 344, 352, 358, 365, 375, 386, 400, 413, 414, 421, 422, 427, 428, 430, 434, 435, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 476, 479, 480, 483], "therein": 299, "thereof": [206, 268, 269, 362, 365, 426, 429, 483], "these": [5, 7, 9, 11, 13, 18, 23, 25, 28, 31, 33, 34, 41, 42, 45, 49, 51, 58, 59, 63, 64, 66, 72, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 120, 132, 133, 141, 144, 146, 149, 151, 152, 153, 155, 158, 159, 161, 163, 167, 169, 176, 177, 178, 181, 183, 184, 186, 189, 190, 191, 192, 193, 194, 196, 197, 200, 201, 202, 205, 206, 207, 208, 209, 213, 214, 221, 225, 226, 230, 235, 242, 243, 245, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 314, 319, 320, 321, 322, 324, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 365, 366, 369, 375, 378, 380, 381, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 408, 410, 411, 413, 414, 415, 416, 419, 420, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theta": 481, "theth": 319, "theun": [480, 483], "they": [5, 7, 23, 28, 33, 34, 42, 45, 54, 55, 58, 59, 61, 63, 64, 66, 73, 75, 76, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 112, 115, 120, 133, 138, 139, 141, 144, 151, 153, 155, 158, 161, 163, 167, 169, 170, 176, 177, 178, 179, 181, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 202, 205, 207, 208, 209, 211, 213, 215, 216, 218, 225, 226, 228, 230, 233, 235, 243, 244, 247, 248, 250, 252, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 276, 281, 282, 283, 288, 292, 293, 295, 299, 302, 304, 307, 308, 309, 312, 314, 319, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 345, 346, 347, 348, 352, 355, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 380, 381, 384, 386, 387, 388, 389, 390, 394, 395, 400, 405, 408, 410, 411, 413, 414, 415, 416, 417, 419, 422, 425, 427, 428, 429, 430, 431, 432, 434, 435, 436, 442, 449, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "theyear": 150, "thick": 384, "thiel": 483, "thin": [25, 59, 68, 226, 247, 275, 287, 333, 369, 456, 473, 483], "thing": [25, 33, 63, 68, 72, 73, 75, 76, 77, 84, 85, 92, 94, 95, 99, 101, 102, 103, 109, 110, 120, 133, 157, 159, 167, 169, 176, 181, 193, 200, 206, 215, 225, 244, 250, 267, 268, 275, 283, 292, 299, 319, 334, 341, 346, 352, 358, 365, 369, 374, 376, 384, 386, 387, 388, 389, 390, 395, 399, 400, 403, 430, 431, 434, 461, 462, 463, 464, 465, 466, 467, 470, 474, 476, 477, 481, 483], "thing1": 389, "thing2": 389, "thingi": 449, "think": [23, 60, 64, 75, 85, 95, 100, 102, 106, 109, 193, 201, 225, 252, 261, 267, 292, 299, 386, 428, 430, 432, 464, 467, 468], "thinlto": [456, 473, 474, 483], "third": [5, 7, 23, 28, 31, 33, 58, 63, 73, 75, 76, 84, 85, 93, 95, 101, 102, 106, 109, 112, 117, 128, 132, 133, 138, 158, 167, 169, 176, 177, 181, 183, 184, 186, 225, 228, 250, 251, 267, 268, 293, 299, 302, 307, 319, 330, 332, 337, 340, 341, 343, 344, 352, 355, 369, 380, 386, 388, 389, 395, 399, 400, 419, 426, 428, 432, 449, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483], "thirti": [178, 316], "this": [5, 6, 7, 9, 10, 11, 13, 17, 20, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 85, 87, 89, 92, 93, 94, 95, 96, 99, 101, 102, 103, 105, 106, 107, 108, 109, 110, 112, 114, 115, 117, 120, 122, 126, 128, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 156, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 235, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 441, 446, 449, 450, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "this_dir": 388, "this_fail": 443, "this_foo": 389, "tho": 449, "thoma": [462, 463, 466, 467, 468, 469, 472, 473, 474, 477, 478, 479, 480, 483], "thomassen": 483, "thon": [85, 449], "thorn": 477, "thorough": [309, 337, 344, 475, 483], "those": [5, 7, 23, 33, 39, 59, 63, 64, 66, 67, 72, 73, 76, 77, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 106, 109, 110, 120, 133, 139, 151, 158, 161, 167, 169, 176, 177, 178, 183, 186, 190, 191, 193, 194, 196, 202, 203, 204, 205, 208, 213, 216, 220, 225, 226, 228, 234, 242, 244, 247, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 271, 276, 283, 292, 293, 295, 297, 299, 302, 308, 311, 314, 319, 322, 324, 325, 329, 330, 331, 332, 333, 335, 337, 341, 344, 352, 353, 355, 358, 361, 365, 366, 369, 375, 376, 381, 382, 384, 385, 386, 388, 394, 395, 399, 400, 405, 410, 412, 413, 415, 416, 422, 425, 426, 427, 428, 429, 430, 432, 435, 436, 455, 461, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "thou": [345, 475], "though": [9, 11, 31, 33, 58, 63, 64, 73, 75, 76, 84, 85, 92, 94, 95, 102, 106, 109, 110, 115, 120, 132, 133, 155, 158, 161, 173, 177, 186, 193, 196, 199, 200, 205, 206, 208, 213, 225, 230, 235, 243, 247, 250, 251, 252, 255, 262, 267, 269, 271, 275, 283, 288, 292, 293, 305, 311, 314, 319, 328, 331, 341, 344, 347, 362, 365, 366, 369, 382, 384, 386, 388, 395, 410, 411, 415, 425, 426, 428, 429, 430, 432, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 474, 475, 476, 483], "thought": [68, 95, 100, 283, 462, 464, 465, 470, 478], "thoughtco": 318, "thousand": [68, 109, 235, 266, 307, 308, 319, 345, 441, 479, 480, 483, 484], "thousands_sep": [266, 344, 483], "thousep": 266, "thrash": [482, 483], "thread": [5, 17, 23, 31, 32, 34, 35, 42, 51, 53, 59, 63, 68, 73, 76, 79, 85, 87, 96, 100, 101, 103, 107, 115, 118, 124, 125, 126, 129, 130, 132, 133, 134, 135, 137, 138, 140, 149, 160, 164, 166, 169, 170, 176, 187, 190, 214, 226, 232, 245, 247, 248, 254, 257, 266, 268, 269, 270, 271, 283, 290, 293, 316, 321, 322, 324, 325, 332, 338, 340, 341, 344, 348, 352, 366, 368, 386, 395, 399, 400, 402, 428, 445, 455, 456, 462, 464, 465, 466, 467, 468, 469, 470, 479, 482, 483, 484], "thread_cputim": [482, 483], "thread_foobar": 483, "thread_id": [142, 333, 366, 483], "thread_ind": 98, "thread_info": [352, 450, 476, 483], "thread_name_prefix": [166, 479, 483], "thread_pthread": 483, "thread_stack_s": 483, "thread_task": 84, "thread_tim": [366, 480, 482, 483], "thread_time_n": [366, 480, 483], "threadedchildwatch": [132, 137, 474], "threadedhttpserv": 483, "threadedtcprequesthandl": 338, "threadedtcpserv": 338, "threadgroup": 365, "threading_algorithm": 248, "threading_cleanup": [362, 483], "threading_help": [68, 187, 254], "threading_setup": [362, 483], "threadinghttpserv": [245, 480, 483], "threadingmixin": [245, 338, 480, 483], "threadingtcpserv": [102, 338], "threadingudpserv": 338, "threadingunixdatagramserv": 338, "threadingunixstreamserv": 338, "threadloc": 102, "threadnam": [102, 267], "threadpool": [283, 483], "threadpoolexecutor": [68, 84, 125, 126, 164, 283, 365, 473, 475, 478, 479, 480, 481, 482, 483], "threadsaf": [125, 226, 261, 267, 318, 483], "threadsafeti": [340, 473, 483], "threaten": [95, 464, 465], "three": [5, 7, 23, 31, 35, 42, 58, 63, 73, 75, 76, 77, 84, 85, 93, 94, 101, 102, 103, 106, 109, 117, 120, 133, 134, 139, 158, 160, 161, 175, 176, 177, 181, 183, 186, 189, 190, 191, 193, 194, 196, 200, 205, 207, 211, 213, 215, 216, 225, 226, 243, 245, 248, 250, 266, 268, 269, 271, 278, 283, 288, 292, 293, 295, 297, 299, 307, 308, 314, 318, 319, 328, 332, 333, 334, 337, 340, 341, 344, 347, 348, 352, 353, 358, 359, 366, 369, 376, 384, 385, 386, 388, 389, 390, 395, 399, 403, 410, 414, 415, 419, 425, 427, 428, 430, 431, 432, 434, 435, 436, 441, 451, 452, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 480, 481, 483], "three_year": 183, "threefold": 101, "threshold": [101, 102, 267, 344, 467], "threshold0": 227, "threshold1": 227, "threshold2": 227, "threw": 483, "throttl": 267, "through": [5, 7, 9, 11, 22, 23, 28, 33, 42, 45, 51, 55, 59, 60, 63, 64, 67, 68, 73, 76, 77, 85, 91, 93, 95, 99, 100, 101, 102, 106, 109, 110, 120, 144, 151, 158, 167, 176, 177, 178, 181, 183, 186, 190, 191, 193, 194, 196, 197, 202, 204, 205, 206, 208, 216, 221, 225, 226, 230, 242, 244, 245, 247, 250, 251, 257, 267, 268, 269, 271, 275, 278, 281, 283, 292, 293, 297, 301, 302, 312, 314, 319, 335, 337, 340, 341, 342, 344, 345, 348, 352, 362, 364, 365, 369, 375, 376, 385, 386, 388, 394, 395, 406, 410, 411, 413, 415, 417, 419, 422, 426, 427, 428, 429, 430, 432, 434, 435, 436, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "throughout": [68, 73, 93, 101, 112, 186, 250, 434, 462, 464, 465, 467, 468, 469, 475, 478, 483], "throughput": [469, 480, 483], "throw": [33, 66, 77, 94, 95, 101, 112, 128, 139, 161, 177, 191, 247, 293, 353, 362, 386, 394, 428, 430, 431, 467, 474, 476, 479, 482, 483], "throwflag": [33, 66, 96, 483], "thrown": [66, 95, 139, 183, 186, 268, 319, 464, 465, 476, 483], "ths": 344, "thu": [106, 150, 366], "thulasiram": 474, "thumb": [63, 100, 190, 376], "thunderbird": 106, "thursday": [94, 150, 183, 211], "thus": [5, 7, 10, 33, 42, 54, 73, 84, 85, 94, 100, 101, 102, 117, 120, 167, 169, 176, 177, 193, 201, 204, 205, 208, 225, 228, 235, 243, 250, 251, 259, 262, 266, 267, 268, 269, 275, 283, 292, 293, 299, 313, 319, 331, 332, 334, 337, 340, 341, 344, 348, 352, 358, 362, 366, 384, 386, 388, 394, 395, 405, 421, 425, 427, 430, 432, 435, 436, 455, 461, 462, 470, 475, 476, 477, 478, 479, 481, 483], "thusli": 384, "tiago": 476, "tian": [474, 483], "tibetan": 109, "tic": 442, "tick": [308, 322, 366], "tick_count": 477, "ticker": 479, "ticket": [341, 483], "ticket_lifetime_hint": 341, "tid": [96, 365, 483], "tide": [190, 375], "tidi": [267, 388, 465, 467, 468, 483], "tidier": 467, "tie": [33, 186, 308, 341, 353, 427, 481, 483], "tiebreak": 183, "tiedemann": 462, "tier": [13, 473, 474, 483], "tiff": [206, 249, 369, 467], "tiger": 319, "tigetflag": 177, "tigetnum": 177, "tigetstr": 177, "tight": [85, 101, 135, 430, 434, 483], "tighten": [243, 462, 469, 475], "tighter": [186, 427, 466, 476], "tikhonov": 483, "tild": [193, 231, 294, 377], "tile": [376, 384, 469], "till": [225, 283, 308, 341, 359, 482, 483], "tillenius": 467, "tilt": 384, "tiltangl": [384, 473, 483], "tim": [114, 345, 367, 461, 462, 463, 464, 465, 466, 467, 469, 473, 474, 477, 478, 479, 482, 483], "time": [4, 5, 13, 20, 22, 23, 27, 28, 31, 33, 34, 41, 42, 45, 54, 63, 64, 68, 72, 73, 75, 76, 77, 79, 81, 85, 86, 87, 92, 93, 94, 95, 96, 106, 108, 110, 115, 117, 118, 120, 126, 132, 133, 134, 136, 138, 139, 141, 142, 144, 146, 150, 151, 157, 160, 163, 166, 167, 169, 173, 176, 177, 182, 186, 190, 193, 202, 203, 208, 209, 212, 213, 214, 216, 218, 225, 226, 230, 234, 235, 243, 245, 247, 248, 250, 254, 255, 257, 259, 261, 266, 267, 268, 269, 271, 276, 281, 282, 283, 284, 288, 292, 293, 294, 295, 297, 299, 308, 309, 314, 318, 319, 320, 322, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 340, 341, 342, 344, 348, 352, 353, 358, 359, 362, 364, 365, 367, 369, 372, 375, 376, 379, 380, 384, 386, 388, 389, 390, 395, 398, 400, 402, 405, 408, 410, 415, 416, 419, 420, 422, 423, 426, 427, 428, 429, 430, 432, 434, 435, 436, 440, 443, 449, 451, 452, 455, 456, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 474, 477, 483], "time2internald": 248, "time2netscap": 483, "time_": 271, "time_fromtimeandfold": 483, "time_hi_vers": 398, "time_low": 398, "time_mid": 398, "time_n": [366, 480, 483], "time_str": 183, "time_strftim": 483, "time_t": [176, 483], "time_taken": 367, "time_to_birthday": 183, "time_wait": [126, 337], "timeboundedlru": 160, "timedelta": [20, 68, 94, 182, 288, 385, 425, 465, 469, 475, 476, 480, 481, 482, 483], "timedrotatingfilehandl": [68, 101, 118, 466, 468, 477, 483], "timefunc": [325, 476], "timegm": [150, 366], "timeit": [68, 85, 156, 169, 185, 254, 308, 451, 455, 465, 466, 468, 483], "timelin": [68, 187], "timemodul": 483, "timeout": [68, 96, 102, 107, 110, 115, 124, 126, 129, 134, 135, 137, 138, 166, 169, 177, 185, 223, 242, 248, 268, 269, 283, 288, 297, 305, 316, 328, 329, 333, 335, 338, 340, 341, 348, 359, 362, 365, 366, 381, 386, 395, 456, 465, 468, 469, 472, 473, 475, 476, 478, 481, 482, 483], "timeout_at": [139, 483], "timeout_max": [115, 365], "timeouterror": [23, 127, 139, 166, 212, 213, 283, 335, 337, 450, 472, 476, 483], "timeoutexpir": 348, "timeperiod": [68, 211], "timer": [68, 92, 96, 98, 164, 185, 212, 214, 283, 328, 333, 366, 367, 369, 376, 384, 451, 464, 465, 468, 476, 478, 479, 480, 483], "timer1": 465, "timer2": 465, "timerhandl": [126, 483], "timeslic": 352, "timespec": [183, 479, 483], "timestamp": [98, 102, 160, 163, 183, 203, 209, 234, 245, 293, 311, 335, 340, 341, 358, 366, 380, 422, 432, 455, 465, 469, 476, 478, 480, 483], "timetupl": 183, "timetz": 183, "timeunit": 308, "timev": [209, 483], "timezon": [20, 68, 102, 118, 182, 190, 203, 209, 340, 362, 379, 425, 451, 473, 474, 475, 476, 478, 479, 480, 483], "timo": [426, 483], "timothi": 426, "timsort": [108, 475], "timzon": 483, "tin": [110, 271, 483], "tincidunt": 149, "tinfo": 483, "tini": [5, 84, 85, 181, 462, 468, 469, 483], "tinker": [96, 358], "tino": 465, "tiny_sha3": [473, 483], "tiocgpgrp": 215, "tiocgsiz": 361, "tiocgwinsz": 361, "tiocssiz": 361, "tiocswinsz": 361, "tip": [68, 96, 225, 246, 247, 462, 469, 483], "tipc": [337, 468], "tipc_": 337, "tipc_addr_id": 337, "tipc_addr_nam": 337, "tipc_addr_nameseq": 337, "tipc_cluster_scop": 337, "tipc_node_scop": 337, "tipc_zone_scop": 337, "tiram": 480, "tiran": 483, "tiremove_thisg": 319, "tirosh": [465, 476], "tis": [465, 466, 483], "tis260": 483, "tishler": [463, 465, 483], "tismer": [462, 477], "titan": 147, "titl": [1, 64, 84, 93, 95, 106, 109, 110, 120, 151, 160, 184, 189, 240, 247, 262, 267, 281, 283, 292, 337, 340, 344, 345, 369, 373, 384, 386, 395, 411, 412, 413, 420, 426, 462, 464, 466, 473, 475, 481, 483], "titlebar": 384, "titlecas": [64, 344, 435, 483], "titledhelpformatt": 292, "titlestr": [85, 384], "tix": [68, 81, 254, 368, 369, 465, 479, 483], "tix_addbitmapdir": 375, "tix_cget": 375, "tix_config": 375, "tix_configur": 375, "tix_filedialog": 375, "tix_getbitmap": 375, "tix_getimag": 375, "tix_librari": 375, "tix_option_get": 375, "tix_resetopt": 375, "tixcommand": 375, "tixexfileselectdialog": 375, "tixinspect": 375, "tixnotebook": 375, "tk": [68, 247, 254, 371, 372, 384, 439, 459, 461, 462, 463, 468, 471, 472, 473, 475, 476, 478, 479, 480, 482, 483], "tk_aqua": 483, "tk_bindfortravers": [479, 483], "tk_librari": 81, "tk_menubar": [479, 483], "tk_popup": 375, "tkapp": [465, 483], "tkappinit": 81, "tkapptyp": [473, 482, 483], "tkcmd": 469, "tkdoc": [369, 483], "tkfixedfont": 483, "tkfont": 479, "tkinter": [68, 80, 254, 368, 384, 459, 462, 465, 468, 469, 470, 471, 483], "tkinter_protect_loadtk": 483, "tl": 177, "tlabel": 376, "tld": 268, "tlist": 375, "tls": [68, 130, 136, 223, 242, 254, 260, 269, 293, 305, 327, 335, 337, 362, 456, 460, 464, 468, 469, 472, 473, 474, 475, 477, 478, 479, 480, 481, 483], "tls1": 469, "tlsv1": [341, 477, 483], "tlsv1_1": 341, "tlsv1_2": 341, "tlsv1_3": 341, "tlsv1_alert_internal_error": 483, "tlsversion": [341, 483], "tm": [366, 375], "tm_gmtoff": [366, 479, 483], "tm_hour": 366, "tm_isdst": [183, 366], "tm_mday": 366, "tm_min": 366, "tm_mon": 366, "tm_sec": 366, "tm_wday": 366, "tm_yday": 366, "tm_year": [366, 464], "tm_zone": [366, 479, 483], "tmenubutton": 376, "tmp": [51, 76, 96, 102, 109, 169, 223, 245, 271, 332, 360, 432, 456, 462, 465, 466, 467, 468, 469, 475, 481], "tmp1223": 272, "tmp_file": 110, "tmpdir": [360, 483], "tmpdirmixin": 344, "tmpdirnam": [360, 475], "tmpfile": 470, "tmpfs": 483, "tmpnam": 470, "tmptjujjt": 360, "tn": 359, "to": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 71, 72, 73, 74, 75, 77, 78, 80, 87, 89, 91, 92, 93, 95, 96, 99, 103, 105, 106, 107, 108, 110, 112, 114, 115, 117, 118, 120, 122, 124, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 146, 147, 148, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 225, 226, 228, 230, 232, 233, 234, 235, 236, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 267, 269, 270, 271, 272, 273, 275, 276, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 292, 295, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 369, 371, 374, 375, 376, 377, 378, 380, 381, 382, 383, 385, 387, 388, 389, 390, 394, 395, 397, 398, 399, 400, 402, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 440, 441, 442, 443, 446, 448, 449, 450, 451, 452, 455, 456, 457, 461, 463, 464, 472, 473, 483, 484], "to_addr": [335, 475], "to_angl": 384, "to_byt": [39, 344, 483], "to_eng_str": [186, 466], "to_integr": 186, "to_integral_exact": 186, "to_integral_valu": 186, "to_sci_str": [186, 466], "to_start": 64, "to_thread": [124, 139, 482, 483], "toaddr": [84, 102, 268, 269, 335], "toaiff": 468, "toascii": 158, "tobi": [462, 483], "tobia": 462, "tobuf": 358, "tobyt": [121, 344, 469, 475, 482, 483], "toc": [247, 483], "tocknel": [480, 483], "todat": 190, "today": [72, 94, 109, 167, 183, 211, 288, 295, 340, 390, 419, 435, 451, 463, 465, 466, 468, 481], "toder": [480, 483], "todesc": 190, "toe": 442, "tofil": [121, 190, 470], "tofiled": 190, "toga": 459, "togeth": [61, 63, 68, 72, 92, 93, 95, 99, 101, 102, 103, 106, 120, 133, 158, 160, 176, 193, 202, 207, 208, 218, 225, 234, 235, 243, 244, 247, 259, 261, 267, 268, 271, 293, 332, 341, 344, 353, 369, 374, 384, 386, 388, 395, 399, 412, 414, 426, 428, 430, 449, 466, 474, 475, 476, 482, 483], "toggl": [247, 337, 376, 481, 482, 483], "tohexstr": 344, "toijala": 483, "tok": 431, "tok_nam": [377, 483], "tok_nextc": 483, "tok_regex": 319, "toke": 483, "token": [17, 66, 68, 84, 116, 122, 156, 170, 174, 250, 254, 264, 265, 281, 282, 286, 304, 314, 318, 331, 348, 357, 363, 395, 409, 427, 431, 433, 434, 443, 447, 469, 470, 475, 479, 480, 483], "token_": 326, "token_byt": [318, 326], "token_hex": [326, 483], "token_specif": 319, "token_urlsaf": 326, "tokenerror": [378, 474, 483], "tokeninfo": 483, "toknum": 378, "tokval": 378, "tokyo": 425, "told": [101, 386, 399, 428, 465], "toler": [141, 154, 184, 259, 275, 478, 480, 483], "tolin": 190, "tolist": [121, 344, 464, 469, 475], "tom": [109, 379, 464, 467, 472, 475, 477, 483], "tomato": [94, 340], "toml": [68, 76, 167, 217, 254, 258, 472, 473, 483], "toml_str": 379, "tomldecodeerror": 379, "tomllib": [68, 167, 217, 254, 473, 483], "tommath": 483, "tomono": 141, "ton": 345, "tonam": 223, "toni": [319, 468, 483], "too": [5, 35, 63, 66, 75, 84, 92, 94, 95, 101, 102, 103, 106, 109, 110, 133, 137, 139, 151, 158, 167, 169, 176, 184, 186, 191, 193, 194, 204, 212, 213, 230, 243, 257, 258, 259, 283, 292, 305, 307, 314, 332, 333, 337, 338, 340, 341, 344, 345, 347, 348, 352, 359, 362, 365, 369, 384, 386, 388, 413, 422, 423, 428, 432, 434, 451, 455, 462, 463, 464, 465, 466, 468, 469, 470, 474, 476, 478, 480, 481, 483], "too_ear": [241, 482, 483], "too_many_request": 241, "took": [139, 169, 308, 462, 483], "tool": [31, 33, 51, 68, 72, 79, 85, 87, 92, 93, 95, 99, 101, 102, 106, 108, 109, 112, 137, 155, 156, 169, 176, 193, 194, 204, 223, 225, 226, 230, 231, 251, 254, 255, 261, 262, 299, 307, 315, 321, 331, 333, 352, 378, 380, 382, 384, 386, 388, 399, 413, 421, 422, 428, 436, 456, 457, 459, 461, 462, 463, 464, 465, 467, 468, 470, 471, 473, 475, 476, 477, 478, 479, 482, 484], "tool_id": 353, "toolbox": [463, 464, 465], "toolchain": [468, 479, 483], "toolkit": [109, 369, 439, 462], "toolset": [93, 261, 292, 468, 483], "tooltip": [384, 483], "toordin": 183, "top": [31, 33, 42, 68, 73, 84, 85, 92, 94, 95, 96, 101, 102, 106, 110, 115, 120, 135, 139, 142, 151, 152, 158, 167, 170, 176, 177, 179, 185, 189, 190, 191, 193, 207, 213, 225, 226, 230, 243, 247, 248, 250, 251, 255, 257, 266, 276, 285, 293, 296, 299, 302, 304, 305, 308, 312, 313, 314, 324, 341, 342, 351, 352, 358, 362, 365, 369, 371, 375, 376, 384, 385, 388, 389, 399, 413, 419, 420, 422, 427, 429, 432, 435, 436, 440, 450, 451, 455, 462, 463, 464, 465, 467, 468, 469, 470, 472, 474, 475, 476, 477, 479, 480, 481, 482, 483], "top_down": 296, "top_el": 411, "top_level_dir": 388, "top_level_url": 110, "top_panel": 179, "top_stat": 382, "topbottom": 384, "topdown": [142, 293], "topic": [63, 68, 72, 74, 76, 84, 92, 102, 106, 155, 193, 292, 307, 313, 337, 462, 465, 471, 483], "toplevel": [73, 160, 186, 225, 369, 375, 376, 413, 483], "topmost": [160, 352, 467, 483], "topolog": [232, 465, 482, 483], "topological_sort": 232, "topologicalsort": [232, 482, 483], "toprettyxml": [411, 465, 481], "topsecret": 167, "tor": 288, "toreadon": [344, 483], "torgb": 468, "torhamo": 483, "toriz": 483, "torn": 483, "tornetta": [473, 483], "torpedo": 475, "torr": [478, 483], "torsten": [475, 476, 483], "tort": 426, "tortious": 426, "tos": [209, 472, 483], "toshio": 477, "tosi": 476, "toss": 465, "tostereo": 141, "tostr": [121, 413, 469, 475, 477, 482, 483], "tostringlist": [413, 475, 477, 483], "total": [33, 34, 35, 59, 73, 78, 85, 89, 95, 102, 117, 133, 134, 139, 160, 183, 186, 190, 191, 193, 196, 205, 211, 225, 226, 230, 259, 261, 272, 293, 308, 319, 332, 337, 340, 341, 344, 345, 358, 366, 376, 382, 386, 388, 395, 428, 430, 435, 444, 455, 469, 473, 474, 475, 476, 477, 478, 479, 481, 483], "total_chang": 340, "total_cost": 181, "total_nfram": [382, 483], "total_ord": [108, 226, 428, 430, 469, 475, 477, 483], "total_result": 284, "total_second": [183, 469], "total_sleep_tim": 134, "total_slept_for": 134, "total_tim": 96, "total_vot": 446, "totals": 107, "toth": 483, "totient": 261, "totientfunct": 261, "tottim": 308, "touch": [5, 68, 85, 177, 247, 296, 297, 429, 468, 481, 483], "touchlin": 177, "touchwin": 177, "tough": 85, "tounicod": [85, 121, 158], "tour": [95, 464, 465], "toward": [85, 146, 186, 193, 196, 205, 218, 221, 222, 225, 267, 275, 344, 352, 364, 366, 384, 428, 463, 465, 467, 468, 477, 482, 483], "tower": [221, 384, 468, 470, 483], "townshend": 476, "toxml": [411, 412, 462, 465, 481], "toy": [75, 299], "tp": [50, 68, 337, 362, 384, 386, 483], "tp_": 75, "tp_alloc": [61, 63, 75, 76, 100, 483], "tp_as_async": [63, 75, 478], "tp_as_buff": [63, 75, 482, 483], "tp_as_map": [63, 75], "tp_as_numb": [47, 63, 75, 482, 483], "tp_as_sequ": [63, 75], "tp_base": [63, 75, 76, 483], "tp_basics": [3, 28, 61, 63, 75, 76, 482, 483], "tp_cach": [61, 63, 75], "tp_call": [2, 23, 63, 68, 75, 474, 483], "tp_clear": [28, 45, 63, 75, 76, 100, 483], "tp_compar": [63, 75], "tp_dealloc": [3, 28, 61, 63, 67, 68, 75, 76, 473, 481, 483], "tp_del": [63, 75, 227], "tp_descr_get": [63, 75], "tp_descr_set": [63, 75, 483], "tp_dict": [61, 63, 75, 468, 483], "tp_dictoffset": [58, 61, 63, 75, 474, 483], "tp_doc": [61, 63, 75, 76, 472, 483], "tp_final": [63, 75, 478, 481, 483], "tp_flag": [28, 61, 63, 75, 76, 100, 191, 468, 482, 483], "tp_free": [63, 68, 75, 76], "tp_getattr": [63, 75], "tp_getattro": [49, 63, 75, 483], "tp_getset": [58, 63, 75, 76], "tp_hash": [30, 49, 63, 75, 468], "tp_init": [10, 61, 63, 75, 76, 474, 483], "tp_is_gc": [63, 75], "tp_items": [3, 28, 61, 63, 75, 76], "tp_iter": [63, 75, 344, 464], "tp_iternext": [63, 75, 344, 464, 483], "tp_member": [58, 63, 75, 76, 473, 483], "tp_method": [63, 75, 76], "tp_mro": [61, 63, 75, 483], "tp_name": [45, 61, 63, 75, 76, 483], "tp_new": [10, 61, 63, 75, 76, 100, 474, 483], "tp_print": [63, 482], "tp_repr": [23, 63, 75], "tp_reserv": [63, 75, 478], "tp_richcmp": 463, "tp_richcompar": [63, 75, 483], "tp_setattr": [63, 75], "tp_setattro": [49, 63, 75], "tp_str": [63, 75], "tp_subclass": [61, 63, 75, 474, 483], "tp_travers": [28, 61, 63, 68, 75, 76, 227, 473, 482, 483], "tp_vectorcal": [61, 63, 75, 483], "tp_vectorcall_offset": [10, 58, 61, 63, 75, 483], "tp_version_tag": [63, 75, 483], "tp_watch": [63, 75], "tp_weaklist": [61, 63, 75, 474], "tp_weaklistoffset": [58, 61, 63, 75, 474, 482, 483], "tparm": 177, "tpip": 95, "tput": 177, "tr": [110, 177, 240, 301, 314, 395, 411, 413, 426, 483], "trac": 468, "trace": [32, 34, 35, 42, 63, 68, 73, 98, 101, 104, 115, 144, 156, 157, 171, 176, 185, 191, 214, 226, 241, 248, 254, 255, 257, 293, 297, 340, 352, 362, 365, 381, 384, 426, 428, 436, 455, 456, 463, 464, 465, 469, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "trace_add": [479, 483], "trace_callback": 340, "trace_dispatch": 144, "trace_info": [479, 483], "trace_remov": [479, 483], "trace_vari": [479, 483], "trace_vdelet": [479, 483], "trace_vinfo": [479, 483], "traceabl": 483, "traceback": [23, 34, 42, 66, 68, 73, 76, 79, 85, 89, 92, 93, 94, 95, 99, 100, 101, 102, 103, 109, 114, 120, 125, 139, 140, 142, 151, 157, 160, 163, 167, 169, 176, 177, 185, 186, 188, 191, 193, 211, 213, 225, 247, 254, 255, 259, 265, 267, 268, 269, 283, 284, 296, 297, 299, 311, 315, 319, 338, 340, 344, 345, 347, 348, 350, 352, 365, 367, 384, 385, 387, 388, 389, 390, 407, 427, 429, 430, 436, 440, 441, 442, 443, 446, 449, 452, 455, 456, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 480, 481, 482, 483], "traceback_limit": [382, 407], "tracebackexcept": [68, 315, 473, 478, 483], "tracebacklimit": [352, 483], "tracebackobj": 436, "tracebackobject": 466, "tracebacktyp": [267, 381, 385, 428, 480, 483], "tracefunc": 352, "tracemalloc": [32, 34, 68, 185, 188, 254, 362, 426, 455, 483], "tracer": [380, 384, 468, 483], "tracing_poss": 483, "track": [23, 28, 42, 63, 85, 94, 96, 100, 101, 106, 151, 158, 167, 169, 181, 186, 193, 227, 269, 283, 292, 293, 299, 319, 328, 352, 365, 366, 369, 371, 380, 388, 395, 410, 426, 462, 463, 466, 469, 471, 474, 475, 477, 478, 479, 480, 481, 482, 483], "track_entry_and_exit": [169, 475], "trackcal": 380, "tracker": [1, 68, 96, 283, 362, 467, 469, 483], "tractabl": 84, "trad": 483, "trade": [216, 292, 344, 426], "trademark": 426, "tradeoff": [42, 483], "tradit": [63, 73, 76, 93, 100, 173, 266, 271, 275, 292, 293, 299, 308, 355, 359, 362, 427, 431, 432, 456, 461, 465, 468, 475, 480, 483], "traffic": [208, 337, 341, 464, 475, 483], "trail": [5, 33, 34, 39, 64, 78, 92, 95, 106, 146, 157, 158, 159, 167, 177, 186, 190, 196, 205, 208, 221, 225, 228, 247, 271, 284, 314, 337, 341, 344, 345, 348, 356, 366, 369, 381, 395, 410, 427, 428, 430, 431, 435, 436, 442, 451, 455, 462, 466, 468, 469, 470, 471, 475, 477, 478, 479, 480, 481, 483], "trailer": [101, 293, 424, 431, 483], "trailneg": 186, "trampolin": [34, 352, 474, 483], "tran": 467, "transact": [68, 95, 242, 243, 281, 298, 318, 365, 465, 467, 468, 474, 475, 478, 479, 483], "transcod": [158, 475], "transcript": 193, "transfer": [33, 72, 73, 92, 110, 136, 143, 169, 191, 195, 196, 197, 198, 201, 202, 203, 206, 207, 208, 223, 235, 241, 242, 244, 271, 276, 283, 288, 293, 299, 335, 347, 395, 397, 419, 426, 430, 432, 468, 469, 475, 476, 479, 481, 483], "transfer_encod": 201, "transfercmd": 223, "transform": [64, 68, 87, 93, 94, 95, 102, 108, 109, 112, 122, 139, 145, 167, 183, 186, 193, 196, 197, 201, 205, 208, 213, 225, 226, 255, 266, 267, 271, 299, 344, 378, 384, 385, 386, 413, 426, 427, 428, 430, 462, 463, 468, 470, 477, 478, 480, 483], "transient": [247, 268, 340, 483], "transient_internet": 362, "transientresourc": 468, "transit": [94, 99, 100, 110, 183, 226, 268, 330, 338, 395, 425, 430, 464, 466, 467, 469, 476, 483], "translat": [64, 68, 73, 106, 109, 112, 158, 176, 177, 187, 212, 213, 220, 222, 225, 245, 246, 250, 258, 262, 282, 293, 333, 337, 344, 348, 387, 413, 417, 419, 426, 427, 428, 462, 465, 466, 468, 469, 470, 471, 473, 475, 478, 480, 481, 483], "transliter": 337, "transmiss": [109, 178, 208, 269], "transmit": [110, 133, 141, 242, 288, 335, 337, 361, 419, 466, 481], "transpar": [109, 120, 149, 158, 176, 177, 191, 202, 203, 218, 241, 247, 258, 270, 299, 358, 376, 384, 461, 463, 465, 466, 476, 477, 479, 480, 483], "transparency_get": 481, "transparency_set": 481, "transport": [68, 123, 126, 129, 130, 136, 137, 170, 194, 201, 206, 212, 335, 341, 418, 419, 464, 478, 479, 480, 483], "transportsocket": [126, 483], "transpos": [225, 261, 442, 466], "transposed_row": 442, "trap": [169, 186, 464, 466, 476, 483], "trash": [63, 271, 483], "trash_delete_nest": 483, "trashcan": [462, 473, 482, 483], "traur": 464, "traut": [472, 473, 474, 483], "travel": 384, "travers": [28, 31, 45, 63, 76, 95, 100, 112, 122, 163, 184, 196, 205, 213, 250, 252, 253, 267, 293, 302, 376, 386, 388, 412, 413, 422, 432, 436, 462, 464, 465, 467, 468, 469, 473, 474, 478, 481, 482, 483], "traversableread": 483, "traversableresourc": [250, 253, 474, 483], "traverseproc": [28, 45, 57, 63, 75, 76], "travi": [467, 468, 469, 483], "treat": [56, 58, 59, 61, 63, 64, 66, 68, 84, 94, 95, 99, 100, 106, 120, 139, 141, 158, 167, 177, 181, 183, 186, 190, 193, 194, 203, 205, 216, 221, 226, 243, 245, 259, 261, 267, 268, 271, 275, 292, 319, 331, 335, 340, 344, 345, 348, 353, 358, 362, 364, 369, 376, 386, 388, 394, 395, 400, 412, 413, 427, 428, 429, 430, 435, 436, 461, 462, 464, 467, 468, 469, 470, 476, 479, 481, 482, 483], "treatment": [42, 49, 102, 194, 283, 394, 462, 470], "tree": [16, 33, 34, 63, 68, 78, 84, 85, 95, 112, 151, 163, 174, 190, 194, 196, 204, 205, 207, 216, 247, 254, 264, 273, 293, 311, 312, 332, 342, 352, 357, 369, 375, 376, 377, 384, 399, 410, 411, 412, 428, 431, 452, 455, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 478, 479, 481, 482, 483], "treebuild": [68, 273, 475, 481, 483], "treesync": 483, "treeview": [68, 368, 481, 483], "treeviewclos": 376, "treeviewopen": 376, "treeviewselect": 376, "tremend": 84, "trent": [462, 465, 467, 477], "trepan3k": 85, "trevino": 476, "trevor": 466, "tri": [33, 34, 35, 42, 45, 49, 63, 68, 71, 73, 75, 76, 77, 78, 79, 84, 87, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 120, 122, 126, 133, 135, 138, 139, 140, 141, 146, 149, 151, 159, 160, 166, 167, 175, 176, 177, 183, 186, 190, 191, 193, 200, 203, 209, 212, 213, 225, 226, 228, 230, 245, 247, 250, 255, 258, 261, 262, 266, 267, 268, 269, 271, 276, 279, 282, 283, 292, 293, 295, 297, 299, 302, 305, 308, 313, 314, 315, 319, 320, 322, 323, 330, 331, 332, 333, 335, 337, 340, 341, 348, 352, 358, 359, 361, 362, 365, 367, 369, 375, 381, 384, 386, 395, 399, 400, 402, 403, 407, 408, 413, 419, 420, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 441, 443, 446, 449, 455, 461, 462, 463, 464, 465, 466, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "triad": 474, "trial": [193, 318, 465], "triangl": [275, 384], "triangular": [318, 468], "tricenarian": 343, "trick": [31, 85, 176, 225, 297, 340, 352, 386, 390, 440, 464], "tricki": [63, 85, 94, 157, 292, 369, 462, 463, 470], "trickier": [85, 292], "trifl": 355, "trig": 483, "trigger": [22, 33, 34, 42, 63, 68, 76, 93, 95, 139, 169, 177, 186, 189, 196, 205, 213, 226, 250, 255, 283, 292, 293, 333, 334, 340, 344, 352, 353, 369, 371, 388, 394, 400, 413, 419, 428, 455, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 478, 479, 480, 483], "trigonometr": [68, 290, 466], "trio": 483, "trip": [102, 149, 243, 378, 468, 470, 471, 473, 483], "tripathi": [478, 483], "tripl": [79, 87, 106, 109, 177, 190, 288, 293, 319, 328, 344, 364, 384, 427, 428, 435, 474, 483], "triplet": [474, 483], "tristan": 483, "tristiqu": 149, "trivia": 467, "trivial": [63, 68, 72, 73, 75, 84, 95, 103, 137, 151, 194, 200, 208, 234, 283, 299, 319, 352, 465, 476, 477, 483], "trivial_dealloc": 75, "trivialobject": 75, "trivialtyp": 75, "triy": 483, "troeger": 483, "trojan": [468, 469], "trondheim": 442, "troubl": [72, 99, 110, 461, 466], "trouv": 109, "trove": 465, "troxler": [474, 483], "trsock": [126, 483], "tru64": 470, "true": [5, 6, 7, 9, 11, 13, 15, 17, 20, 22, 23, 25, 27, 33, 34, 35, 37, 38, 39, 43, 44, 45, 49, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 73, 76, 78, 84, 85, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 107, 108, 109, 112, 114, 115, 116, 120, 122, 125, 126, 129, 130, 132, 133, 134, 135, 136, 138, 139, 143, 144, 146, 149, 150, 151, 153, 154, 155, 157, 158, 160, 161, 163, 166, 167, 168, 169, 170, 173, 175, 176, 177, 179, 181, 183, 186, 188, 189, 190, 191, 193, 196, 200, 201, 203, 204, 205, 207, 208, 209, 211, 213, 214, 215, 216, 218, 220, 221, 225, 226, 227, 228, 230, 231, 232, 235, 236, 238, 240, 241, 242, 243, 248, 250, 251, 252, 253, 255, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271, 275, 276, 278, 282, 283, 284, 288, 291, 292, 293, 294, 295, 296, 297, 299, 301, 303, 304, 307, 308, 311, 312, 314, 316, 317, 319, 320, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 351, 352, 355, 358, 360, 362, 364, 365, 366, 369, 373, 376, 377, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 396, 397, 399, 400, 402, 403, 405, 407, 410, 411, 412, 413, 415, 417, 419, 420, 421, 422, 423, 425, 427, 428, 430, 431, 435, 436, 440, 441, 442, 443, 444, 446, 448, 449, 450, 452, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "true_v": 467, "true_valu": 467, "truediv": 291, "truli": [33, 73, 84, 85, 100, 115, 139, 181, 271, 364, 395, 469, 470, 483], "trunc": [275, 289, 344, 428, 468, 483], "truncat": [5, 59, 64, 84, 96, 141, 142, 149, 177, 183, 186, 225, 234, 248, 258, 261, 270, 293, 320, 337, 340, 344, 347, 360, 362, 364, 381, 382, 397, 422, 428, 430, 446, 462, 464, 468, 469, 470, 475, 476, 477, 478, 480, 483], "trunk": [467, 468], "trust": [151, 268, 283, 299, 302, 305, 341, 348, 358, 394, 460, 461, 468, 469, 477, 479, 480, 481, 482, 483], "trust_server_pasv_ipv4_address": [479, 480, 481, 482, 483], "trusti": 480, "truth": [5, 95, 176, 225, 291, 344, 347, 413, 428, 430, 465, 474, 483], "try1_stmt": 427, "try2_stmt": 427, "try3_stmt": 427, "try_stmt": [427, 431], "trystar": 122, "ts": [122, 177, 232, 384, 386, 427, 467, 474, 483], "ts2": 232, "tsan": 483, "tsander": 483, "tsc": 466, "tshepang": 89, "tsl": 341, "tsl1": 341, "tss": [68, 480, 483], "tstate": [33, 473, 474, 482, 483], "tstate_curr": 483, "tstate_p": 33, "tsufeki": 483, "tt": 183, "tti": [68, 177, 229, 254, 258, 293, 391, 437, 438, 448, 455, 468, 483], "ttk": [68, 254, 368, 369, 375, 471, 479, 480, 481, 483], "ttk_intro": 469, "ttkstyle": 376, "tts": 102, "ttshandler": 102, "ttynam": [293, 483], "ttyname_r": 483, "ttys": 468, "ttys0": 333, "tu": [150, 465], "tucson": 95, "tue": [150, 183], "tuesday": [94, 150, 183, 211, 269, 451], "tuininga": 483, "tunabl": [235, 293, 475], "tune": [34, 226, 243, 292, 322, 341, 462, 465, 474, 483], "tunnel": [242, 475, 483], "tuoma": 483, "tup": [307, 384, 386], "tupl": [3, 5, 10, 14, 16, 23, 27, 35, 38, 42, 49, 54, 55, 58, 59, 61, 62, 63, 66, 68, 72, 73, 75, 76, 79, 87, 94, 95, 98, 101, 102, 106, 108, 110, 112, 113, 115, 116, 117, 120, 121, 122, 133, 134, 137, 141, 144, 147, 150, 152, 155, 158, 166, 170, 176, 177, 181, 182, 183, 184, 186, 187, 189, 190, 191, 193, 196, 203, 205, 208, 209, 213, 221, 223, 225, 226, 227, 232, 233, 236, 242, 243, 244, 245, 248, 250, 254, 255, 258, 259, 261, 262, 266, 267, 269, 271, 272, 274, 276, 279, 281, 283, 286, 288, 289, 291, 292, 293, 295, 299, 303, 304, 305, 307, 308, 310, 314, 316, 318, 319, 322, 325, 328, 329, 331, 332, 333, 335, 336, 337, 338, 339, 340, 341, 342, 345, 347, 348, 349, 351, 355, 359, 360, 361, 362, 365, 366, 369, 376, 378, 381, 382, 384, 385, 388, 389, 394, 395, 396, 398, 400, 401, 402, 405, 412, 413, 415, 416, 419, 420, 422, 427, 428, 429, 430, 431, 432, 436, 440, 441, 443, 445, 446, 450, 451, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "tuple2": 300, "tuple_factori": 181, "tuple_kind": 431, "tuple_param": 112, "tuppl": 291, "turn": [5, 23, 33, 34, 58, 63, 68, 73, 85, 89, 92, 93, 95, 101, 106, 109, 110, 112, 120, 128, 155, 158, 167, 176, 177, 190, 193, 194, 208, 209, 225, 243, 245, 247, 255, 266, 267, 268, 283, 292, 298, 301, 311, 315, 316, 320, 328, 333, 335, 337, 361, 362, 365, 369, 384, 388, 395, 400, 420, 427, 432, 434, 435, 455, 456, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 475, 476, 477, 479, 483], "turn_r": 369, "turnbul": [473, 483], "turner": [474, 483], "turtl": [68, 155, 222, 247, 254, 369, 468, 470, 473, 474, 475, 483], "turtle_docstringdict": 384, "turtle_docstringdict_german": 384, "turtle_docstringdict_italian": 384, "turtledemo": [68, 156, 222, 247, 483], "turtlegraph": 384, "turtlegraphicserror": 384, "turtles": 384, "turtlescreen": [68, 222], "turtleshap": 384, "turtleshel": 155, "tusk": 481, "tutor": 95, "tutori": [63, 68, 74, 92, 102, 105, 110, 118, 120, 162, 177, 193, 225, 226, 247, 268, 269, 290, 298, 337, 344, 369, 384, 413, 427, 434, 453, 464, 466, 467, 468, 475, 483], "tutt": 462, "tuur": 483, "tvrtkovi": 483, "tw": [1, 158], "tweak": [102, 292, 463, 466, 479, 483], "twelv": [177, 376], "twenti": 93, "twentysix": 211, "twice": [33, 34, 77, 95, 102, 109, 146, 163, 167, 183, 214, 255, 275, 319, 340, 378, 400, 422, 455, 462, 464, 465, 466, 468, 469, 479, 481, 483], "twin": 462, "twinsun": 183, "twist": [84, 390, 426, 483], "twister": [68, 318, 465], "twisteroid": 481, "twisti": 92, "twix": 244, "two": [5, 7, 9, 14, 20, 23, 25, 28, 31, 33, 34, 37, 41, 42, 45, 47, 58, 63, 64, 67, 68, 72, 73, 75, 76, 77, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 117, 120, 132, 133, 139, 141, 144, 146, 151, 155, 157, 158, 159, 160, 163, 167, 173, 175, 176, 177, 178, 181, 183, 186, 189, 190, 191, 193, 194, 195, 196, 200, 202, 207, 208, 209, 211, 213, 216, 218, 221, 225, 226, 228, 230, 235, 243, 245, 247, 248, 249, 250, 255, 258, 259, 260, 261, 266, 267, 268, 271, 275, 276, 278, 283, 284, 288, 292, 293, 295, 297, 299, 301, 305, 308, 312, 314, 318, 319, 322, 324, 325, 330, 332, 333, 334, 336, 337, 338, 340, 341, 342, 344, 345, 346, 347, 352, 355, 358, 361, 362, 364, 365, 366, 375, 376, 378, 382, 384, 386, 387, 388, 389, 390, 394, 399, 400, 405, 407, 408, 410, 413, 416, 421, 422, 425, 427, 428, 430, 431, 432, 434, 435, 436, 440, 441, 442, 449, 451, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "two_canvas": 384, "twoplac": 186, "twosh": 167, "tx_addr": 337, "txt": [34, 35, 68, 78, 95, 102, 109, 120, 160, 166, 169, 188, 193, 208, 218, 220, 225, 230, 231, 234, 235, 243, 247, 251, 253, 254, 256, 258, 278, 288, 292, 293, 296, 299, 332, 344, 348, 352, 358, 369, 387, 392, 399, 413, 421, 422, 435, 440, 443, 451, 452, 453, 456, 461, 462, 468, 469, 471, 475, 476, 477, 478, 479, 481, 483], "tycho": 483, "tyler": [479, 483], "tymoteusz": [472, 483], "typ": [197, 248, 386, 474, 483], "type": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 53, 54, 55, 56, 59, 60, 62, 67, 68, 73, 74, 77, 79, 80, 84, 85, 86, 87, 88, 89, 92, 93, 96, 99, 101, 102, 103, 110, 112, 115, 117, 118, 121, 123, 126, 139, 142, 144, 145, 150, 151, 152, 153, 155, 158, 160, 161, 167, 168, 169, 172, 173, 177, 178, 182, 184, 186, 187, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 216, 219, 221, 223, 225, 226, 227, 230, 235, 236, 240, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 261, 262, 264, 266, 267, 268, 269, 270, 272, 273, 275, 276, 278, 279, 281, 283, 284, 290, 293, 297, 298, 304, 307, 308, 313, 314, 315, 316, 319, 320, 321, 324, 325, 328, 329, 330, 331, 332, 333, 336, 337, 338, 341, 342, 343, 345, 347, 348, 349, 351, 352, 358, 362, 363, 365, 366, 368, 373, 376, 377, 378, 381, 382, 384, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 404, 406, 408, 411, 412, 413, 415, 416, 419, 420, 422, 425, 426, 429, 430, 431, 432, 433, 435, 439, 440, 441, 442, 443, 448, 449, 450, 451, 455, 456, 461, 462, 463, 469, 470, 471, 475, 483, 484], "type1": 386, "type2": [225, 386], "type_": 384, "type_alia": 431, "type_check": [88, 250, 292, 386, 479, 483], "type_check_on": [386, 483], "type_com": [122, 377, 431, 481, 483], "type_express": 431, "type_getattro": [93, 483], "type_ignor": [122, 377], "type_int64": [477, 483], "type_new": [63, 93, 483], "type_param": [122, 386, 427, 431, 436, 483], "type_param_bound": 431, "type_param_seq": 431, "type_param_ti": 431, "type_params_of_bag": 427, "type_params_of_func": 427, "type_params_of_listorset": 427, "type_stmt": 436, "type_tag": 299, "typea": 386, "typeahead": 177, "typealia": [68, 122, 386, 483], "typealiastyp": [191, 386, 427, 436, 474, 483], "typeb": 386, "typecheck": [176, 386, 483], "typecod": [121, 142, 283, 385, 470, 483], "typecode_or_typ": 283, "typed_act": 292, "typed_ast": 483, "typed_subpart_iter": 204, "typeddict": [68, 385, 386, 472, 481, 483], "typedef": [10, 11, 13, 15, 22, 27, 28, 32, 33, 50, 58, 59, 61, 64, 68, 75, 76, 483], "typedesc": 176, "typeerror": [5, 9, 22, 23, 39, 41, 47, 48, 49, 54, 55, 58, 59, 61, 63, 64, 67, 73, 75, 76, 85, 89, 93, 94, 95, 99, 103, 109, 110, 120, 121, 122, 129, 143, 167, 168, 169, 172, 176, 181, 183, 184, 186, 193, 196, 197, 198, 199, 205, 206, 211, 213, 225, 233, 250, 255, 258, 259, 262, 268, 274, 275, 278, 291, 292, 293, 296, 304, 318, 344, 352, 366, 386, 388, 389, 394, 398, 402, 411, 413, 419, 422, 427, 428, 430, 436, 441, 442, 443, 449, 450, 451, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482, 483], "typeform": 483, "typeguard": [386, 472, 483], "typeid": [283, 481], "typeignor": [122, 483], "typekey": 197, "typemap": [86, 269], "typenam": [160, 307, 340, 468, 483], "typeobj": [3, 28, 100, 388], "typeobject": [5, 93, 464, 483], "typeof": 7, "types_map": [276, 468, 483], "types_map_inv": 276, "typesaf": 386, "typescript": 309, "typesh": 483, "typetyp": 279, "typevar": [122, 191, 344, 351, 385, 386, 427, 473, 474, 483], "typevartupl": [122, 191, 344, 386, 427, 431, 473, 474, 483], "typevarwithbound": 427, "typevarwithconstraint": 427, "typewrit": 212, "typic": [23, 33, 34, 45, 49, 58, 61, 63, 73, 77, 85, 93, 94, 100, 101, 102, 103, 110, 120, 139, 149, 151, 158, 167, 173, 186, 190, 193, 196, 203, 205, 218, 225, 226, 228, 230, 245, 250, 251, 252, 253, 255, 266, 267, 268, 269, 271, 275, 276, 281, 283, 292, 293, 297, 299, 307, 308, 320, 324, 332, 334, 338, 341, 344, 347, 348, 352, 355, 358, 359, 365, 366, 369, 371, 376, 384, 385, 386, 388, 395, 400, 405, 410, 411, 413, 414, 415, 416, 421, 423, 428, 430, 432, 455, 461, 465, 466, 469, 470, 474, 475, 477, 478, 480, 481, 483], "typifi": 268, "typing_extens": 386, "typo": [95, 151, 386, 389, 430, 464, 483], "typographi": 319, "tz": [183, 362, 366, 425, 474, 483], "tz1": 183, "tz_offset": 102, "tzdata": [183, 425, 482, 483], "tzfile": 366, "tzinfo": [20, 68, 182, 209, 379, 425, 465, 472, 473, 475, 476, 479, 480, 482, 483], "tzinfo_exampl": 183, "tzname": [20, 183, 366, 425, 479, 482, 483], "tzoffset": 483, "tzpars": 467, "tzpath": [425, 456, 483], "tzpathtest": 483, "tzset": [366, 483], "tzvf": 332, "u0": [183, 479], "u00000394": 109, "u00008000": 109, "u0010ffff": 476, "u0043": 430, "u00c7": 430, "u0327": 430, "u0394": 109, "u0660": [387, 462], "u07b4": 109, "u0e55": 109, "u0e57": 109, "u1176": 483, "u11a7": 483, "u11c3": 483, "u1234": [109, 158, 262], "u16": 158, "u2000ab": 462, "u2028": [344, 483], "u2029": [344, 483], "u20ac": [109, 470, 478], "u21ef": 468, "u2603": 102, "u2641": 121, "u266c": 158, "u2713": 386, "u3000": 468, "u3002": 476, "u304": 468, "u3054": 468, "u305f": 468, "u307": 468, "u3080": 468, "u3081": 468, "u31ef": 468, "u32": 158, "u3244": 468, "u4000": 465, "u4001abc": 465, "u4500": 109, "u4500abc": 109, "u4eba": 476, "u52ff": 476, "u65bc": 476, "u65bd": 476, "u7": 158, "u751f": 468, "u8": 158, "u_": 71, "u_expr": 430, "ua000": 109, "ua000abcd": 109, "uac": 483, "uadd": [122, 431], "uall": [362, 465], "uapi": 477, "uax": 435, "ub": 336, "ubsan": [456, 483], "ubuntu": [96, 456, 473, 480, 483], "ucarp": 223, "ucd": [387, 435, 476, 477, 483], "ucd_3_2_0": [387, 467], "ucnhash_capi": [469, 472, 483], "ucrt": 483, "ucrtbas": [461, 483], "ucs": [5, 352, 464, 476], "ucs1": [64, 483], "ucs2": [64, 483], "ucs4": [64, 464, 483], "ud": 468, "udata": 328, "udbff": 476, "udf": [223, 483], "udfff": 476, "udfwinfunc": 340, "udp": [68, 101, 126, 130, 269, 337, 338, 362, 469, 473, 479, 480, 481, 482, 483], "udplit": 483, "udplite_recv_cscov": [337, 483], "udplite_send_cscov": [337, 483], "udpserv": [68, 256], "ue000": 109, "uf_append": [293, 342, 468], "uf_compress": [293, 342], "uf_hidden": [293, 342], "uf_immut": [293, 342, 468], "uf_nodump": [293, 342], "uf_nounlink": [293, 342], "uf_opaqu": [293, 342], "ufeff": 64, "ufeffunicod": 102, "uff10": 186, "uff19": 186, "ufff": 64, "ufffdabc": 109, "ufs": 450, "ugli": [79, 114, 190, 369, 462, 465], "uhc": 158, "ui": [96, 102, 407, 461, 462, 483], "uid": [126, 142, 151, 245, 248, 293, 296, 304, 305, 310, 322, 332, 342, 358, 468, 469, 476, 478, 481, 483], "uid_t": 483, "uidl": 305, "uint": 176, "uint64_t": 33, "uint_max": 483, "uintmax_t": 64, "uintptr_t": 42, "uit": 297, "uitext": 281, "uiuc": 395, "uji": 158, "uk": [110, 166, 243, 344, 366, 469, 483], "ukasz": [98, 288, 475, 477, 478, 479, 480, 481, 482, 483], "ukrainian": [477, 480], "ul": [336, 411, 464], "ulaw": [117, 336, 349], "ulaw2lin": 141, "ulf": 85, "uli": 177, "ullamcorp": 149, "ullong_max": 39, "ulong_max": [18, 39], "ulp": [275, 318, 352, 468, 482, 483], "ulrich": 483, "ultim": [58, 193, 225, 235, 292, 352, 428, 430, 432, 436, 464, 466, 483], "ultra": 483, "ultrasound": 295, "ultric": 149, "ulx": 177, "umask": [293, 296, 348, 362, 480, 483], "umber": 387, "umer": 483, "umlaut": 266, "ump": 297, "un": [88, 200, 203, 255, 288, 436, 449, 477, 483], "una": 467, "unabl": [92, 95, 96, 101, 102, 110, 255, 267, 271, 293, 328, 340, 348, 352, 364, 365, 443, 461, 467, 483], "unaccept": [226, 299, 337, 413, 436], "unaffect": [186, 332, 366, 428, 436, 455, 465, 468, 479, 483], "unalia": 297, "unalign": 483, "unalt": [27, 483], "unam": [293, 303, 352, 355, 358, 475, 476, 483], "unambigu": [7, 120, 183, 268, 308, 335, 428, 468, 475], "uname_result": 483, "unannot": 472, "unannounc": 255, "unarchiv": 483, "unari": [63, 68, 122, 186, 191, 428, 433, 435, 476], "unary_invert": 191, "unary_neg": 191, "unary_not": 191, "unary_posit": 483, "unaryfunc": [57, 63], "unaryop": 122, "unassign": [33, 93, 346, 483], "unattend": [461, 483], "unauthent": [314, 411, 412, 413, 414, 419, 420, 483], "unauthor": [110, 241], "unavail": [58, 84, 110, 193, 255, 270, 283, 293, 332, 386, 428, 483], "unavailable_for_legal_reason": [241, 483], "unavoid": [59, 95, 103, 183, 466, 469, 471], "unawar": 466, "unbalanc": 483, "unbias": 343, "unbind": [429, 483], "unblock": [134, 138, 283, 333, 483], "unbound": [10, 63, 68, 102, 115, 186, 187, 191, 225, 226, 255, 268, 362, 365, 384, 385, 428, 429, 432, 436, 464, 466, 470, 472, 478, 480, 483], "unboundlocalerror": [23, 191, 213, 429, 450, 462, 483], "unbox": 483, "unbrac": 345, "unbreak": 483, "unbuff": [33, 258, 348, 352, 455, 483], "unc": [231, 293, 294, 296, 422, 483], "uncach": [160, 293, 475, 483], "uncached_key": 160, "uncal": 483, "uncancel": [139, 473, 483], "uncas": 344, "uncaught": [92, 152, 340, 352, 365, 430, 463, 481, 483], "unchain": 483, "unchang": [34, 42, 93, 102, 106, 112, 144, 151, 155, 167, 176, 177, 186, 208, 230, 255, 258, 261, 266, 269, 271, 293, 302, 319, 337, 340, 344, 345, 358, 369, 384, 385, 386, 394, 427, 428, 430, 435, 461, 464, 466, 467, 468, 469, 470, 471, 474, 475, 476, 479, 480, 483], "uncheck": [163, 432, 455, 480, 483], "unchecked_hash": 311, "unclean": [467, 483], "unclear": [103, 106, 474], "unclos": [188, 247, 340, 475, 479, 483], "uncollect": [227, 475, 483], "uncolor": 247, "uncom": [200, 247, 464, 474], "uncommit": [340, 475], "uncommon": [200, 250, 340, 467, 483], "uncomp_s": 452, "uncompil": 359, "uncompress": [117, 149, 234, 270, 332, 358, 421, 422, 475, 483], "uncondit": [28, 115, 247, 283, 288, 293, 297, 334, 353, 388, 428, 435, 455, 469, 470, 475, 476, 477, 478, 480, 482, 483], "unconnect": [337, 468], "unconstrain": 386, "unconsumed_tail": 424, "uncontrol": 332, "uncontroversi": 410, "uncov": [480, 483], "unctrl": [177, 178], "uncustom": 268, "undecid": 386, "undeclar": 314, "undecod": [59, 109, 158, 196, 293, 475, 483], "undecor": [68, 102, 226, 344], "undefin": [7, 25, 28, 33, 39, 42, 63, 64, 85, 158, 166, 196, 205, 207, 213, 225, 227, 258, 275, 292, 328, 344, 352, 366, 378, 382, 400, 413, 416, 428, 430, 435, 449, 456, 478, 480, 483], "undefinedbehaviorsanit": 456, "undeliver": 133, "undeprec": 483, "under": [5, 7, 13, 23, 33, 34, 42, 43, 45, 54, 58, 61, 66, 68, 74, 84, 85, 92, 93, 95, 101, 102, 103, 106, 120, 132, 133, 135, 149, 151, 153, 155, 158, 161, 169, 176, 177, 183, 190, 193, 196, 199, 203, 208, 212, 213, 215, 216, 225, 226, 230, 234, 235, 242, 247, 255, 258, 259, 261, 262, 267, 268, 269, 270, 271, 275, 278, 281, 283, 292, 293, 295, 297, 299, 305, 308, 314, 320, 322, 328, 329, 330, 331, 332, 333, 337, 338, 340, 341, 342, 344, 348, 352, 353, 355, 362, 365, 366, 369, 371, 375, 376, 380, 381, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 406, 410, 419, 420, 421, 422, 425, 426, 427, 428, 429, 430, 431, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "underalloc": 483, "undercount": 483, "underdevelop": 352, "underestim": [463, 464, 465, 466, 467, 468], "underflow": [42, 186, 188, 456, 479, 483], "undergo": 468, "undergon": 475, "underlin": [92, 177, 372, 376], "underscor": [39, 68, 71, 85, 94, 102, 146, 151, 158, 176, 186, 196, 205, 221, 225, 271, 307, 319, 331, 344, 345, 352, 354, 369, 422, 427, 428, 429, 430, 434, 435, 436, 468, 470, 471, 474, 483], "underscore_numb": [307, 472, 483], "understand": [23, 42, 68, 73, 75, 76, 84, 93, 101, 102, 103, 106, 109, 120, 183, 193, 207, 230, 242, 243, 262, 288, 307, 308, 314, 319, 340, 345, 348, 368, 376, 386, 416, 422, 427, 434, 462, 463, 464, 465, 467, 468, 469, 470, 474, 479, 483], "understood": [72, 151, 243, 268, 283, 293, 297, 331, 344, 397, 421, 426, 428, 483], "underw": [465, 466, 467, 468], "underway": 471, "undesir": [463, 467, 483], "undetect": [73, 271, 365], "undetermin": 293, "undirect": 191, "undisplay": [297, 475, 483], "undistinguish": 465, "undo": [33, 155, 177, 247, 267, 384, 468, 483], "undobuff": 384, "undobufferentri": 384, "undobuffers": 384, "undoc_head": 155, "undocu": [155, 184, 226, 267, 297, 362, 388, 422, 474, 476, 477, 478, 479, 480, 482, 483], "undon": [247, 384], "unelev": 293, "unencod": [45, 109, 158, 465, 470, 475, 483], "unencrypt": [341, 483], "unequ": [186, 344, 428, 430, 466, 467, 470, 476, 483], "unescap": [87, 106, 190, 238, 239, 288, 319, 394, 417, 435, 477, 482, 483], "uneven": 261, "unexcit": 93, "unexist": 483, "unexpect": [28, 101, 102, 170, 193, 205, 208, 230, 250, 267, 288, 319, 322, 333, 335, 337, 341, 343, 362, 388, 395, 400, 422, 427, 428, 430, 435, 440, 443, 461, 464, 469, 472, 474, 476, 478, 480, 481, 482, 483], "unexpectedexcept": 193, "unexpectedsuccess": [96, 388], "unfamiliar": [228, 292, 467, 468], "unfil": [75, 430, 483], "unfinish": [243, 283, 314, 483], "unfix": 483, "unflatten": 261, "unfold": 208, "unformat": [102, 262, 319], "unfortun": [84, 92, 95, 100, 102, 106, 110, 151, 158, 283, 305, 308, 330, 337, 341, 358, 369, 461, 463, 466, 468, 471, 479, 482], "unfreez": [227, 480], "unfrozen": 483, "ungain": 465, "unget_wch": [177, 476, 483], "ungetch": [177, 282], "ungetmous": [177, 483], "ungetwch": 282, "unglow": 384, "unguard": 478, "unhandl": [23, 66, 115, 151, 157, 169, 193, 228, 247, 352, 365, 381, 395, 428, 443, 470, 474, 483], "unhash": [55, 78, 181, 211, 261, 344, 388, 428, 430, 472, 482, 483], "unhelp": [102, 462, 483], "unhexlifi": [100, 146, 483], "unic": [73, 295], "unichr": [462, 464, 467], "unicod": [5, 16, 27, 31, 32, 39, 45, 59, 63, 65, 68, 80, 85, 87, 92, 97, 102, 106, 112, 119, 121, 143, 145, 146, 167, 175, 176, 177, 182, 183, 186, 193, 194, 195, 196, 197, 200, 201, 202, 203, 208, 209, 213, 221, 225, 230, 238, 239, 240, 247, 254, 258, 262, 266, 282, 293, 294, 296, 299, 302, 319, 340, 344, 345, 346, 352, 363, 378, 386, 394, 400, 405, 407, 411, 412, 413, 422, 425, 428, 430, 435, 442, 455, 456, 463, 467, 468, 469, 471, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483, 484], "unicode_char": 282, "unicode_escap": [102, 158], "unicode_id": 483, "unicode_intern": [158, 476, 481, 483], "unicode_liter": [113, 436, 468], "unicodedata": [68, 106, 108, 109, 254, 344, 363, 430, 435, 462, 467, 468, 469, 472, 475, 476, 483], "unicodedecodeerror": [14, 23, 109, 158, 213, 293, 394, 450, 467, 470, 475, 477, 481, 483], "unicodeencodeerror": [14, 23, 45, 71, 109, 158, 213, 352, 394, 450, 473, 475, 481, 483], "unicodeerror": [5, 23, 87, 158, 183, 202, 213, 293, 344, 450, 465, 470], "unicodencodeerror": 483, "unicodeobject": [96, 483], "unicodestr": 121, "unicodetranslateerror": [14, 23, 158, 213, 450, 483], "unicodetype_db": 483, "unicodewarn": [23, 213, 400, 450, 467, 475], "unicurs": 92, "unidata_vers": 387, "unidentifi": 352, "unidirect": [133, 283], "unif": 466, "unifi": [68, 103, 158, 190, 193, 299, 387, 477, 483, 484], "unified_diff": 190, "uniform": [84, 110, 134, 190, 255, 318, 394, 398, 419, 475, 483], "unihan": 469, "unimpl": [230, 243], "unimplementedfilemod": 242, "unimport": 94, "uninform": 483, "uniniti": [9, 33, 35, 42, 73, 85, 299, 456, 483], "uninstal": [214, 281, 382, 453, 461, 477, 483], "unintend": [73, 85, 186, 283, 358, 473, 483], "unintent": [100, 102, 267, 348, 475, 483], "uninterest": [76, 190], "uninterrupt": 333, "union": [62, 68, 88, 118, 160, 161, 225, 226, 252, 254, 333, 342, 346, 385, 386, 426, 428, 465, 466, 468, 469, 472, 473, 474, 478, 482, 483], "union_object": 344, "union_upd": 465, "uniontyp": [226, 344, 385, 473, 483], "uniprocessor": 303, "uniq": [261, 466], "uniqu": [33, 68, 73, 75, 93, 95, 98, 101, 109, 115, 120, 160, 176, 183, 184, 190, 203, 205, 209, 211, 212, 225, 228, 236, 255, 259, 261, 262, 271, 281, 293, 299, 305, 314, 340, 341, 344, 353, 355, 365, 376, 386, 388, 394, 398, 426, 427, 428, 432, 440, 442, 456, 461, 466, 467, 469, 471, 474, 475, 480, 482, 483], "unique_everseen": 261, "unique_justseen": 261, "unique_word": 440, "uniqueaddresshead": 203, "uniquedatehead": 203, "uniquekey": 261, "uniquesingleaddresshead": 203, "uniqueunstructuredhead": 203, "unisol": 33, "unistr": [387, 462], "unit": [5, 64, 73, 85, 87, 94, 95, 99, 101, 102, 109, 114, 178, 183, 187, 193, 225, 226, 275, 308, 325, 337, 341, 344, 345, 362, 366, 367, 369, 376, 384, 388, 426, 428, 429, 463, 468, 474, 476, 478, 481, 482, 483], "unit_pric": 181, "unittest": [68, 78, 84, 112, 156, 187, 254, 362, 382, 400, 451, 465, 471, 482, 483], "unittest2": 469, "unittestgui": 388, "univers": [68, 87, 94, 183, 225, 235, 248, 250, 258, 344, 358, 366, 388, 394, 398, 422, 456, 466, 467, 468, 473, 477, 479, 480, 481, 482, 483, 484], "universal2": [456, 459, 481, 482, 483], "universal_newlin": [126, 137, 348, 466, 480, 483], "universalsdk": [456, 467, 482, 483], "unix": [18, 23, 33, 34, 35, 59, 66, 68, 73, 74, 80, 81, 83, 87, 92, 95, 96, 101, 107, 109, 115, 118, 120, 124, 130, 131, 132, 133, 136, 137, 146, 150, 160, 167, 174, 175, 177, 190, 196, 199, 201, 208, 215, 219, 225, 228, 229, 230, 233, 243, 247, 254, 257, 258, 261, 266, 269, 271, 272, 278, 283, 286, 287, 288, 292, 293, 294, 295, 296, 298, 301, 305, 306, 309, 310, 313, 322, 323, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 348, 350, 352, 354, 355, 358, 360, 361, 362, 365, 366, 369, 375, 383, 388, 403, 407, 421, 422, 435, 438, 439, 446, 448, 453, 454, 455, 456, 458, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 483], "unix_dialect": [175, 475], "unix_shel": [362, 483], "unixccompil": 483, "unixdatagramserv": 338, "unixfrom": [196, 201, 205, 477, 483], "unixi": 470, "unixpwd": 175, "unixstreamserv": [338, 483], "unixwar": 463, "unixxcompil": 483, "unknow": [463, 464], "unknown": [31, 33, 64, 68, 94, 106, 122, 139, 141, 190, 193, 196, 199, 201, 202, 208, 211, 225, 235, 245, 276, 288, 292, 293, 304, 307, 319, 342, 352, 358, 365, 366, 382, 395, 398, 416, 441, 456, 464, 465, 469, 473, 475, 479, 480, 483], "unknown_decl": 240, "unknown_open": 395, "unknownhandl": [68, 110, 256], "unknownprotocol": 242, "unknowntransferencod": 242, "unladen": [452, 475], "unladen10": 475, "unless": [5, 7, 9, 13, 22, 23, 26, 27, 31, 33, 42, 51, 54, 56, 58, 59, 63, 73, 76, 85, 94, 95, 100, 101, 103, 106, 112, 117, 120, 139, 141, 149, 161, 167, 169, 181, 183, 186, 191, 193, 196, 200, 205, 206, 209, 225, 226, 242, 243, 244, 247, 250, 255, 258, 259, 261, 267, 268, 270, 271, 275, 281, 283, 288, 292, 293, 297, 309, 314, 319, 323, 328, 329, 332, 334, 335, 337, 338, 340, 341, 344, 345, 348, 352, 353, 354, 358, 359, 364, 365, 386, 388, 394, 395, 399, 400, 406, 412, 415, 426, 427, 428, 429, 430, 435, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 476, 477, 479, 480, 481, 482, 483], "unlik": [5, 33, 41, 42, 45, 49, 55, 60, 64, 73, 76, 84, 85, 93, 94, 95, 100, 101, 102, 109, 137, 139, 149, 163, 169, 177, 183, 184, 186, 205, 225, 228, 243, 248, 270, 271, 275, 283, 293, 295, 297, 299, 305, 319, 324, 337, 341, 344, 348, 353, 358, 362, 365, 366, 369, 382, 384, 385, 386, 388, 405, 413, 425, 428, 430, 432, 434, 435, 436, 461, 463, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 482, 483], "unlimit": [61, 137, 151, 202, 203, 208, 235, 247, 283, 320, 322, 344, 348, 365, 428, 435, 483], "unlink": [84, 213, 283, 284, 293, 296, 328, 360, 362, 376, 399, 410, 411, 476, 483], "unlist": 428, "unload": [33, 100, 362, 483], "unloading_modul": 402, "unlock": [115, 138, 215, 271, 282, 283, 305, 362, 365, 428, 467, 483], "unlucki": [466, 483], "unmaintain": [358, 375, 475, 477, 479], "unmanag": 376, "unmap": [64, 376], "unmarsh": [274, 473], "unmarshal": [41, 419, 465, 467, 479, 483], "unmatch": [319, 394, 478, 483], "unmodifi": [5, 7, 115, 208, 209, 307, 344, 365, 394, 417, 483], "unnam": [60, 73, 94, 176, 340, 405, 430, 477, 483], "unnecessari": [45, 73, 85, 101, 120, 133, 271, 283, 284, 288, 344, 352, 382, 386, 394, 410, 436, 463, 464, 466, 469, 474, 478, 481, 483], "unnecessarili": [293, 483], "unneed": [76, 411, 469, 477, 482, 483], "unnnn": 109, "unnorm": [23, 483], "unnormalis": 483, "unnot": 469, "unobserv": 352, "unobtain": 293, "unoffici": [388, 478], "unoptim": 478, "unord": [262, 283, 344, 428], "unown": [283, 483], "unpack": [16, 68, 73, 84, 95, 102, 112, 122, 160, 191, 200, 215, 225, 283, 304, 332, 337, 344, 345, 347, 385, 386, 427, 430, 431, 436, 442, 443, 445, 452, 462, 466, 467, 468, 470, 472, 473, 474, 475, 477, 481, 483], "unpack_arch": [142, 332, 472, 473, 474, 475, 481, 482, 483], "unpack_array": 408, "unpack_byt": 408, "unpack_doubl": 408, "unpack_ex": 191, "unpack_farray": 408, "unpack_float": 408, "unpack_fopaqu": 408, "unpack_from": [225, 347, 467, 483], "unpack_fstr": 408, "unpack_item": 408, "unpack_list": 408, "unpack_opaqu": 408, "unpack_sequ": [191, 483], "unpack_str": 408, "unpack_typ": 408, "unpair": 262, "unparenthes": [430, 482, 483], "unpars": [120, 122, 199, 251, 314, 413, 415, 482, 483], "unparsedentitydecl": 415, "unparsedentitydeclhandl": 314, "unpatch": [422, 483], "unpickl": [68, 76, 94, 102, 183, 267, 269, 283, 284, 298, 300, 425, 465, 468, 469, 471, 483], "unpickled_class": 299, "unpicklingerror": [299, 483], "unpredict": [22, 27, 271, 293, 413, 416, 428, 455, 464], "unprefix": [413, 483], "unprint": 483, "unprivileg": 293, "unprocessable_ent": 241, "unprofil": 456, "unqualifi": [213, 348, 440, 477, 483], "unquicken": 483, "unquot": [196, 205, 209, 303, 394, 395, 483], "unquote_plus": 394, "unquote_to_byt": [394, 483], "unrais": [13, 22, 23, 27, 142, 340, 352, 362, 473, 481, 483], "unraisablehook": [23, 28, 115, 142, 352, 362, 450, 481, 483], "unravel": 477, "unreach": [28, 212, 227, 386, 428, 480, 482, 483], "unread": [184, 299, 395, 471, 478, 483], "unreason": [467, 483], "unrecogn": [9, 64, 89, 120, 228, 414, 422, 435, 474, 478, 479, 483], "unrecognis": [226, 268, 476], "unrecover": [415, 483], "unredirect": 395, "unregist": [126, 128, 140, 158, 214, 293, 328, 329, 332, 353, 369, 472, 482, 483], "unregister_archive_format": 332, "unregister_dialect": [175, 483], "unregister_unpack_format": 332, "unregistr": 329, "unrel": [63, 73, 85, 94, 213, 271, 337, 483], "unrelated_cod": 139, "unreli": [106, 177, 319, 483], "unrepresent": [481, 483], "unreserv": 394, "unresolv": 483, "unrespons": 483, "unrestrict": [33, 59, 426], "unrol": [481, 483], "unround": 186, "unruli": 320, "unsaf": [34, 63, 75, 85, 149, 167, 283, 293, 309, 331, 340, 352, 358, 388, 389, 395, 398, 455, 465, 472, 474, 478, 480, 483], "unsafe_hash": [181, 386, 483], "unsanitari": 483, "unsav": [247, 483], "unscath": 483, "unsearch": 452, "unseek": [234, 401, 422, 475, 477, 478, 483], "unseen": 271, "unselect": [248, 482, 483], "unseri": [299, 475], "unset": [34, 59, 63, 191, 271, 293, 295, 344, 352, 362, 432, 468, 469, 480, 483], "unsetenv": [142, 293, 468, 482, 483], "unshar": [293, 322, 483], "unsign": [4, 5, 7, 9, 18, 25, 31, 33, 34, 35, 39, 42, 51, 58, 61, 63, 64, 75, 121, 141, 146, 176, 293, 295, 299, 337, 344, 347, 349, 408, 410, 411, 424, 452, 464, 465, 467, 472, 476, 480, 483], "unskip": 483, "unsort": [471, 483], "unspecifi": [34, 95, 149, 176, 193, 259, 270, 275, 287, 293, 299, 314, 337, 366, 376, 386], "unsplit": 483, "unsqueez": 483, "unstabl": [13, 28, 75, 112, 186, 474, 481, 483], "unstart": 483, "unstructur": 203, "unstructuredhead": 203, "unsubscrib": [248, 483], "unsubscript": 386, "unsuccess": [33, 483], "unsuit": [167, 413, 463, 469, 483], "unsupport": [33, 34, 68, 89, 110, 115, 120, 167, 183, 193, 225, 230, 258, 283, 284, 295, 299, 304, 337, 341, 348, 365, 386, 394, 395, 405, 422, 432, 443, 461, 462, 466, 468, 475, 479, 482, 483], "unsupported_media_typ": 241, "unsupportedoper": [258, 483], "unt": 297, "untabifi": 247, "untaken": 353, "untermin": [85, 483], "untest": 483, "unthread": 462, "until": [13, 31, 33, 34, 59, 63, 66, 72, 73, 76, 79, 84, 85, 92, 95, 101, 102, 103, 106, 115, 120, 129, 133, 134, 137, 138, 139, 151, 153, 160, 177, 183, 186, 191, 207, 214, 218, 225, 226, 230, 235, 242, 243, 247, 250, 258, 261, 265, 267, 269, 270, 283, 292, 293, 295, 297, 299, 305, 308, 314, 316, 320, 323, 325, 328, 329, 331, 333, 337, 338, 339, 340, 341, 344, 347, 348, 359, 361, 362, 365, 369, 381, 384, 386, 395, 400, 403, 405, 407, 408, 412, 415, 416, 427, 428, 436, 452, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 482, 483], "untitl": 483, "untoken": [378, 483], "untouch": [5, 64, 181, 456, 483], "untouchwin": 177, "untrack": [42, 76, 471, 483], "untrain": 466, "untransl": [225, 258], "untrust": [109, 190, 245, 268, 283, 299, 312, 314, 330, 332, 348, 358, 411, 412, 413, 414, 419, 420, 422, 465, 468, 483], "untyp": 464, "unununium": 449, "unus": [58, 63, 76, 89, 149, 177, 230, 258, 259, 282, 283, 313, 332, 338, 340, 345, 358, 362, 435, 461, 464, 468, 477, 480, 482, 483], "unused_data": [149, 270, 424], "unused_stamp_id": 384, "unusu": [73, 92, 102, 183, 213, 250, 295, 308, 322, 348, 355, 394, 430, 479, 480, 481, 482, 483], "unvarnish": 66, "unverifi": [242, 243, 395], "unvers": 477, "unwant": [33, 85, 358, 480, 483], "unwieldi": 102, "unwind": [33, 75, 104, 135, 169, 255, 353, 428, 483], "unwis": 435, "unwound": [75, 267, 319, 428], "unwrap": [255, 341, 394, 477, 483], "unwrapp": 483, "unwrit": 483, "unwritten": [184, 483], "unzip": [102, 225, 421, 423, 465, 483], "up": [1, 7, 9, 23, 33, 42, 45, 61, 63, 64, 68, 73, 75, 76, 77, 84, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 120, 132, 138, 139, 149, 151, 158, 163, 166, 167, 177, 179, 183, 186, 190, 191, 193, 194, 197, 200, 208, 209, 213, 221, 225, 226, 230, 235, 240, 242, 243, 245, 247, 252, 255, 258, 261, 265, 266, 267, 268, 269, 270, 275, 276, 278, 280, 282, 283, 284, 292, 293, 297, 308, 309, 311, 315, 319, 320, 323, 328, 331, 333, 334, 337, 338, 340, 341, 344, 345, 347, 348, 352, 355, 356, 358, 359, 362, 364, 365, 369, 374, 375, 376, 381, 384, 385, 386, 387, 388, 389, 390, 394, 395, 399, 410, 413, 416, 417, 421, 425, 427, 428, 429, 430, 432, 434, 435, 436, 441, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "upadhyay": 480, "upcom": [213, 226, 325, 483], "updat": [22, 33, 34, 42, 45, 59, 63, 68, 75, 76, 84, 85, 92, 93, 95, 102, 109, 117, 120, 133, 135, 160, 161, 169, 177, 179, 183, 189, 191, 193, 196, 205, 207, 213, 225, 226, 235, 236, 237, 244, 247, 248, 250, 253, 255, 258, 261, 265, 271, 278, 281, 283, 288, 292, 293, 299, 302, 315, 324, 330, 337, 340, 344, 348, 355, 358, 366, 369, 376, 380, 384, 385, 389, 394, 395, 407, 413, 421, 428, 432, 436, 440, 455, 461, 462, 463, 464, 465, 466, 467, 468, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483], "update_abstractmethod": [116, 483], "update_authent": 395, "update_bas": 483, "update_idletask": 483, "update_lines_col": [177, 478, 483], "update_panel": 179, "update_slot": 483, "update_status": 102, "update_vis": 271, "update_wrapp": [88, 93, 226, 255, 467, 477, 483], "updatepath": [33, 468, 469], "updateprocthreadattribut": 348, "upendra": 483, "upfront": 468, "upgrad": [68, 110, 111, 118, 136, 210, 242, 247, 399, 453, 456, 461, 464, 465, 469, 475, 477, 479, 480, 481, 483], "upgrade_dep": 399, "upgrade_depend": [399, 483], "upgrade_requir": 241, "upload": [110, 151, 463, 467, 469, 478, 480, 482, 483], "uploadreleas": 483, "upon": [25, 33, 41, 64, 66, 72, 73, 85, 93, 101, 144, 151, 155, 158, 159, 169, 173, 177, 186, 189, 193, 242, 244, 247, 248, 250, 271, 293, 297, 299, 328, 329, 331, 333, 334, 340, 341, 347, 352, 362, 380, 400, 410, 426, 428, 430, 432, 463, 468, 476, 477, 479, 481, 483], "upper": [64, 85, 92, 94, 95, 101, 102, 106, 122, 146, 148, 151, 160, 177, 190, 248, 283, 319, 337, 338, 340, 341, 344, 345, 375, 384, 388, 428, 430, 431, 436, 465, 475, 481, 483], "upper_bound": [344, 430], "upper_cas": [94, 483], "uppercamelcas": 441, "uppercas": [64, 85, 93, 109, 120, 148, 178, 248, 259, 281, 292, 293, 344, 345, 435, 462, 469, 470, 474, 477, 479, 483], "upperleft": 176, "upperout": 85, "ups": [475, 483], "upstream": [235, 340, 481, 483], "uptim": [366, 480, 483], "upward": [106, 177, 299, 384], "ur": [435, 470, 483], "urandom": [126, 235, 283, 293, 318, 341, 466, 469, 473, 474, 477, 478, 479, 483], "uranus": [94, 343], "urban": [475, 477, 483], "urdu": 158, "urgent": 328, "uri": [68, 102, 110, 242, 243, 296, 298, 314, 341, 384, 394, 395, 407, 410, 413, 415, 416, 418, 419, 472, 474, 476, 477, 483], "url": [68, 85, 136, 142, 143, 150, 151, 166, 167, 223, 241, 242, 243, 245, 247, 251, 254, 256, 269, 276, 313, 326, 344, 362, 393, 396, 398, 399, 403, 407, 413, 416, 417, 419, 420, 426, 432, 462, 465, 466, 467, 468, 469, 472, 475, 477, 478, 479, 480, 481, 482, 483], "url2pathnam": 395, "url_schem": 407, "url_valu": 110, "urlcleanup": [395, 483], "urldefrag": [394, 475], "urlencod": [84, 110, 151, 242, 269, 394, 395, 475, 478, 483], "urlerror": [68, 393, 395, 468, 483], "urlich": 85, "urljoin": [394, 478, 483], "urllib": [68, 84, 97, 112, 136, 142, 151, 166, 169, 223, 226, 241, 242, 243, 254, 256, 269, 293, 307, 309, 382, 389, 399, 451, 462, 465, 467, 468, 470, 483], "urllib2": [112, 395, 466, 468, 469, 470], "urlopen": [84, 110, 166, 169, 226, 243, 307, 393, 394, 395, 451, 467, 468, 469, 475, 476, 477, 478, 483], "urlpars": [394, 399, 468, 469, 470, 475, 479, 483], "urlretriev": [393, 395, 399, 483], "urlsafe_b64decod": 143, "urlsafe_b64encod": 143, "urlsplit": [136, 394, 469, 479, 483], "urlstr": 394, "urlunpars": [394, 483], "urlunsplit": [394, 483], "urn": [394, 398], "urround": 450, "urtubia": 466, "urwid": 92, "urx": 384, "us": [76, 94, 95, 158, 161, 178, 183, 195, 196, 202, 206, 209, 223, 266, 284, 299, 318, 319, 332, 341, 366, 386, 394, 395, 407, 413, 426, 428, 460, 461, 467, 483], "us_dst_rang": 183, "usabl": [39, 54, 56, 59, 63, 64, 76, 85, 99, 151, 158, 176, 177, 209, 225, 245, 250, 259, 268, 276, 283, 293, 337, 341, 344, 348, 410, 428, 430, 432, 464, 465, 466, 467, 474, 475, 479, 480, 483], "usag": [5, 33, 34, 63, 64, 67, 68, 72, 73, 76, 85, 89, 95, 101, 102, 106, 109, 112, 114, 118, 135, 149, 153, 169, 178, 183, 185, 187, 191, 194, 213, 218, 226, 228, 230, 234, 243, 245, 248, 250, 251, 256, 259, 264, 267, 269, 272, 280, 283, 292, 293, 297, 299, 305, 307, 332, 344, 352, 358, 362, 375, 382, 386, 388, 391, 395, 399, 400, 403, 410, 411, 421, 425, 426, 427, 428, 449, 455, 456, 461, 464, 465, 466, 467, 468, 469, 474, 475, 476, 478, 479, 483], "usageexit": [473, 474, 483], "usb": 483, "use": [5, 7, 9, 10, 11, 13, 17, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 35, 36, 39, 41, 42, 43, 45, 46, 49, 50, 51, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 71, 72, 73, 74, 75, 76, 79, 89, 91, 92, 93, 95, 100, 103, 105, 108, 109, 110, 112, 114, 115, 117, 120, 122, 123, 124, 128, 129, 132, 133, 134, 135, 137, 138, 139, 141, 144, 146, 147, 149, 152, 153, 155, 157, 158, 159, 161, 164, 166, 167, 168, 170, 173, 174, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 194, 195, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 216, 218, 220, 221, 222, 223, 225, 226, 228, 230, 234, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 284, 285, 287, 288, 289, 290, 292, 293, 295, 297, 298, 299, 301, 302, 304, 305, 307, 309, 311, 312, 313, 314, 315, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 341, 342, 343, 344, 345, 346, 347, 352, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 368, 369, 374, 376, 377, 378, 380, 381, 382, 385, 386, 387, 394, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 426, 427, 429, 430, 431, 432, 434, 435, 436, 440, 442, 443, 446, 449, 453, 455, 456, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 482, 483, 484], "use_builtin_typ": [419, 420, 482], "use_computed_goto": 483, "use_datetim": [419, 467], "use_default_color": [177, 466], "use_default_map": 203, "use_env": 177, "use_environ": [33, 34, 35, 474, 482], "use_errno": [176, 468], "use_frozen_modul": 483, "use_hash_se": [33, 34, 474], "use_last_error": [176, 468], "use_load_test": [388, 474, 478, 483], "use_main_obmalloc": 33, "use_proxi": 241, "use_pyexpat_capi": 483, "use_python": 309, "use_rawinput": 155, "use_stackcheck": [23, 59, 483], "use_symlink": 399, "use_tool_id": 353, "use_trac": [472, 473], "use_xattr": 483, "usec": [367, 478], "usecond": 20, "used_arg": 345, "used_key": 345, "usedforsecur": [235, 327, 483], "useforeigndtd": 314, "usegmt": 209, "useless": [200, 411, 481, 483], "uselton": 483, "usenet": [80, 84, 101], "usenetrc": 288, "user": [13, 23, 28, 33, 34, 39, 42, 58, 61, 63, 64, 66, 68, 70, 72, 73, 74, 76, 79, 84, 85, 86, 92, 93, 94, 99, 100, 101, 102, 106, 109, 110, 111, 118, 120, 133, 135, 139, 142, 144, 151, 155, 157, 158, 159, 160, 161, 163, 167, 169, 173, 177, 179, 181, 183, 185, 186, 189, 193, 200, 210, 212, 213, 216, 223, 226, 228, 229, 230, 233, 235, 242, 243, 245, 248, 250, 251, 254, 255, 257, 258, 266, 267, 269, 271, 272, 281, 283, 288, 292, 293, 294, 295, 296, 297, 299, 305, 311, 312, 315, 319, 320, 322, 328, 329, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 344, 347, 348, 352, 353, 356, 358, 359, 362, 365, 366, 369, 375, 376, 380, 381, 384, 385, 386, 388, 394, 395, 396, 399, 400, 403, 405, 411, 412, 413, 414, 415, 419, 421, 422, 425, 426, 427, 428, 429, 430, 432, 436, 438, 441, 453, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "user1": [268, 473], "user2": [268, 473], "user32": 176, "user_a": 386, "user_ag": 110, "user_b": 386, "user_bas": [334, 355, 469], "user_cal": 144, "user_class": 386, "user_except": 144, "user_funct": 226, "user_id": 386, "user_lin": 144, "user_n": 400, "user_ptr": 483, "user_request": 475, "user_return": 144, "user_sit": [334, 355], "user_site_directori": [33, 34, 474], "user_str": 98, "userag": 396, "userbas": [355, 475], "usercustom": [68, 315, 354, 438, 477, 483], "userdata": [24, 59], "userdict": [68, 182, 463, 465, 468, 483], "userfil": 151, "userid": [151, 269, 386, 479], "userinfo": [110, 395], "userland": 419, "userlist": [68, 182, 464, 483], "usernam": [102, 110, 151, 173, 200, 203, 223, 229, 248, 269, 293, 294, 305, 335, 394, 395, 475, 476, 478, 483], "userprofil": [294, 481, 483], "userptr": [179, 483], "userqueri": 471, "userspac": [332, 476, 481], "userstr": [68, 182, 462, 478, 482, 483], "userwarn": [23, 213, 229, 362, 400, 450, 483], "usestd3asciirul": 158, "usetk": 369, "using_idl": 384, "uspac": 483, "usr": [33, 35, 79, 84, 89, 95, 96, 98, 102, 109, 151, 167, 176, 200, 230, 231, 272, 292, 294, 296, 303, 319, 326, 334, 344, 348, 352, 355, 360, 366, 369, 382, 395, 421, 438, 448, 453, 455, 456, 459, 460, 461, 463, 465, 467, 472, 475, 477, 478, 483], "ustar": [358, 468, 483], "ustar_format": 358, "ustimezon": 183, "ustr": 462, "usuabl": 483, "usual": [5, 7, 23, 28, 33, 34, 39, 45, 47, 61, 63, 64, 73, 75, 84, 85, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 120, 133, 146, 149, 151, 153, 173, 176, 186, 190, 193, 194, 196, 202, 205, 221, 225, 226, 230, 243, 245, 247, 248, 250, 251, 255, 258, 259, 261, 268, 269, 272, 275, 283, 288, 292, 293, 295, 297, 299, 304, 319, 321, 328, 332, 333, 334, 337, 338, 339, 340, 341, 344, 348, 352, 358, 362, 366, 369, 375, 376, 381, 384, 386, 388, 395, 413, 421, 422, 423, 427, 428, 430, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "usub": [122, 431], "utc": [20, 68, 183, 190, 203, 209, 269, 340, 341, 366, 425, 451, 468, 473, 474, 475, 478, 479, 480, 483], "utc_move_d": 183, "utcformatt": 102, "utcfromtimestamp": [183, 341, 474, 483], "utcnow": [183, 474, 483], "utcoffset": [183, 483], "utctimetupl": [183, 483], "utf": [5, 16, 22, 23, 26, 30, 31, 33, 34, 40, 45, 49, 59, 68, 87, 101, 102, 109, 118, 120, 122, 145, 151, 167, 175, 188, 190, 196, 197, 205, 206, 208, 209, 218, 223, 225, 235, 248, 250, 251, 252, 258, 262, 265, 266, 284, 286, 288, 297, 298, 299, 305, 307, 314, 330, 337, 338, 341, 344, 352, 358, 378, 394, 395, 398, 399, 407, 411, 413, 419, 421, 422, 428, 432, 435, 441, 446, 448, 455, 456, 458, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 481, 482, 483], "utf16": 158, "utf32": 158, "utf8": [34, 58, 122, 151, 158, 203, 205, 207, 208, 248, 293, 305, 314, 335, 352, 411, 413, 455, 461, 478, 480, 483], "utf8_decod": 462, "utf8_en": [248, 478], "utf8_encod": 462, "utf8_mod": [34, 293, 352, 474], "utf8_streamread": 462, "utf8_streamwrit": 462, "utf_16": 158, "utf_16_b": 158, "utf_16_l": 158, "utf_32": 158, "utf_32_b": 158, "utf_32_l": 158, "utf_7": 158, "utf_8": [158, 483], "utf_8_sig": [68, 145], "util": [23, 31, 33, 59, 68, 93, 94, 95, 102, 118, 133, 151, 155, 158, 159, 163, 177, 182, 186, 187, 190, 191, 193, 194, 196, 200, 203, 205, 207, 208, 230, 241, 248, 251, 254, 256, 270, 280, 285, 292, 311, 315, 322, 332, 342, 344, 346, 348, 365, 369, 384, 388, 399, 411, 461, 462, 464, 466, 467, 469, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482, 483], "utim": [142, 293, 332, 476, 483], "utkarsh": 480, "utter": [193, 470], "utyp": 176, "uu": [68, 146, 158, 397, 426, 464, 473, 474, 483], "uu_codec": [158, 483], "uucp": 269, "uuddlrlrab": 344, "uudecod": 68, "uuencod": [68, 143, 146, 158, 254, 350], "uui": 76, "uuid": [68, 156, 254, 256, 281, 337, 467, 473, 481, 483], "uuid1": [398, 467, 480, 483], "uuid3": [398, 467, 483], "uuid4": [398, 467, 483], "uuid5": [398, 467, 483], "uuid_creat": 483, "uuid_enc_b": 483, "uuidcreat": 281, "uuidtostr": 281, "uuu": 267, "uuuuuu": 183, "uvloop": [426, 478, 479, 483], "uw": 248, "uwp": 461, "uwsgi": [68, 348], "ux": 483, "v0": 483, "v1": [68, 337, 347, 483, 484], "v14": 352, "v140": 483, "v141": 483, "v142": 483, "v143": 483, "v2": [337, 347, 426, 467, 468, 483], "v3": [86, 337, 483], "v39": 483, "v4_int_to_pack": 259, "v6": 337, "v6_int_to_pack": 259, "v7": [342, 358], "v8": 464, "va": [18, 426], "va_build_stack": 483, "va_copi": 475, "va_end": 483, "va_list": [5, 9, 18, 23, 64, 466, 478, 483], "va_start": [474, 483], "vadi": 231, "vadim": 483, "vaginay": 483, "vagu": 468, "vajda": 471, "vajraski": [477, 478, 483], "val": [18, 22, 23, 73, 95, 116, 167, 190, 191, 196, 205, 223, 244, 266, 297, 340, 344, 386, 390, 395, 428, 467, 474, 483], "val_a": 63, "val_b": 63, "valedictorian": 440, "valeri": 477, "valgrind": [456, 469, 475, 479, 483], "valid": [5, 7, 11, 23, 28, 34, 42, 60, 61, 63, 64, 66, 68, 72, 73, 85, 92, 99, 100, 106, 109, 112, 120, 139, 143, 146, 151, 157, 158, 159, 163, 167, 169, 173, 176, 177, 181, 183, 184, 186, 187, 189, 191, 194, 195, 197, 203, 207, 209, 225, 242, 244, 245, 247, 250, 255, 256, 258, 259, 262, 265, 267, 268, 270, 278, 281, 283, 287, 288, 293, 301, 302, 304, 308, 311, 314, 319, 322, 323, 324, 331, 333, 335, 337, 340, 341, 344, 345, 347, 348, 352, 358, 362, 365, 366, 376, 378, 384, 386, 387, 388, 394, 395, 405, 411, 413, 415, 416, 420, 422, 423, 425, 427, 428, 431, 432, 435, 436, 443, 451, 455, 456, 462, 468, 469, 470, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valid_sign": [333, 483], "validate_b": 480, "validate_simpl": 386, "validate_ucrtbas": 483, "validator_app": 407, "validhandl": 176, "valu": [7, 9, 11, 12, 13, 15, 17, 18, 20, 22, 23, 25, 26, 27, 28, 31, 33, 34, 35, 37, 39, 41, 42, 45, 46, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 65, 66, 68, 72, 74, 75, 76, 78, 79, 87, 89, 92, 93, 96, 99, 101, 102, 106, 108, 109, 110, 112, 115, 117, 118, 122, 129, 133, 137, 138, 139, 141, 142, 144, 146, 147, 149, 151, 152, 153, 155, 157, 158, 159, 160, 161, 163, 169, 170, 173, 175, 177, 178, 181, 183, 184, 189, 190, 191, 193, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 208, 209, 211, 212, 213, 215, 216, 217, 218, 221, 225, 226, 228, 230, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 255, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 278, 279, 281, 282, 283, 284, 285, 287, 288, 290, 291, 293, 295, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 318, 319, 320, 321, 322, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 341, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 375, 376, 377, 378, 381, 382, 384, 385, 386, 387, 388, 389, 390, 394, 395, 397, 399, 400, 402, 403, 404, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 424, 425, 429, 431, 432, 433, 435, 436, 440, 441, 442, 446, 449, 451, 452, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valuabl": [92, 114, 230, 337, 381, 476], "value1": [95, 167, 467, 482], "value2": [95, 167, 467, 482], "value3": [167, 482], "value_decod": 244, "value_encod": 244, "value_nam": [142, 405], "value_of_listorset": 427, "value_of_point": 436, "value_pattern": [427, 431], "valuea": 167, "valueb": 167, "valuec": 167, "valueerror": [5, 9, 18, 23, 39, 41, 58, 64, 85, 93, 94, 99, 101, 102, 110, 114, 115, 120, 121, 122, 126, 134, 138, 143, 144, 147, 150, 151, 157, 158, 159, 160, 163, 166, 167, 173, 175, 176, 181, 183, 186, 193, 196, 197, 199, 203, 205, 208, 209, 210, 211, 213, 223, 225, 227, 232, 243, 248, 250, 255, 258, 259, 261, 262, 267, 268, 274, 275, 278, 283, 284, 288, 292, 293, 294, 296, 302, 305, 314, 316, 318, 322, 325, 329, 330, 332, 333, 335, 337, 340, 341, 343, 344, 345, 348, 351, 352, 353, 365, 366, 379, 387, 388, 389, 394, 395, 399, 408, 410, 422, 425, 427, 430, 441, 442, 443, 446, 450, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "valuelist": 465, "valuerang": 386, "valueref": [402, 467], "valuesview": [161, 344, 386, 483], "valur": [469, 475, 477], "valv": 292, "van": [78, 80, 85, 87, 103, 160, 183, 423, 426, 462, 463, 464, 465, 467, 468, 469, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482, 483], "vandenberg": 483, "vander": [480, 483], "vanderbeek": 469, "vanderpla": 318, "vanilla": [462, 483], "vanish": [85, 158, 386], "vant": 475, "var": [17, 78, 85, 87, 88, 93, 94, 102, 120, 122, 160, 167, 170, 225, 269, 344, 355, 360, 386, 389, 431, 441, 446, 450, 466, 467, 468, 469, 470, 472, 475, 483], "var_access_benchmark": [481, 482, 483], "var_changed_font": 483, "var_keyword": 255, "var_num": 191, "var_posit": 255, "var_typ": 468, "vararg": [122, 255, 483], "vararg_attr": 292, "vararg_callback": 292, "varchar": 340, "varg": [5, 9, 23, 64], "vari": [5, 7, 58, 75, 84, 85, 95, 106, 109, 141, 151, 158, 183, 191, 193, 225, 247, 251, 255, 266, 271, 279, 305, 335, 338, 340, 341, 342, 344, 352, 362, 365, 366, 369, 385, 400, 427, 428, 434, 462, 463, 464, 466, 468, 469, 475, 476, 477], "variabl": [5, 9, 13, 17, 22, 23, 26, 28, 31, 32, 34, 42, 45, 53, 55, 58, 61, 63, 64, 66, 68, 72, 73, 75, 76, 79, 84, 85, 87, 92, 93, 94, 95, 100, 102, 106, 109, 110, 112, 114, 118, 139, 141, 151, 152, 155, 163, 164, 167, 174, 177, 191, 193, 209, 213, 214, 215, 223, 225, 228, 230, 245, 247, 248, 249, 250, 255, 266, 267, 281, 283, 295, 297, 299, 301, 311, 313, 315, 319, 320, 324, 331, 332, 333, 337, 338, 340, 342, 343, 344, 347, 348, 351, 352, 354, 358, 362, 365, 366, 368, 376, 381, 382, 384, 385, 386, 388, 394, 395, 400, 403, 405, 407, 408, 410, 411, 412, 420, 425, 427, 428, 429, 430, 431, 432, 435, 436, 440, 441, 448, 449, 452, 455, 456, 458, 462, 463, 464, 465, 466, 467, 468, 470, 472, 474, 475, 476, 477, 478, 480, 481, 482, 483], "variable_nam": 87, "variad": [68, 118, 386, 441, 483], "varianc": [343, 386, 451, 473, 474, 477, 479, 481, 483], "variant": [5, 22, 31, 41, 47, 63, 73, 84, 93, 95, 102, 106, 109, 120, 158, 160, 167, 177, 183, 184, 186, 191, 203, 225, 226, 245, 248, 282, 283, 293, 303, 332, 337, 340, 341, 358, 388, 395, 398, 416, 428, 432, 467, 468, 469, 470, 474, 477, 480, 481, 482, 483], "variant_also_negoti": 241, "variant_id": 303, "variat": [85, 93, 94, 106, 183, 193, 271, 293, 305, 348, 354, 428, 461, 467, 483], "varieti": [64, 73, 75, 95, 100, 102, 109, 120, 158, 186, 194, 225, 230, 273, 292, 293, 308, 314, 344, 348, 369, 413, 432, 466, 467, 468, 469, 477], "various": [7, 33, 42, 58, 63, 73, 75, 79, 85, 91, 92, 93, 94, 95, 103, 106, 109, 112, 117, 120, 133, 146, 151, 158, 169, 176, 178, 181, 186, 190, 193, 194, 197, 203, 208, 213, 216, 217, 230, 242, 243, 250, 258, 259, 261, 264, 268, 273, 278, 281, 290, 292, 293, 298, 308, 314, 331, 335, 337, 338, 339, 340, 341, 344, 345, 347, 352, 354, 358, 362, 366, 369, 384, 385, 387, 388, 395, 397, 413, 428, 430, 432, 435, 436, 455, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 477, 478, 479, 480, 481, 483], "varius": 149, "varkw": 255, "varnam": [13, 483], "varnish": 341, "varoquaux": [482, 483], "vartrac": 483, "vartyp": 176, "vasiliev": 466, "vassalotti": [469, 471, 475, 477, 483], "vast": [94, 330, 481, 482, 483], "vault": 463, "vaultah": 483, "vawda": [476, 477], "vbar": [374, 377], "vbarequ": 377, "vc": [68, 176, 254, 404, 483], "vc_assembly_publickeytoken": [282, 469], "vcan0": 337, "vcruntime140": 483, "vcruntime140_thread": 483, "vcvarsal": 483, "vcxproj": 483, "vdahl": [478, 483], "ve": [42, 76, 94, 95, 99, 102, 106, 109, 114, 139, 152, 251, 271, 292, 340, 369, 462, 463, 464, 465, 466, 468, 469, 471, 477, 483], "vec": [386, 442], "vec1": 261, "vec2": [261, 386], "vec2d": [384, 483], "vector": [261, 275, 348, 384, 386, 409, 474, 483], "vectorcal": [2, 27, 58, 61, 63, 68, 472, 473, 474, 482, 483], "vectorcallfunc": [10, 27, 57, 63, 75, 474], "vegard": 483, "vehicl": 93, "vehicula": 149, "vel": 149, "velankar": 483, "ven": 102, "vendor": [92, 235, 303, 460, 461, 483], "ventur": 426, "venus": [94, 343, 441], "venv": [68, 87, 102, 111, 114, 156, 192, 251, 254, 355, 453, 461, 474, 476, 480, 483], "ver": 483, "ver_nt_domain_control": 352, "ver_nt_serv": 352, "ver_nt_workst": 352, "ver_platform_win32_nt": 352, "verb": [95, 293], "verbal": 426, "verbatim": [193, 348], "verbos": [33, 34, 63, 68, 89, 99, 101, 102, 120, 160, 177, 193, 210, 226, 228, 268, 292, 301, 319, 331, 332, 345, 352, 357, 358, 362, 367, 382, 388, 399, 419, 428, 461, 464, 465, 466, 468, 469, 473, 474, 475, 477, 479, 480, 483], "verbose2": 483, "verbose3": 483, "verbosemodul": 428, "verdon": 468, "verhulst": 384, "veri": [7, 32, 33, 59, 63, 68, 73, 74, 75, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 110, 128, 149, 151, 158, 167, 169, 177, 183, 186, 190, 193, 196, 202, 203, 206, 207, 230, 242, 245, 250, 255, 266, 267, 270, 271, 283, 284, 288, 292, 293, 299, 308, 319, 328, 330, 335, 337, 338, 341, 346, 348, 352, 353, 358, 359, 369, 375, 384, 386, 388, 394, 426, 428, 430, 432, 436, 441, 461, 462, 463, 464, 465, 466, 467, 469, 470, 474, 475, 476, 477, 478, 479, 481, 483], "verif": [68, 119, 268, 340, 341, 344, 394, 475, 483], "verifi": [5, 7, 75, 85, 93, 95, 103, 161, 187, 193, 211, 235, 243, 250, 268, 269, 271, 293, 335, 340, 341, 362, 388, 400, 461, 468, 469, 473, 474, 475, 476, 477, 481, 483], "verify_": 341, "verify_allow_proxy_cert": [341, 483], "verify_client_post_handshak": [341, 479, 480, 481, 483], "verify_cod": 341, "verify_crl_check_chain": [341, 477], "verify_crl_check_leaf": [341, 477], "verify_default": [341, 477], "verify_flag": [341, 477], "verify_messag": 341, "verify_mod": [341, 483], "verify_request": [338, 483], "verify_structur": 7, "verify_x509_partial_chain": [341, 472], "verify_x509_strict": [341, 477], "verify_x509_trusted_first": 341, "verifyflag": 341, "verifymod": 341, "verisign": 341, "verkhovskiy": 483, "versa": [72, 84, 103, 141, 176, 250, 267, 293, 319, 344, 376, 380, 386, 413, 468, 474, 477, 483], "version": [4, 5, 7, 9, 10, 11, 13, 14, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 41, 42, 43, 45, 47, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 68, 73, 75, 76, 77, 79, 80, 85, 91, 92, 93, 94, 95, 96, 98, 101, 102, 103, 105, 106, 109, 110, 111, 112, 115, 116, 117, 119, 120, 121, 122, 126, 128, 129, 132, 133, 135, 136, 138, 139, 141, 142, 143, 144, 149, 150, 151, 154, 158, 160, 161, 163, 166, 167, 169, 170, 173, 175, 176, 177, 181, 183, 184, 186, 188, 190, 191, 193, 194, 196, 197, 199, 200, 201, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 221, 223, 225, 226, 227, 230, 231, 232, 233, 234, 235, 237, 238, 239, 241, 242, 243, 244, 245, 247, 248, 249, 250, 252, 253, 255, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 276, 278, 280, 281, 282, 283, 284, 288, 291, 293, 294, 295, 296, 297, 299, 300, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 315, 316, 318, 319, 320, 321, 322, 324, 326, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 347, 348, 351, 352, 353, 354, 355, 356, 359, 360, 361, 362, 364, 365, 366, 367, 369, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 402, 403, 405, 407, 410, 411, 413, 417, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 450, 453, 455, 456, 458, 460, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483, 484], "version2": 467, "version_id": 303, "version_info": [35, 80, 100, 113, 122, 340, 352, 355, 450, 462, 469, 471, 473, 474, 475, 476, 483], "version_str": 245, "versionad": 483, "versionhelp": 483, "versioninfo": 303, "versus": [68, 183, 193, 250, 253, 267, 430, 475, 481, 483], "vertch": 177, "vertex": [232, 384], "vertic": [177, 178, 247, 297, 344, 345, 364, 369, 374, 375, 376, 384, 427, 434, 435], "very_long_list_of_fil": 78, "vessel": 475, "vestibulum": 149, "vestig": 483, "vestigi": [463, 483], "vethernet": 337, "vewwi": 292, "vex": [102, 463], "vfat": 483, "vfork": [68, 164, 483], "vformat": 345, "vfs": 461, "vi": [275, 320], "via": [7, 33, 42, 45, 61, 63, 64, 68, 73, 76, 84, 85, 95, 100, 101, 110, 112, 115, 120, 139, 144, 151, 167, 170, 183, 190, 193, 196, 200, 201, 202, 205, 206, 207, 208, 213, 216, 218, 221, 225, 228, 233, 235, 242, 247, 251, 255, 265, 266, 267, 268, 269, 278, 283, 284, 292, 293, 297, 298, 299, 302, 305, 308, 314, 319, 320, 321, 323, 335, 337, 338, 341, 344, 348, 352, 355, 362, 384, 386, 388, 395, 400, 405, 410, 413, 419, 425, 427, 428, 430, 455, 458, 462, 467, 468, 469, 471, 474, 476, 477, 478, 479, 480, 481, 482, 483], "vice": [72, 84, 103, 141, 176, 250, 267, 293, 319, 344, 376, 380, 386, 413, 468, 474, 477, 483], "victim": 268, "victor": [469, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "victorin": 480, "video": [92, 177, 261, 272, 275, 468], "videoread": 468, "viehland": [472, 479, 482, 483], "vienna": 244, "view": [7, 22, 43, 48, 63, 68, 84, 87, 92, 93, 94, 120, 133, 139, 160, 161, 183, 186, 191, 196, 200, 205, 208, 225, 247, 258, 272, 299, 308, 313, 340, 342, 347, 351, 352, 369, 375, 376, 384, 385, 405, 410, 426, 462, 467, 468, 472, 475, 476, 478, 483, 484], "viewabl": 376, "viewer": [92, 247, 269, 384, 483], "viewitem": [112, 469], "viewkey": [112, 469], "viewvalu": [112, 469], "vigil": 33, "vignali": 478, "vike": 348, "viktorin": [472, 473, 474, 478, 481, 482, 483], "villag": 452, "vim": [435, 459, 477], "vinay": [101, 102, 465, 466, 468, 469, 471, 475, 476, 477, 478, 479, 480, 481, 482], "vinay_sajip": [101, 102], "vincent": [341, 473, 478, 479, 483], "vindic": 470, "violat": [23, 42, 61, 63, 94, 103, 176, 183, 203, 208, 215, 248, 299, 305, 341, 344, 428, 479, 483], "violet": [261, 384], "virgilius": 103, "virginia": 426, "virtu": [103, 421, 483], "virtual": [34, 68, 73, 85, 87, 102, 111, 116, 161, 176, 177, 179, 225, 226, 242, 251, 255, 280, 293, 333, 337, 340, 341, 352, 355, 358, 368, 385, 395, 399, 427, 428, 429, 432, 440, 453, 458, 462, 468, 474, 475, 476, 477, 479, 480, 481, 483], "virtual_env": [399, 478], "virtual_env_prompt": 483, "virtualalloc": [42, 477], "virtualbox": 483, "virtualenv": [111, 399, 461, 476, 483], "virtualfre": 42, "visibl": [51, 60, 68, 73, 85, 92, 95, 102, 128, 139, 158, 167, 177, 179, 190, 196, 205, 222, 247, 255, 261, 271, 337, 353, 376, 395, 400, 429, 463, 466, 467, 474, 475, 476, 480, 481, 483], "visit": [28, 63, 76, 95, 100, 122, 183, 261, 293, 313, 332, 342, 415, 461, 462, 464, 465, 468, 476, 482, 483], "visit_": [78, 122], "visit_a": 78, "visit_byt": [122, 481], "visit_const": [122, 481, 483], "visit_decref": 483, "visit_ellipsi": [122, 481], "visit_nam": 122, "visit_nameconst": [122, 481], "visit_num": [122, 481, 483], "visit_str": [122, 481, 483], "visitfil": 342, "visitor": 28, "visitproc": [28, 57, 63, 76, 100, 482], "vista": [293, 483], "visual": [59, 77, 85, 92, 319, 341, 375, 384, 413, 455, 456, 461, 462, 465, 468, 478, 483], "visualstudio": 483, "vita": 467, "vitor": [480, 483], "vivian": 483, "vixen": 102, "vk": 469, "vlad": 483, "vladimir": [462, 463, 465, 472, 474, 481, 483], "vline": [177, 483], "vm": [13, 63, 84, 322, 353, 476, 483], "vm_id": 337, "vm_name": 303, "vm_releas": 303, "vm_vendor": 303, "vmaddr": 337, "vmid": 337, "vmin": 361, "vminfo": 303, "vms": [191, 292, 476, 477], "vo": 483, "voc": 336, "vocabulari": 386, "vocod": 450, "vogt": [478, 483], "voic": [102, 336, 464], "voicila": 483, "void": [3, 5, 7, 9, 11, 12, 13, 17, 21, 22, 23, 24, 25, 27, 28, 30, 31, 33, 34, 35, 38, 39, 41, 42, 45, 48, 49, 51, 52, 53, 58, 59, 60, 61, 63, 64, 66, 67, 71, 72, 73, 75, 76, 77, 86, 98, 100, 176, 319, 347, 411, 431, 469, 472, 473, 474, 481, 482, 483], "voidcmd": 223, "voidresp": 483, "voidspac": [110, 469], "vol": 318, "volatil": [190, 284, 483], "volochii": [473, 483], "volt": [73, 441], "voltag": [73, 225, 441], "volum": [84, 142, 160, 261, 293, 295, 422, 466, 474, 477, 483], "volumin": 475, "volunt": [434, 468], "voluntari": 322, "voluntarili": [262, 293], "von": [109, 230, 318, 428, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 481], "vonmisesvari": 318, "voom": [73, 441], "vooooom": 441, "vote": [446, 462, 467, 475], "voter": 467, "vowel": 226, "vpa": 177, "vq": 89, "vranken": 483, "vret": 76, "vrfi": 335, "vs": [68, 187, 308, 363, 427, 483], "vsapi": 483, "vsnprintf": [18, 464, 472, 483], "vsock": 337, "vsprintf": 464, "vswhere": 483, "vt": [176, 178, 386, 435], "vt100": 177, "vt100s": [92, 177], "vt_co": 386, "vt_empti": 483, "vt_ptr": 176, "vtabl": 469, "vtbl_index": 176, "vtime": 361, "vtt": 483, "vulgar": 344, "vulner": [109, 137, 193, 245, 299, 331, 340, 348, 467, 483], "vv": [89, 120, 455, 471, 479, 483], "vvv": [89, 120, 395], "vvvv": 89, "vwait": 483, "vx": 94, "vxwork": [34, 64, 87, 173, 266, 293, 301, 322, 472, 483], "vy": 94, "vye483814lqex": 93, "w0": 269, "w00t": 389, "w01": 183, "w1": [269, 440], "w2": 440, "w3": [110, 240, 314, 395, 411, 413, 426, 483], "w3c": [68, 110, 240, 242, 395, 410, 411, 415, 428, 463, 472, 479, 480, 481, 482, 483], "w3m": 403, "w3school": 340, "w6": 269, "w64": 483, "w_ok": 293, "wa": 388, "wabbit": 292, "waddstr": [92, 476], "waddwstr": 476, "wafer": 244, "wagner": 483, "wai": 394, "wait": [66, 68, 73, 85, 92, 96, 102, 110, 115, 120, 124, 125, 129, 132, 133, 134, 136, 137, 138, 166, 177, 189, 207, 208, 245, 247, 255, 257, 269, 282, 283, 284, 293, 295, 318, 322, 325, 328, 329, 333, 335, 337, 338, 340, 341, 342, 348, 361, 362, 365, 384, 395, 399, 403, 441, 452, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wait3": [293, 467, 478, 483], "wait4": [293, 467, 478], "wait_clos": [126, 136, 480, 483], "wait_for": [124, 134, 137, 138, 139, 283, 365, 473, 481, 482, 483], "wait_for_data": 136, "wait_on_a": 166, "wait_on_b": 166, "wait_on_futur": 166, "wait_process": [362, 483], "wait_threads_exit": 362, "waitabl": [283, 293, 328, 366, 473, 483], "waiter": [96, 138, 365, 483], "waiter_task": 138, "waitformultipleobject": [283, 483], "waitforsingleobject": [283, 483], "waitid": [293, 476, 478, 483], "waitpid": [132, 257, 293, 309, 467, 477, 478, 483], "waitstatus_to_exitcod": [293, 309, 482, 483], "wake": [247, 328, 333, 365, 468, 483], "wakeup": [333, 476, 480, 483], "wakeupfd": 483, "walczak": 483, "waldman": 462, "walk": [120, 122, 142, 196, 200, 204, 205, 207, 292, 293, 296, 348, 369, 381, 408, 464, 468, 470, 474, 476, 478, 483], "walk_packag": [302, 476, 479, 480, 483], "walk_stack": [381, 478], "walk_tb": [381, 478], "walk_up": [296, 474, 483], "walker": 469, "walktre": 342, "wall": [72, 183, 308, 468, 474, 483], "wallclock": 367, "walli": 384, "walrus": [430, 481, 483], "walter": [465, 466, 467, 468, 481], "walway": [455, 465], "walzer": [469, 475, 483], "wang": [472, 474, 480, 483], "want": [5, 7, 23, 25, 33, 34, 56, 63, 72, 73, 75, 76, 77, 79, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 115, 120, 132, 136, 141, 144, 151, 152, 155, 157, 159, 167, 169, 176, 177, 180, 183, 190, 193, 196, 200, 201, 202, 205, 208, 215, 218, 225, 226, 228, 230, 235, 242, 243, 245, 247, 248, 250, 251, 255, 261, 266, 267, 268, 269, 272, 276, 278, 283, 292, 293, 297, 299, 302, 307, 308, 313, 314, 319, 328, 329, 332, 333, 335, 337, 338, 340, 341, 344, 345, 348, 352, 355, 358, 364, 365, 369, 381, 384, 386, 388, 394, 395, 400, 413, 421, 422, 425, 426, 428, 429, 432, 441, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 474, 475, 476, 477, 479, 481, 482, 483], "wantobject": [465, 483], "war": [93, 473], "ward": [462, 464, 465, 466, 467, 478, 483], "wardil": 477, "ware": [469, 477, 478, 480, 483], "warehous": [440, 475], "warhawk": 479, "wari": [76, 354], "warkentin": 476, "warm": 483, "warmup": 483, "warn": [13, 27, 32, 33, 34, 58, 59, 68, 76, 85, 96, 101, 102, 103, 112, 118, 125, 135, 139, 181, 182, 187, 213, 250, 254, 268, 269, 272, 283, 293, 308, 311, 315, 319, 333, 339, 340, 348, 352, 358, 369, 373, 384, 386, 388, 397, 407, 414, 415, 416, 428, 429, 432, 435, 450, 451, 452, 455, 456, 462, 464, 465, 466, 467, 468, 470, 471, 472, 474, 475, 477, 478, 481, 482, 483, 484], "warn_default_encod": [34, 258, 352, 455, 472, 483], "warn_explicit": [23, 400, 479, 483], "warn_on_full_buff": [333, 480, 483], "warn_the_us": 358, "warner": 468, "warning_help": 362, "warningcategori": 362, "warningmessag": [23, 479, 483], "warningrecord": 362, "warnings_and_below": 102, "warnings_help": [68, 187, 254, 483], "warningsrecord": 362, "warnopt": [34, 59, 352, 362, 400, 450, 474, 480, 483], "warrant": [400, 470], "warranti": [103, 235, 426, 481], "warsaw": [230, 462, 463, 464, 466, 467, 468, 474, 475, 476, 477, 478, 480, 481, 483], "wart": [462, 470], "was": [5, 7, 9, 11, 13, 17, 22, 23, 26, 27, 31, 33, 42, 45, 49, 54, 56, 58, 59, 60, 61, 63, 64, 66, 73, 75, 76, 77, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 117, 120, 125, 132, 133, 137, 139, 140, 141, 144, 149, 151, 152, 155, 157, 158, 161, 163, 167, 169, 170, 177, 181, 183, 186, 190, 191, 193, 196, 199, 201, 202, 205, 206, 207, 213, 214, 218, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 258, 259, 266, 267, 268, 269, 270, 271, 272, 275, 278, 282, 283, 284, 288, 292, 293, 295, 297, 299, 302, 307, 308, 311, 313, 314, 319, 320, 321, 322, 328, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 343, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 362, 364, 365, 366, 369, 376, 377, 378, 380, 382, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 408, 410, 413, 414, 415, 419, 420, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 441, 443, 452, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "washington": [95, 248], "wasi": [123, 151, 163, 166, 173, 210, 212, 213, 215, 223, 229, 233, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 310, 322, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 356, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "wasix": 483, "wasm": [257, 456, 483], "wasm32": [123, 151, 163, 166, 173, 210, 223, 229, 242, 245, 248, 257, 278, 283, 287, 288, 293, 305, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 359, 365, 395, 399, 403, 419, 420, 425, 456, 473, 483], "wasm64": 483, "wasm_build": 483, "wasmtim": [257, 483], "wasn": [22, 31, 45, 76, 102, 120, 269, 292, 356, 388, 423, 462, 464, 465, 467, 468, 479, 483], "wassuccess": 388, "wast": [102, 109, 470, 483], "watch": [22, 59, 61, 100, 101, 133, 137, 186, 261, 269, 328, 369, 451], "watchdog": 214, "watchedfilehandl": [68, 101, 118, 468, 479], "watcher": [13, 22, 27, 61, 63, 68, 75, 137, 474, 482, 483], "watcher_id": [13, 22, 27, 61], "watchexp": [476, 483], "water": [130, 328, 478, 483], "watermark": [133, 136], "watney": 93, "watson": 476, "wav": [68, 141, 206, 254, 277, 336, 406, 450], "wave": [68, 153, 254, 277, 349, 462, 479, 482, 483], "wave_format_extens": [401, 483], "wave_read": [68, 277], "wave_writ": [68, 277], "waveform": [336, 406], "wavread": 450, "wavwrit": 450, "way": [5, 7, 9, 13, 23, 25, 31, 33, 34, 42, 45, 58, 59, 61, 63, 64, 66, 72, 73, 75, 76, 79, 84, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 109, 110, 120, 124, 133, 139, 141, 144, 151, 157, 158, 159, 161, 163, 167, 169, 173, 176, 177, 181, 183, 186, 190, 193, 194, 195, 196, 200, 201, 205, 207, 208, 209, 225, 228, 230, 235, 243, 247, 248, 250, 251, 255, 258, 259, 261, 266, 267, 268, 269, 270, 271, 275, 278, 280, 283, 292, 293, 295, 297, 299, 307, 308, 319, 324, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 347, 348, 352, 353, 354, 358, 362, 365, 369, 375, 378, 381, 384, 386, 387, 388, 395, 400, 403, 410, 413, 415, 419, 420, 421, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wayback": 463, "waygood": [472, 473, 474, 482, 483], "wayland": 483, "wayland_display": 483, "wb": [73, 87, 102, 117, 120, 149, 200, 208, 223, 234, 270, 278, 299, 309, 320, 349, 386, 397, 401, 419, 421, 422, 462, 471, 475], "wbit": [234, 424, 483], "wbr": 483, "wc": 102, "wchar": 483, "wchar_": 33, "wchar_t": [5, 16, 33, 34, 59, 66, 68, 72, 73, 121, 176, 473, 474, 480, 482, 483], "wcontinu": 293, "wcoredump": 293, "wcslen": 64, "wcstok": 483, "wctype": 475, "wd": [388, 400, 467, 469, 477, 479], "wdefault": [455, 469, 475, 483], "wdv4758h": 483, "we": [64, 72, 73, 75, 76, 85, 91, 93, 94, 95, 96, 101, 102, 103, 106, 107, 109, 110, 120, 122, 126, 129, 133, 134, 136, 139, 144, 150, 155, 157, 160, 166, 167, 169, 170, 176, 183, 190, 191, 194, 196, 200, 202, 205, 208, 232, 235, 242, 243, 247, 251, 255, 266, 268, 269, 283, 284, 292, 293, 299, 319, 332, 333, 338, 340, 341, 343, 344, 345, 347, 348, 362, 365, 369, 376, 378, 382, 384, 386, 388, 394, 395, 400, 407, 411, 413, 419, 422, 427, 428, 430, 431, 432, 441, 443, 446, 456, 462, 464, 465, 467, 468, 469, 470, 474, 475, 476, 479, 480, 481, 482, 483], "weak": [5, 63, 67, 68, 73, 74, 85, 139, 213, 226, 235, 341, 344, 388, 402, 428, 445, 464, 467, 469, 474, 477, 483, 484], "weaken": 483, "weaker": [186, 463], "weakest": 173, "weakkeydictionari": [344, 402, 467, 483], "weaklink": [465, 481, 482, 483], "weakmethod": [344, 402, 477, 483], "weakref": [63, 68, 75, 85, 87, 181, 182, 213, 254, 283, 316, 344, 362, 452, 463, 464, 466, 467, 469, 473, 474, 483], "weakref_ref": 5, "weakref_slot": [181, 483], "weakrefer": 63, "weakreflist": 483, "weakset": [344, 402, 469, 473, 483], "weakvaluedictionari": [344, 402, 452, 467, 483], "wealth": 470, "weapon": 442, "weather": 85, "weav": 79, "web": [68, 84, 85, 95, 103, 107, 109, 110, 151, 226, 235, 244, 245, 247, 256, 257, 269, 272, 313, 340, 341, 394, 395, 403, 407, 410, 420, 426, 432, 461, 462, 463, 464, 465, 466, 467, 468, 469, 477, 483, 484], "web_python": 84, "webapp": 102, "webapplib": 102, "webassembl": [68, 123, 151, 163, 166, 173, 210, 223, 229, 242, 245, 248, 278, 283, 287, 288, 293, 305, 328, 329, 333, 335, 337, 338, 339, 341, 348, 352, 359, 365, 395, 399, 403, 419, 420, 425, 458, 473, 483], "webbrows": [68, 142, 156, 200, 254, 256, 462, 467, 473, 483], "webdav": [223, 241], "weber": [465, 478, 483], "webm": 483, "webmanifest": 483, "webp": [206, 249, 369, 478, 483], "webpag": 307, "webprogram": 84, "webserv": 245, "websit": [85, 110, 184, 395, 434, 475, 483], "websocket": [243, 257, 483], "webster": 483, "wed": [150, 183, 366], "wednesday": [94, 150, 183, 211], "week": [94, 183, 266, 366, 462, 474, 481, 483], "weekday": [94, 150, 183, 211, 269, 366, 481, 483], "weekend": 94, "weekhead": 150, "weel": [480, 483], "wei": [478, 483], "weibul": 318, "weibullvari": 318, "weigh": 386, "weight": [115, 160, 176, 202, 318, 343, 345, 372, 479, 483], "weight_femal": 343, "weight_mal": 343, "weighta": 141, "weightb": [141, 483], "weikart": 467, "weinberg": 477, "weipeng": [473, 481, 483], "weird": 120, "weird_json": 262, "weirdtrio": 386, "welborn": 478, "welbourn": 464, "welcom": [72, 92, 155, 283, 288, 384, 426, 467, 475, 483], "well": [5, 23, 49, 63, 64, 73, 75, 76, 77, 79, 84, 85, 93, 94, 95, 100, 101, 102, 106, 107, 109, 110, 120, 132, 133, 137, 141, 144, 146, 151, 152, 157, 158, 167, 169, 176, 177, 183, 184, 186, 191, 193, 194, 197, 200, 203, 204, 208, 215, 218, 225, 226, 228, 230, 234, 235, 243, 247, 251, 257, 258, 259, 261, 267, 268, 269, 270, 271, 276, 279, 284, 288, 292, 293, 299, 307, 319, 321, 324, 329, 332, 335, 340, 341, 342, 343, 344, 348, 352, 354, 358, 361, 362, 364, 369, 375, 378, 381, 382, 383, 384, 385, 386, 388, 394, 410, 413, 414, 415, 416, 419, 425, 427, 428, 430, 432, 436, 455, 456, 459, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "wellner": 483, "welter": 465, "wena": 89, "went": [73, 144, 213, 295, 335, 413, 462, 464, 467, 468, 482], "wenyang": 474, "wenzel": 474, "were": [5, 7, 9, 17, 23, 26, 33, 58, 61, 63, 66, 73, 75, 76, 93, 95, 101, 102, 106, 112, 120, 133, 139, 144, 151, 158, 160, 167, 169, 177, 181, 183, 186, 190, 191, 193, 196, 199, 200, 201, 203, 205, 207, 208, 213, 216, 225, 228, 235, 244, 247, 250, 251, 255, 262, 267, 268, 275, 276, 278, 283, 293, 295, 299, 308, 314, 319, 330, 333, 335, 337, 338, 340, 344, 345, 347, 348, 352, 353, 356, 358, 359, 362, 369, 376, 380, 381, 382, 384, 386, 388, 394, 395, 400, 412, 413, 423, 427, 428, 429, 430, 432, 434, 435, 436, 441, 443, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "weren": [95, 106, 235, 463, 464, 465, 466, 467, 469], "werneck": 468, "werror": [455, 456, 483], "wessel": 483, "west": [94, 183, 366, 376, 384, 440, 471], "western": [158, 366], "westley": 483, "weston": 483, "wexit": 293, "wexitstatus": 293, "wfile": [245, 338, 479, 483], "wg14": 352, "wgh": 483, "what": [5, 9, 23, 25, 26, 31, 33, 34, 39, 42, 49, 51, 54, 58, 63, 64, 68, 72, 75, 76, 93, 94, 95, 96, 102, 103, 106, 109, 110, 112, 120, 133, 139, 151, 158, 163, 167, 170, 176, 177, 183, 185, 186, 187, 199, 200, 201, 203, 207, 208, 213, 215, 225, 230, 235, 243, 244, 247, 248, 249, 250, 251, 266, 267, 268, 269, 270, 272, 279, 293, 295, 298, 307, 311, 314, 319, 320, 328, 332, 336, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 358, 361, 362, 368, 375, 376, 380, 383, 384, 386, 388, 394, 400, 410, 411, 413, 421, 427, 429, 430, 432, 434, 435, 436, 442, 461, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "whatev": [5, 31, 73, 78, 84, 85, 101, 102, 106, 120, 151, 176, 195, 200, 208, 225, 250, 267, 268, 292, 293, 297, 311, 319, 344, 352, 359, 362, 365, 395, 430, 432, 462, 463, 464, 465, 466, 469, 483], "whathdr": [336, 478, 483], "whati": [297, 483], "whats_on_the_telli": 427, "whatsnew": [467, 483], "whatsoev": [292, 325, 426], "whatsound": 462, "whatwg": [239, 394, 472, 479, 480, 481, 482, 483], "wheeeeee": 389, "wheel": [111, 190, 251, 318, 456, 472, 473, 474, 481, 482, 483], "wheel_metadata": 251, "wheel_pkg_dir": 483, "when": [5, 7, 9, 10, 11, 13, 22, 23, 27, 28, 31, 33, 34, 36, 37, 39, 42, 45, 47, 49, 50, 54, 58, 59, 61, 63, 64, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 79, 84, 92, 93, 95, 96, 100, 101, 102, 103, 106, 109, 110, 112, 114, 115, 117, 120, 122, 124, 126, 128, 129, 132, 133, 135, 137, 138, 139, 141, 144, 149, 151, 152, 153, 155, 157, 158, 167, 169, 170, 173, 176, 177, 178, 181, 183, 184, 186, 188, 189, 190, 191, 193, 194, 195, 196, 197, 199, 201, 202, 203, 205, 206, 207, 208, 209, 213, 214, 215, 218, 221, 223, 225, 226, 228, 230, 232, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 283, 287, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 308, 309, 311, 313, 314, 318, 319, 320, 321, 322, 323, 324, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 346, 347, 348, 352, 353, 354, 355, 356, 358, 359, 361, 362, 365, 366, 369, 371, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 388, 394, 395, 397, 399, 400, 403, 405, 410, 411, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 427, 428, 429, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "whenc": [142, 153, 215, 258, 278, 293, 446, 464], "whenev": [23, 61, 63, 66, 73, 85, 93, 94, 95, 101, 102, 120, 133, 177, 186, 190, 207, 225, 247, 252, 255, 267, 269, 271, 283, 292, 299, 314, 328, 333, 340, 341, 352, 362, 365, 376, 384, 388, 413, 425, 428, 432, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 483], "where": [5, 23, 24, 33, 34, 35, 42, 45, 47, 49, 54, 56, 58, 59, 61, 63, 64, 66, 73, 75, 76, 77, 78, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 109, 110, 112, 120, 122, 133, 139, 141, 144, 151, 152, 153, 158, 163, 167, 169, 176, 177, 181, 183, 186, 190, 191, 193, 196, 199, 201, 202, 203, 205, 208, 213, 215, 221, 225, 226, 230, 235, 242, 243, 245, 247, 248, 250, 251, 253, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 278, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 307, 308, 312, 313, 314, 319, 324, 328, 331, 332, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 353, 355, 358, 359, 361, 362, 365, 366, 369, 371, 376, 378, 380, 381, 382, 384, 385, 386, 388, 389, 390, 394, 395, 399, 400, 410, 411, 412, 413, 415, 416, 419, 421, 422, 423, 425, 426, 427, 428, 429, 430, 432, 434, 435, 436, 443, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "where_i": 441, "wherea": [34, 73, 85, 96, 102, 103, 137, 167, 225, 262, 267, 283, 319, 329, 352, 369, 432, 461, 470, 482, 483], "wherebi": [141, 151, 268, 299, 483], "wherein": 483, "wherev": [73, 79, 92, 94, 102, 106, 109, 177, 247, 369, 397, 426, 464, 467], "whet": 464, "whether": [5, 7, 9, 11, 13, 17, 23, 31, 45, 58, 59, 63, 64, 73, 79, 85, 92, 93, 95, 99, 100, 101, 106, 109, 115, 120, 133, 139, 144, 149, 151, 152, 155, 157, 158, 159, 161, 167, 169, 176, 177, 181, 183, 186, 189, 191, 193, 196, 202, 207, 208, 220, 225, 230, 234, 235, 243, 244, 247, 250, 255, 258, 259, 261, 266, 268, 269, 271, 272, 275, 276, 283, 292, 293, 295, 297, 299, 302, 307, 308, 311, 314, 319, 324, 328, 332, 333, 334, 335, 337, 338, 340, 341, 344, 346, 347, 348, 352, 358, 362, 365, 366, 369, 376, 380, 384, 386, 387, 388, 394, 395, 400, 405, 410, 415, 420, 421, 422, 426, 427, 428, 429, 430, 432, 436, 455, 456, 461, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 483], "whi": [68, 73, 75, 92, 93, 94, 95, 99, 101, 103, 109, 151, 167, 176, 193, 201, 235, 250, 253, 261, 271, 283, 292, 293, 299, 345, 355, 388, 428, 461, 464, 467, 469, 474, 480, 483], "which": [5, 7, 9, 13, 18, 22, 23, 25, 27, 28, 31, 33, 34, 39, 41, 42, 43, 45, 49, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 117, 120, 132, 133, 135, 137, 138, 139, 141, 144, 146, 149, 151, 153, 155, 157, 158, 159, 161, 163, 167, 169, 170, 173, 176, 177, 178, 179, 181, 183, 184, 186, 187, 190, 191, 194, 195, 196, 197, 200, 201, 202, 203, 205, 206, 207, 208, 209, 212, 213, 214, 215, 216, 218, 220, 221, 223, 225, 226, 228, 230, 234, 235, 243, 244, 245, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 261, 262, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 292, 293, 295, 297, 299, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 319, 320, 321, 322, 325, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 340, 341, 344, 345, 346, 347, 348, 352, 353, 354, 356, 358, 359, 361, 362, 364, 365, 366, 369, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 394, 395, 399, 400, 403, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "whichdb": [184, 470], "whichev": [63, 73, 75, 183, 267, 347, 388, 461, 476, 478], "whichfil": 190, "whichmodul": 483, "whichsid": 376, "whielacronx": 426, "while": [7, 13, 22, 23, 28, 33, 36, 45, 49, 63, 64, 68, 72, 73, 75, 76, 84, 85, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 107, 109, 112, 115, 116, 120, 122, 133, 134, 136, 138, 139, 147, 149, 151, 158, 160, 167, 169, 170, 176, 177, 179, 183, 184, 186, 190, 191, 192, 193, 196, 199, 208, 209, 211, 213, 225, 226, 227, 230, 232, 234, 235, 236, 242, 243, 247, 250, 251, 258, 259, 261, 265, 266, 267, 268, 269, 270, 271, 283, 292, 293, 297, 299, 302, 308, 311, 314, 316, 318, 319, 326, 328, 329, 331, 333, 335, 337, 338, 340, 341, 344, 345, 347, 348, 352, 358, 362, 364, 365, 366, 369, 371, 380, 381, 384, 386, 388, 394, 395, 399, 400, 410, 413, 422, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 440, 441, 442, 443, 449, 450, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "while_stmt": [427, 431], "whilst": 483, "whit": 465, "whitacr": 109, "white": [18, 92, 94, 106, 177, 178, 199, 211, 247, 348, 376, 384, 395, 426, 434, 452, 477, 482, 483], "whitebox": 362, "whitelist": [480, 483], "whiteout": 342, "whitespac": [39, 64, 68, 85, 94, 95, 106, 109, 112, 120, 137, 146, 155, 167, 178, 186, 190, 193, 199, 202, 203, 208, 221, 225, 245, 247, 255, 262, 266, 297, 314, 319, 331, 344, 345, 347, 348, 364, 366, 381, 400, 410, 413, 415, 455, 462, 465, 468, 469, 471, 475, 476, 477, 480, 483], "whitespace_split": 331, "whittl": 292, "whl": 453, "who": [11, 68, 73, 96, 99, 101, 102, 103, 109, 163, 228, 230, 248, 267, 293, 322, 341, 345, 358, 384, 411, 421, 423, 425, 446, 461, 462, 464, 465, 466, 467, 469, 476, 479, 481, 482, 483], "whoami": 344, "whole": [42, 79, 99, 106, 120, 141, 158, 167, 169, 177, 183, 207, 208, 235, 242, 259, 261, 267, 278, 292, 293, 305, 307, 319, 328, 337, 340, 344, 364, 375, 388, 410, 413, 426, 427, 435, 455, 462, 469, 477, 481, 483], "wholesal": 483, "wholli": [259, 413], "whom": [384, 426], "whoop": [73, 102], "whose": [5, 23, 31, 33, 42, 45, 60, 61, 63, 73, 85, 93, 102, 120, 169, 176, 177, 181, 183, 186, 193, 200, 203, 205, 208, 213, 215, 216, 221, 225, 226, 228, 233, 242, 243, 244, 252, 255, 266, 267, 268, 269, 271, 283, 292, 293, 297, 299, 307, 308, 312, 319, 322, 332, 333, 334, 337, 339, 340, 344, 345, 352, 358, 362, 365, 366, 369, 376, 380, 381, 388, 395, 400, 405, 413, 415, 427, 428, 430, 432, 435, 462, 463, 464, 466, 467, 468, 469, 474, 476, 477, 478, 480, 481, 483], "whrandom": 467, "whwn": 483, "why_return": 483, "why_yield": 483, "wi": 455, "wide": [32, 34, 59, 64, 68, 92, 95, 100, 101, 109, 115, 120, 132, 141, 150, 155, 167, 176, 177, 183, 186, 193, 194, 243, 247, 255, 257, 266, 271, 282, 293, 295, 299, 302, 305, 315, 330, 341, 344, 347, 348, 358, 365, 366, 375, 410, 422, 425, 426, 456, 461, 464, 467, 468, 469, 474, 475, 476, 477, 483], "wideman": 109, "widen": 483, "wider": [158, 183, 386, 466, 477], "widespread": [102, 202, 434, 463, 475], "widget": [68, 81, 92, 93, 102, 118, 169, 181, 189, 247, 254, 292, 368, 371, 374, 384, 388, 462, 465, 466, 471, 475, 479, 483], "widgetredirector": 483, "widgettestcas": 388, "widgit": 341, "width": [64, 75, 85, 92, 106, 117, 120, 141, 150, 158, 176, 177, 181, 183, 186, 225, 247, 281, 292, 293, 307, 319, 343, 344, 345, 352, 364, 366, 369, 372, 376, 381, 384, 386, 387, 401, 428, 435, 449, 452, 462, 465, 467, 468, 469, 474, 475, 477, 479, 481, 483], "widthxheight": 369, "wieczorek": 469, "wiedemann": 480, "wielgosik": [480, 483], "wifcontinu": 293, "wifexit": 293, "wifsign": 293, "wifstop": 293, "wignor": 455, "wijaya": 483, "wiki": [80, 81, 84, 85, 95, 96, 160, 235, 340, 341, 352, 368, 459, 466, 467, 469, 475, 476, 483], "wikipedia": [95, 109, 160, 235, 271, 347, 384, 467, 475, 476, 483], "wilcox": 235, "wild": [203, 436, 462, 483], "wildcard": [68, 122, 189, 220, 231, 288, 296, 331, 348, 388, 435, 441, 443, 445, 480, 481, 483], "wildcard_pattern": [427, 431], "wildmat": 288, "will": [5, 7, 9, 11, 13, 17, 18, 22, 23, 24, 25, 26, 27, 28, 31, 33, 34, 37, 39, 41, 42, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 67, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 115, 117, 120, 122, 126, 132, 133, 134, 136, 137, 138, 139, 141, 144, 146, 149, 151, 152, 153, 155, 157, 158, 159, 161, 163, 166, 167, 169, 170, 173, 176, 177, 179, 181, 183, 184, 186, 190, 191, 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 214, 215, 216, 218, 220, 222, 223, 225, 226, 228, 230, 234, 235, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 255, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 278, 279, 281, 282, 283, 288, 292, 293, 295, 297, 299, 302, 304, 305, 307, 308, 309, 311, 313, 314, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 344, 345, 347, 348, 352, 353, 354, 355, 356, 358, 359, 360, 362, 364, 365, 366, 369, 375, 376, 377, 378, 380, 381, 382, 384, 385, 386, 387, 388, 389, 394, 395, 397, 399, 400, 403, 405, 406, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 421, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 436, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "willi": 235, "william": [474, 477, 483], "wilson": [318, 465, 466, 478, 482, 483], "wimplicit": 483, "win": [22, 33, 68, 92, 102, 103, 177, 179, 292, 318, 355, 388, 461, 471, 475, 483], "win32": [23, 64, 84, 86, 137, 176, 269, 283, 293, 337, 348, 352, 355, 405, 406, 461, 462, 468, 470, 475, 478, 483], "win32_edit": [303, 483], "win32_is_iot": [303, 483], "win32_ver": [303, 483], "win32_xstat_impl": 483, "win32servic": 269, "win64": [110, 462, 478, 483], "win_amd64": [478, 483], "win_arm": 478, "win_ia64": 478, "winapi": [176, 332, 348, 483], "winbas": [472, 483], "winconfig_ev": 483, "wincrypt": 483, "wind": 292, "windir": 405, "windll": [176, 468, 483], "window": [16, 23, 33, 34, 35, 42, 57, 59, 63, 66, 68, 71, 73, 74, 78, 80, 81, 82, 83, 84, 85, 87, 101, 102, 107, 109, 110, 111, 115, 118, 120, 126, 132, 133, 137, 145, 151, 155, 164, 166, 167, 176, 179, 213, 214, 222, 225, 229, 231, 243, 250, 254, 258, 261, 266, 269, 272, 275, 276, 278, 281, 282, 283, 292, 293, 294, 296, 306, 316, 328, 329, 331, 332, 333, 334, 335, 337, 340, 341, 342, 352, 354, 355, 358, 360, 361, 362, 365, 366, 368, 371, 373, 375, 376, 378, 388, 395, 397, 399, 403, 407, 421, 422, 425, 426, 428, 435, 438, 439, 441, 446, 448, 450, 453, 455, 456, 458, 462, 463, 464, 466, 467, 470, 471, 472, 474, 475, 477, 478, 481, 482, 484], "window_height": 384, "window_width": 384, "windowed_sign": 261, "windowfunct": 340, "windows_ev": [131, 483], "windows_util": [131, 480, 483], "windowsapp": 461, "windowsconsoleio": 483, "windowsdefault": 403, "windowserror": [176, 213, 405, 476], "windowspath": [296, 483], "windowsproactoreventlooppolici": [132, 480, 483], "windowsregistryfind": [250, 461, 472, 473, 479, 483], "windowsselectoreventlooppolici": [132, 480, 483], "windowsumint": 340, "wine": [468, 483], "winerror": [23, 176, 213, 483], "winerror_to_errno": 483, "winfo": 369, "winfo_class": 376, "winfo_height": 369, "winfo_id": 369, "winfo_par": 369, "winfo_pathnam": 483, "winfo_view": 369, "winfo_x": 369, "winfunctyp": [176, 483], "wing": 85, "wininst": 483, "wink": 109, "winmod": [176, 481], "winner": 483, "winnerlein": 235, "winpython": 461, "winreg": [68, 142, 254, 404, 450, 470, 483], "winsiz": [361, 483], "winsock": [328, 337, 483], "winsock2": 483, "winsound": [68, 77, 254, 404, 483], "winston": 476, "winter": [95, 225, 468, 469], "winton": 95, "wintyp": [176, 483], "winuserapi": 176, "winver": 352, "wipe": 243, "wire": [92, 101, 158, 177, 267, 268, 269, 341, 346, 419, 478], "wireshark": 341, "wirtel": [479, 480, 483], "wirtz": 483, "wis": [109, 230, 288, 462, 464, 465, 466, 467, 468, 469, 475, 476, 477, 481], "wisdom": 366, "wise": [73, 94, 181, 186, 268, 464, 480], "wish": [73, 75, 92, 95, 101, 106, 110, 120, 146, 158, 167, 183, 193, 203, 208, 234, 250, 251, 252, 253, 259, 262, 267, 269, 271, 278, 292, 319, 335, 342, 348, 355, 376, 385, 399, 400, 428, 463, 466, 467, 468, 469, 477, 483], "wit": 470, "witch": 451, "with": [5, 7, 9, 10, 11, 13, 22, 23, 24, 25, 27, 28, 31, 32, 33, 35, 36, 37, 39, 41, 42, 45, 47, 49, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 66, 68, 72, 73, 74, 75, 76, 77, 87, 89, 91, 93, 95, 97, 98, 101, 103, 106, 107, 108, 109, 110, 112, 113, 115, 117, 118, 120, 122, 124, 125, 126, 128, 132, 133, 135, 136, 138, 139, 140, 141, 144, 145, 146, 149, 151, 153, 155, 157, 159, 160, 161, 163, 164, 166, 167, 170, 173, 175, 177, 178, 179, 181, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 213, 215, 216, 218, 219, 220, 221, 222, 223, 225, 226, 228, 230, 233, 234, 235, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 261, 262, 264, 266, 268, 269, 270, 271, 272, 273, 275, 276, 278, 281, 282, 283, 284, 288, 290, 291, 292, 293, 295, 296, 297, 298, 299, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 347, 352, 353, 354, 355, 356, 358, 359, 360, 361, 362, 364, 366, 369, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 387, 388, 389, 390, 394, 395, 399, 400, 401, 402, 403, 405, 406, 407, 408, 410, 411, 412, 414, 415, 416, 417, 419, 420, 422, 423, 425, 426, 430, 431, 432, 433, 434, 435, 436, 438, 441, 442, 443, 444, 446, 449, 451, 452, 455, 456, 460, 461, 462, 463, 464, 465, 466, 469, 470, 471, 472, 473, 474, 475, 477, 479, 482, 483, 484], "with_cleanup_finish": 483, "with_cleanup_start": [481, 483], "with_com": 413, "with_cycle_gc": 470, "with_doc_str": [362, 456], "with_editlin": 456, "with_except_start": [191, 483], "with_hostmask": 259, "with_item": [427, 431], "with_lock": 386, "with_nam": [296, 483], "with_netmask": 259, "with_next_framework": 34, "with_pip": [399, 477], "with_prefixlen": 259, "with_pymalloc": 362, "with_pymalloc_radix_tre": 483, "with_save_env": 483, "with_seg": [296, 474, 483], "with_stat": [113, 436, 467, 468], "with_stem": [296, 483], "with_stmt": [427, 431], "with_stmt_cont": 427, "with_suffix": [296, 483], "with_traceback": [112, 213, 436, 483], "with_xxsubinterpret": 483, "within": [5, 7, 22, 33, 42, 49, 54, 68, 73, 76, 78, 85, 92, 94, 95, 96, 99, 100, 102, 106, 120, 135, 139, 144, 157, 158, 163, 167, 169, 176, 177, 183, 186, 190, 191, 193, 203, 216, 218, 225, 230, 245, 247, 248, 250, 251, 252, 253, 255, 259, 261, 267, 270, 271, 275, 283, 284, 285, 297, 302, 307, 308, 312, 313, 319, 321, 324, 331, 332, 337, 338, 340, 344, 345, 347, 348, 352, 353, 354, 362, 364, 365, 369, 371, 376, 384, 386, 388, 394, 395, 399, 400, 410, 411, 413, 420, 422, 423, 426, 427, 428, 429, 430, 432, 435, 436, 449, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 474, 475, 476, 477, 479, 480, 481, 482, 483], "withitem": 122, "withitem_ti": 431, "without": [5, 7, 9, 13, 22, 23, 25, 33, 34, 42, 45, 49, 54, 55, 58, 59, 61, 63, 66, 68, 72, 73, 75, 76, 79, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 115, 120, 122, 133, 135, 137, 139, 149, 151, 155, 158, 167, 169, 170, 173, 176, 177, 181, 183, 184, 186, 190, 191, 192, 193, 194, 196, 197, 202, 205, 208, 209, 213, 214, 218, 225, 226, 228, 230, 234, 235, 243, 244, 248, 250, 252, 253, 255, 258, 259, 261, 265, 266, 267, 270, 271, 275, 278, 282, 283, 288, 292, 293, 295, 297, 299, 305, 308, 309, 314, 318, 319, 322, 323, 324, 325, 328, 330, 332, 334, 337, 340, 341, 344, 347, 348, 352, 353, 354, 358, 359, 362, 364, 365, 366, 368, 369, 382, 384, 385, 386, 388, 394, 395, 399, 400, 403, 410, 411, 413, 416, 422, 423, 425, 426, 427, 428, 429, 430, 431, 432, 435, 436, 441, 449, 451, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "withprocessestestsharedmemori": 483, "withyear": 150, "wizard": [102, 464], "wladmir": 468, "wlist": 328, "wm": 369, "wmi": 483, "wmodul": 455, "wno": [456, 483], "wnohang": 293, "wnowait": 293, "wo": [472, 483], "woefulli": 369, "woellert": 483, "wohlgang": [479, 480, 483], "wojciech": 483, "wojdyr": 475, "woken": 468, "wold": 483, "wolfeboro": 341, "wolfgang": [479, 483], "wolfram": 261, "wolfson": 463, "won": [5, 33, 34, 41, 63, 73, 75, 76, 85, 92, 94, 95, 99, 101, 102, 106, 109, 133, 139, 151, 167, 183, 184, 186, 193, 206, 225, 230, 243, 267, 269, 292, 293, 297, 299, 329, 337, 347, 352, 369, 389, 416, 455, 463, 464, 466, 467, 468, 469, 470, 471, 475, 478, 480, 483], "wonc": 455, "wonder": [93, 151, 175, 308, 434, 462, 465, 475], "wont": 359, "wood": [93, 120], "woodruff": 483, "word": [5, 11, 33, 63, 73, 85, 92, 94, 102, 103, 106, 108, 109, 120, 158, 160, 167, 173, 176, 183, 186, 190, 193, 201, 203, 208, 247, 292, 297, 319, 320, 326, 331, 340, 344, 349, 353, 364, 365, 369, 386, 412, 413, 417, 430, 432, 434, 435, 436, 440, 441, 442, 449, 462, 464, 466, 467, 468, 470, 474, 478, 479, 480, 481, 483], "word_list": 386, "wordchar": 331, "wordcod": [472, 479, 483], "work": [5, 23, 25, 33, 34, 36, 37, 41, 42, 45, 55, 59, 63, 64, 68, 72, 73, 76, 77, 78, 79, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 115, 120, 132, 133, 134, 135, 137, 138, 139, 151, 155, 158, 161, 163, 167, 169, 170, 176, 177, 181, 183, 184, 187, 190, 191, 192, 197, 205, 207, 208, 215, 225, 226, 228, 230, 232, 241, 243, 245, 247, 248, 250, 251, 255, 257, 258, 260, 261, 264, 266, 267, 268, 269, 273, 283, 284, 290, 291, 292, 293, 297, 298, 299, 302, 304, 305, 308, 309, 316, 319, 324, 328, 330, 332, 337, 338, 341, 343, 344, 345, 347, 348, 352, 358, 361, 362, 364, 365, 369, 375, 376, 381, 384, 388, 390, 394, 395, 400, 403, 405, 410, 411, 413, 414, 419, 421, 422, 426, 427, 428, 430, 432, 434, 436, 451, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "work_button": 102, "workaround": [85, 181, 193, 284, 297, 341, 344, 422, 473, 474, 476, 481, 483], "worker": [68, 102, 134, 163, 164, 166, 232, 316, 365, 467, 468, 469, 478, 482, 483], "worker_configur": 102, "worker_process": 102, "worker_thread": 102, "workerthread": 102, "workfil": 446, "workflow": [475, 483], "workhors": 462, "workitem": 483, "workload": [134, 482, 483], "workstat": 352, "world": [68, 73, 79, 85, 92, 96, 99, 102, 114, 129, 133, 136, 139, 146, 151, 169, 176, 183, 226, 230, 235, 248, 257, 278, 283, 291, 292, 299, 301, 310, 325, 337, 338, 340, 341, 344, 360, 362, 364, 365, 368, 378, 384, 388, 389, 407, 410, 426, 435, 440, 443, 446, 470, 478, 479, 483], "worldtimeapi": 451, "worldwid": [202, 235, 426], "worri": [73, 75, 92, 109, 151, 183, 194, 292, 319, 347, 388, 464, 469, 476], "wors": [85, 106, 183, 474, 476, 477, 483], "worst": [106, 176, 190, 428, 432, 455, 466, 479, 480, 483], "worth": [79, 102, 117, 149, 193, 261, 268, 269, 283, 384, 434, 435, 462, 463, 464, 467, 478, 483], "worthwhil": [299, 467, 476], "would": [5, 7, 23, 31, 33, 34, 47, 49, 58, 59, 61, 64, 72, 73, 75, 76, 77, 79, 84, 85, 92, 93, 94, 95, 100, 101, 102, 103, 106, 109, 112, 120, 138, 139, 151, 158, 161, 167, 169, 170, 176, 177, 181, 183, 184, 186, 190, 193, 196, 199, 200, 202, 203, 205, 207, 208, 212, 213, 225, 226, 228, 230, 234, 235, 242, 243, 245, 247, 250, 253, 255, 258, 262, 267, 268, 269, 272, 275, 276, 283, 292, 293, 305, 307, 308, 313, 319, 320, 322, 330, 331, 332, 333, 337, 338, 340, 341, 342, 343, 344, 345, 346, 348, 352, 353, 355, 356, 358, 362, 365, 369, 376, 381, 382, 384, 386, 387, 388, 394, 395, 400, 403, 405, 408, 410, 412, 413, 421, 422, 423, 425, 426, 427, 428, 430, 432, 434, 435, 436, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 480, 481, 482, 483], "wouldn": [73, 84, 106, 267, 332, 362, 388, 427, 441, 462, 463, 464, 465, 466, 468, 483], "wouter": [462, 463, 466, 467, 468, 469, 478, 481, 483], "wow": 389, "wow64": 405, "wozniak": 477, "wozniski": 483, "wp": 102, "wpar": 483, "wparam": 176, "wr": [102, 463, 483], "wrap": [7, 21, 33, 42, 43, 58, 63, 68, 79, 88, 93, 98, 102, 109, 112, 120, 129, 137, 139, 141, 149, 155, 158, 169, 176, 177, 181, 187, 190, 191, 193, 201, 202, 207, 208, 213, 220, 225, 226, 230, 234, 242, 247, 251, 255, 258, 261, 267, 268, 270, 281, 283, 292, 293, 304, 333, 340, 341, 344, 347, 352, 356, 358, 362, 364, 368, 376, 385, 386, 388, 394, 395, 405, 407, 413, 417, 427, 428, 452, 461, 464, 465, 466, 467, 468, 469, 470, 474, 475, 477, 478, 479, 481, 483], "wrap_bio": [341, 478, 480, 483], "wrap_futur": [129, 483], "wrap_lenfunc": 483, "wrap_socket": [341, 468, 469, 472, 474, 475, 480, 483], "wrapcol": 143, "wrapcolumn": 190, "wrappabl": 483, "wrapper": [7, 21, 23, 25, 31, 33, 42, 44, 58, 59, 86, 87, 92, 93, 102, 108, 114, 137, 146, 148, 160, 169, 176, 177, 191, 193, 215, 226, 250, 255, 267, 275, 281, 283, 287, 293, 299, 302, 328, 337, 345, 362, 364, 369, 381, 400, 407, 410, 413, 419, 425, 427, 428, 440, 462, 463, 464, 466, 467, 468, 469, 474, 475, 477, 478, 481, 483], "wrapper_assign": 226, "wrapper_descriptor": [255, 466], "wrapper_upd": 226, "wrapperbas": [21, 480, 483], "wrapperdescriptortyp": [385, 480, 483], "wrapperobject": 483, "wrec": 468, "wrefresh": 177, "wright": 483, "wrist": 451, "writabl": [5, 7, 43, 84, 96, 120, 133, 149, 151, 248, 255, 258, 278, 283, 293, 295, 304, 332, 337, 338, 344, 347, 369, 422, 428, 432, 436, 466, 468, 476, 478, 479, 480, 483], "write": [5, 7, 23, 25, 28, 33, 34, 41, 42, 43, 51, 58, 59, 63, 64, 68, 72, 74, 75, 76, 78, 79, 84, 86, 87, 92, 93, 94, 95, 99, 100, 101, 102, 103, 106, 107, 112, 117, 119, 120, 130, 135, 136, 137, 139, 140, 142, 149, 151, 155, 157, 158, 161, 163, 167, 169, 170, 175, 176, 177, 180, 184, 187, 189, 190, 193, 196, 200, 201, 205, 208, 213, 215, 218, 219, 222, 223, 225, 226, 228, 230, 234, 236, 243, 245, 246, 247, 248, 250, 255, 258, 259, 262, 267, 268, 269, 271, 278, 281, 283, 288, 292, 293, 295, 298, 299, 301, 304, 305, 307, 308, 309, 311, 320, 328, 329, 330, 331, 332, 333, 337, 338, 341, 342, 344, 347, 348, 352, 355, 356, 358, 359, 360, 362, 363, 365, 369, 371, 376, 378, 380, 382, 384, 386, 388, 389, 397, 399, 400, 405, 407, 410, 411, 413, 415, 417, 419, 421, 422, 426, 427, 428, 431, 432, 436, 441, 446, 450, 451, 452, 455, 461, 462, 463, 464, 465, 466, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "write_byt": [278, 296, 478, 483], "write_bytecod": [33, 34, 474], "write_classvar": [481, 482], "write_dequ": [481, 482], "write_dict": [481, 482], "write_docstringdict": 384, "write_eof": [130, 133, 136, 341, 483], "write_glob": [481, 482], "write_histori": [320, 483], "write_history_fil": 320, "write_instancevar": [481, 482], "write_instancevar_slot": [481, 482], "write_lin": 102, "write_list": [481, 482], "write_loc": [481, 482], "write_multiple_item": 441, "write_nonloc": [481, 482], "write_repr": 483, "write_restrict": [58, 474], "write_result": 380, "write_strdict": [481, 482], "write_text": [296, 478, 483], "write_through": [225, 258, 476, 483], "write_to_stream": 169, "writeabl": [176, 225, 258, 348, 483], "writeal": 295, "writeback": 330, "writedoc": 483, "writefram": [117, 349, 401, 477], "writeframesraw": [117, 349, 401, 477], "writehead": [175, 475, 483], "writelin": [130, 133, 136, 158, 190, 258, 462, 483], "writeon": 483, "writepi": [422, 477], "writeplist": [468, 477], "writeplisttobyt": 477, "writeplisttostr": 468, "writer": [42, 68, 73, 76, 109, 126, 136, 149, 158, 170, 175, 193, 246, 251, 258, 293, 319, 411, 413, 416, 455, 465, 474, 478, 480, 483], "writerow": [175, 475, 478, 483], "writestr": [422, 469], "writetransport": [126, 133, 483], "writev": [293, 476, 478, 480, 483], "writexml": [411, 481], "written": [7, 9, 23, 34, 42, 45, 49, 59, 64, 72, 73, 76, 84, 85, 91, 92, 93, 95, 96, 100, 102, 106, 109, 112, 117, 133, 137, 139, 146, 151, 152, 157, 158, 161, 163, 167, 169, 176, 177, 184, 191, 193, 196, 202, 205, 213, 214, 225, 230, 234, 235, 245, 247, 255, 258, 269, 271, 278, 281, 283, 288, 292, 293, 295, 299, 301, 304, 307, 308, 311, 313, 320, 324, 328, 330, 332, 333, 337, 338, 340, 341, 344, 352, 355, 358, 361, 362, 380, 382, 384, 385, 386, 388, 400, 405, 408, 410, 413, 419, 420, 421, 422, 423, 426, 428, 431, 434, 435, 436, 455, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483], "wrong": [5, 33, 42, 73, 84, 85, 95, 100, 103, 106, 110, 120, 144, 176, 183, 193, 212, 213, 248, 275, 292, 293, 295, 335, 340, 347, 352, 358, 366, 388, 389, 395, 428, 441, 449, 463, 465, 466, 467, 468, 472, 474, 475, 477, 483], "wrong_document_err": 410, "wrongdocumenterr": 410, "wrote": [85, 95, 338, 426, 462, 464, 466, 477, 483], "ws": [344, 394, 419], "ws_col": 361, "ws_comma": 112, "ws_row": 361, "wsa": 483, "wsaconnect": 483, "wsaeinval": 483, "wsaioctl": [337, 468], "wsasend": 483, "wsasendto": 483, "wsgi": [68, 254, 256, 467, 473, 475, 483], "wsgi_app": 467, "wsgi_file_wrapp": 407, "wsgi_multiprocess": 407, "wsgi_multithread": 407, "wsgi_run_onc": 407, "wsgiapplic": 407, "wsgienviron": 407, "wsgiref": [68, 254, 256, 473, 475, 479, 481, 483], "wsgirequesthandl": [407, 483], "wsgiserv": [407, 483], "wshowwindow": 348, "wsign": 72, "wsj": 166, "wsl": [461, 483], "wsock": [126, 133, 136], "wss": [243, 394, 483], "wstop": 293, "wstopsig": 293, "wstr": [64, 472, 474], "wstr_length": 474, "wstrict": 483, "wstring_at": [142, 176], "wt": [149, 225, 234, 270, 343], "wtermsig": 293, "wu": [478, 483], "wulian233": 483, "wundram": 476, "wuntrac": 293, "www": [75, 79, 95, 103, 107, 109, 110, 151, 158, 162, 166, 169, 183, 184, 200, 235, 240, 242, 243, 261, 314, 318, 319, 340, 341, 344, 352, 387, 394, 395, 396, 403, 411, 413, 424, 426, 435, 445, 454, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 475, 476, 478, 480, 483], "www2": [464, 465], "wx": 483, "wxi": 466, "wxpython": 459, "wxpythonwindow": 86, "wzero": 483, "x00": [176, 235, 258, 259, 284, 319, 337, 344, 347, 398, 483], "x00lo": 176, "x00o": 235, "x01": [146, 258, 259, 284, 337, 347, 398], "x02": [247, 259, 284, 337, 347, 398], "x03": [235, 284, 337, 344, 347, 398], "x04": [344, 398, 464], "x05": 398, "x06": [235, 398], "x07": [247, 284, 398], "x08": [106, 347, 398], "x08ar": 262, "x08c": 247, "x08class": 106, "x0b": [143, 344, 398], "x0c": [235, 344, 398], "x0e": 398, "x0f": 398, "x0fk": 235, "x1": [430, 441, 472, 474, 483], "x10": [344, 464], "x11": [106, 369, 376, 395, 403, 483], "x12": [347, 398], "x123456": 462, "x13": 347, "x14": 347, "x15": [235, 347], "x17d": 326, "x1a": 483, "x1b": 483, "x1c": [344, 483], "x1d": [344, 483], "x1e": [235, 344, 483], "x2": [225, 430, 441, 472, 474, 483], "x3": 430, "x32": 347, "x34": 398, "x3e": [238, 240], "x4": 430, "x500": 398, "x509": [341, 395], "x509_asn": 341, "x509_ca": 341, "x509_v_flag_allow_proxy_cert": 483, "x509_v_flag_partial_chain": 483, "x509_v_flag_trusted_first": 483, "x509_verify_param_set1_host": 483, "x509_verify_param_set1_ip": 483, "x509v3": [341, 477], "x56": [398, 462], "x64": [110, 468], "x78": 398, "x7899": 475, "x7b": 483, "x7d": 483, "x7f": 319, "x80": [109, 300, 464], "x80abc": 109, "x80abcd": 109, "x84": [235, 468], "x85": [344, 483], "x86": [107, 176, 300, 347, 456, 461, 468, 473, 480, 483], "x86_64": [72, 96, 355, 456, 478, 481, 483], "x87": 468, "x87_double_round": 469, "x89": 468, "x8b": 326, "x93": 235, "x94": [109, 235], "x95": 235, "x9c": 464, "x_i": 343, "x_ok": [293, 332, 483], "x_root": 369, "xa": 352, "xa5u": 235, "xa6": 235, "xa8": 259, "xac": 109, "xae": 326, "xaf": [235, 468], "xarr": 343, "xatom": 248, "xattr": [362, 483], "xattr_creat": 293, "xattr_replac": 293, "xattr_size_max": 293, "xavier": [472, 477, 479, 480, 483], "xb": [149, 234, 270], "xb4": 109, "xb6": 326, "xb9": 146, "xbar": [343, 483], "xbb": 102, "xbcn": 235, "xbcrdigkeiten": 475, "xbf": 102, "xbm": [206, 249, 369, 375], "xbox": 483, "xc": [85, 352], "xc0": [259, 464], "xc1": 464, "xc3": 475, "xc5": 235, "xc9": 464, "xc_": 369, "xc_hand2": 369, "xcode": 483, "xcor": 384, "xd4": 326, "xdd": 235, "xde": 109, "xdf": [158, 235, 304], "xdg": [476, 483], "xdr": [68, 121, 254, 299, 350], "xdrlib": [68, 121, 254, 350, 473, 474, 483], "xdummi": 384, "xe0": 282, "xe2": [326, 468], "xe3": [326, 468], "xe4": 109, "xe4n": 266, "xe4ssig": 304, "xe8": 344, "xea": 109, "xebp1": 326, "xebr": 326, "xef": [102, 146, 394], "xefxbbxbf": 435, "xenial": 480, "xenix": 212, "xeon": 483, "xf": [292, 440], "xf0": 344, "xf1": 344, "xf2": 344, "xf6stal": 202, "xf7": 235, "xfc": 344, "xfd": 235, "xfe": 235, "xff": [344, 347, 476], "xfs": [215, 293], "xgettext": [230, 483], "xgtitl": [482, 483], "xhdr": 288, "xhh": 483, "xhtm": 395, "xhtml": [68, 110, 238, 239, 254, 273, 314, 395, 410, 411, 413, 475], "xhtml1": [110, 395], "xhtml_namespac": 410, "xi": 413, "xiang": [479, 480, 481, 483], "xiao": [480, 483], "xicluna": [469, 475], "xid_continu": 435, "xid_start": 435, "xin": [472, 483], "xinclud": [68, 273, 483], "xinhang": 483, "xkcd": 326, "xlat": 85, "xlc": 483, "xlib": 369, "xlinker": 72, "xlinux": 465, "xlist": 328, "xml": [14, 68, 80, 95, 106, 109, 158, 225, 254, 256, 258, 273, 304, 327, 395, 418, 451, 452, 461, 463, 464, 465, 466, 467, 468, 469, 473, 475, 483, 484], "xml11": [314, 411, 413], "xml_cquant_non": 314, "xml_cquant_opt": 314, "xml_cquant_plus": 314, "xml_cquant_rep": 314, "xml_ctype_ani": 314, "xml_ctype_choic": 314, "xml_ctype_empti": 314, "xml_ctype_mix": 314, "xml_ctype_nam": 314, "xml_ctype_seq": 314, "xml_data": 413, "xml_declar": [413, 469, 483], "xml_error_": 314, "xml_error_abort": 314, "xml_error_amplification_limit_breach": 314, "xml_error_async_ent": 314, "xml_error_attribute_external_entity_ref": 314, "xml_error_bad_char_ref": 314, "xml_error_binary_entity_ref": 314, "xml_error_cant_change_feature_once_pars": 314, "xml_error_duplicate_attribut": 314, "xml_error_entity_declared_in_p": 314, "xml_error_external_entity_handl": 314, "xml_error_feature_requires_xml_dtd": 314, "xml_error_finish": 314, "xml_error_incomplete_p": 314, "xml_error_incorrect_encod": 314, "xml_error_invalid_argu": 314, "xml_error_invalid_token": 314, "xml_error_junk_after_doc_el": 314, "xml_error_misplaced_xml_pi": 314, "xml_error_no_buff": 314, "xml_error_no_el": 314, "xml_error_no_memori": 314, "xml_error_not_standalon": 314, "xml_error_not_suspend": 314, "xml_error_param_entity_ref": 314, "xml_error_partial_char": 314, "xml_error_publicid": 314, "xml_error_recursive_entity_ref": 314, "xml_error_reserved_namespace_uri": 314, "xml_error_reserved_prefix_xml": 314, "xml_error_reserved_prefix_xmln": 314, "xml_error_suspend": 314, "xml_error_suspend_p": 314, "xml_error_syntax": 314, "xml_error_tag_mismatch": 314, "xml_error_text_decl": 314, "xml_error_unbound_prefix": 314, "xml_error_unclosed_cdata_sect": 314, "xml_error_unclosed_token": 314, "xml_error_undeclaring_prefix": 314, "xml_error_undefined_ent": 314, "xml_error_unexpected_st": 314, "xml_error_unknown_encod": 314, "xml_error_xml_decl": 314, "xml_namespac": 410, "xml_ns": 462, "xml_param_entity_parsing_alway": 314, "xml_param_entity_parsing_nev": 314, "xml_param_entity_parsing_unless_standalon": 314, "xml_poor_entropi": 483, "xml_sethashsalt": 483, "xml_text": 413, "xmlcharrefreplac": [109, 158, 225, 258, 344, 465, 483], "xmlcharrefreplace_error": 158, "xmldeclhandl": 314, "xmlfilterbas": 417, "xmlgener": 417, "xmlhttprequest": 257, "xmlid": 413, "xmllib": 462, "xmlns": [314, 395, 413, 469, 483], "xmlns_namespac": 410, "xmlpars": 462, "xmlparser": [68, 273, 469, 477, 481, 483], "xmlparsertyp": 314, "xmlproc": 462, "xmlpullpars": [68, 273, 477, 483], "xmlreader": [68, 254, 273, 412, 414, 415, 417, 478], "xmlrole": 462, "xmlrpc": [68, 254, 256, 283, 299, 409, 426, 451, 464, 470, 477, 483], "xmlrpclib": [283, 464, 465, 466, 467, 468, 469, 470, 483], "xmltestdata": 426, "xmltok": 462, "xmpeg": 272, "xn": [158, 341, 465, 480], "xnn": 109, "xof": [482, 483], "xoff": 178, "xon": 178, "xoption": [34, 59, 455, 473, 483], "xor": [186, 211, 291, 344, 430], "xor_expr": 430, "xover": 288, "xp": [101, 269, 465, 478], "xpath": [68, 273, 409, 482, 483], "xpm": 375, "xpointer": 413, "xpot": 230, "xpystat": 483, "xpython": 461, "xr": [89, 223, 332, 475], "xrang": [112, 463, 464, 465, 466, 470], "xrbl82xr": 395, "xreadlin": [112, 463, 465, 466], "xref": 288, "xs": 108, "xscrollcommand": 376, "xsl": 464, "xt": [81, 149, 234, 270], "xtaddinput": 81, "xterm": [92, 177, 483], "xu": [482, 483], "xuehai": 483, "xvec": 440, "xview": 376, "xx": [77, 120, 245, 293, 319, 330, 394, 461, 483], "xxhash": 483, "xxlimit": [100, 483], "xxmodul": 73, "xxx": [63, 101, 102, 120, 352, 432, 456, 468, 469, 471, 476, 477, 483], "xxxmodul": 476, "xxxx": [158, 293, 435, 483], "xxxxxxxx": [158, 293, 435], "xxxxxxxxxxxx": 293, "xy": [77, 261, 334, 355, 386], "xy_coordin": 481, "xyo": 103, "xyz": [85, 120, 267, 268, 344, 388, 475, 483], "xyzyx": 120, "xyzz": 120, "xz": [93, 270, 332, 358, 386, 475, 476, 478, 483], "xzf": 460, "xztar": [332, 478, 483], "y1": [150, 430, 441, 472, 474, 483], "y2": [150, 225, 441, 472, 474, 483], "y2038": 483, "y2k38": 483, "y_n": 483, "y_root": 369, "yaari": [478, 483], "yahoo": [80, 184, 467, 468], "yair": 483, "yakov": 462, "yamamoto": [469, 476, 480, 483], "yaml": [101, 120, 251, 262, 268, 469, 472, 475], "yan": [472, 483], "yang": 483, "yann": [478, 479, 483], "yapaxi": 176, "yaroslav": [472, 483], "yarr": 343, "yash": [481, 483], "yasskin": [468, 469, 475], "yay": [139, 449], "yc": 85, "ycor": 384, "yday": 183, "ydummi": 384, "ye": [441, 473, 483], "year": [20, 85, 93, 106, 150, 183, 193, 262, 340, 343, 366, 386, 413, 422, 435, 446, 461, 463, 465, 467, 468, 469, 470, 471, 473, 474, 475, 476, 481, 482, 483], "yeardatescalendar": 150, "yeardays2calendar": 150, "yeardayscalendar": 150, "yee": [462, 463, 464, 467], "yello": 85, "yellow": [68, 92, 94, 147, 160, 177, 254, 350, 384, 452, 466, 474], "yen": [480, 483], "yeo": 483, "yeojin": 483, "yes": [7, 73, 79, 85, 98, 167, 186, 193, 266, 267, 314, 319, 341, 369, 373, 405, 407, 411, 413, 441, 446, 449, 456, 461, 464, 475], "yes_vot": 446, "yesexpr": 266, "yesno": 373, "yesnocancel": 373, "yesterday": 483, "yet": [5, 13, 23, 28, 31, 33, 34, 45, 63, 64, 73, 79, 84, 85, 92, 94, 100, 101, 106, 133, 137, 139, 151, 169, 176, 177, 186, 196, 197, 205, 213, 232, 250, 268, 283, 293, 295, 297, 308, 334, 335, 341, 344, 348, 365, 381, 386, 410, 413, 429, 431, 436, 462, 464, 465, 467, 469, 474, 477, 479, 480, 482, 483], "yet_another_extens": 167, "yi": 109, "yield": [9, 36, 64, 68, 75, 85, 87, 95, 116, 122, 133, 138, 139, 149, 151, 160, 167, 169, 183, 190, 191, 197, 207, 225, 226, 232, 235, 242, 250, 253, 255, 258, 261, 262, 271, 283, 293, 296, 299, 302, 319, 331, 344, 347, 353, 358, 362, 378, 381, 386, 389, 390, 394, 407, 410, 413, 419, 427, 428, 429, 431, 433, 435, 440, 464, 465, 467, 468, 469, 472, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "yield_atom": 430, "yield_expr": 431, "yield_express": [430, 435, 436], "yield_from": [430, 473, 483], "yield_stmt": [431, 436], "yield_valu": [191, 483], "yieldfrom": 122, "yieldtyp": 386, "yilei": 483, "ying": 483, "yinyang": 384, "yiq": [162, 477], "yiq_to_rgb": 162, "ym": 430, "yogesh": 477, "yolanda": 483, "yonatan": 483, "yongzhi": 483, "yoni": 483, "york": 183, "you": [1, 5, 13, 22, 23, 25, 26, 31, 33, 34, 39, 41, 42, 43, 45, 56, 58, 59, 60, 63, 64, 66, 67, 68, 72, 73, 75, 76, 77, 79, 87, 89, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 105, 106, 109, 110, 112, 114, 115, 117, 120, 133, 140, 141, 146, 149, 151, 152, 153, 155, 158, 159, 160, 161, 167, 169, 170, 173, 176, 177, 178, 179, 180, 181, 183, 184, 186, 187, 190, 192, 193, 195, 196, 200, 201, 202, 205, 206, 207, 208, 213, 214, 215, 218, 221, 225, 226, 230, 234, 235, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 255, 258, 259, 262, 265, 266, 267, 268, 269, 270, 271, 272, 278, 283, 288, 292, 293, 295, 297, 299, 305, 307, 308, 313, 314, 319, 320, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 352, 355, 358, 359, 362, 364, 365, 369, 371, 375, 376, 380, 381, 382, 384, 385, 386, 388, 389, 394, 395, 399, 400, 402, 403, 405, 407, 408, 410, 411, 412, 413, 414, 415, 417, 419, 420, 421, 422, 425, 426, 427, 428, 430, 431, 432, 434, 436, 441, 442, 443, 455, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "your": [5, 22, 33, 59, 63, 68, 72, 73, 75, 76, 77, 79, 84, 85, 89, 92, 94, 95, 96, 100, 101, 103, 106, 109, 110, 112, 118, 120, 133, 141, 152, 159, 167, 177, 181, 183, 191, 193, 196, 200, 201, 202, 205, 207, 213, 222, 226, 234, 235, 242, 243, 244, 245, 246, 247, 250, 255, 262, 266, 267, 268, 269, 271, 278, 283, 293, 296, 297, 299, 305, 308, 313, 319, 320, 328, 329, 331, 332, 333, 334, 335, 337, 338, 340, 341, 342, 344, 347, 348, 354, 359, 361, 362, 364, 365, 366, 369, 371, 375, 382, 384, 386, 388, 394, 395, 400, 410, 411, 413, 415, 420, 421, 422, 425, 426, 434, 436, 441, 442, 449, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 483, 484], "your_computed_bia": 308, "your_dict": 193, "your_integer_time_func": 308, "your_time_func": 308, "yourhostnam": 151, "yournam": 86, "yourscript": 292, "yourself": [5, 33, 43, 72, 85, 92, 94, 106, 109, 155, 177, 179, 193, 201, 250, 262, 266, 268, 269, 292, 297, 328, 335, 341, 352, 388, 410, 461, 467, 470, 475], "yourtransform": 122, "youtub": [109, 261], "yp": 233, "ypythonpath": 34, "yscrollcommand": 376, "ysj": [477, 483], "ython": 479, "yu": 483, "yuan": 483, "yuck": [96, 450], "yum": 98, "yumm": 200, "yunwon": 483, "yuor": 319, "yup": 386, "yurchak": 483, "yuri": [472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483], "yurii": [472, 473, 482, 483], "yvec": 440, "yves": [466, 473], "yview": 376, "yvind": 476, "ywjj": 476, "yxo": 103, "yy": 120, "yyy": [120, 432], "yyyi": [183, 248], "yyyyyi": 183, "yyyyyyyan": 483, "z0": [106, 109, 173, 319, 345, 435], "z123fg": 344, "z1spam": 344, "z9t": 235, "z_": [319, 435], "z_0": 319, "z_best_compress": 424, "z_best_spe": 424, "z_block": 424, "z_default_compress": 424, "z_default_strategi": 424, "z_filter": 424, "z_finish": 424, "z_fix": 424, "z_full_flush": 424, "z_huffman_on": 424, "z_no_compress": 424, "z_no_flush": 424, "z_partial_flush": 424, "z_rle": 424, "z_sync_flush": 424, "za": [106, 109, 173, 319, 344, 435, 464], "zab": 102, "zabka": 483, "zac": [473, 483], "zach": [477, 483], "zachari": [469, 477, 478, 480, 483], "zack": 477, "zackeri": [472, 473, 481, 482, 483], "zadka": [462, 463, 464, 466], "zakharenko": 483, "zaki": 483, "zane": 483, "zbcefg": 344, "zbigniew": [476, 483], "zbyszek": 483, "zc": 167, "zcat": 102, "zd": [9, 483], "zdict": [424, 483], "zebra": [102, 160, 299], "zeitouni": 483, "zeke": 108, "zekun": 480, "zen": [87, 114], "zephyr": 102, "zero": [5, 7, 18, 23, 25, 26, 28, 31, 33, 34, 35, 36, 39, 42, 45, 49, 58, 59, 61, 63, 64, 66, 68, 73, 75, 76, 84, 85, 87, 94, 99, 100, 101, 102, 106, 109, 120, 133, 139, 141, 146, 155, 158, 160, 176, 177, 181, 183, 186, 190, 191, 193, 196, 209, 213, 225, 226, 234, 235, 242, 248, 250, 258, 259, 261, 269, 271, 275, 278, 283, 288, 292, 293, 297, 299, 305, 314, 319, 320, 328, 332, 333, 335, 337, 340, 341, 342, 344, 345, 347, 348, 352, 358, 361, 364, 365, 366, 376, 384, 388, 397, 405, 410, 413, 422, 428, 429, 430, 431, 434, 435, 436, 441, 443, 448, 455, 462, 465, 466, 467, 468, 469, 470, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "zero_all_var": 386, "zeroblob": 340, "zerocopybytearray": 299, "zerodict": 467, "zerodivisionerror": [23, 92, 102, 183, 186, 213, 221, 283, 297, 333, 429, 430, 436, 443, 450, 451, 465, 471, 473, 475, 478, 482, 483], "zeromq": 68, "zeromqsockethandl": [102, 483], "zeromqsocketlisten": [102, 483], "zesti": 102, "zevenhoven": 479, "zf": 422, "zfill": [344, 446, 465], "zfs": 483, "zgf0ysb0bybizsblbmnvzgvk": 143, "zh": 1, "zhang": [474, 479, 480, 481, 483], "zhao": 483, "zhime": 480, "zhu": 483, "zi": 64, "ziad": [468, 469, 475, 478, 483], "ziegler": 469, "ziga": 469, "zijlstra": [472, 473, 474, 479, 480, 483], "zimport": 472, "zinfo": 483, "zinfo_or_arcnam": 422, "zinfo_or_directori": 422, "zio": 473, "zip": [68, 85, 87, 95, 102, 112, 114, 119, 146, 158, 160, 166, 192, 225, 250, 251, 252, 253, 254, 261, 275, 280, 327, 332, 340, 344, 345, 354, 358, 362, 409, 432, 440, 442, 450, 452, 453, 461, 462, 466, 467, 468, 469, 470, 471, 472, 473, 475, 478, 479, 480, 483, 484], "zip64": [422, 467, 483], "zip_basenam": 362, "zip_bzip2": 422, "zip_defl": [422, 452], "zip_dir": 362, "zip_longest": [225, 261, 470, 483], "zip_lzma": 422, "zip_mod": 483, "zip_stor": [422, 483], "zipapp": [68, 114, 156, 192, 254, 483], "zipbomb": 483, "zipextfil": [422, 475, 483], "zipfil": [68, 119, 156, 254, 324, 327, 332, 358, 400, 421, 432, 451, 452, 455, 462, 467, 468, 469, 471, 483], "zipimport": [68, 176, 252, 254, 280, 302, 432, 465, 467, 471, 483], "zipimporter2": 483, "zipimporterror": 423, "zipinfo": [68, 119, 468, 479, 483], "zipp": [422, 483], "zlib": [33, 68, 84, 106, 119, 158, 234, 235, 254, 332, 362, 422, 451, 464, 465, 467, 472, 473, 482, 483], "zlib_cflag": 483, "zlib_codec": 158, "zlib_lib": 483, "zlib_runtime_vers": [424, 476, 483], "zlib_vers": 424, "zmiev": 474, "zmod": 462, "zmq": 102, "zo": 108, "zodb": 464, "zombi": [247, 283, 338, 362, 467, 476, 483], "zone": [20, 183, 209, 259, 337, 366, 425, 426, 456, 465, 467, 469, 482, 483], "zoneh": 106, "zoneinfo": [68, 182, 183, 254, 366, 456, 483], "zoneinfonotfounderror": 425, "zonem": 106, "zonen": 106, "zongker": 483, "zoo": [384, 427], "zooko": [235, 426], "zoom": [247, 483], "zoot": 344, "zope": [80, 426, 463, 464, 475], "zope9": 475, "zope9inst": 475, "zope9instal": 475, "zorin": 474, "zs": 344, "zscore": [343, 483], "zsh": 399, "zsolt": [469, 483], "zu": [9, 483], "zvi": 483, "zwerschk": 483, "zwieten": 483, "zyz": 344, "zzdummi": [247, 483], "zzif": 102, "zzz": [137, 432]}, "titles": ["\u95dc\u65bc\u9019\u4e9b\u8aaa\u660e\u6587\u4ef6", "\u8655\u7406\u932f\u8aa4 (Bug)", "\u62bd\u8c61\u7269\u4ef6\u5c64 (Abstract Objects Layer)", "\u5728 heap \u4e0a\u5206\u914d\u7269\u4ef6", "API \u548c ABI \u7248\u672c\u7ba1\u7406", "\u5256\u6790\u5f15\u6578\u8207\u5efa\u7f6e\u6578\u503c", "Boolean\uff08\u5e03\u6797\uff09\u7269\u4ef6", "\u7de9\u885d\u5354\u5b9a (Buffer Protocol)", "\u4f4d\u5143\u7d44\u9663\u5217\u7269\u4ef6 (Byte Array Objects)", "\u4f4d\u5143\u7d44\u7269\u4ef6 (Bytes Objects)", "\u547c\u53eb\u5354\u5b9a (Call Protocol)", "Capsules", "Cell \u7269\u4ef6", "\u7a0b\u5f0f\u78bc\u7269\u4ef6", "\u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u652f\u63f4\u51fd\u5f0f", "\u8907\u6578\u7269\u4ef6", "\u5177\u9ad4\u7269\u4ef6\u5c64", "\u60c5\u5883\u8b8a\u6578\u7269\u4ef6", "\u5b57\u4e32\u8f49\u63db\u8207\u683c\u5f0f\u5316", "Coroutine\uff08\u5354\u7a0b\uff09\u7269\u4ef6", "DateTime \u7269\u4ef6", "Descriptor\uff08\u63cf\u8ff0\u5668\uff09\u7269\u4ef6", "\u5b57\u5178\u7269\u4ef6", "\u4f8b\u5916\u8655\u7406", "\u6a94\u6848\u7269\u4ef6 (File Objects)", "\u6d6e\u9ede\u6578\uff08Floating Point\uff09\u7269\u4ef6", "Frame \u7269\u4ef6", "\u51fd\u5f0f\u7269\u4ef6 (Function Objects)", "\u5faa\u74b0\u5783\u573e\u56de\u6536\u7684\u652f\u63f4", "\u7522\u751f\u5668 (Generator) \u7269\u4ef6", "PyHash API", "\u5f15\u5165\u6a21\u7d44", "Python/C API \u53c3\u8003\u624b\u518a", "Initialization, Finalization, and Threads", "Python \u521d\u59cb\u5316\u8a2d\u5b9a", "\u7c21\u4ecb", "\u758a\u4ee3\u5668\u5354\u8b70", "\u758a\u4ee3\u5668\uff08Iterator\uff09\u7269\u4ef6", "List\uff08\u4e32\u5217\uff09\u7269\u4ef6", "\u6574\u6578\u7269\u4ef6", "\u5c0d\u6620\u5354\u5b9a", "\u8cc7\u6599 marshal \u7684\u652f\u63f4", "\u8a18\u61b6\u9ad4\u7ba1\u7406", "MemoryView \u7269\u4ef6", "\u5be6\u4f8b\u65b9\u6cd5\u7269\u4ef6 (Instance Method Objects)", "\u6a21\u7d44\u7269\u4ef6\u6a21\u7d44", "None \u7269\u4ef6", "\u6578\u5b57\u5354\u5b9a", "\u820a\u5f0f\u7de9\u885d\u5354\u5b9a (Buffer Protocol)", "\u7269\u4ef6\u5354\u5b9a", "Object Implementation Support", "Support for Perf Maps", "\u53c3\u7167\u8a08\u6578", "Reflection", "\u5e8f\u5217\u5354\u5b9a", "\u96c6\u5408\u7269\u4ef6", "\u5207\u7247\u7269\u4ef6", "C API \u7a69\u5b9a\u6027", "\u901a\u7528\u7269\u4ef6\u7d50\u69cb", "\u4f5c\u696d\u7cfb\u7d71\u5de5\u5177", "Tuple\uff08\u5143\u7d44\uff09\u7269\u4ef6", "\u578b\u5225\u7269\u4ef6", "\u578b\u5225\u63d0\u793a\u7269\u4ef6", "\u578b\u5225\u7269\u4ef6", "Unicode \u7269\u4ef6\u8207\u7de8\u89e3\u78bc\u5668", "\u5de5\u5177", "The Very High Level Layer", "\u5f31\u53c3\u7167\u7269\u4ef6", "Python \u8aaa\u660e\u6587\u4ef6\u5167\u5bb9", "\u7248\u6b0a\u5ba3\u544a", "\u767c\u5e03 Python \u6a21\u7d44", "4. \u5efa\u7acb C \u8207 C++ \u64f4\u5145\u5957\u4ef6", "1. \u5728\u5176\u5b83 App \u5167\u5d4c\u5165 Python", "1. \u4ee5 C \u6216 C++ \u64f4\u5145 Python", "\u64f4\u5145\u548c\u5d4c\u5165 Python \u76f4\u8b6f\u5668", "3. Defining Extension Types: Assorted Topics", "2. Defining Extension Types: Tutorial", "5. \u5efa\u7f6e Windows \u4e0a\u7684 C \u548c C++ \u64f4\u5145", "\u8a2d\u8a08\u548c\u6b77\u53f2\u5e38\u898b\u554f\u7b54\u96c6", "\u64f4\u5145/\u5d4c\u5165\u5e38\u898b\u554f\u984c\u96c6", "\u4e00\u822c\u7684 Python \u5e38\u898b\u554f\u7b54\u96c6", "\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762\u5e38\u898b\u554f\u7b54\u96c6", "Python \u5e38\u898b\u554f\u984c", "\u300c\u70ba\u4ec0\u9ebc Python \u88ab\u5b89\u88dd\u5728\u6211\u7684\u6a5f\u5668\u4e0a\uff1f\u300d\u5e38\u898b\u554f\u7b54\u96c6", "\u51fd\u5f0f\u5eab\u548c\u64f4\u5145\u529f\u80fd\u7684\u5e38\u898b\u554f\u984c", "\u7a0b\u5f0f\u958b\u767c\u5e38\u898b\u554f\u7b54\u96c6", "\u5728 Windows \u4f7f\u7528 Python \u7684\u5e38\u898b\u554f\u7b54\u96c6", "\u8853\u8a9e\u8868", "\u8a3b\u91cb (annotation) \u6700\u4f73\u5be6\u8e10", "Argparse \u6559\u5b78", "Argument Clinic \u6307\u5357", "\u9077\u79fb\u5ef6\u4f38\u6a21\u7d44\u5230 Python 3", "Curses Programming with Python", "\u63cf\u8ff0\u5668 (Descriptor) \u6307\u5357", "Enum HOWTO", "\u51fd\u5f0f\u7de8\u7a0b HOWTO", "Debugging C API extensions and CPython Internals with GDB", "Python \u5982\u4f55\u9054\u6210\u4efb\u52d9", "\u4f7f\u7528 DTrace \u548c SystemTap \u6aa2\u6e2c CPython", "ipaddress \u6a21\u7d44\u4ecb\u7d39", "\u9694\u96e2\u64f4\u5145\u6a21\u7d44", "\u5982\u4f55\u4f7f\u7528 Logging \u6a21\u7d44", "Logging Cookbook", "The Python 2.3 Method Resolution Order", "Python \u5c0d Linux perf \u5206\u6790\u5668\u7684\u652f\u63f4", "\u5982\u4f55\u5c07 Python 2 \u7684\u7a0b\u5f0f\u78bc\u79fb\u690d\u5230 Python 3", "\u5982\u4f55\u4f7f\u7528\u6b63\u898f\u8868\u9054\u5f0f", "Socket \u7a0b\u5f0f\u8a2d\u8a08\u6307\u5357", "\u6392\u5e8f\u6280\u6cd5", "Unicode HOWTO", "\u5982\u4f55\u4f7f\u7528 urllib \u5957\u4ef6\u53d6\u5f97\u7db2\u8def\u8cc7\u6e90", "\u5b89\u88dd Python \u6a21\u7d44", "2to3 --- \u81ea\u52d5\u5c07 Python 2\u7684\u7a0b\u5f0f\u78bc\u8f49\u6210 Python 3", "__future__ --- Future \u9673\u8ff0\u5f0f\u5b9a\u7fa9", "__main__ --- \u9802\u5c64\u7a0b\u5f0f\u78bc\u74b0\u5883", "_thread --- \u4f4e\u968e\u57f7\u884c\u7dd2 API", "abc --- \u62bd\u8c61\u57fa\u5e95\u985e\u5225", "aifc --- \u8b80\u5beb AIFF \u8207 AIFC \u6a94\u6848", "\u901a\u7528\u4f5c\u696d\u7cfb\u7d71\u670d\u52d9", "\u8cc7\u6599\u58d3\u7e2e\u8207\u4fdd\u5b58", "argparse --- Parser for command-line options, arguments and sub-commands", "array --- \u9ad8\u6548\u7387\u7684\u6578\u503c\u578b\u9663\u5217", "ast --- \u62bd\u8c61\u8a9e\u6cd5\u6a39 (Abstract Syntax Trees)", "asyncio --- \u975e\u540c\u6b65 I/O", "\u9ad8\u968e API \u7d22\u5f15", "\u4f7f\u7528 asyncio \u958b\u767c", "\u4e8b\u4ef6\u8ff4\u5708", "\u4f8b\u5916", "\u64f4\u5145", "Futures", "\u4f4e\u968e API \u7d22\u5f15", "\u5e73\u81fa\u652f\u63f4", "Policies", "\u50b3\u8f38\u8207\u5354\u5b9a", "\u4f47\u5217 (Queues)", "Runners (\u57f7\u884c\u5668)", "\u4e32\u6d41", "\u5b50\u884c\u7a0b", "\u540c\u6b65\u5316\u539f\u59cb\u7269\u4ef6 (Synchronization Primitives)", "\u5354\u7a0b\u8207\u4efb\u52d9", "atexit --- \u9000\u51fa\u8655\u7406\u51fd\u5f0f", "audioop --- \u64cd\u4f5c\u539f\u59cb\u8072\u97f3\u6a94\u6848", "\u7a3d\u6838\u4e8b\u4ef6\u8868", "base64 --- Base16\u3001Base32\u3001Base64\u3001Base85 \u8cc7\u6599\u7de8\u78bc", "bdb --- \u5075\u932f\u5668\u6846\u67b6", "\u4e8c\u9032\u4f4d\u8cc7\u6599\u670d\u52d9", "binascii --- \u5728\u4e8c\u9032\u4f4d\u5236\u548c ASCII \u4e4b\u9593\u8f49\u63db", "bisect --- \u9663\u5217\u4e8c\u5206\u6f14\u7b97\u6cd5 (Array bisection algorithm)", "builtins --- \u5167\u5efa\u7269\u4ef6", "bz2 --- bzip2 \u58d3\u7e2e\u7684\u652f\u63f4", "calendar --- \u65e5\u66c6\u76f8\u95dc\u51fd\u5f0f", "cgi --- \u901a\u7528\u9598\u9053\u5668\u4ecb\u9762\u652f\u63f4", "cgitb --- CGI \u8173\u672c\u7684\u56de\u6eaf (traceback) \u7ba1\u7406\u7a0b\u5f0f", "chunk --- \u8b80\u53d6 IFF \u5206\u584a\u8cc7\u6599", "cmath --- \u8907\u6578\u7684\u6578\u5b78\u51fd\u5f0f", "cmd --- \u4ee5\u5217\u70ba\u5c0e\u5411\u7684\u6307\u4ee4\u76f4\u8b6f\u5668\u652f\u63f4", "\u6a21\u7d44\u547d\u4ee4\u5217\u4ecb\u9762", "code --- \u76f4\u8b6f\u5668\u57fa\u5e95\u985e\u5225", "codecs --- \u7de8\u89e3\u78bc\u5668\u8a3b\u518a\u8868\u548c\u57fa\u5e95\u985e\u5225", "codeop --- \u7de8\u8b6f Python \u7a0b\u5f0f\u78bc", "collections --- \u5bb9\u5668\u8cc7\u6599\u578b\u614b", "collections.abc --- \u5bb9\u5668\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "colorsys --- \u984f\u8272\u7cfb\u7d71\u9593\u7684\u8f49\u63db", "compileall --- \u4f4d\u5143\u7d44\u7de8\u8b6f Python \u51fd\u5f0f\u5eab", "\u4e26\u884c\u57f7\u884c (Concurrent Execution)", "concurrent \u5957\u4ef6", "concurrent.futures --- \u555f\u52d5\u5e73\u884c\u4efb\u52d9", "configparser --- \u8a2d\u5b9a\u6a94\u5256\u6790\u5668", "\u5167\u5efa\u5e38\u6578", "contextlib --- Utilities for with-statement contexts", "contextvars --- \u60c5\u5883\u8b8a\u6578", "copy --- \u6dfa\u5c64 (shallow) \u548c\u6df1\u5c64 (deep) \u8907\u88fd\u64cd\u4f5c", "copyreg --- \u8a3b\u518a pickle \u652f\u63f4\u51fd\u5f0f", "crypt --- \u7528\u65bc\u6aa2\u67e5 Unix \u5bc6\u78bc\u7684\u51fd\u5f0f", "\u52a0\u5bc6\u670d\u52d9", "csv --- CSV \u6a94\u6848\u8b80\u53d6\u53ca\u5beb\u5165", "ctypes --- \u7528\u65bc Python \u7684\u5916\u90e8\u51fd\u5f0f\u5eab", "curses --- \u5b57\u5143\u5132\u5b58\u683c\u986f\u793a\u7684\u7d42\u7aef\u8655\u7406", "curses.ascii --- ASCII \u5b57\u5143\u7684\u5de5\u5177\u7a0b\u5f0f", "curses.panel --- curses \u7684\u9762\u677f\u5806\u758a\u64f4\u5145", "\u81ea\u8a02 Python \u76f4\u8b6f\u5668", "dataclasses --- Data Classes", "\u8cc7\u6599\u578b\u5225", "datetime --- \u65e5\u671f\u8207\u6642\u9593\u7684\u57fa\u672c\u578b\u5225", "dbm --- Unix "databases" \u7684\u4ecb\u9762", "\u9664\u932f\u8207\u6548\u80fd\u5206\u6790", "decimal --- \u5341\u9032\u4f4d\u56fa\u5b9a\u9ede\u548c\u6d6e\u9ede\u904b\u7b97", "\u958b\u767c\u5de5\u5177", "Python \u958b\u767c\u6a21\u5f0f", "Tkinter \u5c0d\u8a71\u6846", "difflib --- \u8a08\u7b97\u5dee\u7570\u7684\u8f14\u52a9\u5de5\u5177", "dis --- Python bytecode \u7684\u53cd\u7d44\u8b6f\u5668", "\u8edf\u9ad4\u5c01\u88dd\u8207\u767c\u5e03", "doctest --- \u6e2c\u8a66\u4e92\u52d5\u5f0f Python \u7bc4\u4f8b", "email --- \u90f5\u4ef6\u548c MIME \u8655\u7406\u5957\u4ef6", "email.charset\uff1a\u8868\u793a\u5b57\u5143\u96c6\u5408", "email.message.Message: Representing an email message using the compat32 API", "email.contentmanager\uff1a\u7ba1\u7406 MIME \u5167\u5bb9", "email.encoders\uff1a\u7de8\u78bc\u5668", "email.errors\uff1a\u4f8b\u5916\u548c\u7f3a\u9677\u985e\u5225", "email\uff1a\u7bc4\u4f8b", "email.generator\uff1a\u7522\u751f MIME \u6587\u4ef6", "email.header\uff1a\u570b\u969b\u5316\u6a19\u982d", "email.headerregistry\uff1a\u81ea\u8a02\u6a19\u982d\u7269\u4ef6", "email.iterators\uff1a\u758a\u4ee3\u5668", "email.message\uff1a\u8868\u793a\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f", "email.mime\uff1a\u5f9e\u982d\u958b\u59cb\u5efa\u7acb\u96fb\u5b50\u90f5\u4ef6\u548c MIME \u7269\u4ef6", "email.parser\uff1a\u5256\u6790\u96fb\u5b50\u90f5\u4ef6\u8a0a\u606f", "email.policy: Policy Objects", "email.utils\uff1a\u96dc\u9805\u5de5\u5177", "ensurepip --- pip \u5b89\u88dd\u5668\u7684\u521d\u59cb\u5efa\u7f6e (bootstrapping)", "enum --- \u5c0d\u5217\u8209\u7684\u652f\u63f4", "errno --- \u6a19\u6e96 errno \u7cfb\u7d71\u7b26\u865f", "\u5167\u5efa\u7684\u4f8b\u5916", "faulthandler --- \u50be\u5370 Python \u56de\u6eaf", "fcntl --- fcntl \u548c ioctl \u7cfb\u7d71\u547c\u53eb", "filecmp --- \u6a94\u6848\u8207\u76ee\u9304\u6bd4\u8f03", "\u6a94\u6848\u683c\u5f0f", "fileinput --- \u9010\u5217\u758a\u4ee3\u591a\u500b\u8f38\u5165\u4e32\u6d41", "\u6a94\u6848\u8207\u76ee\u9304\u5b58\u53d6", "fnmatch --- Unix \u6a94\u6848\u540d\u7a31\u6a21\u5f0f\u6bd4\u5c0d", "fractions --- \u6709\u7406\u6578", "\u7a0b\u5f0f\u6846\u67b6", "ftplib --- FTP \u5354\u5b9a\u7528\u6236\u7aef", "\u51fd\u5f0f\u7de8\u7a0b\u6a21\u7d44", "\u5167\u5efa\u51fd\u5f0f", "functools --- Higher-order functions and operations on callable objects", "gc --- \u5783\u573e\u56de\u6536\u5668\u4ecb\u9762 (Garbage Collector interface)", "getopt --- \u7528\u65bc\u547d\u4ee4\u5217\u9078\u9805\u7684 C \u98a8\u683c\u5256\u6790\u5668", "getpass --- \u53ef\u651c\u5f0f\u5bc6\u78bc\u8f38\u5165\u5de5\u5177", "gettext --- \u591a\u8a9e\u8a00\u570b\u969b\u5316\u670d\u52d9", "glob --- Unix \u98a8\u683c\u7684\u8def\u5f91\u540d\u7a31\u6a21\u5f0f\u64f4\u5c55", "graphlib \u2014-- \u4f7f\u7528\u985e\u5716 (graph-like) \u7d50\u69cb\u9032\u884c\u64cd\u4f5c\u7684\u529f\u80fd", "grp --- \u7fa4\u7d44\u8cc7\u6599\u5eab", "gzip --- gzip \u6a94\u6848\u7684\u652f\u63f4", "hashlib --- \u5b89\u5168\u96dc\u6e4a\u8207\u8a0a\u606f\u6458\u8981", "heapq --- \u5806\u7a4d\u4f47\u5217 (heap queue) \u6f14\u7b97\u6cd5", "hmac --- \u57fa\u65bc\u91d1\u9470\u96dc\u6e4a\u7684\u8a0a\u606f\u9a57\u8b49", "html --- \u8d85\u9023\u7d50\u6a19\u8a18\u8a9e\u8a00 (HTML) \u652f\u63f4", "html.entities --- HTML \u4e00\u822c\u5be6\u9ad4\u7684\u5b9a\u7fa9", "html.parser --- \u7c21\u55ae\u7684 HTML \u548c XHTML \u5256\u6790\u5668", "http --- HTTP \u6a21\u7d44", "http.client --- HTTP \u5354\u5b9a\u7528\u6236\u7aef", "http.cookiejar --- HTTP \u5ba2\u6236\u7aef\u7684 Cookie \u8655\u7406", "http.cookies --- HTTP \u72c0\u614b\u7ba1\u7406", "http.server \u2014 HTTP \u4f3a\u670d\u5668", "\u570b\u969b\u5316", "IDLE", "imaplib --- IMAP4 \u5354\u5b9a\u5ba2\u6236\u7aef", "imghdr --- \u63a8\u6e2c\u5716\u7247\u7a2e\u985e", "importlib --- import \u7684\u5be6\u4f5c", "importlib.metadata -- \u5b58\u53d6\u5957\u4ef6\u7684\u5143\u8cc7\u6599", "importlib.resources -- Package resource reading, opening and access", "importlib.resources.abc -- \u8cc7\u6e90\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "Python \u6a19\u6e96\u51fd\u5f0f\u5eab (Standard Library)", "inspect --- \u6aa2\u8996\u6d3b\u52d5\u7269\u4ef6", "\u7db2\u8def\u5354\u5b9a (Internet protocols) \u53ca\u652f\u63f4", "\u7c21\u4ecb", "io \u2014 \u8655\u7406\u8cc7\u6599\u4e32\u6d41\u7684\u6838\u5fc3\u5de5\u5177", "ipaddress --- IPv4/IPv6 \u64cd\u4f5c\u51fd\u5f0f\u5eab", "Networking and Interprocess Communication", "itertools --- \u5efa\u7acb\u7522\u751f\u9ad8\u6548\u7387\u8ff4\u5708\u4e4b\u758a\u4ee3\u5668\u7684\u51fd\u5f0f", "json --- JSON \u7de8\u78bc\u5668\u8207\u89e3\u78bc\u5668", "keyword --- \u6aa2\u9a57 Python \u95dc\u9375\u5b57", "Python \u8a9e\u8a00\u670d\u52d9", "linecache --- \u96a8\u6a5f\u5b58\u53d6\u6587\u5b57\u5217", "locale --- \u570b\u969b\u5316\u670d\u52d9", "logging --- Python \u7684\u65e5\u8a8c\u8a18\u9304\u5de5\u5177", "logging.config --- \u65e5\u8a8c\u8a18\u9304\u914d\u7f6e", "logging.handlers --- \u65e5\u8a8c\u7d00\u9304\u8655\u7406\u5668", "lzma --- \u4f7f\u7528 LZMA \u6f14\u7b97\u6cd5\u9032\u884c\u58d3\u7e2e", "mailbox --- \u4ee5\u5404\u7a2e\u683c\u5f0f\u64cd\u4f5c\u90f5\u4ef6\u4fe1\u7bb1", "mailcap --- Mailcap \u6a94\u6848\u8655\u7406", "Structured Markup Processing Tools", "marshal --- \u5185\u90e8 Python \u7269\u4ef6\u5e8f\u5217\u5316", "math --- \u6578\u5b78\u51fd\u5f0f", "mimetypes --- \u5c07\u6a94\u6848\u540d\u7a31\u5c0d\u6620\u5230 MIME \u985e\u578b", "\u591a\u5a92\u9ad4\u670d\u52d9", "mmap --- \u8a18\u61b6\u9ad4\u6620\u5c04\u6a94\u6848\u7684\u652f\u63f4", "modulefinder --- \u641c\u5c0b\u8173\u672c\u6240\u4f7f\u7528\u7684\u6a21\u7d44", "\u5f15\u5165\u6a21\u7d44", "msilib --- \u8b80\u5beb Microsoft Installer \u6a94\u6848", "msvcrt --- MS VC++ runtime \u63d0\u4f9b\u7684\u6709\u7528\u4f8b\u7a0b", "multiprocessing --- \u4ee5\u884c\u7a0b\u70ba\u57fa\u790e\u7684\u5e73\u884c\u6027", "multiprocessing.shared_memory --- \u5c0d\u65bc\u5171\u4eab\u8a18\u61b6\u9ad4\u7684\u8de8\u884c\u7a0b\u76f4\u63a5\u5b58\u53d6", "\u7db2\u969b\u7db2\u8def\u8cc7\u6599\u8655\u7406", "netrc --- netrc \u6a94\u6848\u8655\u7406", "nis --- Sun NIS (Yellow Pages) \u4ecb\u9762", "nntplib --- NNTP \u5354\u5b9a\u5ba2\u6236\u7aef", "numbers --- \u6578\u503c\u7684\u62bd\u8c61\u57fa\u5e95\u985e\u5225", "\u6578\u503c\u8207\u6578\u5b78\u6a21\u7d44", "operator --- \u6a19\u6e96\u904b\u7b97\u5b50\u66ff\u4ee3\u51fd\u5f0f", "optparse --- \u547d\u4ee4\u5217\u9078\u9805\u5256\u6790\u5668", "os --- \u5404\u7a2e\u4f5c\u696d\u7cfb\u7d71\u4ecb\u9762", "os.path --- \u5e38\u898b\u7684\u8def\u5f91\u540d\u64cd\u4f5c", "ossaudiodev --- \u5c0d OSS \u76f8\u5bb9\u8072\u97f3\u88dd\u7f6e\u7684\u5b58\u53d6", "pathlib --- \u7269\u4ef6\u5c0e\u5411\u6a94\u6848\u7cfb\u7d71\u8def\u5f91", "pdb --- The Python Debugger", "\u8cc7\u6599\u6301\u4e45\u6027 (Data Persistence)", "pickle --- Python \u7269\u4ef6\u5e8f\u5217\u5316", "pickletools --- pickle \u958b\u767c\u8005\u7684\u5de5\u5177", "pipes --- shell pipelines \u4ecb\u9762", "pkgutil --- Package extension utility", "platform --- \u5c0d\u5e95\u5c64\u5e73\u81fa\u8b58\u5225\u8cc7\u6599\u7684\u5b58\u53d6", "plistlib --- \u7522\u751f\u548c\u5256\u6790 Apple .plist \u6a94\u6848", "poplib --- POP3 \u5354\u5b9a\u7528\u6236\u7aef", "posix --- \u6700\u5e38\u898b\u7684 POSIX \u7cfb\u7d71\u547c\u53eb", "pprint --- \u8cc7\u6599\u7f8e\u5316\u5217\u5370\u5668", "Python \u7684\u5206\u6790\u5668", "pty --- \u507d\u7d42\u7aef\u5de5\u5177", "pwd --- \u5bc6\u78bc\u8cc7\u6599\u5eab", "py_compile \u2014 \u7de8\u8b6f Python \u4f86\u6e90\u6a94\u6848", "pyclbr --- Python \u6a21\u7d44\u700f\u89bd\u5668\u652f\u63f4", "pydoc --- \u6587\u4ef6\u7522\u751f\u5668\u8207\u7dda\u4e0a\u5e6b\u52a9\u7cfb\u7d71", "xml.parsers.expat --- \u4f7f\u7528 Expat \u9032\u884c\u5feb\u901f XML \u5256\u6790", "Python Runtime \u670d\u52d9", "queue --- \u540c\u6b65\u4f47\u5217 (synchronized queue) \u985e\u5225", "quopri --- \u7de8\u78bc\u548c\u89e3\u78bc MIME \u53ef\u5217\u5370\u5b57\u5143\u8cc7\u6599", "random --- \u751f\u6210\u507d\u96a8\u6a5f\u6578", "re --- \u6b63\u898f\u8868\u793a\u5f0f (regular expression) \u64cd\u4f5c", "readline --- GNU readline \u4ecb\u9762", "reprlib --- repr() \u7684\u66ff\u4ee3\u5be6\u4f5c", "resource --- \u8cc7\u6e90\u4f7f\u7528\u8cc7\u8a0a", "rlcompleter --- GNU readline \u7684\u88dc\u5168\u51fd\u5f0f", "runpy --- \u5b9a\u4f4d\u4e26\u57f7\u884c Python \u6a21\u7d44", "sched --- \u4e8b\u4ef6\u6392\u7a0b\u5668", "secrets --- \u7522\u751f\u7528\u65bc\u7ba1\u7406\u6a5f\u5bc6\u7684\u5b89\u5168\u4e82\u6578", "\u5b89\u5168\u6027\u6ce8\u610f\u4e8b\u9805", "select --- \u7b49\u5f85 I/O \u5b8c\u6210", "selectors --- \u9ad8\u968e I/O \u591a\u5de5", "shelve --- Python object persistence", "shlex --- \u7c21\u55ae\u7684\u8a9e\u6cd5\u5206\u6790", "shutil \u2014 \u9ad8\u968e\u6a94\u6848\u64cd\u4f5c", "signal --- \u8a2d\u5b9a\u975e\u540c\u6b65\u4e8b\u4ef6\u7684\u8655\u7406\u51fd\u5f0f", "site --- Site-specific configuration hook", "smtplib --- SMTP \u5354\u5b9a\u7528\u6236\u7aef", "sndhdr --- \u5224\u5b9a\u8072\u97f3\u6a94\u6848\u7684\u578b\u5225", "socket --- \u4f4e\u968e\u7db2\u8def\u4ecb\u9762", "socketserver --- \u7528\u65bc\u7db2\u8def\u4f3a\u670d\u5668\u7684\u6846\u67b6", "spwd --- shadow \u5bc6\u78bc\u8cc7\u6599\u5eab", "sqlite3 --- SQLite \u8cc7\u6599\u5eab\u7684 DB-API 2.0 \u4ecb\u9762", "ssl --- socket \u7269\u4ef6\u7684 TLS/SSL \u5305\u88dd\u5668", "stat --- \u76f4\u8b6f stat() \u7684\u7d50\u679c", "statistics --- \u6578\u5b78\u7d71\u8a08\u51fd\u5f0f", "\u5167\u5efa\u578b\u5225", "string --- \u5e38\u898b\u7684\u5b57\u4e32\u64cd\u4f5c", "stringprep --- \u7db2\u969b\u7db2\u8def\u5b57\u4e32\u6e96\u5099", "struct --- \u5c07\u4f4d\u5143\u7d44\u76f4\u8b6f\u70ba\u6253\u5305\u8d77\u4f86\u7684\u4e8c\u9032\u4f4d\u8cc7\u6599", "subprocess --- \u5b50\u884c\u7a0b\u7ba1\u7406", "sunau --- \u8b80\u5beb Sun AU \u6a94\u6848", "\u5df2\u88ab\u53d6\u4ee3\u7684\u6a21\u7d44", "symtable --- \u5b58\u53d6\u7de8\u8b6f\u5668\u7684\u7b26\u865f\u8868", "sys --- \u7cfb\u7d71\u7279\u5b9a\u7684\u53c3\u6578\u8207\u51fd\u5f0f", "sys.monitoring --- Execution event monitoring", "The initialization of the sys.path module search path", "sysconfig --- \u63d0\u4f9b Python \u8a2d\u5b9a\u8cc7\u8a0a\u7684\u5b58\u53d6", "syslog --- Unix syslog \u51fd\u5f0f\u5eab\u4f8b\u7a0b", "tabnanny --- \u5075\u6e2c\u4e0d\u826f\u7e2e\u6392", "tarfile --- \u8b80\u53d6\u8207\u5beb\u5165 tar \u5c01\u5b58\u6a94\u6848", "telnetlib --- Telnet \u5ba2\u6236\u7aef", "tempfile --- \u751f\u6210\u81e8\u6642\u6a94\u6848\u548c\u76ee\u9304", "termios --- POSIX \u98a8\u683c tty \u63a7\u5236", "test --- Python \u7684\u56de\u6b78\u6e2c\u8a66 (regression tests) \u5957\u4ef6", "\u6587\u672c\u8655\u7406 (Text Processing) \u670d\u52d9", "textwrap --- \u6587\u5b57\u5305\u88dd\u8207\u586b\u5145", "threading --- \u57fa\u65bc\u57f7\u884c\u7dd2\u7684\u5e73\u884c\u6027", "time --- Time access and conversions", "timeit --- \u6e2c\u91cf\u5c0f\u91cf\u7a0b\u5f0f\u7247\u6bb5\u7684\u57f7\u884c\u6642\u9593", "\u4ee5 Tk \u6253\u9020\u5716\u5f62\u4f7f\u7528\u8005\u4ecb\u9762 (Graphical User Interfaces)", "tkinter --- Tcl/Tk \u7684 Python \u4ecb\u9762", "tkinter.colorchooser --- \u984f\u8272\u9078\u64c7\u5c0d\u8a71\u6846", "tkinter.dnd --- \u62d6\u653e\u652f\u63f4", "tkinter.font --- Tkinter \u5b57\u578b\u5305\u88dd\u5668", "tkinter.messagebox --- Tkinter \u8a0a\u606f\u63d0\u793a", "tkinter.scrolledtext --- \u6372\u52d5\u6587\u5b57\u5c0f\u5de5\u5177", "tkinter.tix --- Tk \u64f4\u5145\u5c0f\u5de5\u5177", "tkinter.ttk --- Tk \u4e3b\u984c\u5316\u5c0f\u5de5\u5177", "token --- \u8207 Python \u5256\u6790\u6a39\u4e00\u8d77\u4f7f\u7528\u7684\u5e38\u6578", "tokenize --- Tokenizer for Python source", "tomllib --- \u5256\u6790 TOML \u6a94\u6848", "trace --- \u8ffd\u8e64\u6216\u8ffd\u67e5 Python \u9673\u8ff0\u5f0f\u57f7\u884c", "traceback --- \u5217\u5370\u6216\u53d6\u5f97\u5806\u758a\u56de\u6eaf (stack traceback)", "tracemalloc --- \u8ffd\u8e64\u8a18\u61b6\u9ad4\u914d\u7f6e", "tty --- \u7d42\u7aef\u6a5f\u63a7\u5236\u51fd\u5f0f", "turtle --- \u9f9c\u5716\u5b78 (Turtle graphics)", "types --- \u52d5\u614b\u578b\u5225\u5efa\u7acb\u8207\u5167\u5efa\u578b\u5225\u540d\u7a31", "typing --- \u652f\u63f4\u578b\u5225\u63d0\u793a", "unicodedata --- Unicode \u8cc7\u6599\u5eab", "unittest --- \u55ae\u5143\u6e2c\u8a66\u6846\u67b6", "unittest.mock \u2014 mock \u7269\u4ef6\u51fd\u5f0f\u5eab", "unittest.mock --- \u5165\u9580\u6307\u5357", "Unix \u7279\u6709\u670d\u52d9", "urllib --- URL \u8655\u7406\u6a21\u7d44", "urllib.error --- urllib.request \u5f15\u767c\u7684\u4f8b\u5916\u985e\u5225", "urllib.parse --- \u5c07 URL \u5256\u6790\u6210\u5143\u4ef6", "urllib.request --- \u7528\u4f86\u958b\u555f URLs \u7684\u53ef\u64f4\u5145\u51fd\u5f0f\u5eab", "urllib.robotparser --- robots.txt \u7684\u5256\u6790\u5668", "xdrlib --- uuencode \u6a94\u6848\u7684\u7de8\u78bc\u8207\u89e3\u78bc", "uuid --- RFC 4122 \u5b9a\u7fa9\u7684 UUID \u7269\u4ef6", "venv --- \u5efa\u7acb\u865b\u64ec\u74b0\u5883", "warnings --- \u8b66\u544a\u63a7\u5236", "wave --- \u8b80\u5beb WAV \u6a94\u6848", "weakref --- \u5f31\u53c3\u7167", "webbrowser --- \u65b9\u4fbf\u7684\u7db2\u9801\u700f\u89bd\u5668\u63a7\u5236\u5668", "MS Windows \u7279\u6709\u670d\u52d9", "winreg --- Windows \u8a3b\u518a\u8868\u5b58\u53d6", "winsound --- Windows \u7684\u8072\u97f3\u64ad\u653e\u4ecb\u9762", "wsgiref --- WSGI \u5de5\u5177\u8207\u53c3\u8003\u5be6\u4f5c", "xdrlib --- XDR \u8cc7\u6599\u7684\u7de8\u78bc\u8207\u89e3\u78bc", "XML \u8655\u7406\u6a21\u7d44", "xml.dom --- Document \u7269\u4ef6\u6a21\u578b API", "xml.dom.minidom --- \u6700\u5c0f\u7684 DOM \u5be6\u4f5c", "xml.dom.pulldom --- \u652f\u63f4\u5efa\u7f6e\u90e8\u5206 DOM \u6a39", "xml.etree.cElementTree --- ElementTree XML API", "xml.sax --- SAX2 \u5256\u6790\u5668\u652f\u63f4", "xml.sax.handler --- SAX \u8655\u7406\u51fd\u5f0f\u7684\u57fa\u672c\u985e\u5225", "xml.sax.xmlreader --- XML \u5256\u6790\u5668\u7684\u4ecb\u9762", "xml.sax.saxutils --- SAX \u5de5\u5177\u7a0b\u5f0f", "xmlrpc --- XMLRPC \u4f3a\u670d\u5668\u8207\u7528\u6236\u6a21\u7d44", "xmlrpc.client --- XML-RPC \u5ba2\u6236\u7aef\u5b58\u53d6", "xmlrpc.server --- \u57fa\u672c XML-RPC \u4f3a\u670d\u5668", "zipapp \u2014-- \u7ba1\u7406\u53ef\u57f7\u884c\u7684 Python zip \u5c01\u5b58\u6a94\u6848", "zipfile --- \u8655\u7406 ZIP \u5c01\u5b58\u6a94\u6848", "zipimport --- \u5f9e Zip \u5c01\u5b58\u6a94\u6848\u532f\u5165\u6a21\u7d44", "zlib --- \u76f8\u5bb9\u65bc gzip \u7684\u58d3\u7e2e", "zoneinfo --- IANA \u6642\u5340\u652f\u63f4", "\u6cbf\u9769\u8207\u6388\u6b0a", "8. \u8907\u5408\u9673\u8ff0\u5f0f", "3. \u8cc7\u6599\u6a21\u578b", "4. \u57f7\u884c\u6a21\u578b", "6. \u904b\u7b97\u5f0f", "10. \u5b8c\u6574\u7684\u8a9e\u6cd5\u898f\u683c\u66f8", "5. \u6a21\u7d44\u5f15\u5165\u7cfb\u7d71", "Python \u8a9e\u8a00\u53c3\u8003\u624b\u518a", "1. \u7c21\u4ecb", "2. \u8a5e\u6cd5\u5206\u6790", "7. \u7c21\u55ae\u9673\u8ff0\u5f0f", "9. \u6700\u9ad8\u5c64\u7d1a\u5143\u4ef6", "16. \u9644\u9304", "1. \u6dfa\u5617\u6ecb\u5473", "9. Class\uff08\u985e\u5225\uff09", "4. \u6df1\u5165\u4e86\u89e3\u6d41\u7a0b\u63a7\u5236", "5. \u8cc7\u6599\u7d50\u69cb", "8. \u932f\u8aa4\u548c\u4f8b\u5916", "15. \u6d6e\u9ede\u6578\u904b\u7b97\uff1a\u554f\u984c\u8207\u9650\u5236", "Python \u6559\u5b78", "7. \u8f38\u5165\u548c\u8f38\u51fa", "14. \u4e92\u52d5\u5f0f\u8f38\u5165\u7de8\u8f2f\u548c\u6b77\u53f2\u8a18\u9304\u66ff\u63db", "2. \u4f7f\u7528 Python \u76f4\u8b6f\u5668", "3. \u4e00\u500b\u975e\u6b63\u5f0f\u7684 Python \u7c21\u4ecb", "6. \u6a21\u7d44 (Module)", "10. Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd", "11. Python \u6a19\u6e96\u51fd\u5f0f\u5eab\u6982\u89bd\u2014\u2014\u7b2c\u4e8c\u90e8\u4efd", "12. \u865b\u64ec\u74b0\u5883\u8207\u5957\u4ef6", "13. \u73fe\u5728\u53ef\u4ee5\u4f86\u5b78\u7fd2\u4e9b\u4ec0\u9ebc\uff1f", "1. \u547d\u4ee4\u5217\u8207\u74b0\u5883", "3. \u914d\u7f6e Python", "6. \u7de8\u8f2f\u5668\u8207 IDE", "Python \u7684\u8a2d\u7f6e\u8207\u4f7f\u7528", "5. \u5728 Mac \u7cfb\u7d71\u4f7f\u7528 Python", "2. \u5728 Unix \u5e73\u81fa\u4e0a\u4f7f\u7528 Python", "4. \u5728 Windows \u4e0a\u4f7f\u7528 Python", "Python 2.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.5 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 2.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.0 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.1 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.10 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.11 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.12 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.2 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.3 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.4 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.6 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.7 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.8 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Python 3.9 \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd", "Changelog\uff08\u66f4\u52d5\u65e5\u8a8c\uff09", "Python \u6709\u4ec0\u9ebc\u65b0\u529f\u80fd\uff1f"], "titleterms": {"10": [85, 88, 382, 472, 479, 480, 481, 483], "11": [473, 480, 481, 482, 483], "12": [426, 472, 473, 474, 481, 483], "13": [474, 479], "14": [474, 479, 480, 481, 482], "15": 474, "16": 64, "17": [481, 482], "205": 463, "207": 463, "208": 463, "217": 463, "218": [465, 466], "22": 85, "227": [463, 464], "229": 463, "230": 463, "232": 463, "234": 464, "235": 463, "236": 463, "237": [464, 466], "238": 464, "241": 463, "252": 464, "253": 464, "255": [464, 465], "263": 465, "273": 465, "277": 465, "278": 465, "279": 465, "282": 465, "285": 465, "289": 466, "292": 466, "293": 465, "2to3": 112, "301": 465, "302": 465, "305": 465, "307": 465, "308": 467, "309": 467, "3101": [468, 470], "3105": 468, "3106": 469, "3110": 468, "3112": 468, "3116": 468, "3118": [468, 476], "3119": 468, "3127": 468, "3129": 468, "3137": 469, "314": 467, "3141": 468, "3147": 475, "3148": 475, "3149": 475, "3151": 476, "3155": 476, "318": 466, "32": 64, "322": 466, "324": 466, "327": 466, "328": [466, 467], "331": 466, "3333": 475, "338": 467, "341": 467, "342": 467, "343": [467, 468], "352": 467, "353": 467, "357": 467, "362": 476, "366": 468, "370": 468, "371": 468, "372": [469, 471], "378": [469, 471], "380": 476, "384": 475, "389": [469, 475], "391": [469, 475], "393": 476, "397": 476, "405": 476, "409": 476, "412": 476, "4122": 398, "414": 476, "420": 476, "421": 476, "434": 469, "436": 477, "442": 477, "445": 477, "446": 477, "448": 478, "451": 477, "453": [469, 477], "456": 477, "461": 478, "465": 478, "466": 469, "468": 479, "471": 478, "475": 478, "476": [469, 477], "477": 469, "479": 478, "484": 478, "485": 478, "486": 478, "487": 479, "488": 478, "489": 478, "492": 478, "493": 469, "495": 479, "498": 479, "515": 479, "519": 479, "520": 479, "523": 479, "525": 479, "526": 479, "528": 479, "529": 479, "530": 479, "538": 480, "539": 480, "540": 480, "545": 480, "552": 480, "553": 480, "560": 480, "562": 480, "563": [473, 480], "564": 480, "565": 480, "578": 481, "587": 481, "590": 481, "604": 472, "612": 472, "613": 472, "626": 472, "634": 472, "64": 405, "646": 473, "647": 472, "652": 472, "654": 473, "655": 473, "657": 473, "659": 473, "669": 474, "673": 473, "675": 473, "678": 473, "681": 473, "684": 474, "688": 474, "692": 474, "695": 474, "698": 474, "701": 474, "709": 474, "__annotations__": 88, "__builtin_new": 79, "__class_getitem__": 428, "__del__": [85, 402], "__dunder__": [94, 211], "__enter__": 169, "__future__": [113, 463], "__getitem__": 428, "__import__": 85, "__index__": 467, "__init__": [94, 181], "__main__": [114, 432, 480], "__name__": 114, "__new__": 94, "__path__": 432, "__pure_virtu": 79, "__slots__": [93, 428, 472], "__spam": 85, "__spec__": 432, "_private__nam": 94, "_pth": 354, "_someclassname__spam": 85, "_sunder_": [94, 211], "_thread": [115, 472], "a_tupl": 85, "abbrevi": 120, "abc": [116, 161, 250, 253, 289, 386, 472, 475, 476, 477, 478, 482], "abi": [4, 57, 472, 475, 481], "about": [33, 85, 151, 193, 462], "absolut": 467, "abstract": [2, 75, 122, 161, 250, 468], "abstractbasicauthhandl": 395, "abstractdigestauthhandl": 395, "accept": 337, "access": [58, 64, 94, 100, 167, 176, 252, 266, 268, 366, 405, 428, 464, 474, 480], "accessor": 410, "acknowledg": 95, "across": 102, "action": [120, 292], "adapt": 340, "add_argu": 120, "add_help": 120, "added": 469, "adding": [76, 102, 292, 469, 479], "addit": [85, 207, 385, 461, 478], "address": [99, 259, 283], "advanc": [33, 101, 193, 468], "adverb": 319, "affect": 344, "after": 214, "aifc": [117, 477, 480], "aiff": 117, "aka": 94, "algorithm": [147, 251, 384, 477], "alia": 344, "alias": [386, 427], "align": [176, 347], "all": [85, 283, 292, 319, 382, 469, 478, 479], "alloc": [33, 42, 61, 75, 465, 477], "allow": 94, "allow_abbrev": 120, "alpha": 483, "alreadi": 470, "also": 428, "altern": [102, 434, 461], "among": 84, "an": [72, 73, 79, 84, 85, 93, 102, 109, 169, 183, 196, 250, 262, 348, 399, 461, 469], "analysi": 191, "ancillari": 353, "and": [5, 7, 23, 25, 33, 58, 64, 71, 72, 73, 75, 76, 77, 79, 85, 92, 93, 94, 95, 96, 100, 102, 106, 108, 109, 110, 120, 125, 128, 132, 133, 151, 158, 161, 169, 176, 183, 226, 230, 243, 247, 250, 252, 255, 259, 260, 262, 266, 268, 270, 275, 283, 292, 293, 296, 299, 308, 319, 328, 332, 333, 337, 340, 341, 344, 347, 353, 365, 366, 369, 382, 384, 385, 386, 388, 410, 411, 413, 419, 425, 428, 429, 430, 432, 435, 456, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "angular": 275, "ani": [169, 386, 389], "anim": 384, "annot": [88, 344, 429, 436, 441, 479, 480], "anoth": 85, "ansi": 158, "api": [4, 5, 8, 10, 14, 30, 32, 33, 34, 42, 57, 73, 86, 94, 96, 115, 123, 124, 126, 130, 167, 193, 196, 207, 210, 230, 251, 299, 340, 344, 348, 382, 399, 410, 413, 421, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "app": 72, "appear": [85, 384], "appl": [304, 481, 482], "appli": 85, "applic": [92, 93, 102, 158, 230, 247, 347, 421, 461, 467, 478], "approach": [77, 470, 472], "appropri": 428, "approxim": [250, 478], "arbitrari": [73, 79, 101, 292, 441, 473], "architectur": 369, "archiv": [332, 421, 465], "are": [84, 85, 94, 193, 292, 477], "arena": 42, "argpars": [89, 120, 469, 472, 475, 477, 478, 480], "argument": [5, 85, 90, 120, 176, 292, 293, 348, 353, 428, 441, 461, 477, 479], "argument_default": 120, "argumentpars": 120, "argv": 120, "arithmet": [259, 430], "array": [7, 8, 85, 121, 147, 176, 262, 472, 474, 476, 479], "articl": 110, "as": [99, 101, 102, 169, 259, 384, 427, 428, 467, 468, 481], "ascii": [64, 146, 178, 394], "assert": [106, 436], "assign": [430, 436, 462, 481], "assort": 75, "ast": [122, 468, 475, 479, 481, 482], "async": [63, 122, 427, 478], "asynchat": [472, 474, 479], "asynchron": [33, 255, 338, 386, 428, 430, 479], "asyncio": [123, 125, 135, 170, 426, 472, 473, 474, 477, 478, 479, 480, 481, 482], "asyncor": [472, 474, 475, 479], "at": 84, "atexit": 140, "atom": 430, "attr": 410, "attribut": [58, 75, 76, 85, 92, 93, 94, 102, 235, 255, 267, 292, 293, 340, 344, 352, 416, 428, 430, 432, 463, 464, 479, 480], "attributeerror": 472, "attributesn": 416, "au": 349, "au_read": 349, "au_writ": 349, "audio": 295, "audioop": [141, 426, 477], "audit": 481, "augment": [436, 462], "authent": [110, 283], "auto": 94, "autocommit": 340, "automat": [93, 94, 247], "autospecc": 389, "avail": [183, 400], "avoid": [84, 100, 102], "await": [122, 125, 139, 428, 430, 478], "awar": [109, 183, 478], "babyl": 271, "babylmessag": 271, "background": 266, "backport": 469, "backslash": [85, 106], "bad": 103, "band": [299, 481], "barrier": [138, 365], "base": [58, 85, 102, 133, 158, 161, 213, 230, 250, 432, 468, 469, 475, 480], "base16": 143, "base32": 143, "base64": [143, 472, 476, 477], "base85": 143, "base_dir": 332, "basehandl": 395, "baserotatinghandl": 269, "basic": [76, 110, 193, 375, 428], "bayesian": 343, "bdb": [144, 472], "be": [85, 250, 299], "begin": 103, "behavior": [422, 477, 478, 479, 480, 481], "behaviour": 167, "beopen": 426, "best": [85, 326, 341], "beta": [80, 483], "better": 478, "between": [77, 85, 109, 283, 292, 435], "beyond": [72, 120], "big": [481, 482], "bin": 348, "binari": [111, 158, 258, 344, 419, 430, 452], "binascii": [146, 476, 479, 480], "bind": [81, 247, 340, 369, 429], "bio": [341, 478], "bisect": [147, 472], "bit": [176, 255, 405, 470], "bitwis": 430, "blake2": 235, "blank": 435, "blob": 340, "block": [84, 102, 341, 382, 413, 427, 470], "bodi": 428, "bom": [102, 158], "bookkeep": 318, "bool": 344, "boolean": [6, 94, 292, 344, 430, 465], "bootstrap": [210, 469, 477], "boundedsemaphor": 138, "branch": 469, "break": [436, 441], "breakpoint": 480, "browser": [243, 403], "bsd": 426, "bt": 96, "buffer": [5, 7, 48, 63, 102, 133, 255, 258, 299, 320, 428, 474, 476, 481], "bug": [1, 33, 85, 376], "build": [5, 71, 73, 96, 386, 413, 456, 463, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "built": [64, 95, 96, 344, 428, 462, 466, 480], "builtin": [148, 429, 470, 481, 483], "bunch": 84, "bundl": 461, "but": 85, "by": [85, 176, 395, 469, 477], "byte": [8, 9, 109, 176, 344, 347, 394, 435, 468, 478], "bytearray": [344, 478], "bytecod": [191, 432, 473, 479, 480, 481, 482], "bytecode_help": 362, "bz2": [149, 476, 478], "bzip2": 149, "c14n": 426, "c3": 103, "ca": 341, "cab": 281, "cach": [85, 432, 481], "cacheftphandl": 395, "calendar": [150, 474, 480], "call": [10, 73, 85, 95, 176, 292, 389, 430, 478, 481], "call_lat": 126, "call_soon": 126, "callabl": [226, 255, 340, 386, 428], "callback": [176, 292, 353, 465], "calltip": 247, "can": [79, 84, 85, 250, 299], "cancel": 139, "candid": 483, "capsul": [11, 469], "captur": [106, 427], "care": 151, "carlo": 343, "case": [78, 100, 388, 427, 463], "catalog": [230, 266], "catch": 169, "categori": [23, 400], "caution": 33, "caveat": [33, 266, 421], "cdatasect": 410, "celementtre": 413, "cell": 12, "certif": [341, 469, 475, 477], "cfuhash": 426, "cgi": [84, 151, 152, 478], "cgitb": 152, "cgixmlrpcrequesthandl": 420, "chain": [270, 341, 443], "chainmap": 160, "chang": [85, 100, 101, 230, 384, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482], "changelog": 483, "charact": [64, 106, 262, 347], "charset": 195, "cheaper": 473, "check": [85, 193, 250, 292, 319, 428, 482], "choic": 120, "chomp": 85, "chunk": 153, "cipher": 341, "class": [78, 79, 85, 93, 94, 100, 102, 120, 158, 161, 181, 213, 216, 230, 250, 281, 283, 299, 308, 312, 329, 344, 347, 384, 385, 388, 395, 425, 427, 428, 435, 440, 464, 467, 468, 473, 476, 479], "classifi": 343, "claus": [426, 427], "clean": 169, "cleanup": [283, 292], "clear": 23, "cli": 102, "client": [133, 242, 283, 341, 419, 469, 475, 477, 478, 479, 480], "clinic": [90, 477], "clock": 366, "close": [84, 93], "cmath": [154, 478, 479], "cmd": 155, "cnri": 426, "co": 243, "code": [33, 85, 109, 110, 120, 157, 247, 250, 255, 344, 353, 388, 400, 428, 441, 461, 465, 473, 475, 476, 478, 482], "codec": [64, 158, 465, 472, 475, 476, 477], "codeop": 159, "codepag": 158, "coercion": [463, 480], "collect": [76, 100, 160, 161, 191, 386, 462, 469, 472, 475, 476, 477, 478, 479, 480, 481, 482], "collector": [28, 227], "color": [92, 247, 384], "colorchoos": 370, "colorsi": [162, 477], "column": 376, "com": 426, "combin": [94, 341], "combinator": 95, "combobox": 376, "comma": [85, 465], "command": [96, 120, 163, 190, 191, 293, 297, 311, 348, 358, 378, 380, 388, 422, 461, 469, 475, 477, 479], "comment": [410, 435], "common": [106, 151, 344, 470], "commondialog": 189, "communic": 260, "compar": 109, "comparison": [75, 94, 99, 108, 259, 430, 463, 470], "compat": 331, "compat32": 196, "compil": [72, 73, 106, 425, 456, 481], "compileal": [163, 478, 480, 482], "complet": [93, 247, 320, 447], "complex": [7, 344, 428], "complianc": 262, "complic": 85, "compos": 95, "compound": [7, 384], "comprehens": [95, 122, 442, 462, 474, 479], "compress": [149, 270], "comput": 382, "concaten": [85, 435], "concept": 369, "concret": 386, "concurr": [102, 125, 139, 164, 165, 166, 475, 478, 479, 480, 482], "condit": [102, 138, 292, 365, 430, 442, 467], "config": 268, "configpars": [167, 474, 475, 478], "configur": [33, 34, 101, 102, 268, 334, 344, 355, 384, 425, 469, 475, 481], "conflict": 292, "conflict_handl": 120, "conform": 410, "connect": [84, 133, 268, 283, 337, 340], "consider": [245, 268, 341, 348, 432], "consol": [157, 282, 479], "const": 120, "constant": [93, 177, 278, 314, 340, 348, 366, 405], "constructor": [85, 128, 230, 348], "consum": 299, "contain": [120, 259, 428], "content": [197, 314], "contenthandl": 415, "contentmanag": 197, "context": [102, 135, 169, 170, 186, 193, 247, 283, 340, 341, 344, 400, 428, 466, 467, 468, 476], "contextlib": [169, 386, 467, 468, 472, 473, 475, 476, 477, 478, 479, 480], "contextu": 102, "contextvar": [102, 170, 480], "contigu": 7, "continu": [176, 436, 441], "control": [23, 28, 76, 340, 384, 403], "conveni": [259, 419], "convers": [100, 176, 259, 275, 344, 366, 430, 466], "convert": [85, 109, 340, 348], "cookbook": [77, 94, 102], "cooki": [243, 244, 426], "cookiejar": 243, "cookielib": 466, "cookiepolici": 243, "copi": [171, 332], "copyreg": 172, "copytre": 332, "core": [120, 462, 480, 483], "coroutin": [19, 255, 385, 427, 428, 478], "correspond": 384, "count": 73, "counter": 160, "coupl": 369, "cprofil": [308, 480, 481], "cpython": [74, 78, 96, 98, 472, 473, 474, 477, 479, 480, 481, 482], "creat": [33, 61, 64, 79, 84, 85, 94, 95, 99, 102, 139, 235, 292, 340, 421, 428, 477], "create_autospec": 389, "creation": [45, 99, 293, 338, 385, 428, 479], "credit": 235, "cross": 456, "crt": 86, "crypt": [173, 476, 480], "csv": [175, 474, 475, 478, 481], "ctype": [176, 283, 467, 468, 475, 481], "current": [85, 255, 382], "curs": [84, 92, 177, 178, 179, 472, 476, 478, 481, 482], "cursor": 340, "custom": [42, 93, 94, 101, 102, 120, 128, 132, 167, 176, 259, 268, 270, 283, 299, 308, 340, 428, 461, 477, 479, 480], "cwi": 426, "cx_freez": 461, "cycl": 462, "cyclic": 76, "data": [76, 85, 94, 95, 101, 109, 110, 176, 181, 270, 298, 299, 365, 369, 425, 452, 461, 466, 470, 473, 481], "databas": [184, 281], "dataclass": [94, 181, 472, 473, 480], "datagram": 133, "datagramhandl": 269, "datahandl": 395, "datatyp": [167, 465], "date": [101, 183, 465], "datetim": [20, 183, 473, 475, 476, 479, 480, 481, 482], "db": 340, "dbm": [184, 475, 477, 478, 479, 480], "de": [75, 149], "deal": 102, "debug": [42, 95, 96, 151, 193, 247, 456, 469, 481], "debugg": [33, 297], "decim": [186, 452, 466, 475, 476, 479, 480], "declar": [435, 472], "decod": [158, 262], "decompress": [270, 422], "decor": [108, 169, 466, 468, 474], "dedic": 478, "deep": 171, "def": 78, "default": [42, 85, 120, 292, 340, 341, 358, 389, 400, 422, 461, 469, 477], "defaultcookiepolici": 243, "defaultdict": 160, "defer": 230, "defin": [58, 75, 76, 85, 99, 100, 268, 292, 475], "definit": [63, 93, 259, 427, 440, 479], "defusedxml": 409, "del": [436, 442], "deleg": [85, 100, 476], "delet": [85, 462], "delimit": 435, "demo": [384, 474, 481, 483], "densiti": 343, "depend": [332, 400], "deploy": 102, "deprec": [340, 386, 462, 465, 466, 468, 469, 471, 475, 477, 478, 479, 480], "deprecationwarn": [480, 482], "dequ": 160, "deriv": [85, 94, 235], "describ": 400, "descript": [94, 161, 314], "descriptor": [21, 93, 181, 214, 293, 428, 464, 477, 479], "dest": 120, "destin": 102, "detail": [99, 161, 266, 268], "determin": [183, 428], "determinist": 308, "dev": [328, 480], "develop": [96, 247, 462, 468, 480], "devic": 295, "diagnost": 461, "dialect": 175, "dialog": 189, "diamond": 464, "dict": [102, 344, 389, 390, 479], "dictconfig": 102, "dictionari": [78, 102, 268, 430, 442, 469, 475, 476, 482], "differ": [77, 85, 94, 190, 235, 382, 384], "difflib": [190, 478], "digest": 235, "dir": 450, "dircmp": 216, "direct": [193, 250, 386, 463], "directori": [281, 293, 332, 468, 475, 478], "dis": [191, 474, 475, 477, 480], "disabl": [348, 353], "disambigu": 479, "discoveri": [251, 388], "dispatch": 299, "display": [92, 101, 382, 430, 463], "distinguish": 388, "distribut": 251, "distro": 96, "distutil": [462, 465, 472, 474, 478, 479, 480, 482], "divis": 464, "dll": 86, "dlls": [77, 176], "dnd": 371, "dns": 126, "do": [79, 84, 85, 369], "doc": 84, "doccgixmlrpcrequesthandl": 420, "docstr": [193, 384], "doctest": [193, 466, 472, 477, 478], "doctestfind": 193, "doctestpars": 193, "doctestrunn": 193, "document": [84, 410, 413, 420, 441, 468, 469, 476, 477, 481, 483], "documenttyp": 410, "docxmlrpcserv": 420, "doe": [85, 369], "doesn": 84, "dom": [410, 411, 412, 462], "domain": [42, 158], "domainfilt": 382, "domeventstream": 412, "domimplement": 410, "don": 84, "down": 96, "draw": 384, "dri": 461, "dtdhandler": 415, "dtoa": 426, "dtrace": [98, 479], "dumb": 184, "dummi": 283, "dump": 214, "duplic": [85, 94], "duplicatefreeenum": 94, "dure": 101, "dynam": [33, 93, 176, 385, 429], "each": 85, "eager": 139, "eas": 95, "easi": 462, "easier": 85, "echo": [133, 136], "edg": [100, 328], "edit": [247, 447], "editor": 247, "effect": 390, "effici": [85, 332], "eintr": 478, "elabor": 102, "element": [95, 410, 413], "elementtre": [413, 467, 469, 474, 475, 476], "elimin": 478, "ellipsi": [56, 344, 428], "els": [427, 441], "email": [102, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 475, 476, 477, 478, 479], "emb": 266, "embed": [72, 354, 462], "embedd": 461, "emul": 428, "enabl": [469, 477], "encod": [64, 109, 158, 198, 262, 340, 394, 435, 448, 465, 472, 479], "encodingwarn": 472, "end": [85, 92, 103], "enhanc": [465, 468, 469, 479], "ensur": 94, "ensurepip": [210, 469, 474, 477], "enter": 100, "entiti": 239, "entityresolv": 415, "entri": [251, 428, 432], "enum": [94, 211, 472, 473, 474, 477, 478, 479, 480], "enumer": [94, 465], "enumtyp": 94, "envbuild": 399, "environ": [293, 354, 425, 461, 469, 478, 479], "epilog": 120, "epol": 328, "equal": 478, "equival": [84, 85, 93], "errno": 212, "error": [23, 73, 85, 110, 158, 186, 199, 281, 292, 314, 358, 393, 443, 444, 465, 474], "errorhandl": 415, "escap": 64, "estim": 343, "etre": [413, 474, 476, 477, 480], "evalu": [79, 108, 429, 430, 479, 480], "event": [102, 128, 138, 353, 365, 369, 376, 384], "examin": 193, "exampl": [76, 93, 102, 155, 161, 167, 169, 190, 193, 279, 292, 319, 332, 358, 381, 395, 399, 419], "except": [23, 73, 85, 101, 102, 110, 120, 169, 193, 213, 259, 292, 319, 333, 425, 427, 443, 467, 468, 469, 470, 473, 476], "exchang": 283, "exclus": 120, "excursus": 461, "exe": 473, "execut": [164, 193, 247, 333, 353, 428, 429, 461, 467], "executor": 166, "exist": 133, "exit": 120, "exit_on_error": 120, "expat": [314, 426], "expaterror": 314, "expect": 388, "explan": 384, "explicit": [435, 468, 476, 477], "export": 176, "express": [78, 79, 95, 106, 109, 319, 430, 436, 466, 467, 481], "extend": [72, 85, 251, 292, 293, 399, 462, 465], "extens": [33, 58, 71, 73, 75, 76, 96, 111, 247, 266, 302, 476, 478], "extern": [268, 299], "extra": 13, "extract": [73, 358, 422], "factori": [102, 139, 259, 340], "fail": [99, 478], "failur": [247, 388], "fallback": 167, "famili": 348, "faq": [186, 473], "fast": 481, "faster": 478, "fault": [214, 419], "faulthandl": [214, 472, 476, 478, 479], "fcntl": [215, 473, 482], "featur": [281, 386, 429, 467, 469, 472, 474, 477, 478, 479, 480, 481, 482], "feedback": 106, "feedpars": 207, "fetch": 255, "field": [7, 176, 181, 386, 472], "file": [24, 35, 64, 85, 101, 102, 109, 120, 149, 167, 189, 193, 214, 235, 247, 250, 251, 268, 270, 282, 293, 296, 306, 320, 332, 354, 369, 375, 422, 428, 451, 456, 461, 465, 475, 477, 478, 479, 480, 481], "filecmp": [216, 477], "filecookiejar": 243, "filedialog": 189, "filehandl": [269, 395], "fileinput": [218, 472, 479], "filenam": 109, "filesystem": [479, 481], "filetyp": 120, "fill": 384, "filter": [102, 267, 270, 358, 380, 382, 400], "filter_dir": 389, "final": [33, 75, 169, 427, 467, 477, 483], "find": [85, 176, 319, 413, 461], "finder": 432, "finer": [76, 94, 476], "fix": [292, 463, 465, 469], "fixer": 112, "fixtur": 388, "flag": [58, 94, 106, 120, 169, 193, 255, 292, 319, 456], "flexibl": 476, "fli": 230, "float": [25, 186, 344, 428, 435, 466], "float_info": 352, "flow": 101, "fnmatch": 220, "font": 372, "for": [51, 64, 73, 85, 92, 96, 101, 102, 109, 120, 169, 177, 250, 266, 292, 299, 319, 341, 358, 362, 378, 384, 386, 400, 413, 427, 428, 430, 432, 441, 461, 465, 466, 467, 468, 469, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "forc": 480, "foreign": 176, "fork": 33, "forkserv": 283, "form": [375, 386, 430], "formal": [95, 474], "format": [7, 101, 102, 247, 268, 283, 299, 344, 345, 347, 358, 421, 446, 452, 468, 469, 470, 471, 478, 479], "formatt": [101, 102, 267], "formatter_class": 120, "fraction": [221, 468, 473, 474, 475], "frame": [26, 382, 428, 473, 479], "framesummari": 381, "framework": [463, 476], "freebsd": [460, 469], "frequent": 348, "from": [33, 73, 79, 84, 85, 93, 96, 100, 102, 139, 169, 176, 348, 384, 422, 461, 465, 468], "fromfile_prefix_char": 120, "frozen": 473, "frozenset": 344, "ftp": [223, 475], "ftp_tls": 223, "ftphandler": 395, "ftplib": [223, 474, 476, 482], "full": 461, "function": [7, 25, 27, 45, 64, 73, 85, 93, 94, 95, 100, 106, 108, 120, 163, 169, 176, 191, 226, 251, 259, 261, 267, 268, 275, 282, 288, 299, 307, 318, 319, 340, 348, 353, 384, 385, 388, 400, 419, 427, 428, 430, 441, 462, 463, 466, 467, 468, 470, 476, 478, 479, 480], "functool": [95, 226, 473, 475, 476, 477, 478, 480, 481], "fundament": 176, "further": 358, "futur": [102, 113, 126, 128, 129, 166, 436, 475, 478, 479, 480, 482], "future_builtin": 468, "garbag": [28, 76, 100, 227, 462], "gateway": 475, "gc": [227, 472, 476, 477, 480, 481, 482], "gdb": 96, "general": [95, 292, 333, 478], "generat": [29, 78, 95, 201, 255, 292, 344, 428, 430, 440, 464, 465, 466, 467, 478, 479], "generic": [64, 75, 344, 386, 427, 428, 455, 473, 480, 482], "genericalia": 344, "geometri": 375, "get": [84, 85, 99, 132, 382, 384], "getopt": 228, "getpass": 229, "getter": [58, 100], "gettext": [230, 480, 481], "geturl": 110, "gil": [33, 474], "given": 85, "glob": [231, 472, 477, 478], "global": [33, 84, 100, 299, 353, 425, 436], "gmt": 102, "gnu": [184, 230, 320, 323], "gnutransl": 230, "goto": 78, "grain": 476, "grammar": 122, "graph": 232, "graphic": [368, 384], "graphlib": [232, 482], "greedi": 106, "group": [95, 106, 120, 139, 213, 292, 388, 427], "grp": [233, 479], "guard": [427, 472], "gui": [81, 102, 281, 459], "guid": [105, 292, 340], "guidelin": 283, "gunicorn": 102, "gzip": [234, 424, 474, 475, 478, 481], "handi": 369, "handl": [23, 102, 110, 135, 292, 299, 340, 388, 405, 465, 468, 469, 477, 478], "handler": [84, 101, 102, 110, 158, 214, 267, 268, 269, 333, 338, 369, 407, 415], "happen": 101, "hash": [173, 235, 477, 480], "hashlib": [235, 467, 472, 473, 474, 475, 477, 479, 482], "have": 85, "header": [110, 202, 407, 476], "headerregistri": 203, "heap": [3, 61, 63, 100, 236], "heapq": [236, 478], "hello": [123, 126, 369], "help": [120, 247, 292, 384], "helper": [348, 386], "hierarch": 375, "hierarchi": [133, 468, 476], "high": [66, 72, 348], "higher": [85, 151, 226], "highlight": [476, 477, 478, 479, 480, 481, 482], "hint": [266, 358, 474, 478, 482], "histori": [95, 320, 447], "hkey_": 405, "hmac": [237, 472, 476, 477, 480], "home": 355, "hook": [42, 250, 320, 334, 432, 463, 465, 481], "host": [99, 259], "how": [79, 84, 85, 94, 102, 193, 292, 340, 369, 384], "howto": [94, 95, 109], "html": [84, 238, 239, 240, 475, 476, 477], "htmlparser": 240, "http": [136, 241, 242, 243, 244, 245, 407, 469, 475, 476, 477, 478, 479, 480, 482], "httpbasicauthhandl": 395, "httpconnect": 242, "httpcookieprocessor": 395, "httpdigestauthhandl": 395, "httperror": 110, "httperrorprocessor": 395, "httphandler": [269, 395], "httpmessag": 242, "httppasswordmgr": 395, "httppasswordmgrwithpriorauth": 395, "httpredirecthandl": 395, "httprespons": 242, "https": 469, "httpshandler": 395, "hyperbol": 275, "iana": 425, "ice": 73, "id": [85, 366], "ide": [457, 459], "ident": 430, "identifi": [353, 376, 430, 435], "idiomat": 114, "idl": [247, 462, 469, 471, 472, 473, 475, 477, 478, 479, 480, 481, 482, 483], "idlelib": [247, 472, 473, 477, 478, 479, 480, 481, 482], "idna": 158, "if": [78, 85, 101, 183, 250, 427, 441], "iff": 153, "imag": [369, 375], "imaginari": 435, "imap4": 248, "imaplib": [248, 475, 476, 478, 482], "imghdr": [249, 478], "immut": [344, 428], "imp": 474, "impact": 474, "impart": 102, "implement": [50, 79, 84, 102, 169, 250, 262, 428, 434, 476, 479, 480], "implicit": [435, 476], "import": [85, 114, 122, 211, 250, 251, 267, 268, 269, 362, 369, 390, 432, 436, 450, 463, 465, 466, 467, 468, 473, 476, 477], "import_help": 362, "import_modul": 250, "importlib": [250, 251, 252, 253, 432, 469, 472, 474, 476, 477, 478, 479, 480, 482], "improv": [331, 462, 463, 464, 465, 466, 467, 468, 469, 471, 474, 475, 477, 479], "in": [64, 72, 73, 77, 79, 84, 85, 95, 100, 101, 102, 109, 139, 158, 169, 176, 181, 193, 247, 270, 291, 292, 340, 344, 365, 384, 386, 410, 428, 461, 462, 463, 466, 470, 472, 473, 474, 477, 478, 479, 480, 481, 482], "includ": 35, "incomplet": 176, "increas": 186, "increment": [149, 158, 268], "incrementaldecod": 158, "incrementalencod": 158, "incrementalpars": 416, "indent": [247, 435], "indentationerror": 472, "independ": [7, 466], "index": [78, 85, 369, 465, 467], "indic": 23, "infinit": 262, "infix": 478, "info": 110, "inform": [13, 92, 102, 281, 293], "inherit": [79, 293, 384, 440, 464, 477], "ini": [167, 461], "init": [181, 320], "initi": [33, 34, 45, 73, 354, 478, 481], "inlin": 474, "input": [177, 378, 384], "inputsourc": 416, "insensit": 463, "insert": 102, "insid": 478, "inspect": [99, 255, 472, 473, 474, 475, 476, 477, 478, 479, 481, 482], "instal": [151, 281, 355, 461, 462, 477], "instanc": [44, 85, 93, 94, 99, 197, 299, 344, 428], "instant": 308, "instead": [85, 470], "instruct": 191, "int": [85, 344], "integ": [259, 344, 435, 464, 466, 468], "integr": [267, 428], "intenum": 94, "interact": [137, 157, 429, 463, 467], "interchang": 477, "interest": 413, "interfac": [42, 78, 79, 99, 151, 190, 191, 227, 259, 293, 311, 358, 368, 380, 388, 395, 416, 422, 475], "intermezzo": 73, "intermix": 120, "intern": [26, 96, 268, 344, 428], "internation": [158, 230], "internet": [84, 256], "interoper": 262, "interpol": 167, "interpret": [33, 100, 157, 255, 385, 421, 467, 468, 469, 474], "interprocess": 260, "interrupt": [135, 422], "intflag": 94, "into": [95, 102, 384], "introduct": [93, 109, 308], "introspect": [139, 255, 386], "invalid": [120, 432], "invoc": [93, 348], "invok": 428, "io": [258, 386, 474, 475, 476, 478, 480, 481], "ioctl": 215, "ip": [99, 259], "ipaddress": [99, 259, 474, 476, 477, 478, 480, 482], "ipc": 107, "ipv4": 259, "ipv6": 259, "irix": 468, "irrefut": 427, "is": [84, 85, 92, 101, 183, 308, 466, 470], "isol": [34, 100], "isolation_level": 340, "issu": [23, 100, 214, 358, 461, 468], "it": [84, 85, 110, 193, 292], "item": [85, 376], "iter": [37, 85, 94, 95, 204, 259, 388, 428, 430, 440, 466, 470, 478], "itertool": [95, 261, 472, 474, 475, 476, 480, 481], "itself": 422, "java": 303, "javascript": 468, "jit": 473, "join": [78, 435], "json": [262, 299, 446, 468, 478, 479, 481], "kernel": 343, "kevent": 328, "key": [81, 108, 235, 247, 283, 341, 476], "keyboard": 135, "keypress": [84, 86], "keyword": [73, 85, 181, 263, 435, 441, 472, 478, 479], "kind": [84, 93], "known": [428, 461], "kqueue": [328, 426], "kwarg": 474, "l1": 86, "label": 376, "lambda": [78, 85, 95, 430, 441], "languag": [230, 384, 462], "larg": 306, "latin": 64, "launcher": [461, 473, 478], "layer": [2, 66, 110, 478], "layout": [376, 452], "lazi": [250, 429, 473], "legaci": [167, 348, 395, 480], "len": 78, "length": [235, 344], "level": [45, 66, 72, 101, 102, 106, 151, 259, 262, 267, 328, 348, 478], "lexicalhandl": 415, "lib2to3": 112, "libffi": 426, "libmpdec": 426, "librari": [101, 102, 112, 176, 254, 468, 483], "life": 369, "lifetim": [100, 128], "lifo": 134, "like": [72, 102, 232], "limit": [100, 262, 322, 344, 422, 461], "line": [120, 163, 190, 191, 293, 311, 320, 358, 378, 380, 388, 422, 435, 461, 466, 469, 475], "linecach": [265, 472, 478], "liner": 85, "link": [72, 120, 176], "linkag": 73, "linker": 456, "linux": [79, 96, 104, 111, 293, 303, 460], "list": [38, 78, 85, 95, 96, 99, 147, 320, 344, 427, 430, 441, 442, 449, 452, 462, 468, 470], "listbox": 375, "listen": [102, 283], "liter": [85, 109, 122, 427, 430, 435, 446, 468, 473, 476, 479], "load": [176, 189, 388, 432], "load_test": 388, "loader": 432, "local": [33, 64, 96, 230, 266, 353, 365, 461, 466, 472, 473, 474, 478, 479, 480], "locat": 416, "lock": [33, 138, 365, 476], "log": [101, 102, 267, 268, 269, 283, 452, 465, 469, 473, 475, 476, 477, 478, 479, 480, 481], "logarithm": 275, "logger": [101, 102, 267], "loggeradapt": [102, 267], "logic": [93, 186, 259, 435], "logrecord": [102, 267], "long": [464, 466], "longer": 477, "lookahead": 106, "lookup": [45, 93, 428], "loop": [85, 128, 133], "lossless": 100, "lot": 102, "low": [45, 474], "lower": 100, "lzma": [270, 476, 478], "mac": [459, 468, 469, 481, 482], "machineri": 250, "maco": [131, 247, 303, 456, 481, 482, 483], "macpath": 480, "macro": 58, "madv_": 278, "magic": 389, "magicmock": [389, 390], "mailbox": [271, 475], "mailcap": 272, "maildirmessag": 271, "main": [380, 456, 468], "mainten": 469, "major": 386, "make": [79, 85, 100, 319, 384, 462, 469, 474, 478, 479], "makefil": 456, "manag": [75, 93, 100, 102, 135, 169, 170, 197, 283, 340, 344, 369, 375, 400, 428, 467, 468], "mani": 85, "manipul": 292, "manual": [170, 308, 369], "map": [51, 63, 64, 167, 251, 344, 410, 427, 428], "map_": 278, "markup": 273, "marshal": [41, 274, 299, 477], "mask": 259, "match": [106, 120, 122, 319, 427, 428, 441], "math": [84, 275, 473, 474, 475, 476, 478, 479, 480, 481, 482], "matrix": 478, "max_path": 461, "mbcs": [64, 158], "mbox": 271, "mboxmessag": 271, "mean": 85, "measur": 384, "member": [58, 93, 94, 255], "membership": 430, "memori": [42, 270, 341, 344, 382, 477, 478], "memoryhandl": 269, "memoryview": [43, 344, 469, 476], "menu": 247, "menus": 247, "merg": 482, "mersenn": 426, "messag": [101, 102, 196, 205, 230, 266, 271, 474], "messagebox": 373, "meta": 432, "metacharact": 106, "metaclass": 428, "metadata": [251, 463, 465, 467, 472], "metavar": 120, "method": [44, 64, 73, 76, 78, 79, 84, 85, 93, 94, 100, 103, 106, 120, 169, 173, 283, 288, 292, 337, 340, 344, 384, 390, 410, 428, 430, 440, 446, 462, 466, 467, 470, 478, 479, 480, 482], "mh": 271, "mhmessag": 271, "microsoft": [281, 461], "migrat": 469, "mime": [194, 197, 201, 206, 276, 317], "mimetyp": [276, 480], "minidom": 411, "minor": 462, "minutia": 94, "miscellan": [270, 283, 293, 375, 455, 470], "mitig": 186, "mix": 94, "mixer": 295, "mixin": 338, "mmap": [278, 476, 477, 481], "mmdf": 271, "mmdfmessag": 271, "mock": [389, 390, 478, 479, 480], "mock_open": 389, "mode": [96, 186, 235, 469, 480], "model": [314, 369, 463], "modifi": [85, 106, 380, 461], "modul": [45, 73, 85, 95, 99, 100, 102, 106, 108, 151, 168, 230, 250, 259, 267, 283, 308, 340, 348, 354, 369, 384, 388, 428, 432, 450, 461, 462, 463, 464, 465, 466, 467, 468, 469, 471, 475, 478, 479, 480], "modular": 95, "modulefind": 279, "modulespec": 477, "monitor": [353, 474], "mont": 343, "monti": 80, "more": [75, 92, 99, 102, 106, 384, 474], "morsel": 244, "most": 85, "motion": 384, "mro": 428, "ms": [86, 282, 404], "msilib": [281, 480], "msvcrt": 282, "multi": [34, 45, 258, 341, 452, 466, 475, 478], "multical": 419, "multidimension": 85, "multipl": [85, 100, 102, 389, 464, 478], "multiprocess": [102, 283, 284, 468, 476, 477, 478, 479, 480, 481, 482], "multithread": 125, "mung": 319, "mutabl": [344, 428], "mutat": 84, "mutual": [85, 120], "my": [84, 85], "naiv": [183, 343], "name": [85, 93, 94, 106, 120, 158, 262, 293, 352, 358, 428, 429, 430, 465, 476], "namednodemap": 410, "namedtupl": 160, "nameerror": 472, "namer": 102, "namespac": [120, 384, 413, 428, 432, 440, 476], "nan": 262, "nanosecond": 480, "narg": 120, "nativ": [189, 347], "navig": [247, 369], "ndbm": 184, "ndiff": 190, "need": 466, "negat": 85, "negoti": 478, "nest": [463, 464], "net": 259, "netrc": 286, "network": [84, 99, 102, 259, 260, 469], "never": 125, "new": [95, 292, 400, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "newli": 477, "newlin": [85, 465], "newtyp": 386, "next": [101, 483], "nis": 287, "nntp": [288, 475], "nntplib": [288, 476, 482], "no": [101, 477], "node": [122, 410], "nodelist": 410, "nomin": 386, "non": [33, 106, 262, 340, 341, 413, 477], "none": [46, 428], "nonloc": 436, "normaldist": 343, "not": [85, 100, 344, 384], "notabl": [472, 473, 474, 480, 481, 482], "notat": [319, 434, 468], "note": [99, 186, 207, 333, 337, 338, 341, 376], "notebook": 376, "notif": [33, 93], "notimpl": [344, 428], "nt": [355, 465], "nt_user": 355, "nteventloghandl": 269, "nuget": 461, "null": [73, 344], "nullhandl": [102, 269], "nulltransl": 230, "number": [63, 85, 110, 169, 262, 289, 293, 428, 449, 468], "numer": [428, 435, 479], "numpi": 7, "obfusc": 85, "object": [2, 8, 9, 23, 24, 27, 42, 44, 50, 56, 58, 60, 63, 75, 79, 84, 85, 93, 94, 99, 100, 101, 102, 120, 132, 139, 157, 177, 179, 183, 186, 190, 208, 226, 235, 255, 259, 262, 267, 268, 281, 283, 293, 295, 299, 301, 312, 319, 321, 325, 328, 330, 338, 340, 344, 348, 353, 359, 365, 384, 389, 395, 403, 405, 408, 410, 416, 419, 422, 428, 465, 466, 468, 469, 473, 477], "odd": 85, "of": [58, 84, 85, 93, 94, 95, 99, 100, 101, 102, 149, 167, 169, 181, 255, 259, 279, 283, 293, 299, 332, 333, 344, 348, 352, 354, 382, 384, 386, 399, 400, 419, 422, 428, 429, 435, 456, 461, 462, 469, 470, 474, 477, 478, 479, 480, 481], "off": [186, 353], "old": [388, 464], "older": [348, 358], "omit": 94, "on": [42, 84, 95, 99, 151, 214, 226, 230, 247, 333, 337, 341, 348, 353, 463], "one": [85, 100, 149], "onexit": 84, "onli": [133, 181, 247, 441, 472, 480, 481], "opcod": [191, 473], "open": [100, 102, 110, 252], "openbsd": 460, "openerdirector": 395, "openssl": [426, 460, 473], "oper": [85, 95, 108, 226, 243, 259, 282, 291, 293, 332, 341, 344, 430, 435, 464, 470, 473, 477, 478, 482], "operand": 186, "opt": 100, "optim": 101, "option": [85, 120, 193, 247, 292, 358, 369, 376, 380, 422, 455, 456, 479], "optpars": [120, 292, 465], "or": [85, 102, 120, 176, 183, 344, 348, 427, 441], "order": [85, 103, 176, 181, 226, 268, 292, 347, 430, 469, 470, 479], "ordereddict": 160, "orderedenum": 94, "org": [80, 461], "organ": [85, 388], "orient": 384, "orm": 93, "os": [84, 213, 293, 294, 296, 348, 362, 468, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482], "os_help": 362, "oss": 295, "ossaudiodev": 295, "osx_framework_us": 355, "other": [76, 79, 85, 94, 99, 101, 102, 120, 139, 259, 282, 292, 299, 344, 353, 386, 435, 462, 463, 465, 469, 470, 477, 478, 479, 480], "out": [84, 100, 299, 481], "output": [85, 102, 247, 332, 452], "outputcheck": 193, "over": [76, 85], "overload": 85, "overrid": [100, 400, 474], "overview": [72, 93, 251, 427], "own": 176, "ownership": 73, "pack": 25, "packag": [251, 252, 302, 432, 450, 461, 463, 465, 467, 468, 476], "packer": [369, 408], "pad": 92, "page": 287, "pair": 319, "panel": 179, "parallel": 481, "paramet": [33, 73, 85, 102, 122, 176, 181, 369, 386, 427, 441, 474, 481], "parcel": 84, "parent": 120, "parenthes": 430, "pars": [5, 120, 292, 331, 394, 413, 469, 472, 475, 480, 481, 482], "parse_arg": 120, "parser": [120, 167, 207, 240, 292, 314, 468, 482], "parti": 105, "partial": [108, 120, 226, 467], "particular": 102, "pass": [85, 95, 102, 176, 436, 441], "patch": [389, 390], "patcher": 389, "path": [34, 250, 294, 354, 355, 422, 432, 461, 472, 474, 479, 481], "pathlib": [296, 472, 473, 474, 477, 478, 479, 480, 481, 482], "pattern": [102, 106, 122, 384, 427, 428], "pdb": [297, 474, 475, 476, 477, 479, 480, 482], "peak": 382, "pen": 384, "pep": [463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "per": [33, 100, 353, 468, 474], "percent": 478, "perf": [51, 104], "perform": [85, 106, 258, 299, 456, 470], "perl": 85, "persist": [84, 298, 299, 330], "person": 235, "phase": [34, 45, 478], "phonebook": 319, "physic": 435, "pickl": [94, 172, 299, 300, 425, 465, 476, 477, 478, 479, 481], "pickletool": [300, 479], "pil": 7, "pip": [111, 210, 453, 469, 477], "pipe": [84, 283, 301], "pipelin": [301, 348], "pitfal": 422, "pkgutil": 302, "place": [85, 291], "placehold": 340, "plagu": 106, "planet": 94, "platform": [303, 332, 376, 463, 472, 480], "plist": 304, "plistlib": [304, 468, 477, 481], "point": [25, 94, 186, 251, 435], "pointer": [73, 176], "polici": [130, 132, 208, 476], "poll": 328, "pool": 283, "pop3": 305, "popen": [84, 348, 475], "popen2": 348, "popen3": 348, "poplib": [305, 475, 477, 478, 482], "popul": 292, "port": [462, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "posit": [292, 319, 384, 428, 441, 481], "posix": [306, 361], "posix_hom": 355, "posix_prefix": 355, "posix_spawn": 348, "posix_us": 355, "possibl": [85, 384], "post": [84, 181], "postpon": 480, "power": [106, 275, 430], "pprint": [307, 472, 477, 481, 482], "practic": [77, 85, 93, 326], "preced": [85, 430], "precis": [186, 474], "precomput": 281, "prefer": 247, "prefix": [120, 259, 355, 482], "prefix_char": 120, "preiniti": 34, "prepar": 428, "prepareprotocol": 340, "preprocessor": 456, "prerequisit": 96, "present": [75, 470], "preserv": [369, 479], "pretti": [96, 382], "prettyprint": 307, "primari": 430, "primer": 93, "primit": [138, 139, 283, 386], "print": [23, 96, 120, 292, 468, 470], "printer": 96, "printf": 344, "prioriti": 134, "privat": [34, 128], "probe": 479, "problem": [106, 151], "process": [33, 100, 102, 132, 181, 273, 283, 341, 363, 462, 468], "processinginstruct": 410, "processpoolexecutor": [102, 166], "product": 102, "profil": [33, 308], "prog": 120, "program": [85, 92, 109, 177, 230, 266, 283, 369, 429], "programmat": [94, 250, 380], "progressbar": 376, "properti": [64, 93, 109, 468], "protocol": [7, 10, 48, 75, 100, 133, 167, 256, 388, 432, 474, 476, 478, 479, 481], "protocolerror": 419, "prototyp": 176, "provabl": 95, "provid": [73, 76, 101, 299], "provision": [34, 476], "proxi": [110, 283, 389], "proxybasicauthhandl": 395, "proxydigestauthhandl": 395, "proxyhandl": 395, "psf": 426, "pti": [309, 477], "public": [163, 384], "pull": 413, "pulldom": 412, "pure": [72, 93], "purpos": 428, "put": 292, "pwd": 310, "py": [84, 96, 114, 473], "py_buildvalu": 79, "py_compil": [311, 472, 480, 481], "py_getargcargv": 34, "py_runmain": 34, "pyc": [85, 475, 480], "pyclbr": [312, 472], "pyconfig": 34, "pyd": 86, "pydoc": [313, 475, 476, 477, 479, 480, 482], "pyerr_print": 79, "pyhash": 30, "pymalloc": [42, 465], "pynng": 102, "pyo": 478, "pyobject": 63, "pyobject_new": 100, "pypreconfig": 34, "pystatus": 34, "python": [0, 1, 15, 32, 33, 34, 35, 42, 68, 70, 72, 73, 74, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 91, 92, 93, 95, 96, 97, 100, 103, 104, 105, 109, 111, 112, 114, 158, 159, 163, 176, 180, 188, 191, 193, 214, 254, 263, 264, 266, 267, 274, 293, 297, 299, 308, 311, 312, 315, 324, 330, 333, 340, 354, 355, 358, 362, 367, 369, 377, 378, 380, 384, 386, 421, 426, 433, 437, 438, 440, 445, 448, 449, 450, 451, 452, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484], "pythonmalloc": 479, "pytypeobject": 63, "pyvarobject": 63, "pywidestringlist": 34, "pywin32": 461, "pyxml": 462, "pyzipfil": 422, "qname": 413, "qt": 102, "qualifi": 476, "queri": [23, 28, 292, 293, 296, 332, 340], "queue": [124, 134, 236, 283, 316, 442, 480], "queuehandl": [102, 268, 269], "queuelisten": [102, 268, 269], "quick": [63, 120, 167, 186, 384], "quopri": 317, "quot": 394, "rais": [23, 85, 101, 292, 436], "random": [235, 293, 318, 474, 475, 479, 482], "rang": [344, 441], "raw": [42, 64, 85, 258, 319], "rawconfigpars": 167, "rawturtl": 384, "re": [106, 181, 319, 388, 473, 476, 477, 478, 479, 480], "read": [84, 100, 109, 133, 252, 270, 296], "readlin": [320, 323, 334, 478, 479], "readon": 7, "real": 428, "realli": 84, "receiv": 102, "recip": [161, 169, 186, 261, 340], "recogn": 193, "recognis": 386, "recommend": 344, "record": [281, 382, 452], "recurs": 23, "redirect": 461, "reduct": 299, "reentranc": 258, "reentrant": 169, "refer": [63, 73, 75, 85, 95, 109, 176, 283, 292, 308, 340, 369, 384, 413, 430, 432, 452, 463], "reflect": 53, "regen": [469, 478, 479], "regex": 84, "regist": [340, 353], "registri": [405, 461], "regress": 362, "regular": [100, 106, 109, 319, 432], "relat": [7, 110, 250, 432, 467, 468, 474], "relationship": 462, "releas": [33, 469, 476, 477, 478, 479, 480, 481, 482, 483], "remot": 283, "remov": [85, 461, 467, 468, 469, 478, 479, 480, 481, 482], "repeat": [106, 262], "replac": [106, 169, 247, 348, 432], "repositori": 475, "repr": [321, 432], "repres": 196, "represent": [425, 444, 476], "reprlib": [321, 475], "reproduc": 318, "request": [7, 338, 393, 395, 479], "requir": [120, 176, 251], "reserv": 435, "resolut": [103, 268, 429, 480], "resolv": 428, "resourc": [101, 102, 103, 252, 253, 322, 422, 474, 477, 480], "resourcewarn": 188, "respons": 395, "restrict": [94, 299, 330, 395, 429], "restructuredtext": 468, "result": [85, 394], "retri": 478, "retriev": [125, 255], "return": [85, 93, 176, 436, 461], "return_valu": 389, "reusabl": 169, "revers": [85, 466], "revis": 95, "rework": 476, "rfc": 398, "rfc5424": 102, "rich": 463, "right": 405, "rlcomplet": [323, 479], "rlock": 365, "rmtree": 332, "robot": 396, "robotpars": [396, 479], "rotat": 102, "rotatingfilehandl": 269, "round": 186, "roundup": 468, "row": 340, "rpc": [419, 420], "rs232": 84, "rule": [73, 331, 333, 464], "run": [102, 139, 247, 388, 461], "runner": 135, "runpi": 324, "runtim": [74, 86, 282, 315, 425, 480, 481], "safe": [84, 100, 477], "safeti": 267, "same": [85, 102, 481], "save": 189, "sax": [414, 415, 416, 417, 478], "sax2": [414, 462], "saxexcept": 414, "saxutil": 417, "scandir": 478, "scanf": [85, 319], "sched": [325, 476], "schedul": [139, 293, 325], "schema": 268, "scheme": 355, "schwartzian": 85, "scope": [100, 429, 440, 463, 464], "screen": 384, "script": [84, 151, 384, 461, 467], "script_help": 362, "scrollabl": 376, "scrolledtext": 374, "search": [106, 247, 251, 319, 354, 432], "secret": [326, 479], "secur": [151, 245, 268, 341, 348, 394, 456, 469, 472, 477, 480, 481, 482, 483], "seem": 84, "select": [95, 102, 189, 328, 341, 426, 475, 476, 477], "selector": [329, 375, 477, 478], "self": [78, 85, 341, 473, 481], "semaphor": [138, 365], "send": 102, "sent": 102, "sentinel": 389, "separ": [376, 465, 469, 471], "sequenc": [60, 63, 85, 344, 348, 427, 428, 442], "sequencematch": 190, "serial": 425, "server": [102, 126, 133, 245, 338, 341, 419, 420, 475, 480], "serverproxi": 419, "session": 341, "set": [132, 247, 250, 344, 353, 369, 384, 428, 430, 442, 461, 465, 466], "setter": [58, 100], "setup": 96, "setupclass": 388, "setupmodul": 388, "setuptool": 71, "sh": 348, "shadow": 339, "shake": 235, "shallow": 171, "shape": [7, 384], "share": [85, 176, 283, 476], "shared_memori": 284, "sharedctyp": 283, "shebang": 461, "shell": [247, 301, 331, 348], "shelv": [330, 472, 477], "shield": 139, "shift": 430, "shlex": [331, 476, 479, 481], "shortcut": 340, "shot": 149, "should": [100, 482], "show": 480, "shutil": [332, 473, 474, 475, 476, 477, 478, 481], "side": [341, 390], "side_effect": [389, 390], "sigint": 126, "sign": 341, "signal": [23, 84, 186, 214, 333, 388, 476, 478, 480, 482], "signatur": [158, 255], "sigpip": 333, "sigterm": 126, "silicon": [481, 482], "simpl": [93, 106, 193, 235, 464, 465], "simple_serv": 407, "simpledialog": 189, "simplenamespac": 476, "simplequeu": 316, "simpler": [466, 479], "simplexmlrpcserv": 420, "simul": 319, "sinc": 384, "singl": [45, 84, 102, 169], "siphash24": 426, "site": [168, 334, 468, 472, 475, 479], "sitecustom": 334, "size": [176, 235, 293, 332, 347, 382], "sizegrip": 376, "skip": 388, "slash": 85, "sleep": 139, "slice": [428, 430, 465], "slot": [63, 64, 100], "slow": 85, "small": 95, "smtp": 335, "smtpd": [472, 474, 476, 477, 478], "smtphandler": 269, "smtplib": [335, 476, 477, 478, 482], "snapshot": 382, "sndhdr": [336, 478], "so": 475, "soapbox": 193, "socket": [84, 102, 107, 110, 126, 133, 136, 337, 341, 362, 426, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482], "socket_help": 362, "sockethandl": 269, "socketserv": [338, 476, 479, 480], "softwar": 467, "solari": 230, "solut": 151, "some": 79, "sort": [78, 85, 108], "sourc": [96, 109, 247, 250, 255, 378, 425, 465], "spawn": [283, 348], "speak": 102, "spec": [78, 432], "special": [186, 275, 344, 384, 386, 428, 432, 465, 470], "specif": [33, 75, 95, 158, 334, 345, 376, 384, 386, 405, 465, 466, 467, 468, 469], "specifi": [176, 270, 386, 421, 469, 471], "speed": 85, "sphinx": 468, "spinbox": 376, "split": 106, "spread": 343, "spwd": 339, "sql": 340, "sqlite": 340, "sqlite3": [340, 467, 472, 473, 474, 475, 476, 477, 478, 479, 480], "sscanf": 85, "ssize_t": 467, "ssl": [341, 468, 472, 474, 475, 476, 477, 478, 479, 480, 481], "stabl": 475, "stack": [255, 381, 442], "stacksummari": 381, "standalon": 421, "standard": [23, 158, 254, 262, 292, 344, 347, 385, 411, 432, 465, 482], "star": 384, "start": [92, 167, 186, 283, 384], "starter": 102, "startup": [247, 320], "stat": [308, 342, 476, 477], "state": [28, 33, 100, 214, 255, 283, 299, 358, 376, 384], "stateless": 158, "statement": [169, 365, 427, 428, 436, 467, 468], "static": [63, 85, 93, 100, 255, 428, 473, 474], "statist": [343, 382, 472, 474, 477, 479, 481], "statisticdiff": 382, "status": 296, "stderr": [79, 84], "stdin": 84, "stdlib": [469, 477], "stdout": [79, 84], "step": 101, "stop_iter": 353, "stopiter": 478, "storag": [33, 480], "store": [292, 461], "str": 344, "stream": [102, 124, 133, 158, 258, 299], "streamhandl": 269, "streamread": [136, 158], "streamreaderwrit": 158, "streamrecod": 158, "streamwrit": [136, 158], "strenum": 94, "strftime": 183, "stride": 7, "string": [5, 64, 78, 84, 85, 94, 106, 109, 259, 292, 319, 344, 345, 347, 348, 425, 435, 441, 446, 462, 465, 466, 468, 470, 473, 474, 476, 479, 480, 481, 482], "stringprep": 346, "strptime": 183, "strtod": 426, "struct": [60, 347, 476, 477, 479], "structur": [7, 63, 102, 167, 176, 273, 394, 429, 435], "stumbl": 470, "style": [7, 102, 344, 376, 441, 467], "sub": [33, 63, 120], "subclass": [76, 85, 94, 102, 243, 321, 428], "subgener": 476, "submiss": 84, "submodul": 432, "suboffset": 7, "subprocess": [124, 133, 137, 247, 348, 466, 476, 477, 478, 479, 480], "subprocess_exec": 133, "subprocessprotocol": 133, "subscript": [122, 430], "substitut": [348, 466], "subtest": 388, "suffix": 482, "suggest": 75, "summari": [93, 281, 476, 477, 478, 479, 480, 481, 482], "sun": [287, 349], "sunau": [349, 477, 480], "super": 93, "support": [33, 45, 50, 51, 64, 75, 76, 94, 95, 102, 109, 128, 167, 169, 170, 230, 341, 358, 362, 413, 465, 468, 477, 478, 479, 480, 481, 482], "suppress": [400, 476], "sur": [481, 482], "surpris": [100, 176], "switch": 78, "symtabl": 351, "synchron": [124, 138, 283, 316], "syntact": 474, "syntax": [120, 122, 413, 443, 468, 470, 474, 476, 478, 479], "syntaxerror": [85, 472], "sys": [84, 120, 352, 353, 354, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "sysconfig": [355, 469, 473, 475, 478], "syslog": [102, 356], "sysloghandl": [102, 269], "system": [64, 72, 151, 293, 348, 386, 422, 432, 456, 463, 477, 478, 479], "systemtap": [98, 479], "tab": [86, 376, 447], "tabl": [73, 281, 299], "tabnanni": 357, "tabular": 375, "tag": [376, 475], "tapset": 98, "tar": 358, "tarfil": [358, 472, 473, 475, 476, 477, 478, 481, 482], "target": [469, 478, 479], "tarinfo": 358, "task": [124, 126, 128, 139], "tcl": 369, "tcp": [133, 136], "tcpserver": 338, "teardownclass": 388, "teardownmodul": 388, "technic": 93, "tell": 384, "telnet": 359, "telnetlib": [359, 479], "tempfil": [360, 473, 474, 475, 476], "templat": [102, 189, 301, 452], "temporari": 461, "temporarili": 400, "termcap": 84, "termin": [293, 332], "terminolog": 292, "termio": 361, "test": [95, 151, 341, 362, 388, 400, 430, 478, 483], "test_epol": 426, "test_prefix": 389, "text": [92, 158, 177, 193, 247, 319, 340, 344, 363, 410, 470], "textbox": 177, "textpad": 177, "textwrap": [364, 476, 477], "than": 102, "that": [85, 93, 94, 95, 102, 266], "the": [23, 28, 33, 42, 66, 73, 76, 84, 85, 95, 96, 100, 101, 102, 103, 106, 109, 120, 132, 151, 176, 193, 196, 214, 216, 230, 251, 255, 267, 283, 292, 293, 297, 308, 332, 337, 340, 344, 348, 352, 353, 354, 365, 369, 382, 384, 386, 400, 410, 411, 416, 421, 425, 427, 428, 430, 432, 436, 456, 461, 464, 465, 467, 468, 469, 474, 475, 476, 477, 478, 479, 480, 481, 482], "their": [94, 319], "them": 102, "theme": 469, "there": [84, 85], "thin": 73, "thing": 106, "third": 105, "this": 100, "thought": 93, "thousand": [469, 471], "thread": [33, 84, 102, 139, 186, 258, 267, 333, 362, 365, 369, 452, 472, 473, 474, 475, 476, 477, 478, 480, 481], "threading_help": 362, "threadpoolexecutor": 166, "through": 79, "throughout": 102, "time": [84, 101, 102, 183, 366, 425, 465, 473, 475, 476, 478, 479, 480, 481, 482], "timedelta": 183, "timedrotatingfilehandl": 269, "timeit": [367, 478, 479], "timelin": 386, "timeout": [139, 214, 337], "timeperiod": 94, "timer": [308, 365], "timezon": [183, 366], "tip": [109, 266], "tix": 375, "tk": [81, 368, 369, 375, 376, 469], "tkinter": [81, 189, 247, 369, 370, 371, 372, 373, 374, 375, 376, 473, 474, 478, 479, 480, 481], "tls": [33, 126, 341], "to": [76, 79, 84, 85, 94, 100, 101, 102, 109, 190, 250, 251, 259, 266, 268, 293, 308, 340, 348, 384, 386, 462, 465, 466, 467, 468, 469, 470, 471, 474, 475, 476, 477, 478, 479, 480, 481, 482], "togeth": [85, 292], "token": [319, 326, 377, 378, 435, 474, 481], "toml": 379, "tomllib": 379, "too": 85, "tool": [273, 353, 469, 474, 481, 483], "top": [262, 382], "topic": 75, "touch": [469, 478, 479], "tp": 63, "tp_call": 10, "tp_dealloc": 100, "tp_free": 100, "tp_travers": 100, "trace": [33, 380, 382], "traceback": [152, 214, 381, 382, 428, 472, 473, 477, 478, 479], "tracebackexcept": 381, "tracemalloc": [42, 382, 477, 479, 480, 482], "tracker": 468, "trail": 85, "transact": 340, "transform": [85, 158, 473], "translat": [230, 384], "transport": 133, "treat": 102, "tree": [122, 235, 413], "treebuild": 413, "treeview": 376, "tri": [85, 169, 427, 467], "trigger": 328, "trigonometr": 275, "trivial": 292, "tss": 33, "tti": [361, 383], "ttk": [376, 469], "tupl": [60, 78, 85, 160, 344, 352, 386, 442], "turn": 353, "turtl": 384, "turtledemo": [384, 475], "turtlescreen": 384, "tutori": [76, 93, 101, 176, 186, 292, 340], "twister": 426, "two": 469, "txt": 396, "type": [7, 58, 61, 63, 64, 75, 76, 94, 95, 100, 109, 120, 122, 176, 181, 183, 255, 292, 296, 299, 340, 344, 369, 375, 385, 386, 405, 407, 410, 427, 428, 436, 464, 465, 466, 467, 468, 472, 473, 474, 476, 477, 478, 479, 480, 481, 482], "typealia": 472, "typeddict": [473, 474], "typedef": 63, "tzinfo": 183, "udp": 133, "udpserv": 338, "unari": 430, "unbound": 390, "unboundlocalerror": 85, "undecor": 108, "under": 72, "underscor": 479, "understand": [292, 369], "unicod": [14, 23, 64, 109, 158, 358, 387, 462, 464, 465, 470, 475, 476], "unicodedata": [387, 473, 474, 478, 479, 480, 481, 482], "unicodedecodeerror": 85, "unicodeencodeerro": 85, "unifi": [464, 466, 467], "union": [176, 344], "uniqu": [85, 94], "unittest": [193, 388, 389, 390, 469, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "univers": 465, "unix": [72, 77, 84, 126, 151, 173, 184, 220, 231, 303, 356, 391, 460], "unknown": 109, "unknownhandl": 395, "unpack": [25, 408, 441, 478], "unpickl": 299, "unsupport": 478, "up": [85, 96, 110, 169, 250], "updat": [400, 469, 482], "upgrad": 120, "uri": 340, "url": [110, 392, 394, 395], "urlerror": 110, "urllib": [110, 392, 393, 394, 395, 396, 472, 475, 476, 477, 478, 479, 480, 481, 482], "usag": [120, 193, 279, 322, 378, 380, 419], "use": [77, 84, 85, 94, 96, 99, 101, 102, 106, 151, 163, 169, 196, 235, 283, 308, 340, 348, 353, 365, 375, 384, 388, 395, 425, 428, 467, 468, 474, 481], "user": [214, 247, 268, 308, 355, 368, 468], "usercustom": 334, "userdict": 160, "userlist": 160, "userstr": 160, "utc": 102, "utf": [64, 158, 293, 340, 461, 479, 480], "utf_8_sig": 158, "util": [120, 169, 176, 209, 250, 288, 302, 362, 385, 407], "uu": 480, "uudecod": 426, "uuencod": [397, 426], "uuid": [398, 474, 480], "uwsgi": 102, "v1": [467, 475], "valid": [93, 407], "valu": [5, 73, 84, 85, 94, 95, 120, 167, 176, 186, 262, 292, 340, 405, 427, 428, 430], "variabl": [33, 101, 169, 170, 176, 181, 235, 292, 293, 355, 369, 461, 469, 479], "variad": [176, 473], "vc": 282, "vectorcal": [10, 481], "venv": [399, 473, 477, 479, 481, 482], "verbos": 106, "veri": [66, 72], "verif": [358, 469, 477], "version": [99, 251, 292, 358, 400, 461, 475], "versus": [106, 428], "vfork": 348, "via": [102, 340, 461], "view": [281, 344, 469, 470], "virtual": [354, 376, 461, 478], "visibl": 384, "vs": [94, 319, 386, 470], "w3c": 426, "wait": 139, "want": 85, "warn": [23, 193, 267, 362, 400, 425, 463, 469, 473, 479, 480], "warnings_help": 362, "watchedfilehandl": 269, "watcher": 132, "wav": 401, "wave": [401, 477, 480], "wave_read": 401, "wave_writ": 401, "way": 85, "wchar_t": 64, "weak": [75, 452, 463], "weakref": [402, 477, 481], "web": [102, 243, 475], "webassembl": [257, 456], "webbrows": [403, 474, 476], "what": [84, 85, 92, 101, 193, 292, 299, 308, 369, 462], "when": [85, 94, 99], "whi": [84, 85, 466], "which": 193, "while": [78, 427], "whitespac": 435, "who": 100, "wide": 33, "widget": [177, 369, 375, 376, 469], "wildcard": [427, 451, 472], "win": 86, "window": [64, 77, 86, 92, 131, 158, 177, 189, 247, 303, 348, 369, 384, 404, 405, 406, 461, 465, 468, 469, 473, 476, 479, 480, 483], "winreg": [405, 479], "winsound": [406, 479], "with": [34, 71, 78, 79, 84, 85, 92, 94, 96, 99, 100, 102, 137, 158, 169, 176, 186, 214, 243, 255, 267, 331, 332, 340, 348, 365, 386, 413, 421, 427, 428, 429, 467, 468, 476, 478, 480, 481], "within": 262, "without": 247, "work": [84, 85, 186, 193, 340, 386], "worker": [84, 283], "world": [123, 126, 369], "wrap": [110, 369, 389], "write": [73, 85, 109, 128, 133, 270, 296, 319, 340, 467, 468], "writer": 266, "wsgi": 407, "wsgiref": [407, 467, 478], "www": [80, 84], "xdr": 408, "xdrlib": [397, 408], "xhtml": 240, "xinclud": 413, "xml": [314, 409, 410, 411, 412, 413, 414, 415, 416, 417, 419, 420, 426, 462, 472, 474, 476, 477, 478, 479, 480, 481, 482], "xmlparser": [314, 413], "xmlpullpars": 413, "xmlreader": 416, "xmlrpc": [418, 419, 420, 478, 479, 480, 481], "xpath": 413, "yellow": 287, "yield": [430, 436], "you": [84, 85, 482], "your": [102, 151, 176, 230, 292, 482], "zero": 426, "zeromq": 102, "zip": [421, 422, 423, 465], "zipapp": [421, 478, 480], "zipfil": [422, 473, 475, 477, 478, 479, 480], "zipimport": [423, 472, 474], "zipinfo": 422, "zlib": [424, 426, 476, 479], "zoneinfo": [425, 482]}}) \ No newline at end of file diff --git a/tutorial/appendix.html b/tutorial/appendix.html index 1c9d08fd74..596578c2d6 100644 --- a/tutorial/appendix.html +++ b/tutorial/appendix.html @@ -5,13 +5,13 @@ - 16. 附錄 — Python 3.12.3 說明文件 + 16. 附錄 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -404,7 +405,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -455,7 +456,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/appetite.html b/tutorial/appetite.html index e8e3fd03a6..530dafed81 100644 --- a/tutorial/appetite.html +++ b/tutorial/appetite.html @@ -5,13 +5,13 @@ - 1. 淺嘗滋味 — Python 3.12.3 說明文件 + 1. 淺嘗滋味 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -337,7 +338,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -388,7 +389,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/classes.html b/tutorial/classes.html index 89ba6cc9d7..75694687db 100644 --- a/tutorial/classes.html +++ b/tutorial/classes.html @@ -5,13 +5,13 @@ - 9. Class(類別) — Python 3.12.3 說明文件 + 9. Class(類別) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -251,7 +252,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -859,7 +860,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -910,7 +911,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/controlflow.html b/tutorial/controlflow.html index e235aa2618..f53c39f640 100644 --- a/tutorial/controlflow.html +++ b/tutorial/controlflow.html @@ -5,13 +5,13 @@ - 4. 深入了解流程控制 — Python 3.12.3 說明文件 + 4. 深入了解流程控制 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -254,7 +255,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -607,7 +608,7 @@

                        瀏覽

                        關鍵字 def 介紹一個函式的定義。它之後必須連著該函式的名稱和置於括號之中的一串參數。自下一行起,所有縮排的陳述式成為該函式的主體。

                        一個函式的第一個陳述式可以是一個字串文本;該字串文本被視為該函式的說明文件字串,即 docstring。(關於 docstring 的細節請參見說明文件字串 (Documentation Strings)段落。)有些工具可以使用 docstring 來自動產生線上或可列印的文件,或讓使用者能以互動的方式在原始碼中瀏覽文件。在原始碼中加入 docstring 是個好慣例,應該養成這樣的習慣。

                        函式執行時會建立一個新的符號表 (symbol table) 來儲存該函式內的區域變數 (local variable)。更精確地說,所有在函式內的變數賦值都會把該值儲存在一個區域符號表。然而,在引用一個變數時,會先從區域符號表開始搜尋,其次為外層函式的區域符號表,其次為全域符號表 (global symbol table),最後為所有內建的名稱。因此,在函式中,全域變數及外層函式變數雖然可以被引用,但無法被直接賦值(除非全域變數是在 global 陳述式中被定義,或外層函式變數在 nonlocal 陳述式中被定義)。

                        -

                        在一個函式被呼叫的時候,實際傳入的參數(引數)會被加入至該函式的區域符號表。因此,引數傳入的方式為傳值呼叫 (call by value)(這裡傳遞的永遠是一個物件的參照 (reference),而不是該物件的值)。[1] 當一個函式呼叫別的函式或遞迴呼叫它自己時,在被呼叫的函式中會建立一個新的區域符號表。

                        +

                        在一個函式被呼叫的時候,實際傳入的參數(引數)會被加入至該函式的區域符號表。因此,引數傳入的方式為傳值呼叫 (call by value)(這裡傳遞的永遠是一個物件的參照 (reference),而不是該物件的值)。 [1] 當一個函式呼叫別的函式或遞迴呼叫它自己時,在被呼叫的函式中會建立一個新的區域符號表。

                        函式定義時,會把該函式名稱加入至當前的符號表。函式名稱的值帶有一個型別,並被直譯器辨識為使用者自定函式 (user-defined function)。該值可以被指定給別的變數名,使該變數名也可以被當作函式使用。這是常見的重新命名方式:

                        >>> fib
                         <function fib at 10042ed0>
                        @@ -1123,7 +1124,7 @@ 

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -1174,7 +1175,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/datastructures.html b/tutorial/datastructures.html index 0861d27e14..d4f998a085 100644 --- a/tutorial/datastructures.html +++ b/tutorial/datastructures.html @@ -5,13 +5,13 @@ - 5. 資料結構 — Python 3.12.3 說明文件 + 5. 資料結構 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -879,7 +880,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -930,7 +931,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/errors.html b/tutorial/errors.html index 87271891c7..e2af599b3a 100644 --- a/tutorial/errors.html +++ b/tutorial/errors.html @@ -5,13 +5,13 @@ - 8. 錯誤和例外 — Python 3.12.3 說明文件 + 8. 錯誤和例外 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -238,7 +239,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -814,7 +815,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -865,7 +866,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/floatingpoint.html b/tutorial/floatingpoint.html index 941426b5ab..10ec11483f 100644 --- a/tutorial/floatingpoint.html +++ b/tutorial/floatingpoint.html @@ -5,13 +5,13 @@ - 15. 浮點數運算:問題與限制 — Python 3.12.3 說明文件 + 15. 浮點數運算:問題與限制 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -229,7 +230,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -527,7 +528,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -578,7 +579,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/index.html b/tutorial/index.html index 57b9b642cc..662589bc44 100644 --- a/tutorial/index.html +++ b/tutorial/index.html @@ -5,13 +5,13 @@ - Python 教學 — Python 3.12.3 說明文件 + Python 教學 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -521,7 +522,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -571,7 +572,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/inputoutput.html b/tutorial/inputoutput.html index e00c6516ef..26d020217c 100644 --- a/tutorial/inputoutput.html +++ b/tutorial/inputoutput.html @@ -5,13 +5,13 @@ - 7. 輸入和輸出 — Python 3.12.3 說明文件 + 7. 輸入和輸出 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -404,8 +405,7 @@

                        瀏覽

                        Jack: 4098; Sjoerd: 4127; Dcab: 8637678
                        -

                        This is particularly useful in combination with the built-in function -vars(), which returns a dictionary containing all local variables:

                        +

                        與內建函式 vars() 組合使用時,這種方式特別實用。該函式可以回傳一個包含所有區域變數的 dictionary:

                        >>> table = {k: str(v) for k, v in vars().items()}
                         >>> message = " ".join([f'{k}: ' + '{' + k +'};' for k in table.keys()])
                         >>> print(message.format(**table))
                        @@ -464,7 +464,7 @@ 

                        7.1.3. 手動格式化字串

                        7.1.4. 格式化字串的舊方法

                        -

                        % 運算子(modulo,模數)也可用於字串格式化。在 'string' % values 中,string 中所有的 % 會被 values 的零個或多個元素所取代。此運算常被稱為字串插值 (string interpolation)。例如:

                        +

                        % 運算子(modulo,模數)也可用於字串格式化。在 format % values 中(其中 format 是個字串),format 內的 % 轉換規格會被 values 的零個或多個元素所取代。此運算常被稱為字串插值 (string interpolation)。例如:

                        >>> import math
                         >>> print('The value of pi is approximately %5.3f.' % math.pi)
                         The value of pi is approximately 3.142.
                        @@ -682,7 +682,7 @@ 

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -733,7 +733,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/interactive.html b/tutorial/interactive.html index d3d46c1d17..dc5ffc74db 100644 --- a/tutorial/interactive.html +++ b/tutorial/interactive.html @@ -5,13 +5,13 @@ - 14. 互動式輸入編輯和歷史記錄替換 — Python 3.12.3 說明文件 + 14. 互動式輸入編輯和歷史記錄替換 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -230,7 +231,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -351,7 +352,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -402,7 +403,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/interpreter.html b/tutorial/interpreter.html index 94e7c8f90e..fb997468de 100644 --- a/tutorial/interpreter.html +++ b/tutorial/interpreter.html @@ -5,13 +5,13 @@ - 2. 使用 Python 直譯器 — Python 3.12.3 說明文件 + 2. 使用 Python 直譯器 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -423,7 +424,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -474,7 +475,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/introduction.html b/tutorial/introduction.html index 9b1c968f64..cd6598b65d 100644 --- a/tutorial/introduction.html +++ b/tutorial/introduction.html @@ -5,13 +5,13 @@ - 3. 一個非正式的 Python 簡介 — Python 3.12.3 說明文件 + 3. 一個非正式的 Python 簡介 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -235,7 +236,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -776,7 +777,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -827,7 +828,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/modules.html b/tutorial/modules.html index e4f5e396a4..e00fbf465f 100644 --- a/tutorial/modules.html +++ b/tutorial/modules.html @@ -5,13 +5,13 @@ - 6. 模組 (Module) — Python 3.12.3 說明文件 + 6. 模組 (Module) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -242,7 +243,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -700,7 +701,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -751,7 +752,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/stdlib.html b/tutorial/stdlib.html index 726c85b89a..672b7cc04d 100644 --- a/tutorial/stdlib.html +++ b/tutorial/stdlib.html @@ -5,13 +5,13 @@ - 10. Python 標準函式庫概覽 — Python 3.12.3 說明文件 + 10. Python 標準函式庫概覽 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -240,7 +241,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -603,7 +604,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -654,7 +655,7 @@

                        瀏覽

                        Please donate.

                        - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/stdlib2.html b/tutorial/stdlib2.html index 089b257b44..f6a7c5f366 100644 --- a/tutorial/stdlib2.html +++ b/tutorial/stdlib2.html @@ -5,13 +5,13 @@ - 11. Python 標準函式庫概覽——第二部份 — Python 3.12.3 說明文件 + 11. Python 標準函式庫概覽——第二部份 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

                        瀏覽

                      • - 3.12.3 Documentation » + 3.12.4 Documentation »
                      • @@ -435,7 +436,7 @@

                        瀏覽

                        CRITICAL:root:Critical error -- shutting down
                        -

                        在預設情況,資訊和除錯訊息不會被顯示,其輸出會被發送到標準錯誤 (standard error)。其他輸出選項包括,將訊息轉發到電子郵件、資料報 (datagram)、網路插座 (socket) 或 HTTP 伺服器。新的過濾器可以根據訊息的優先順序,選擇不同的路由 (routing) 方式:DEBUGINFOWARNINGERROR,及 CRITICAL

                        +

                        在預設情況,資訊和除錯訊息不會被顯示,其輸出會被發送到標準錯誤 (standard error)。其他輸出選項包括,將訊息轉發到電子郵件、資料報 (datagram)、網路插座 (socket) 或 HTTP 伺服器。新的過濾器可以根據訊息的優先順序,選擇不同的路由 (routing) 方式:DEBUGINFOWARNINGERRORCRITICAL

                        日誌記錄系統可以直接從 Python 配置,也可以透過載入使用者可編輯的配置檔案以進行客製化的日誌記錄,而無須對應用程式做出變更。

                  • @@ -633,7 +634,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -684,7 +685,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/venv.html b/tutorial/venv.html index e0093e365d..5e706e81d1 100644 --- a/tutorial/venv.html +++ b/tutorial/venv.html @@ -5,13 +5,13 @@ - 12. 虛擬環境與套件 — Python 3.12.3 說明文件 + 12. 虛擬環境與套件 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -231,7 +232,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -276,11 +277,7 @@

                    12.1. 簡介

                    12.2. 建立虛擬環境

                    -

                    The module used to create and manage virtual environments is called -venv. venv will install the Python version from which -the command was run (as reported by the --version option). -For instance, executing the command with python3.12 will install -version 3.12.

                    +

                    用來建立與管理虛擬環境的模組叫做 venvvenv 將安裝執行命令的 Python 版本(如 --version 選項所報告的)。例如使用 python3.12 執行命令將安裝 3.12 版本。

                    在建立虛擬環境的時候,在你決定要放該虛擬環境的資料夾之後,以腳本 (script) 執行 venv 模組並且給定資料夾路徑:

                    python -m venv tutorial-env
                     
                    @@ -470,7 +467,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -521,7 +518,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/tutorial/whatnow.html b/tutorial/whatnow.html index cfbc7c502a..282d915ed1 100644 --- a/tutorial/whatnow.html +++ b/tutorial/whatnow.html @@ -5,13 +5,13 @@ - 13. 現在可以來學習些什麼? — Python 3.12.3 說明文件 + 13. 現在可以來學習些什麼? — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -346,7 +347,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -397,7 +398,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/cmdline.html b/using/cmdline.html index 44e6d1ea1d..65666264e5 100644 --- a/using/cmdline.html +++ b/using/cmdline.html @@ -5,13 +5,13 @@ - 1. 命令列與環境 — Python 3.12.3 說明文件 + 1. 命令列與環境 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1478,7 +1479,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1529,7 +1530,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/configure.html b/using/configure.html index d61afde327..7d80711a9d 100644 --- a/using/configure.html +++ b/using/configure.html @@ -5,13 +5,13 @@ - 3. 配置 Python — Python 3.12.3 說明文件 + 3. 配置 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -260,7 +261,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1600,7 +1601,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1651,7 +1652,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/editors.html b/using/editors.html index 46219914e2..0d41a13056 100644 --- a/using/editors.html +++ b/using/editors.html @@ -5,13 +5,13 @@ - 6. 編輯器與 IDE — Python 3.12.3 說明文件 + 6. 編輯器與 IDE — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -324,7 +325,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -375,7 +376,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/index.html b/using/index.html index 722e71f98b..bbf18caedc 100644 --- a/using/index.html +++ b/using/index.html @@ -5,13 +5,13 @@ - Python 的設置與使用 — Python 3.12.3 說明文件 + Python 的設置與使用 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -219,7 +220,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -459,7 +460,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -509,7 +510,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/mac.html b/using/mac.html index f6b5115330..736160b00b 100644 --- a/using/mac.html +++ b/using/mac.html @@ -5,13 +5,13 @@ - 5. 在 Mac 系統使用 Python — Python 3.12.3 說明文件 + 5. 在 Mac 系統使用 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -239,7 +240,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -442,7 +443,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -493,7 +494,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/unix.html b/using/unix.html index 79f87076c7..50a9a3a8a5 100644 --- a/using/unix.html +++ b/using/unix.html @@ -5,13 +5,13 @@ - 2. 在 Unix 平臺上使用 Python — Python 3.12.3 說明文件 + 2. 在 Unix 平臺上使用 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -237,7 +238,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -489,7 +490,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -540,7 +541,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/using/windows.html b/using/windows.html index 0306e5d014..09c2d94013 100644 --- a/using/windows.html +++ b/using/windows.html @@ -5,13 +5,13 @@ - 4. 在 Windows 上使用 Python — Python 3.12.3 說明文件 + 4. 在 Windows 上使用 Python — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -285,7 +286,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1610,7 +1611,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1661,7 +1662,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.0.html b/whatsnew/2.0.html index 45b75a022e..78ebf893cf 100644 --- a/whatsnew/2.0.html +++ b/whatsnew/2.0.html @@ -5,13 +5,13 @@ - Python 2.0 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.0 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -255,7 +256,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1400,7 +1401,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1451,7 +1452,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.1.html b/whatsnew/2.1.html index 91e384beac..32c4eb2c4c 100644 --- a/whatsnew/2.1.html +++ b/whatsnew/2.1.html @@ -5,13 +5,13 @@ - Python 2.1 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.1 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -243,7 +244,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1076,7 +1077,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1127,7 +1128,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.2.html b/whatsnew/2.2.html index c45c9c8e84..63331a6fa3 100644 --- a/whatsnew/2.2.html +++ b/whatsnew/2.2.html @@ -5,13 +5,13 @@ - Python 2.2 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.2 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -247,7 +248,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1467,7 +1468,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1518,7 +1519,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.3.html b/whatsnew/2.3.html index c6633de74c..4d5f827a42 100644 --- a/whatsnew/2.3.html +++ b/whatsnew/2.3.html @@ -5,13 +5,13 @@ - Python 2.3 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.3 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -261,7 +262,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2218,7 +2219,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2269,7 +2270,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.4.html b/whatsnew/2.4.html index f40e51689f..17ac5f4566 100644 --- a/whatsnew/2.4.html +++ b/whatsnew/2.4.html @@ -5,13 +5,13 @@ - Python 2.4 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.4 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -258,7 +259,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1750,7 +1751,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1801,7 +1802,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.5.html b/whatsnew/2.5.html index 1723843812..68cdbf8a97 100644 --- a/whatsnew/2.5.html +++ b/whatsnew/2.5.html @@ -5,13 +5,13 @@ - Python 2.5 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.5 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -262,7 +263,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2370,7 +2371,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2421,7 +2422,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.6.html b/whatsnew/2.6.html index fa6ec3a5c3..dcac8ebf46 100644 --- a/whatsnew/2.6.html +++ b/whatsnew/2.6.html @@ -5,13 +5,13 @@ - Python 2.6 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.6 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -278,7 +279,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -3391,7 +3392,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -3442,7 +3443,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/2.7.html b/whatsnew/2.7.html index c5c42a8be7..cceac8f4ce 100644 --- a/whatsnew/2.7.html +++ b/whatsnew/2.7.html @@ -5,13 +5,13 @@ - Python 2.7 有什麼新功能 — Python 3.12.3 說明文件 + Python 2.7 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -275,7 +276,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2822,7 +2823,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -2873,7 +2874,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.0.html b/whatsnew/3.0.html index 8b2c0b2b7f..0773b063f7 100644 --- a/whatsnew/3.0.html +++ b/whatsnew/3.0.html @@ -5,13 +5,13 @@ - Python 3.0 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.0 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -254,7 +255,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1141,7 +1142,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -1192,7 +1193,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.1.html b/whatsnew/3.1.html index 0bfbab2502..c651d12280 100644 --- a/whatsnew/3.1.html +++ b/whatsnew/3.1.html @@ -5,13 +5,13 @@ - Python 3.1 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.1 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -236,7 +237,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -857,7 +858,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -908,7 +909,7 @@

                    瀏覽

                    Please donate.

                    - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.10.html b/whatsnew/3.10.html index eafa852bb3..39956752d4 100644 --- a/whatsnew/3.10.html +++ b/whatsnew/3.10.html @@ -5,13 +5,13 @@ - Python 3.10 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.10 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -351,7 +352,7 @@

                    瀏覽

                  • - 3.12.3 Documentation » + 3.12.4 Documentation »
                  • @@ -984,7 +985,7 @@

                    bisect¶<

                    codecs

                    -

                    新增 codecs.unregister() 函式來取消註冊 (unregister) 一個編解碼器的搜索功能。 (Hai Shi 在 bpo-41842 中貢獻。)

                    +

                    新增 codecs.unregister() 函式來取消註冊 (unregister) 一個編解碼器的搜索功能。(Hai Shi 在 bpo-41842 中貢獻。)

                    collections.abc

                    @@ -998,7 +999,7 @@

                    contextlib

                    curses

                    -

                    ncurses 6.1 中新增的擴充顏色函式將由 curses.color_content()curses.init_color()curses.init_pair()curses.pair_content() 透明地使用。新函式 curses.has_extended_color_support() 表示了底層的 ncurses 函式庫是否支援擴充顏色。 (由 Jeffrey Kintscher 和 Hans Petter Jansson 在 bpo-36982 中貢獻。)

                    +

                    ncurses 6.1 中新增的擴充顏色函式將由 curses.color_content()curses.init_color()curses.init_pair()curses.pair_content() 透明地使用。新函式 curses.has_extended_color_support() 表示了底層的 ncurses 函式庫是否支援擴充顏色。(由 Jeffrey Kintscher 和 Hans Petter Jansson 在 bpo-36982 中貢獻。)

                    如果 BUTTON5_* 常數是由底層 curses 函式庫提供的,那麼它們現在會在 curses 模組中公開。(由 Zackery Spytz 在 bpo-39273 中貢獻。)

                    @@ -1088,7 +1089,7 @@

                    hashlib

                    hmac

                    -

                    hmac 模組現在在內部使用 OpenSSL 的 HMAC 實作。 (由 Christian Heimes 在 bpo-40645 中貢獻。)

                    +

                    hmac 模組現在在內部使用 OpenSSL 的 HMAC 實作。(由 Christian Heimes 在 bpo-40645 中貢獻。)

                    IDLE 和 idlelib

                    @@ -1124,7 +1125,7 @@

                    linecache

                    os

                    為 VxWorks RTOS 新增 os.cpu_count() 支援。(由 Peixing Xin 在 bpo-41440 中貢獻。)

                    -

                    新增函式 os.eventfd() 和相關幫助程式來包裝 Linux 上的 eventfd2 系統呼叫。 (由 Christian Heimes 在 bpo-41001 中貢獻。)

                    +

                    新增函式 os.eventfd() 和相關幫助程式來包裝 Linux 上的 eventfd2 系統呼叫。(由 Christian Heimes 在 bpo-41001 中貢獻。)

                    新增 os.splice() 以允許在兩個檔案描述器 (file descriptor) 之間移動資料,而無需在核心地址空間 (kernel address space) 和使用者地址空間 (user address space) 之間進行複製,其中檔案描述器之一必須是個 pipe。(由 Pablo Galindo 在 bpo-41625 中貢獻。)

                    為 macOS 新增 O_EVTONLYO_FSYNCO_SYMLINKO_NOFOLLOW_ANY。(由 Donghee Na 在 bpo-43106 中貢獻。)

                    @@ -1141,7 +1142,7 @@

                    pathlib

                    platform

                    -

                    新增 platform.freedesktop_os_release() 以從 freedesktop.org os-release 標準檔案中檢索出作業系統標識。 (由 Christian Heimes 在 bpo-28468 中貢獻。)

                    +

                    新增 platform.freedesktop_os_release() 以從 freedesktop.org os-release 標準檔案中檢索出作業系統標識。(由 Christian Heimes 在 bpo-28468 中貢獻。)

                    pprint

                    @@ -1179,7 +1180,7 @@

                    sslssl 模組需要 OpenSSL 1.1.1 或更高版本。(由 Christian Heimes 在 PEP 644bpo-43669 中貢獻。)

                    ssl 模組初步支援 OpenSSL 3.0.0 和新選項 OP_IGNORE_UNEXPECTED_EOF。(由 Christian Heimes 於 bpo-38820bpo-43794bpo-43788bpo-43791bpo-43799bpo-43920bpo-43789bpo-43811 貢獻。)

                    已棄用函式和使用已棄用常數現在會導致 DeprecationWarningssl.SSLContext.options 預設設定有 OP_NO_SSLv2OP_NO_SSLv3,因此無法再次發出設定該旗標的警告。棄用部分包含已棄用功能的列表。(由 Christian Heimes 在 bpo-43880 中貢獻。)

                    -

                    ssl 模組現在具有更安全的預設設定。預設情況下禁用沒有前向保密或 SHA-1 MAC 的密碼。安全級別 2 禁止安全性低於 112 位元的弱 RSA、DH 和 ECC 密鑰。 SSLContext 預設為最低協議版本 TLS 1.2。設定基於 Hynek Schlawack 的研究。 (由 Christian Heimes 在 bpo-43998 中貢獻。)

                    +

                    ssl 模組現在具有更安全的預設設定。預設情況下禁用沒有前向保密或 SHA-1 MAC 的密碼。安全級別 2 禁止安全性低於 112 位元的弱 RSA、DH 和 ECC 密鑰。 SSLContext 預設為最低協議版本 TLS 1.2。設定基於 Hynek Schlawack 的研究。(由 Christian Heimes 在 bpo-43998 中貢獻。)

                    不再正式支援已棄用的協議 SSL 3.0、TLS 1.0 和 TLS 1.1。 Python 不會主動阻止它們。然而,OpenSSL 建置選項、發行版配置、發行商補丁和密碼套件可能會阻止交握的成功。

                    ssl.get_server_certificate() 函式新增 timeout 參數。(由 Zackery Spytz 在 bpo-31870 中貢獻。)

                    ssl 模組使用堆疊類型 (heap-types) 和多階段初始化 (multi-phase initialization)。(由 Christian Heimes 在 bpo-42333 中貢獻。)

                    @@ -1196,7 +1197,7 @@

                    sys

                    _thread

                    -

                    _thread.interrupt_main() 現在需要一個可選的信號編號來進行模擬(預設值仍然是 signal.SIGINT)。 (由 Antoine Pitrou 在 bpo-43356 中貢獻。)

                    +

                    _thread.interrupt_main() 現在需要一個可選的信號編號來進行模擬(預設值仍然是 signal.SIGINT)。(由 Antoine Pitrou 在 bpo-43356 中貢獻。)

                    threading

                    @@ -1375,7 +1376,7 @@

                    Python 語法的變化foo() 被專門設計為 在當前執行緒的事件循環中運行(例如在另一個執行緒的事件循環中運行),請考慮改用 asyncio.run_coroutine_threadsafe()

                    (由 Yurii Karabas、Andrew Svetlov、Yury Selivanov 和 Kyle Stanley 在 bpo-42392 中貢獻。)

                    -
                  • 如果 globals 字典沒有 "__builtins__" 鍵,則 types.FunctionType 建構函式現在會繼承當前的內建物件,而不是使用 {"None": None}:相同行為如 eval()exec() 函式。在 Python 中使用 def function(...): ... 定義函式不受影響,全域變數不能用此語法覆蓋:它也繼承當前的內建物件。 (由 Victor Stinner 在 bpo-42990 中貢獻。)

                  • +
                  • 如果 globals 字典沒有 "__builtins__" 鍵,則 types.FunctionType 建構函式現在會繼承當前的內建物件,而不是使用 {"None": None}:相同行為如 eval()exec() 函式。在 Python 中使用 def function(...): ... 定義函式不受影響,全域變數不能用此語法覆蓋:它也繼承當前的內建物件。(由 Victor Stinner 在 bpo-42990 中貢獻。)

                  @@ -1445,12 +1446,12 @@

                  新功能¶<
                • 新增了 PyIter_Send() 函式,以允許將值發送到疊代器中,而不會引發 StopIteration 例外。(由 Vladimir Matveev 在 bpo-41756 中貢獻。)

                • PyUnicode_AsUTF8AndSize() 新增到受限 C API (limited C API) 中。(由 Alex Gaynor 在 bpo-41784 中貢獻。)

                • 新增 PyModule_AddObjectRef() 函式:類似於 PyModule_AddObject() 但成功時不竊取對值的參照。(由 Victor Stinner 在 bpo-1635741 中貢獻。)

                • -
                • 新增 Py_NewRef()Py_XNewRef() 函式來增加物件的參照計數並回傳物件。 (由 Victor Stinner 在 bpo-42262 中貢獻。)

                • +
                • 新增 Py_NewRef()Py_XNewRef() 函式來增加物件的參照計數並回傳物件。(由 Victor Stinner 在 bpo-42262 中貢獻。)

                • PyType_FromSpecWithBases()PyType_FromModuleAndSpec() 函式現在接受單個類別作為 bases 引數。(由 Serhiy Storchaka 在 bpo-42423 中貢獻。)

                • PyType_FromModuleAndSpec() 函式現在接受 NULL tp_doc 槽位。(由 Hai Shi 在 bpo-41832 中貢獻。)

                • PyType_GetSlot() 函式可以接受靜態型別 (static type)。(由 Hai Shi 和 Petr Viktorin 在 bpo-41073 中貢獻。)

                • 向 C-API 新增 PySet_CheckExact() 函式,以檢查物件是否是 set 的實例而不是子型別的實例。(由 Pablo Galindo 在 bpo-43277 中貢獻。)

                • -
                • 新增 PyErr_SetInterruptEx(),它允許傳遞信號編號來進行模擬。 (由 Antoine Pitrou 在 bpo-43356 中貢獻。)

                • +
                • 新增 PyErr_SetInterruptEx(),它允許傳遞信號編號來進行模擬。(由 Antoine Pitrou 在 bpo-43356 中貢獻。)

                • Python 是在除錯模式 (debug mode) 下建置的(如果有定義 Py_DEBUG 巨集),現在會支援受限 C API。在受限 C API 中,如果 Python 是在除錯模式下建置的,並且 Py_LIMITED_API 巨集的目標是 Python 3.10 或更新版本,Py_INCREF()Py_DECREF() 函式現在的實作是不透明函式呼叫,而不是直接存取 PyObject.ob_refcnt 成員。在除錯模式下支援受限 C API 成為可能,因為自 Python 3.8 以來,PyObject 結構在發布和除錯模式下是相同的(請參閱:issue:36465)。

                  --with-trace-refs 特殊建置(Py_TRACE_REFS 巨集)仍不支援受限 C API。(由 Victor Stinner 在 bpo-43688 中貢獻。)

                • @@ -1783,7 +1784,7 @@

                  瀏覽

                • - 3.12.3 Documentation » + 3.12.4 Documentation »
                • @@ -1834,7 +1835,7 @@

                  瀏覽

                  Please donate.

                  - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.11.html b/whatsnew/3.11.html index 2494b0fab5..51b3e785ef 100644 --- a/whatsnew/3.11.html +++ b/whatsnew/3.11.html @@ -5,13 +5,13 @@ - Python 3.11 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.11 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -341,7 +342,7 @@

                  瀏覽

                • - 3.12.3 Documentation » + 3.12.4 Documentation »
                • @@ -601,8 +602,8 @@

                  Python 3.11 有什麼新功能

                  其他語言更動

                    -
                  • 新增了一個 -P 命令列選項和一個 PYTHONSAFEPATH 環境變數,它們禁用了當使用 -c-m 以在運行腳本或當前目錄時自動添加到腳本目錄的 sys.path。這確保只有 stdlib 和已安裝的模組會被 import 取用,以避免不小心或被惡意地將模組與本地(通常是使用者可寫入的)目錄中的模組重疊。 (由 Victor Stinner 在 gh-57684 中貢獻。)

                  • +
                  • 新增了一個 -P 命令列選項和一個 PYTHONSAFEPATH 環境變數,它們禁用了當使用 -c-m 以在運行腳本或當前目錄時自動添加到腳本目錄的 sys.path。這確保只有 stdlib 和已安裝的模組會被 import 取用,以避免不小心或被惡意地將模組與本地(通常是使用者可寫入的)目錄中的模組重疊。(由 Victor Stinner 在 gh-57684 中貢獻。)

                  • "z" 選項被新增到 格式規格 (Format Specification) 迷你語言,它會強迫負的 0 在進位到格式精度後成為正的。更多詳情請見 PEP 682。(由 John Belmonte 於 gh-90153 中貢獻。)

                  • sys.path 不再接受位元組。支援已在 Python 3.2 和 3.6 之間的某個時間停止,直到 Python 3.10.0 發布後才引起人們的注意。此外,由於混合使用 strbytes 鍵時 -bsys.path_importer_cache 會出現的交互作用,恢復這項支援會出現問題。(由 Thomas Grainger 在 gh-91181 中貢獻。)

                  @@ -629,7 +630,7 @@

                  Python 3.11 有什麼新功能siphash13 以作為內部的雜湊演算法,它有與 siphash24 相似的安全特性,但是在處理較長的輸入時會更快一些。現在是 strbytes 和一些其他型別的 hash() 預設演算法。PEP 552 基於雜湊的 .pyc 檔案 現在也使用 siphash13。(由 Inada Naoki 於 bpo-29410 中貢獻。)

                • 當一個仍有效的例外被 raise 陳述式在沒有參數的情況下重新引發,被附於該例外的追蹤資訊現在都會是 sys.exc_info()[1].__traceback__。這代表對於當前 except 子句的追蹤上做的改動會反映在被重複引發的例外上。(由 Irit Katriel 於 bpo-45711 中貢獻。)

                • 有被處理的例外在直譯器狀態的表示(也就是 exc_info_PyErr_StackItem)現在只會有 exc_value 欄位;exc_typeexc_traceback 已被移除,現在只能透過 exc_value 來取得它們。(由 Irit Katriel 於 bpo-45711 中貢獻。)

                • -
                • 新增命令列選項 AppendPath,已增加於 Windows 安裝程式。它的行為類似於 PrependPath,但在安裝和腳本目錄後面附加而非新增於它們前面。 (由 Bastian Neuburger 在 bpo-44934 中貢獻。)

                • +
                • 新增命令列選項 AppendPath,已增加於 Windows 安裝程式。它的行為類似於 PrependPath,但在安裝和腳本目錄後面附加而非新增於它們前面。(由 Bastian Neuburger 在 bpo-44934 中貢獻。)

                • 初始化中若是要用 PyConfig.module_search_paths 來初始化 sys.path,則現在 PyConfig.module_search_paths_set 必須被設為 1。否則,初始化會重新計算路徑並取代所有被加到 module_search_paths 的值。

                • --help 選項的輸出現在會在 50 列、80 欄的大小之內,Python 環境變數-X 選項的資訊現在能夠分別透過 --help-env--help-xoptions 旗標與 --help-all 一起使用來取得。(由 Éric Araujo 於 bpo-46142 中貢獻。)

                • 在除 2(binary、二進制)、4、8(octal、八進制)、16(hexadecimal、十六進制)或 32 以外的基數中,例如以 10(decimal、十進制)為基數,進行 intstr 之間的轉換且字串形式的位數超過限制,現在會引發 ValueError,以避免由於演算法複雜性而導致的潛在阻斷服務攻擊 (denial of service attacks)。這是針對 CVE-2020-10735 的緩解措施,可以透過環境變數、命令列旗標或 sys API 來設定或禁用此限制。請參閱整數字串轉換長度限制 文件。預設限制為字串形式的 4300 位數字。

                • @@ -755,7 +756,7 @@

                  Python 3.11 有什麼新功能

                  inspect

                    -
                  • 添加 getmembers_static() 以回傳所有成員,而不會通過描述器協議 (descriptor protocol) 觸發動態查找。 (由 Weipeng Hong 在 bpo-30533 中貢獻。)

                  • +
                  • 添加 getmembers_static() 以回傳所有成員,而不會通過描述器協議 (descriptor protocol) 觸發動態查找。(由 Weipeng Hong 在 bpo-30533 中貢獻。)

                  • 新增 inspect.ismethodwrapper(),用來檢查一個物件的型別是否為 MethodWrapperType。(由 Hakan Çelik 於 bpo-29418 中所貢獻。)

                  • 更改 inspect 模組中與幀相關的函式以回傳新的 FrameInfoTraceback 類別實例(向後相容之前類似於 named tuple 的介面),包括擴充的 PEP 657 位置資訊(結束行號、欄和結束欄)。受影響的功能是:

                      @@ -779,7 +780,7 @@

                      Python 3.11 有什麼新功能

                      logging

                      @@ -812,7 +813,7 @@

                      Python 3.11 有什麼新功能

                      re

                        -
                      • 現在規則運算式 (regular expression) 是有支援原子性群組 (atomic grouping) ((?>...)) 和佔有性量詞 (possessive quantifier) (*+, ++, ?+, {m,n}+) 的。 (由 Jeffrey C. Jacobs 和 Serhiy Storchaka 在 bpo-433030 中貢獻。)

                      • +
                      • 現在規則運算式 (regular expression) 是有支援原子性群組 (atomic grouping) ((?>...)) 和佔有性量詞 (possessive quantifier) (*+, ++, ?+, {m,n}+) 的。(由 Jeffrey C. Jacobs 和 Serhiy Storchaka 在 bpo-433030 中貢獻。)

                      @@ -852,7 +853,7 @@

                      Python 3.11 有什麼新功能

                      sys

                        -
                      • sys.exc_info() 現在從 value(例外實例)衍生出 typetraceback 欄位,因此當例外在處理過程中被修改時,變更會反映在 exc_info() 後續呼叫的結果中。 (由 Irit Katriel 在 bpo-45711 中貢獻。)

                      • +
                      • sys.exc_info() 現在從 value(例外實例)衍生出 typetraceback 欄位,因此當例外在處理過程中被修改時,變更會反映在 exc_info() 後續呼叫的結果中。(由 Irit Katriel 在 bpo-45711 中貢獻。)

                      • 新增會回傳活躍例外實例 (active exception instance) 的 sys.exception()(等價於 sys.exc_info()[1])。(由 Irit Katriel 於 bpo-46328 中所貢獻。)

                      • 新增 sys.flags.safe_path 旗標。(由 Victor Stinner 於 gh-57684 中所貢獻。)

                      @@ -937,7 +938,7 @@

                      Python 3.11 有什麼新功能

                      warnings

                      @@ -1484,7 +1485,7 @@

                      Python 3.11 有什麼新功能distutils bdist_msi 命令。請改用 bdist_wheel(wheel 套件)。(由 Hugo van Kemenade 於 bpo-45124 中貢獻。)

                    • xml.dom.pulldom.DOMEventStreamwsgiref.util.FileWrapperfileinput.FileInput 自 Python 3.9 中棄用的 __getitem__() 方法移除。(由 Hugo van Kemenade 在 bpo-45132 中貢獻。)

                    • -
                    • 刪除了已棄用的 gettext 函式 lgettext()ldgettext()lngettext()ldngettext(),也刪除了 bind_textdomain_codeset() 函式、NullTranslations.output_charset()NullTranslations.set_output_charset() 方法,以及 translation()install()codeset 參數,因為它們僅被用於 l*gettext() 函式。 (由 Donghee Na 和 Serhiy Storchaka 在 bpo-44235 中貢獻。)

                    • +
                    • 刪除了已棄用的 gettext 函式 lgettext()ldgettext()lngettext()ldngettext(),也刪除了 bind_textdomain_codeset() 函式、NullTranslations.output_charset()NullTranslations.set_output_charset() 方法,以及 translation()install()codeset 參數,因為它們僅被用於 l*gettext() 函式。(由 Donghee Na 和 Serhiy Storchaka 在 bpo-44235 中貢獻。)

                    • inspect 模組中移除:

                      • Python 3.0 中棄用的 getargspec();改用 inspect.signature()inspect.getfullargspec()

                      • @@ -1514,7 +1515,7 @@

                        Python 3.11 有什麼新功能pdb 模組現在會讀取 'UTF-8' 編碼的 .pdbrc 配置檔案。(Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) 於 bpo-41137 貢獻。)

                      • random.sample()population 參數必須是一個序列,不再支援 setlist 的自動轉換。此外,如果抽樣大小大於總體大小,則會引發 ValueError。(由 Raymond Hettinger 在 bpo-40465 中貢獻。)

                      • 刪除了 random.shuffle()random 可選參數。它以前是用於隨機排列 (shuffle) 的任意隨機函式;現在都會使用 random.random()(這是它以前的預設值)。

                      • -
                      • re 正規表示式語法 中,全域行內旗標(例如 (?i))現在只能在規則運算式的開頭使用。自 Python 3.6 以來,在其他地方使用它們已被棄用。 (由 Serhiy Storchaka 在 bpo-47066 中貢獻。)

                      • +
                      • re 正規表示式語法 中,全域行內旗標(例如 (?i))現在只能在規則運算式的開頭使用。自 Python 3.6 以來,在其他地方使用它們已被棄用。(由 Serhiy Storchaka 在 bpo-47066 中貢獻。)

                      • re 模組中修復了幾個長期存在的錯誤,在極少數情況下,這些錯誤可能會導致捕獲群組 (capture group) 得到錯誤的結果。因此,這可能會在這些情況下更改捕獲的輸出。(Ma Lin 在 bpo-35859 中貢獻。)

                    • @@ -1531,7 +1532,7 @@

                      Python 3.11 有什麼新功能Py_NO_NAN 巨集已被移除。因為 CPython 現在需要 IEEE 754 浮點數,NaN 數值皆為可得的。(由 Victor Stinner 在 bpo-46656 中貢獻。)

                    • tkinter 套件現在必須要有 Tcl/Tk 8.5.12 或更新的版本。(由 Serhiy Storchaka 於 bpo-46996 中所貢獻。)

                    • 大多數 stdlib 擴充模組的依賴套件、編譯器旗標 (compiler flag) 和鏈接器旗標 (linker flags) 現在可以透過 configure 檢測出來。(當可用時)pkg-config 會檢測出 libffi、libnsl、libsqlite3、zlib、bzip2、liblzma、libcrypt、Tcl/Tk 和 uuid 旗標。tkinter 現在需要一個 pkg-config 命令來檢測 Tcl/Tk 標頭檔和函式庫的開發設定。(由 Christian Heimes 和 Erlend Egeberg Aasland 在 bpo-45847bpo-45747bpo-45763 中貢獻。)

                    • -
                    • libpython 不再鏈接到 libcrypt。 (由 Mike Gilbert 在 bpo-45433 中貢獻。)

                    • +
                    • libpython 不再鏈接到 libcrypt。(由 Mike Gilbert 在 bpo-45433 中貢獻。)

                    • CPython 現在可以透過將 thin 傳遞給 --with-lto(也就是 --with-lto=thin)來以 ThinLTO 選項建置。(由 Donghee Na 與 Brett Holman 於 bpo-44340 中所貢獻。)

                    • Freelists for object structs can now be disabled. A new configure option --without-freelists can be used to disable all freelists @@ -1544,7 +1545,7 @@

                      Python 3.11 有什麼新功能tcl.pctk.pc;要使用 TCLTK_LIBS="-ltk8.5 -ltkstub8.5 -ltcl8.5"。目錄 Misc/rhel7 包含 .pc 檔案與如何使用 RHEL 7 和 CentOS 7 的 Tcl/Tk 與 OpenSSL 建置 Python 的指示。

              • -
              • CPython 現在預設使用 30-bit 數字來實作 Python int。以前,在 SIZEOF_VOID_P >= 8 的平台上預設使用 30-bit 數字,否則使用 15-bit 數字,但仍能通過配置腳本的 --enable-big-digits 選項或(於 Windows)PC/pyconfig.h 中的 PYLONG_BITS_IN_DIGIT 變數來明確請求使用 15-bit 數字,但此選項可能會在將來的某個時候被刪除。 (由 Mark Dickinson 在 bpo-45569 中貢獻。)

              • +
              • CPython 現在預設使用 30-bit 數字來實作 Python int。以前,在 SIZEOF_VOID_P >= 8 的平台上預設使用 30-bit 數字,否則使用 15-bit 數字,但仍能通過配置腳本的 --enable-big-digits 選項或(於 Windows)PC/pyconfig.h 中的 PYLONG_BITS_IN_DIGIT 變數來明確請求使用 15-bit 數字,但此選項可能會在將來的某個時候被刪除。(由 Mark Dickinson 在 bpo-45569 中貢獻。)

              @@ -1584,10 +1585,10 @@

              Python 3.11 有什麼新功能

              移植至 Python 3.11

                -
              • 一些巨集已轉換為行內靜態函式以避免巨集陷阱 (macro pitfalls)。這種變化對用戶來說應該是透明的,因為替換函式會將它們的引數轉換為預期的型別,以避免由於靜態型別檢查而產生的編譯器警告。但是,當受限 C API 設置為 >=3.11 時,這些轉換不會完成,使用者需要將引數轉換為他們期望的型別。有關更多詳細資訊,請參閱 PEP 670。 (由 Victor Stinner 和 Erlend E. Aasland 在 gh-89653 中貢獻。)

              • +
              • 一些巨集已轉換為行內靜態函式以避免巨集陷阱 (macro pitfalls)。這種變化對用戶來說應該是透明的,因為替換函式會將它們的引數轉換為預期的型別,以避免由於靜態型別檢查而產生的編譯器警告。但是,當受限 C API 設置為 >=3.11 時,這些轉換不會完成,使用者需要將引數轉換為他們期望的型別。有關更多詳細資訊,請參閱 PEP 670。(由 Victor Stinner 和 Erlend E. Aasland 在 gh-89653 中貢獻。)

              • PyErr_SetExcInfo() 不再使用 typetraceback 引數,直譯器現在從例外實例(value 引數)中獲得這些值。該函式仍會偷用這三個引數的參照。(由 Irit Katriel 在 bpo-45711 中貢獻。)

              • PyErr_GetExcInfo() 現在從例外實例的結果(value 欄位)中導出 typetraceback 欄位。(由 Irit Katriel 在 bpo-45711 中貢獻。)

              • -
              • _frozen 有一個新的 is_package 欄位來表示凍結模組是否為一個套件。以前 size 欄位中的負值是指標,現在只有非負值可用於 size。 (由 Kumar Aditya 在 bpo-46608 中貢獻。)

              • +
              • _frozen 有一個新的 is_package 欄位來表示凍結模組是否為一個套件。以前 size 欄位中的負值是指標,現在只有非負值可用於 size。(由 Kumar Aditya 在 bpo-46608 中貢獻。)

              • _PyFrameEvalFunction() 現在將 _PyInterpreterFrame* 作為其第二個參數,而不是 PyFrameObject*。有關如何使用此函式指標型別的更多詳細資訊,請參閱 PEP 523

              • PyCode_New()PyCode_NewWithPosOnlyArgs() 現在採用額外的 exception_table 引數。如果可能的話應該避免使用這些函式。要獲取自定義程式碼物件,使用編譯器建立一個程式碼物件,然後使用 replace 方法來得到修改後的版本。

              • PyCodeObject 不再會有 co_codeco_varnamesco_cellvarsco_freevars 欄位。分別被改為透過 C API 的 PyCode_GetCode()PyCode_GetVarnames()PyCode_GetCellvars()PyCode_GetFreevars() 來存取。(由 Brandt Bucher 在 bpo-46841、Ken Jin 在 gh-92154gh-94936 中貢獻。)

              • @@ -2076,7 +2077,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2127,7 +2128,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.12.html b/whatsnew/3.12.html index 6898c10ad2..bdec05b198 100644 --- a/whatsnew/3.12.html +++ b/whatsnew/3.12.html @@ -5,13 +5,13 @@ - Python 3.12 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.12 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -331,7 +332,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2871,7 +2872,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2922,7 +2923,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.2.html b/whatsnew/3.2.html index 9bd40f15f0..750ea17cc0 100644 --- a/whatsnew/3.2.html +++ b/whatsnew/3.2.html @@ -5,13 +5,13 @@ - Python 3.2 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.2 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -297,7 +298,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2932,7 +2933,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -2983,7 +2984,7 @@

                瀏覽

                Please donate.

                - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.3.html b/whatsnew/3.3.html index 7806422a13..c18ad3c88e 100644 --- a/whatsnew/3.3.html +++ b/whatsnew/3.3.html @@ -5,13 +5,13 @@ - Python 3.3 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.3 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -354,7 +355,7 @@

                瀏覽

              • - 3.12.3 Documentation » + 3.12.4 Documentation »
              • @@ -1991,8 +1992,8 @@

                smtplib to specify the (host, port) to use as the source address in the bind call when creating the outgoing socket. (Contributed by Paulo Scardine in bpo-11281.)

                -

                SMTP 現在支援情境管理協議,允許在 with 陳述式中使用 SMTP 實例。 (由 Giampaolo Rodolà 在 bpo-11289 中貢獻。)

                -

                SMTP_SSL 構造函式和 starttls() 方法現在接受 SSLContext 參數來控制安全通道的參數。 (由 Kasun Herath 在 bpo-8809 中貢獻。)

                +

                SMTP 現在支援情境管理協議,允許在 with 陳述式中使用 SMTP 實例。(由 Giampaolo Rodolà 在 bpo-11289 中貢獻。)

                +

                SMTP_SSL 構造函式和 starttls() 方法現在接受 SSLContext 參數來控制安全通道的參數。(由 Kasun Herath 在 bpo-8809 中貢獻。)

              socket

              @@ -2099,7 +2100,7 @@

              sys

              tarfile

              -

              tarfile 現在透過 lzma 模組支援 lzma 編碼。 (由 Lars Gustäbel 在 bpo-5689 中貢獻。)

              +

              tarfile 現在透過 lzma 模組支援 lzma 編碼。(由 Lars Gustäbel 在 bpo-5689 中貢獻。)

              tempfile

              @@ -2141,7 +2142,7 @@

              time<

            其他新功能:

            To improve cross platform consistency, sleep() now raises a ValueError when passed a negative sleep value. Previously this was an @@ -2710,7 +2711,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2761,7 +2762,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.4.html b/whatsnew/3.4.html index dc4085b326..4e31f9c537 100644 --- a/whatsnew/3.4.html +++ b/whatsnew/3.4.html @@ -5,13 +5,13 @@ - Python 3.4 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.4 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -349,7 +350,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2600,7 +2601,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2651,7 +2652,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.5.html b/whatsnew/3.5.html index e3c7be46f8..f302b80d16 100644 --- a/whatsnew/3.5.html +++ b/whatsnew/3.5.html @@ -5,13 +5,13 @@ - Python 3.4 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.4 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -358,7 +359,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2701,7 +2702,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2752,7 +2753,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.6.html b/whatsnew/3.6.html index e8862ae15e..0c2235d8ad 100644 --- a/whatsnew/3.6.html +++ b/whatsnew/3.6.html @@ -5,13 +5,13 @@ - Python 3.6 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.6 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -367,7 +368,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2608,7 +2609,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2659,7 +2660,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.7.html b/whatsnew/3.7.html index c4ae3f7270..c3a3a64902 100644 --- a/whatsnew/3.7.html +++ b/whatsnew/3.7.html @@ -5,13 +5,13 @@ - Python 3.7 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.7 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -360,7 +361,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2701,7 +2702,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2752,7 +2753,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.8.html b/whatsnew/3.8.html index c1ae59a874..86f0216023 100644 --- a/whatsnew/3.8.html +++ b/whatsnew/3.8.html @@ -5,13 +5,13 @@ - Python 3.8 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.8 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -327,7 +328,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2510,7 +2511,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -2561,7 +2562,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/3.9.html b/whatsnew/3.9.html index cb47d6cd9a..047168038d 100644 --- a/whatsnew/3.9.html +++ b/whatsnew/3.9.html @@ -5,13 +5,13 @@ - Python 3.9 有什麼新功能 — Python 3.12.3 說明文件 + Python 3.9 有什麼新功能 — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -319,7 +320,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -1877,7 +1878,7 @@

            瀏覽

          • - 3.12.3 Documentation » + 3.12.4 Documentation »
          • @@ -1928,7 +1929,7 @@

            瀏覽

            Please donate.

            - 最後更新於 Jun 02, 2024 (14:44 UTC)。 + 最後更新於 Jun 09, 2024 (07:52 UTC)。 Found a bug? diff --git a/whatsnew/changelog.html b/whatsnew/changelog.html index bf307e02de..13bc48c529 100644 --- a/whatsnew/changelog.html +++ b/whatsnew/changelog.html @@ -5,13 +5,13 @@ - Changelog(更動日誌) — Python 3.12.3 說明文件 + Changelog(更動日誌) — Python 3.12.4 說明文件 - + @@ -19,7 +19,7 @@ @@ -27,6 +27,7 @@ + @@ -173,9 +174,13 @@

            目錄